diff --git a/agents/meshinstall-linux.sh b/agents/meshinstall-linux.sh
index bd43729a..6abbaaa5 100644
--- a/agents/meshinstall-linux.sh
+++ b/agents/meshinstall-linux.sh
@@ -20,26 +20,25 @@ CheckStartupType() {
if [[ $starttype1 == 'systemd' ]]
then return 1;
elif [[ $starttype1 == 'init' || $starttype2 == 'init' ]]
- then
- if [ -d "/etc/init" ]
- then
- return 2;
- else
- return 3;
- fi
+ then
+ if [ -d "/etc/init" ]
+ then
+ return 2;
+ else
+ return 3;
+ fi
fi
return 0;
}
-
# Add "StartupType=(type)" to .msh file
UpdateMshFile() {
# Remove all lines that start with "StartupType="
- sed '/^StartupType=/ d' < /usr/local/mesh/meshagent.msh >> /usr/local/mesh/meshagent2.msh
+ sed '/^StartupType=/ d' < ./meshagent.msh >> ./meshagent2.msh
# Add the startup type to the file
- echo "StartupType=$starttype" >> /usr/local/mesh/meshagent2.msh
- mv /usr/local/mesh/meshagent2.msh /usr/local/mesh/meshagent.msh
+ echo "StartupType=$starttype" >> ./meshagent2.msh
+ mv ./meshagent2.msh ./meshagent.msh
}
CheckInstallAgent() {
@@ -52,8 +51,9 @@ CheckInstallAgent() {
fi
if [ $# -ge 2 ]
then
- url=$1
- meshid=$2
+ uninstall=$1
+ url=$2
+ meshid=$3
meshidlen=${#meshid}
if [ $meshidlen -gt 63 ]
then
@@ -61,41 +61,41 @@ CheckInstallAgent() {
machinetype=$( uname -m )
# If we have 3 arguments...
- if [ $# -ge 3 ]
+ if [ $# -ge 4 ]
then
# echo "Computer type is specified..."
- machineid=$3
+ machineid=$4
else
# echo "Detecting computer type..."
if [ $machinetype == 'x86_64' ] || [ $machinetype == 'amd64' ]
then
- if [ $starttype -eq 5 ]
- then
- # FreeBSD x86, 64 bit
- machineid=30
- else
- # Linux x86, 64 bit
- bitlen=$( getconf LONG_BIT )
- if [ $bitlen == '32' ]
- then
- # 32 bit OS
- machineid=5
- else
- # 64 bit OS
- machineid=6
- fi
- fi
+ if [ $starttype -eq 5 ]
+ then
+ # FreeBSD x86, 64 bit
+ machineid=30
+ else
+ # Linux x86, 64 bit
+ bitlen=$( getconf LONG_BIT )
+ if [ $bitlen == '32' ]
+ then
+ # 32 bit OS
+ machineid=5
+ else
+ # 64 bit OS
+ machineid=6
+ fi
+ fi
fi
if [ $machinetype == 'x86' ] || [ $machinetype == 'i686' ] || [ $machinetype == 'i586' ]
then
- if [ $starttype -eq 5 ]
- then
- # FreeBSD x86, 32 bit
- machineid=31
- else
- # Linux x86, 32 bit
- machineid=5
- fi
+ if [ $starttype -eq 5 ]
+ then
+ # FreeBSD x86, 32 bit
+ machineid=31
+ else
+ # Linux x86, 32 bit
+ machineid=5
+ fi
fi
if [ $machinetype == 'armv6l' ] || [ $machinetype == 'armv7l' ]
then
@@ -114,169 +114,66 @@ CheckInstallAgent() {
then
echo "Unsupported machine type: $machinetype."
else
- DownloadAgent $url $meshid $machineid
+ DownloadAgent $uninstall $url $meshid $machineid
fi
else
- echo "MeshID is not correct, must be at least 64 characters long."
+ echo "Device group identifier is not correct, must be at least 64 characters long."
fi
else
- echo "URI and/or MeshID have not been specified, must be passed in as arguments."
+ echo "URI and/or device group identifier have not been specified, must be passed in as arguments."
return 0;
fi
}
DownloadAgent() {
- url=$1
- meshid=$2
- machineid=$3
- # Create folder
- mkdir -p /usr/local/mesh
- cd /usr/local/mesh
- echo "Downloading Mesh agent #$machineid..."
- wget $url/meshagents?id=$machineid {{{wgetoptionshttps}}}-O /usr/local/mesh/meshagent || curl {{{curloptionshttps}}}--output /usr/local/mesh/meshagent $url/meshagents?id=$machineid
+ uninstall=$1
+ url=$2
+ meshid=$3
+ machineid=$4
+ echo "Downloading agent #$machineid..."
+ wget $url/meshagents?id=$machineid {{{wgetoptionshttps}}}-O ./meshagent || curl {{{curloptionshttps}}}--output ./meshagent $url/meshagents?id=$machineid
# If it did not work, try again using http
if [ $? != 0 ]
then
url=${url/"https://"/"http://"}
- wget $url/meshagents?id=$machineid {{{wgetoptionshttp}}}-O /usr/local/mesh/meshagent || curl {{{curloptionshttp}}}--output /usr/local/mesh/meshagent $url/meshagents?id=$machineid
+ wget $url/meshagents?id=$machineid {{{wgetoptionshttp}}}-O ./meshagent || curl {{{curloptionshttp}}}--output ./meshagent $url/meshagents?id=$machineid
fi
if [ $? -eq 0 ]
then
- echo "Mesh agent downloaded."
+ echo "Agent downloaded."
# TODO: We could check the meshagent sha256 hash, but best to authenticate the server.
- chmod 755 /usr/local/mesh/meshagent
- wget $url/meshsettings?id=$meshid {{{wgetoptionshttps}}}-O /usr/local/mesh/meshagent.msh || curl {{{curloptionshttps}}}--output /usr/local/mesh/meshagent.msh $url/meshsettings?id=$meshid
+ chmod 755 ./meshagent
+ wget $url/meshsettings?id=$meshid {{{wgetoptionshttps}}}-O ./meshagent.msh || curl {{{curloptionshttps}}}--output ./meshagent.msh $url/meshsettings?id=$meshid
# If it did not work, try again using http
if [ $? -ne 0 ]
then
- wget $url/meshsettings?id=$meshid {{{wgetoptionshttp}}}-O /usr/local/mesh/meshagent.msh || curl {{{curloptionshttp}}}--output /usr/local/mesh/meshagent.msh $url/meshsettings?id=$meshid
+ wget $url/meshsettings?id=$meshid {{{wgetoptionshttp}}}-O ./meshagent.msh || curl {{{curloptionshttp}}}--output ./meshagent.msh $url/meshsettings?id=$meshid
fi
if [ $? -eq 0 ]
then
- UpdateMshFile
- if [ $starttype -eq 1 ]
+ # Update the .msh file and run the agent installer/uninstaller
+ if [ $uninstall == 'uninstall' ] || [ $uninstall == 'UNINSTALL' ]
then
- # systemd
- if [ -d "/lib/systemd/system/" ]
- then
- 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
- else
- # Some distros have the systemd folder at a different place
- if [ -d "/usr/lib/systemd/system/" ]
- then
- 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
- else
- echo "Unable to find systemd folder."
- fi
- fi
- systemctl enable meshagent
- systemctl start meshagent
- echo 'meshagent installed as systemd service.'
- echo 'To start service: sudo systemctl start meshagent'
- echo 'To stop service: sudo systemctl stop meshagent'
- elif [ $starttype -eq 3 ]
- then
- # initd
- wget $url/meshagents?script=2 {{{wgetoptionshttps}}}-O /etc/init.d/meshagent || curl {{{curloptionshttps}}}--output /etc/init.d/meshagent $url/meshagents?script=2
- chmod +x /etc/init.d/meshagent
- # creates symlinks for rc.d
- update-rc.d meshagent defaults
- service meshagent start
- echo 'meshagent installed as init.d service.'
- echo 'To start service: sudo service meshagent start'
- echo 'To stop service: sudo service meshagent stop'
- elif [ $starttype -eq 2 ]
- then
- # upstart
- 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
- initctl start meshagent
- echo 'meshagent installed as upstart/init.d service.'
- echo 'To start service: sudo initctl start meshagent'
- echo 'To stop service: sudo initctl stop meshagent'
- elif [ $starttype -eq 5 ]
- then
- # FreeBSD
- 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
- chmod +x /usr/local/etc/rc.d/meshagent
- service meshagent start
- echo 'meshagent installed as BSD service.'
- echo 'To start service: sudo service meshagent start'
- echo 'To stop service: sudo service meshagent stop'
+ # Uninstall the agent
+ ./meshagent -fulluninstall
else
- # unknown
- echo "Unknown Service Platform Type. (ie: init, systemd, etc)"
- echo "Installing as Pseudo Service (Mesh Daemon)"
- /usr/local/mesh/meshagent -exec "require('service-manager').manager.installService({name: 'meshagent', servicePath: process.execPath, files: ['/usr/local/mesh/meshagent.msh']});process.exit();"
- /usr/local/mesh_daemons/daemon start meshagent
- echo 'To start service: /usr/local/mesh_daemons/daemon start meshagent'
- echo 'To stop service: /usr/local/mesh_daemons/daemon stop meshagent'
+ # Install the agent
+ UpdateMshFile
+ ./meshagent -fullinstall --copy-msh=1
fi
- echo "Mesh agent started."
else
- echo "Unable to download mesh settings at: $url/meshsettings?id=$meshid."
+ echo "Unable to download device group settings at: $url/meshsettings?id=$meshid."
fi
else
- echo "Unable to download mesh agent at: $url/meshagents?id=$machineid."
+ echo "Unable to download agent at: $url/meshagents?id=$machineid."
fi
}
-UninstallAgent() {
-# Uninstall agent
- if [ -e "/usr/local" ]
- then
- installpath="/usr/local/mesh"
- else
- installpath="/usr/mesh"
- fi
-
- if [ $starttype -eq 1 ]
- then
- # systemd
- systemctl disable meshagent
- systemctl stop meshagent
- rm -f /sbin/meshcmd /lib/systemd/system/meshagent.service
- systemctl stop meshagentDiagnostic &> /dev/null
- rm -f /lib/systemd/system/meshagentDiagnostic.service &> /dev/null
- else
- if [ $starttype -eq 3 ]; then
- # initd
- service meshagent stop
- update-rc.d -f meshagent remove
- rm -f /sbin/meshcmd /etc/init.d/meshagent
- service meshagentDiagnostic stop &> /dev/null
- rm -f /etc/init.d/meshagentDiagnostic &> /dev/null
- elif [ $starttype -eq 2 ]; then
- # upstart
- initctl stop meshagent
- rm -f /sbin/meshcmd
- rm -f /etc/init/meshagent.conf
- rm -f /etc/rc2.d/S20mesh /etc/rc3.d/S20mesh /etc/rc5.d/S20mesh
- initctl stop meshagentDiagnostic &> /dev/null
- rm -f /etc/init/meshagentDiagnostic.conf &> /dev/null
- elif [ $starttype -eq 5 ]; then
- # FreeBSD
- service meshagent stop
- service meshagentDiagnostic stop &> /dev/null
- rm -f /usr/local/etc/rc.d/meshagent
- rm -f /usr/local/etc/rc.d/meshagentDiagnostic &> /dev/null
- fi
- fi
-
- if [ -e $installpath ]
- then
- rm -rf $installpath/*
- rmdir $installpath
- fi
- rm -rf /usr/local/mesh_services/meshagentDiagnostic &> /dev/null
- rm -f /etc/cron.d/meshagentDiagnostic_periodicStart &> /dev/null
- echo "Agent uninstalled."
-}
-
CheckStartupType
starttype=$?
@@ -287,19 +184,15 @@ if [ $currentuser == 'root' ]
then
if [ $# -eq 0 ]
then
- echo -e "This script will install or uninstall a mesh agent, usage:\n $0 [serverurl] [meshid] (machineid)\n $0 uninstall"
+ echo -e "This script will install or uninstall a agent, usage:\n $0 [serverUrl] [deviceGroupId] (machineId)\n $0 uninstall [serverUrl] [deviceGroupId] (machineId)"
else
- if [ $# -eq 1 ]
+ if [ $1 == 'uninstall' ] || [ $1 == 'UNINSTALL' ]
then
- if [ $1 == 'uninstall' ] || [ $1 == 'UNINSTALL' ]
- then
- UninstallAgent
- fi
+ CheckInstallAgent 'uninstall' $2 $3 $4
else
- UninstallAgent
- CheckInstallAgent $1 $2 $3
+ CheckInstallAgent 'install' $1 $2 $3
fi
fi
else
- echo "Must be root to install or uninstall mesh agent."
+ echo "Must be root to install or uninstall the agent."
fi
diff --git a/translate/translate.json b/translate/translate.json
index a127e195..0ba4d8c2 100644
--- a/translate/translate.json
+++ b/translate/translate.json
@@ -17,8 +17,8 @@
"zh-chs": " + CIRA",
"zh-cht": " + CIRA",
"xloc": [
- "default.handlebars->31->1428",
- "default.handlebars->31->1430"
+ "default.handlebars->31->1429",
+ "default.handlebars->31->1431"
]
},
{
@@ -38,8 +38,8 @@
"zh-chs": " - 1天后重设。",
"zh-cht": " - 1天后重設。",
"xloc": [
- "default-mobile.handlebars->11->56",
- "default.handlebars->31->67"
+ "default-mobile.handlebars->11->57",
+ "default.handlebars->31->68"
]
},
{
@@ -59,8 +59,8 @@
"zh-chs": " - 1小时后重设。",
"zh-cht": " - 1小時後重設。",
"xloc": [
- "default-mobile.handlebars->11->54",
- "default.handlebars->31->65"
+ "default-mobile.handlebars->11->55",
+ "default.handlebars->31->66"
]
},
{
@@ -80,8 +80,8 @@
"zh-chs": " - 1分钟后重设。",
"zh-cht": " - 1分鐘後重設。",
"xloc": [
- "default-mobile.handlebars->11->52",
- "default.handlebars->31->63"
+ "default-mobile.handlebars->11->53",
+ "default.handlebars->31->64"
]
},
{
@@ -101,8 +101,8 @@
"zh-chs": " - 在{0}天内重置。",
"zh-cht": " - 在{0}天內重置。",
"xloc": [
- "default-mobile.handlebars->11->57",
- "default.handlebars->31->68"
+ "default-mobile.handlebars->11->58",
+ "default.handlebars->31->69"
]
},
{
@@ -122,8 +122,8 @@
"zh-chs": " - 在{0}小时内重置。",
"zh-cht": " - 在{0}小時內重置。",
"xloc": [
- "default-mobile.handlebars->11->55",
- "default.handlebars->31->66"
+ "default-mobile.handlebars->11->56",
+ "default.handlebars->31->67"
]
},
{
@@ -143,8 +143,8 @@
"zh-chs": " - 在{0}分钟内重置。",
"zh-cht": " - 在{0}分鐘內重置。",
"xloc": [
- "default-mobile.handlebars->11->53",
- "default.handlebars->31->64"
+ "default-mobile.handlebars->11->54",
+ "default.handlebars->31->65"
]
},
{
@@ -164,10 +164,10 @@
"zh-chs": " -下次登录时重置。",
"zh-cht": " -下次登入時重置。",
"xloc": [
- "default-mobile.handlebars->11->50",
"default-mobile.handlebars->11->51",
- "default.handlebars->31->61",
- "default.handlebars->31->62"
+ "default-mobile.handlebars->11->52",
+ "default.handlebars->31->62",
+ "default.handlebars->31->63"
]
},
{
@@ -204,7 +204,7 @@
"zh-chs": " 可以使用密码提示,但不建议使用。",
"zh-cht": " 可以使用密碼提示,但不建議使用。",
"xloc": [
- "default.handlebars->31->1341"
+ "default.handlebars->31->1342"
]
},
{
@@ -224,8 +224,8 @@
"zh-chs": " 用户需要先登录到该服务器一次,然后才能将其添加到设备组。",
"zh-cht": " 用戶需要先登入到該伺服器一次,然後才能將其新增到裝置群。",
"xloc": [
- "default.handlebars->31->1505",
- "default.handlebars->31->1969"
+ "default.handlebars->31->1506",
+ "default.handlebars->31->1970"
]
},
{
@@ -279,7 +279,7 @@
"zh-chs": " 节点",
"zh-cht": " 節點",
"xloc": [
- "default-mobile.handlebars->11->219"
+ "default-mobile.handlebars->11->220"
]
},
{
@@ -299,7 +299,7 @@
"zh-chs": " 节点",
"zh-cht": " 節點",
"xloc": [
- "default-mobile.handlebars->11->220"
+ "default-mobile.handlebars->11->221"
]
},
{
@@ -319,7 +319,7 @@
"zh-chs": " TLS。",
"zh-cht": " TLS。",
"xloc": [
- "default.handlebars->31->183"
+ "default.handlebars->31->184"
]
},
{
@@ -339,7 +339,7 @@
"zh-chs": " 没有TLS。",
"zh-cht": " 沒有TLS。",
"xloc": [
- "default.handlebars->31->184"
+ "default.handlebars->31->185"
]
},
{
@@ -395,7 +395,7 @@
"zh-chs": "(可选的)",
"zh-cht": "(可選的)",
"xloc": [
- "default.handlebars->31->356"
+ "default.handlebars->31->357"
]
},
{
@@ -432,8 +432,8 @@
"zh-chs": "* 8个字符,1个大写,1个小写,1个数字,1个非字母数字。",
"zh-cht": "* 8個字符,1個大寫,1個小寫,1個數字,1個非字母數字。",
"xloc": [
- "default.handlebars->31->1474",
- "default.handlebars->31->322"
+ "default.handlebars->31->1475",
+ "default.handlebars->31->323"
]
},
{
@@ -453,7 +453,7 @@
"zh-chs": "*对于BSD,首先运行“ pkg install wget sudo bash ”。",
"zh-cht": "*對於BSD,首先運行“ pkg install wget sudo bash ”。",
"xloc": [
- "default.handlebars->31->396"
+ "default.handlebars->31->397"
]
},
{
@@ -507,8 +507,8 @@
"zh-chs": ",",
"zh-cht": ",",
"xloc": [
- "default-mobile.handlebars->11->514",
- "default.handlebars->31->1575"
+ "default-mobile.handlebars->11->515",
+ "default.handlebars->31->1576"
]
},
{
@@ -528,8 +528,8 @@
"zh-chs": ",仅限于Intel®AMT",
"zh-cht": ",只適用於Intel®AMT",
"xloc": [
- "default-mobile.handlebars->11->157",
- "default.handlebars->31->221"
+ "default-mobile.handlebars->11->158",
+ "default.handlebars->31->222"
]
},
{
@@ -549,7 +549,7 @@
"zh-chs": ",MQTT在线",
"zh-cht": ",MQTT在線",
"xloc": [
- "default.handlebars->31->1083"
+ "default.handlebars->31->1084"
]
},
{
@@ -557,7 +557,7 @@
"fr": ", Pas de consentement",
"nl": ", Geen toestemming",
"xloc": [
- "default.handlebars->31->696"
+ "default.handlebars->31->697"
]
},
{
@@ -577,7 +577,7 @@
"zh-chs": ",提示同意",
"zh-cht": ",提示同意",
"xloc": [
- "default.handlebars->31->697"
+ "default.handlebars->31->698"
]
},
{
@@ -597,7 +597,7 @@
"zh-chs": ",软体KVM",
"zh-cht": ",軟體KVM",
"xloc": [
- "default.handlebars->31->869",
+ "default.handlebars->31->870",
"desktop.handlebars->3->12"
]
},
@@ -606,14 +606,14 @@
"fr": ", barre d'outils",
"nl": ", Werkbalk",
"xloc": [
- "default.handlebars->31->698"
+ "default.handlebars->31->699"
]
},
{
"en": ", View only",
"nl": ", Alleen kijken",
"xloc": [
- "default.handlebars->31->695"
+ "default.handlebars->31->696"
]
},
{
@@ -633,11 +633,11 @@
"zh-chs": ",WebRTC",
"zh-cht": ",WebRTC",
"xloc": [
- "default-mobile.handlebars->11->313",
- "default-mobile.handlebars->11->346",
- "default.handlebars->31->876",
- "default.handlebars->31->935",
- "default.handlebars->31->947",
+ "default-mobile.handlebars->11->314",
+ "default-mobile.handlebars->11->347",
+ "default.handlebars->31->877",
+ "default.handlebars->31->936",
+ "default.handlebars->31->948",
"desktop.handlebars->3->19",
"terminal.handlebars->3->9",
"xterm.handlebars->9->6"
@@ -760,7 +760,7 @@
"zh-chs": ",{0}观看",
"zh-cht": ",{0}觀看",
"xloc": [
- "default.handlebars->31->870",
+ "default.handlebars->31->871",
"desktop.handlebars->3->13"
]
},
@@ -823,11 +823,11 @@
"zh-chs": "...",
"zh-cht": "...",
"xloc": [
- "default-mobile.handlebars->11->118",
- "default-mobile.handlebars->11->348",
- "default.handlebars->31->1616",
- "default.handlebars->31->2128",
- "default.handlebars->31->953"
+ "default-mobile.handlebars->11->119",
+ "default-mobile.handlebars->11->349",
+ "default.handlebars->31->1617",
+ "default.handlebars->31->2129",
+ "default.handlebars->31->954"
]
},
{
@@ -884,7 +884,7 @@
"zh-chs": "1个活跃时段",
"zh-cht": "1個活躍時段",
"xloc": [
- "default.handlebars->31->2040"
+ "default.handlebars->31->2041"
]
},
{
@@ -904,9 +904,9 @@
"zh-chs": "1个字节",
"zh-cht": "1個位元組",
"xloc": [
- "default-mobile.handlebars->11->128",
- "default-mobile.handlebars->11->557",
- "default.handlebars->31->1640",
+ "default-mobile.handlebars->11->129",
+ "default-mobile.handlebars->11->558",
+ "default.handlebars->31->1641",
"download.handlebars->3->1",
"download2.handlebars->5->1"
]
@@ -928,7 +928,7 @@
"zh-chs": "1条连接",
"zh-cht": "1位聯絡文",
"xloc": [
- "default.handlebars->31->872",
+ "default.handlebars->31->873",
"desktop.handlebars->3->15"
]
},
@@ -949,9 +949,9 @@
"zh-chs": "1天",
"zh-cht": "1天",
"xloc": [
- "default.handlebars->31->191",
- "default.handlebars->31->347",
- "default.handlebars->31->361"
+ "default.handlebars->31->192",
+ "default.handlebars->31->348",
+ "default.handlebars->31->362"
]
},
{
@@ -971,7 +971,7 @@
"zh-chs": "1组",
"zh-cht": "1群",
"xloc": [
- "default.handlebars->31->2003"
+ "default.handlebars->31->2004"
]
},
{
@@ -991,9 +991,9 @@
"zh-chs": "1小时",
"zh-cht": "1小時",
"xloc": [
- "default.handlebars->31->189",
- "default.handlebars->31->345",
- "default.handlebars->31->359"
+ "default.handlebars->31->190",
+ "default.handlebars->31->346",
+ "default.handlebars->31->360"
]
},
{
@@ -1013,7 +1013,7 @@
"zh-chs": "1分钟",
"zh-cht": "1分鐘",
"xloc": [
- "default.handlebars->31->752"
+ "default.handlebars->31->753"
]
},
{
@@ -1033,7 +1033,7 @@
"zh-chs": "1分钟之后断开连接",
"zh-cht": "1分鐘之後離線",
"xloc": [
- "default.handlebars->31->71"
+ "default.handlebars->31->72"
]
},
{
@@ -1053,9 +1053,9 @@
"zh-chs": "1个月",
"zh-cht": "1個月",
"xloc": [
- "default.handlebars->31->193",
- "default.handlebars->31->349",
- "default.handlebars->31->363"
+ "default.handlebars->31->194",
+ "default.handlebars->31->350",
+ "default.handlebars->31->364"
]
},
{
@@ -1075,7 +1075,7 @@
"zh-chs": "有1个用户没有显示,请使用搜索框查找用户...",
"zh-cht": "有1個用戶沒有顯示,請使用搜尋框搜尋用戶...",
"xloc": [
- "default.handlebars->31->1793"
+ "default.handlebars->31->1794"
]
},
{
@@ -1095,7 +1095,7 @@
"zh-chs": "1个节点",
"zh-cht": "1個節點",
"xloc": [
- "default.handlebars->31->418"
+ "default.handlebars->31->419"
]
},
{
@@ -1115,7 +1115,7 @@
"zh-chs": "1秒之后断开连接",
"zh-cht": "1秒之後離線",
"xloc": [
- "default.handlebars->31->69"
+ "default.handlebars->31->70"
]
},
{
@@ -1135,19 +1135,19 @@
"zh-chs": "1节",
"zh-cht": "1節",
"xloc": [
- "default-mobile.handlebars->11->173",
- "default-mobile.handlebars->11->176",
- "default-mobile.handlebars->11->179",
- "default-mobile.handlebars->11->182",
- "default-mobile.handlebars->11->185",
- "default-mobile.handlebars->11->188",
- "default.handlebars->31->1797",
- "default.handlebars->31->267",
- "default.handlebars->31->270",
- "default.handlebars->31->273",
- "default.handlebars->31->276",
- "default.handlebars->31->279",
- "default.handlebars->31->282"
+ "default-mobile.handlebars->11->174",
+ "default-mobile.handlebars->11->177",
+ "default-mobile.handlebars->11->180",
+ "default-mobile.handlebars->11->183",
+ "default-mobile.handlebars->11->186",
+ "default-mobile.handlebars->11->189",
+ "default.handlebars->31->1798",
+ "default.handlebars->31->268",
+ "default.handlebars->31->271",
+ "default.handlebars->31->274",
+ "default.handlebars->31->277",
+ "default.handlebars->31->280",
+ "default.handlebars->31->283"
]
},
{
@@ -1167,9 +1167,9 @@
"zh-chs": "1周",
"zh-cht": "1週",
"xloc": [
- "default.handlebars->31->192",
- "default.handlebars->31->348",
- "default.handlebars->31->362"
+ "default.handlebars->31->193",
+ "default.handlebars->31->349",
+ "default.handlebars->31->363"
]
},
{
@@ -1273,7 +1273,7 @@
"zh-chs": "10分钟",
"zh-cht": "10分鐘",
"xloc": [
- "default.handlebars->31->754"
+ "default.handlebars->31->755"
]
},
{
@@ -1356,7 +1356,7 @@
"zh-chs": "12小时",
"zh-cht": "12小時",
"xloc": [
- "default.handlebars->31->762"
+ "default.handlebars->31->763"
]
},
{
@@ -1398,7 +1398,7 @@
"zh-chs": "15分钟",
"zh-cht": "15分鐘",
"xloc": [
- "default.handlebars->31->755"
+ "default.handlebars->31->756"
]
},
{
@@ -1418,7 +1418,7 @@
"zh-chs": "16小时",
"zh-cht": "16小時",
"xloc": [
- "default.handlebars->31->763"
+ "default.handlebars->31->764"
]
},
{
@@ -1438,7 +1438,7 @@
"zh-chs": "2天",
"zh-cht": "2天",
"xloc": [
- "default.handlebars->31->765"
+ "default.handlebars->31->766"
]
},
{
@@ -1458,7 +1458,7 @@
"zh-chs": "2小时",
"zh-cht": "2小時",
"xloc": [
- "default.handlebars->31->759"
+ "default.handlebars->31->760"
]
},
{
@@ -1478,7 +1478,7 @@
"zh-chs": "两步登录激活失败。",
"zh-cht": "兩步登入啟用失敗。",
"xloc": [
- "default.handlebars->31->138"
+ "default.handlebars->31->139"
]
},
{
@@ -1498,7 +1498,7 @@
"zh-chs": "两步登录激活删除失败。",
"zh-cht": "兩步登入啟用刪除失敗。",
"xloc": [
- "default.handlebars->31->143"
+ "default.handlebars->31->144"
]
},
{
@@ -1562,7 +1562,7 @@
"zh-chs": "24小时",
"zh-cht": "24小時",
"xloc": [
- "default.handlebars->31->764"
+ "default.handlebars->31->765"
]
},
{
@@ -1624,7 +1624,7 @@
"zh-chs": "2FA备份代码已清除",
"zh-cht": "2FA備份代碼已清除",
"xloc": [
- "default.handlebars->31->1751"
+ "default.handlebars->31->1752"
]
},
{
@@ -1644,8 +1644,8 @@
"zh-chs": "启用第二因素身份验证",
"zh-cht": "啟用第二因素身份驗證",
"xloc": [
- "default.handlebars->31->1810",
- "default.handlebars->31->2025"
+ "default.handlebars->31->1811",
+ "default.handlebars->31->2026"
]
},
{
@@ -1681,7 +1681,7 @@
"pt": "3",
"ru": "3",
"xloc": [
- "default-mobile.handlebars->11->374"
+ "default-mobile.handlebars->11->375"
]
},
{
@@ -1764,7 +1764,7 @@
"zh-chs": "30分钟",
"zh-cht": "30分鐘",
"xloc": [
- "default.handlebars->31->756"
+ "default.handlebars->31->757"
]
},
{
@@ -1784,8 +1784,8 @@
"zh-chs": "MeshAgent的32位版本",
"zh-cht": "MeshAgent的32位版本",
"xloc": [
- "default.handlebars->31->386",
- "default.handlebars->31->405"
+ "default.handlebars->31->387",
+ "default.handlebars->31->406"
]
},
{
@@ -1827,7 +1827,7 @@
"zh-chs": "4天",
"zh-cht": "4天",
"xloc": [
- "default.handlebars->31->766"
+ "default.handlebars->31->767"
]
},
{
@@ -1847,7 +1847,7 @@
"zh-chs": "4个小时",
"zh-cht": "4個小時",
"xloc": [
- "default.handlebars->31->760"
+ "default.handlebars->31->761"
]
},
{
@@ -1930,7 +1930,7 @@
"zh-chs": "45分钟",
"zh-cht": "45分鐘",
"xloc": [
- "default.handlebars->31->757"
+ "default.handlebars->31->758"
]
},
{
@@ -1970,7 +1970,7 @@
"zh-chs": "5分钟",
"zh-cht": "5分鐘",
"xloc": [
- "default.handlebars->31->753"
+ "default.handlebars->31->754"
]
},
{
@@ -2096,7 +2096,7 @@
"zh-chs": "60分钟",
"zh-cht": "60分鐘",
"xloc": [
- "default.handlebars->31->758"
+ "default.handlebars->31->759"
]
},
{
@@ -2138,7 +2138,7 @@
"zh-chs": "64位版本的macOS Mesh Agent",
"zh-cht": "64位版本的macOS Mesh Agent",
"xloc": [
- "default.handlebars->31->399"
+ "default.handlebars->31->400"
]
},
{
@@ -2158,8 +2158,8 @@
"zh-chs": "MeshAgent的64位版本",
"zh-cht": "MeshAgent的64位版本",
"xloc": [
- "default.handlebars->31->390",
- "default.handlebars->31->408"
+ "default.handlebars->31->391",
+ "default.handlebars->31->409"
]
},
{
@@ -2216,7 +2216,7 @@
"zh-chs": "7天电源状态",
"zh-cht": "7天電源狀態",
"xloc": [
- "default.handlebars->31->797"
+ "default.handlebars->31->798"
]
},
{
@@ -2279,9 +2279,9 @@
"zh-chs": "8小時",
"zh-cht": "8小時",
"xloc": [
- "default.handlebars->31->346",
- "default.handlebars->31->360",
- "default.handlebars->31->761"
+ "default.handlebars->31->347",
+ "default.handlebars->31->361",
+ "default.handlebars->31->762"
]
},
{
@@ -2346,7 +2346,7 @@
"en": "",
"nl": "",
"xloc": [
- "default.handlebars->31->402"
+ "default.handlebars->31->403"
]
},
{
@@ -2386,7 +2386,7 @@
"zh-chs": "硬件密钥用作辅助登录身份验证。",
"zh-cht": "硬件密鑰用作輔助登入身份驗證。",
"xloc": [
- "default.handlebars->31->152"
+ "default.handlebars->31->153"
]
},
{
@@ -2406,7 +2406,7 @@
"zh-chs": "删除了两步登录激活 b>。您可以随时重新激活此功能。",
"zh-cht": "刪除了兩步登入啟用 b>。你可以隨時重新啟用此功能。",
"xloc": [
- "default-mobile.handlebars->11->63"
+ "default-mobile.handlebars->11->64"
]
},
{
@@ -2426,7 +2426,7 @@
"zh-chs": "两步登录激活成功 b>。您现在需要一个有效的保安编码才能再次登录。",
"zh-cht": "兩步登入啟用成功 b>。你現在需要一個有效的保安編碼才能再次登入。",
"xloc": [
- "default-mobile.handlebars->11->60"
+ "default-mobile.handlebars->11->61"
]
},
{
@@ -2446,7 +2446,7 @@
"zh-chs": "两步登录激活失败 b>。从应用程序中清除机密,然后重试。您只有几分钟的时间来输入正确的代码。",
"zh-cht": "兩步登入啟動失敗 b>。從應用程序中清除秘密,然後重試。你只有幾分鐘的時間來輸入正確的代碼。",
"xloc": [
- "default-mobile.handlebars->11->61"
+ "default-mobile.handlebars->11->62"
]
},
{
@@ -2466,7 +2466,7 @@
"zh-chs": "两步登录激活删除失败 b>。再试一次。",
"zh-cht": "兩步登入啟動刪除失敗 b>。再試一次。",
"xloc": [
- "default-mobile.handlebars->11->64"
+ "default-mobile.handlebars->11->65"
]
},
{
@@ -2506,9 +2506,9 @@
"zh-chs": "ACM",
"zh-cht": "ACM",
"xloc": [
- "default-mobile.handlebars->11->246",
- "default.handlebars->31->1444",
- "default.handlebars->31->587"
+ "default-mobile.handlebars->11->247",
+ "default.handlebars->31->1445",
+ "default.handlebars->31->588"
]
},
{
@@ -2562,8 +2562,8 @@
"zh-chs": "AMT",
"zh-cht": "AMT",
"xloc": [
- "default.handlebars->31->257",
- "default.handlebars->31->446"
+ "default.handlebars->31->258",
+ "default.handlebars->31->447"
]
},
{
@@ -2587,6 +2587,13 @@
"default.handlebars->31->37"
]
},
+ {
+ "en": "ARMADA/CORTEX-A53/MUSL (OpenWRT)",
+ "xloc": [
+ "default-mobile.handlebars->11->47",
+ "default.handlebars->31->54"
+ ]
+ },
{
"cs": "ARMv6l / ARMv7l",
"de": "ARMv6l / ARMv7l",
@@ -2667,7 +2674,7 @@
"zh-chs": "拒绝访问",
"zh-cht": "拒絕存取",
"xloc": [
- "default.handlebars->31->1084"
+ "default.handlebars->31->1085"
]
},
{
@@ -2709,7 +2716,7 @@
"zh-chs": "访问服务器档案",
"zh-cht": "存取伺服器檔案",
"xloc": [
- "default.handlebars->31->1975"
+ "default.handlebars->31->1976"
]
},
{
@@ -2793,16 +2800,16 @@
"zh-chs": "账户安全",
"zh-cht": "帳號安全",
"xloc": [
- "default-mobile.handlebars->11->103",
- "default-mobile.handlebars->11->105",
- "default-mobile.handlebars->11->221",
- "default-mobile.handlebars->11->223",
+ "default-mobile.handlebars->11->104",
+ "default-mobile.handlebars->11->106",
+ "default-mobile.handlebars->11->222",
+ "default-mobile.handlebars->11->224",
"default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3AccountActions->p2AccountSecurity->1->0",
- "default.handlebars->31->1350",
- "default.handlebars->31->1352",
- "default.handlebars->31->2242",
- "default.handlebars->31->556",
- "default.handlebars->31->558"
+ "default.handlebars->31->1351",
+ "default.handlebars->31->1353",
+ "default.handlebars->31->2243",
+ "default.handlebars->31->557",
+ "default.handlebars->31->559"
]
},
{
@@ -2810,8 +2817,8 @@
"nl": "Account instellingen",
"fr": "Paramètres du compte",
"xloc": [
- "default-mobile.handlebars->11->525",
- "default.handlebars->31->2136"
+ "default-mobile.handlebars->11->526",
+ "default.handlebars->31->2137"
]
},
{
@@ -2872,7 +2879,7 @@
"zh-chs": "帐户已更改:{0}",
"zh-cht": "帳戶已更改:{0}",
"xloc": [
- "default.handlebars->31->1724"
+ "default.handlebars->31->1725"
]
},
{
@@ -2892,7 +2899,7 @@
"zh-chs": "创建帐户,电子邮件为{0}",
"zh-cht": "創建帳戶,電子郵件為{0}",
"xloc": [
- "default.handlebars->31->1723"
+ "default.handlebars->31->1724"
]
},
{
@@ -2912,7 +2919,7 @@
"zh-chs": "创建帐户,用户名是{0}",
"zh-cht": "帳戶已創建,用戶名是{0}",
"xloc": [
- "default.handlebars->31->1722"
+ "default.handlebars->31->1723"
]
},
{
@@ -2932,8 +2939,8 @@
"zh-chs": "帐户已被锁定",
"zh-cht": "帳戶已被鎖定",
"xloc": [
- "default.handlebars->31->1812",
- "default.handlebars->31->1972"
+ "default.handlebars->31->1813",
+ "default.handlebars->31->1973"
]
},
{
@@ -2953,8 +2960,8 @@
"zh-chs": "达到帐户限制。",
"zh-cht": "達到帳戶限制。",
"xloc": [
- "default-mobile.handlebars->11->537",
- "default.handlebars->31->2148",
+ "default-mobile.handlebars->11->538",
+ "default.handlebars->31->2149",
"login-mobile.handlebars->5->6",
"login.handlebars->5->6",
"login2.handlebars->7->7"
@@ -2999,7 +3006,7 @@
"zh-chs": "帐号登录",
"zh-cht": "帳號登錄",
"xloc": [
- "default.handlebars->31->1659"
+ "default.handlebars->31->1660"
]
},
{
@@ -3019,7 +3026,7 @@
"zh-chs": "帐户登出",
"zh-cht": "帳戶登出",
"xloc": [
- "default.handlebars->31->1660"
+ "default.handlebars->31->1661"
]
},
{
@@ -3061,7 +3068,7 @@
"zh-chs": "帐户密码已更改:{0}",
"zh-cht": "帳戶密碼已更改:{0}",
"xloc": [
- "default.handlebars->31->1732"
+ "default.handlebars->31->1733"
]
},
{
@@ -3081,7 +3088,7 @@
"zh-chs": "帐户已删除",
"zh-cht": "帳戶已刪除",
"xloc": [
- "default.handlebars->31->1721"
+ "default.handlebars->31->1722"
]
},
{
@@ -3121,7 +3128,7 @@
"zh-chs": "指令",
"zh-cht": "指令",
"xloc": [
- "default.handlebars->31->1089",
+ "default.handlebars->31->1090",
"default.handlebars->container->column_l->p42->p42tbl->1->0->8"
]
},
@@ -3142,8 +3149,8 @@
"zh-chs": "动作档案",
"zh-cht": "動作檔案",
"xloc": [
- "default.handlebars->31->843",
- "default.handlebars->31->845"
+ "default.handlebars->31->844",
+ "default.handlebars->31->846"
]
},
{
@@ -3163,10 +3170,10 @@
"zh-chs": "动作",
"zh-cht": "動作",
"xloc": [
- "default-mobile.handlebars->11->269",
+ "default-mobile.handlebars->11->270",
"default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea4->1->3",
"default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->1",
- "default.handlebars->31->636",
+ "default.handlebars->31->637",
"default.handlebars->container->column_l->p11->deskarea0->deskarea1->1",
"default.handlebars->container->column_l->p12->termTable->1->1->0->1->1",
"default.handlebars->container->column_l->p13->p13toolbar->1->0->1->1"
@@ -3189,7 +3196,7 @@
"zh-chs": "使用FAT格式的USB密钥在管理控制模式(ACM)中激活英特尔®AMT。将setup.bin放在其上,然后使用此键引导一台或多台计算机。",
"zh-cht": "使用FAT格式的USB密鑰在管理控制模式(ACM)中激活英特爾®AMT。將setup.bin放在其上,然後使用此鍵引導一台或多台計算機。",
"xloc": [
- "default.handlebars->31->317"
+ "default.handlebars->31->318"
]
},
{
@@ -3249,7 +3256,7 @@
"zh-chs": "如果ACM失败,则激活到CCM",
"zh-cht": "如果ACM失敗,則激活到CCM",
"xloc": [
- "default.handlebars->31->1465"
+ "default.handlebars->31->1466"
]
},
{
@@ -3269,12 +3276,12 @@
"zh-chs": "已激活",
"zh-cht": "已啟動",
"xloc": [
- "default-mobile.handlebars->11->241",
- "default-mobile.handlebars->11->243",
- "default-mobile.handlebars->11->417",
- "default.handlebars->31->1045",
- "default.handlebars->31->580",
- "default.handlebars->31->582"
+ "default-mobile.handlebars->11->242",
+ "default-mobile.handlebars->11->244",
+ "default-mobile.handlebars->11->418",
+ "default.handlebars->31->1046",
+ "default.handlebars->31->581",
+ "default.handlebars->31->583"
]
},
{
@@ -3294,7 +3301,7 @@
"zh-chs": "激活",
"zh-cht": "啟動",
"xloc": [
- "default.handlebars->31->217"
+ "default.handlebars->31->218"
]
},
{
@@ -3314,7 +3321,7 @@
"zh-chs": "主动设备共享",
"zh-cht": "主動設備共享",
"xloc": [
- "default.handlebars->31->689"
+ "default.handlebars->31->690"
]
},
{
@@ -3339,8 +3346,8 @@
"fr": "Ajouter",
"nl": "Toevoegen",
"xloc": [
- "default-mobile.handlebars->11->339",
- "default.handlebars->31->906"
+ "default-mobile.handlebars->11->340",
+ "default.handlebars->31->907"
]
},
{
@@ -3360,8 +3367,8 @@
"zh-chs": "添加代理",
"zh-cht": "新增代理",
"xloc": [
- "default.handlebars->31->1440",
- "default.handlebars->31->300"
+ "default.handlebars->31->1441",
+ "default.handlebars->31->301"
]
},
{
@@ -3398,8 +3405,8 @@
"zh-chs": "添加设备",
"zh-cht": "新增裝置",
"xloc": [
- "default.handlebars->31->1949",
- "default.handlebars->31->2075"
+ "default.handlebars->31->1950",
+ "default.handlebars->31->2076"
]
},
{
@@ -3419,7 +3426,7 @@
"zh-chs": "添加设备日志",
"zh-cht": "新增裝置日誌",
"xloc": [
- "default.handlebars->31->738"
+ "default.handlebars->31->739"
]
},
{
@@ -3439,10 +3446,10 @@
"zh-chs": "添加设备组",
"zh-cht": "新增裝置群",
"xloc": [
- "default.handlebars->31->1539",
- "default.handlebars->31->1943",
- "default.handlebars->31->2063",
- "default.handlebars->31->237"
+ "default.handlebars->31->1540",
+ "default.handlebars->31->1944",
+ "default.handlebars->31->2064",
+ "default.handlebars->31->238"
]
},
{
@@ -3462,7 +3469,7 @@
"zh-chs": "添加设备组权限",
"zh-cht": "新增裝置群權限",
"xloc": [
- "default.handlebars->31->1536"
+ "default.handlebars->31->1537"
]
},
{
@@ -3482,8 +3489,8 @@
"zh-chs": "添加设备权限",
"zh-cht": "新增裝置權限",
"xloc": [
- "default.handlebars->31->1541",
- "default.handlebars->31->1543"
+ "default.handlebars->31->1542",
+ "default.handlebars->31->1544"
]
},
{
@@ -3520,7 +3527,7 @@
"zh-chs": "添加英特尔®AMT设备",
"zh-cht": "新增Intel® AMT裝置",
"xloc": [
- "default.handlebars->31->313"
+ "default.handlebars->31->314"
]
},
{
@@ -3540,7 +3547,7 @@
"zh-chs": "新增密钥",
"zh-cht": "新增密鑰",
"xloc": [
- "default.handlebars->31->156"
+ "default.handlebars->31->157"
]
},
{
@@ -3560,7 +3567,7 @@
"zh-chs": "添加本地",
"zh-cht": "新增本地",
"xloc": [
- "default.handlebars->31->294"
+ "default.handlebars->31->295"
]
},
{
@@ -3580,7 +3587,7 @@
"zh-chs": "添加成员身份",
"zh-cht": "新增成員身份",
"xloc": [
- "default.handlebars->31->2095"
+ "default.handlebars->31->2096"
]
},
{
@@ -3600,7 +3607,7 @@
"zh-chs": "添加 Mesh Agent",
"zh-cht": "新增 Mesh Agent",
"xloc": [
- "default.handlebars->31->417"
+ "default.handlebars->31->418"
]
},
{
@@ -3620,12 +3627,12 @@
"zh-chs": "添加安全密钥",
"zh-cht": "新增安全密鑰",
"xloc": [
- "default.handlebars->31->1117",
"default.handlebars->31->1118",
- "default.handlebars->31->159",
- "default.handlebars->31->161",
- "default.handlebars->31->164",
- "default.handlebars->31->165"
+ "default.handlebars->31->1119",
+ "default.handlebars->31->160",
+ "default.handlebars->31->162",
+ "default.handlebars->31->165",
+ "default.handlebars->31->166"
]
},
{
@@ -3645,8 +3652,8 @@
"zh-chs": "添加用户",
"zh-cht": "新增用戶",
"xloc": [
- "default-mobile.handlebars->11->459",
- "default.handlebars->31->681"
+ "default-mobile.handlebars->11->460",
+ "default.handlebars->31->682"
]
},
{
@@ -3666,7 +3673,7 @@
"zh-chs": "添加用户设备权限",
"zh-cht": "新增用戶裝置權限",
"xloc": [
- "default.handlebars->31->1546"
+ "default.handlebars->31->1547"
]
},
{
@@ -3686,10 +3693,10 @@
"zh-chs": "添加用户组",
"zh-cht": "新增用戶群",
"xloc": [
- "default.handlebars->31->1436",
- "default.handlebars->31->1538",
- "default.handlebars->31->2069",
- "default.handlebars->31->682"
+ "default.handlebars->31->1437",
+ "default.handlebars->31->1539",
+ "default.handlebars->31->2070",
+ "default.handlebars->31->683"
]
},
{
@@ -3709,7 +3716,7 @@
"zh-chs": "添加用户组设备权限",
"zh-cht": "新增用戶群裝置權限",
"xloc": [
- "default.handlebars->31->1548"
+ "default.handlebars->31->1549"
]
},
{
@@ -3729,7 +3736,7 @@
"zh-chs": "将用户添加到设备组",
"zh-cht": "將用戶新增到裝置群",
"xloc": [
- "default-mobile.handlebars->11->490"
+ "default-mobile.handlebars->11->491"
]
},
{
@@ -3766,8 +3773,8 @@
"zh-chs": "添加用户",
"zh-cht": "新增用戶",
"xloc": [
- "default.handlebars->31->1435",
- "default.handlebars->31->1938"
+ "default.handlebars->31->1436",
+ "default.handlebars->31->1939"
]
},
{
@@ -3787,7 +3794,7 @@
"zh-chs": "将用户添加到设备组",
"zh-cht": "將用戶新增到裝置群",
"xloc": [
- "default.handlebars->31->1535"
+ "default.handlebars->31->1536"
]
},
{
@@ -3807,7 +3814,7 @@
"zh-chs": "将用户添加到用户组",
"zh-cht": "將用戶新增到用戶群",
"xloc": [
- "default.handlebars->31->1971"
+ "default.handlebars->31->1972"
]
},
{
@@ -3827,7 +3834,7 @@
"zh-chs": "添加YubiKey®OTP",
"zh-cht": "新增YubiKey®OTP",
"xloc": [
- "default.handlebars->31->157"
+ "default.handlebars->31->158"
]
},
{
@@ -3847,7 +3854,7 @@
"zh-chs": "通过扫描本地网络添加新的英特尔®AMT计算机。",
"zh-cht": "通過掃描本地網絡新增新的Intel® AMT電腦。",
"xloc": [
- "default.handlebars->31->295"
+ "default.handlebars->31->296"
]
},
{
@@ -3884,7 +3891,7 @@
"zh-chs": "添加位于本地网络上的新英特尔®AMT计算机。",
"zh-cht": "新增位於本地網絡上的新Intel® AMT電腦。",
"xloc": [
- "default.handlebars->31->293"
+ "default.handlebars->31->294"
]
},
{
@@ -3904,7 +3911,7 @@
"zh-chs": "将新的英特尔®AMT设备添加到设备组“{0}”。",
"zh-cht": "將新的Intel® AMT裝置新增到裝置群“{0}”。",
"xloc": [
- "default.handlebars->31->303"
+ "default.handlebars->31->304"
]
},
{
@@ -3924,8 +3931,8 @@
"zh-chs": "通过安装Mesh Agent将新计算机添加到该设备组。",
"zh-cht": "通過安裝Mesh Agent將新電腦新增到該裝置群。",
"xloc": [
- "default.handlebars->31->1439",
- "default.handlebars->31->299"
+ "default.handlebars->31->1440",
+ "default.handlebars->31->300"
]
},
{
@@ -3945,7 +3952,7 @@
"zh-chs": "添加标签",
"zh-cht": "新增標籤",
"xloc": [
- "default.handlebars->31->483"
+ "default.handlebars->31->484"
]
},
{
@@ -3965,7 +3972,7 @@
"zh-chs": "通过定期在远程设备上以管理员身份运行MeshCmd,添加,激活和配置Intel®AMT以将“{0}”分组。",
"zh-cht": "通過定期在遠程設備上以管理員身份運行MeshCmd,添加,激活和配置Intel®AMT以將“{0}”分組。",
"xloc": [
- "default.handlebars->31->314"
+ "default.handlebars->31->315"
]
},
{
@@ -3985,7 +3992,7 @@
"zh-chs": "添加了身份验证应用程序",
"zh-cht": "添加了身份驗證應用程序",
"xloc": [
- "default.handlebars->31->1748"
+ "default.handlebars->31->1749"
]
},
{
@@ -4005,7 +4012,7 @@
"zh-chs": "已将设备共享{0}从{1}添加到{2}",
"zh-cht": "已將設備共享{0}從{1}添加到{2}",
"xloc": [
- "default.handlebars->31->1759"
+ "default.handlebars->31->1760"
]
},
{
@@ -4025,8 +4032,8 @@
"zh-chs": "已将设备{0}添加到设备组{1}",
"zh-cht": "已將設備{0}添加到設備組{1}",
"xloc": [
- "default.handlebars->31->1715",
- "default.handlebars->31->1742"
+ "default.handlebars->31->1716",
+ "default.handlebars->31->1743"
]
},
{
@@ -4046,7 +4053,7 @@
"zh-chs": "添加了安全密钥",
"zh-cht": "添加了安全密鑰",
"xloc": [
- "default.handlebars->31->1753"
+ "default.handlebars->31->1754"
]
},
{
@@ -4066,7 +4073,7 @@
"zh-chs": "已将用户组{0}添加到设备组{1}",
"zh-cht": "已將用戶組{0}添加到設備組{1}",
"xloc": [
- "default.handlebars->31->1726"
+ "default.handlebars->31->1727"
]
},
{
@@ -4086,8 +4093,8 @@
"zh-chs": "已将用户{0}添加到用户组{1}",
"zh-cht": "已將用戶{0}添加到用戶組{1}",
"xloc": [
- "default.handlebars->31->1729",
- "default.handlebars->31->1738"
+ "default.handlebars->31->1730",
+ "default.handlebars->31->1739"
]
},
{
@@ -4107,7 +4114,7 @@
"zh-chs": "地址",
"zh-cht": "地址",
"xloc": [
- "default.handlebars->31->233"
+ "default.handlebars->31->234"
]
},
{
@@ -4147,8 +4154,8 @@
"zh-chs": "管理员控制模式(ACM)",
"zh-cht": "管理員控制模式(ACM)",
"xloc": [
- "default-mobile.handlebars->11->419",
- "default.handlebars->31->1047"
+ "default-mobile.handlebars->11->420",
+ "default.handlebars->31->1048"
]
},
{
@@ -4168,8 +4175,8 @@
"zh-chs": "管理员凭证",
"zh-cht": "管理員憑證",
"xloc": [
- "default-mobile.handlebars->11->425",
- "default.handlebars->31->1053"
+ "default-mobile.handlebars->11->426",
+ "default.handlebars->31->1054"
]
},
{
@@ -4210,7 +4217,7 @@
"zh-chs": "管理领域",
"zh-cht": "管理領域",
"xloc": [
- "default.handlebars->31->2007"
+ "default.handlebars->31->2008"
]
},
{
@@ -4251,7 +4258,7 @@
"zh-chs": "管理领域",
"zh-cht": "管理領域",
"xloc": [
- "default.handlebars->31->1875"
+ "default.handlebars->31->1876"
]
},
{
@@ -4271,7 +4278,7 @@
"zh-chs": "管理员",
"zh-cht": "管理員",
"xloc": [
- "default.handlebars->31->1804"
+ "default.handlebars->31->1805"
]
},
{
@@ -4291,7 +4298,7 @@
"zh-chs": "南非文",
"zh-cht": "南非文",
"xloc": [
- "default.handlebars->31->1120"
+ "default.handlebars->31->1121"
]
},
{
@@ -4312,13 +4319,13 @@
"zh-cht": "代理",
"xloc": [
"agent-translations.json",
- "default-mobile.handlebars->11->213",
- "default-mobile.handlebars->11->238",
- "default-mobile.handlebars->11->260",
- "default.handlebars->31->1602",
- "default.handlebars->31->1610",
- "default.handlebars->31->253",
- "default.handlebars->31->442",
+ "default-mobile.handlebars->11->214",
+ "default-mobile.handlebars->11->239",
+ "default-mobile.handlebars->11->261",
+ "default.handlebars->31->1603",
+ "default.handlebars->31->1611",
+ "default.handlebars->31->254",
+ "default.handlebars->31->443",
"default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->1"
]
},
@@ -4339,8 +4346,8 @@
"zh-chs": "代理+英特尔AMT",
"zh-cht": "代理+Intel® AMT",
"xloc": [
- "default.handlebars->31->1604",
- "default.handlebars->31->1612"
+ "default.handlebars->31->1605",
+ "default.handlebars->31->1613"
]
},
{
@@ -4380,8 +4387,8 @@
"zh-chs": "代理控制台",
"zh-cht": "代理控制台",
"xloc": [
- "default-mobile.handlebars->11->496",
- "default.handlebars->31->1556"
+ "default-mobile.handlebars->11->497",
+ "default.handlebars->31->1557"
]
},
{
@@ -4401,7 +4408,7 @@
"zh-chs": "代理错误计数器",
"zh-cht": "代理錯誤計數器",
"xloc": [
- "default.handlebars->31->2173"
+ "default.handlebars->31->2174"
]
},
{
@@ -4441,8 +4448,8 @@
"zh-chs": "代理消息",
"zh-cht": "代理訊息",
"xloc": [
- "default-mobile.handlebars->11->191",
- "default.handlebars->31->285"
+ "default-mobile.handlebars->11->192",
+ "default.handlebars->31->286"
]
},
{
@@ -4462,7 +4469,7 @@
"zh-chs": "代理中继",
"zh-cht": "代理中繼",
"xloc": [
- "default-mobile.handlebars->11->263"
+ "default-mobile.handlebars->11->264"
]
},
{
@@ -4504,7 +4511,7 @@
"zh-chs": "代理时段",
"zh-cht": "代理時段",
"xloc": [
- "default.handlebars->31->2189"
+ "default.handlebars->31->2190"
]
},
{
@@ -4524,8 +4531,8 @@
"zh-chs": "代理标签",
"zh-cht": "代理標籤",
"xloc": [
- "default-mobile.handlebars->11->259",
- "default.handlebars->31->603"
+ "default-mobile.handlebars->11->260",
+ "default.handlebars->31->604"
]
},
{
@@ -4545,7 +4552,7 @@
"zh-chs": "代理类型",
"zh-cht": "代理類型",
"xloc": [
- "default.handlebars->31->1608",
+ "default.handlebars->31->1609",
"default.handlebars->container->column_l->p21->3->1->meshOsChartDiv->1"
]
},
@@ -4566,7 +4573,7 @@
"zh-chs": "代理关闭了与服务器压缩的{0}%代理会话。已发送:{1},已压缩:{2}",
"zh-cht": "代理關閉了與{0}%代理到服務器壓縮的會話。已發送:{1},已壓縮:{2}",
"xloc": [
- "default.handlebars->31->1712"
+ "default.handlebars->31->1713"
]
},
{
@@ -4586,9 +4593,9 @@
"zh-chs": "代理已连接",
"zh-cht": "代理已連接",
"xloc": [
- "default.handlebars->31->173",
- "default.handlebars->31->672",
- "default.handlebars->31->673"
+ "default.handlebars->31->174",
+ "default.handlebars->31->673",
+ "default.handlebars->31->674"
]
},
{
@@ -4608,7 +4615,7 @@
"zh-chs": "代理已断开连接",
"zh-cht": "代理已斷開連接",
"xloc": [
- "default.handlebars->31->177"
+ "default.handlebars->31->178"
]
},
{
@@ -4628,7 +4635,7 @@
"zh-chs": "代理离线",
"zh-cht": "代理離線",
"xloc": [
- "default.handlebars->31->1082"
+ "default.handlebars->31->1083"
]
},
{
@@ -4648,7 +4655,7 @@
"zh-chs": "代理在线",
"zh-cht": "代理在線",
"xloc": [
- "default.handlebars->31->1081"
+ "default.handlebars->31->1082"
]
},
{
@@ -4668,8 +4675,8 @@
"zh-chs": "代理在特权降低的远程设备上运行。",
"zh-cht": "代理在特權降低的遠程設備上運行。",
"xloc": [
- "default.handlebars->31->171",
- "default.handlebars->31->670"
+ "default.handlebars->31->172",
+ "default.handlebars->31->671"
]
},
{
@@ -4689,7 +4696,7 @@
"zh-chs": "代理",
"zh-cht": "代理",
"xloc": [
- "default.handlebars->31->2205"
+ "default.handlebars->31->2206"
]
},
{
@@ -4709,7 +4716,7 @@
"zh-chs": "阿尔巴尼亚文",
"zh-cht": "阿爾巴尼亞文",
"xloc": [
- "default.handlebars->31->1121"
+ "default.handlebars->31->1122"
]
},
{
@@ -4729,9 +4736,9 @@
"zh-chs": "所有",
"zh-cht": "所有",
"xloc": [
- "default-mobile.handlebars->11->127",
- "default-mobile.handlebars->11->349",
- "default-mobile.handlebars->11->351",
+ "default-mobile.handlebars->11->128",
+ "default-mobile.handlebars->11->350",
+ "default-mobile.handlebars->11->352",
"default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar->DevFilterSelect->1"
]
},
@@ -4752,7 +4759,7 @@
"zh-chs": "全部可用",
"zh-cht": "全部可用",
"xloc": [
- "default.handlebars->31->1767"
+ "default.handlebars->31->1768"
]
},
{
@@ -4789,7 +4796,7 @@
"zh-chs": "所有事件",
"zh-cht": "所有事件",
"xloc": [
- "default.handlebars->31->1765"
+ "default.handlebars->31->1766"
]
},
{
@@ -4809,9 +4816,9 @@
"zh-chs": "全部聚焦",
"zh-cht": "全部聚焦",
"xloc": [
- "default.handlebars->31->877",
- "default.handlebars->31->879",
- "default.handlebars->31->880"
+ "default.handlebars->31->878",
+ "default.handlebars->31->880",
+ "default.handlebars->31->881"
]
},
{
@@ -4831,8 +4838,8 @@
"zh-chs": "允许用户管理此设备组和该组中的设备。",
"zh-cht": "允許用戶管理此裝置群和該群中的裝置。",
"xloc": [
- "default.handlebars->31->1503",
- "default.handlebars->31->1968"
+ "default.handlebars->31->1504",
+ "default.handlebars->31->1969"
]
},
{
@@ -4852,14 +4859,14 @@
"zh-chs": "允许用户管理此设备。",
"zh-cht": "允許用戶管理此裝置。",
"xloc": [
- "default.handlebars->31->1504"
+ "default.handlebars->31->1505"
]
},
{
"en": "Allowed",
"nl": "Toegestaan",
"xloc": [
- "default.handlebars->31->200"
+ "default.handlebars->31->201"
]
},
{
@@ -4867,10 +4874,10 @@
"fr": "Alt",
"nl": "Alt",
"xloc": [
- "default-mobile.handlebars->11->332",
- "default-mobile.handlebars->11->336",
- "default.handlebars->31->899",
- "default.handlebars->31->903"
+ "default-mobile.handlebars->11->333",
+ "default-mobile.handlebars->11->337",
+ "default.handlebars->31->900",
+ "default.handlebars->31->904"
]
},
{
@@ -4932,7 +4939,7 @@
"zh-chs": "备用(F10 = ESC + 0)",
"zh-cht": "備用(F10 = ESC + 0)",
"xloc": [
- "default.handlebars->31->940",
+ "default.handlebars->31->941",
"terminal.handlebars->3->19"
]
},
@@ -4974,10 +4981,10 @@
"zh-chs": "一直通知",
"zh-cht": "一直通知",
"xloc": [
- "default.handlebars->31->1415",
- "default.handlebars->31->1929",
- "default.handlebars->31->2016",
- "default.handlebars->31->618"
+ "default.handlebars->31->1416",
+ "default.handlebars->31->1930",
+ "default.handlebars->31->2017",
+ "default.handlebars->31->619"
]
},
{
@@ -4997,10 +5004,10 @@
"zh-chs": "一直提示",
"zh-cht": "一直提示",
"xloc": [
- "default.handlebars->31->1416",
- "default.handlebars->31->1930",
- "default.handlebars->31->2017",
- "default.handlebars->31->619"
+ "default.handlebars->31->1417",
+ "default.handlebars->31->1931",
+ "default.handlebars->31->2018",
+ "default.handlebars->31->620"
]
},
{
@@ -5140,7 +5147,7 @@
"zh-chs": "杀毒软件",
"zh-cht": "防毒軟體",
"xloc": [
- "default.handlebars->31->609"
+ "default.handlebars->31->610"
]
},
{
@@ -5160,7 +5167,7 @@
"zh-chs": "任何可支持的",
"zh-cht": "任何可支持的",
"xloc": [
- "default.handlebars->31->340"
+ "default.handlebars->31->341"
]
},
{
@@ -5201,7 +5208,7 @@
"zh-chs": "苹果macOS",
"zh-cht": "蘋果macOS",
"xloc": [
- "default.handlebars->31->374"
+ "default.handlebars->31->375"
]
},
{
@@ -5221,7 +5228,7 @@
"zh-chs": "仅限Apple macOS",
"zh-cht": "僅限Apple macOS",
"xloc": [
- "default.handlebars->31->342"
+ "default.handlebars->31->343"
]
},
{
@@ -5261,7 +5268,7 @@
"zh-chs": "阿拉伯文(阿尔及利亚)",
"zh-cht": "阿拉伯文(阿爾及利亞)",
"xloc": [
- "default.handlebars->31->1123"
+ "default.handlebars->31->1124"
]
},
{
@@ -5281,7 +5288,7 @@
"zh-chs": "阿拉伯文(巴林)",
"zh-cht": "阿拉伯文(巴林)",
"xloc": [
- "default.handlebars->31->1124"
+ "default.handlebars->31->1125"
]
},
{
@@ -5301,7 +5308,7 @@
"zh-chs": "阿拉伯文(埃及)",
"zh-cht": "阿拉伯文(埃及)",
"xloc": [
- "default.handlebars->31->1125"
+ "default.handlebars->31->1126"
]
},
{
@@ -5321,7 +5328,7 @@
"zh-chs": "阿拉伯文(伊拉克)",
"zh-cht": "阿拉伯文(伊拉克)",
"xloc": [
- "default.handlebars->31->1126"
+ "default.handlebars->31->1127"
]
},
{
@@ -5341,7 +5348,7 @@
"zh-chs": "阿拉伯文(约旦)",
"zh-cht": "阿拉伯文(約旦)",
"xloc": [
- "default.handlebars->31->1127"
+ "default.handlebars->31->1128"
]
},
{
@@ -5361,7 +5368,7 @@
"zh-chs": "阿拉伯文(科威特)",
"zh-cht": "阿拉伯文(科威特)",
"xloc": [
- "default.handlebars->31->1128"
+ "default.handlebars->31->1129"
]
},
{
@@ -5381,7 +5388,7 @@
"zh-chs": "阿拉伯文(黎巴嫩)",
"zh-cht": "阿拉伯文(黎巴嫩)",
"xloc": [
- "default.handlebars->31->1129"
+ "default.handlebars->31->1130"
]
},
{
@@ -5401,7 +5408,7 @@
"zh-chs": "阿拉伯文(利比亚)",
"zh-cht": "阿拉伯文(利比亞)",
"xloc": [
- "default.handlebars->31->1130"
+ "default.handlebars->31->1131"
]
},
{
@@ -5421,7 +5428,7 @@
"zh-chs": "阿拉伯文(摩洛哥)",
"zh-cht": "阿拉伯文(摩洛哥)",
"xloc": [
- "default.handlebars->31->1131"
+ "default.handlebars->31->1132"
]
},
{
@@ -5441,7 +5448,7 @@
"zh-chs": "阿拉伯文(阿曼)",
"zh-cht": "阿拉伯文(阿曼)",
"xloc": [
- "default.handlebars->31->1132"
+ "default.handlebars->31->1133"
]
},
{
@@ -5461,7 +5468,7 @@
"zh-chs": "阿拉伯文(卡塔尔)",
"zh-cht": "阿拉伯文(卡塔爾)",
"xloc": [
- "default.handlebars->31->1133"
+ "default.handlebars->31->1134"
]
},
{
@@ -5481,7 +5488,7 @@
"zh-chs": "阿拉伯文(沙特阿拉伯)",
"zh-cht": "阿拉伯文(沙特阿拉伯)",
"xloc": [
- "default.handlebars->31->1134"
+ "default.handlebars->31->1135"
]
},
{
@@ -5501,7 +5508,7 @@
"zh-chs": "阿拉伯文(标准)",
"zh-cht": "阿拉伯文(標準)",
"xloc": [
- "default.handlebars->31->1122"
+ "default.handlebars->31->1123"
]
},
{
@@ -5521,7 +5528,7 @@
"zh-chs": "阿拉伯文(叙利亚)",
"zh-cht": "阿拉伯文(敘利亞)",
"xloc": [
- "default.handlebars->31->1135"
+ "default.handlebars->31->1136"
]
},
{
@@ -5541,7 +5548,7 @@
"zh-chs": "阿拉伯文(突尼斯)",
"zh-cht": "阿拉伯文(突尼斯)",
"xloc": [
- "default.handlebars->31->1136"
+ "default.handlebars->31->1137"
]
},
{
@@ -5561,7 +5568,7 @@
"zh-chs": "阿拉伯文(阿联酋)",
"zh-cht": "阿拉伯文(阿聯酋)",
"xloc": [
- "default.handlebars->31->1137"
+ "default.handlebars->31->1138"
]
},
{
@@ -5581,7 +5588,7 @@
"zh-chs": "阿拉伯文(也门)",
"zh-cht": "阿拉伯文(也門)",
"xloc": [
- "default.handlebars->31->1138"
+ "default.handlebars->31->1139"
]
},
{
@@ -5601,7 +5608,7 @@
"zh-chs": "阿拉贡文",
"zh-cht": "阿拉貢文",
"xloc": [
- "default.handlebars->31->1139"
+ "default.handlebars->31->1140"
]
},
{
@@ -5621,8 +5628,8 @@
"zh-chs": "架构",
"zh-cht": "結構",
"xloc": [
- "default-mobile.handlebars->11->383",
- "default.handlebars->31->1001"
+ "default-mobile.handlebars->11->384",
+ "default.handlebars->31->1002"
]
},
{
@@ -5642,7 +5649,7 @@
"zh-chs": "您确定要连接到{0}设备吗?",
"zh-cht": "你確定要連接到{0}裝置嗎?",
"xloc": [
- "default.handlebars->31->288"
+ "default.handlebars->31->289"
]
},
{
@@ -5662,8 +5669,8 @@
"zh-chs": "你确定要删除组{0}吗?删除设备组还将删除该组中有关设备的所有信息。",
"zh-cht": "你確定要刪除群{0}嗎?刪除裝置群還將刪除該群中有關裝置的所有訊息。",
"xloc": [
- "default-mobile.handlebars->11->465",
- "default.handlebars->31->1479"
+ "default-mobile.handlebars->11->466",
+ "default.handlebars->31->1480"
]
},
{
@@ -5683,7 +5690,7 @@
"zh-chs": "您确定要删除节点{0}吗?",
"zh-cht": "你確定要刪除節點{0}嗎?",
"xloc": [
- "default.handlebars->31->819"
+ "default.handlebars->31->820"
]
},
{
@@ -5703,7 +5710,7 @@
"zh-chs": "您确定要卸载所选代理吗?",
"zh-cht": "你確定要卸載所選代理嗎?",
"xloc": [
- "default.handlebars->31->808"
+ "default.handlebars->31->809"
]
},
{
@@ -5723,7 +5730,7 @@
"zh-chs": "您确定要卸载所选的{0}代理吗?",
"zh-cht": "你確定要卸載所選的{0}代理嗎?",
"xloc": [
- "default.handlebars->31->807"
+ "default.handlebars->31->808"
]
},
{
@@ -5743,7 +5750,7 @@
"zh-chs": "您确定要{0}插件吗:{1}",
"zh-cht": "你確定要{0}外掛嗎:{1}",
"xloc": [
- "default.handlebars->31->2251"
+ "default.handlebars->31->2252"
]
},
{
@@ -5763,7 +5770,7 @@
"zh-chs": "亚美尼亚文",
"zh-cht": "亞美尼亞文",
"xloc": [
- "default.handlebars->31->1140"
+ "default.handlebars->31->1141"
]
},
{
@@ -5823,7 +5830,7 @@
"zh-chs": "阿萨姆文",
"zh-cht": "阿薩姆文",
"xloc": [
- "default.handlebars->31->1141"
+ "default.handlebars->31->1142"
]
},
{
@@ -5843,7 +5850,7 @@
"zh-chs": "阿斯图里亚斯文",
"zh-cht": "阿斯圖里亞斯文",
"xloc": [
- "default.handlebars->31->1142"
+ "default.handlebars->31->1143"
]
},
{
@@ -5863,7 +5870,7 @@
"zh-chs": "尝试激活英特尔(R)AMT ACM模式",
"zh-cht": "嘗試激活英特爾(R)AMT ACM模式",
"xloc": [
- "default.handlebars->31->1681"
+ "default.handlebars->31->1682"
]
},
{
@@ -5883,7 +5890,7 @@
"zh-chs": "认证软件",
"zh-cht": "認證軟體",
"xloc": [
- "default.handlebars->31->2020"
+ "default.handlebars->31->2021"
]
},
{
@@ -5903,14 +5910,14 @@
"zh-chs": "认证软件",
"zh-cht": "認證軟體",
"xloc": [
- "default-mobile.handlebars->11->59",
- "default-mobile.handlebars->11->62",
- "default-mobile.handlebars->11->81",
- "default-mobile.handlebars->11->83",
- "default.handlebars->31->1106",
- "default.handlebars->31->1108",
- "default.handlebars->31->135",
- "default.handlebars->31->140"
+ "default-mobile.handlebars->11->60",
+ "default-mobile.handlebars->11->63",
+ "default-mobile.handlebars->11->82",
+ "default-mobile.handlebars->11->84",
+ "default.handlebars->31->1107",
+ "default.handlebars->31->1109",
+ "default.handlebars->31->136",
+ "default.handlebars->31->141"
]
},
{
@@ -5930,7 +5937,7 @@
"zh-chs": "认证软件激活成功。",
"zh-cht": "認證軟體啟動成功。",
"xloc": [
- "default.handlebars->31->136"
+ "default.handlebars->31->137"
]
},
{
@@ -5950,7 +5957,7 @@
"zh-chs": "认证软件已删除。",
"zh-cht": "認證軟體已刪除。",
"xloc": [
- "default.handlebars->31->141"
+ "default.handlebars->31->142"
]
},
{
@@ -5990,7 +5997,7 @@
"zh-chs": "自动删除",
"zh-cht": "自動刪除",
"xloc": [
- "default.handlebars->31->1402"
+ "default.handlebars->31->1403"
]
},
{
@@ -6034,7 +6041,7 @@
"zh-chs": "自动下载代理程序核心转储文件:“{0}”",
"zh-cht": "自動下載代理程序核心轉儲文件:“{0}”",
"xloc": [
- "default.handlebars->31->1762"
+ "default.handlebars->31->1763"
]
},
{
@@ -6074,7 +6081,7 @@
"zh-chs": "可用內存",
"zh-cht": "可用內存",
"xloc": [
- "default.handlebars->31->2198"
+ "default.handlebars->31->2199"
]
},
{
@@ -6094,7 +6101,7 @@
"zh-chs": "阿塞拜疆文",
"zh-cht": "阿塞拜疆文",
"xloc": [
- "default.handlebars->31->1143"
+ "default.handlebars->31->1144"
]
},
{
@@ -6114,8 +6121,8 @@
"zh-chs": "的BIOS",
"zh-cht": "的BIOS",
"xloc": [
- "default-mobile.handlebars->11->431",
- "default.handlebars->31->1059"
+ "default-mobile.handlebars->11->432",
+ "default.handlebars->31->1060"
]
},
{
@@ -6198,8 +6205,8 @@
"fr": "Backspace",
"nl": "BackSpace",
"xloc": [
- "default-mobile.handlebars->11->316",
- "default.handlebars->31->883"
+ "default-mobile.handlebars->11->317",
+ "default.handlebars->31->884"
]
},
{
@@ -6219,7 +6226,7 @@
"zh-chs": "背景与互动",
"zh-cht": "背景與互動",
"xloc": [
- "default.handlebars->31->381"
+ "default.handlebars->31->382"
]
},
{
@@ -6239,10 +6246,10 @@
"zh-chs": "背景与互动",
"zh-cht": "背景與互動",
"xloc": [
- "default.handlebars->31->1585",
- "default.handlebars->31->1592",
- "default.handlebars->31->352",
- "default.handlebars->31->366"
+ "default.handlebars->31->1586",
+ "default.handlebars->31->1593",
+ "default.handlebars->31->353",
+ "default.handlebars->31->367"
]
},
{
@@ -6262,11 +6269,11 @@
"zh-chs": "仅背景",
"zh-cht": "僅背景",
"xloc": [
- "default.handlebars->31->1586",
- "default.handlebars->31->1593",
- "default.handlebars->31->353",
- "default.handlebars->31->367",
- "default.handlebars->31->382"
+ "default.handlebars->31->1587",
+ "default.handlebars->31->1594",
+ "default.handlebars->31->354",
+ "default.handlebars->31->368",
+ "default.handlebars->31->383"
]
},
{
@@ -6307,7 +6314,7 @@
"zh-chs": "备用码",
"zh-cht": "備用碼",
"xloc": [
- "default.handlebars->31->2022"
+ "default.handlebars->31->2023"
]
},
{
@@ -6327,7 +6334,7 @@
"zh-chs": "错误的签名",
"zh-cht": "錯誤的簽名",
"xloc": [
- "default.handlebars->31->2180"
+ "default.handlebars->31->2181"
]
},
{
@@ -6347,7 +6354,7 @@
"zh-chs": "错误的网络证书",
"zh-cht": "錯誤的網絡憑證",
"xloc": [
- "default.handlebars->31->2179"
+ "default.handlebars->31->2180"
]
},
{
@@ -6367,7 +6374,7 @@
"zh-chs": "巴斯克",
"zh-cht": "巴斯克",
"xloc": [
- "default.handlebars->31->1144"
+ "default.handlebars->31->1145"
]
},
{
@@ -6387,7 +6394,7 @@
"zh-chs": "批处理文件上传",
"zh-cht": "批處理文件上傳",
"xloc": [
- "default.handlebars->31->499"
+ "default.handlebars->31->500"
]
},
{
@@ -6427,7 +6434,7 @@
"zh-chs": "将{0}个文件批量上传到文件夹{1}",
"zh-cht": "將{0}個文件批量上傳到文件夾{1}",
"xloc": [
- "default.handlebars->31->1761"
+ "default.handlebars->31->1762"
]
},
{
@@ -6447,7 +6454,7 @@
"zh-chs": "白俄罗斯文",
"zh-cht": "白俄羅斯文",
"xloc": [
- "default.handlebars->31->1146"
+ "default.handlebars->31->1147"
]
},
{
@@ -6467,7 +6474,7 @@
"zh-chs": "孟加拉",
"zh-cht": "孟加拉",
"xloc": [
- "default.handlebars->31->1147"
+ "default.handlebars->31->1148"
]
},
{
@@ -6496,8 +6503,8 @@
{
"en": "Bootloader",
"xloc": [
- "default-mobile.handlebars->11->395",
- "default.handlebars->31->1013"
+ "default-mobile.handlebars->11->396",
+ "default.handlebars->31->1014"
]
},
{
@@ -6517,7 +6524,7 @@
"zh-chs": "波斯尼亚文",
"zh-cht": "波斯尼亞文",
"xloc": [
- "default.handlebars->31->1148"
+ "default.handlebars->31->1149"
]
},
{
@@ -6537,7 +6544,7 @@
"zh-chs": "布列塔尼",
"zh-cht": "布列塔尼",
"xloc": [
- "default.handlebars->31->1149"
+ "default.handlebars->31->1150"
]
},
{
@@ -6557,7 +6564,7 @@
"zh-chs": "广播",
"zh-cht": "廣播",
"xloc": [
- "default.handlebars->31->1936",
+ "default.handlebars->31->1937",
"default.handlebars->container->column_l->p4->3->1->0->3->1"
]
},
@@ -6578,7 +6585,7 @@
"zh-chs": "广播消息",
"zh-cht": "廣播消息",
"xloc": [
- "default.handlebars->31->1857"
+ "default.handlebars->31->1858"
]
},
{
@@ -6598,7 +6605,7 @@
"zh-chs": "向所有连接的用户广播消息。",
"zh-cht": "向所有連接的用戶廣播消息。",
"xloc": [
- "default.handlebars->31->1852"
+ "default.handlebars->31->1853"
]
},
{
@@ -6618,7 +6625,7 @@
"zh-chs": "保加利亚文",
"zh-cht": "保加利亞文",
"xloc": [
- "default.handlebars->31->1145"
+ "default.handlebars->31->1146"
]
},
{
@@ -6638,7 +6645,7 @@
"zh-chs": "缅甸文",
"zh-cht": "緬甸文",
"xloc": [
- "default.handlebars->31->1150"
+ "default.handlebars->31->1151"
]
},
{
@@ -6658,8 +6665,8 @@
"zh-chs": "CCM",
"zh-cht": "CCM",
"xloc": [
- "default-mobile.handlebars->11->245",
- "default.handlebars->31->585"
+ "default-mobile.handlebars->11->246",
+ "default.handlebars->31->586"
]
},
{
@@ -6679,7 +6686,7 @@
"zh-chs": "CCM模式",
"zh-cht": "CCM模式",
"xloc": [
- "default.handlebars->31->1462"
+ "default.handlebars->31->1463"
]
},
{
@@ -6699,9 +6706,9 @@
"zh-chs": "CIRA",
"zh-cht": "CIRA",
"xloc": [
- "default-mobile.handlebars->11->214",
- "default.handlebars->31->255",
- "default.handlebars->31->444"
+ "default-mobile.handlebars->11->215",
+ "default.handlebars->31->256",
+ "default.handlebars->31->445"
]
},
{
@@ -6721,7 +6728,7 @@
"zh-chs": "CIRA服务器",
"zh-cht": "CIRA伺服器",
"xloc": [
- "default.handlebars->31->2237"
+ "default.handlebars->31->2238"
]
},
{
@@ -6741,7 +6748,7 @@
"zh-chs": "CIRA服务器命令",
"zh-cht": "CIRA伺服器指令",
"xloc": [
- "default.handlebars->31->2238"
+ "default.handlebars->31->2239"
]
},
{
@@ -6761,7 +6768,7 @@
"zh-chs": "CIRA设置",
"zh-cht": "CIRA設置",
"xloc": [
- "default.handlebars->31->1470"
+ "default.handlebars->31->1471"
]
},
{
@@ -6781,8 +6788,8 @@
"zh-chs": "CPU",
"zh-cht": "CPU",
"xloc": [
- "default-mobile.handlebars->11->437",
- "default.handlebars->31->1065"
+ "default-mobile.handlebars->11->438",
+ "default.handlebars->31->1066"
]
},
{
@@ -6802,7 +6809,7 @@
"zh-chs": "CPU负载",
"zh-cht": "CPU負載",
"xloc": [
- "default.handlebars->31->2194"
+ "default.handlebars->31->2195"
]
},
{
@@ -6822,7 +6829,7 @@
"zh-chs": "最近15分钟的CPU负载",
"zh-cht": "最近15分鐘的CPU負載",
"xloc": [
- "default.handlebars->31->2197"
+ "default.handlebars->31->2198"
]
},
{
@@ -6842,7 +6849,7 @@
"zh-chs": "最近5分钟的CPU负载",
"zh-cht": "最近5分鐘的CPU負載",
"xloc": [
- "default.handlebars->31->2196"
+ "default.handlebars->31->2197"
]
},
{
@@ -6862,7 +6869,7 @@
"zh-chs": "最近一分钟的CPU负载",
"zh-cht": "最近一分鐘的CPU負載",
"xloc": [
- "default.handlebars->31->2195"
+ "default.handlebars->31->2196"
]
},
{
@@ -6882,8 +6889,8 @@
"zh-chs": "CR+LF",
"zh-cht": "CR+LF",
"xloc": [
- "default.handlebars->31->933",
- "default.handlebars->31->942",
+ "default.handlebars->31->934",
+ "default.handlebars->31->943",
"default.handlebars->container->column_l->p12->termTable->1->1->6->1->1->terminalSettingsButtons",
"terminal.handlebars->3->21",
"terminal.handlebars->3->7",
@@ -6907,7 +6914,7 @@
"zh-chs": "CSV",
"zh-cht": "CSV",
"xloc": [
- "default.handlebars->31->1775"
+ "default.handlebars->31->1776"
]
},
{
@@ -6927,9 +6934,9 @@
"zh-chs": "CSV格式",
"zh-cht": "CSV格式",
"xloc": [
- "default.handlebars->31->1779",
- "default.handlebars->31->1844",
- "default.handlebars->31->501"
+ "default.handlebars->31->1780",
+ "default.handlebars->31->1845",
+ "default.handlebars->31->502"
]
},
{
@@ -6966,7 +6973,7 @@
"zh-chs": "呼叫错误",
"zh-cht": "呼叫錯誤",
"xloc": [
- "default.handlebars->31->2252"
+ "default.handlebars->31->2253"
]
},
{
@@ -6987,9 +6994,9 @@
"zh-cht": "取消",
"xloc": [
"agent-translations.json",
- "default-mobile.handlebars->11->92",
+ "default-mobile.handlebars->11->93",
"default-mobile.handlebars->dialog->idx_dlgButtonBar",
- "default.handlebars->31->1380",
+ "default.handlebars->31->1381",
"default.handlebars->container->dialog->idx_dlgButtonBar",
"desktop.handlebars->p11->dialog->idx_dlgButtonBar",
"login-mobile.handlebars->dialog->idx_dlgButtonBar",
@@ -7017,12 +7024,12 @@
"zh-chs": "容量",
"zh-cht": "容量",
"xloc": [
- "default-mobile.handlebars->11->442",
- "default-mobile.handlebars->11->447",
- "default-mobile.handlebars->11->449",
- "default.handlebars->31->1070",
- "default.handlebars->31->1075",
- "default.handlebars->31->1077"
+ "default-mobile.handlebars->11->443",
+ "default-mobile.handlebars->11->448",
+ "default-mobile.handlebars->11->450",
+ "default.handlebars->31->1071",
+ "default.handlebars->31->1076",
+ "default.handlebars->31->1078"
]
},
{
@@ -7042,8 +7049,8 @@
"zh-chs": "容量/速度",
"zh-cht": "容量/速度",
"xloc": [
- "default-mobile.handlebars->11->440",
- "default.handlebars->31->1068"
+ "default-mobile.handlebars->11->441",
+ "default.handlebars->31->1069"
]
},
{
@@ -7063,7 +7070,7 @@
"zh-chs": "加泰罗尼亚文",
"zh-cht": "加泰羅尼亞文",
"xloc": [
- "default.handlebars->31->1151"
+ "default.handlebars->31->1152"
]
},
{
@@ -7083,7 +7090,7 @@
"zh-chs": "在这里为中心显示地图",
"zh-cht": "在這裡為中心顯示地圖",
"xloc": [
- "default.handlebars->31->547"
+ "default.handlebars->31->548"
]
},
{
@@ -7103,7 +7110,7 @@
"zh-chs": "查莫罗",
"zh-cht": "查莫羅",
"xloc": [
- "default.handlebars->31->1152"
+ "default.handlebars->31->1153"
]
},
{
@@ -7145,7 +7152,7 @@
"zh-chs": "更改{0}的电邮",
"zh-cht": "更改{0}的電郵",
"xloc": [
- "default.handlebars->31->2052"
+ "default.handlebars->31->2053"
]
},
{
@@ -7165,9 +7172,9 @@
"zh-chs": "更改组",
"zh-cht": "更改群",
"xloc": [
- "default.handlebars->31->647",
- "default.handlebars->31->816",
- "default.handlebars->31->817"
+ "default.handlebars->31->648",
+ "default.handlebars->31->817",
+ "default.handlebars->31->818"
]
},
{
@@ -7187,9 +7194,9 @@
"zh-chs": "更改密码",
"zh-cht": "更改密碼",
"xloc": [
- "default-mobile.handlebars->11->100",
- "default.handlebars->31->1347",
- "default.handlebars->31->2039"
+ "default-mobile.handlebars->11->101",
+ "default.handlebars->31->1348",
+ "default.handlebars->31->2040"
]
},
{
@@ -7209,7 +7216,7 @@
"zh-chs": "更改{0}的密码",
"zh-cht": "更改{0}的密碼",
"xloc": [
- "default.handlebars->31->2059"
+ "default.handlebars->31->2060"
]
},
{
@@ -7229,7 +7236,7 @@
"zh-chs": "更改{0}的真实名称",
"zh-cht": "更改{0}的真實名稱",
"xloc": [
- "default.handlebars->31->2047"
+ "default.handlebars->31->2048"
]
},
{
@@ -7311,7 +7318,7 @@
"zh-chs": "更改该用户的密码",
"zh-cht": "更改該用戶的密碼",
"xloc": [
- "default.handlebars->31->2038"
+ "default.handlebars->31->2039"
]
},
{
@@ -7351,7 +7358,7 @@
"zh-chs": "在此处更改您的帐户电邮地址。",
"zh-cht": "在此處更改你的帳戶電郵地址。",
"xloc": [
- "default.handlebars->31->1334"
+ "default.handlebars->31->1335"
]
},
{
@@ -7371,7 +7378,7 @@
"zh-chs": "在下面的框中两次输入旧密码和新密码,以更改帐户密码。",
"zh-cht": "在下面的框中兩次輸入舊密碼和新密碼,以更改帳戶密碼。",
"xloc": [
- "default.handlebars->31->1340"
+ "default.handlebars->31->1341"
]
},
{
@@ -7391,7 +7398,7 @@
"zh-chs": "更改帐户凭据",
"zh-cht": "帳戶憑證已更改",
"xloc": [
- "default.handlebars->31->1733"
+ "default.handlebars->31->1734"
]
},
{
@@ -7411,7 +7418,7 @@
"zh-chs": "{1}组中的设备{0}已更改:{2}",
"zh-cht": "{1}組中的設備{0}已更改:{2}",
"xloc": [
- "default.handlebars->31->1717"
+ "default.handlebars->31->1718"
]
},
{
@@ -7431,7 +7438,7 @@
"zh-chs": "语言从{1}更改为{2}",
"zh-cht": "語言從{1}更改為{2}",
"xloc": [
- "default.handlebars->31->1661"
+ "default.handlebars->31->1662"
]
},
{
@@ -7451,8 +7458,8 @@
"zh-chs": "已更改{0}的用户设备权限",
"zh-cht": "已更改{0}的用戶設備權限",
"xloc": [
- "default.handlebars->31->1719",
- "default.handlebars->31->1740"
+ "default.handlebars->31->1720",
+ "default.handlebars->31->1741"
]
},
{
@@ -7472,7 +7479,7 @@
"zh-chs": "更改语言将需要刷新页面。",
"zh-cht": "更改語言將需要刷新頁面。",
"xloc": [
- "default.handlebars->31->1319"
+ "default.handlebars->31->1320"
]
},
{
@@ -7492,11 +7499,11 @@
"zh-chs": "聊天",
"zh-cht": "聊天",
"xloc": [
- "default.handlebars->31->1796",
- "default.handlebars->31->2034",
+ "default.handlebars->31->1797",
"default.handlebars->31->2035",
- "default.handlebars->31->712",
- "default.handlebars->31->733"
+ "default.handlebars->31->2036",
+ "default.handlebars->31->713",
+ "default.handlebars->31->734"
]
},
{
@@ -7516,10 +7523,10 @@
"zh-chs": "聊天并通知",
"zh-cht": "聊天並通知",
"xloc": [
- "default-mobile.handlebars->11->486",
- "default-mobile.handlebars->11->506",
- "default.handlebars->31->1531",
- "default.handlebars->31->1567"
+ "default-mobile.handlebars->11->487",
+ "default-mobile.handlebars->11->507",
+ "default.handlebars->31->1532",
+ "default.handlebars->31->1568"
]
},
{
@@ -7527,8 +7534,8 @@
"nl": "Chatverzoek, klik hier om te accepteren.",
"fr": "Demande de chat, cliquez ici pour accepter.",
"xloc": [
- "default-mobile.handlebars->11->538",
- "default.handlebars->31->2149"
+ "default-mobile.handlebars->11->539",
+ "default.handlebars->31->2150"
]
},
{
@@ -7568,7 +7575,7 @@
"zh-chs": "车臣",
"zh-cht": "車臣",
"xloc": [
- "default.handlebars->31->1153"
+ "default.handlebars->31->1154"
]
},
{
@@ -7588,7 +7595,7 @@
"zh-chs": "检查并单击确定以清除错误日志。",
"zh-cht": "檢查並單擊確定以清除錯誤日誌。",
"xloc": [
- "default.handlebars->31->131"
+ "default.handlebars->31->132"
]
},
{
@@ -7608,7 +7615,7 @@
"zh-chs": "检查并单击确定以开始服务器自我更新。",
"zh-cht": "檢查並單擊確定以開始伺服器自我更新。",
"xloc": [
- "default.handlebars->31->126"
+ "default.handlebars->31->127"
]
},
{
@@ -7648,7 +7655,7 @@
"zh-chs": "检查您的手机并输入验证码。",
"zh-cht": "檢查你的電話並輸入驗證碼。",
"xloc": [
- "default.handlebars->31->167"
+ "default.handlebars->31->168"
]
},
{
@@ -7668,8 +7675,8 @@
"zh-chs": "检查...",
"zh-cht": "檢查...",
"xloc": [
- "default.handlebars->31->1119",
- "default.handlebars->31->2246"
+ "default.handlebars->31->1120",
+ "default.handlebars->31->2247"
]
},
{
@@ -7689,7 +7696,7 @@
"zh-chs": "中文",
"zh-cht": "中文",
"xloc": [
- "default.handlebars->31->1154"
+ "default.handlebars->31->1155"
]
},
{
@@ -7709,7 +7716,7 @@
"zh-chs": "中文(香港)",
"zh-cht": "中文(香港)",
"xloc": [
- "default.handlebars->31->1155"
+ "default.handlebars->31->1156"
]
},
{
@@ -7729,7 +7736,7 @@
"zh-chs": "中文(中国)",
"zh-cht": "中文(中國)",
"xloc": [
- "default.handlebars->31->1156"
+ "default.handlebars->31->1157"
]
},
{
@@ -7749,7 +7756,7 @@
"zh-chs": "简体中文",
"zh-cht": "簡體中文",
"xloc": [
- "default.handlebars->31->1316"
+ "default.handlebars->31->1317"
]
},
{
@@ -7769,7 +7776,7 @@
"zh-chs": "中文(新加坡)",
"zh-cht": "中文(新加坡)",
"xloc": [
- "default.handlebars->31->1157"
+ "default.handlebars->31->1158"
]
},
{
@@ -7789,7 +7796,7 @@
"zh-chs": "中文(台湾)",
"zh-cht": "中文(台灣)",
"xloc": [
- "default.handlebars->31->1158"
+ "default.handlebars->31->1159"
]
},
{
@@ -7809,7 +7816,7 @@
"zh-chs": "繁体中文",
"zh-cht": "繁體中文",
"xloc": [
- "default.handlebars->31->1317"
+ "default.handlebars->31->1318"
]
},
{
@@ -7850,7 +7857,7 @@
"zh-chs": "楚瓦什",
"zh-cht": "楚瓦什",
"xloc": [
- "default.handlebars->31->1159"
+ "default.handlebars->31->1160"
]
},
{
@@ -7887,17 +7894,17 @@
"zh-chs": "清除",
"zh-cht": "清除",
"xloc": [
- "default-mobile.handlebars->11->142",
- "default-mobile.handlebars->11->367",
- "default-mobile.handlebars->11->369",
- "default-mobile.handlebars->11->371",
- "default-mobile.handlebars->11->373",
- "default-mobile.handlebars->11->69",
- "default.handlebars->31->1655",
- "default.handlebars->31->978",
- "default.handlebars->31->980",
- "default.handlebars->31->982",
- "default.handlebars->31->984",
+ "default-mobile.handlebars->11->143",
+ "default-mobile.handlebars->11->368",
+ "default-mobile.handlebars->11->370",
+ "default-mobile.handlebars->11->372",
+ "default-mobile.handlebars->11->374",
+ "default-mobile.handlebars->11->70",
+ "default.handlebars->31->1656",
+ "default.handlebars->31->979",
+ "default.handlebars->31->981",
+ "default.handlebars->31->983",
+ "default.handlebars->31->985",
"default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->7",
"default.handlebars->container->column_l->p41->3->1",
"messenger.handlebars->xbottom->1->1->0->5"
@@ -7920,7 +7927,7 @@
"zh-chs": "清除保安编码",
"zh-cht": "清除保安編碼",
"xloc": [
- "default.handlebars->31->149"
+ "default.handlebars->31->150"
]
},
{
@@ -7940,8 +7947,8 @@
"zh-chs": "全部清除",
"zh-cht": "全部清除",
"xloc": [
- "default-mobile.handlebars->11->521",
- "default.handlebars->31->2132"
+ "default-mobile.handlebars->11->522",
+ "default.handlebars->31->2133"
]
},
{
@@ -7961,8 +7968,8 @@
"zh-chs": "清除搜索过滤器",
"zh-cht": "清除搜索過濾器",
"xloc": [
- "default-mobile.handlebars->11->164",
- "default.handlebars->31->227"
+ "default-mobile.handlebars->11->165",
+ "default.handlebars->31->228"
]
},
{
@@ -7982,7 +7989,7 @@
"zh-chs": "清除核心",
"zh-cht": "清除核心",
"xloc": [
- "default.handlebars->31->1091"
+ "default.handlebars->31->1092"
]
},
{
@@ -8002,7 +8009,7 @@
"zh-chs": "从应用程序中清除机密,然后重试。您只有几分钟的时间来输入正确的代码。",
"zh-cht": "從應用程序中清除秘密,然後重試。你只有幾分鐘的時間來輸入正確的代碼。",
"xloc": [
- "default.handlebars->31->139"
+ "default.handlebars->31->140"
]
},
{
@@ -8022,8 +8029,8 @@
"zh-chs": "清除此通知",
"zh-cht": "清除此通知",
"xloc": [
- "default-mobile.handlebars->11->520",
- "default.handlebars->31->2131"
+ "default-mobile.handlebars->11->521",
+ "default.handlebars->31->2132"
]
},
{
@@ -8083,8 +8090,8 @@
"zh-chs": "单击此处编辑设备组名称",
"zh-cht": "單擊此處編輯裝置群名稱",
"xloc": [
- "default.handlebars->31->1391",
- "default.handlebars->31->1606"
+ "default.handlebars->31->1392",
+ "default.handlebars->31->1607"
]
},
{
@@ -8104,7 +8111,7 @@
"zh-chs": "单击此处编辑服务器端设备名称",
"zh-cht": "單擊此處編輯伺服器端裝置名稱",
"xloc": [
- "default.handlebars->31->563"
+ "default.handlebars->31->564"
]
},
{
@@ -8124,7 +8131,7 @@
"zh-chs": "单击此处编辑用户组名称",
"zh-cht": "單擊此處編輯用戶群名稱",
"xloc": [
- "default.handlebars->31->1913"
+ "default.handlebars->31->1914"
]
},
{
@@ -8194,8 +8201,8 @@
"zh-chs": "单击确定将验证邮件发送到:",
"zh-cht": "單擊確定將驗證電郵發送到:",
"xloc": [
- "default-mobile.handlebars->11->85",
- "default.handlebars->31->1331"
+ "default-mobile.handlebars->11->86",
+ "default.handlebars->31->1332"
]
},
{
@@ -8256,8 +8263,8 @@
"zh-chs": "客户端控制模式(CCM)",
"zh-cht": "客戶端控制模式(CCM)",
"xloc": [
- "default-mobile.handlebars->11->418",
- "default.handlebars->31->1046"
+ "default-mobile.handlebars->11->419",
+ "default.handlebars->31->1047"
]
},
{
@@ -8277,7 +8284,7 @@
"zh-chs": "客户编号",
"zh-cht": "客戶編號",
"xloc": [
- "default.handlebars->31->1373"
+ "default.handlebars->31->1374"
]
},
{
@@ -8297,7 +8304,7 @@
"zh-chs": "客户端启动的远程访问",
"zh-cht": "客戶端啟動的遠程訪問",
"xloc": [
- "default.handlebars->31->1469"
+ "default.handlebars->31->1470"
]
},
{
@@ -8317,7 +8324,7 @@
"zh-chs": "客户机密",
"zh-cht": "客戶機密",
"xloc": [
- "default.handlebars->31->1374"
+ "default.handlebars->31->1375"
]
},
{
@@ -8358,11 +8365,11 @@
"zh-chs": "关",
"zh-cht": "關",
"xloc": [
- "default-mobile.handlebars->11->67",
- "default.handlebars->31->147",
- "default.handlebars->31->155",
- "default.handlebars->31->924",
- "default.handlebars->31->955"
+ "default-mobile.handlebars->11->68",
+ "default.handlebars->31->148",
+ "default.handlebars->31->156",
+ "default.handlebars->31->925",
+ "default.handlebars->31->956"
]
},
{
@@ -8382,7 +8389,7 @@
"zh-chs": "封闭式桌面多路复用会话,{0}秒",
"zh-cht": "封閉式桌面多路復用會話,{0}秒",
"xloc": [
- "default.handlebars->31->1666"
+ "default.handlebars->31->1667"
]
},
{
@@ -8402,7 +8409,7 @@
"zh-chs": "码",
"zh-cht": "碼",
"xloc": [
- "default.handlebars->31->218"
+ "default.handlebars->31->219"
]
},
{
@@ -8484,7 +8491,7 @@
"zh-chs": "命令",
"zh-cht": "命令",
"xloc": [
- "default.handlebars->31->415"
+ "default.handlebars->31->416"
]
},
{
@@ -8504,10 +8511,10 @@
"zh-chs": "指令",
"zh-cht": "指令",
"xloc": [
- "default-mobile.handlebars->11->508",
- "default.handlebars->31->1569",
- "default.handlebars->31->714",
- "default.handlebars->31->735"
+ "default-mobile.handlebars->11->509",
+ "default.handlebars->31->1570",
+ "default.handlebars->31->715",
+ "default.handlebars->31->736"
]
},
{
@@ -8527,8 +8534,8 @@
"zh-chs": "通用设备组",
"zh-cht": "通用裝置群",
"xloc": [
- "default.handlebars->31->1944",
- "default.handlebars->31->2064"
+ "default.handlebars->31->1945",
+ "default.handlebars->31->2065"
]
},
{
@@ -8548,8 +8555,8 @@
"zh-chs": "通用设备",
"zh-cht": "通用裝置",
"xloc": [
- "default.handlebars->31->1950",
- "default.handlebars->31->2076"
+ "default.handlebars->31->1951",
+ "default.handlebars->31->2077"
]
},
{
@@ -8569,7 +8576,7 @@
"zh-chs": "压缩档案...",
"zh-cht": "壓縮檔案...",
"xloc": [
- "default.handlebars->31->950"
+ "default.handlebars->31->951"
]
},
{
@@ -8589,16 +8596,16 @@
"zh-chs": "确认",
"zh-cht": "確認",
"xloc": [
- "default-mobile.handlebars->11->300",
- "default-mobile.handlebars->11->466",
- "default.handlebars->31->1480",
- "default.handlebars->31->1824",
- "default.handlebars->31->1903",
- "default.handlebars->31->1964",
- "default.handlebars->31->2062",
- "default.handlebars->31->471",
- "default.handlebars->31->811",
- "default.handlebars->31->820"
+ "default-mobile.handlebars->11->301",
+ "default-mobile.handlebars->11->467",
+ "default.handlebars->31->1481",
+ "default.handlebars->31->1825",
+ "default.handlebars->31->1904",
+ "default.handlebars->31->1965",
+ "default.handlebars->31->2063",
+ "default.handlebars->31->472",
+ "default.handlebars->31->812",
+ "default.handlebars->31->821"
]
},
{
@@ -8618,8 +8625,8 @@
"zh-chs": "确认将1个副本复制到此位置?",
"zh-cht": "確認將1個副本複製到此位置?",
"xloc": [
- "default-mobile.handlebars->11->362",
- "default.handlebars->31->973"
+ "default-mobile.handlebars->11->363",
+ "default.handlebars->31->974"
]
},
{
@@ -8639,7 +8646,7 @@
"zh-chs": "确认{0}个条目的复制到此位置?",
"zh-cht": "確認{0}個條目的複製到此位置?",
"xloc": [
- "default.handlebars->31->972"
+ "default.handlebars->31->973"
]
},
{
@@ -8659,7 +8666,7 @@
"zh-chs": "确认{0}个条目的副本到此位置?",
"zh-cht": "確認{0}個條目的副本到此位置?",
"xloc": [
- "default-mobile.handlebars->11->361"
+ "default-mobile.handlebars->11->362"
]
},
{
@@ -8679,7 +8686,7 @@
"zh-chs": "确认删除选定的帐户?",
"zh-cht": "確認刪除所選帳戶?",
"xloc": [
- "default.handlebars->31->1823"
+ "default.handlebars->31->1824"
]
},
{
@@ -8699,7 +8706,7 @@
"zh-chs": "确认删除选定的设备?",
"zh-cht": "確認刪除所選裝置?",
"xloc": [
- "default.handlebars->31->470"
+ "default.handlebars->31->471"
]
},
{
@@ -8719,7 +8726,7 @@
"zh-chs": "确认删除选定的用户组?",
"zh-cht": "確認刪除所選用戶群?",
"xloc": [
- "default.handlebars->31->1902"
+ "default.handlebars->31->1903"
]
},
{
@@ -8739,7 +8746,7 @@
"zh-chs": "确认删除用户{0}?",
"zh-cht": "確認刪除用戶{0}?",
"xloc": [
- "default.handlebars->31->2061"
+ "default.handlebars->31->2062"
]
},
{
@@ -8759,7 +8766,7 @@
"zh-chs": "确认删除用户“ {0} ”的成员身份?",
"zh-cht": "確認刪除用戶“ {0} ”的成員身份?",
"xloc": [
- "default.handlebars->31->1967"
+ "default.handlebars->31->1968"
]
},
{
@@ -8779,7 +8786,7 @@
"zh-chs": "确认删除用户组“ {0} ”的成员身份?",
"zh-cht": "確認刪除用戶群“ {0} ”的成員身份?",
"xloc": [
- "default.handlebars->31->2093"
+ "default.handlebars->31->2094"
]
},
{
@@ -8799,8 +8806,8 @@
"zh-chs": "确认将1个条目移动到此位置?",
"zh-cht": "確認將1個條目移動到此位置?",
"xloc": [
- "default-mobile.handlebars->11->364",
- "default.handlebars->31->975"
+ "default-mobile.handlebars->11->365",
+ "default.handlebars->31->976"
]
},
{
@@ -8820,7 +8827,7 @@
"zh-chs": "确认将{0}个条目移到此位置?",
"zh-cht": "確認將{0}個條目移到該位置?",
"xloc": [
- "default.handlebars->31->974"
+ "default.handlebars->31->975"
]
},
{
@@ -8840,7 +8847,7 @@
"zh-chs": "确认将{0}个条目移到该位置?",
"zh-cht": "確認將{0}個條目移到該位置?",
"xloc": [
- "default-mobile.handlebars->11->363"
+ "default-mobile.handlebars->11->364"
]
},
{
@@ -8860,7 +8867,7 @@
"zh-chs": "确认覆盖?",
"zh-cht": "確認覆蓋?",
"xloc": [
- "default.handlebars->31->1649"
+ "default.handlebars->31->1650"
]
},
{
@@ -8880,8 +8887,8 @@
"zh-chs": "确认删除设备“ {0} ”的访问权限?",
"zh-cht": "確認刪除裝置“ {0} ”的訪問權限?",
"xloc": [
- "default.handlebars->31->1957",
- "default.handlebars->31->2084"
+ "default.handlebars->31->1958",
+ "default.handlebars->31->2085"
]
},
{
@@ -8901,8 +8908,8 @@
"zh-chs": "确认删除设备组“ {0} ”的访问权限?",
"zh-cht": "確認刪除裝置群“ {0} ”的訪問權限?",
"xloc": [
- "default.handlebars->31->1959",
- "default.handlebars->31->2097"
+ "default.handlebars->31->1960",
+ "default.handlebars->31->2098"
]
},
{
@@ -8922,7 +8929,7 @@
"zh-chs": "确认删除用户“ {0} ”的访问权限?",
"zh-cht": "確認刪除用戶“ {0} ”的訪問權限?",
"xloc": [
- "default.handlebars->31->2086"
+ "default.handlebars->31->2087"
]
},
{
@@ -8942,7 +8949,7 @@
"zh-chs": "确认删除用户组“ {0} ”的访问权限?",
"zh-cht": "確認刪除用戶群“ {0} ”的訪問權限?",
"xloc": [
- "default.handlebars->31->2089"
+ "default.handlebars->31->2090"
]
},
{
@@ -8962,8 +8969,8 @@
"zh-chs": "确认删除访问权限?",
"zh-cht": "確認刪除訪問權限?",
"xloc": [
- "default.handlebars->31->2087",
- "default.handlebars->31->2090"
+ "default.handlebars->31->2088",
+ "default.handlebars->31->2091"
]
},
{
@@ -8983,8 +8990,8 @@
"zh-chs": "确认删除身份验证软件两步登录?",
"zh-cht": "確認刪除身份驗證軟體兩步登入?",
"xloc": [
- "default-mobile.handlebars->11->84",
- "default.handlebars->31->1109"
+ "default-mobile.handlebars->11->85",
+ "default.handlebars->31->1110"
]
},
{
@@ -9021,7 +9028,7 @@
"zh-chs": "确认删除设备共享“{0}”?",
"zh-cht": "確認刪除設備共享“{0}”?",
"xloc": [
- "default.handlebars->31->2082"
+ "default.handlebars->31->2083"
]
},
{
@@ -9075,7 +9082,7 @@
"zh-chs": "确认删除用户“ {0} ”的权限?",
"zh-cht": "確認刪除用戶“ {0} ”的權限?",
"xloc": [
- "default.handlebars->31->1578"
+ "default.handlebars->31->1579"
]
},
{
@@ -9095,7 +9102,7 @@
"zh-chs": "确认删除用户组“ {0} ”的权限?",
"zh-cht": "確認刪除用戶群“ {0} ”的權限?",
"xloc": [
- "default.handlebars->31->1580"
+ "default.handlebars->31->1581"
]
},
{
@@ -9132,7 +9139,7 @@
"zh-chs": "确认删除用户{0}?",
"zh-cht": "確認刪除用戶{0}?",
"xloc": [
- "default-mobile.handlebars->11->517"
+ "default-mobile.handlebars->11->518"
]
},
{
@@ -9152,8 +9159,8 @@
"zh-chs": "将{1}入口{2}中的{0}限制到此位置?",
"zh-cht": "將{1}入口{2}中的{0}限製到此位置?",
"xloc": [
- "default-mobile.handlebars->11->137",
- "default.handlebars->31->1650"
+ "default-mobile.handlebars->11->138",
+ "default.handlebars->31->1651"
]
},
{
@@ -9174,11 +9181,11 @@
"zh-cht": "連接",
"xloc": [
"agent-translations.json",
- "default-mobile.handlebars->11->344",
+ "default-mobile.handlebars->11->345",
"default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3",
"default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->3",
- "default.handlebars->31->1419",
- "default.handlebars->31->945",
+ "default.handlebars->31->1420",
+ "default.handlebars->31->946",
"default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->connectbutton1span",
"default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->connectbutton2span",
"default.handlebars->container->column_l->p13->p13toolbar->1->0->1->3",
@@ -9205,7 +9212,7 @@
"zh-chs": "全部连接",
"zh-cht": "全部連接",
"xloc": [
- "default.handlebars->31->287",
+ "default.handlebars->31->288",
"default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->kvmListToolbar"
]
},
@@ -9226,7 +9233,7 @@
"zh-chs": "连接到服务器",
"zh-cht": "連接到伺服器",
"xloc": [
- "default.handlebars->31->1473"
+ "default.handlebars->31->1474"
]
},
{
@@ -9348,7 +9355,7 @@
"zh-chs": "已连接的英特尔®AMT",
"zh-cht": "已連接的Intel® AMT",
"xloc": [
- "default.handlebars->31->2185"
+ "default.handlebars->31->2186"
]
},
{
@@ -9368,7 +9375,7 @@
"zh-chs": "已连接的用户",
"zh-cht": "已连接的用户",
"xloc": [
- "default.handlebars->31->2190"
+ "default.handlebars->31->2191"
]
},
{
@@ -9388,8 +9395,8 @@
"zh-chs": "现在已连接",
"zh-cht": "現在已連接",
"xloc": [
- "default-mobile.handlebars->11->387",
- "default.handlebars->31->1005"
+ "default-mobile.handlebars->11->388",
+ "default.handlebars->31->1006"
]
},
{
@@ -9430,13 +9437,13 @@
"zh-cht": "正在連線...",
"xloc": [
"default-mobile.handlebars->11->2",
- "default-mobile.handlebars->11->380",
- "default-mobile.handlebars->11->47",
- "default.handlebars->31->243",
- "default.handlebars->31->246",
- "default.handlebars->31->290",
+ "default-mobile.handlebars->11->381",
+ "default-mobile.handlebars->11->48",
+ "default.handlebars->31->244",
+ "default.handlebars->31->247",
+ "default.handlebars->31->291",
"default.handlebars->31->9",
- "default.handlebars->31->996",
+ "default.handlebars->31->997",
"desktop.handlebars->3->2",
"terminal.handlebars->3->2",
"xterm.handlebars->9->2"
@@ -9459,7 +9466,7 @@
"zh-chs": "连接数量",
"zh-cht": "連接數量",
"xloc": [
- "default.handlebars->31->2204"
+ "default.handlebars->31->2205"
]
},
{
@@ -9479,7 +9486,7 @@
"zh-chs": "连接转发器",
"zh-cht": "連接轉發器",
"xloc": [
- "default.handlebars->31->2236"
+ "default.handlebars->31->2237"
]
},
{
@@ -9539,10 +9546,10 @@
"zh-chs": "连接性",
"zh-cht": "連接性",
"xloc": [
- "default-mobile.handlebars->11->265",
- "default.handlebars->31->1613",
- "default.handlebars->31->234",
- "default.handlebars->31->632",
+ "default-mobile.handlebars->11->266",
+ "default.handlebars->31->1614",
+ "default.handlebars->31->235",
+ "default.handlebars->31->633",
"default.handlebars->container->column_l->p21->3->1->meshConnChartDiv->1"
]
},
@@ -9563,8 +9570,8 @@
"zh-chs": "控制台",
"zh-cht": "控制台",
"xloc": [
- "default.handlebars->31->707",
- "default.handlebars->31->728",
+ "default.handlebars->31->708",
+ "default.handlebars->31->729",
"default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevConsole",
"default.handlebars->container->topbar->1->1->ServerSubMenuSpan->ServerSubMenu->1->0->ServerConsole",
"default.handlebars->contextMenu->cxconsole"
@@ -9587,7 +9594,7 @@
"zh-chs": "控制台 -",
"zh-cht": "控制台 -",
"xloc": [
- "default.handlebars->31->564"
+ "default.handlebars->31->565"
]
},
{
@@ -9607,8 +9614,8 @@
"zh-chs": "控制",
"zh-cht": "控制",
"xloc": [
- "default.handlebars->31->706",
- "default.handlebars->31->727",
+ "default.handlebars->31->707",
+ "default.handlebars->31->728",
"messenger.handlebars->13->1"
]
},
@@ -9629,7 +9636,7 @@
"zh-chs": "Cookie编码器",
"zh-cht": "Cookie編碼器",
"xloc": [
- "default.handlebars->31->2220"
+ "default.handlebars->31->2221"
]
},
{
@@ -9672,9 +9679,9 @@
"zh-chs": "将MAC地址复制到剪贴板",
"zh-cht": "將MAC地址複製到剪貼板",
"xloc": [
- "default.handlebars->31->102",
- "default.handlebars->31->91",
- "default.handlebars->31->99"
+ "default.handlebars->31->100",
+ "default.handlebars->31->103",
+ "default.handlebars->31->92"
]
},
{
@@ -9694,7 +9701,7 @@
"zh-chs": "将Windows 32位代理URL复制到剪贴板",
"zh-cht": "將Windows 32位代理URL複製到剪貼板",
"xloc": [
- "default.handlebars->31->388"
+ "default.handlebars->31->389"
]
},
{
@@ -9714,7 +9721,7 @@
"zh-chs": "将Windows 64位代理URL复制到剪贴板",
"zh-cht": "將Windows 64位代理URL複製到剪貼板",
"xloc": [
- "default.handlebars->31->392"
+ "default.handlebars->31->393"
]
},
{
@@ -9734,18 +9741,18 @@
"zh-chs": "将地址复制到剪贴板",
"zh-cht": "將地址複製到剪貼板",
"xloc": [
- "default.handlebars->31->105",
- "default.handlebars->31->107",
- "default.handlebars->31->109",
- "default.handlebars->31->111",
- "default.handlebars->31->113",
- "default.handlebars->31->115",
- "default.handlebars->31->80",
- "default.handlebars->31->82",
- "default.handlebars->31->84",
- "default.handlebars->31->93",
- "default.handlebars->31->95",
- "default.handlebars->31->97"
+ "default.handlebars->31->106",
+ "default.handlebars->31->108",
+ "default.handlebars->31->110",
+ "default.handlebars->31->112",
+ "default.handlebars->31->114",
+ "default.handlebars->31->116",
+ "default.handlebars->31->81",
+ "default.handlebars->31->83",
+ "default.handlebars->31->85",
+ "default.handlebars->31->94",
+ "default.handlebars->31->96",
+ "default.handlebars->31->98"
]
},
{
@@ -9765,8 +9772,8 @@
"zh-chs": "将代理URL复制到剪贴板",
"zh-cht": "將代理URL複製到剪貼板",
"xloc": [
- "default.handlebars->31->414",
- "default.handlebars->31->416"
+ "default.handlebars->31->415",
+ "default.handlebars->31->417"
]
},
{
@@ -9786,10 +9793,10 @@
"zh-chs": "复制连结到剪贴板",
"zh-cht": "複製連結到剪貼板",
"xloc": [
- "default.handlebars->31->1618",
- "default.handlebars->31->1637",
- "default.handlebars->31->210",
- "default.handlebars->31->369"
+ "default.handlebars->31->1619",
+ "default.handlebars->31->1638",
+ "default.handlebars->31->211",
+ "default.handlebars->31->370"
]
},
{
@@ -9809,7 +9816,7 @@
"zh-chs": "将macOS代理URL复制到剪贴板",
"zh-cht": "將macOS代理URL複製到剪貼板",
"xloc": [
- "default.handlebars->31->400"
+ "default.handlebars->31->401"
]
},
{
@@ -9829,7 +9836,7 @@
"zh-chs": "将名称复制到剪贴板",
"zh-cht": "將名稱複製到剪貼板",
"xloc": [
- "default.handlebars->31->89"
+ "default.handlebars->31->90"
]
},
{
@@ -9870,7 +9877,7 @@
"zh-chs": "将有效代码复制到剪贴板",
"zh-cht": "將有效代碼複製到剪貼板",
"xloc": [
- "default.handlebars->31->150"
+ "default.handlebars->31->151"
]
},
{
@@ -9890,7 +9897,7 @@
"zh-chs": "复制:“{0}”到“{1}”",
"zh-cht": "複製:“{0}”到“{1}”",
"xloc": [
- "default.handlebars->31->1709"
+ "default.handlebars->31->1710"
]
},
{
@@ -10036,7 +10043,7 @@
"zh-chs": "核心服务器",
"zh-cht": "核心伺服器",
"xloc": [
- "default.handlebars->31->2219"
+ "default.handlebars->31->2220"
]
},
{
@@ -10056,7 +10063,7 @@
"zh-chs": "科西嘉文",
"zh-cht": "科西嘉文",
"xloc": [
- "default.handlebars->31->1160"
+ "default.handlebars->31->1161"
]
},
{
@@ -10076,7 +10083,7 @@
"zh-chs": "创建帐号",
"zh-cht": "創建帳號",
"xloc": [
- "default.handlebars->31->1871",
+ "default.handlebars->31->1872",
"login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1->12->1->1",
"login.handlebars->container->column_l->centralTable->1->0->logincell->createpanel->1->9->1->12->1->1",
"login2.handlebars->centralTable->1->0->logincell->createpanel->1->9->1->12->1->1"
@@ -10099,7 +10106,7 @@
"zh-chs": "创建设备组",
"zh-cht": "創建裝置群",
"xloc": [
- "default-mobile.handlebars->11->112"
+ "default-mobile.handlebars->11->113"
]
},
{
@@ -10119,7 +10126,7 @@
"zh-chs": "创建用户组",
"zh-cht": "創建用戶群",
"xloc": [
- "default.handlebars->31->1910"
+ "default.handlebars->31->1911"
]
},
{
@@ -10139,7 +10146,7 @@
"zh-chs": "创建连结以与访客共享此设备",
"zh-cht": "創建鏈結以與訪客共享此裝置",
"xloc": [
- "default.handlebars->31->645"
+ "default.handlebars->31->646"
]
},
{
@@ -10159,7 +10166,7 @@
"zh-chs": "使用以下选项创建一个新的设备组。",
"zh-cht": "使用以下選項創建一個新的裝置群。",
"xloc": [
- "default.handlebars->31->1354"
+ "default.handlebars->31->1355"
]
},
{
@@ -10179,7 +10186,7 @@
"zh-chs": "创建一个新的设备组。",
"zh-cht": "創建一個新的裝置群。",
"xloc": [
- "default.handlebars->31->236"
+ "default.handlebars->31->237"
]
},
{
@@ -10199,7 +10206,7 @@
"zh-chs": "创建文件夹(如果不存在)?",
"zh-cht": "創建文件夾(如果不存在)?",
"xloc": [
- "default.handlebars->31->497"
+ "default.handlebars->31->498"
]
},
{
@@ -10219,7 +10226,7 @@
"zh-chs": "创建文件夹:“{0}”",
"zh-cht": "創建文件夾:“{0}”",
"xloc": [
- "default.handlebars->31->1702"
+ "default.handlebars->31->1703"
]
},
{
@@ -10239,7 +10246,7 @@
"zh-chs": "通过导入以下格式的JSON档案一次创建多个帐户:",
"zh-cht": "通過導入以下格式的JSON檔案一次創建多個帳戶:",
"xloc": [
- "default.handlebars->31->1835"
+ "default.handlebars->31->1836"
]
},
{
@@ -10281,7 +10288,7 @@
"zh-chs": "创建的设备组:{0}",
"zh-cht": "創建的設備組:{0}",
"xloc": [
- "default.handlebars->31->1713"
+ "default.handlebars->31->1714"
]
},
{
@@ -10301,7 +10308,7 @@
"zh-chs": "创建一个链接,该链接允许没有帐户的访客在有限的时间内远程控制此设备。",
"zh-cht": "創建一個鏈接,該鏈接允許沒有帳戶的訪客在有限的時間內遠程控制此設備。",
"xloc": [
- "default.handlebars->31->746"
+ "default.handlebars->31->747"
]
},
{
@@ -10355,7 +10362,7 @@
"zh-chs": "创建",
"zh-cht": "創建",
"xloc": [
- "default.handlebars->31->1996"
+ "default.handlebars->31->1997"
]
},
{
@@ -10375,7 +10382,7 @@
"zh-chs": "创建时间",
"zh-cht": "創作時間",
"xloc": [
- "default.handlebars->31->1401"
+ "default.handlebars->31->1402"
]
},
{
@@ -10417,8 +10424,8 @@
"zh-chs": "创建者",
"zh-cht": "創作者",
"xloc": [
- "default.handlebars->31->1399",
- "default.handlebars->31->1400"
+ "default.handlebars->31->1400",
+ "default.handlebars->31->1401"
]
},
{
@@ -10438,7 +10445,7 @@
"zh-chs": "证书",
"zh-cht": "證書",
"xloc": [
- "default.handlebars->31->1371"
+ "default.handlebars->31->1372"
]
},
{
@@ -10458,7 +10465,7 @@
"zh-chs": "克里语",
"zh-cht": "克里語",
"xloc": [
- "default.handlebars->31->1161"
+ "default.handlebars->31->1162"
]
},
{
@@ -10478,7 +10485,7 @@
"zh-chs": "克罗地亚文",
"zh-cht": "克羅地亞文",
"xloc": [
- "default.handlebars->31->1162"
+ "default.handlebars->31->1163"
]
},
{
@@ -10540,11 +10547,11 @@
"zh-chs": "Ctrl",
"zh-cht": "Ctrl",
"xloc": [
- "default-mobile.handlebars->11->333",
- "default-mobile.handlebars->11->337",
- "default.handlebars->31->56",
- "default.handlebars->31->900",
- "default.handlebars->31->904",
+ "default-mobile.handlebars->11->334",
+ "default-mobile.handlebars->11->338",
+ "default.handlebars->31->57",
+ "default.handlebars->31->901",
+ "default.handlebars->31->905",
"terminal.handlebars->3->6"
]
},
@@ -10644,7 +10651,7 @@
"zh-chs": "当前版本",
"zh-cht": "當前版本",
"xloc": [
- "default.handlebars->31->120"
+ "default.handlebars->31->121"
]
},
{
@@ -10652,15 +10659,15 @@
"nl": "Huidig wachtwoord is niet correct.",
"fr": "Le mot de passe actuel n'est pas correct.",
"xloc": [
- "default-mobile.handlebars->11->548",
- "default.handlebars->31->2159"
+ "default-mobile.handlebars->11->549",
+ "default.handlebars->31->2160"
]
},
{
"en": "Customize",
"nl": "Aanpassen",
"xloc": [
- "default-mobile.handlebars->11->315"
+ "default-mobile.handlebars->11->316"
]
},
{
@@ -10711,7 +10718,7 @@
"zh-chs": "捷克文",
"zh-cht": "捷克文",
"xloc": [
- "default.handlebars->31->1163"
+ "default.handlebars->31->1164"
]
},
{
@@ -10731,7 +10738,7 @@
"zh-chs": "DNS suffix",
"zh-cht": "DNS suffix",
"xloc": [
- "default.handlebars->31->88"
+ "default.handlebars->31->89"
]
},
{
@@ -10751,7 +10758,7 @@
"zh-chs": "丹麦文",
"zh-cht": "丹麥文",
"xloc": [
- "default.handlebars->31->1164"
+ "default.handlebars->31->1165"
]
},
{
@@ -10771,7 +10778,7 @@
"zh-chs": "数据通道",
"zh-cht": "數據通道",
"xloc": [
- "default.handlebars->31->868",
+ "default.handlebars->31->869",
"desktop.handlebars->3->11"
]
},
@@ -10792,7 +10799,7 @@
"zh-chs": "日期和时间",
"zh-cht": "日期和時間",
"xloc": [
- "default.handlebars->31->1322"
+ "default.handlebars->31->1323"
]
},
{
@@ -10812,8 +10819,8 @@
"zh-chs": "天",
"zh-cht": "天",
"xloc": [
- "default-mobile.handlebars->11->290",
- "default.handlebars->31->795"
+ "default-mobile.handlebars->11->291",
+ "default.handlebars->31->796"
]
},
{
@@ -10833,7 +10840,7 @@
"zh-chs": "停用",
"zh-cht": "停用",
"xloc": [
- "default.handlebars->31->1452"
+ "default.handlebars->31->1453"
]
},
{
@@ -10853,7 +10860,7 @@
"zh-chs": "如果设置停用CCM",
"zh-cht": "如果設置停用CCM",
"xloc": [
- "default.handlebars->31->1464"
+ "default.handlebars->31->1465"
]
},
{
@@ -10890,8 +10897,8 @@
"zh-chs": "沉睡",
"zh-cht": "沉睡",
"xloc": [
- "default-mobile.handlebars->11->202",
- "default.handlebars->31->427"
+ "default-mobile.handlebars->11->203",
+ "default.handlebars->31->428"
]
},
{
@@ -10911,10 +10918,10 @@
"zh-chs": "默认",
"zh-cht": "默認",
"xloc": [
- "default.handlebars->31->1858",
- "default.handlebars->31->1906",
- "default.handlebars->31->1917",
- "default.handlebars->31->1985"
+ "default.handlebars->31->1859",
+ "default.handlebars->31->1907",
+ "default.handlebars->31->1918",
+ "default.handlebars->31->1986"
]
},
{
@@ -10922,8 +10929,8 @@
"fr": "Suppr",
"nl": "Del",
"xloc": [
- "default-mobile.handlebars->11->321",
- "default.handlebars->31->888"
+ "default-mobile.handlebars->11->322",
+ "default.handlebars->31->889"
]
},
{
@@ -10943,13 +10950,13 @@
"zh-chs": "删除",
"zh-cht": "刪除",
"xloc": [
- "default-mobile.handlebars->11->132",
- "default-mobile.handlebars->11->354",
+ "default-mobile.handlebars->11->133",
+ "default-mobile.handlebars->11->355",
"default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->1",
"default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->1",
- "default.handlebars->31->1644",
- "default.handlebars->31->534",
- "default.handlebars->31->964",
+ "default.handlebars->31->1645",
+ "default.handlebars->31->535",
+ "default.handlebars->31->965",
"default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3",
"default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3",
"default.handlebars->container->dialog->idx_dlgButtonBar->5",
@@ -10977,8 +10984,8 @@
"zh-chs": "删除帐户",
"zh-cht": "刪除帳戶",
"xloc": [
- "default-mobile.handlebars->11->94",
- "default.handlebars->31->1339"
+ "default-mobile.handlebars->11->95",
+ "default.handlebars->31->1340"
]
},
{
@@ -10998,7 +11005,7 @@
"zh-chs": "删除帐户",
"zh-cht": "刪除帳戶",
"xloc": [
- "default.handlebars->31->1825"
+ "default.handlebars->31->1826"
]
},
{
@@ -11018,8 +11025,8 @@
"zh-chs": "删除设备",
"zh-cht": "刪除裝置",
"xloc": [
- "default-mobile.handlebars->11->270",
- "default.handlebars->31->649"
+ "default-mobile.handlebars->11->271",
+ "default.handlebars->31->650"
]
},
{
@@ -11039,10 +11046,10 @@
"zh-chs": "删除群组",
"zh-cht": "刪除群組",
"xloc": [
- "default-mobile.handlebars->11->464",
- "default-mobile.handlebars->11->467",
- "default.handlebars->31->1448",
- "default.handlebars->31->1481"
+ "default-mobile.handlebars->11->465",
+ "default-mobile.handlebars->11->468",
+ "default.handlebars->31->1449",
+ "default.handlebars->31->1482"
]
},
{
@@ -11062,8 +11069,8 @@
"zh-chs": "删除节点",
"zh-cht": "刪除節點",
"xloc": [
- "default-mobile.handlebars->11->298",
- "default.handlebars->31->821"
+ "default-mobile.handlebars->11->299",
+ "default.handlebars->31->822"
]
},
{
@@ -11083,7 +11090,7 @@
"zh-chs": "删除节点",
"zh-cht": "刪除節點",
"xloc": [
- "default.handlebars->31->472"
+ "default.handlebars->31->473"
]
},
{
@@ -11103,7 +11110,7 @@
"zh-chs": "删除用户",
"zh-cht": "刪除用戶",
"xloc": [
- "default.handlebars->31->2037"
+ "default.handlebars->31->2038"
]
},
{
@@ -11123,8 +11130,8 @@
"zh-chs": "删除用户群组",
"zh-cht": "刪除用戶群組",
"xloc": [
- "default.handlebars->31->1955",
- "default.handlebars->31->1965"
+ "default.handlebars->31->1956",
+ "default.handlebars->31->1966"
]
},
{
@@ -11144,7 +11151,7 @@
"zh-chs": "删除用户群组",
"zh-cht": "刪除用戶群組",
"xloc": [
- "default.handlebars->31->1904"
+ "default.handlebars->31->1905"
]
},
{
@@ -11164,7 +11171,7 @@
"zh-chs": "删除用户{0}",
"zh-cht": "刪除用戶{0}",
"xloc": [
- "default.handlebars->31->2060"
+ "default.handlebars->31->2061"
]
},
{
@@ -11185,7 +11192,7 @@
"zh-cht": "刪除帳戶",
"xloc": [
"default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->p3AccountActions->p2AccountActions->3->9->0",
- "default.handlebars->31->1821",
+ "default.handlebars->31->1822",
"default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->p2AccountPassActions->7"
]
},
@@ -11206,7 +11213,7 @@
"zh-chs": "删除设备",
"zh-cht": "刪除裝置",
"xloc": [
- "default.handlebars->31->465"
+ "default.handlebars->31->466"
]
},
{
@@ -11226,7 +11233,7 @@
"zh-chs": "删除群组",
"zh-cht": "刪除群組",
"xloc": [
- "default.handlebars->31->1900"
+ "default.handlebars->31->1901"
]
},
{
@@ -11246,7 +11253,7 @@
"zh-chs": "删除项目?",
"zh-cht": "刪除項目?",
"xloc": [
- "default.handlebars->31->535"
+ "default.handlebars->31->536"
]
},
{
@@ -11266,7 +11273,7 @@
"zh-chs": "递归删除:“{0}”,{1}个元素已删除",
"zh-cht": "遞歸刪除:“{0}”,{1}個元素已刪除",
"xloc": [
- "default.handlebars->31->1704"
+ "default.handlebars->31->1705"
]
},
{
@@ -11286,10 +11293,10 @@
"zh-chs": "删除所选项目?",
"zh-cht": "刪除所選項目?",
"xloc": [
- "default-mobile.handlebars->11->134",
- "default-mobile.handlebars->11->356",
- "default.handlebars->31->1646",
- "default.handlebars->31->966"
+ "default-mobile.handlebars->11->135",
+ "default-mobile.handlebars->11->357",
+ "default.handlebars->31->1647",
+ "default.handlebars->31->967"
]
},
{
@@ -11309,7 +11316,7 @@
"zh-chs": "删除用户群组{0}?",
"zh-cht": "刪除用戶群組{0}?",
"xloc": [
- "default.handlebars->31->1963"
+ "default.handlebars->31->1964"
]
},
{
@@ -11329,10 +11336,10 @@
"zh-chs": "删除{0}个所选项目?",
"zh-cht": "刪除{0}個所選項目?",
"xloc": [
- "default-mobile.handlebars->11->133",
- "default-mobile.handlebars->11->355",
- "default.handlebars->31->1645",
- "default.handlebars->31->965"
+ "default-mobile.handlebars->11->134",
+ "default-mobile.handlebars->11->356",
+ "default.handlebars->31->1646",
+ "default.handlebars->31->966"
]
},
{
@@ -11352,7 +11359,7 @@
"zh-chs": "删除{0}?",
"zh-cht": "刪除{0}?",
"xloc": [
- "default-mobile.handlebars->11->299"
+ "default-mobile.handlebars->11->300"
]
},
{
@@ -11372,7 +11379,7 @@
"zh-chs": "删除:“{0}”",
"zh-cht": "刪除:“{0}”",
"xloc": [
- "default.handlebars->31->1703"
+ "default.handlebars->31->1704"
]
},
{
@@ -11392,7 +11399,7 @@
"zh-chs": "删除:“{0}”,{1}个元素已删除",
"zh-cht": "刪除:“{0}”,已刪除{1}個元素",
"xloc": [
- "default.handlebars->31->1705"
+ "default.handlebars->31->1706"
]
},
{
@@ -11412,8 +11419,8 @@
"zh-chs": "被拒绝",
"zh-cht": "被拒絕",
"xloc": [
- "default-mobile.handlebars->11->309",
- "default.handlebars->31->864",
+ "default-mobile.handlebars->11->310",
+ "default.handlebars->31->865",
"desktop.handlebars->3->7",
"terminal.handlebars->3->11"
]
@@ -11504,26 +11511,26 @@
"zh-chs": "描述",
"zh-cht": "描述",
"xloc": [
- "default-mobile.handlebars->11->111",
- "default-mobile.handlebars->11->235",
+ "default-mobile.handlebars->11->112",
"default-mobile.handlebars->11->236",
- "default-mobile.handlebars->11->304",
- "default-mobile.handlebars->11->399",
- "default-mobile.handlebars->11->456",
- "default-mobile.handlebars->11->469",
- "default.handlebars->31->1017",
- "default.handlebars->31->1027",
- "default.handlebars->31->1359",
- "default.handlebars->31->1396",
- "default.handlebars->31->1483",
- "default.handlebars->31->1909",
- "default.handlebars->31->1919",
+ "default-mobile.handlebars->11->237",
+ "default-mobile.handlebars->11->305",
+ "default-mobile.handlebars->11->400",
+ "default-mobile.handlebars->11->457",
+ "default-mobile.handlebars->11->470",
+ "default.handlebars->31->1018",
+ "default.handlebars->31->1028",
+ "default.handlebars->31->1360",
+ "default.handlebars->31->1397",
+ "default.handlebars->31->1484",
+ "default.handlebars->31->1910",
"default.handlebars->31->1920",
- "default.handlebars->31->1961",
- "default.handlebars->31->575",
+ "default.handlebars->31->1921",
+ "default.handlebars->31->1962",
"default.handlebars->31->576",
- "default.handlebars->31->859",
- "default.handlebars->31->87",
+ "default.handlebars->31->577",
+ "default.handlebars->31->860",
+ "default.handlebars->31->88",
"default.handlebars->container->column_l->p42->p42tbl->1->0->3"
]
},
@@ -11561,13 +11568,13 @@
"zh-chs": "桌面",
"zh-cht": "桌面",
"xloc": [
- "default-mobile.handlebars->11->277",
- "default.handlebars->31->1489",
- "default.handlebars->31->2109",
- "default.handlebars->31->540",
- "default.handlebars->31->694",
- "default.handlebars->31->749",
- "default.handlebars->31->930",
+ "default-mobile.handlebars->11->278",
+ "default.handlebars->31->1490",
+ "default.handlebars->31->2110",
+ "default.handlebars->31->541",
+ "default.handlebars->31->695",
+ "default.handlebars->31->750",
+ "default.handlebars->31->931",
"default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevDesktop",
"default.handlebars->contextMenu->cxdesktop",
"desktop.handlebars->3->23"
@@ -11610,10 +11617,10 @@
"zh-chs": "桌面通知",
"zh-cht": "桌面通知",
"xloc": [
- "default.handlebars->31->1410",
- "default.handlebars->31->1924",
- "default.handlebars->31->2011",
- "default.handlebars->31->613"
+ "default.handlebars->31->1411",
+ "default.handlebars->31->1925",
+ "default.handlebars->31->2012",
+ "default.handlebars->31->614"
]
},
{
@@ -11633,10 +11640,10 @@
"zh-chs": "桌面提示",
"zh-cht": "桌面提示",
"xloc": [
- "default.handlebars->31->1409",
- "default.handlebars->31->1923",
- "default.handlebars->31->2010",
- "default.handlebars->31->612"
+ "default.handlebars->31->1410",
+ "default.handlebars->31->1924",
+ "default.handlebars->31->2011",
+ "default.handlebars->31->613"
]
},
{
@@ -11656,10 +11663,10 @@
"zh-chs": "桌面提示+工具栏",
"zh-cht": "桌面提示+工具欄",
"xloc": [
- "default.handlebars->31->1407",
- "default.handlebars->31->1921",
- "default.handlebars->31->2008",
- "default.handlebars->31->610"
+ "default.handlebars->31->1408",
+ "default.handlebars->31->1922",
+ "default.handlebars->31->2009",
+ "default.handlebars->31->611"
]
},
{
@@ -11721,10 +11728,10 @@
"zh-chs": "桌面工具栏",
"zh-cht": "桌面工具欄",
"xloc": [
- "default.handlebars->31->1408",
- "default.handlebars->31->1922",
- "default.handlebars->31->2009",
- "default.handlebars->31->611"
+ "default.handlebars->31->1409",
+ "default.handlebars->31->1923",
+ "default.handlebars->31->2010",
+ "default.handlebars->31->612"
]
},
{
@@ -11733,7 +11740,7 @@
{
"en": "Desktop, View only",
"xloc": [
- "default.handlebars->31->750"
+ "default.handlebars->31->751"
]
},
{
@@ -11753,7 +11760,7 @@
"zh-chs": "桌面时段",
"zh-cht": "桌面時段",
"xloc": [
- "default.handlebars->31->929"
+ "default.handlebars->31->930"
]
},
{
@@ -11794,7 +11801,7 @@
"zh-chs": "细节",
"zh-cht": "細節",
"xloc": [
- "default-mobile.handlebars->11->279",
+ "default-mobile.handlebars->11->280",
"default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevInfo",
"default.handlebars->contextMenu->cxdetails"
]
@@ -11836,11 +11843,11 @@
"zh-chs": "设备",
"zh-cht": "裝置",
"xloc": [
- "default-mobile.handlebars->11->394",
- "default.handlebars->31->1012",
- "default.handlebars->31->1512",
- "default.handlebars->31->196",
- "default.handlebars->31->2079",
+ "default-mobile.handlebars->11->395",
+ "default.handlebars->31->1013",
+ "default.handlebars->31->1513",
+ "default.handlebars->31->197",
+ "default.handlebars->31->2080",
"default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->5"
]
},
@@ -11861,9 +11868,9 @@
"zh-chs": "设备指令",
"zh-cht": "裝置指令",
"xloc": [
- "default-mobile.handlebars->11->287",
"default-mobile.handlebars->11->288",
- "default.handlebars->31->786"
+ "default-mobile.handlebars->11->289",
+ "default.handlebars->31->787"
]
},
{
@@ -11904,16 +11911,16 @@
"zh-cht": "裝置群",
"xloc": [
"agent-translations.json",
- "default-mobile.handlebars->11->526",
- "default.handlebars->31->1507",
- "default.handlebars->31->1510",
+ "default-mobile.handlebars->11->527",
+ "default.handlebars->31->1508",
"default.handlebars->31->1511",
- "default.handlebars->31->1772",
- "default.handlebars->31->1947",
- "default.handlebars->31->1953",
- "default.handlebars->31->2067",
- "default.handlebars->31->2118",
- "default.handlebars->31->2137"
+ "default.handlebars->31->1512",
+ "default.handlebars->31->1773",
+ "default.handlebars->31->1948",
+ "default.handlebars->31->1954",
+ "default.handlebars->31->2068",
+ "default.handlebars->31->2119",
+ "default.handlebars->31->2138"
]
},
{
@@ -11933,8 +11940,8 @@
"zh-chs": "设备组用户",
"zh-cht": "裝置群用戶",
"xloc": [
- "default-mobile.handlebars->11->515",
- "default.handlebars->31->1576"
+ "default-mobile.handlebars->11->516",
+ "default.handlebars->31->1577"
]
},
{
@@ -11955,11 +11962,11 @@
"zh-cht": "裝置群",
"xloc": [
"default-mobile.handlebars->container->page_content->column_l->p3->p3info->1->3",
- "default.handlebars->31->1788",
- "default.handlebars->31->1894",
- "default.handlebars->31->1934",
- "default.handlebars->31->2005",
- "default.handlebars->31->2188",
+ "default.handlebars->31->1789",
+ "default.handlebars->31->1895",
+ "default.handlebars->31->1935",
+ "default.handlebars->31->2006",
+ "default.handlebars->31->2189",
"default.handlebars->container->column_l->p2->p2info->7"
]
},
@@ -11980,7 +11987,7 @@
"zh-chs": "设备信息导出",
"zh-cht": "裝置訊息輸出",
"xloc": [
- "default.handlebars->31->505"
+ "default.handlebars->31->506"
]
},
{
@@ -12000,7 +12007,7 @@
"zh-chs": "设备位置",
"zh-cht": "裝置位置",
"xloc": [
- "default.handlebars->31->822"
+ "default.handlebars->31->823"
]
},
{
@@ -12020,7 +12027,7 @@
"zh-chs": "设备消息",
"zh-cht": "裝置訊息",
"xloc": [
- "default.handlebars->31->743"
+ "default.handlebars->31->744"
]
},
{
@@ -12040,10 +12047,10 @@
"zh-chs": "设备名称",
"zh-cht": "裝置名稱",
"xloc": [
- "default-mobile.handlebars->11->302",
- "default.handlebars->31->2117",
- "default.handlebars->31->304",
- "default.handlebars->31->857",
+ "default-mobile.handlebars->11->303",
+ "default.handlebars->31->2118",
+ "default.handlebars->31->305",
+ "default.handlebars->31->858",
"player.handlebars->3->9"
]
},
@@ -12064,8 +12071,8 @@
"zh-chs": "设备通知",
"zh-cht": "裝置通知",
"xloc": [
- "default.handlebars->31->493",
- "default.handlebars->31->745"
+ "default.handlebars->31->494",
+ "default.handlebars->31->746"
]
},
{
@@ -12102,7 +12109,7 @@
"zh-chs": "设备共享链接",
"zh-cht": "設備共享鏈接",
"xloc": [
- "default.handlebars->31->690"
+ "default.handlebars->31->691"
]
},
{
@@ -12122,7 +12129,7 @@
"zh-chs": "设备提示",
"zh-cht": "裝置吐司",
"xloc": [
- "default-mobile.handlebars->11->275"
+ "default-mobile.handlebars->11->276"
]
},
{
@@ -12142,8 +12149,8 @@
"zh-chs": "设备连接。",
"zh-cht": "裝置連接。",
"xloc": [
- "default.handlebars->31->1327",
- "default.handlebars->31->1597"
+ "default.handlebars->31->1328",
+ "default.handlebars->31->1598"
]
},
{
@@ -12163,8 +12170,8 @@
"zh-chs": "设备断开连接。",
"zh-cht": "裝置斷開連接。",
"xloc": [
- "default.handlebars->31->1328",
- "default.handlebars->31->1598"
+ "default.handlebars->31->1329",
+ "default.handlebars->31->1599"
]
},
{
@@ -12184,7 +12191,7 @@
"zh-chs": "创建的设备组:{0}",
"zh-cht": "設備組已創建:{0}",
"xloc": [
- "default.handlebars->31->1734"
+ "default.handlebars->31->1735"
]
},
{
@@ -12204,7 +12211,7 @@
"zh-chs": "设备组已删除:{0}",
"zh-cht": "設備組已刪除:{0}",
"xloc": [
- "default.handlebars->31->1735"
+ "default.handlebars->31->1736"
]
},
{
@@ -12224,7 +12231,7 @@
"zh-chs": "设备组成员身份已更改:{0}",
"zh-cht": "設備組成員身份已更改:{0}",
"xloc": [
- "default.handlebars->31->1736"
+ "default.handlebars->31->1737"
]
},
{
@@ -12244,7 +12251,7 @@
"zh-chs": "其他设备组管理员可以查看和更改设备组注释。",
"zh-cht": "其他裝置群管理員可以查看和更改裝置群註釋。",
"xloc": [
- "default.handlebars->31->740"
+ "default.handlebars->31->741"
]
},
{
@@ -12264,7 +12271,7 @@
"zh-chs": "设备组通知已更改",
"zh-cht": "設備組通知已更改",
"xloc": [
- "default.handlebars->31->1731"
+ "default.handlebars->31->1732"
]
},
{
@@ -12284,7 +12291,7 @@
"zh-chs": "未删除的设备组:{0}",
"zh-cht": "未刪除的設備組:{0}",
"xloc": [
- "default.handlebars->31->1714"
+ "default.handlebars->31->1715"
]
},
{
@@ -12304,10 +12311,10 @@
"zh-chs": "设备由电池供电",
"zh-cht": "裝置由電池供電",
"xloc": [
- "default-mobile.handlebars->11->170",
- "default-mobile.handlebars->11->226",
- "default.handlebars->31->251",
- "default.handlebars->31->561"
+ "default-mobile.handlebars->11->171",
+ "default-mobile.handlebars->11->227",
+ "default.handlebars->31->252",
+ "default.handlebars->31->562"
]
},
{
@@ -12327,7 +12334,7 @@
"zh-chs": "检测到设备,但无法获得电源状态。",
"zh-cht": "檢測到裝置,但無法獲得電源狀態。",
"xloc": [
- "default.handlebars->31->432"
+ "default.handlebars->31->433"
]
},
{
@@ -12347,8 +12354,8 @@
"zh-chs": "设备正在休眠(S4)",
"zh-cht": "裝置正在休眠(S4)",
"xloc": [
- "default-mobile.handlebars->11->210",
- "default.handlebars->31->438"
+ "default-mobile.handlebars->11->211",
+ "default.handlebars->31->439"
]
},
{
@@ -12368,8 +12375,8 @@
"zh-chs": "设备处于深度睡眠状态(S3)",
"zh-cht": "裝置處於深度睡眠狀態(S3)",
"xloc": [
- "default-mobile.handlebars->11->209",
- "default.handlebars->31->437"
+ "default-mobile.handlebars->11->210",
+ "default.handlebars->31->438"
]
},
{
@@ -12389,7 +12396,7 @@
"zh-chs": "设备处于深度睡眠状态(S3)。",
"zh-cht": "裝置處於深度睡眠狀態(S3)。",
"xloc": [
- "default.handlebars->31->426"
+ "default.handlebars->31->427"
]
},
{
@@ -12409,7 +12416,7 @@
"zh-chs": "设备处于休眠状态(S4)。",
"zh-cht": "裝置處於休眠狀態(S4)。",
"xloc": [
- "default.handlebars->31->428"
+ "default.handlebars->31->429"
]
},
{
@@ -12429,7 +12436,7 @@
"zh-chs": "设备处于关机状态(S5)。",
"zh-cht": "裝置處於關機狀態(S5)。",
"xloc": [
- "default.handlebars->31->430"
+ "default.handlebars->31->431"
]
},
{
@@ -12449,8 +12456,8 @@
"zh-chs": "设备处于睡眠状态(S1)",
"zh-cht": "裝置處於睡眠狀態(S1)",
"xloc": [
- "default-mobile.handlebars->11->207",
- "default.handlebars->31->435"
+ "default-mobile.handlebars->11->208",
+ "default.handlebars->31->436"
]
},
{
@@ -12470,7 +12477,7 @@
"zh-chs": "设备处于睡眠状态(S1)。",
"zh-cht": "裝置處於睡眠狀態(S1)。",
"xloc": [
- "default.handlebars->31->422"
+ "default.handlebars->31->423"
]
},
{
@@ -12490,8 +12497,8 @@
"zh-chs": "设备处于睡眠状态(S2)",
"zh-cht": "裝置處於睡眠狀態(S2)",
"xloc": [
- "default-mobile.handlebars->11->208",
- "default.handlebars->31->436"
+ "default-mobile.handlebars->11->209",
+ "default.handlebars->31->437"
]
},
{
@@ -12511,7 +12518,7 @@
"zh-chs": "设备处于睡眠状态(S2)。",
"zh-cht": "裝置處於睡眠狀態(S2)。",
"xloc": [
- "default.handlebars->31->424"
+ "default.handlebars->31->425"
]
},
{
@@ -12531,8 +12538,8 @@
"zh-chs": "设备处于软关机状态(S5)",
"zh-cht": "裝置處於軟關機狀態(S5)",
"xloc": [
- "default-mobile.handlebars->11->211",
- "default.handlebars->31->439"
+ "default-mobile.handlebars->11->212",
+ "default.handlebars->31->440"
]
},
{
@@ -12552,10 +12559,10 @@
"zh-chs": "设备已插入",
"zh-cht": "裝置已插入",
"xloc": [
- "default-mobile.handlebars->11->169",
- "default-mobile.handlebars->11->225",
- "default.handlebars->31->250",
- "default.handlebars->31->560"
+ "default-mobile.handlebars->11->170",
+ "default-mobile.handlebars->11->226",
+ "default.handlebars->31->251",
+ "default.handlebars->31->561"
]
},
{
@@ -12575,8 +12582,8 @@
"zh-chs": "设备已连接电源",
"zh-cht": "裝置已連接電源",
"xloc": [
- "default-mobile.handlebars->11->206",
- "default.handlebars->31->434"
+ "default-mobile.handlebars->11->207",
+ "default.handlebars->31->435"
]
},
{
@@ -12596,7 +12603,7 @@
"zh-chs": "设备已连接电源。",
"zh-cht": "裝置已連接電源。",
"xloc": [
- "default.handlebars->31->420"
+ "default.handlebars->31->421"
]
},
{
@@ -12616,8 +12623,8 @@
"zh-chs": "设备存在,但无法确定电源状态",
"zh-cht": "裝置存在,但無法確定電源狀態",
"xloc": [
- "default-mobile.handlebars->11->212",
- "default.handlebars->31->440"
+ "default-mobile.handlebars->11->213",
+ "default.handlebars->31->441"
]
},
{
@@ -12637,7 +12644,7 @@
"zh-chs": "设备名称",
"zh-cht": "裝置名稱",
"xloc": [
- "default.handlebars->31->552"
+ "default.handlebars->31->553"
]
},
{
@@ -12657,7 +12664,7 @@
"zh-chs": "设备通知",
"zh-cht": "設備通知",
"xloc": [
- "default.handlebars->31->462"
+ "default.handlebars->31->463"
]
},
{
@@ -12677,7 +12684,7 @@
"zh-chs": "设备请求激活Intel(R)AMT ACM,FQDN:{0}",
"zh-cht": "設備請求激活Intel(R)AMT ACM,FQDN:{0}",
"xloc": [
- "default.handlebars->31->1716"
+ "default.handlebars->31->1717"
]
},
{
@@ -12714,8 +12721,8 @@
"zh-chs": "设备",
"zh-cht": "裝置",
"xloc": [
- "default.handlebars->31->1895",
- "default.handlebars->31->1935"
+ "default.handlebars->31->1896",
+ "default.handlebars->31->1936"
]
},
{
@@ -12735,7 +12742,7 @@
"zh-chs": "已禁用",
"zh-cht": "已禁用",
"xloc": [
- "default.handlebars->31->606"
+ "default.handlebars->31->607"
]
},
{
@@ -12755,7 +12762,7 @@
"zh-chs": "禁用的电子邮件两因素身份验证",
"zh-cht": "禁用的電子郵件兩因素身份驗證",
"xloc": [
- "default.handlebars->31->1747"
+ "default.handlebars->31->1748"
]
},
{
@@ -12776,10 +12783,10 @@
"zh-cht": "斷線",
"xloc": [
"agent-translations.json",
- "default-mobile.handlebars->11->345",
+ "default-mobile.handlebars->11->346",
"default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3",
- "default.handlebars->31->1420",
- "default.handlebars->31->946",
+ "default.handlebars->31->1421",
+ "default.handlebars->31->947",
"default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->disconnectbutton1span",
"default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->disconnectbutton2span",
"desktop.handlebars->p11->deskarea0->deskarea1->3->disconnectbutton1span",
@@ -12827,10 +12834,10 @@
"default-mobile.handlebars->11->1",
"default-mobile.handlebars->container->page_content->column_l->p10->p10desktop->deskarea1->1->3->deskstatus",
"default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->0->1->3->p13Status",
- "default.handlebars->31->242",
- "default.handlebars->31->245",
- "default.handlebars->31->262",
- "default.handlebars->31->289",
+ "default.handlebars->31->243",
+ "default.handlebars->31->246",
+ "default.handlebars->31->263",
+ "default.handlebars->31->290",
"default.handlebars->31->8",
"default.handlebars->container->column_l->p11->deskarea0->deskarea1->3->deskstatus",
"default.handlebars->container->column_l->p12->termTable->1->1->0->1->3->termstatus",
@@ -12859,7 +12866,7 @@
"zh-chs": "解雇",
"zh-cht": "解僱",
"xloc": [
- "default.handlebars->31->263"
+ "default.handlebars->31->264"
]
},
{
@@ -12879,7 +12886,7 @@
"zh-chs": "在远程设备上显示一个消息框。",
"zh-cht": "在遠程裝置上顯示一個訊息框。",
"xloc": [
- "default.handlebars->31->744"
+ "default.handlebars->31->745"
]
},
{
@@ -12919,7 +12926,7 @@
"zh-chs": "在远程设备上显示短信",
"zh-cht": "在遠程裝置上顯示短信",
"xloc": [
- "default.handlebars->31->643"
+ "default.handlebars->31->644"
]
},
{
@@ -12939,7 +12946,7 @@
"zh-chs": "显示设备组名称",
"zh-cht": "顯示裝置群名稱",
"xloc": [
- "default.handlebars->31->1326"
+ "default.handlebars->31->1327"
]
},
{
@@ -12959,7 +12966,7 @@
"zh-chs": "显示名称",
"zh-cht": "顯示名稱",
"xloc": [
- "default.handlebars->31->915"
+ "default.handlebars->31->916"
]
},
{
@@ -12979,7 +12986,7 @@
"zh-chs": "显示公共连结",
"zh-cht": "顯示公共鏈結",
"xloc": [
- "default.handlebars->31->1617"
+ "default.handlebars->31->1618"
]
},
{
@@ -12999,7 +13006,7 @@
"zh-chs": "显示消息框,标题= “{0}”,消息= “{1}”",
"zh-cht": "顯示消息框,標題= “{0}”,消息= “{1}”",
"xloc": [
- "default.handlebars->31->1676"
+ "default.handlebars->31->1677"
]
},
{
@@ -13019,7 +13026,7 @@
"zh-chs": "显示吐司消息,标题= “{0}”,消息= “{1}”",
"zh-cht": "顯示吐司消息,標題= “{0}”,消息= “{1}”",
"xloc": [
- "default.handlebars->31->1684"
+ "default.handlebars->31->1685"
]
},
{
@@ -13039,8 +13046,8 @@
"zh-chs": "什么都不做",
"zh-cht": "什麼都不做",
"xloc": [
- "default.handlebars->31->1467",
- "default.handlebars->31->1471"
+ "default.handlebars->31->1468",
+ "default.handlebars->31->1472"
]
},
{
@@ -13060,10 +13067,10 @@
"zh-chs": "域",
"zh-cht": "域",
"xloc": [
- "default.handlebars->31->1859",
- "default.handlebars->31->1907",
- "default.handlebars->31->1916",
- "default.handlebars->31->1984",
+ "default.handlebars->31->1860",
+ "default.handlebars->31->1908",
+ "default.handlebars->31->1917",
+ "default.handlebars->31->1985",
"mstsc.handlebars->main->1->3->1->2->1->0",
"mstsc.handlebars->main->1->3->1->2->3"
]
@@ -13085,7 +13092,7 @@
"zh-chs": "请勿更改,如果设置请保留CCM",
"zh-cht": "請勿更改,如果設置請保留CCM",
"xloc": [
- "default.handlebars->31->1463"
+ "default.handlebars->31->1464"
]
},
{
@@ -13122,7 +13129,7 @@
"zh-chs": "不要连接到服务器",
"zh-cht": "不要連接到伺服器",
"xloc": [
- "default.handlebars->31->1472"
+ "default.handlebars->31->1473"
]
},
{
@@ -13186,8 +13193,8 @@
"fr": "Bas",
"nl": "Omlaag",
"xloc": [
- "default-mobile.handlebars->11->329",
- "default.handlebars->31->896"
+ "default-mobile.handlebars->11->330",
+ "default.handlebars->31->897"
]
},
{
@@ -13250,8 +13257,8 @@
"zh-chs": "下载档案",
"zh-cht": "下載檔案",
"xloc": [
- "default-mobile.handlebars->11->375",
- "default.handlebars->31->985"
+ "default-mobile.handlebars->11->376",
+ "default.handlebars->31->986"
]
},
{
@@ -13271,7 +13278,7 @@
"zh-chs": "下载MeshCentral Router,一个TCP端口映射工具。",
"zh-cht": "下載MeshCentral Router,一個TCP端口映射工具。",
"xloc": [
- "default.handlebars->31->240"
+ "default.handlebars->31->241"
]
},
{
@@ -13291,7 +13298,7 @@
"zh-chs": "下载MeshCmd",
"zh-cht": "下載MeshCmd",
"xloc": [
- "default.handlebars->31->847"
+ "default.handlebars->31->848"
]
},
{
@@ -13311,7 +13318,7 @@
"zh-chs": "下载MeshCmd,这是一个多功能的指令执行工具。",
"zh-cht": "下載MeshCmd,這是一個多功能的指令執行工具。",
"xloc": [
- "default.handlebars->31->238"
+ "default.handlebars->31->239"
]
},
{
@@ -13351,7 +13358,7 @@
"zh-chs": "下载报告",
"zh-cht": "下載報告",
"xloc": [
- "default.handlebars->31->1777",
+ "default.handlebars->31->1778",
"default.handlebars->container->column_l->p3->3->1->0->3"
]
},
@@ -13372,7 +13379,7 @@
"zh-chs": "下载带有指令档案的“ meshcmd”,以通过此服务器将网络讯息发送到该设备。紧记编辑meshaction.txt并添加您的帐户密码或进行任何必要的更改。",
"zh-cht": "下載帶有指令檔案的“ meshcmd”,以通過此服務器將網絡讯息發送到該裝置。緊記編輯meshaction.txt並新增你的帳戶密碼或進行任何必要的更改。",
"xloc": [
- "default.handlebars->31->840"
+ "default.handlebars->31->841"
]
},
{
@@ -13432,7 +13439,7 @@
"zh-chs": "下载错误日志",
"zh-cht": "下載錯誤日誌",
"xloc": [
- "default.handlebars->31->130"
+ "default.handlebars->31->131"
]
},
{
@@ -13452,7 +13459,7 @@
"zh-chs": "下载电源事件",
"zh-cht": "下載電源事件",
"xloc": [
- "default.handlebars->31->796"
+ "default.handlebars->31->797"
]
},
{
@@ -13532,7 +13539,7 @@
"zh-chs": "使用以下一种档案格式下载设备列表。",
"zh-cht": "使用以下一種檔案格式下載裝置列表。",
"xloc": [
- "default.handlebars->31->500"
+ "default.handlebars->31->501"
]
},
{
@@ -13552,7 +13559,7 @@
"zh-chs": "使用以下一种档案格式下载事件列表。",
"zh-cht": "使用以下一種檔案格式下載事件列表。",
"xloc": [
- "default.handlebars->31->1778"
+ "default.handlebars->31->1779"
]
},
{
@@ -13572,7 +13579,7 @@
"zh-chs": "使用以下一种档案格式下载用户列表。",
"zh-cht": "使用以下一種檔案格式下載用戶列表。",
"xloc": [
- "default.handlebars->31->1843"
+ "default.handlebars->31->1844"
]
},
{
@@ -13653,7 +13660,7 @@
"zh-chs": "下载:“{0}”",
"zh-cht": "下載:“{0}”",
"xloc": [
- "default.handlebars->31->1707"
+ "default.handlebars->31->1708"
]
},
{
@@ -13693,7 +13700,7 @@
"zh-chs": "代理重复",
"zh-cht": "代理重複",
"xloc": [
- "default.handlebars->31->2184"
+ "default.handlebars->31->2185"
]
},
{
@@ -13733,7 +13740,7 @@
"zh-chs": "复制用户组",
"zh-cht": "複製用戶群",
"xloc": [
- "default.handlebars->31->1911"
+ "default.handlebars->31->1912"
]
},
{
@@ -13770,8 +13777,8 @@
"zh-chs": "持续时间",
"zh-cht": "持續時間",
"xloc": [
- "default.handlebars->31->2103",
- "default.handlebars->31->2123",
+ "default.handlebars->31->2104",
+ "default.handlebars->31->2124",
"player.handlebars->3->2"
]
},
@@ -13809,7 +13816,7 @@
"zh-chs": "荷兰文(比利时)",
"zh-cht": "荷蘭文(比利時)",
"xloc": [
- "default.handlebars->31->1166"
+ "default.handlebars->31->1167"
]
},
{
@@ -13829,7 +13836,7 @@
"zh-chs": "荷兰文(标准)",
"zh-cht": "荷蘭文(標準)",
"xloc": [
- "default.handlebars->31->1165"
+ "default.handlebars->31->1166"
]
},
{
@@ -13929,7 +13936,7 @@
"zh-chs": "错误:",
"zh-cht": "錯誤:",
"xloc": [
- "default.handlebars->31->166"
+ "default.handlebars->31->167"
]
},
{
@@ -14054,7 +14061,7 @@
"zh-chs": "错误:无法添加密钥。",
"zh-cht": "錯誤:無法新增密鑰。",
"xloc": [
- "default.handlebars->31->162"
+ "default.handlebars->31->163"
]
},
{
@@ -14117,8 +14124,8 @@
"zh-chs": "编辑设备",
"zh-cht": "編輯裝置",
"xloc": [
- "default-mobile.handlebars->11->307",
- "default.handlebars->31->862"
+ "default-mobile.handlebars->11->308",
+ "default.handlebars->31->863"
]
},
{
@@ -14138,13 +14145,13 @@
"zh-chs": "编辑设备组",
"zh-cht": "編輯裝置群",
"xloc": [
- "default-mobile.handlebars->11->470",
- "default-mobile.handlebars->11->472",
- "default-mobile.handlebars->11->492",
- "default.handlebars->31->1484",
- "default.handlebars->31->1516",
- "default.handlebars->31->1540",
- "default.handlebars->31->1552"
+ "default-mobile.handlebars->11->471",
+ "default-mobile.handlebars->11->473",
+ "default-mobile.handlebars->11->493",
+ "default.handlebars->31->1485",
+ "default.handlebars->31->1517",
+ "default.handlebars->31->1541",
+ "default.handlebars->31->1553"
]
},
{
@@ -14164,7 +14171,7 @@
"zh-chs": "编辑设备组功能",
"zh-cht": "編輯裝置群功能",
"xloc": [
- "default.handlebars->31->1502"
+ "default.handlebars->31->1503"
]
},
{
@@ -14184,8 +14191,8 @@
"zh-chs": "编辑设备组权限",
"zh-cht": "編輯裝置群權限",
"xloc": [
- "default.handlebars->31->1537",
- "default.handlebars->31->1549"
+ "default.handlebars->31->1538",
+ "default.handlebars->31->1550"
]
},
{
@@ -14205,7 +14212,7 @@
"zh-chs": "编辑设备组用户同意",
"zh-cht": "編輯裝置群用戶同意",
"xloc": [
- "default.handlebars->31->1485"
+ "default.handlebars->31->1486"
]
},
{
@@ -14225,8 +14232,8 @@
"zh-chs": "编辑设备笔记",
"zh-cht": "編輯裝置筆記",
"xloc": [
- "default-mobile.handlebars->11->484",
- "default.handlebars->31->1529"
+ "default-mobile.handlebars->11->485",
+ "default.handlebars->31->1530"
]
},
{
@@ -14246,8 +14253,8 @@
"zh-chs": "编辑设备权限",
"zh-cht": "編輯裝置權限",
"xloc": [
- "default.handlebars->31->1542",
- "default.handlebars->31->1544"
+ "default.handlebars->31->1543",
+ "default.handlebars->31->1545"
]
},
{
@@ -14267,7 +14274,7 @@
"zh-chs": "编辑设备标签",
"zh-cht": "編輯裝置標籤",
"xloc": [
- "default.handlebars->31->488"
+ "default.handlebars->31->489"
]
},
{
@@ -14287,7 +14294,7 @@
"zh-chs": "编辑设备用户同意",
"zh-cht": "編輯裝置用戶同意",
"xloc": [
- "default.handlebars->31->1487"
+ "default.handlebars->31->1488"
]
},
{
@@ -14307,7 +14314,7 @@
"zh-chs": "编辑群组",
"zh-cht": "編輯群組",
"xloc": [
- "default.handlebars->31->718"
+ "default.handlebars->31->719"
]
},
{
@@ -14327,14 +14334,14 @@
"zh-chs": "编辑英特尔®AMT凭证",
"zh-cht": "編輯Intel® AMT憑證",
"xloc": [
- "default-mobile.handlebars->11->249",
- "default-mobile.handlebars->11->252",
- "default-mobile.handlebars->11->255",
- "default-mobile.handlebars->11->297",
- "default.handlebars->31->590",
- "default.handlebars->31->593",
- "default.handlebars->31->596",
- "default.handlebars->31->803"
+ "default-mobile.handlebars->11->250",
+ "default-mobile.handlebars->11->253",
+ "default-mobile.handlebars->11->256",
+ "default-mobile.handlebars->11->298",
+ "default.handlebars->31->591",
+ "default.handlebars->31->594",
+ "default.handlebars->31->597",
+ "default.handlebars->31->804"
]
},
{
@@ -14354,8 +14361,8 @@
"zh-chs": "编辑笔记",
"zh-cht": "編輯筆記",
"xloc": [
- "default-mobile.handlebars->11->499",
- "default.handlebars->31->1559"
+ "default-mobile.handlebars->11->500",
+ "default.handlebars->31->1560"
]
},
{
@@ -14375,7 +14382,7 @@
"zh-chs": "编辑用户同意",
"zh-cht": "編輯用戶同意",
"xloc": [
- "default.handlebars->31->1486"
+ "default.handlebars->31->1487"
]
},
{
@@ -14395,7 +14402,7 @@
"zh-chs": "编辑用户设备组权限",
"zh-cht": "編輯用戶裝置群權限",
"xloc": [
- "default.handlebars->31->1550"
+ "default.handlebars->31->1551"
]
},
{
@@ -14415,7 +14422,7 @@
"zh-chs": "编辑用户设备权限",
"zh-cht": "編輯用戶裝置權限",
"xloc": [
- "default.handlebars->31->1545"
+ "default.handlebars->31->1546"
]
},
{
@@ -14435,7 +14442,7 @@
"zh-chs": "编辑用户组",
"zh-cht": "編輯用戶群",
"xloc": [
- "default.handlebars->31->1962"
+ "default.handlebars->31->1963"
]
},
{
@@ -14455,7 +14462,7 @@
"zh-chs": "编辑用户组设备权限",
"zh-cht": "編輯用戶群裝置權限",
"xloc": [
- "default.handlebars->31->1547"
+ "default.handlebars->31->1548"
]
},
{
@@ -14475,7 +14482,7 @@
"zh-chs": "编辑用户组用户同意",
"zh-cht": "編輯用戶組用戶同意",
"xloc": [
- "default.handlebars->31->1488"
+ "default.handlebars->31->1489"
]
},
{
@@ -14516,7 +14523,7 @@
"zh-chs": "编辑标签",
"zh-cht": "編輯標籤",
"xloc": [
- "default.handlebars->31->463"
+ "default.handlebars->31->464"
]
},
{
@@ -14556,13 +14563,13 @@
"zh-chs": "电邮",
"zh-cht": "電郵",
"xloc": [
- "default-mobile.handlebars->11->88",
- "default.handlebars->31->1861",
- "default.handlebars->31->1988",
- "default.handlebars->31->1990",
- "default.handlebars->31->2030",
- "default.handlebars->31->2048",
- "default.handlebars->31->336",
+ "default-mobile.handlebars->11->89",
+ "default.handlebars->31->1862",
+ "default.handlebars->31->1989",
+ "default.handlebars->31->1991",
+ "default.handlebars->31->2031",
+ "default.handlebars->31->2049",
+ "default.handlebars->31->337",
"login-mobile.handlebars->5->42",
"login-mobile.handlebars->container->page_content->column_l->1->1->0->1->tokenpanel->1->7->1->4->1->3",
"login.handlebars->5->44",
@@ -14593,8 +14600,8 @@
"zh-chs": "电邮地址变更",
"zh-cht": "電郵地址變更",
"xloc": [
- "default-mobile.handlebars->11->89",
- "default.handlebars->31->1335"
+ "default-mobile.handlebars->11->90",
+ "default.handlebars->31->1336"
]
},
{
@@ -14614,8 +14621,8 @@
"zh-chs": "电邮认证",
"zh-cht": "電郵認證",
"xloc": [
- "default-mobile.handlebars->11->78",
- "default.handlebars->31->1103"
+ "default-mobile.handlebars->11->79",
+ "default.handlebars->31->1104"
]
},
{
@@ -14674,8 +14681,8 @@
"zh-chs": "电邮验证",
"zh-cht": "電郵驗證",
"xloc": [
- "default-mobile.handlebars->11->87",
- "default.handlebars->31->1333"
+ "default-mobile.handlebars->11->88",
+ "default.handlebars->31->1334"
]
},
{
@@ -14695,7 +14702,7 @@
"zh-chs": "电邮邀请",
"zh-cht": "電郵邀請",
"xloc": [
- "default.handlebars->31->333"
+ "default.handlebars->31->334"
]
},
{
@@ -14715,7 +14722,7 @@
"zh-chs": "电邮未验证",
"zh-cht": "電郵未驗證",
"xloc": [
- "default.handlebars->31->1807"
+ "default.handlebars->31->1808"
]
},
{
@@ -14735,8 +14742,8 @@
"zh-chs": "电子邮件已验证",
"zh-cht": "電子郵件已驗證",
"xloc": [
- "default.handlebars->31->1808",
- "default.handlebars->31->1982"
+ "default.handlebars->31->1809",
+ "default.handlebars->31->1983"
]
},
{
@@ -14756,7 +14763,7 @@
"zh-chs": "电邮已验证。",
"zh-cht": "電郵已驗證。",
"xloc": [
- "default.handlebars->31->1867"
+ "default.handlebars->31->1868"
]
},
{
@@ -14776,7 +14783,7 @@
"zh-chs": "电邮未验证",
"zh-cht": "電郵未驗證",
"xloc": [
- "default.handlebars->31->1983"
+ "default.handlebars->31->1984"
]
},
{
@@ -14796,8 +14803,8 @@
"zh-chs": "电邮已发送。",
"zh-cht": "電郵已發送。",
"xloc": [
- "default-mobile.handlebars->11->541",
- "default.handlebars->31->2152",
+ "default-mobile.handlebars->11->542",
+ "default.handlebars->31->2153",
"login-mobile.handlebars->5->2",
"login.handlebars->5->2",
"login2.handlebars->7->3"
@@ -14842,7 +14849,7 @@
"zh-chs": "已通过电邮验证,并且需要重置密码。",
"zh-cht": "已通過電郵驗證,並且需要重置密碼。",
"xloc": [
- "default.handlebars->31->1868"
+ "default.handlebars->31->1869"
]
},
{
@@ -14862,7 +14869,7 @@
"zh-chs": "电邮/短信流量",
"zh-cht": "電郵/短信流量",
"xloc": [
- "default.handlebars->31->2228"
+ "default.handlebars->31->2229"
]
},
{
@@ -14908,7 +14915,7 @@
"zh-chs": "启用邀请代码",
"zh-cht": "啟用邀請代碼",
"xloc": [
- "default.handlebars->31->1582"
+ "default.handlebars->31->1583"
]
},
{
@@ -14948,8 +14955,8 @@
"zh-chs": "启用电邮两因素验证。",
"zh-cht": "啟用電郵二因子鑑別。",
"xloc": [
- "default-mobile.handlebars->11->80",
- "default.handlebars->31->1105"
+ "default-mobile.handlebars->11->81",
+ "default.handlebars->31->1106"
]
},
{
@@ -14989,7 +14996,7 @@
"zh-chs": "已启用",
"zh-cht": "已啟用",
"xloc": [
- "default.handlebars->31->2125"
+ "default.handlebars->31->2126"
]
},
{
@@ -15009,7 +15016,7 @@
"zh-chs": "启用电子邮件两因素身份验证",
"zh-cht": "啟用電子郵件兩因素身份驗證",
"xloc": [
- "default.handlebars->31->1746"
+ "default.handlebars->31->1747"
]
},
{
@@ -15037,8 +15044,8 @@
"fr": "Fin",
"nl": "End",
"xloc": [
- "default-mobile.handlebars->11->323",
- "default.handlebars->31->890"
+ "default-mobile.handlebars->11->324",
+ "default.handlebars->31->891"
]
},
{
@@ -15058,7 +15065,7 @@
"zh-chs": "时间结束",
"zh-cht": "時間結束",
"xloc": [
- "default.handlebars->31->2122"
+ "default.handlebars->31->2123"
]
},
{
@@ -15078,7 +15085,7 @@
"zh-chs": "从{1}到{2},{3}秒结束了桌面会话“{0}”",
"zh-cht": "從{1}到{2},{3}秒結束了桌面會話“{0}”",
"xloc": [
- "default.handlebars->31->1669"
+ "default.handlebars->31->1670"
]
},
{
@@ -15098,7 +15105,7 @@
"zh-chs": "从{1}到{2},{3}秒结束了文件管理会话“{0}”",
"zh-cht": "從{1}到{2},{3}秒結束了文件管理會話“{0}”",
"xloc": [
- "default.handlebars->31->1670"
+ "default.handlebars->31->1671"
]
},
{
@@ -15118,7 +15125,7 @@
"zh-chs": "从{1}到{2},{3}秒结束了中继会话“{0}”",
"zh-cht": "從{1}到{2},{3}秒結束了中繼會話“{0}”",
"xloc": [
- "default.handlebars->31->1667"
+ "default.handlebars->31->1668"
]
},
{
@@ -15138,7 +15145,7 @@
"zh-chs": "从{1}到{2},{3}秒结束了终端会话“{0}”",
"zh-cht": "從{1}到{2},{3}秒結束了終端會話“{0}”",
"xloc": [
- "default.handlebars->31->1668"
+ "default.handlebars->31->1669"
]
},
{
@@ -15158,7 +15165,7 @@
"zh-chs": "英文",
"zh-cht": "英文",
"xloc": [
- "default.handlebars->31->1167"
+ "default.handlebars->31->1168"
]
},
{
@@ -15178,7 +15185,7 @@
"zh-chs": "英文(澳洲)",
"zh-cht": "英文(澳洲)",
"xloc": [
- "default.handlebars->31->1168"
+ "default.handlebars->31->1169"
]
},
{
@@ -15198,7 +15205,7 @@
"zh-chs": "英文(伯利茲)",
"zh-cht": "英文(伯利茲)",
"xloc": [
- "default.handlebars->31->1169"
+ "default.handlebars->31->1170"
]
},
{
@@ -15218,7 +15225,7 @@
"zh-chs": "英文(加拿大)",
"zh-cht": "英文(加拿大)",
"xloc": [
- "default.handlebars->31->1170"
+ "default.handlebars->31->1171"
]
},
{
@@ -15238,7 +15245,7 @@
"zh-chs": "英文(爱尔兰)",
"zh-cht": "英文(愛爾蘭)",
"xloc": [
- "default.handlebars->31->1171"
+ "default.handlebars->31->1172"
]
},
{
@@ -15258,7 +15265,7 @@
"zh-chs": "英文(牙买加)",
"zh-cht": "英文(牙買加)",
"xloc": [
- "default.handlebars->31->1172"
+ "default.handlebars->31->1173"
]
},
{
@@ -15278,7 +15285,7 @@
"zh-chs": "英文(纽西兰)",
"zh-cht": "英文(紐西蘭)",
"xloc": [
- "default.handlebars->31->1173"
+ "default.handlebars->31->1174"
]
},
{
@@ -15298,7 +15305,7 @@
"zh-chs": "英文(菲律宾)",
"zh-cht": "英文(菲律賓)",
"xloc": [
- "default.handlebars->31->1174"
+ "default.handlebars->31->1175"
]
},
{
@@ -15318,7 +15325,7 @@
"zh-chs": "英语(南非)",
"zh-cht": "英語(南非)",
"xloc": [
- "default.handlebars->31->1175"
+ "default.handlebars->31->1176"
]
},
{
@@ -15338,7 +15345,7 @@
"zh-chs": "英文(特立尼达和多巴哥)",
"zh-cht": "英文(特立尼達和多巴哥)",
"xloc": [
- "default.handlebars->31->1176"
+ "default.handlebars->31->1177"
]
},
{
@@ -15358,7 +15365,7 @@
"zh-chs": "英文(英国)",
"zh-cht": "英文(英國)",
"xloc": [
- "default.handlebars->31->1177"
+ "default.handlebars->31->1178"
]
},
{
@@ -15378,7 +15385,7 @@
"zh-chs": "美国英文",
"zh-cht": "美國英語",
"xloc": [
- "default.handlebars->31->1178"
+ "default.handlebars->31->1179"
]
},
{
@@ -15398,7 +15405,7 @@
"zh-chs": "英文(津巴布韦)",
"zh-cht": "英文(津巴布韋)",
"xloc": [
- "default.handlebars->31->1179"
+ "default.handlebars->31->1180"
]
},
{
@@ -15418,11 +15425,11 @@
"zh-chs": "输入",
"zh-cht": "輸入",
"xloc": [
- "default-mobile.handlebars->11->318",
- "default.handlebars->31->1361",
+ "default-mobile.handlebars->11->319",
"default.handlebars->31->1362",
- "default.handlebars->31->885",
- "default.handlebars->31->958"
+ "default.handlebars->31->1363",
+ "default.handlebars->31->886",
+ "default.handlebars->31->959"
]
},
{
@@ -15442,7 +15449,7 @@
"zh-chs": "输入管理领域名称的逗号分隔列表。",
"zh-cht": "輸入管理領域名稱的逗號分隔列表。",
"xloc": [
- "default.handlebars->31->1872"
+ "default.handlebars->31->1873"
]
},
{
@@ -15462,7 +15469,7 @@
"zh-chs": "输入IP地址范围以扫描英特尔AMT设备。",
"zh-cht": "輸入IP地址範圍以掃描Intel® AMT裝置。",
"xloc": [
- "default.handlebars->31->324"
+ "default.handlebars->31->325"
]
},
{
@@ -15502,7 +15509,7 @@
"zh-chs": "输入文本,然后单击确定以远程键入它。在继续操作之前,请确保将远程光标放置在正确的位置。",
"zh-cht": "輸入文本,然後單擊確定以遠程鍵入它。在繼續操作之前,請確保將遠程光標放置在正確的位置。",
"xloc": [
- "default.handlebars->31->909"
+ "default.handlebars->31->910"
]
},
{
@@ -15544,7 +15551,7 @@
"zh-chs": "在此处输入保安编码以进行两步登录:",
"zh-cht": "在此處輸入保安編碼以進行兩步登入:",
"xloc": [
- "default.handlebars->31->134"
+ "default.handlebars->31->135"
]
},
{
@@ -15564,7 +15571,7 @@
"zh-chs": "输入支持SMS的电话号码。验证后,该号码可用于登录验证和其他通知。",
"zh-cht": "輸入支持SMS的電話號碼。驗證後,該號碼可用於登入驗證和其他通知。",
"xloc": [
- "default.handlebars->31->1100"
+ "default.handlebars->31->1101"
]
},
{
@@ -15584,7 +15591,7 @@
"zh-chs": "错误,无法添加密钥。",
"zh-cht": "錯誤,無法新增密鑰。",
"xloc": [
- "default.handlebars->31->160"
+ "default.handlebars->31->161"
]
},
{
@@ -15592,8 +15599,8 @@
"nl": "Fout, uitnodigingscode \\\"{0}\\\" al in gebruik.",
"fr": "Erreur, code d'invitation \\\"{0}\\\" déjà utilisé.",
"xloc": [
- "default-mobile.handlebars->11->549",
- "default.handlebars->31->2160"
+ "default-mobile.handlebars->11->550",
+ "default.handlebars->31->2161"
]
},
{
@@ -15601,8 +15608,8 @@
"nl": "Fout, wachtwoord niet gewijzigd.",
"fr": "Erreur, mot de passe non modifié.",
"xloc": [
- "default-mobile.handlebars->11->546",
- "default.handlebars->31->2157"
+ "default-mobile.handlebars->11->547",
+ "default.handlebars->31->2158"
]
},
{
@@ -15610,8 +15617,8 @@
"nl": "Fout, het is niet mogelijk om naar algemeen gebruikt wachtwoord te veranderen.",
"fr": "Erreur, impossible de changer le mot de passe couramment utilisé.",
"xloc": [
- "default-mobile.handlebars->11->545",
- "default.handlebars->31->2156"
+ "default-mobile.handlebars->11->546",
+ "default.handlebars->31->2157"
]
},
{
@@ -15619,8 +15626,8 @@
"nl": "Fout, kan niet wijzigen naar eerder gebruikt wachtwoord.",
"fr": "Erreur, impossible de changer le mot de passe précédemment utilisé.",
"xloc": [
- "default-mobile.handlebars->11->544",
- "default.handlebars->31->2155"
+ "default-mobile.handlebars->11->545",
+ "default.handlebars->31->2156"
]
},
{
@@ -15648,8 +15655,8 @@
"fr": "Echap",
"nl": "Escape",
"xloc": [
- "default-mobile.handlebars->11->319",
- "default.handlebars->31->886"
+ "default-mobile.handlebars->11->320",
+ "default.handlebars->31->887"
]
},
{
@@ -15669,7 +15676,7 @@
"zh-chs": "世界文",
"zh-cht": "世界語",
"xloc": [
- "default.handlebars->31->1180"
+ "default.handlebars->31->1181"
]
},
{
@@ -15689,7 +15696,7 @@
"zh-chs": "爱沙尼亚文",
"zh-cht": "愛沙尼亞語",
"xloc": [
- "default.handlebars->31->1181"
+ "default.handlebars->31->1182"
]
},
{
@@ -15709,7 +15716,7 @@
"zh-chs": "事件详情",
"zh-cht": "事件詳情",
"xloc": [
- "default.handlebars->31->998"
+ "default.handlebars->31->999"
]
},
{
@@ -15729,7 +15736,7 @@
"zh-chs": "事件列表输出",
"zh-cht": "事件列表輸出",
"xloc": [
- "default.handlebars->31->1783"
+ "default.handlebars->31->1784"
]
},
{
@@ -15834,8 +15841,8 @@
"zh-chs": "到期时间",
"zh-cht": "到期時間",
"xloc": [
- "default.handlebars->31->202",
- "default.handlebars->31->770"
+ "default.handlebars->31->203",
+ "default.handlebars->31->771"
]
},
{
@@ -15897,7 +15904,7 @@
"zh-chs": "输出设备信息",
"zh-cht": "輸出裝置訊息",
"xloc": [
- "default.handlebars->31->468"
+ "default.handlebars->31->469"
]
},
{
@@ -15917,7 +15924,7 @@
"zh-chs": "扩充式ASCII",
"zh-cht": "擴充式ASCII",
"xloc": [
- "default.handlebars->31->937",
+ "default.handlebars->31->938",
"terminal.handlebars->3->16"
]
},
@@ -15959,7 +15966,7 @@
"zh-chs": "外部",
"zh-cht": "外部",
"xloc": [
- "default.handlebars->31->2211"
+ "default.handlebars->31->2212"
]
},
{
@@ -15979,7 +15986,7 @@
"zh-chs": "完整网域名称",
"zh-cht": "完整網域名稱",
"xloc": [
- "default.handlebars->31->103"
+ "default.handlebars->31->104"
]
},
{
@@ -15999,7 +16006,7 @@
"zh-chs": "FYRO马其顿语",
"zh-cht": "FYRO馬其頓語",
"xloc": [
- "default.handlebars->31->1231"
+ "default.handlebars->31->1232"
]
},
{
@@ -16019,7 +16026,7 @@
"zh-chs": "法罗语",
"zh-cht": "法羅語",
"xloc": [
- "default.handlebars->31->1182"
+ "default.handlebars->31->1183"
]
},
{
@@ -16039,7 +16046,7 @@
"zh-chs": "失败",
"zh-cht": "失敗",
"xloc": [
- "default.handlebars->31->77"
+ "default.handlebars->31->78"
]
},
{
@@ -16047,8 +16054,8 @@
"nl": "E-mailadres kan niet worden gewijzigd, een ander account gebruikt al: {0}.",
"fr": "Échec de la modification de l'adresse e-mail, un autre compte utilise déjà: {0}.",
"xloc": [
- "default-mobile.handlebars->11->540",
- "default.handlebars->31->2151"
+ "default-mobile.handlebars->11->541",
+ "default.handlebars->31->2152"
]
},
{
@@ -16068,7 +16075,7 @@
"zh-chs": "本地用户拒绝后无法启动远程桌面",
"zh-cht": "本地用戶拒絕後無法啟動遠程桌面",
"xloc": [
- "default.handlebars->31->1692"
+ "default.handlebars->31->1693"
]
},
{
@@ -16088,7 +16095,7 @@
"zh-chs": "本地用户拒绝后无法启动远程文件",
"zh-cht": "本地用戶拒絕後無法啟動遠程文件",
"xloc": [
- "default.handlebars->31->1699"
+ "default.handlebars->31->1700"
]
},
{
@@ -16108,8 +16115,8 @@
"zh-chs": "无法启动远程终端接合{0}({1})",
"zh-cht": "無法啟動遠程終端接合{0}({1})",
"xloc": [
- "default-mobile.handlebars->11->310",
- "default.handlebars->31->865",
+ "default-mobile.handlebars->11->311",
+ "default.handlebars->31->866",
"desktop.handlebars->3->8",
"terminal.handlebars->3->12"
]
@@ -16131,7 +16138,7 @@
"zh-chs": "波斯文(波斯文)",
"zh-cht": "波斯語(波斯語)",
"xloc": [
- "default.handlebars->31->1183"
+ "default.handlebars->31->1184"
]
},
{
@@ -16173,7 +16180,7 @@
"zh-chs": "功能",
"zh-cht": "功能",
"xloc": [
- "default.handlebars->31->1406"
+ "default.handlebars->31->1407"
]
},
{
@@ -16193,7 +16200,7 @@
"zh-chs": "斐济",
"zh-cht": "斐濟",
"xloc": [
- "default.handlebars->31->1184"
+ "default.handlebars->31->1185"
]
},
{
@@ -16233,9 +16240,9 @@
"zh-chs": "档案编辑器",
"zh-cht": "檔案編輯器",
"xloc": [
- "default-mobile.handlebars->11->359",
- "default.handlebars->31->532",
- "default.handlebars->31->969"
+ "default-mobile.handlebars->11->360",
+ "default.handlebars->31->533",
+ "default.handlebars->31->970"
]
},
{
@@ -16271,8 +16278,8 @@
"zh-chs": "档案操作",
"zh-cht": "檔案操作",
"xloc": [
- "default.handlebars->31->949",
- "default.handlebars->31->951"
+ "default.handlebars->31->950",
+ "default.handlebars->31->952"
]
},
{
@@ -16312,7 +16319,7 @@
"zh-chs": "文件系统驱动",
"zh-cht": "FileSystemDriver",
"xloc": [
- "default.handlebars->31->918"
+ "default.handlebars->31->919"
]
},
{
@@ -16332,11 +16339,11 @@
"zh-chs": "档案",
"zh-cht": "檔案",
"xloc": [
- "default-mobile.handlebars->11->181",
- "default-mobile.handlebars->11->278",
- "default.handlebars->31->1496",
- "default.handlebars->31->2110",
- "default.handlebars->31->275",
+ "default-mobile.handlebars->11->182",
+ "default-mobile.handlebars->11->279",
+ "default.handlebars->31->1497",
+ "default.handlebars->31->2111",
+ "default.handlebars->31->276",
"default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevFiles",
"default.handlebars->contextMenu->cxfiles"
]
@@ -16378,10 +16385,10 @@
"zh-chs": "档案通知",
"zh-cht": "檔案通知",
"xloc": [
- "default.handlebars->31->1414",
- "default.handlebars->31->1928",
- "default.handlebars->31->2015",
- "default.handlebars->31->617"
+ "default.handlebars->31->1415",
+ "default.handlebars->31->1929",
+ "default.handlebars->31->2016",
+ "default.handlebars->31->618"
]
},
{
@@ -16401,10 +16408,10 @@
"zh-chs": "档案提示",
"zh-cht": "檔案提示",
"xloc": [
- "default.handlebars->31->1413",
- "default.handlebars->31->1927",
- "default.handlebars->31->2014",
- "default.handlebars->31->616"
+ "default.handlebars->31->1414",
+ "default.handlebars->31->1928",
+ "default.handlebars->31->2015",
+ "default.handlebars->31->617"
]
},
{
@@ -16425,7 +16432,7 @@
"zh-cht": "過濾",
"xloc": [
"default-mobile.handlebars->container->page_content->column_l->p2->xdevicesBar->1",
- "default.handlebars->31->954",
+ "default.handlebars->31->955",
"default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar",
"default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->kvmListToolbar",
"default.handlebars->container->column_l->p4->3->1->0->3->3"
@@ -16468,7 +16475,7 @@
"zh-chs": "查找文件",
"zh-cht": "查找文件",
"xloc": [
- "default.handlebars->31->957"
+ "default.handlebars->31->958"
]
},
{
@@ -16488,7 +16495,7 @@
"zh-chs": "录制会话已完成,{0}秒",
"zh-cht": "錄製會話已完成,{0}秒",
"xloc": [
- "default.handlebars->31->1665"
+ "default.handlebars->31->1666"
]
},
{
@@ -16508,7 +16515,7 @@
"zh-chs": "芬兰",
"zh-cht": "芬蘭",
"xloc": [
- "default.handlebars->31->1185"
+ "default.handlebars->31->1186"
]
},
{
@@ -16594,7 +16601,7 @@
"zh-chs": "对于ACM激活,需要将英特尔®AMT设置为以下受信任的FQDN:",
"zh-cht": "對於ACM激活,需要將英特爾®AMT設置為以下受信任的FQDN:",
"xloc": [
- "default.handlebars->31->315"
+ "default.handlebars->31->316"
]
},
{
@@ -16675,8 +16682,8 @@
"zh-chs": "下次登录时强制重置密码。",
"zh-cht": "下次登入時強制重置密碼。",
"xloc": [
- "default.handlebars->31->1866",
- "default.handlebars->31->2057"
+ "default.handlebars->31->1867",
+ "default.handlebars->31->2058"
]
},
{
@@ -16759,7 +16766,7 @@
"zh-chs": "格式化",
"zh-cht": "格式化",
"xloc": [
- "default.handlebars->31->1774"
+ "default.handlebars->31->1775"
]
},
{
@@ -16800,8 +16807,8 @@
"zh-chs": "自由",
"zh-cht": "自由",
"xloc": [
- "default.handlebars->31->2169",
- "default.handlebars->31->2171"
+ "default.handlebars->31->2170",
+ "default.handlebars->31->2172"
]
},
{
@@ -16842,7 +16849,7 @@
"zh-chs": "法文(比利时)",
"zh-cht": "法語(比利時)",
"xloc": [
- "default.handlebars->31->1187"
+ "default.handlebars->31->1188"
]
},
{
@@ -16862,7 +16869,7 @@
"zh-chs": "法文(加拿大)",
"zh-cht": "法語(加拿大)",
"xloc": [
- "default.handlebars->31->1188"
+ "default.handlebars->31->1189"
]
},
{
@@ -16882,7 +16889,7 @@
"zh-chs": "法文(法国)",
"zh-cht": "法語(法國)",
"xloc": [
- "default.handlebars->31->1189"
+ "default.handlebars->31->1190"
]
},
{
@@ -16902,7 +16909,7 @@
"zh-chs": "法文(卢森堡)",
"zh-cht": "法語(盧森堡)",
"xloc": [
- "default.handlebars->31->1190"
+ "default.handlebars->31->1191"
]
},
{
@@ -16922,7 +16929,7 @@
"zh-chs": "法文(摩纳哥)",
"zh-cht": "法語(摩納哥)",
"xloc": [
- "default.handlebars->31->1191"
+ "default.handlebars->31->1192"
]
},
{
@@ -16942,7 +16949,7 @@
"zh-chs": "法文(标准)",
"zh-cht": "法語(標準)",
"xloc": [
- "default.handlebars->31->1186"
+ "default.handlebars->31->1187"
]
},
{
@@ -16962,7 +16969,7 @@
"zh-chs": "法文(瑞士)",
"zh-cht": "法語(瑞士)",
"xloc": [
- "default.handlebars->31->1192"
+ "default.handlebars->31->1193"
]
},
{
@@ -16982,7 +16989,7 @@
"zh-chs": "弗里斯兰文",
"zh-cht": "弗里斯蘭語",
"xloc": [
- "default.handlebars->31->1193"
+ "default.handlebars->31->1194"
]
},
{
@@ -17002,7 +17009,7 @@
"zh-chs": "弗留利",
"zh-cht": "弗留利",
"xloc": [
- "default.handlebars->31->1194"
+ "default.handlebars->31->1195"
]
},
{
@@ -17022,13 +17029,13 @@
"zh-chs": "完整管理员",
"zh-cht": "完整管理員",
"xloc": [
- "default-mobile.handlebars->11->115",
- "default-mobile.handlebars->11->462",
- "default-mobile.handlebars->11->471",
- "default-mobile.handlebars->11->491",
- "default.handlebars->31->1368",
- "default.handlebars->31->1515",
- "default.handlebars->31->1878"
+ "default-mobile.handlebars->11->116",
+ "default-mobile.handlebars->11->463",
+ "default-mobile.handlebars->11->472",
+ "default-mobile.handlebars->11->492",
+ "default.handlebars->31->1369",
+ "default.handlebars->31->1516",
+ "default.handlebars->31->1879"
]
},
{
@@ -17048,7 +17055,7 @@
"zh-chs": "完整管理员(保留所有权利)",
"zh-cht": "完整管理員(保留所有權利)",
"xloc": [
- "default.handlebars->31->1551"
+ "default.handlebars->31->1552"
]
},
{
@@ -17085,7 +17092,7 @@
"zh-chs": "完整设备权限",
"zh-cht": "完整裝置權限",
"xloc": [
- "default.handlebars->31->699"
+ "default.handlebars->31->700"
]
},
{
@@ -17105,7 +17112,7 @@
"zh-chs": "全部权限",
"zh-cht": "全部權限",
"xloc": [
- "default.handlebars->31->717"
+ "default.handlebars->31->718"
]
},
{
@@ -17167,7 +17174,7 @@
"zh-chs": "完整管理员",
"zh-cht": "完整管理員",
"xloc": [
- "default.handlebars->31->1976"
+ "default.handlebars->31->1977"
]
},
{
@@ -17187,8 +17194,8 @@
"zh-chs": "全自动的",
"zh-cht": "全自動的",
"xloc": [
- "default.handlebars->31->1431",
- "default.handlebars->31->1454"
+ "default.handlebars->31->1432",
+ "default.handlebars->31->1455"
]
},
{
@@ -17208,8 +17215,8 @@
"zh-chs": "GPU",
"zh-cht": "GPU",
"xloc": [
- "default-mobile.handlebars->11->438",
- "default.handlebars->31->1066"
+ "default-mobile.handlebars->11->439",
+ "default.handlebars->31->1067"
]
},
{
@@ -17229,7 +17236,7 @@
"zh-chs": "盖尔文(爱尔兰)",
"zh-cht": "蓋爾語(愛爾蘭)",
"xloc": [
- "default.handlebars->31->1196"
+ "default.handlebars->31->1197"
]
},
{
@@ -17249,7 +17256,7 @@
"zh-chs": "盖尔文(苏格兰文)",
"zh-cht": "蓋爾語(蘇格蘭語)",
"xloc": [
- "default.handlebars->31->1195"
+ "default.handlebars->31->1196"
]
},
{
@@ -17269,7 +17276,7 @@
"zh-chs": "加拉契文",
"zh-cht": "加拉契語",
"xloc": [
- "default.handlebars->31->1197"
+ "default.handlebars->31->1198"
]
},
{
@@ -17289,7 +17296,7 @@
"zh-chs": "网关MAC",
"zh-cht": "閘道MAC",
"xloc": [
- "default.handlebars->31->98"
+ "default.handlebars->31->99"
]
},
{
@@ -17309,7 +17316,7 @@
"zh-chs": "一般",
"zh-cht": "一般",
"xloc": [
- "default-mobile.handlebars->11->276",
+ "default-mobile.handlebars->11->277",
"default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDev",
"default.handlebars->container->topbar->1->1->MeshSubMenuSpan->MeshSubMenu->1->0->MeshGeneral",
"default.handlebars->container->topbar->1->1->ServerSubMenuSpan->ServerSubMenu->1->0->ServerGeneral",
@@ -17355,7 +17362,7 @@
"zh-chs": "一般信息",
"zh-cht": "一般訊息",
"xloc": [
- "default.handlebars->31->539"
+ "default.handlebars->31->540"
]
},
{
@@ -17375,7 +17382,7 @@
"zh-chs": "生成新保安编码",
"zh-cht": "產生新保安編碼",
"xloc": [
- "default.handlebars->31->148"
+ "default.handlebars->31->149"
]
},
{
@@ -17395,7 +17402,7 @@
"zh-chs": "格鲁吉亚文",
"zh-cht": "格魯吉亞文",
"xloc": [
- "default.handlebars->31->1198"
+ "default.handlebars->31->1199"
]
},
{
@@ -17415,7 +17422,7 @@
"zh-chs": "德文(奥地利)",
"zh-cht": "德語(奧地利)",
"xloc": [
- "default.handlebars->31->1200"
+ "default.handlebars->31->1201"
]
},
{
@@ -17435,7 +17442,7 @@
"zh-chs": "德文(德国)",
"zh-cht": "德文(德國)",
"xloc": [
- "default.handlebars->31->1201"
+ "default.handlebars->31->1202"
]
},
{
@@ -17455,7 +17462,7 @@
"zh-chs": "德文(列支敦士登)",
"zh-cht": "德文(列支敦士登)",
"xloc": [
- "default.handlebars->31->1202"
+ "default.handlebars->31->1203"
]
},
{
@@ -17475,7 +17482,7 @@
"zh-chs": "德文(卢森堡)",
"zh-cht": "德語(盧森堡)",
"xloc": [
- "default.handlebars->31->1203"
+ "default.handlebars->31->1204"
]
},
{
@@ -17495,7 +17502,7 @@
"zh-chs": "德文(标准)",
"zh-cht": "德語(標準)",
"xloc": [
- "default.handlebars->31->1199"
+ "default.handlebars->31->1200"
]
},
{
@@ -17515,7 +17522,7 @@
"zh-chs": "德文(瑞士)",
"zh-cht": "德文(瑞士)",
"xloc": [
- "default.handlebars->31->1204"
+ "default.handlebars->31->1205"
]
},
{
@@ -17535,7 +17542,7 @@
"zh-chs": "获取此设备的MQTT登录凭证。",
"zh-cht": "獲取此裝置的MQTT登入憑證。",
"xloc": [
- "default.handlebars->31->668"
+ "default.handlebars->31->669"
]
},
{
@@ -17576,7 +17583,7 @@
"zh-chs": "正在获取剪贴板内容,{0}个字节",
"zh-cht": "正在獲取剪貼板內容,{0}個字節",
"xloc": [
- "default.handlebars->31->1679"
+ "default.handlebars->31->1680"
]
},
{
@@ -17638,7 +17645,7 @@
"zh-chs": "好",
"zh-cht": "好",
"xloc": [
- "default.handlebars->31->1364"
+ "default.handlebars->31->1365"
]
},
{
@@ -17683,9 +17690,9 @@
"zh-chs": "Google云端硬盘备份",
"zh-cht": "Google雲端硬盤備份",
"xloc": [
- "default.handlebars->31->1375",
- "default.handlebars->31->1378",
- "default.handlebars->31->219"
+ "default.handlebars->31->1376",
+ "default.handlebars->31->1379",
+ "default.handlebars->31->220"
]
},
{
@@ -17705,7 +17712,7 @@
"zh-chs": "Google云端硬盘控制台",
"zh-cht": "Google雲端硬盤控制台",
"xloc": [
- "default.handlebars->31->1372"
+ "default.handlebars->31->1373"
]
},
{
@@ -17745,7 +17752,7 @@
"zh-chs": "Google云端硬盘备份当前处于活动状态。",
"zh-cht": "Google雲端硬盤備份當前處於活動狀態。",
"xloc": [
- "default.handlebars->31->1376"
+ "default.handlebars->31->1377"
]
},
{
@@ -17765,7 +17772,7 @@
"zh-chs": "希腊文",
"zh-cht": "希臘文",
"xloc": [
- "default.handlebars->31->1205"
+ "default.handlebars->31->1206"
]
},
{
@@ -17785,8 +17792,8 @@
"zh-chs": "组",
"zh-cht": "群",
"xloc": [
- "default-mobile.handlebars->11->228",
- "default.handlebars->31->567",
+ "default-mobile.handlebars->11->229",
+ "default.handlebars->31->568",
"default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->1"
]
},
@@ -17807,9 +17814,9 @@
"zh-chs": "集体指令",
"zh-cht": "集體指令",
"xloc": [
- "default.handlebars->31->1822",
- "default.handlebars->31->1901",
- "default.handlebars->31->469",
+ "default.handlebars->31->1823",
+ "default.handlebars->31->1902",
+ "default.handlebars->31->470",
"default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar",
"default.handlebars->container->column_l->p4->3->1->0->3->3",
"default.handlebars->container->column_l->p50->3->1->0->3->3"
@@ -17832,7 +17839,7 @@
"zh-chs": "通过...分组",
"zh-cht": "通過...分群",
"xloc": [
- "default.handlebars->31->1770"
+ "default.handlebars->31->1771"
]
},
{
@@ -17852,7 +17859,7 @@
"zh-chs": "组标识符",
"zh-cht": "群標識符",
"xloc": [
- "default.handlebars->31->1918"
+ "default.handlebars->31->1919"
]
},
{
@@ -17872,7 +17879,7 @@
"zh-chs": "群组成员",
"zh-cht": "群組成員",
"xloc": [
- "default.handlebars->31->1939"
+ "default.handlebars->31->1940"
]
},
{
@@ -17892,7 +17899,7 @@
"zh-chs": "用户{0}的群组权限。",
"zh-cht": "用戶{0}的群組權限。",
"xloc": [
- "default.handlebars->31->1514"
+ "default.handlebars->31->1515"
]
},
{
@@ -17912,7 +17919,7 @@
"zh-chs": "{0}的群组权限。",
"zh-cht": "{0}的群組權限。",
"xloc": [
- "default.handlebars->31->1513"
+ "default.handlebars->31->1514"
]
},
{
@@ -17952,7 +17959,7 @@
"zh-chs": "组1,组2,组3",
"zh-cht": "群1,群2,群3",
"xloc": [
- "default-mobile.handlebars->11->306"
+ "default-mobile.handlebars->11->307"
]
},
{
@@ -17992,8 +17999,8 @@
"zh-chs": "访客姓名",
"zh-cht": "來賓姓名",
"xloc": [
- "default.handlebars->31->197",
- "default.handlebars->31->747"
+ "default.handlebars->31->198",
+ "default.handlebars->31->748"
]
},
{
@@ -18013,7 +18020,7 @@
"zh-chs": "古久拉提",
"zh-cht": "古久拉提",
"xloc": [
- "default.handlebars->31->1206"
+ "default.handlebars->31->1207"
]
},
{
@@ -18056,7 +18063,7 @@
"zh-chs": "海地文",
"zh-cht": "海地文",
"xloc": [
- "default.handlebars->31->1207"
+ "default.handlebars->31->1208"
]
},
{
@@ -18096,7 +18103,7 @@
"zh-chs": "强行断开代理",
"zh-cht": "強行斷開代理",
"xloc": [
- "default.handlebars->31->1095"
+ "default.handlebars->31->1096"
]
},
{
@@ -18116,7 +18123,7 @@
"zh-chs": "堆总数",
"zh-cht": "堆總數",
"xloc": [
- "default.handlebars->31->2213"
+ "default.handlebars->31->2214"
]
},
{
@@ -18136,7 +18143,7 @@
"zh-chs": "堆使用",
"zh-cht": "堆使用",
"xloc": [
- "default.handlebars->31->2212"
+ "default.handlebars->31->2213"
]
},
{
@@ -18156,7 +18163,7 @@
"zh-chs": "希伯来文",
"zh-cht": "希伯來文",
"xloc": [
- "default.handlebars->31->1208"
+ "default.handlebars->31->1209"
]
},
{
@@ -18217,7 +18224,7 @@
"zh-chs": "已请求帮助,用户:{0},详细信息:{1}",
"zh-cht": "已請求幫助,用戶:{0},詳細信息:{1}",
"xloc": [
- "default.handlebars->31->1756"
+ "default.handlebars->31->1757"
]
},
{
@@ -18237,8 +18244,8 @@
"zh-chs": "帮助请求",
"zh-cht": "幫助請求",
"xloc": [
- "default-mobile.handlebars->11->171",
- "default.handlebars->31->264"
+ "default-mobile.handlebars->11->172",
+ "default.handlebars->31->265"
]
},
{
@@ -18258,7 +18265,7 @@
"zh-chs": "从{0}请求的帮助:{1}",
"zh-cht": "從{0}請求的幫助:{1}",
"xloc": [
- "default.handlebars->31->170"
+ "default.handlebars->31->171"
]
},
{
@@ -18278,7 +18285,7 @@
"zh-chs": "帮助翻译MeshCentral",
"zh-cht": "幫助翻譯MeshCentral",
"xloc": [
- "default.handlebars->31->1323"
+ "default.handlebars->31->1324"
]
},
{
@@ -18359,9 +18366,9 @@
"zh-chs": "休眠",
"zh-cht": "冬眠",
"xloc": [
- "default-mobile.handlebars->11->196",
- "default-mobile.handlebars->11->203",
- "default.handlebars->31->429",
+ "default-mobile.handlebars->11->197",
+ "default-mobile.handlebars->11->204",
+ "default.handlebars->31->430",
"default.handlebars->31->5"
]
},
@@ -18382,7 +18389,7 @@
"zh-chs": "印地文",
"zh-cht": "印地文",
"xloc": [
- "default.handlebars->31->1209"
+ "default.handlebars->31->1210"
]
},
{
@@ -18419,8 +18426,8 @@
"zh-chs": "保存1个条目进行复制",
"zh-cht": "保存1個項目進行複製",
"xloc": [
- "default-mobile.handlebars->11->368",
- "default.handlebars->31->979"
+ "default-mobile.handlebars->11->369",
+ "default.handlebars->31->980"
]
},
{
@@ -18440,8 +18447,8 @@
"zh-chs": "保存1个项目进行移动",
"zh-cht": "保存1個項目進行移動",
"xloc": [
- "default-mobile.handlebars->11->372",
- "default.handlebars->31->983"
+ "default-mobile.handlebars->11->373",
+ "default.handlebars->31->984"
]
},
{
@@ -18461,8 +18468,8 @@
"zh-chs": "保存{0}个条目进行复制",
"zh-cht": "保留{0}個項目進行複製",
"xloc": [
- "default-mobile.handlebars->11->366",
- "default.handlebars->31->977"
+ "default-mobile.handlebars->11->367",
+ "default.handlebars->31->978"
]
},
{
@@ -18482,8 +18489,8 @@
"zh-chs": "保存{0}个条目以进行移动",
"zh-cht": "保存{0}個項目以進行移動",
"xloc": [
- "default-mobile.handlebars->11->370",
- "default.handlebars->31->981"
+ "default-mobile.handlebars->11->371",
+ "default.handlebars->31->982"
]
},
{
@@ -18503,8 +18510,8 @@
"zh-chs": "保存{0}条目{1}给{2}",
"zh-cht": "保存{0}項目{1}給{2}",
"xloc": [
- "default-mobile.handlebars->11->139",
- "default.handlebars->31->1652"
+ "default-mobile.handlebars->11->140",
+ "default.handlebars->31->1653"
]
},
{
@@ -18512,8 +18519,8 @@
"fr": "Home",
"nl": "Home",
"xloc": [
- "default-mobile.handlebars->11->322",
- "default.handlebars->31->889"
+ "default-mobile.handlebars->11->323",
+ "default.handlebars->31->890"
]
},
{
@@ -18533,15 +18540,15 @@
"zh-chs": "主机名",
"zh-cht": "主機名",
"xloc": [
- "default-mobile.handlebars->11->230",
"default-mobile.handlebars->11->231",
- "default-mobile.handlebars->11->233",
- "default-mobile.handlebars->11->303",
- "default-mobile.handlebars->11->397",
- "default.handlebars->31->1015",
- "default.handlebars->31->305",
- "default.handlebars->31->572",
- "default.handlebars->31->858"
+ "default-mobile.handlebars->11->232",
+ "default-mobile.handlebars->11->234",
+ "default-mobile.handlebars->11->304",
+ "default-mobile.handlebars->11->398",
+ "default.handlebars->31->1016",
+ "default.handlebars->31->306",
+ "default.handlebars->31->573",
+ "default.handlebars->31->859"
]
},
{
@@ -18561,7 +18568,7 @@
"zh-chs": "主机名同步",
"zh-cht": "主機名同步",
"xloc": [
- "default.handlebars->31->1403"
+ "default.handlebars->31->1404"
]
},
{
@@ -18581,7 +18588,7 @@
"zh-chs": "匈牙利文",
"zh-cht": "匈牙利文",
"xloc": [
- "default.handlebars->31->1210"
+ "default.handlebars->31->1211"
]
},
{
@@ -18601,8 +18608,8 @@
"zh-chs": "IP范围",
"zh-cht": "IP範圍",
"xloc": [
- "default.handlebars->31->325",
- "default.handlebars->31->327"
+ "default.handlebars->31->326",
+ "default.handlebars->31->328"
]
},
{
@@ -18644,11 +18651,11 @@
"zh-chs": "IP:{0}",
"zh-cht": "IP:{0}",
"xloc": [
- "default-mobile.handlebars->11->407",
- "default-mobile.handlebars->11->411",
- "default.handlebars->31->1025",
- "default.handlebars->31->1035",
- "default.handlebars->31->1039"
+ "default-mobile.handlebars->11->408",
+ "default-mobile.handlebars->11->412",
+ "default.handlebars->31->1026",
+ "default.handlebars->31->1036",
+ "default.handlebars->31->1040"
]
},
{
@@ -18668,11 +18675,11 @@
"zh-chs": "IP:{0},掩码:{1},网关:{2}",
"zh-cht": "IP:{0},遮罩:{1},閘道:{2}",
"xloc": [
- "default-mobile.handlebars->11->405",
- "default-mobile.handlebars->11->409",
- "default.handlebars->31->1023",
- "default.handlebars->31->1033",
- "default.handlebars->31->1037"
+ "default-mobile.handlebars->11->406",
+ "default-mobile.handlebars->11->410",
+ "default.handlebars->31->1024",
+ "default.handlebars->31->1034",
+ "default.handlebars->31->1038"
]
},
{
@@ -18692,12 +18699,12 @@
"zh-chs": "IPv4层",
"zh-cht": "IPv4層",
"xloc": [
- "default-mobile.handlebars->11->404",
- "default-mobile.handlebars->11->406",
- "default.handlebars->31->1022",
- "default.handlebars->31->1024",
- "default.handlebars->31->1032",
- "default.handlebars->31->1034"
+ "default-mobile.handlebars->11->405",
+ "default-mobile.handlebars->11->407",
+ "default.handlebars->31->1023",
+ "default.handlebars->31->1025",
+ "default.handlebars->31->1033",
+ "default.handlebars->31->1035"
]
},
{
@@ -18717,8 +18724,8 @@
"zh-chs": "IPv4地址",
"zh-cht": "IPv4地址",
"xloc": [
- "default.handlebars->31->110",
- "default.handlebars->31->92"
+ "default.handlebars->31->111",
+ "default.handlebars->31->93"
]
},
{
@@ -18738,8 +18745,8 @@
"zh-chs": "IPv4网关",
"zh-cht": "IPv4閘道",
"xloc": [
- "default.handlebars->31->114",
- "default.handlebars->31->96"
+ "default.handlebars->31->115",
+ "default.handlebars->31->97"
]
},
{
@@ -18759,8 +18766,8 @@
"zh-chs": "IPv4掩码",
"zh-cht": "IPv4遮罩",
"xloc": [
- "default.handlebars->31->112",
- "default.handlebars->31->94"
+ "default.handlebars->31->113",
+ "default.handlebars->31->95"
]
},
{
@@ -18780,10 +18787,10 @@
"zh-chs": "IPv6层",
"zh-cht": "IPv6層",
"xloc": [
- "default-mobile.handlebars->11->408",
- "default-mobile.handlebars->11->410",
- "default.handlebars->31->1036",
- "default.handlebars->31->1038"
+ "default-mobile.handlebars->11->409",
+ "default-mobile.handlebars->11->411",
+ "default.handlebars->31->1037",
+ "default.handlebars->31->1039"
]
},
{
@@ -18803,7 +18810,7 @@
"zh-chs": "IPv6地址",
"zh-cht": "IPv6地址",
"xloc": [
- "default.handlebars->31->104"
+ "default.handlebars->31->105"
]
},
{
@@ -18823,7 +18830,7 @@
"zh-chs": "IPv6网关",
"zh-cht": "IPv6閘道",
"xloc": [
- "default.handlebars->31->108"
+ "default.handlebars->31->109"
]
},
{
@@ -18843,7 +18850,7 @@
"zh-chs": "IPv6掩码",
"zh-cht": "IPv6遮罩",
"xloc": [
- "default.handlebars->31->106"
+ "default.handlebars->31->107"
]
},
{
@@ -18863,7 +18870,7 @@
"zh-chs": "冰岛文",
"zh-cht": "冰島文",
"xloc": [
- "default.handlebars->31->1211"
+ "default.handlebars->31->1212"
]
},
{
@@ -18883,8 +18890,8 @@
"zh-chs": "图标选择",
"zh-cht": "圖符選擇",
"xloc": [
- "default-mobile.handlebars->11->301",
- "default.handlebars->31->856"
+ "default-mobile.handlebars->11->302",
+ "default.handlebars->31->857"
]
},
{
@@ -18904,10 +18911,10 @@
"zh-chs": "识别码",
"zh-cht": "識別符",
"xloc": [
- "default-mobile.handlebars->11->396",
- "default-mobile.handlebars->11->436",
- "default.handlebars->31->1014",
- "default.handlebars->31->1064"
+ "default-mobile.handlebars->11->397",
+ "default-mobile.handlebars->11->437",
+ "default.handlebars->31->1015",
+ "default.handlebars->31->1065"
]
},
{
@@ -18927,7 +18934,7 @@
"zh-chs": "如果在CCM中,请重新激活英特尔®AMT",
"zh-cht": "如果在CCM中,請重新激活英特爾®AMT",
"xloc": [
- "default.handlebars->31->1468"
+ "default.handlebars->31->1469"
]
},
{
@@ -19073,10 +19080,10 @@
"zh-chs": "个别装置",
"zh-cht": "個別裝置",
"xloc": [
- "default-mobile.handlebars->11->158",
- "default.handlebars->31->222",
+ "default-mobile.handlebars->11->159",
"default.handlebars->31->223",
- "default.handlebars->31->224"
+ "default.handlebars->31->224",
+ "default.handlebars->31->225"
]
},
{
@@ -19096,7 +19103,7 @@
"zh-chs": "印度尼西亚文",
"zh-cht": "印度尼西亞文",
"xloc": [
- "default.handlebars->31->1212"
+ "default.handlebars->31->1213"
]
},
{
@@ -19166,8 +19173,8 @@
"fr": "Insérer",
"nl": "Insert",
"xloc": [
- "default-mobile.handlebars->11->320",
- "default.handlebars->31->887"
+ "default-mobile.handlebars->11->321",
+ "default.handlebars->31->888"
]
},
{
@@ -19207,7 +19214,7 @@
"zh-chs": "安装 Google Authenticator或兼容的应用软件并扫描条码,使用此连结或输入密码。然后,在下面输入当前的6位数保安编码以激活两步登录。",
"zh-cht": "安裝 Google Authenticator或兼容的應用軟體並掃描條碼,使用此鏈結或輸入密碼。然後,在下面輸入當前的6位數保安編碼以啟動兩步登入。",
"xloc": [
- "default.handlebars->31->133"
+ "default.handlebars->31->134"
]
},
{
@@ -19227,7 +19234,7 @@
"zh-chs": "安装 Google Authenticator或兼容的应用软件,请使用此连结或在下面输入密码。然后,输入当前的6位数保安编码以激活两步登录。",
"zh-cht": "安裝 Google Authenticator或兼容的應用軟體,請使用此鏈結或在下面輸入密碼。然後,輸入當前的6位數保安編碼以啟動兩步登入。",
"xloc": [
- "default-mobile.handlebars->11->58"
+ "default-mobile.handlebars->11->59"
]
},
{
@@ -19281,11 +19288,11 @@
"zh-chs": "安装类型",
"zh-cht": "安裝方式",
"xloc": [
- "default.handlebars->31->1584",
- "default.handlebars->31->1591",
- "default.handlebars->31->351",
- "default.handlebars->31->365",
- "default.handlebars->31->380"
+ "default.handlebars->31->1585",
+ "default.handlebars->31->1592",
+ "default.handlebars->31->352",
+ "default.handlebars->31->366",
+ "default.handlebars->31->381"
]
},
{
@@ -19305,7 +19312,7 @@
"zh-chs": "英特尔(F10 = ESC + [OM)",
"zh-cht": "Intel(F10 = ESC + [OM)",
"xloc": [
- "default.handlebars->31->939",
+ "default.handlebars->31->940",
"default.handlebars->container->column_l->p12->termTable->1->1->6->1->1->terminalSettingsButtons",
"terminal.handlebars->3->18",
"terminal.handlebars->p12->9->1->terminalSettingsButtons"
@@ -19328,7 +19335,7 @@
"zh-chs": "英特尔AMT",
"zh-cht": "英特爾AMT",
"xloc": [
- "default.handlebars->31->2209"
+ "default.handlebars->31->2210"
]
},
{
@@ -19336,7 +19343,7 @@
"fr": "Gestionnaire Intel AMT",
"nl": "Intel AMT beheerder",
"xloc": [
- "default.handlebars->31->2235"
+ "default.handlebars->31->2236"
]
},
{
@@ -19356,7 +19363,7 @@
"zh-chs": "英特尔ASCII",
"zh-cht": "Intel ASCII",
"xloc": [
- "default.handlebars->31->938",
+ "default.handlebars->31->939",
"terminal.handlebars->3->17"
]
},
@@ -19377,17 +19384,17 @@
"zh-chs": "英特尔®AMT",
"zh-cht": "Intel® AMT",
"xloc": [
- "default-mobile.handlebars->11->215",
- "default-mobile.handlebars->11->257",
- "default-mobile.handlebars->11->262",
- "default.handlebars->31->1421",
- "default.handlebars->31->1432",
- "default.handlebars->31->1603",
- "default.handlebars->31->1611",
- "default.handlebars->31->2234",
- "default.handlebars->31->542",
- "default.handlebars->31->600",
- "default.handlebars->31->627"
+ "default-mobile.handlebars->11->216",
+ "default-mobile.handlebars->11->258",
+ "default-mobile.handlebars->11->263",
+ "default.handlebars->31->1422",
+ "default.handlebars->31->1433",
+ "default.handlebars->31->1604",
+ "default.handlebars->31->1612",
+ "default.handlebars->31->2235",
+ "default.handlebars->31->543",
+ "default.handlebars->31->601",
+ "default.handlebars->31->628"
]
},
{
@@ -19407,7 +19414,7 @@
"zh-chs": "英特尔®AMT ACM",
"zh-cht": "英特爾®AMT ACM",
"xloc": [
- "default.handlebars->31->323"
+ "default.handlebars->31->324"
]
},
{
@@ -19427,8 +19434,8 @@
"zh-chs": "英特尔®AMT CIRA",
"zh-cht": "Intel® AMT CIRA",
"xloc": [
- "default-mobile.handlebars->11->261",
- "default.handlebars->31->625"
+ "default-mobile.handlebars->11->262",
+ "default.handlebars->31->626"
]
},
{
@@ -19448,7 +19455,7 @@
"zh-chs": "英特尔AMT CIRA已连接",
"zh-cht": "Intel® AMT CIRA已連接",
"xloc": [
- "default.handlebars->31->175"
+ "default.handlebars->31->176"
]
},
{
@@ -19468,7 +19475,7 @@
"zh-chs": "英特尔AMT CIRA已断开连接",
"zh-cht": "Intel® AMT CIRA已斷開連接",
"xloc": [
- "default.handlebars->31->179"
+ "default.handlebars->31->180"
]
},
{
@@ -19488,9 +19495,9 @@
"zh-chs": "英特尔®AMT CIRA已连接并可以使用。",
"zh-cht": "Intel® AMT CIRA已連接並可以使用。",
"xloc": [
- "default.handlebars->31->254",
- "default.handlebars->31->443",
- "default.handlebars->31->624"
+ "default.handlebars->31->255",
+ "default.handlebars->31->444",
+ "default.handlebars->31->625"
]
},
{
@@ -19554,7 +19561,7 @@
"zh-chs": "英特尔®AMT政策",
"zh-cht": "Intel® AMT政策",
"xloc": [
- "default.handlebars->31->1455"
+ "default.handlebars->31->1456"
]
},
{
@@ -19574,7 +19581,7 @@
"zh-chs": "英特尔®AMT重定向",
"zh-cht": "Intel® AMT重定向",
"xloc": [
- "default.handlebars->31->2112",
+ "default.handlebars->31->2113",
"player.handlebars->3->14"
]
},
@@ -19595,7 +19602,7 @@
"zh-chs": "英特尔®AMT标签",
"zh-cht": "Intel® AMT標籤",
"xloc": [
- "default.handlebars->31->604"
+ "default.handlebars->31->605"
]
},
{
@@ -19615,7 +19622,7 @@
"zh-chs": "英特尔®AMT WSMAN",
"zh-cht": "Intle® AMT WSMAN",
"xloc": [
- "default.handlebars->31->2111",
+ "default.handlebars->31->2112",
"player.handlebars->3->13"
]
},
@@ -19653,9 +19660,9 @@
"zh-chs": "英特尔®AMT已连接",
"zh-cht": "Intel ®AMT已連接",
"xloc": [
- "default-mobile.handlebars->11->272",
- "default.handlebars->31->674",
- "default.handlebars->31->675"
+ "default-mobile.handlebars->11->273",
+ "default.handlebars->31->675",
+ "default.handlebars->31->676"
]
},
{
@@ -19675,8 +19682,8 @@
"zh-chs": "英特尔®AMT桌面和串行事件。",
"zh-cht": "Intel® AMT桌面和串行事件。",
"xloc": [
- "default.handlebars->31->1329",
- "default.handlebars->31->1599"
+ "default.handlebars->31->1330",
+ "default.handlebars->31->1600"
]
},
{
@@ -19696,10 +19703,10 @@
"zh-chs": "检测到英特尔®AMT",
"zh-cht": "檢測到Intel® AMT",
"xloc": [
- "default-mobile.handlebars->11->273",
- "default.handlebars->31->174",
- "default.handlebars->31->676",
- "default.handlebars->31->677"
+ "default-mobile.handlebars->11->274",
+ "default.handlebars->31->175",
+ "default.handlebars->31->677",
+ "default.handlebars->31->678"
]
},
{
@@ -19719,7 +19726,7 @@
"zh-chs": "在Intel® AMT尔AMT",
"zh-cht": "在管理控制模式下啟動了Intel® AMT",
"xloc": [
- "default.handlebars->31->586"
+ "default.handlebars->31->587"
]
},
{
@@ -19739,7 +19746,7 @@
"zh-chs": "英特尔AMT在客户端控制模式下被激活",
"zh-cht": "Intel® AMT在客户端控制模式下被启动",
"xloc": [
- "default.handlebars->31->584"
+ "default.handlebars->31->585"
]
},
{
@@ -19759,7 +19766,7 @@
"zh-chs": "英特尔®AMT可路由并可以使用。",
"zh-cht": "Intel® AMT可路由並可以使用。",
"xloc": [
- "default.handlebars->31->626"
+ "default.handlebars->31->627"
]
},
{
@@ -19779,8 +19786,8 @@
"zh-chs": "英特尔®AMT是可路由的。",
"zh-cht": "Intel® AMT是可路由的。",
"xloc": [
- "default.handlebars->31->256",
- "default.handlebars->31->445"
+ "default.handlebars->31->257",
+ "default.handlebars->31->446"
]
},
{
@@ -19800,8 +19807,8 @@
"zh-chs": "英特尔AMT已设置TLS网络安全",
"zh-cht": "Intel® AMT已設置TLS網絡安全性",
"xloc": [
- "default-mobile.handlebars->11->247",
- "default.handlebars->31->588"
+ "default-mobile.handlebars->11->248",
+ "default.handlebars->31->589"
]
},
{
@@ -19821,7 +19828,7 @@
"zh-chs": "未检测到英特尔AMT",
"zh-cht": "未檢測到Intel® AMT",
"xloc": [
- "default.handlebars->31->178"
+ "default.handlebars->31->179"
]
},
{
@@ -19841,7 +19848,7 @@
"zh-chs": "仅限英特尔®AMT",
"zh-cht": "僅限Intel® AMT",
"xloc": [
- "default-mobile.handlebars->11->110"
+ "default-mobile.handlebars->11->111"
]
},
{
@@ -19861,9 +19868,9 @@
"zh-chs": "仅限英特尔®AMT,无代理",
"zh-cht": "僅限Intel® AMT,無代理",
"xloc": [
- "default-mobile.handlebars->11->453",
- "default.handlebars->31->1358",
- "default.handlebars->31->1393"
+ "default-mobile.handlebars->11->454",
+ "default.handlebars->31->1359",
+ "default.handlebars->31->1394"
]
},
{
@@ -19883,7 +19890,7 @@
"zh-chs": "英特尔®AMT设置",
"zh-cht": "英特爾®AMT設置",
"xloc": [
- "default.handlebars->31->316"
+ "default.handlebars->31->317"
]
},
{
@@ -19920,7 +19927,7 @@
"zh-chs": "英特尔®主动管理技术",
"zh-cht": "Intel® Active Management Technology",
"xloc": [
- "default.handlebars->31->599"
+ "default.handlebars->31->600"
]
},
{
@@ -19940,8 +19947,8 @@
"zh-chs": "英特尔®主动管理技术(英特尔®AMT)",
"zh-cht": "Intel ® Active Management Technology(Intel® AMT)",
"xloc": [
- "default-mobile.handlebars->11->428",
- "default.handlebars->31->1056"
+ "default-mobile.handlebars->11->429",
+ "default.handlebars->31->1057"
]
},
{
@@ -19961,8 +19968,8 @@
"zh-chs": "英特尔®ME",
"zh-cht": "Intel® ME",
"xloc": [
- "default-mobile.handlebars->11->256",
- "default.handlebars->31->598"
+ "default-mobile.handlebars->11->257",
+ "default.handlebars->31->599"
]
},
{
@@ -19982,7 +19989,7 @@
"zh-chs": "英特尔®可管理性引擎",
"zh-cht": "Intel® Management Engine",
"xloc": [
- "default.handlebars->31->597"
+ "default.handlebars->31->598"
]
},
{
@@ -20002,8 +20009,8 @@
"zh-chs": "英特尔®SM",
"zh-cht": "Intel® M",
"xloc": [
- "default-mobile.handlebars->11->258",
- "default.handlebars->31->602"
+ "default-mobile.handlebars->11->259",
+ "default.handlebars->31->603"
]
},
{
@@ -20023,7 +20030,7 @@
"zh-chs": "英特尔®标准可管理性",
"zh-cht": "Intel® Standard Manageability",
"xloc": [
- "default.handlebars->31->601"
+ "default.handlebars->31->602"
]
},
{
@@ -20147,7 +20154,7 @@
"zh-chs": "互动",
"zh-cht": "互動",
"xloc": [
- "default.handlebars->31->919"
+ "default.handlebars->31->920"
]
},
{
@@ -20167,11 +20174,11 @@
"zh-chs": "仅限互动",
"zh-cht": "僅限互動",
"xloc": [
- "default.handlebars->31->1587",
- "default.handlebars->31->1594",
- "default.handlebars->31->354",
- "default.handlebars->31->368",
- "default.handlebars->31->383"
+ "default.handlebars->31->1588",
+ "default.handlebars->31->1595",
+ "default.handlebars->31->355",
+ "default.handlebars->31->369",
+ "default.handlebars->31->384"
]
},
{
@@ -20191,7 +20198,7 @@
"zh-chs": "介面",
"zh-cht": "介面",
"xloc": [
- "default.handlebars->31->651"
+ "default.handlebars->31->652"
]
},
{
@@ -20211,7 +20218,7 @@
"zh-chs": "因纽特文",
"zh-cht": "因紐特文",
"xloc": [
- "default.handlebars->31->1213"
+ "default.handlebars->31->1214"
]
},
{
@@ -20231,10 +20238,10 @@
"zh-chs": "无效证件",
"zh-cht": "無效證件",
"xloc": [
- "default-mobile.handlebars->11->253",
"default-mobile.handlebars->11->254",
- "default.handlebars->31->594",
- "default.handlebars->31->595"
+ "default-mobile.handlebars->11->255",
+ "default.handlebars->31->595",
+ "default.handlebars->31->596"
]
},
{
@@ -20254,7 +20261,7 @@
"zh-chs": "无效的设备组类型",
"zh-cht": "無效的裝置群類型",
"xloc": [
- "default.handlebars->31->2183"
+ "default.handlebars->31->2184"
]
},
{
@@ -20274,7 +20281,7 @@
"zh-chs": "无效的JSON",
"zh-cht": "無效的JSON",
"xloc": [
- "default.handlebars->31->2177"
+ "default.handlebars->31->2178"
]
},
{
@@ -20294,8 +20301,8 @@
"zh-chs": "无效的JSON档案格式。",
"zh-cht": "無效的JSON檔案格式。",
"xloc": [
- "default.handlebars->31->1840",
- "default.handlebars->31->1842"
+ "default.handlebars->31->1841",
+ "default.handlebars->31->1843"
]
},
{
@@ -20315,7 +20322,7 @@
"zh-chs": "无效的JSON档案:{0}。",
"zh-cht": "無效的JSON檔案:{0}。",
"xloc": [
- "default.handlebars->31->1838"
+ "default.handlebars->31->1839"
]
},
{
@@ -20335,7 +20342,7 @@
"zh-chs": "无效的PKCS签名",
"zh-cht": "無效的PKCS簽名",
"xloc": [
- "default.handlebars->31->2175"
+ "default.handlebars->31->2176"
]
},
{
@@ -20355,7 +20362,7 @@
"zh-chs": "無效的RSA密碼",
"zh-cht": "無效的RSA密碼",
"xloc": [
- "default.handlebars->31->2176"
+ "default.handlebars->31->2177"
]
},
{
@@ -20363,8 +20370,8 @@
"nl": "Ongeldig SMS bericht",
"fr": "Message SMS non valide",
"xloc": [
- "default-mobile.handlebars->11->552",
- "default.handlebars->31->2163"
+ "default-mobile.handlebars->11->553",
+ "default.handlebars->31->2164"
]
},
{
@@ -20394,8 +20401,8 @@
"nl": "Ongeldig domein",
"fr": "Domaine non valide",
"xloc": [
- "default-mobile.handlebars->11->532",
- "default.handlebars->31->2143"
+ "default-mobile.handlebars->11->533",
+ "default.handlebars->31->2144"
]
},
{
@@ -20403,8 +20410,8 @@
"nl": "Ongeldig email",
"fr": "Email invalide",
"xloc": [
- "default-mobile.handlebars->11->531",
- "default.handlebars->31->2142"
+ "default-mobile.handlebars->11->532",
+ "default.handlebars->31->2143"
]
},
{
@@ -20475,8 +20482,8 @@
"nl": "Ongeldig wachtwoord",
"fr": "Mot de passe incorrect",
"xloc": [
- "default-mobile.handlebars->11->530",
- "default.handlebars->31->2141"
+ "default-mobile.handlebars->11->531",
+ "default.handlebars->31->2142"
]
},
{
@@ -20484,8 +20491,8 @@
"nl": "Ongeldige sitemachtigingen",
"fr": "Autorisations de site non valides",
"xloc": [
- "default-mobile.handlebars->11->533",
- "default.handlebars->31->2144"
+ "default-mobile.handlebars->11->534",
+ "default.handlebars->31->2145"
]
},
{
@@ -20515,8 +20522,8 @@
"nl": "Ongeldige gebruikersnaam",
"fr": "Nom d'utilisateur invalide",
"xloc": [
- "default-mobile.handlebars->11->529",
- "default.handlebars->31->2140"
+ "default-mobile.handlebars->11->530",
+ "default.handlebars->31->2141"
]
},
{
@@ -20536,7 +20543,7 @@
"zh-chs": "使电邮无效",
"zh-cht": "使電郵無效",
"xloc": [
- "default.handlebars->31->1816"
+ "default.handlebars->31->1817"
]
},
{
@@ -20573,7 +20580,7 @@
"zh-chs": "邀请连接({0})",
"zh-cht": "邀請鏈結({0})",
"xloc": [
- "default.handlebars->31->195"
+ "default.handlebars->31->196"
]
},
{
@@ -20593,7 +20600,7 @@
"zh-chs": "邀请类型",
"zh-cht": "邀請類型",
"xloc": [
- "default.handlebars->31->331"
+ "default.handlebars->31->332"
]
},
{
@@ -20613,7 +20620,7 @@
"zh-chs": "任何人都可以使用邀请代码通过以下公共连接将设备加入该设备组:",
"zh-cht": "任何人都可以使用邀請代碼通過以下公共鏈結將裝置加入該裝置群:",
"xloc": [
- "default.handlebars->31->1589"
+ "default.handlebars->31->1590"
]
},
{
@@ -20653,9 +20660,9 @@
"zh-chs": "邀请",
"zh-cht": "邀請",
"xloc": [
- "default.handlebars->31->1442",
- "default.handlebars->31->302",
- "default.handlebars->31->370"
+ "default.handlebars->31->1443",
+ "default.handlebars->31->303",
+ "default.handlebars->31->371"
]
},
{
@@ -20675,13 +20682,13 @@
"zh-chs": "邀请码",
"zh-cht": "邀請碼",
"xloc": [
- "default-mobile.handlebars->11->527",
- "default.handlebars->31->1425",
- "default.handlebars->31->1583",
- "default.handlebars->31->1588",
- "default.handlebars->31->1590",
- "default.handlebars->31->1595",
- "default.handlebars->31->2138"
+ "default-mobile.handlebars->11->528",
+ "default.handlebars->31->1426",
+ "default.handlebars->31->1584",
+ "default.handlebars->31->1589",
+ "default.handlebars->31->1591",
+ "default.handlebars->31->1596",
+ "default.handlebars->31->2139"
]
},
{
@@ -20701,7 +20708,7 @@
"zh-chs": "通过共享邀请连结来邀请某人安装网格代理。该连结为用户提供“ {0} ”设备组的安装说明。该连结是公用的,不需要这服务器的帐户。",
"zh-cht": "通過共享邀請鏈結來邀請某人安裝mesh agent。該鏈結將用戶指向“ {0} ”裝置群的安裝說明。該鏈結是公用的,不需要這伺服器的帳戶。",
"xloc": [
- "default.handlebars->31->357"
+ "default.handlebars->31->358"
]
},
{
@@ -20721,8 +20728,8 @@
"zh-chs": "邀请某人在该设备组上安装网格代理。",
"zh-cht": "邀請某人在該裝置群上安裝mesh agent。",
"xloc": [
- "default.handlebars->31->1441",
- "default.handlebars->31->301"
+ "default.handlebars->31->1442",
+ "default.handlebars->31->302"
]
},
{
@@ -20742,7 +20749,7 @@
"zh-chs": "邀请某人安装网状代理。将发送一封电邮,其中包含指向“ {0} ”设备组的网状代理安装的连结。",
"zh-cht": "邀請某人安裝mesh agent。將發送一封電郵,其中包含指向“ {0} ”裝置群的mesh agent安裝的鏈結。",
"xloc": [
- "default.handlebars->31->334"
+ "default.handlebars->31->335"
]
},
{
@@ -20762,7 +20769,7 @@
"zh-chs": "爱尔兰文",
"zh-cht": "愛爾蘭文",
"xloc": [
- "default.handlebars->31->1214"
+ "default.handlebars->31->1215"
]
},
{
@@ -20782,7 +20789,7 @@
"zh-chs": "意大利文(标准)",
"zh-cht": "意大利文(標準)",
"xloc": [
- "default.handlebars->31->1215"
+ "default.handlebars->31->1216"
]
},
{
@@ -20802,7 +20809,7 @@
"zh-chs": "意大利文(瑞士)",
"zh-cht": "義大利文(瑞士)",
"xloc": [
- "default.handlebars->31->1216"
+ "default.handlebars->31->1217"
]
},
{
@@ -20822,7 +20829,7 @@
"zh-chs": "JSON",
"zh-cht": "JSON",
"xloc": [
- "default.handlebars->31->1776"
+ "default.handlebars->31->1777"
]
},
{
@@ -20842,9 +20849,9 @@
"zh-chs": "JSON格式",
"zh-cht": "JSON格式",
"xloc": [
- "default.handlebars->31->1781",
- "default.handlebars->31->1846",
- "default.handlebars->31->503"
+ "default.handlebars->31->1782",
+ "default.handlebars->31->1847",
+ "default.handlebars->31->504"
]
},
{
@@ -20864,7 +20871,7 @@
"zh-chs": "日文",
"zh-cht": "日文",
"xloc": [
- "default.handlebars->31->1217"
+ "default.handlebars->31->1218"
]
},
{
@@ -20884,7 +20891,7 @@
"zh-chs": "已加入桌面Multiplex会话",
"zh-cht": "已加入桌面Multiplex會話",
"xloc": [
- "default.handlebars->31->1662"
+ "default.handlebars->31->1663"
]
},
{
@@ -20904,7 +20911,7 @@
"zh-chs": "卡纳达文",
"zh-cht": "卡納達文",
"xloc": [
- "default.handlebars->31->1218"
+ "default.handlebars->31->1219"
]
},
{
@@ -20924,7 +20931,7 @@
"zh-chs": "克什米尔文",
"zh-cht": "克什米爾文",
"xloc": [
- "default.handlebars->31->1219"
+ "default.handlebars->31->1220"
]
},
{
@@ -20944,7 +20951,7 @@
"zh-chs": "哈萨克文",
"zh-cht": "哈薩克文",
"xloc": [
- "default.handlebars->31->1220"
+ "default.handlebars->31->1221"
]
},
{
@@ -20964,7 +20971,7 @@
"zh-chs": "保留现有密码",
"zh-cht": "保留現有密碼",
"xloc": [
- "default.handlebars->31->1456"
+ "default.handlebars->31->1457"
]
},
{
@@ -20984,7 +20991,7 @@
"zh-chs": "内核驱动器",
"zh-cht": "內核驅動器",
"xloc": [
- "default.handlebars->31->920"
+ "default.handlebars->31->921"
]
},
{
@@ -21004,8 +21011,8 @@
"zh-chs": "键名",
"zh-cht": "鍵名",
"xloc": [
- "default.handlebars->31->1111",
- "default.handlebars->31->1114"
+ "default.handlebars->31->1112",
+ "default.handlebars->31->1115"
]
},
{
@@ -21031,7 +21038,7 @@
"nl": "Toetsenbord sneltoetsen aanpassen",
"xloc": [
"default-mobile.handlebars->container->page_content->column_l->p10->p10dialog->1->1",
- "default.handlebars->31->907"
+ "default.handlebars->31->908"
]
},
{
@@ -21068,7 +21075,7 @@
"zh-chs": "高棉文",
"zh-cht": "高棉文",
"xloc": [
- "default.handlebars->31->1221"
+ "default.handlebars->31->1222"
]
},
{
@@ -21088,7 +21095,7 @@
"zh-chs": "杀死进程{0}",
"zh-cht": "殺死進程{0}",
"xloc": [
- "default.handlebars->31->1677"
+ "default.handlebars->31->1678"
]
},
{
@@ -21108,7 +21115,7 @@
"zh-chs": "吉尔吉斯",
"zh-cht": "吉爾吉斯",
"xloc": [
- "default.handlebars->31->1222"
+ "default.handlebars->31->1223"
]
},
{
@@ -21128,7 +21135,7 @@
"zh-chs": "克林贡",
"zh-cht": "克林貢",
"xloc": [
- "default.handlebars->31->1223"
+ "default.handlebars->31->1224"
]
},
{
@@ -21148,8 +21155,8 @@
"zh-chs": "已知的",
"zh-cht": "已知的",
"xloc": [
- "default-mobile.handlebars->11->427",
- "default.handlebars->31->1055"
+ "default-mobile.handlebars->11->428",
+ "default.handlebars->31->1056"
]
},
{
@@ -21169,7 +21176,7 @@
"zh-chs": "韩文",
"zh-cht": "韓文",
"xloc": [
- "default.handlebars->31->1224"
+ "default.handlebars->31->1225"
]
},
{
@@ -21189,7 +21196,7 @@
"zh-chs": "韩文(朝鲜)",
"zh-cht": "韓文(朝鮮)",
"xloc": [
- "default.handlebars->31->1225"
+ "default.handlebars->31->1226"
]
},
{
@@ -21209,7 +21216,7 @@
"zh-chs": "韩文(韩国)",
"zh-cht": "韓文(韓國)",
"xloc": [
- "default.handlebars->31->1226"
+ "default.handlebars->31->1227"
]
},
{
@@ -21229,8 +21236,8 @@
"zh-chs": "如果",
"zh-cht": "如果",
"xloc": [
- "default.handlebars->31->934",
- "default.handlebars->31->943",
+ "default.handlebars->31->935",
+ "default.handlebars->31->944",
"terminal.handlebars->3->22",
"terminal.handlebars->3->8"
]
@@ -21252,7 +21259,7 @@
"zh-chs": "语言",
"zh-cht": "語言",
"xloc": [
- "default.handlebars->31->1321"
+ "default.handlebars->31->1322"
]
},
{
@@ -21292,7 +21299,7 @@
"zh-chs": "大焦点",
"zh-cht": "大焦點",
"xloc": [
- "default.handlebars->31->882"
+ "default.handlebars->31->883"
]
},
{
@@ -21505,7 +21512,7 @@
"zh-chs": "最后访问",
"zh-cht": "最後訪問",
"xloc": [
- "default.handlebars->31->1789"
+ "default.handlebars->31->1790"
]
},
{
@@ -21525,7 +21532,7 @@
"zh-chs": "上次登录",
"zh-cht": "上次登入",
"xloc": [
- "default.handlebars->31->1997"
+ "default.handlebars->31->1998"
]
},
{
@@ -21545,15 +21552,15 @@
"zh-chs": "上次代理地址",
"zh-cht": "上次代理地址",
"xloc": [
- "default-mobile.handlebars->11->389",
"default-mobile.handlebars->11->390",
"default-mobile.handlebars->11->391",
- "default.handlebars->31->1007",
+ "default-mobile.handlebars->11->392",
"default.handlebars->31->1008",
"default.handlebars->31->1009",
- "default.handlebars->31->79",
- "default.handlebars->31->81",
- "default.handlebars->31->83"
+ "default.handlebars->31->1010",
+ "default.handlebars->31->80",
+ "default.handlebars->31->82",
+ "default.handlebars->31->84"
]
},
{
@@ -21573,11 +21580,11 @@
"zh-chs": "上次代理连接",
"zh-cht": "上次代理連接",
"xloc": [
- "default-mobile.handlebars->11->386",
- "default-mobile.handlebars->11->388",
- "default.handlebars->31->1004",
- "default.handlebars->31->1006",
- "default.handlebars->31->78"
+ "default-mobile.handlebars->11->387",
+ "default-mobile.handlebars->11->389",
+ "default.handlebars->31->1005",
+ "default.handlebars->31->1007",
+ "default.handlebars->31->79"
]
},
{
@@ -21597,7 +21604,7 @@
"zh-chs": "上次更改:{0}",
"zh-cht": "上次更改:{0}",
"xloc": [
- "default.handlebars->31->2001"
+ "default.handlebars->31->2002"
]
},
{
@@ -21637,7 +21644,7 @@
"zh-chs": "最后接口更新",
"zh-cht": "最後介面更新",
"xloc": [
- "default.handlebars->31->85"
+ "default.handlebars->31->86"
]
},
{
@@ -21657,7 +21664,7 @@
"zh-chs": "上次登录:{0}",
"zh-cht": "上次登入:{0}",
"xloc": [
- "default.handlebars->31->1799"
+ "default.handlebars->31->1800"
]
},
{
@@ -21677,8 +21684,8 @@
"zh-chs": "最后一次发现:",
"zh-cht": "最後一次發現:",
"xloc": [
- "default.handlebars->31->680",
- "default.handlebars->31->75"
+ "default.handlebars->31->681",
+ "default.handlebars->31->76"
]
},
{
@@ -21738,7 +21745,7 @@
"zh-chs": "最新版本",
"zh-cht": "最新版本",
"xloc": [
- "default.handlebars->31->124"
+ "default.handlebars->31->125"
]
},
{
@@ -21758,7 +21765,7 @@
"zh-chs": "拉丁文",
"zh-cht": "拉丁文",
"xloc": [
- "default.handlebars->31->1227"
+ "default.handlebars->31->1228"
]
},
{
@@ -21778,7 +21785,7 @@
"zh-chs": "拉脱维亚文",
"zh-cht": "拉脫維亞文",
"xloc": [
- "default.handlebars->31->1228"
+ "default.handlebars->31->1229"
]
},
{
@@ -21798,7 +21805,7 @@
"zh-chs": "启动MeshCentral路由器",
"zh-cht": "啟動MeshCentral路由器",
"xloc": [
- "default.handlebars->31->829"
+ "default.handlebars->31->830"
]
},
{
@@ -21818,7 +21825,7 @@
"zh-chs": "启动noVNC连接到此设备",
"zh-cht": "啟動noVNC連接到此裝置",
"xloc": [
- "default.handlebars->31->664"
+ "default.handlebars->31->665"
]
},
{
@@ -21838,7 +21845,7 @@
"zh-chs": "启动基于Web的RDP连接到此设备",
"zh-cht": "啟動基於Web的RDP連接到此裝置",
"xloc": [
- "default.handlebars->31->666"
+ "default.handlebars->31->667"
]
},
{
@@ -21858,7 +21865,7 @@
"zh-chs": "如没有请留空。",
"zh-cht": "如沒有請留空。",
"xloc": [
- "default.handlebars->31->2043"
+ "default.handlebars->31->2044"
]
},
{
@@ -21866,8 +21873,8 @@
"fr": "Gauche",
"nl": "Links",
"xloc": [
- "default-mobile.handlebars->11->326",
- "default.handlebars->31->893"
+ "default-mobile.handlebars->11->327",
+ "default.handlebars->31->894"
]
},
{
@@ -21912,7 +21919,7 @@
"zh-chs": "离开桌面多路复用会话",
"zh-cht": "離開桌面多路復用會話",
"xloc": [
- "default.handlebars->31->1663"
+ "default.handlebars->31->1664"
]
},
{
@@ -21932,7 +21939,7 @@
"zh-chs": "减",
"zh-cht": "減",
"xloc": [
- "default.handlebars->31->2254"
+ "default.handlebars->31->2255"
]
},
{
@@ -21952,8 +21959,8 @@
"zh-chs": "限制事件",
"zh-cht": "限制事件",
"xloc": [
- "default.handlebars->31->711",
- "default.handlebars->31->732"
+ "default.handlebars->31->712",
+ "default.handlebars->31->733"
]
},
{
@@ -21994,10 +22001,10 @@
"zh-chs": "有限输入",
"zh-cht": "有限輸入",
"xloc": [
- "default-mobile.handlebars->11->504",
- "default.handlebars->31->1565",
- "default.handlebars->31->704",
- "default.handlebars->31->725"
+ "default-mobile.handlebars->11->505",
+ "default.handlebars->31->1566",
+ "default.handlebars->31->705",
+ "default.handlebars->31->726"
]
},
{
@@ -22017,8 +22024,8 @@
"zh-chs": "仅有限输入",
"zh-cht": "僅有限輸入",
"xloc": [
- "default-mobile.handlebars->11->477",
- "default.handlebars->31->1521"
+ "default-mobile.handlebars->11->478",
+ "default.handlebars->31->1522"
]
},
{
@@ -22038,7 +22045,7 @@
"zh-chs": "连结",
"zh-cht": "鏈結",
"xloc": [
- "default-mobile.handlebars->11->119",
+ "default-mobile.handlebars->11->120",
"default.handlebars->container->column_l->p42->p42tbl->1->0->4"
]
},
@@ -22059,8 +22066,8 @@
"zh-chs": "连结过期",
"zh-cht": "鏈結過期",
"xloc": [
- "default.handlebars->31->344",
- "default.handlebars->31->358"
+ "default.handlebars->31->345",
+ "default.handlebars->31->359"
]
},
{
@@ -22080,7 +22087,7 @@
"zh-chs": "连结邀请",
"zh-cht": "鏈結邀請",
"xloc": [
- "default.handlebars->31->332"
+ "default.handlebars->31->333"
]
},
{
@@ -22121,7 +22128,7 @@
"zh-chs": "Linux / BSD",
"zh-cht": "Linux / BSD",
"xloc": [
- "default.handlebars->31->372"
+ "default.handlebars->31->373"
]
},
{
@@ -22141,7 +22148,7 @@
"zh-chs": "Linux / BSD(卸载)",
"zh-cht": "Linux / BSD(解除安裝)",
"xloc": [
- "default.handlebars->31->377"
+ "default.handlebars->31->378"
]
},
{
@@ -22161,7 +22168,7 @@
"zh-chs": "Linux / BSD / macOS二进制安装程序",
"zh-cht": "Linux / BSD / macOS二進制安裝軟體",
"xloc": [
- "default.handlebars->31->373"
+ "default.handlebars->31->374"
]
},
{
@@ -22227,6 +22234,13 @@
"default.handlebars->31->23"
]
},
+ {
+ "en": "Linux ARM 64 bit (glibc/2.24 NOKVM)",
+ "xloc": [
+ "default-mobile.handlebars->11->38",
+ "default.handlebars->31->45"
+ ]
+ },
{
"cs": "Linux ARM, Raspberry Pi (32bit)",
"de": "Linux ARM, Raspberry Pi (32bit)",
@@ -22244,7 +22258,7 @@
"zh-chs": "Linux ARM,Raspberry Pi(32位)",
"zh-cht": "Linux ARM,Raspberry Pi(32位)",
"xloc": [
- "default.handlebars->31->837"
+ "default.handlebars->31->838"
]
},
{
@@ -22264,7 +22278,7 @@
"zh-chs": "Linux ARM, Raspberry Pi (64位)",
"zh-cht": "Linux ARM, Raspberry Pi (64位)",
"xloc": [
- "default.handlebars->31->838"
+ "default.handlebars->31->839"
]
},
{
@@ -22326,7 +22340,7 @@
"zh-chs": "Linux路径",
"zh-cht": "Linux路徑",
"xloc": [
- "default.handlebars->31->496"
+ "default.handlebars->31->497"
]
},
{
@@ -22388,7 +22402,7 @@
"zh-chs": "只限Linux",
"zh-cht": "只限Linux",
"xloc": [
- "default.handlebars->31->343"
+ "default.handlebars->31->344"
]
},
{
@@ -22408,7 +22422,7 @@
"zh-chs": "Linux x86(32位)",
"zh-cht": "Linux x86(32位)",
"xloc": [
- "default.handlebars->31->834"
+ "default.handlebars->31->835"
]
},
{
@@ -22428,7 +22442,7 @@
"zh-chs": "Linux x86(64位)",
"zh-cht": "Linux x86(64位)",
"xloc": [
- "default.handlebars->31->833"
+ "default.handlebars->31->834"
]
},
{
@@ -22448,8 +22462,8 @@
"zh-chs": "Linux / BSD / macOS命令外壳",
"zh-cht": "Linux / BSD / macOS命令外殼",
"xloc": [
- "default.handlebars->31->476",
- "default.handlebars->31->790"
+ "default.handlebars->31->477",
+ "default.handlebars->31->791"
]
},
{
@@ -22507,7 +22521,7 @@
"zh-chs": "立陶宛文",
"zh-cht": "立陶宛文",
"xloc": [
- "default.handlebars->31->1229"
+ "default.handlebars->31->1230"
]
},
{
@@ -22547,12 +22561,12 @@
"zh-chs": "载入中...",
"zh-cht": "載入中...",
"xloc": [
- "default-mobile.handlebars->11->82",
- "default.handlebars->31->1107",
- "default.handlebars->31->1384",
- "default.handlebars->31->1388",
- "default.handlebars->31->2099",
- "default.handlebars->31->824"
+ "default-mobile.handlebars->11->83",
+ "default.handlebars->31->1108",
+ "default.handlebars->31->1385",
+ "default.handlebars->31->1389",
+ "default.handlebars->31->2100",
+ "default.handlebars->31->825"
]
},
{
@@ -22634,7 +22648,7 @@
"zh-chs": "本地用户接受的远程终端请求",
"zh-cht": "本地用戶接受的遠程終端請求",
"xloc": [
- "default.handlebars->31->1685"
+ "default.handlebars->31->1686"
]
},
{
@@ -22654,7 +22668,7 @@
"zh-chs": "本地用户拒绝了远程终端请求",
"zh-cht": "本地用戶拒絕了遠程終端請求",
"xloc": [
- "default.handlebars->31->1686"
+ "default.handlebars->31->1687"
]
},
{
@@ -22674,7 +22688,7 @@
"zh-chs": "本地化设置",
"zh-cht": "本地化設置",
"xloc": [
- "default.handlebars->31->1324",
+ "default.handlebars->31->1325",
"default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->7"
]
},
@@ -22695,7 +22709,7 @@
"zh-chs": "位置",
"zh-cht": "位置",
"xloc": [
- "default.handlebars->31->653"
+ "default.handlebars->31->654"
]
},
{
@@ -22735,7 +22749,7 @@
"zh-chs": "锁定账户",
"zh-cht": "鎖定賬戶",
"xloc": [
- "default.handlebars->31->1886"
+ "default.handlebars->31->1887"
]
},
{
@@ -22755,7 +22769,7 @@
"zh-chs": "锁定帐户设置",
"zh-cht": "鎖定帳戶設置",
"xloc": [
- "default.handlebars->31->1889"
+ "default.handlebars->31->1890"
]
},
{
@@ -22775,7 +22789,7 @@
"zh-chs": "锁定账户",
"zh-cht": "鎖定賬戶",
"xloc": [
- "default.handlebars->31->1819"
+ "default.handlebars->31->1820"
]
},
{
@@ -22795,7 +22809,7 @@
"zh-chs": "已锁定",
"zh-cht": "已鎖定",
"xloc": [
- "default.handlebars->31->1800"
+ "default.handlebars->31->1801"
]
},
{
@@ -22815,7 +22829,7 @@
"zh-chs": "被锁定账户",
"zh-cht": "被鎖定賬戶",
"xloc": [
- "default.handlebars->31->1973"
+ "default.handlebars->31->1974"
]
},
{
@@ -22835,7 +22849,7 @@
"zh-chs": "将远程用户锁定在桌面之外",
"zh-cht": "將遠程用戶鎖定在桌面之外",
"xloc": [
- "default.handlebars->31->1711"
+ "default.handlebars->31->1712"
]
},
{
@@ -22855,7 +22869,7 @@
"zh-chs": "记录事件",
"zh-cht": "記錄事件",
"xloc": [
- "default.handlebars->31->640"
+ "default.handlebars->31->641"
]
},
{
@@ -23054,7 +23068,7 @@
"zh-cht": "登出",
"xloc": [
"default-mobile.handlebars->topMenu->logoutMenuOption->0->0",
- "default.handlebars->31->55",
+ "default.handlebars->31->56",
"terms.handlebars->3->2"
]
},
@@ -23075,7 +23089,7 @@
"zh-chs": "卢森堡文",
"zh-cht": "盧森堡文",
"xloc": [
- "default.handlebars->31->1230"
+ "default.handlebars->31->1231"
]
},
{
@@ -23095,12 +23109,12 @@
"zh-chs": "MAC层",
"zh-cht": "MAC層",
"xloc": [
- "default-mobile.handlebars->11->400",
- "default-mobile.handlebars->11->402",
- "default.handlebars->31->1018",
- "default.handlebars->31->1020",
- "default.handlebars->31->1028",
- "default.handlebars->31->1030"
+ "default-mobile.handlebars->11->401",
+ "default-mobile.handlebars->11->403",
+ "default.handlebars->31->1019",
+ "default.handlebars->31->1021",
+ "default.handlebars->31->1029",
+ "default.handlebars->31->1031"
]
},
{
@@ -23120,8 +23134,8 @@
"zh-chs": "MAC地址",
"zh-cht": "MAC地址",
"xloc": [
- "default.handlebars->31->101",
- "default.handlebars->31->90"
+ "default.handlebars->31->102",
+ "default.handlebars->31->91"
]
},
{
@@ -23141,9 +23155,9 @@
"zh-chs": "MAC:{0}",
"zh-cht": "MAC:{0}",
"xloc": [
- "default-mobile.handlebars->11->403",
- "default.handlebars->31->1021",
- "default.handlebars->31->1031"
+ "default-mobile.handlebars->11->404",
+ "default.handlebars->31->1022",
+ "default.handlebars->31->1032"
]
},
{
@@ -23163,9 +23177,9 @@
"zh-chs": "MAC:{0},网关:{1}",
"zh-cht": "MAC:{0},網關:{1}",
"xloc": [
- "default-mobile.handlebars->11->401",
- "default.handlebars->31->1019",
- "default.handlebars->31->1029"
+ "default-mobile.handlebars->11->402",
+ "default.handlebars->31->1020",
+ "default.handlebars->31->1030"
]
},
{
@@ -23253,13 +23267,13 @@
"zh-chs": "MQTT",
"zh-cht": "MQTT",
"xloc": [
- "default-mobile.handlebars->11->217",
- "default-mobile.handlebars->11->264",
- "default.handlebars->31->1085",
+ "default-mobile.handlebars->11->218",
+ "default-mobile.handlebars->11->265",
"default.handlebars->31->1086",
- "default.handlebars->31->261",
- "default.handlebars->31->450",
- "default.handlebars->31->631",
+ "default.handlebars->31->1087",
+ "default.handlebars->31->262",
+ "default.handlebars->31->451",
+ "default.handlebars->31->632",
"default.handlebars->container->column_l->p15->consoleTable->1->6->1->1->1->0->p15outputselecttd->p15outputselect->3"
]
},
@@ -23280,7 +23294,7 @@
"zh-chs": "MQTT凭证",
"zh-cht": "MQTT憑證",
"xloc": [
- "default.handlebars->31->213"
+ "default.handlebars->31->214"
]
},
{
@@ -23300,7 +23314,7 @@
"zh-chs": "MQTT登录",
"zh-cht": "MQTT登入",
"xloc": [
- "default.handlebars->31->669"
+ "default.handlebars->31->670"
]
},
{
@@ -23320,8 +23334,8 @@
"zh-chs": "MQTT通道已连接",
"zh-cht": "MQTT通道已連接",
"xloc": [
- "default-mobile.handlebars->11->274",
- "default.handlebars->31->679"
+ "default-mobile.handlebars->11->275",
+ "default.handlebars->31->680"
]
},
{
@@ -23341,8 +23355,8 @@
"zh-chs": "MQTT已连接",
"zh-cht": "MQTT已連接",
"xloc": [
- "default.handlebars->31->176",
- "default.handlebars->31->678"
+ "default.handlebars->31->177",
+ "default.handlebars->31->679"
]
},
{
@@ -23362,9 +23376,9 @@
"zh-chs": "与设备的MQTT连接已激活。",
"zh-cht": "與裝置的MQTT連接已啟動。",
"xloc": [
- "default.handlebars->31->260",
- "default.handlebars->31->449",
- "default.handlebars->31->630"
+ "default.handlebars->31->261",
+ "default.handlebars->31->450",
+ "default.handlebars->31->631"
]
},
{
@@ -23384,7 +23398,7 @@
"zh-chs": "MQTT已断开连接",
"zh-cht": "MQTT已斷開連接",
"xloc": [
- "default.handlebars->31->180"
+ "default.handlebars->31->181"
]
},
{
@@ -23446,7 +23460,7 @@
"nl": "MacOS installatieprogramma",
"fr": "Installateur MacOS",
"xloc": [
- "default.handlebars->31->827"
+ "default.handlebars->31->828"
]
},
{
@@ -23466,7 +23480,7 @@
"zh-chs": "主服务器信息",
"zh-cht": "主伺服器訊息",
"xloc": [
- "default.handlebars->31->2222"
+ "default.handlebars->31->2223"
]
},
{
@@ -23486,7 +23500,7 @@
"zh-chs": "马来文",
"zh-cht": "馬來文",
"xloc": [
- "default.handlebars->31->1232"
+ "default.handlebars->31->1233"
]
},
{
@@ -23506,7 +23520,7 @@
"zh-chs": "玛拉雅拉姆文",
"zh-cht": "馬拉雅拉姆文",
"xloc": [
- "default.handlebars->31->1233"
+ "default.handlebars->31->1234"
]
},
{
@@ -23526,7 +23540,7 @@
"zh-chs": "马耳他文",
"zh-cht": "馬耳他文",
"xloc": [
- "default.handlebars->31->1234"
+ "default.handlebars->31->1235"
]
},
{
@@ -23546,8 +23560,8 @@
"zh-chs": "管理备用码",
"zh-cht": "管理備用碼",
"xloc": [
- "default-mobile.handlebars->11->70",
- "default.handlebars->31->151"
+ "default-mobile.handlebars->11->71",
+ "default.handlebars->31->152"
]
},
{
@@ -23567,10 +23581,10 @@
"zh-chs": "管理设备组计算机",
"zh-cht": "管理裝置群電腦",
"xloc": [
- "default-mobile.handlebars->11->474",
- "default-mobile.handlebars->11->494",
- "default.handlebars->31->1518",
- "default.handlebars->31->1554"
+ "default-mobile.handlebars->11->475",
+ "default-mobile.handlebars->11->495",
+ "default.handlebars->31->1519",
+ "default.handlebars->31->1555"
]
},
{
@@ -23590,10 +23604,10 @@
"zh-chs": "管理设备组用户",
"zh-cht": "管理裝置群用戶",
"xloc": [
- "default-mobile.handlebars->11->473",
- "default-mobile.handlebars->11->493",
- "default.handlebars->31->1517",
- "default.handlebars->31->1553"
+ "default-mobile.handlebars->11->474",
+ "default-mobile.handlebars->11->494",
+ "default.handlebars->31->1518",
+ "default.handlebars->31->1554"
]
},
{
@@ -23613,7 +23627,7 @@
"zh-chs": "管理设备",
"zh-cht": "管理裝置",
"xloc": [
- "default.handlebars->31->720"
+ "default.handlebars->31->721"
]
},
{
@@ -23633,7 +23647,7 @@
"zh-chs": "管理录音",
"zh-cht": "管理錄音",
"xloc": [
- "default.handlebars->31->1884"
+ "default.handlebars->31->1885"
]
},
{
@@ -23653,7 +23667,7 @@
"zh-chs": "管理安全密钥",
"zh-cht": "管理安全密鑰",
"xloc": [
- "default.handlebars->31->158"
+ "default.handlebars->31->159"
]
},
{
@@ -23673,7 +23687,7 @@
"zh-chs": "管理用户组",
"zh-cht": "管理用戶群",
"xloc": [
- "default.handlebars->31->1883"
+ "default.handlebars->31->1884"
]
},
{
@@ -23693,8 +23707,8 @@
"zh-chs": "管理用户",
"zh-cht": "管理用戶",
"xloc": [
- "default.handlebars->31->1882",
- "default.handlebars->31->719"
+ "default.handlebars->31->1883",
+ "default.handlebars->31->720"
]
},
{
@@ -23820,7 +23834,7 @@
"zh-chs": "使用软件代理进行管理",
"zh-cht": "使用軟體代理進行管理",
"xloc": [
- "default.handlebars->31->1357"
+ "default.handlebars->31->1358"
]
},
{
@@ -23840,8 +23854,8 @@
"zh-chs": "使用软件代理进行管理",
"zh-cht": "使用軟體代理進行管理",
"xloc": [
- "default-mobile.handlebars->11->454",
- "default.handlebars->31->1394"
+ "default-mobile.handlebars->11->455",
+ "default.handlebars->31->1395"
]
},
{
@@ -23861,7 +23875,7 @@
"zh-chs": "经理",
"zh-cht": "經理",
"xloc": [
- "default.handlebars->31->1805"
+ "default.handlebars->31->1806"
]
},
{
@@ -23915,7 +23929,7 @@
"zh-chs": "毛利文",
"zh-cht": "毛利文",
"xloc": [
- "default.handlebars->31->1235"
+ "default.handlebars->31->1236"
]
},
{
@@ -23956,7 +23970,7 @@
"zh-chs": "马拉地文",
"zh-cht": "馬拉地文",
"xloc": [
- "default.handlebars->31->1236"
+ "default.handlebars->31->1237"
]
},
{
@@ -23976,7 +23990,7 @@
"zh-chs": "达到连接数量上限",
"zh-cht": "達到連接數量上限",
"xloc": [
- "default.handlebars->31->2181"
+ "default.handlebars->31->2182"
]
},
{
@@ -24041,7 +24055,7 @@
"zh-chs": "Megabyte",
"zh-cht": "Megabyte",
"xloc": [
- "default.handlebars->31->2210"
+ "default.handlebars->31->2211"
]
},
{
@@ -24061,9 +24075,9 @@
"zh-chs": "记忆体",
"zh-cht": "記憶體",
"xloc": [
- "default-mobile.handlebars->11->445",
- "default.handlebars->31->1073",
- "default.handlebars->31->2201",
+ "default-mobile.handlebars->11->446",
+ "default.handlebars->31->1074",
+ "default.handlebars->31->2202",
"default.handlebars->container->column_l->p40->3->1->p40type->3"
]
},
@@ -24084,19 +24098,19 @@
"zh-chs": "网格代理",
"zh-cht": "Mesh Agent",
"xloc": [
- "default-mobile.handlebars->11->271",
- "default-mobile.handlebars->11->385",
- "default-mobile.handlebars->11->392",
- "default.handlebars->31->1003",
- "default.handlebars->31->1010",
- "default.handlebars->31->385",
- "default.handlebars->31->389",
- "default.handlebars->31->398",
- "default.handlebars->31->404",
- "default.handlebars->31->407",
- "default.handlebars->31->412",
- "default.handlebars->31->577",
- "default.handlebars->31->623"
+ "default-mobile.handlebars->11->272",
+ "default-mobile.handlebars->11->386",
+ "default-mobile.handlebars->11->393",
+ "default.handlebars->31->1004",
+ "default.handlebars->31->1011",
+ "default.handlebars->31->386",
+ "default.handlebars->31->390",
+ "default.handlebars->31->399",
+ "default.handlebars->31->405",
+ "default.handlebars->31->408",
+ "default.handlebars->31->413",
+ "default.handlebars->31->578",
+ "default.handlebars->31->624"
]
},
{
@@ -24116,8 +24130,8 @@
"zh-chs": "网格代理控制台",
"zh-cht": "網格代理控制台",
"xloc": [
- "default-mobile.handlebars->11->481",
- "default.handlebars->31->1526"
+ "default-mobile.handlebars->11->482",
+ "default.handlebars->31->1527"
]
},
{
@@ -24177,7 +24191,7 @@
"zh-chs": "网格中继",
"zh-cht": "Mesh Relay",
"xloc": [
- "default.handlebars->31->629"
+ "default.handlebars->31->630"
]
},
{
@@ -24197,9 +24211,9 @@
"zh-chs": "已连接网状代理并准备使用。",
"zh-cht": "已連接Mesh Agent並準備使用。",
"xloc": [
- "default.handlebars->31->252",
- "default.handlebars->31->441",
- "default.handlebars->31->622"
+ "default.handlebars->31->253",
+ "default.handlebars->31->442",
+ "default.handlebars->31->623"
]
},
{
@@ -24219,9 +24233,9 @@
"zh-chs": "网格代理可以经过其他代理作为中继访问得到。",
"zh-cht": "Mesh Agent可以經過其他代理作為中繼訪問得到。",
"xloc": [
- "default.handlebars->31->258",
- "default.handlebars->31->447",
- "default.handlebars->31->628"
+ "default.handlebars->31->259",
+ "default.handlebars->31->448",
+ "default.handlebars->31->629"
]
},
{
@@ -24241,8 +24255,8 @@
"zh-chs": "MeshAction(.txt)",
"zh-cht": "MeshAction(.txt)",
"xloc": [
- "default.handlebars->31->844",
- "default.handlebars->31->846"
+ "default.handlebars->31->845",
+ "default.handlebars->31->847"
]
},
{
@@ -24262,7 +24276,7 @@
"zh-chs": "MeshAgent流量",
"zh-cht": "MeshAgent流量",
"xloc": [
- "default.handlebars->31->2224"
+ "default.handlebars->31->2225"
]
},
{
@@ -24282,7 +24296,7 @@
"zh-chs": "MeshAgent更新",
"zh-cht": "MeshAgent更新",
"xloc": [
- "default.handlebars->31->2225"
+ "default.handlebars->31->2226"
]
},
{
@@ -24322,7 +24336,7 @@
"zh-chs": "MeshCentral错误",
"zh-cht": "MeshCentral錯誤",
"xloc": [
- "default.handlebars->31->1387"
+ "default.handlebars->31->1388"
]
},
{
@@ -24342,7 +24356,7 @@
"zh-chs": "MeshCentral路由器",
"zh-cht": "MeshCentral Router",
"xloc": [
- "default.handlebars->31->830"
+ "default.handlebars->31->831"
]
},
{
@@ -24362,7 +24376,7 @@
"zh-chs": "MeshCentral 路由器是Windows工具,用于TCP端口映射。例如,您可以通过该服务器将RDP放入远程设备。",
"zh-cht": "MeshCentral Router是Windows工具,用於TCP介面映射。例如,你可以通過該伺服器將RDP放入遠程裝置。",
"xloc": [
- "default.handlebars->31->825"
+ "default.handlebars->31->826"
]
},
{
@@ -24382,8 +24396,8 @@
"zh-chs": "MeshCentral服务器错误",
"zh-cht": "MeshCentral伺服器錯誤",
"xloc": [
- "default.handlebars->31->128",
- "default.handlebars->31->132"
+ "default.handlebars->31->129",
+ "default.handlebars->31->133"
]
},
{
@@ -24403,7 +24417,7 @@
"zh-chs": "MeshCentral服务器同级化",
"zh-cht": "MeshCentral伺服器同級化",
"xloc": [
- "default.handlebars->31->2223"
+ "default.handlebars->31->2224"
]
},
{
@@ -24443,9 +24457,9 @@
"zh-chs": "MeshCentral版本",
"zh-cht": "MeshCentral版本",
"xloc": [
- "default.handlebars->31->125",
- "default.handlebars->31->127",
- "default.handlebars->31->1383"
+ "default.handlebars->31->126",
+ "default.handlebars->31->128",
+ "default.handlebars->31->1384"
]
},
{
@@ -24465,9 +24479,9 @@
"zh-chs": "MeshCmd",
"zh-cht": "MeshCmd",
"xloc": [
- "default.handlebars->31->239",
- "default.handlebars->31->655",
- "default.handlebars->31->842"
+ "default.handlebars->31->240",
+ "default.handlebars->31->656",
+ "default.handlebars->31->843"
]
},
{
@@ -24487,7 +24501,7 @@
"zh-chs": "MeshCmd(Linux ARM,32位)",
"zh-cht": "MeshCmd(Linux ARM,32位)",
"xloc": [
- "default.handlebars->31->854"
+ "default.handlebars->31->855"
]
},
{
@@ -24507,7 +24521,7 @@
"zh-chs": "MeshCmd(Linux ARM,64位)",
"zh-cht": "MeshCmd(Linux ARM,64位)",
"xloc": [
- "default.handlebars->31->855"
+ "default.handlebars->31->856"
]
},
{
@@ -24527,7 +24541,7 @@
"zh-chs": "MeshCmd(Linux x86,32bit)",
"zh-cht": "MeshCmd(Linux x86,32bit)",
"xloc": [
- "default.handlebars->31->850"
+ "default.handlebars->31->851"
]
},
{
@@ -24547,7 +24561,7 @@
"zh-chs": "MeshCmd(Linux x86,64位)",
"zh-cht": "MeshCmd(Linux x86,64位)",
"xloc": [
- "default.handlebars->31->851"
+ "default.handlebars->31->852"
]
},
{
@@ -24567,7 +24581,7 @@
"zh-chs": "MeshCmd(Win32可执行档案)",
"zh-cht": "MeshCmd(Win32可執行檔案)",
"xloc": [
- "default.handlebars->31->848"
+ "default.handlebars->31->849"
]
},
{
@@ -24587,7 +24601,7 @@
"zh-chs": "MeshCmd(Win64可执行档案)",
"zh-cht": "MeshCmd(Win64可執行檔案)",
"xloc": [
- "default.handlebars->31->849"
+ "default.handlebars->31->850"
]
},
{
@@ -24624,7 +24638,7 @@
"zh-chs": "MeshCmd(macOS,ARM-64位)",
"zh-cht": "MeshCmd(macOS,ARM-64位)",
"xloc": [
- "default.handlebars->31->853"
+ "default.handlebars->31->854"
]
},
{
@@ -24644,7 +24658,7 @@
"zh-chs": "MeshCmd(macOS,x86-ARM-64位)",
"zh-cht": "MeshCmd(macOS,x86-ARM-64位)",
"xloc": [
- "default.handlebars->31->852"
+ "default.handlebars->31->853"
]
},
{
@@ -24664,7 +24678,7 @@
"zh-chs": "MeshCmd是一个可以执行许多不同操作的命令行工具。可以选择下载和编辑操作档案以提供服务器信息和凭据。",
"zh-cht": "MeshCmd是一個可以執行許多不同操作的命令行工具。可以選擇下載和編輯操作檔案以提供伺服器訊息和憑據。",
"xloc": [
- "default.handlebars->31->839"
+ "default.handlebars->31->840"
]
},
{
@@ -24740,9 +24754,9 @@
"zh-chs": "消息",
"zh-cht": "訊息",
"xloc": [
- "default.handlebars->31->355",
- "default.handlebars->31->642",
- "default.handlebars->31->805"
+ "default.handlebars->31->356",
+ "default.handlebars->31->643",
+ "default.handlebars->31->806"
]
},
{
@@ -24762,7 +24776,7 @@
"zh-chs": "留言框",
"zh-cht": "留言框",
"xloc": [
- "default.handlebars->31->491"
+ "default.handlebars->31->492"
]
},
{
@@ -24782,7 +24796,7 @@
"zh-chs": "消息调度器",
"zh-cht": "電郵調度器",
"xloc": [
- "default.handlebars->31->2221"
+ "default.handlebars->31->2222"
]
},
{
@@ -24890,15 +24904,15 @@
{
"en": "Mobile Device",
"xloc": [
- "default-mobile.handlebars->11->398",
- "default.handlebars->31->1016"
+ "default-mobile.handlebars->11->399",
+ "default.handlebars->31->1017"
]
},
{
"en": "Mobile device",
"nl": "Mobiel apparaat",
"xloc": [
- "default.handlebars->31->375"
+ "default.handlebars->31->376"
]
},
{
@@ -24918,10 +24932,10 @@
"zh-chs": "模型",
"zh-cht": "模型",
"xloc": [
- "default-mobile.handlebars->11->393",
- "default-mobile.handlebars->11->446",
- "default.handlebars->31->1011",
- "default.handlebars->31->1074"
+ "default-mobile.handlebars->11->394",
+ "default-mobile.handlebars->11->447",
+ "default.handlebars->31->1012",
+ "default.handlebars->31->1075"
]
},
{
@@ -24941,7 +24955,7 @@
"zh-chs": "修改节点位置",
"zh-cht": "修改節點位置",
"xloc": [
- "default.handlebars->31->536"
+ "default.handlebars->31->537"
]
},
{
@@ -24961,7 +24975,7 @@
"zh-chs": "摩尔达维亚文",
"zh-cht": "摩爾達維亞文",
"xloc": [
- "default.handlebars->31->1237"
+ "default.handlebars->31->1238"
]
},
{
@@ -24981,7 +24995,7 @@
"zh-chs": "更多",
"zh-cht": "更多",
"xloc": [
- "default.handlebars->31->2253"
+ "default.handlebars->31->2254"
]
},
{
@@ -25001,8 +25015,8 @@
"zh-chs": "母板",
"zh-cht": "母板",
"xloc": [
- "default-mobile.handlebars->11->439",
- "default.handlebars->31->1067"
+ "default-mobile.handlebars->11->440",
+ "default.handlebars->31->1068"
]
},
{
@@ -25022,7 +25036,7 @@
"zh-chs": "将此设备移到其他设备组",
"zh-cht": "將此裝置移至其他裝置群",
"xloc": [
- "default.handlebars->31->646"
+ "default.handlebars->31->647"
]
},
{
@@ -25042,7 +25056,7 @@
"zh-chs": "移至设备组",
"zh-cht": "移至裝置群",
"xloc": [
- "default.handlebars->31->455"
+ "default.handlebars->31->456"
]
},
{
@@ -25062,7 +25076,7 @@
"zh-chs": "移动:“{0}”到“{1}”",
"zh-cht": "移動:“{0}”到“{1}”",
"xloc": [
- "default.handlebars->31->1710"
+ "default.handlebars->31->1711"
]
},
{
@@ -25082,7 +25096,7 @@
"zh-chs": "将设备{0}移动到组{1}",
"zh-cht": "將設備{0}移動到組{1}",
"xloc": [
- "default.handlebars->31->1743"
+ "default.handlebars->31->1744"
]
},
{
@@ -25122,7 +25136,7 @@
"zh-chs": "多路复用器",
"zh-cht": "多工器",
"xloc": [
- "default.handlebars->31->2124"
+ "default.handlebars->31->2125"
]
},
{
@@ -25142,8 +25156,8 @@
"zh-chs": "必须以用户身份运行",
"zh-cht": "必須以用戶身份運行",
"xloc": [
- "default.handlebars->31->479",
- "default.handlebars->31->793"
+ "default.handlebars->31->480",
+ "default.handlebars->31->794"
]
},
{
@@ -25276,7 +25290,7 @@
"zh-chs": "我的服务器控制台",
"zh-cht": "我的伺服器控制台",
"xloc": [
- "default.handlebars->31->1080"
+ "default.handlebars->31->1081"
]
},
{
@@ -25438,8 +25452,8 @@
"zh-chs": "我的密钥",
"zh-cht": "我的密鍵",
"xloc": [
- "default.handlebars->31->1112",
- "default.handlebars->31->1115"
+ "default.handlebars->31->1113",
+ "default.handlebars->31->1116"
]
},
{
@@ -25499,7 +25513,7 @@
"zh-chs": "导航到下面的URL,授予访问权限并将令牌代码复制回去。",
"zh-cht": "導航到下面的URL,授予訪問權限並將令牌代碼複製回去。",
"xloc": [
- "default.handlebars->31->216"
+ "default.handlebars->31->217"
]
},
{
@@ -25519,27 +25533,27 @@
"zh-chs": "名称",
"zh-cht": "名稱",
"xloc": [
- "default-mobile.handlebars->11->107",
- "default-mobile.handlebars->11->229",
- "default-mobile.handlebars->11->381",
- "default-mobile.handlebars->11->433",
- "default-mobile.handlebars->11->455",
- "default-mobile.handlebars->11->468",
- "default.handlebars->31->100",
- "default.handlebars->31->1061",
- "default.handlebars->31->1355",
- "default.handlebars->31->1395",
- "default.handlebars->31->1482",
- "default.handlebars->31->1787",
- "default.handlebars->31->1892",
- "default.handlebars->31->1908",
- "default.handlebars->31->1915",
- "default.handlebars->31->1960",
- "default.handlebars->31->1979",
- "default.handlebars->31->565",
- "default.handlebars->31->86",
- "default.handlebars->31->914",
- "default.handlebars->31->999",
+ "default-mobile.handlebars->11->108",
+ "default-mobile.handlebars->11->230",
+ "default-mobile.handlebars->11->382",
+ "default-mobile.handlebars->11->434",
+ "default-mobile.handlebars->11->456",
+ "default-mobile.handlebars->11->469",
+ "default.handlebars->31->1000",
+ "default.handlebars->31->101",
+ "default.handlebars->31->1062",
+ "default.handlebars->31->1356",
+ "default.handlebars->31->1396",
+ "default.handlebars->31->1483",
+ "default.handlebars->31->1788",
+ "default.handlebars->31->1893",
+ "default.handlebars->31->1909",
+ "default.handlebars->31->1916",
+ "default.handlebars->31->1961",
+ "default.handlebars->31->1980",
+ "default.handlebars->31->566",
+ "default.handlebars->31->87",
+ "default.handlebars->31->915",
"default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsProcessTab->deskToolsHeader->3",
"default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsServiceTab->deskToolsServiceHeader->3",
"default.handlebars->container->column_l->p42->p42tbl->1->0->2"
@@ -25562,7 +25576,7 @@
"zh-chs": "名称(可选)",
"zh-cht": "名稱(可選)",
"xloc": [
- "default.handlebars->31->335"
+ "default.handlebars->31->336"
]
},
{
@@ -25582,7 +25596,7 @@
"zh-chs": "名称1,名称2,名称3",
"zh-cht": "名稱1,名稱2,名稱3",
"xloc": [
- "default.handlebars->31->1874"
+ "default.handlebars->31->1875"
]
},
{
@@ -25602,7 +25616,7 @@
"zh-chs": "纳瓦霍文",
"zh-cht": "納瓦霍文",
"xloc": [
- "default.handlebars->31->1238"
+ "default.handlebars->31->1239"
]
},
{
@@ -25622,7 +25636,7 @@
"zh-chs": "恩东加",
"zh-cht": "恩東加",
"xloc": [
- "default.handlebars->31->1239"
+ "default.handlebars->31->1240"
]
},
{
@@ -25642,7 +25656,7 @@
"zh-chs": "尼泊尔文",
"zh-cht": "尼泊爾文",
"xloc": [
- "default.handlebars->31->1240"
+ "default.handlebars->31->1241"
]
},
{
@@ -25662,7 +25676,7 @@
"zh-chs": "网络接口",
"zh-cht": "網絡介面",
"xloc": [
- "default.handlebars->31->823"
+ "default.handlebars->31->824"
]
},
{
@@ -25699,9 +25713,9 @@
"zh-chs": "网络",
"zh-cht": "網路",
"xloc": [
- "default-mobile.handlebars->11->412",
- "default.handlebars->31->1026",
- "default.handlebars->31->1040"
+ "default-mobile.handlebars->11->413",
+ "default.handlebars->31->1027",
+ "default.handlebars->31->1041"
]
},
{
@@ -25742,7 +25756,7 @@
"zh-chs": "生成新的2FA备份代码",
"zh-cht": "生成新的2FA備份代碼",
"xloc": [
- "default.handlebars->31->1750"
+ "default.handlebars->31->1751"
]
},
{
@@ -25750,8 +25764,8 @@
"nl": "Nieuw account",
"fr": "Nouveau compte",
"xloc": [
- "default-mobile.handlebars->11->522",
- "default.handlebars->31->2133"
+ "default-mobile.handlebars->11->523",
+ "default.handlebars->31->2134"
]
},
{
@@ -25811,10 +25825,10 @@
"zh-chs": "新设备组",
"zh-cht": "新裝置群",
"xloc": [
- "default-mobile.handlebars->11->101",
- "default.handlebars->31->1348",
- "default.handlebars->31->1360",
- "default.handlebars->31->815"
+ "default-mobile.handlebars->11->102",
+ "default.handlebars->31->1349",
+ "default.handlebars->31->1361",
+ "default.handlebars->31->816"
]
},
{
@@ -25834,10 +25848,10 @@
"zh-chs": "新建档案夹",
"zh-cht": "新建檔案夾",
"xloc": [
- "default-mobile.handlebars->11->130",
- "default-mobile.handlebars->11->352",
- "default.handlebars->31->1642",
- "default.handlebars->31->962",
+ "default-mobile.handlebars->11->131",
+ "default-mobile.handlebars->11->353",
+ "default.handlebars->31->1643",
+ "default.handlebars->31->963",
"default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3",
"default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3"
]
@@ -25879,8 +25893,8 @@
"zh-chs": "新密码*",
"zh-cht": "新密碼*",
"xloc": [
- "default.handlebars->31->320",
- "default.handlebars->31->321"
+ "default.handlebars->31->321",
+ "default.handlebars->31->322"
]
},
{
@@ -25900,7 +25914,7 @@
"zh-chs": "新保安编码",
"zh-cht": "新保安編碼",
"xloc": [
- "default-mobile.handlebars->11->68"
+ "default-mobile.handlebars->11->69"
]
},
{
@@ -25920,8 +25934,8 @@
"zh-chs": "新密码*",
"zh-cht": "新密碼*",
"xloc": [
- "default.handlebars->31->1460",
- "default.handlebars->31->1461"
+ "default.handlebars->31->1461",
+ "default.handlebars->31->1462"
]
},
{
@@ -25941,10 +25955,10 @@
"zh-chs": "新密码:",
"zh-cht": "新密碼:",
"xloc": [
- "default-mobile.handlebars->11->96",
"default-mobile.handlebars->11->97",
- "default.handlebars->31->1343",
- "default.handlebars->31->1344"
+ "default-mobile.handlebars->11->98",
+ "default.handlebars->31->1344",
+ "default.handlebars->31->1345"
]
},
{
@@ -25964,8 +25978,8 @@
"zh-chs": "没有AMT",
"zh-cht": "沒有AMT",
"xloc": [
- "default.handlebars->31->703",
- "default.handlebars->31->724"
+ "default.handlebars->31->704",
+ "default.handlebars->31->725"
]
},
{
@@ -25985,8 +25999,8 @@
"zh-chs": "没有有效保安编码",
"zh-cht": "沒有有效保安編碼",
"xloc": [
- "default-mobile.handlebars->11->66",
- "default.handlebars->31->146"
+ "default-mobile.handlebars->11->67",
+ "default.handlebars->31->147"
]
},
{
@@ -26023,10 +26037,10 @@
"zh-chs": "没有凭证",
"zh-cht": "沒有憑證",
"xloc": [
- "default-mobile.handlebars->11->250",
"default-mobile.handlebars->11->251",
- "default.handlebars->31->591",
- "default.handlebars->31->592"
+ "default-mobile.handlebars->11->252",
+ "default.handlebars->31->592",
+ "default.handlebars->31->593"
]
},
{
@@ -26046,9 +26060,9 @@
"zh-chs": "没有桌面",
"zh-cht": "沒有桌面",
"xloc": [
- "default.handlebars->31->1561",
- "default.handlebars->31->705",
- "default.handlebars->31->726"
+ "default.handlebars->31->1562",
+ "default.handlebars->31->706",
+ "default.handlebars->31->727"
]
},
{
@@ -26068,7 +26082,7 @@
"zh-chs": "不能访问桌面",
"zh-cht": "不能訪問桌面",
"xloc": [
- "default.handlebars->31->1522"
+ "default.handlebars->31->1523"
]
},
{
@@ -26088,9 +26102,9 @@
"zh-chs": "找不到事件",
"zh-cht": "找不到事件",
"xloc": [
- "default.handlebars->31->1763",
- "default.handlebars->31->2098",
- "default.handlebars->31->997"
+ "default.handlebars->31->1764",
+ "default.handlebars->31->2099",
+ "default.handlebars->31->998"
]
},
{
@@ -26110,8 +26124,8 @@
"zh-chs": "不能存取档案",
"zh-cht": "不能存取檔案",
"xloc": [
- "default-mobile.handlebars->11->479",
- "default.handlebars->31->1524"
+ "default-mobile.handlebars->11->480",
+ "default.handlebars->31->1525"
]
},
{
@@ -26131,10 +26145,10 @@
"zh-chs": "没有档案",
"zh-cht": "沒有檔案",
"xloc": [
- "default-mobile.handlebars->11->502",
- "default.handlebars->31->1563",
- "default.handlebars->31->702",
- "default.handlebars->31->723"
+ "default-mobile.handlebars->11->503",
+ "default.handlebars->31->1564",
+ "default.handlebars->31->703",
+ "default.handlebars->31->724"
]
},
{
@@ -26154,8 +26168,8 @@
"zh-chs": "无输入",
"zh-cht": "無輸入",
"xloc": [
- "default.handlebars->31->700",
- "default.handlebars->31->721"
+ "default.handlebars->31->701",
+ "default.handlebars->31->722"
]
},
{
@@ -26175,10 +26189,10 @@
"zh-chs": "没有英特尔®AMT",
"zh-cht": "沒有Intel® AMT",
"xloc": [
- "default-mobile.handlebars->11->480",
- "default-mobile.handlebars->11->503",
- "default.handlebars->31->1525",
- "default.handlebars->31->1564"
+ "default-mobile.handlebars->11->481",
+ "default-mobile.handlebars->11->504",
+ "default.handlebars->31->1526",
+ "default.handlebars->31->1565"
]
},
{
@@ -26198,7 +26212,7 @@
"zh-chs": "该组中没有英特尔®AMT设备",
"zh-cht": "該群中沒有Intel® AMT裝置",
"xloc": [
- "default-mobile.handlebars->11->160"
+ "default-mobile.handlebars->11->161"
]
},
{
@@ -26218,7 +26232,7 @@
"zh-chs": "此网格中没有英特尔®AMT设备",
"zh-cht": "此網格中沒有Intel® AMT裝置",
"xloc": [
- "default.handlebars->31->228"
+ "default.handlebars->31->229"
]
},
{
@@ -26238,7 +26252,7 @@
"zh-chs": "未配置任何键",
"zh-cht": "未配置任何鍵",
"xloc": [
- "default.handlebars->31->154"
+ "default.handlebars->31->155"
]
},
{
@@ -26258,7 +26272,7 @@
"zh-chs": "没有成员",
"zh-cht": "沒有成員",
"xloc": [
- "default.handlebars->31->1942"
+ "default.handlebars->31->1943"
]
},
{
@@ -26278,7 +26292,7 @@
"zh-chs": "没有新的设备组",
"zh-cht": "沒有新的裝置群",
"xloc": [
- "default.handlebars->31->1887"
+ "default.handlebars->31->1888"
]
},
{
@@ -26298,8 +26312,8 @@
"zh-chs": "没有政策",
"zh-cht": "沒有政策",
"xloc": [
- "default.handlebars->31->1426",
- "default.handlebars->31->1451"
+ "default.handlebars->31->1427",
+ "default.handlebars->31->1452"
]
},
{
@@ -26319,13 +26333,13 @@
"zh-chs": "沒有权限",
"zh-cht": "沒有權利",
"xloc": [
- "default-mobile.handlebars->11->116",
- "default-mobile.handlebars->11->463",
- "default-mobile.handlebars->11->510",
- "default.handlebars->31->1369",
- "default.handlebars->31->1571",
- "default.handlebars->31->716",
- "default.handlebars->31->737"
+ "default-mobile.handlebars->11->117",
+ "default-mobile.handlebars->11->464",
+ "default-mobile.handlebars->11->511",
+ "default.handlebars->31->1370",
+ "default.handlebars->31->1572",
+ "default.handlebars->31->717",
+ "default.handlebars->31->738"
]
},
{
@@ -26345,9 +26359,9 @@
"zh-chs": "没有TLS加密",
"zh-cht": "沒有TLS加密",
"xloc": [
- "default-mobile.handlebars->11->295",
- "default.handlebars->31->311",
- "default.handlebars->31->801"
+ "default-mobile.handlebars->11->296",
+ "default.handlebars->31->312",
+ "default.handlebars->31->802"
]
},
{
@@ -26367,10 +26381,10 @@
"zh-chs": "没有终端",
"zh-cht": "沒有終端",
"xloc": [
- "default-mobile.handlebars->11->501",
- "default.handlebars->31->1562",
- "default.handlebars->31->701",
- "default.handlebars->31->722"
+ "default-mobile.handlebars->11->502",
+ "default.handlebars->31->1563",
+ "default.handlebars->31->702",
+ "default.handlebars->31->723"
]
},
{
@@ -26390,8 +26404,8 @@
"zh-chs": "不能访问终端",
"zh-cht": "不能訪問終端",
"xloc": [
- "default-mobile.handlebars->11->478",
- "default.handlebars->31->1523"
+ "default-mobile.handlebars->11->479",
+ "default.handlebars->31->1524"
]
},
{
@@ -26411,7 +26425,7 @@
"zh-chs": "没有工具(MeshCmd /路由器)",
"zh-cht": "沒有工具(MeshCmd /路由器)",
"xloc": [
- "default.handlebars->31->1888"
+ "default.handlebars->31->1889"
]
},
{
@@ -26431,8 +26445,8 @@
"zh-chs": "该设备当前无可用操作。",
"zh-cht": "該設備當前無可用操作。",
"xloc": [
- "default-mobile.handlebars->11->286",
- "default.handlebars->31->785"
+ "default-mobile.handlebars->11->287",
+ "default.handlebars->31->786"
]
},
{
@@ -26452,8 +26466,8 @@
"zh-chs": "没有共同的设备组",
"zh-cht": "沒有共同的裝置群",
"xloc": [
- "default.handlebars->31->1948",
- "default.handlebars->31->2068"
+ "default.handlebars->31->1949",
+ "default.handlebars->31->2069"
]
},
{
@@ -26495,8 +26509,8 @@
"zh-chs": "没有设备",
"zh-cht": "沒有裝置",
"xloc": [
- "default-mobile.handlebars->11->162",
- "default-mobile.handlebars->11->165"
+ "default-mobile.handlebars->11->163",
+ "default-mobile.handlebars->11->166"
]
},
{
@@ -26516,7 +26530,7 @@
"zh-chs": "没有一个设备被加入任何一组,请单击一个设备的“组”以添加到一个组中。",
"zh-cht": "沒有一個裝置被加入任何一群,請單擊一個裝置的“群”以新增到一個群中。",
"xloc": [
- "default.handlebars->31->225"
+ "default.handlebars->31->226"
]
},
{
@@ -26553,7 +26567,7 @@
"zh-chs": "找不到设备。",
"zh-cht": "找不到裝置。",
"xloc": [
- "default.handlebars->31->553"
+ "default.handlebars->31->554"
]
},
{
@@ -26573,8 +26587,8 @@
"zh-chs": "没有共同的设备",
"zh-cht": "沒有共同的裝置",
"xloc": [
- "default.handlebars->31->1954",
- "default.handlebars->31->2080"
+ "default.handlebars->31->1955",
+ "default.handlebars->31->2081"
]
},
{
@@ -26594,7 +26608,7 @@
"zh-chs": "该设备组中没有设备。",
"zh-cht": "該裝置群中沒有裝置。",
"xloc": [
- "default.handlebars->31->1614"
+ "default.handlebars->31->1615"
]
},
{
@@ -26614,8 +26628,8 @@
"zh-chs": "该组中没有设备",
"zh-cht": "該群中沒有裝置",
"xloc": [
- "default-mobile.handlebars->11->161",
- "default.handlebars->31->230"
+ "default-mobile.handlebars->11->162",
+ "default.handlebars->31->231"
]
},
{
@@ -26635,9 +26649,9 @@
"zh-chs": "没有与此搜索匹配的设备。",
"zh-cht": "沒有與此搜索匹配的裝置。",
"xloc": [
- "default-mobile.handlebars->11->159",
- "default-mobile.handlebars->11->163",
- "default.handlebars->31->226"
+ "default-mobile.handlebars->11->160",
+ "default-mobile.handlebars->11->164",
+ "default.handlebars->31->227"
]
},
{
@@ -26657,7 +26671,7 @@
"zh-chs": "找不到带有标签的设备。",
"zh-cht": "找不到帶有標籤的裝置。",
"xloc": [
- "default.handlebars->31->235"
+ "default.handlebars->31->236"
]
},
{
@@ -26677,7 +26691,7 @@
"zh-chs": "找不到文件",
"zh-cht": "找不到文件",
"xloc": [
- "default.handlebars->31->948"
+ "default.handlebars->31->949"
]
},
{
@@ -26697,7 +26711,7 @@
"zh-chs": "找不到群组。",
"zh-cht": "找不到群組。",
"xloc": [
- "default.handlebars->31->1891"
+ "default.handlebars->31->1892"
]
},
{
@@ -26717,8 +26731,8 @@
"zh-chs": "没有此设备的讯息。",
"zh-cht": "沒有此裝置的訊息。",
"xloc": [
- "default-mobile.handlebars->11->451",
- "default.handlebars->31->1079"
+ "default-mobile.handlebars->11->452",
+ "default.handlebars->31->1080"
]
},
{
@@ -26726,8 +26740,8 @@
"fr": "Aucun raccourci clavier défini",
"nl": "Geen toetsenbord snelkoppelingen gedefinieerd",
"xloc": [
- "default-mobile.handlebars->11->340",
- "default.handlebars->31->908"
+ "default-mobile.handlebars->11->341",
+ "default.handlebars->31->909"
]
},
{
@@ -26747,7 +26761,7 @@
"zh-chs": "找不到位置。",
"zh-cht": "找不到位置。",
"xloc": [
- "default.handlebars->31->555"
+ "default.handlebars->31->556"
]
},
{
@@ -26767,7 +26781,7 @@
"zh-chs": "没有适用于此设备的网络接口讯息。",
"zh-cht": "沒有適用於此裝置的網絡介面訊息。",
"xloc": [
- "default.handlebars->31->116"
+ "default.handlebars->31->117"
]
},
{
@@ -26787,7 +26801,7 @@
"zh-chs": "没有其他相同类型的设备组。",
"zh-cht": "沒有其他相同類型的裝置群。",
"xloc": [
- "default.handlebars->31->818"
+ "default.handlebars->31->819"
]
},
{
@@ -26795,8 +26809,8 @@
"nl": "Geen telefoonnummer voor deze gebruiker",
"fr": "Aucun numéro de téléphone pour cet utilisateur",
"xloc": [
- "default-mobile.handlebars->11->553",
- "default.handlebars->31->2164"
+ "default-mobile.handlebars->11->554",
+ "default.handlebars->31->2165"
]
},
{
@@ -26836,7 +26850,7 @@
"zh-chs": "没有录音。",
"zh-cht": "沒有錄音。",
"xloc": [
- "default.handlebars->31->2100"
+ "default.handlebars->31->2101"
]
},
{
@@ -26856,7 +26870,7 @@
"zh-chs": "没有服务器权限",
"zh-cht": "沒有伺服器權限",
"xloc": [
- "default.handlebars->31->1974"
+ "default.handlebars->31->1975"
]
},
{
@@ -26876,7 +26890,7 @@
"zh-chs": "没有用户组成员身份",
"zh-cht": "沒有用戶群成員身份",
"xloc": [
- "default.handlebars->31->2074"
+ "default.handlebars->31->2075"
]
},
{
@@ -26884,8 +26898,8 @@
"nl": "Geen gebruikersbeheerrechten",
"fr": "Aucun droit de gestion des utilisateurs",
"xloc": [
- "default-mobile.handlebars->11->551",
- "default.handlebars->31->2162"
+ "default-mobile.handlebars->11->552",
+ "default.handlebars->31->2163"
]
},
{
@@ -26905,7 +26919,7 @@
"zh-chs": "未找到相应的用户。",
"zh-cht": "未找到相應的用戶。",
"xloc": [
- "default.handlebars->31->1795"
+ "default.handlebars->31->1796"
]
},
{
@@ -26925,7 +26939,7 @@
"zh-chs": "没有拥有特殊设备权限的用户",
"zh-cht": "沒有擁有特殊裝置權限的用戶",
"xloc": [
- "default.handlebars->31->688"
+ "default.handlebars->31->689"
]
},
{
@@ -26986,44 +27000,44 @@
"zh-chs": "没有",
"zh-cht": "沒有",
"xloc": [
- "default-mobile.handlebars->11->126",
- "default-mobile.handlebars->11->167",
+ "default-mobile.handlebars->11->127",
"default-mobile.handlebars->11->168",
- "default-mobile.handlebars->11->227",
- "default-mobile.handlebars->11->232",
- "default-mobile.handlebars->11->234",
- "default-mobile.handlebars->11->266",
- "default-mobile.handlebars->11->330",
- "default-mobile.handlebars->11->350",
- "default-mobile.handlebars->11->457",
- "default.handlebars->31->1390",
- "default.handlebars->31->1397",
- "default.handlebars->31->1405",
- "default.handlebars->31->1417",
- "default.handlebars->31->1422",
- "default.handlebars->31->1424",
- "default.handlebars->31->1605",
- "default.handlebars->31->1624",
- "default.handlebars->31->1629",
- "default.handlebars->31->1771",
- "default.handlebars->31->187",
- "default.handlebars->31->1912",
- "default.handlebars->31->1914",
- "default.handlebars->31->1931",
- "default.handlebars->31->1993",
- "default.handlebars->31->2002",
- "default.handlebars->31->2006",
- "default.handlebars->31->2018",
- "default.handlebars->31->206",
- "default.handlebars->31->248",
+ "default-mobile.handlebars->11->169",
+ "default-mobile.handlebars->11->228",
+ "default-mobile.handlebars->11->233",
+ "default-mobile.handlebars->11->235",
+ "default-mobile.handlebars->11->267",
+ "default-mobile.handlebars->11->331",
+ "default-mobile.handlebars->11->351",
+ "default-mobile.handlebars->11->458",
+ "default.handlebars->31->1391",
+ "default.handlebars->31->1398",
+ "default.handlebars->31->1406",
+ "default.handlebars->31->1418",
+ "default.handlebars->31->1423",
+ "default.handlebars->31->1425",
+ "default.handlebars->31->1606",
+ "default.handlebars->31->1625",
+ "default.handlebars->31->1630",
+ "default.handlebars->31->1772",
+ "default.handlebars->31->188",
+ "default.handlebars->31->1913",
+ "default.handlebars->31->1915",
+ "default.handlebars->31->1932",
+ "default.handlebars->31->1994",
+ "default.handlebars->31->2003",
+ "default.handlebars->31->2007",
+ "default.handlebars->31->2019",
+ "default.handlebars->31->207",
"default.handlebars->31->249",
- "default.handlebars->31->562",
- "default.handlebars->31->573",
+ "default.handlebars->31->250",
+ "default.handlebars->31->563",
"default.handlebars->31->574",
- "default.handlebars->31->620",
- "default.handlebars->31->633",
- "default.handlebars->31->73",
- "default.handlebars->31->897",
+ "default.handlebars->31->575",
+ "default.handlebars->31->621",
+ "default.handlebars->31->634",
+ "default.handlebars->31->74",
+ "default.handlebars->31->898",
"default.handlebars->container->column_l->p41->3->3->p41traceStatus"
]
},
@@ -27064,7 +27078,7 @@
"zh-chs": "挪威文",
"zh-cht": "挪威文",
"xloc": [
- "default.handlebars->31->1241"
+ "default.handlebars->31->1242"
]
},
{
@@ -27084,7 +27098,7 @@
"zh-chs": "挪威文(Bokmal)",
"zh-cht": "挪威文(Bokmal)",
"xloc": [
- "default.handlebars->31->1242"
+ "default.handlebars->31->1243"
]
},
{
@@ -27104,7 +27118,7 @@
"zh-chs": "挪威文(尼诺斯克)",
"zh-cht": "挪威文(尼諾斯克)",
"xloc": [
- "default.handlebars->31->1243"
+ "default.handlebars->31->1244"
]
},
{
@@ -27124,7 +27138,7 @@
"zh-chs": "未激活",
"zh-cht": "未激活",
"xloc": [
- "default.handlebars->31->1043"
+ "default.handlebars->31->1044"
]
},
{
@@ -27144,9 +27158,9 @@
"zh-chs": "未激活(输入)",
"zh-cht": "未啟動(輸入)",
"xloc": [
- "default-mobile.handlebars->11->240",
- "default-mobile.handlebars->11->416",
- "default.handlebars->31->579"
+ "default-mobile.handlebars->11->241",
+ "default-mobile.handlebars->11->417",
+ "default.handlebars->31->580"
]
},
{
@@ -27166,9 +27180,9 @@
"zh-chs": "未激活(预)",
"zh-cht": "未啟動(預)",
"xloc": [
- "default-mobile.handlebars->11->239",
- "default-mobile.handlebars->11->415",
- "default.handlebars->31->578"
+ "default-mobile.handlebars->11->240",
+ "default-mobile.handlebars->11->416",
+ "default.handlebars->31->579"
]
},
{
@@ -27188,8 +27202,8 @@
"zh-chs": "未连接",
"zh-cht": "未連接",
"xloc": [
- "default.handlebars->31->1601",
- "default.handlebars->31->1609"
+ "default.handlebars->31->1602",
+ "default.handlebars->31->1610"
]
},
{
@@ -27209,15 +27223,15 @@
"zh-chs": "未知",
"zh-cht": "未知",
"xloc": [
- "default-mobile.handlebars->11->426",
- "default.handlebars->31->1054"
+ "default-mobile.handlebars->11->427",
+ "default.handlebars->31->1055"
]
},
{
"en": "Not allowed, view only",
"nl": "Niet toegestaan, alleen kijken",
"xloc": [
- "default.handlebars->31->199"
+ "default.handlebars->31->200"
]
},
{
@@ -27237,7 +27251,7 @@
"zh-chs": "不在服务器上",
"zh-cht": "不在伺服器上",
"xloc": [
- "default.handlebars->31->2116"
+ "default.handlebars->31->2117"
]
},
{
@@ -27257,8 +27271,8 @@
"zh-chs": "没有设置",
"zh-cht": "沒有設置",
"xloc": [
- "default.handlebars->31->1980",
- "default.handlebars->31->1981"
+ "default.handlebars->31->1981",
+ "default.handlebars->31->1982"
]
},
{
@@ -27278,7 +27292,7 @@
"zh-chs": "未经审核的",
"zh-cht": "未經審核的",
"xloc": [
- "default.handlebars->31->2050"
+ "default.handlebars->31->2051"
]
},
{
@@ -27298,12 +27312,12 @@
"zh-chs": "笔记",
"zh-cht": "筆記",
"xloc": [
- "default.handlebars->31->1433",
- "default.handlebars->31->2026",
- "default.handlebars->31->638",
- "default.handlebars->31->710",
- "default.handlebars->31->731",
- "default.handlebars->31->741"
+ "default.handlebars->31->1434",
+ "default.handlebars->31->2027",
+ "default.handlebars->31->639",
+ "default.handlebars->31->711",
+ "default.handlebars->31->732",
+ "default.handlebars->31->742"
]
},
{
@@ -27343,8 +27357,8 @@
"zh-chs": "通知设置",
"zh-cht": "通知設定",
"xloc": [
- "default.handlebars->31->1330",
- "default.handlebars->31->1600",
+ "default.handlebars->31->1331",
+ "default.handlebars->31->1601",
"default.handlebars->container->column_l->p2->p2info->p2AccountActions->3->10"
]
},
@@ -27365,7 +27379,7 @@
"zh-chs": "通知设置还必须在帐户设置中启用。",
"zh-cht": "通知設定還必須在帳戶設定中啟用。",
"xloc": [
- "default.handlebars->31->1596"
+ "default.handlebars->31->1597"
]
},
{
@@ -27385,7 +27399,7 @@
"zh-chs": "通知音效。",
"zh-cht": "通知音效。",
"xloc": [
- "default.handlebars->31->1325"
+ "default.handlebars->31->1326"
]
},
{
@@ -27405,7 +27419,7 @@
"zh-chs": "通知",
"zh-cht": "通知",
"xloc": [
- "default.handlebars->31->1423"
+ "default.handlebars->31->1424"
]
},
{
@@ -27425,8 +27439,8 @@
"zh-chs": "通知",
"zh-cht": "通知",
"xloc": [
- "default.handlebars->31->203",
- "default.handlebars->31->2032"
+ "default.handlebars->31->2033",
+ "default.handlebars->31->204"
]
},
{
@@ -27446,7 +27460,7 @@
"zh-chs": "仅通知",
"zh-cht": "只通知",
"xloc": [
- "default.handlebars->31->774"
+ "default.handlebars->31->775"
]
},
{
@@ -27466,9 +27480,9 @@
"zh-chs": "通知使用者",
"zh-cht": "通知使用者",
"xloc": [
- "default.handlebars->31->1490",
- "default.handlebars->31->1494",
- "default.handlebars->31->1497"
+ "default.handlebars->31->1491",
+ "default.handlebars->31->1495",
+ "default.handlebars->31->1498"
]
},
{
@@ -27488,7 +27502,7 @@
"zh-chs": "通知{0}",
"zh-cht": "通知{0}",
"xloc": [
- "default.handlebars->31->1834"
+ "default.handlebars->31->1835"
]
},
{
@@ -27496,7 +27510,7 @@
"fr": "Null",
"nl": "Null",
"xloc": [
- "default.handlebars->31->2215"
+ "default.handlebars->31->2216"
]
},
{
@@ -27516,11 +27530,11 @@
"zh-chs": "OK",
"zh-cht": "OK",
"xloc": [
- "default-mobile.handlebars->11->93",
+ "default-mobile.handlebars->11->94",
"default-mobile.handlebars->container->page_content->column_l->p10->p10dialog->5",
"default-mobile.handlebars->dialog->idx_dlgButtonBar",
- "default.handlebars->31->1381",
- "default.handlebars->31->608",
+ "default.handlebars->31->1382",
+ "default.handlebars->31->609",
"default.handlebars->container->dialog->idx_dlgButtonBar",
"desktop.handlebars->p11->dialog->idx_dlgButtonBar",
"login-mobile.handlebars->dialog->idx_dlgButtonBar",
@@ -27549,7 +27563,7 @@
"zh-cht": "操作系統名稱",
"xloc": [
"default-mobile.handlebars->container->page_content->column_l->p2->xdevicesBar->1->5",
- "default.handlebars->31->570",
+ "default.handlebars->31->571",
"default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar->9->1"
]
},
@@ -27570,7 +27584,7 @@
"zh-chs": "欧舒丹",
"zh-cht": "歐舒丹",
"xloc": [
- "default.handlebars->31->1244"
+ "default.handlebars->31->1245"
]
},
{
@@ -27590,8 +27604,8 @@
"zh-chs": "发生在{0}",
"zh-cht": "發生在{0}",
"xloc": [
- "default-mobile.handlebars->11->519",
- "default.handlebars->31->2130"
+ "default-mobile.handlebars->11->520",
+ "default.handlebars->31->2131"
]
},
{
@@ -27631,7 +27645,7 @@
"zh-chs": "离线用户",
"zh-cht": "離線用戶",
"xloc": [
- "default.handlebars->31->1792"
+ "default.handlebars->31->1793"
]
},
{
@@ -27651,7 +27665,7 @@
"zh-chs": "旧密码",
"zh-cht": "舊密碼",
"xloc": [
- "default.handlebars->31->319"
+ "default.handlebars->31->320"
]
},
{
@@ -27671,8 +27685,8 @@
"zh-chs": "旧密码:",
"zh-cht": "舊密碼:",
"xloc": [
- "default-mobile.handlebars->11->95",
- "default.handlebars->31->1342"
+ "default-mobile.handlebars->11->96",
+ "default.handlebars->31->1343"
]
},
{
@@ -27692,7 +27706,7 @@
"zh-chs": "一天",
"zh-cht": "一天",
"xloc": [
- "default.handlebars->31->1768"
+ "default.handlebars->31->1769"
]
},
{
@@ -27712,8 +27726,8 @@
"zh-chs": "一次性保安编码可以用作辅助身份验证。生成一组,打印并保存在安全的地方。",
"zh-cht": "一次性保安編碼可以用作輔助身份驗證。生成一群,打印並保存在安全的地方。",
"xloc": [
- "default-mobile.handlebars->11->65",
- "default.handlebars->31->145"
+ "default-mobile.handlebars->11->66",
+ "default.handlebars->31->146"
]
},
{
@@ -27755,7 +27769,7 @@
"zh-chs": "在线用户",
"zh-cht": "在線用戶",
"xloc": [
- "default.handlebars->31->1791"
+ "default.handlebars->31->1792"
]
},
{
@@ -27775,9 +27789,9 @@
"zh-chs": "只能编辑小于200k的档案。",
"zh-cht": "只能編輯小於200k的檔案。",
"xloc": [
- "default-mobile.handlebars->11->360",
- "default.handlebars->31->533",
- "default.handlebars->31->970"
+ "default-mobile.handlebars->11->361",
+ "default.handlebars->31->534",
+ "default.handlebars->31->971"
]
},
{
@@ -27838,7 +27852,7 @@
"zh-chs": "在设备上打开页面",
"zh-cht": "在裝置上打開頁面",
"xloc": [
- "default.handlebars->31->742"
+ "default.handlebars->31->743"
]
},
{
@@ -27879,7 +27893,7 @@
"zh-chs": "打开XTerm终端",
"zh-cht": "打開XTerm終端",
"xloc": [
- "default.handlebars->31->656"
+ "default.handlebars->31->657"
]
},
{
@@ -27939,7 +27953,7 @@
"zh-chs": "开头:{0}",
"zh-cht": "開場:{0}",
"xloc": [
- "default.handlebars->31->1678"
+ "default.handlebars->31->1679"
]
},
{
@@ -27959,12 +27973,12 @@
"zh-chs": "操作系统",
"zh-cht": "操作系統",
"xloc": [
- "default-mobile.handlebars->11->384",
- "default.handlebars->31->1002",
- "default.handlebars->31->338",
- "default.handlebars->31->378",
- "default.handlebars->31->605",
- "default.handlebars->31->841"
+ "default-mobile.handlebars->11->385",
+ "default.handlebars->31->1003",
+ "default.handlebars->31->339",
+ "default.handlebars->31->379",
+ "default.handlebars->31->606",
+ "default.handlebars->31->842"
]
},
{
@@ -27984,12 +27998,12 @@
"zh-chs": "运作",
"zh-cht": "操作",
"xloc": [
- "default-mobile.handlebars->11->285",
- "default.handlebars->31->1818",
- "default.handlebars->31->1899",
- "default.handlebars->31->467",
- "default.handlebars->31->482",
- "default.handlebars->31->784"
+ "default-mobile.handlebars->11->286",
+ "default.handlebars->31->1819",
+ "default.handlebars->31->1900",
+ "default.handlebars->31->468",
+ "default.handlebars->31->483",
+ "default.handlebars->31->785"
]
},
{
@@ -28026,7 +28040,7 @@
"zh-chs": "奥里亚",
"zh-cht": "奧里亞",
"xloc": [
- "default.handlebars->31->1245"
+ "default.handlebars->31->1246"
]
},
{
@@ -28046,7 +28060,7 @@
"zh-chs": "奥罗莫",
"zh-cht": "奧羅莫",
"xloc": [
- "default.handlebars->31->1246"
+ "default.handlebars->31->1247"
]
},
{
@@ -28105,7 +28119,7 @@
"zh-chs": "过时的",
"zh-cht": "過時的",
"xloc": [
- "default.handlebars->31->607"
+ "default.handlebars->31->608"
]
},
{
@@ -28125,7 +28139,7 @@
"zh-chs": "是否覆盖文件存在?",
"zh-cht": "是否覆蓋文件存在?",
"xloc": [
- "default.handlebars->31->498"
+ "default.handlebars->31->499"
]
},
{
@@ -28145,7 +28159,7 @@
"zh-chs": "自己的过程",
"zh-cht": "自己的過程",
"xloc": [
- "default.handlebars->31->921"
+ "default.handlebars->31->922"
]
},
{
@@ -28165,7 +28179,7 @@
"zh-chs": "PID",
"zh-cht": "PID",
"xloc": [
- "default.handlebars->31->917",
+ "default.handlebars->31->918",
"default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsProcessTab->deskToolsHeader->1"
]
},
@@ -28174,8 +28188,8 @@
"fr": "Bas de page",
"nl": "Page Down",
"xloc": [
- "default-mobile.handlebars->11->325",
- "default.handlebars->31->892"
+ "default-mobile.handlebars->11->326",
+ "default.handlebars->31->893"
]
},
{
@@ -28183,8 +28197,8 @@
"fr": "Haut de page",
"nl": "Page Up",
"xloc": [
- "default-mobile.handlebars->11->324",
- "default.handlebars->31->891"
+ "default-mobile.handlebars->11->325",
+ "default.handlebars->31->892"
]
},
{
@@ -28204,8 +28218,8 @@
"zh-chs": "零件号",
"zh-cht": "零件號",
"xloc": [
- "default-mobile.handlebars->11->444",
- "default.handlebars->31->1072"
+ "default-mobile.handlebars->11->445",
+ "default.handlebars->31->1073"
]
},
{
@@ -28225,7 +28239,7 @@
"zh-chs": "部分的",
"zh-cht": "部分的",
"xloc": [
- "default.handlebars->31->1806"
+ "default.handlebars->31->1807"
]
},
{
@@ -28279,9 +28293,9 @@
"zh-chs": "部分权限",
"zh-cht": "部分權限",
"xloc": [
- "default-mobile.handlebars->11->114",
- "default-mobile.handlebars->11->461",
- "default.handlebars->31->1367"
+ "default-mobile.handlebars->11->115",
+ "default-mobile.handlebars->11->462",
+ "default.handlebars->31->1368"
]
},
{
@@ -28301,7 +28315,7 @@
"zh-chs": "部分权限",
"zh-cht": "部分權限",
"xloc": [
- "default.handlebars->31->1977"
+ "default.handlebars->31->1978"
]
},
{
@@ -28341,16 +28355,16 @@
"zh-chs": "密码",
"zh-cht": "密碼",
"xloc": [
- "default-mobile.handlebars->11->293",
- "default.handlebars->31->1457",
- "default.handlebars->31->1862",
+ "default-mobile.handlebars->11->294",
+ "default.handlebars->31->1458",
"default.handlebars->31->1863",
- "default.handlebars->31->1998",
- "default.handlebars->31->2000",
- "default.handlebars->31->2053",
+ "default.handlebars->31->1864",
+ "default.handlebars->31->1999",
+ "default.handlebars->31->2001",
"default.handlebars->31->2054",
- "default.handlebars->31->309",
- "default.handlebars->31->799",
+ "default.handlebars->31->2055",
+ "default.handlebars->31->310",
+ "default.handlebars->31->800",
"login2.handlebars->centralTable->1->0->logincell->loginpanel->1->loginuserpassdiv->1->1->2->1",
"login2.handlebars->centralTable->1->0->logincell->loginpanel->1->loginuserpassdiv->1->1->2->1",
"mstsc.handlebars->main->1->3->1->6->1->0",
@@ -28458,8 +28472,8 @@
"nl": "Wachtwoord gewijzigd.",
"fr": "Mot de passe changé.",
"xloc": [
- "default-mobile.handlebars->11->547",
- "default.handlebars->31->2158"
+ "default-mobile.handlebars->11->548",
+ "default.handlebars->31->2159"
]
},
{
@@ -28500,7 +28514,7 @@
"zh-chs": "密码提示",
"zh-cht": "密碼提示",
"xloc": [
- "default.handlebars->31->2055"
+ "default.handlebars->31->2056"
]
},
{
@@ -28520,8 +28534,8 @@
"zh-chs": "密码提示:",
"zh-cht": "密碼提示:",
"xloc": [
- "default-mobile.handlebars->11->98",
- "default.handlebars->31->1345"
+ "default-mobile.handlebars->11->99",
+ "default.handlebars->31->1346"
]
},
{
@@ -28598,10 +28612,10 @@
"zh-cht": "密碼:",
"xloc": [
"account-invite.html->2->5",
- "default-mobile.handlebars->11->90",
"default-mobile.handlebars->11->91",
- "default.handlebars->31->1337",
+ "default-mobile.handlebars->11->92",
"default.handlebars->31->1338",
+ "default.handlebars->31->1339",
"login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1->4->1",
"login-mobile.handlebars->container->page_content->column_l->1->1->0->1->createpanel->1->1->9->1->6->1",
"login-mobile.handlebars->container->page_content->column_l->1->1->0->1->loginpanel->1->7->1->2->1",
@@ -28635,13 +28649,13 @@
"zh-chs": "粘贴",
"zh-cht": "糊",
"xloc": [
- "default-mobile.handlebars->11->138",
- "default-mobile.handlebars->11->365",
+ "default-mobile.handlebars->11->139",
+ "default-mobile.handlebars->11->366",
"default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->3",
"default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->3",
- "default.handlebars->31->1651",
- "default.handlebars->31->944",
- "default.handlebars->31->976",
+ "default.handlebars->31->1652",
+ "default.handlebars->31->945",
+ "default.handlebars->31->977",
"default.handlebars->container->column_l->p12->termTable->1->1->6->1->3",
"default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3",
"default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3",
@@ -28707,7 +28721,7 @@
"zh-chs": "执行代理指令",
"zh-cht": "執行代理指令",
"xloc": [
- "default.handlebars->31->1088"
+ "default.handlebars->31->1089"
]
},
{
@@ -28761,8 +28775,8 @@
"zh-chs": "执行英特尔®AMT激活和配置。",
"zh-cht": "執行英特爾®AMT激活和配置。",
"xloc": [
- "default.handlebars->31->1437",
- "default.handlebars->31->297"
+ "default.handlebars->31->1438",
+ "default.handlebars->31->298"
]
},
{
@@ -28850,7 +28864,7 @@
"zh-chs": "执行批量设备通知",
"zh-cht": "執行批量設備通知",
"xloc": [
- "default.handlebars->31->489"
+ "default.handlebars->31->490"
]
},
{
@@ -28870,7 +28884,7 @@
"zh-chs": "执行批量设备标签操作",
"zh-cht": "執行批次裝置標籤操作",
"xloc": [
- "default.handlebars->31->481"
+ "default.handlebars->31->482"
]
},
{
@@ -28890,7 +28904,7 @@
"zh-chs": "在设备上执行电源操作",
"zh-cht": "在裝置上執行電源操作",
"xloc": [
- "default.handlebars->31->637",
+ "default.handlebars->31->638",
"default.handlebars->container->column_l->p11->deskarea0->deskarea1->1",
"default.handlebars->container->column_l->p12->termTable->1->1->0->1->1",
"default.handlebars->container->column_l->p13->p13toolbar->1->0->1->1"
@@ -28913,7 +28927,7 @@
"zh-chs": "执行电源操作= {0},强制执行= {1}",
"zh-cht": "執行電源操作= {0},強制執行= {1}",
"xloc": [
- "default.handlebars->31->1683"
+ "default.handlebars->31->1684"
]
},
{
@@ -28921,8 +28935,8 @@
"nl": "Toestemming geweigerd",
"fr": "Permission refusée",
"xloc": [
- "default-mobile.handlebars->11->528",
- "default.handlebars->31->2139"
+ "default-mobile.handlebars->11->529",
+ "default.handlebars->31->2140"
]
},
{
@@ -28942,9 +28956,9 @@
"zh-chs": "权限",
"zh-cht": "權限",
"xloc": [
- "default-mobile.handlebars->11->513",
- "default.handlebars->31->1574",
- "default.handlebars->31->1790"
+ "default-mobile.handlebars->11->514",
+ "default.handlebars->31->1575",
+ "default.handlebars->31->1791"
]
},
{
@@ -28964,7 +28978,7 @@
"zh-chs": "波斯/伊朗",
"zh-cht": "波斯/伊朗",
"xloc": [
- "default.handlebars->31->1247"
+ "default.handlebars->31->1248"
]
},
{
@@ -28984,13 +28998,13 @@
"zh-chs": "电话通知",
"zh-cht": "電話通知",
"xloc": [
- "default-mobile.handlebars->11->72",
- "default-mobile.handlebars->11->75",
- "default-mobile.handlebars->11->77",
- "default.handlebars->31->1099",
- "default.handlebars->31->1102",
- "default.handlebars->31->169",
- "default.handlebars->31->2045"
+ "default-mobile.handlebars->11->73",
+ "default-mobile.handlebars->11->76",
+ "default-mobile.handlebars->11->78",
+ "default.handlebars->31->1100",
+ "default.handlebars->31->1103",
+ "default.handlebars->31->170",
+ "default.handlebars->31->2046"
]
},
{
@@ -29010,7 +29024,7 @@
"zh-chs": "电话号码",
"zh-cht": "電話號碼",
"xloc": [
- "default.handlebars->31->1992"
+ "default.handlebars->31->1993"
]
},
{
@@ -29030,9 +29044,9 @@
"zh-chs": "电话号码:",
"zh-cht": "電話號碼:",
"xloc": [
- "default-mobile.handlebars->11->76",
- "default.handlebars->31->1101",
- "default.handlebars->31->2044"
+ "default-mobile.handlebars->11->77",
+ "default.handlebars->31->1102",
+ "default.handlebars->31->2045"
]
},
{
@@ -29069,7 +29083,7 @@
"zh-chs": "将节点放在这里",
"zh-cht": "將節點放在這裡",
"xloc": [
- "default.handlebars->31->548"
+ "default.handlebars->31->549"
]
},
{
@@ -29109,7 +29123,7 @@
"zh-chs": "请添加两因素认证的备用验证码。如果丢失了当前因素,则无法恢复该帐户。",
"zh-cht": "請新增二因子鑑別的備用鑑別碼。如果丟失了當前因子,則無法恢復該帳戶。",
"xloc": [
- "default.handlebars->31->59"
+ "default.handlebars->31->60"
]
},
{
@@ -29129,7 +29143,7 @@
"zh-chs": "请注意,不建议降级。请仅在最近的升级后发生问题时才这样做。",
"zh-cht": "請注意,不建議降級。請僅在最近的升級後發生問題時才這樣做。",
"xloc": [
- "default.handlebars->31->215"
+ "default.handlebars->31->216"
]
},
{
@@ -29190,8 +29204,8 @@
"zh-chs": "请等待几分钟以接收验证。",
"zh-cht": "請等待幾分鐘以接收驗證。",
"xloc": [
- "default-mobile.handlebars->11->86",
- "default.handlebars->31->1332"
+ "default-mobile.handlebars->11->87",
+ "default.handlebars->31->1333"
]
},
{
@@ -29211,8 +29225,8 @@
"zh-chs": "插件指令",
"zh-cht": "外掛指令",
"xloc": [
- "default.handlebars->31->214",
- "default.handlebars->31->2250"
+ "default.handlebars->31->215",
+ "default.handlebars->31->2251"
]
},
{
@@ -29232,7 +29246,7 @@
"zh-chs": "插件错误",
"zh-cht": "外掛錯誤",
"xloc": [
- "default.handlebars->31->220"
+ "default.handlebars->31->221"
]
},
{
@@ -29252,7 +29266,7 @@
"zh-chs": "PluginHandler无法事件消息:",
"zh-cht": "PluginHandler無法事件消息:",
"xloc": [
- "default.handlebars->31->188"
+ "default.handlebars->31->189"
]
},
{
@@ -29355,8 +29369,8 @@
"zh-chs": "政策",
"zh-cht": "政策",
"xloc": [
- "default-mobile.handlebars->11->113",
- "default.handlebars->31->1366"
+ "default-mobile.handlebars->11->114",
+ "default.handlebars->31->1367"
]
},
{
@@ -29376,7 +29390,7 @@
"zh-chs": "波兰文",
"zh-cht": "波蘭文",
"xloc": [
- "default.handlebars->31->1248"
+ "default.handlebars->31->1249"
]
},
{
@@ -29396,7 +29410,7 @@
"zh-chs": "葡萄牙文",
"zh-cht": "葡萄牙文",
"xloc": [
- "default.handlebars->31->1249"
+ "default.handlebars->31->1250"
]
},
{
@@ -29416,7 +29430,7 @@
"zh-chs": "葡萄牙文(巴西)",
"zh-cht": "葡萄牙文(巴西)",
"xloc": [
- "default.handlebars->31->1250"
+ "default.handlebars->31->1251"
]
},
{
@@ -29477,7 +29491,7 @@
"zh-chs": "电源状态",
"zh-cht": "電源狀態",
"xloc": [
- "default-mobile.handlebars->11->291"
+ "default-mobile.handlebars->11->292"
]
},
{
@@ -29497,7 +29511,7 @@
"zh-chs": "电源状态",
"zh-cht": "電源狀態",
"xloc": [
- "default.handlebars->31->1607",
+ "default.handlebars->31->1608",
"default.handlebars->container->column_l->p21->3->1->meshPowerChartDiv->1"
]
},
@@ -29518,10 +29532,10 @@
"zh-chs": "关机",
"zh-cht": "關機",
"xloc": [
- "default-mobile.handlebars->11->197",
- "default-mobile.handlebars->11->284",
+ "default-mobile.handlebars->11->198",
+ "default-mobile.handlebars->11->285",
"default.handlebars->31->6",
- "default.handlebars->31->781"
+ "default.handlebars->31->782"
]
},
{
@@ -29541,7 +29555,7 @@
"zh-chs": "关闭设备",
"zh-cht": "關閉裝置",
"xloc": [
- "default.handlebars->31->460"
+ "default.handlebars->31->461"
]
},
{
@@ -29561,10 +29575,10 @@
"zh-chs": "有电源",
"zh-cht": "有電源",
"xloc": [
- "default-mobile.handlebars->11->192",
- "default-mobile.handlebars->11->199",
+ "default-mobile.handlebars->11->193",
+ "default-mobile.handlebars->11->200",
"default.handlebars->31->1",
- "default.handlebars->31->421"
+ "default.handlebars->31->422"
]
},
{
@@ -29584,7 +29598,7 @@
"zh-chs": "预激活",
"zh-cht": "預激活",
"xloc": [
- "default.handlebars->31->1044"
+ "default.handlebars->31->1045"
]
},
{
@@ -29604,9 +29618,9 @@
"zh-chs": "存在",
"zh-cht": "存在",
"xloc": [
- "default-mobile.handlebars->11->198",
- "default-mobile.handlebars->11->205",
- "default.handlebars->31->433",
+ "default-mobile.handlebars->11->199",
+ "default-mobile.handlebars->11->206",
+ "default.handlebars->31->434",
"default.handlebars->31->7"
]
},
@@ -29627,7 +29641,7 @@
"zh-chs": "存在于服务器上",
"zh-cht": "存在於伺服器上",
"xloc": [
- "default.handlebars->31->2115"
+ "default.handlebars->31->2116"
]
},
{
@@ -29710,7 +29724,7 @@
"zh-chs": "现在按下按键。",
"zh-cht": "現在按下按鍵。",
"xloc": [
- "default.handlebars->31->163"
+ "default.handlebars->31->164"
]
},
{
@@ -29750,7 +29764,7 @@
"zh-chs": "隐私栏",
"zh-cht": "隱私欄",
"xloc": [
- "default.handlebars->31->205"
+ "default.handlebars->31->206"
]
},
{
@@ -29770,7 +29784,7 @@
"zh-chs": "进程控制",
"zh-cht": "進程控制",
"xloc": [
- "default.handlebars->31->931",
+ "default.handlebars->31->932",
"desktop.handlebars->3->24"
]
},
@@ -29811,7 +29825,7 @@
"zh-chs": "处理控制台命令:“{0}”",
"zh-cht": "處理控制台命令:“{0}”",
"xloc": [
- "default.handlebars->31->1675"
+ "default.handlebars->31->1676"
]
},
{
@@ -29831,7 +29845,7 @@
"zh-chs": "提示",
"zh-cht": "提示",
"xloc": [
- "default.handlebars->31->204"
+ "default.handlebars->31->205"
]
},
{
@@ -29851,7 +29865,7 @@
"zh-chs": "用户同意提示",
"zh-cht": "用戶同意提示",
"xloc": [
- "default.handlebars->31->773"
+ "default.handlebars->31->774"
]
},
{
@@ -29871,9 +29885,9 @@
"zh-chs": "用户同意提示",
"zh-cht": "用戶同意提示",
"xloc": [
- "default.handlebars->31->1491",
- "default.handlebars->31->1495",
- "default.handlebars->31->1498"
+ "default.handlebars->31->1492",
+ "default.handlebars->31->1496",
+ "default.handlebars->31->1499"
]
},
{
@@ -29893,7 +29907,7 @@
"zh-chs": "协议",
"zh-cht": "協議",
"xloc": [
- "default.handlebars->31->2113",
+ "default.handlebars->31->2114",
"player.handlebars->3->16"
]
},
@@ -29931,8 +29945,8 @@
"zh-chs": "配置状态",
"zh-cht": "配置狀態",
"xloc": [
- "default-mobile.handlebars->11->420",
- "default.handlebars->31->1048"
+ "default-mobile.handlebars->11->421",
+ "default.handlebars->31->1049"
]
},
{
@@ -29952,8 +29966,8 @@
"zh-chs": "公开连结",
"zh-cht": "公開鏈結",
"xloc": [
- "default-mobile.handlebars->11->125",
- "default.handlebars->31->1636"
+ "default-mobile.handlebars->11->126",
+ "default.handlebars->31->1637"
]
},
{
@@ -29973,7 +29987,7 @@
"zh-chs": "旁遮普文",
"zh-cht": "旁遮普文",
"xloc": [
- "default.handlebars->31->1251"
+ "default.handlebars->31->1252"
]
},
{
@@ -29993,7 +30007,7 @@
"zh-chs": "旁遮普(印度)",
"zh-cht": "旁遮普(印度)",
"xloc": [
- "default.handlebars->31->1252"
+ "default.handlebars->31->1253"
]
},
{
@@ -30013,7 +30027,7 @@
"zh-chs": "旁遮普(巴基斯坦)",
"zh-cht": "旁遮普(巴基斯坦)",
"xloc": [
- "default.handlebars->31->1253"
+ "default.handlebars->31->1254"
]
},
{
@@ -30072,7 +30086,7 @@
"zh-chs": "盖丘亚族",
"zh-cht": "蓋丘亞族",
"xloc": [
- "default.handlebars->31->1254"
+ "default.handlebars->31->1255"
]
},
{
@@ -30136,7 +30150,7 @@
"zh-chs": "RDP",
"zh-cht": "RDP",
"xloc": [
- "default.handlebars->31->659"
+ "default.handlebars->31->660"
]
},
{
@@ -30156,7 +30170,7 @@
"zh-chs": "RDP连接",
"zh-cht": "RDP連接",
"xloc": [
- "default.handlebars->31->528"
+ "default.handlebars->31->529"
]
},
{
@@ -30176,7 +30190,7 @@
"zh-chs": "RDP远程连接端口:",
"zh-cht": "RDP遠程連接介面:",
"xloc": [
- "default.handlebars->31->527"
+ "default.handlebars->31->528"
]
},
{
@@ -30257,7 +30271,7 @@
"zh-chs": "RSS",
"zh-cht": "RSS",
"xloc": [
- "default.handlebars->31->2214"
+ "default.handlebars->31->2215"
]
},
{
@@ -30297,7 +30311,7 @@
"zh-chs": "随机密码",
"zh-cht": "隨機密碼",
"xloc": [
- "default.handlebars->31->1458"
+ "default.handlebars->31->1459"
]
},
{
@@ -30317,7 +30331,7 @@
"zh-chs": "随机密码。",
"zh-cht": "隨機密碼。",
"xloc": [
- "default.handlebars->31->1864"
+ "default.handlebars->31->1865"
]
},
{
@@ -30374,9 +30388,9 @@
"zh-chs": "真正的名字",
"zh-cht": "真正的名字",
"xloc": [
- "default.handlebars->31->1989",
- "default.handlebars->31->1991",
- "default.handlebars->31->2046"
+ "default.handlebars->31->1990",
+ "default.handlebars->31->1992",
+ "default.handlebars->31->2047"
]
},
{
@@ -30396,7 +30410,7 @@
"zh-chs": "境界",
"zh-cht": "境界",
"xloc": [
- "default.handlebars->31->1873"
+ "default.handlebars->31->1874"
]
},
{
@@ -30416,8 +30430,8 @@
"zh-chs": "收到无效的网络数据",
"zh-cht": "收到無效的網絡數據",
"xloc": [
- "default-mobile.handlebars->11->312",
- "default.handlebars->31->867",
+ "default-mobile.handlebars->11->313",
+ "default.handlebars->31->868",
"desktop.handlebars->3->10",
"terminal.handlebars->3->14"
]
@@ -30439,7 +30453,7 @@
"zh-chs": "记录会议",
"zh-cht": "記錄會議",
"xloc": [
- "default.handlebars->31->1404"
+ "default.handlebars->31->1405"
]
},
{
@@ -30479,7 +30493,7 @@
"zh-chs": "记录会议",
"zh-cht": "記錄會議",
"xloc": [
- "default.handlebars->31->1501"
+ "default.handlebars->31->1502"
]
},
{
@@ -30499,7 +30513,7 @@
"zh-chs": "记录细节",
"zh-cht": "記錄細節",
"xloc": [
- "default.handlebars->31->2127"
+ "default.handlebars->31->2128"
]
},
{
@@ -30539,10 +30553,10 @@
"zh-chs": "递归删除",
"zh-cht": "遞迴刪除",
"xloc": [
- "default-mobile.handlebars->11->131",
- "default-mobile.handlebars->11->353",
- "default.handlebars->31->1643",
- "default.handlebars->31->963"
+ "default-mobile.handlebars->11->132",
+ "default-mobile.handlebars->11->354",
+ "default.handlebars->31->1644",
+ "default.handlebars->31->964"
]
},
{
@@ -30587,7 +30601,7 @@
"xloc": [
"default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->3",
"default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->3",
- "default.handlebars->31->545",
+ "default.handlebars->31->546",
"default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsAreaTop->DeskToolsRefreshButton",
"default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3",
"default.handlebars->container->column_l->p40->3->3",
@@ -30651,9 +30665,9 @@
"zh-chs": "中继",
"zh-cht": "中繼",
"xloc": [
- "default-mobile.handlebars->11->216",
- "default.handlebars->31->259",
- "default.handlebars->31->448"
+ "default-mobile.handlebars->11->217",
+ "default.handlebars->31->260",
+ "default.handlebars->31->449"
]
},
{
@@ -30673,7 +30687,7 @@
"zh-chs": "中继数量",
"zh-cht": "中繼數量",
"xloc": [
- "default.handlebars->31->2193"
+ "default.handlebars->31->2194"
]
},
{
@@ -30693,7 +30707,7 @@
"zh-chs": "中继错误",
"zh-cht": "中繼錯誤",
"xloc": [
- "default.handlebars->31->2186"
+ "default.handlebars->31->2187"
]
},
{
@@ -30713,8 +30727,8 @@
"zh-chs": "中继连接",
"zh-cht": "中繼連接",
"xloc": [
- "default.handlebars->31->2192",
- "default.handlebars->31->2208"
+ "default.handlebars->31->2193",
+ "default.handlebars->31->2209"
]
},
{
@@ -30851,7 +30865,7 @@
"zh-chs": "远程剪贴板",
"zh-cht": "遠程剪貼板",
"xloc": [
- "default.handlebars->31->912"
+ "default.handlebars->31->913"
]
},
{
@@ -30871,8 +30885,8 @@
"zh-chs": "远程命令",
"zh-cht": "遠程命令",
"xloc": [
- "default-mobile.handlebars->11->488",
- "default.handlebars->31->1533"
+ "default-mobile.handlebars->11->489",
+ "default.handlebars->31->1534"
]
},
{
@@ -30892,10 +30906,10 @@
"zh-chs": "遥控",
"zh-cht": "遙控",
"xloc": [
- "default-mobile.handlebars->11->475",
- "default-mobile.handlebars->11->495",
- "default.handlebars->31->1519",
- "default.handlebars->31->1555"
+ "default-mobile.handlebars->11->476",
+ "default-mobile.handlebars->11->496",
+ "default.handlebars->31->1520",
+ "default.handlebars->31->1556"
]
},
{
@@ -30915,10 +30929,10 @@
"zh-chs": "远程桌面",
"zh-cht": "遠程桌面",
"xloc": [
- "default-mobile.handlebars->11->172",
- "default-mobile.handlebars->11->175",
- "default.handlebars->31->266",
- "default.handlebars->31->269"
+ "default-mobile.handlebars->11->173",
+ "default-mobile.handlebars->11->176",
+ "default.handlebars->31->267",
+ "default.handlebars->31->270"
]
},
{
@@ -30938,8 +30952,8 @@
"zh-chs": "远程桌面连接栏已激活/更新",
"zh-cht": "遠程桌面連接欄已激活/更新",
"xloc": [
- "default.handlebars->31->1689",
- "default.handlebars->31->1695"
+ "default.handlebars->31->1690",
+ "default.handlebars->31->1696"
]
},
{
@@ -30959,7 +30973,7 @@
"zh-chs": "远程桌面连接栏失败或不受支持",
"zh-cht": "遠程桌面連接欄失敗或不受支持",
"xloc": [
- "default.handlebars->31->1690"
+ "default.handlebars->31->1691"
]
},
{
@@ -30979,7 +30993,7 @@
"zh-chs": "远程桌面连接栏失败或不受支持",
"zh-cht": "遠程桌面連接欄失敗或不受支持",
"xloc": [
- "default.handlebars->31->1696"
+ "default.handlebars->31->1697"
]
},
{
@@ -30999,9 +31013,9 @@
"zh-chs": "本地用户强行关闭了远程桌面连接",
"zh-cht": "本地用戶強行關閉了遠程桌面連接",
"xloc": [
- "default.handlebars->31->1687",
- "default.handlebars->31->1691",
- "default.handlebars->31->1697"
+ "default.handlebars->31->1688",
+ "default.handlebars->31->1692",
+ "default.handlebars->31->1698"
]
},
{
@@ -31021,7 +31035,7 @@
"zh-chs": "远程桌面连结",
"zh-cht": "遠程桌面鏈結",
"xloc": [
- "default.handlebars->31->209"
+ "default.handlebars->31->210"
]
},
{
@@ -31041,9 +31055,9 @@
"zh-chs": "远程桌面设置",
"zh-cht": "遠程桌面設置",
"xloc": [
- "default-mobile.handlebars->11->314",
- "default.handlebars->31->292",
- "default.handlebars->31->878",
+ "default-mobile.handlebars->11->315",
+ "default.handlebars->31->293",
+ "default.handlebars->31->879",
"desktop.handlebars->3->20"
]
},
@@ -31064,7 +31078,7 @@
"zh-chs": "远程键盘输入",
"zh-cht": "遠程鍵盤輸入",
"xloc": [
- "default.handlebars->31->910",
+ "default.handlebars->31->911",
"desktop.handlebars->3->22"
]
},
@@ -31085,7 +31099,7 @@
"zh-chs": "远程网格用户",
"zh-cht": "遠程網格用戶",
"xloc": [
- "default-mobile.handlebars->11->516"
+ "default-mobile.handlebars->11->517"
]
},
{
@@ -31105,7 +31119,7 @@
"zh-chs": "远程终端链接",
"zh-cht": "遠程終端鏈接",
"xloc": [
- "default.handlebars->31->208"
+ "default.handlebars->31->209"
]
},
{
@@ -31142,10 +31156,10 @@
"zh-chs": "仅远程查看",
"zh-cht": "僅遠程查看",
"xloc": [
- "default-mobile.handlebars->11->476",
- "default-mobile.handlebars->11->500",
- "default.handlebars->31->1520",
- "default.handlebars->31->1560"
+ "default-mobile.handlebars->11->477",
+ "default-mobile.handlebars->11->501",
+ "default.handlebars->31->1521",
+ "default.handlebars->31->1561"
]
},
{
@@ -31165,7 +31179,7 @@
"zh-chs": "远程剪贴板的有效期为60秒。",
"zh-cht": "遠程剪貼板的有效期為60秒。",
"xloc": [
- "default.handlebars->31->911"
+ "default.handlebars->31->912"
]
},
{
@@ -31207,7 +31221,7 @@
"zh-chs": "删除",
"zh-cht": "删除",
"xloc": [
- "default.handlebars->31->153"
+ "default.handlebars->31->154"
]
},
{
@@ -31227,7 +31241,7 @@
"zh-chs": "删除配置",
"zh-cht": "刪除配置",
"xloc": [
- "default.handlebars->31->1377"
+ "default.handlebars->31->1378"
]
},
{
@@ -31281,8 +31295,8 @@
"zh-chs": "删除设备组权限",
"zh-cht": "刪除裝置群權限",
"xloc": [
- "default.handlebars->31->1958",
- "default.handlebars->31->2096"
+ "default.handlebars->31->1959",
+ "default.handlebars->31->2097"
]
},
{
@@ -31302,8 +31316,8 @@
"zh-chs": "删除设备权限",
"zh-cht": "刪除裝置權限",
"xloc": [
- "default.handlebars->31->1956",
- "default.handlebars->31->2083"
+ "default.handlebars->31->1957",
+ "default.handlebars->31->2084"
]
},
{
@@ -31323,7 +31337,7 @@
"zh-chs": "删除设备共享",
"zh-cht": "刪除設備共享",
"xloc": [
- "default.handlebars->31->2081"
+ "default.handlebars->31->2082"
]
},
{
@@ -31360,7 +31374,7 @@
"zh-chs": "删除用户组成员身份",
"zh-cht": "刪除用戶群成員身份",
"xloc": [
- "default.handlebars->31->2092"
+ "default.handlebars->31->2093"
]
},
{
@@ -31380,8 +31394,8 @@
"zh-chs": "删除用户组权限",
"zh-cht": "刪除用戶群權限",
"xloc": [
- "default.handlebars->31->1579",
- "default.handlebars->31->2088"
+ "default.handlebars->31->1580",
+ "default.handlebars->31->2089"
]
},
{
@@ -31401,7 +31415,7 @@
"zh-chs": "删除用户成员资格",
"zh-cht": "刪除用戶成員資格",
"xloc": [
- "default.handlebars->31->1966"
+ "default.handlebars->31->1967"
]
},
{
@@ -31421,8 +31435,8 @@
"zh-chs": "删除用户权限",
"zh-cht": "刪除用戶權限",
"xloc": [
- "default.handlebars->31->1577",
- "default.handlebars->31->2085"
+ "default.handlebars->31->1578",
+ "default.handlebars->31->2086"
]
},
{
@@ -31442,7 +31456,7 @@
"zh-chs": "删除所有两因素认证。",
"zh-cht": "刪除所有二因子鑑別。",
"xloc": [
- "default.handlebars->31->2058"
+ "default.handlebars->31->2059"
]
},
{
@@ -31462,7 +31476,7 @@
"zh-chs": "删除此用户标识的所有先前事件。",
"zh-cht": "刪除此用戶標識的所有先前事件。",
"xloc": [
- "default.handlebars->31->1865"
+ "default.handlebars->31->1866"
]
},
{
@@ -31482,7 +31496,7 @@
"zh-chs": "断开连接后移除设备",
"zh-cht": "斷開連接後删除裝置",
"xloc": [
- "default.handlebars->31->1499"
+ "default.handlebars->31->1500"
]
},
{
@@ -31502,7 +31516,7 @@
"zh-chs": "删除设备共享",
"zh-cht": "刪除設備共享",
"xloc": [
- "default.handlebars->31->691"
+ "default.handlebars->31->692"
]
},
{
@@ -31522,7 +31536,7 @@
"zh-chs": "删除节点位置",
"zh-cht": "刪除節點位置",
"xloc": [
- "default.handlebars->31->537"
+ "default.handlebars->31->538"
]
},
{
@@ -31542,8 +31556,8 @@
"zh-chs": "删除电话号码",
"zh-cht": "刪除電話號碼",
"xloc": [
- "default-mobile.handlebars->11->74",
- "default.handlebars->31->1098"
+ "default-mobile.handlebars->11->75",
+ "default.handlebars->31->1099"
]
},
{
@@ -31563,7 +31577,7 @@
"zh-chs": "移除标签",
"zh-cht": "删除標籤",
"xloc": [
- "default.handlebars->31->485"
+ "default.handlebars->31->486"
]
},
{
@@ -31583,7 +31597,7 @@
"zh-chs": "删除此设备",
"zh-cht": "刪除此裝置",
"xloc": [
- "default.handlebars->31->648"
+ "default.handlebars->31->649"
]
},
{
@@ -31603,7 +31617,7 @@
"zh-chs": "删除此用户",
"zh-cht": "刪除此用戶",
"xloc": [
- "default.handlebars->31->2036"
+ "default.handlebars->31->2037"
]
},
{
@@ -31623,7 +31637,7 @@
"zh-chs": "删除用户组成员身份",
"zh-cht": "刪除用戶群成員身份",
"xloc": [
- "default.handlebars->31->2072"
+ "default.handlebars->31->2073"
]
},
{
@@ -31643,7 +31657,7 @@
"zh-chs": "删除此设备的用户组权限",
"zh-cht": "刪除此裝置的用戶群權限",
"xloc": [
- "default.handlebars->31->1952"
+ "default.handlebars->31->1953"
]
},
{
@@ -31663,8 +31677,8 @@
"zh-chs": "删除此设备组的用户组权限",
"zh-cht": "刪除此裝置群的用戶群權限",
"xloc": [
- "default.handlebars->31->1946",
- "default.handlebars->31->684"
+ "default.handlebars->31->1947",
+ "default.handlebars->31->685"
]
},
{
@@ -31684,11 +31698,11 @@
"zh-chs": "删除此设备组的用户权限",
"zh-cht": "刪除此裝置群的用戶權限",
"xloc": [
- "default.handlebars->31->1446",
- "default.handlebars->31->1940",
- "default.handlebars->31->2066",
- "default.handlebars->31->2078",
- "default.handlebars->31->685"
+ "default.handlebars->31->1447",
+ "default.handlebars->31->1941",
+ "default.handlebars->31->2067",
+ "default.handlebars->31->2079",
+ "default.handlebars->31->686"
]
},
{
@@ -31708,7 +31722,7 @@
"zh-chs": "删除身份验证应用程序",
"zh-cht": "刪除身份驗證應用程序",
"xloc": [
- "default.handlebars->31->1749"
+ "default.handlebars->31->1750"
]
},
{
@@ -31728,7 +31742,7 @@
"zh-chs": "删除的设备共享{0}",
"zh-cht": "刪除的設備共享{0}",
"xloc": [
- "default.handlebars->31->1760"
+ "default.handlebars->31->1761"
]
},
{
@@ -31748,7 +31762,7 @@
"zh-chs": "从设备组{1}中删除了设备{0}",
"zh-cht": "從設備組{1}中刪除了設備{0}",
"xloc": [
- "default.handlebars->31->1745"
+ "default.handlebars->31->1746"
]
},
{
@@ -31768,7 +31782,7 @@
"zh-chs": "已删除用户{0}的电话号码",
"zh-cht": "已刪除用戶{0}的電話號碼",
"xloc": [
- "default.handlebars->31->1755"
+ "default.handlebars->31->1756"
]
},
{
@@ -31788,7 +31802,7 @@
"zh-chs": "移除安全密钥",
"zh-cht": "移除安全密鑰",
"xloc": [
- "default.handlebars->31->1752"
+ "default.handlebars->31->1753"
]
},
{
@@ -31808,9 +31822,9 @@
"zh-chs": "删除了{0}的用户设备权限",
"zh-cht": "刪除了{0}的用戶設備權限",
"xloc": [
- "default.handlebars->31->1718",
- "default.handlebars->31->1739",
- "default.handlebars->31->1744"
+ "default.handlebars->31->1719",
+ "default.handlebars->31->1740",
+ "default.handlebars->31->1745"
]
},
{
@@ -31830,7 +31844,7 @@
"zh-chs": "从设备组{1}中删除了用户组{0}",
"zh-cht": "從設備組{1}中刪除了用戶組{0}",
"xloc": [
- "default.handlebars->31->1728"
+ "default.handlebars->31->1729"
]
},
{
@@ -31850,7 +31864,7 @@
"zh-chs": "从设备组{1}中删除了用户{0}",
"zh-cht": "已從設備組{1}中刪除用戶{0}",
"xloc": [
- "default.handlebars->31->1741"
+ "default.handlebars->31->1742"
]
},
{
@@ -31870,8 +31884,8 @@
"zh-chs": "从用户组{1}中删除了用户{0}",
"zh-cht": "從用戶組{1}中刪除了用戶{0}",
"xloc": [
- "default.handlebars->31->1720",
- "default.handlebars->31->1730"
+ "default.handlebars->31->1721",
+ "default.handlebars->31->1731"
]
},
{
@@ -31891,13 +31905,13 @@
"zh-chs": "改名",
"zh-cht": "改名",
"xloc": [
- "default-mobile.handlebars->11->135",
- "default-mobile.handlebars->11->357",
+ "default-mobile.handlebars->11->136",
+ "default-mobile.handlebars->11->358",
"default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->1",
"default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->1",
- "default.handlebars->31->1647",
- "default.handlebars->31->531",
- "default.handlebars->31->967",
+ "default.handlebars->31->1648",
+ "default.handlebars->31->532",
+ "default.handlebars->31->968",
"default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3",
"default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3",
"default.handlebars->filesContextMenu->1"
@@ -31920,7 +31934,7 @@
"zh-chs": "重命名:“{0}”为“{1}”",
"zh-cht": "重命名:“{0}”為“{1}”",
"xloc": [
- "default.handlebars->31->1706"
+ "default.handlebars->31->1707"
]
},
{
@@ -31940,7 +31954,7 @@
"zh-chs": "报告日",
"zh-cht": "報告日",
"xloc": [
- "default.handlebars->31->1769"
+ "default.handlebars->31->1770"
]
},
{
@@ -31960,7 +31974,7 @@
"zh-chs": "报告类型",
"zh-cht": "報告類型",
"xloc": [
- "default.handlebars->31->1764"
+ "default.handlebars->31->1765"
]
},
{
@@ -31980,7 +31994,7 @@
"zh-chs": "要求:",
"zh-cht": "要求:",
"xloc": [
- "default.handlebars->31->1346"
+ "default.handlebars->31->1347"
]
},
{
@@ -32000,9 +32014,9 @@
"zh-chs": "要求:{0}。",
"zh-cht": "要求:{0}。",
"xloc": [
- "default-mobile.handlebars->11->99",
- "default.handlebars->31->1870",
- "default.handlebars->31->2056"
+ "default-mobile.handlebars->11->100",
+ "default.handlebars->31->1871",
+ "default.handlebars->31->2057"
]
},
{
@@ -32022,7 +32036,7 @@
"zh-chs": "需要安装MeshCentral路由器",
"zh-cht": "需要安裝MeshCentral路由器",
"xloc": [
- "default.handlebars->31->658"
+ "default.handlebars->31->659"
]
},
{
@@ -32042,8 +32056,8 @@
"zh-chs": "需要安装MeshCentral Router。",
"zh-cht": "需要安裝MeshCentral Router。",
"xloc": [
- "default.handlebars->31->660",
- "default.handlebars->31->662"
+ "default.handlebars->31->661",
+ "default.handlebars->31->663"
]
},
{
@@ -32085,8 +32099,8 @@
"zh-chs": "重设",
"zh-cht": "重設",
"xloc": [
- "default-mobile.handlebars->11->283",
- "default.handlebars->31->780",
+ "default-mobile.handlebars->11->284",
+ "default.handlebars->31->781",
"default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devMapToolbar"
]
},
@@ -32107,8 +32121,8 @@
"zh-chs": "重置/关闭电源",
"zh-cht": "重置/關閉電源",
"xloc": [
- "default-mobile.handlebars->11->489",
- "default.handlebars->31->1534"
+ "default-mobile.handlebars->11->490",
+ "default.handlebars->31->1535"
]
},
{
@@ -32194,7 +32208,7 @@
"zh-chs": "重置设备",
"zh-cht": "重置裝置",
"xloc": [
- "default.handlebars->31->459"
+ "default.handlebars->31->460"
]
},
{
@@ -32234,10 +32248,10 @@
"zh-chs": "重置/关闭",
"zh-cht": "重置/關閉",
"xloc": [
- "default-mobile.handlebars->11->509",
- "default.handlebars->31->1570",
- "default.handlebars->31->715",
- "default.handlebars->31->736"
+ "default-mobile.handlebars->11->510",
+ "default.handlebars->31->1571",
+ "default.handlebars->31->716",
+ "default.handlebars->31->737"
]
},
{
@@ -32257,7 +32271,7 @@
"zh-chs": "重新启动",
"zh-cht": "重新啟動",
"xloc": [
- "default.handlebars->31->927",
+ "default.handlebars->31->928",
"player.handlebars->p11->deskarea0->deskarea4->3"
]
},
@@ -32278,7 +32292,7 @@
"zh-chs": "还原服务器",
"zh-cht": "還原伺服器",
"xloc": [
- "default.handlebars->31->1382"
+ "default.handlebars->31->1383"
]
},
{
@@ -32318,7 +32332,7 @@
"zh-chs": "使用备份还原服务器,这将删除现有服务器数据 span>。仅当您知道自己在做什么时才这样做。",
"zh-cht": "使用備份還原伺服器,這將刪除現有伺服器數據 span>。僅當你知道自己在做什麼時才這樣做。",
"xloc": [
- "default.handlebars->31->1379"
+ "default.handlebars->31->1380"
]
},
{
@@ -32338,9 +32352,9 @@
"zh-chs": "受限制的",
"zh-cht": "受限制的",
"xloc": [
- "default-mobile.handlebars->11->237",
- "default.handlebars->31->172",
- "default.handlebars->31->671"
+ "default-mobile.handlebars->11->238",
+ "default.handlebars->31->173",
+ "default.handlebars->31->672"
]
},
{
@@ -32360,7 +32374,7 @@
"zh-chs": "限制条件",
"zh-cht": "限制條件",
"xloc": [
- "default.handlebars->31->1978"
+ "default.handlebars->31->1979"
]
},
{
@@ -32380,7 +32394,7 @@
"zh-chs": "雷托-罗曼语",
"zh-cht": "雷托-羅曼語",
"xloc": [
- "default.handlebars->31->1255"
+ "default.handlebars->31->1256"
]
},
{
@@ -32388,8 +32402,8 @@
"fr": "Droit",
"nl": "Rechts",
"xloc": [
- "default-mobile.handlebars->11->328",
- "default.handlebars->31->895"
+ "default-mobile.handlebars->11->329",
+ "default.handlebars->31->896"
]
},
{
@@ -32409,7 +32423,7 @@
"zh-chs": "罗马尼亚文",
"zh-cht": "羅馬尼亞文",
"xloc": [
- "default.handlebars->31->1256"
+ "default.handlebars->31->1257"
]
},
{
@@ -32429,7 +32443,7 @@
"zh-chs": "罗马尼亚文(摩尔达维亚)",
"zh-cht": "羅馬尼亞文(摩爾達維亞)",
"xloc": [
- "default.handlebars->31->1257"
+ "default.handlebars->31->1258"
]
},
{
@@ -32449,10 +32463,10 @@
"zh-chs": "根",
"zh-cht": "根",
"xloc": [
- "default-mobile.handlebars->11->117",
- "default-mobile.handlebars->11->347",
- "default.handlebars->31->1615",
- "default.handlebars->31->952"
+ "default-mobile.handlebars->11->118",
+ "default-mobile.handlebars->11->348",
+ "default.handlebars->31->1616",
+ "default.handlebars->31->953"
]
},
{
@@ -32569,7 +32583,7 @@
"zh-chs": "路由器",
"zh-cht": "路由器",
"xloc": [
- "default.handlebars->31->241"
+ "default.handlebars->31->242"
]
},
{
@@ -32589,9 +32603,9 @@
"zh-chs": "运行命令",
"zh-cht": "運行命令",
"xloc": [
- "default.handlebars->31->480",
- "default.handlebars->31->778",
- "default.handlebars->31->794"
+ "default.handlebars->31->481",
+ "default.handlebars->31->779",
+ "default.handlebars->31->795"
]
},
{
@@ -32611,7 +32625,7 @@
"zh-chs": "运行MeshCentral Router,然后单击“安装”以使其可从浏览器启动。",
"zh-cht": "運行MeshCentral Router,然後單擊“安裝”以使其可從瀏覽器啟動。",
"xloc": [
- "default.handlebars->31->828"
+ "default.handlebars->31->829"
]
},
{
@@ -32631,8 +32645,8 @@
"zh-chs": "以代理身份运行",
"zh-cht": "以代理身份運行",
"xloc": [
- "default.handlebars->31->477",
- "default.handlebars->31->791"
+ "default.handlebars->31->478",
+ "default.handlebars->31->792"
]
},
{
@@ -32652,8 +32666,8 @@
"zh-chs": "以用户身份运行,如果没有用户,则运行代理",
"zh-cht": "以用戶身份運行,如果沒有用戶,則運行代理",
"xloc": [
- "default.handlebars->31->478",
- "default.handlebars->31->792"
+ "default.handlebars->31->479",
+ "default.handlebars->31->793"
]
},
{
@@ -32673,7 +32687,7 @@
"zh-chs": "运行命令",
"zh-cht": "運行命令",
"xloc": [
- "default.handlebars->31->461"
+ "default.handlebars->31->462"
]
},
{
@@ -32693,8 +32707,8 @@
"zh-chs": "在所选设备上运行命令。",
"zh-cht": "在所選裝置上運行命令。",
"xloc": [
- "default.handlebars->31->473",
- "default.handlebars->31->787"
+ "default.handlebars->31->474",
+ "default.handlebars->31->788"
]
},
{
@@ -32731,7 +32745,7 @@
"zh-chs": "运行命令",
"zh-cht": "運行命令",
"xloc": [
- "default.handlebars->31->1682"
+ "default.handlebars->31->1683"
]
},
{
@@ -32751,7 +32765,7 @@
"zh-chs": "以用户身份运行命令",
"zh-cht": "以用戶身份運行命令",
"xloc": [
- "default.handlebars->31->1757"
+ "default.handlebars->31->1758"
]
},
{
@@ -32771,7 +32785,7 @@
"zh-chs": "如果可能,以用户身份运行命令",
"zh-cht": "如果可能,以用戶身份運行命令",
"xloc": [
- "default.handlebars->31->1758"
+ "default.handlebars->31->1759"
]
},
{
@@ -32791,7 +32805,7 @@
"zh-chs": "俄文",
"zh-cht": "俄文",
"xloc": [
- "default.handlebars->31->1258"
+ "default.handlebars->31->1259"
]
},
{
@@ -32811,7 +32825,7 @@
"zh-chs": "俄文(摩尔达维亚)",
"zh-cht": "俄文(摩爾達維亞)",
"xloc": [
- "default.handlebars->31->1259"
+ "default.handlebars->31->1260"
]
},
{
@@ -32829,7 +32843,7 @@
"es": "SCP",
"fr": "SCP",
"xloc": [
- "default.handlebars->31->663"
+ "default.handlebars->31->664"
]
},
{
@@ -32849,8 +32863,8 @@
"zh-chs": "短信",
"zh-cht": "短信",
"xloc": [
- "default.handlebars->31->2023",
- "default.handlebars->31->2028",
+ "default.handlebars->31->2024",
+ "default.handlebars->31->2029",
"login-mobile.handlebars->container->page_content->column_l->1->1->0->1->tokenpanel->1->7->1->4->1->3",
"login.handlebars->container->column_l->centralTable->1->0->logincell->resettokenpanel->1->5->1->2->1->3",
"login.handlebars->container->column_l->centralTable->1->0->logincell->tokenpanel->1->7->1->4->1->3",
@@ -32875,7 +32889,7 @@
"zh-chs": "此用户的短信功能电话号码。",
"zh-cht": "此用戶的短信功能電話號碼。",
"xloc": [
- "default.handlebars->31->2042"
+ "default.handlebars->31->2043"
]
},
{
@@ -32883,8 +32897,8 @@
"nl": "SMS fout",
"fr": "Erreur SMS",
"xloc": [
- "default-mobile.handlebars->11->555",
- "default.handlebars->31->2166"
+ "default-mobile.handlebars->11->556",
+ "default.handlebars->31->2167"
]
},
{
@@ -32892,8 +32906,8 @@
"nl": "SMS fout: {0}",
"fr": "Erreur SMS: {0}",
"xloc": [
- "default-mobile.handlebars->11->556",
- "default.handlebars->31->2167"
+ "default-mobile.handlebars->11->557",
+ "default.handlebars->31->2168"
]
},
{
@@ -32901,8 +32915,8 @@
"nl": "SMS gateway niet ingeschakeld",
"fr": "Passerelle SMS non activée",
"xloc": [
- "default-mobile.handlebars->11->550",
- "default.handlebars->31->2161"
+ "default-mobile.handlebars->11->551",
+ "default.handlebars->31->2162"
]
},
{
@@ -32932,8 +32946,8 @@
"nl": "SMS succesvol verzonden.",
"fr": "SMS envoyé avec succès.",
"xloc": [
- "default-mobile.handlebars->11->554",
- "default.handlebars->31->2165"
+ "default-mobile.handlebars->11->555",
+ "default.handlebars->31->2166"
]
},
{
@@ -32951,7 +32965,7 @@
"tr": "SSH",
"fr": "SSH",
"xloc": [
- "default.handlebars->31->661"
+ "default.handlebars->31->662"
]
},
{
@@ -32971,7 +32985,7 @@
"zh-chs": "与设备名称相同",
"zh-cht": "與裝置名稱相同",
"xloc": [
- "default.handlebars->31->306"
+ "default.handlebars->31->307"
]
},
{
@@ -32991,7 +33005,7 @@
"zh-chs": "萨米(拉普兰)",
"zh-cht": "薩米(拉普蘭)",
"xloc": [
- "default.handlebars->31->1260"
+ "default.handlebars->31->1261"
]
},
{
@@ -33011,8 +33025,8 @@
"zh-chs": "IP范围值样本",
"zh-cht": "IP範圍值樣本",
"xloc": [
- "default.handlebars->31->182",
- "default.handlebars->31->186"
+ "default.handlebars->31->183",
+ "default.handlebars->31->187"
]
},
{
@@ -33049,7 +33063,7 @@
"zh-chs": "三乡",
"zh-cht": "三鄉",
"xloc": [
- "default.handlebars->31->1261"
+ "default.handlebars->31->1262"
]
},
{
@@ -33069,7 +33083,7 @@
"zh-chs": "梵文",
"zh-cht": "梵文",
"xloc": [
- "default.handlebars->31->1262"
+ "default.handlebars->31->1263"
]
},
{
@@ -33089,7 +33103,7 @@
"zh-chs": "撒丁岛",
"zh-cht": "撒丁島",
"xloc": [
- "default.handlebars->31->1263"
+ "default.handlebars->31->1264"
]
},
{
@@ -33150,7 +33164,7 @@
"zh-chs": "保存节点位置",
"zh-cht": "保存節點位置",
"xloc": [
- "default.handlebars->31->538"
+ "default.handlebars->31->539"
]
},
{
@@ -33209,8 +33223,8 @@
"zh-chs": "扫瞄",
"zh-cht": "掃瞄",
"xloc": [
- "default.handlebars->31->326",
- "default.handlebars->31->328"
+ "default.handlebars->31->327",
+ "default.handlebars->31->329"
]
},
{
@@ -33230,7 +33244,7 @@
"zh-chs": "扫描网络",
"zh-cht": "掃描網絡",
"xloc": [
- "default.handlebars->31->296"
+ "default.handlebars->31->297"
]
},
{
@@ -33250,7 +33264,7 @@
"zh-chs": "扫描英特尔®AMT设备",
"zh-cht": "掃描Intel® AMT裝置",
"xloc": [
- "default.handlebars->31->329"
+ "default.handlebars->31->330"
]
},
{
@@ -33270,7 +33284,7 @@
"zh-chs": "扫描未有任何结果。",
"zh-cht": "掃描未有任何結果。",
"xloc": [
- "default.handlebars->31->185"
+ "default.handlebars->31->186"
]
},
{
@@ -33290,7 +33304,7 @@
"zh-chs": "扫描...",
"zh-cht": "掃描...",
"xloc": [
- "default.handlebars->31->330"
+ "default.handlebars->31->331"
]
},
{
@@ -33310,7 +33324,7 @@
"zh-chs": "屏幕",
"zh-cht": "屏幕",
"xloc": [
- "default-mobile.handlebars->11->342"
+ "default-mobile.handlebars->11->343"
]
},
{
@@ -33330,7 +33344,7 @@
"zh-chs": "屏幕选择",
"zh-cht": "屏幕選擇",
"xloc": [
- "default-mobile.handlebars->11->343"
+ "default-mobile.handlebars->11->344"
]
},
{
@@ -33370,8 +33384,8 @@
"zh-chs": "搜寻",
"zh-cht": "搜尋",
"xloc": [
- "default.handlebars->31->551",
- "default.handlebars->31->956",
+ "default.handlebars->31->552",
+ "default.handlebars->31->957",
"default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devMapToolbar"
]
},
@@ -33457,8 +33471,8 @@
"zh-chs": "已使用TLS保安",
"zh-cht": "已使用TLS保安",
"xloc": [
- "default-mobile.handlebars->11->423",
- "default.handlebars->31->1051"
+ "default-mobile.handlebars->11->424",
+ "default.handlebars->31->1052"
]
},
{
@@ -33478,12 +33492,12 @@
"zh-chs": "安全",
"zh-cht": "安全",
"xloc": [
- "default-mobile.handlebars->11->294",
- "default-mobile.handlebars->11->422",
- "default.handlebars->31->1050",
- "default.handlebars->31->2024",
- "default.handlebars->31->310",
- "default.handlebars->31->800"
+ "default-mobile.handlebars->11->295",
+ "default-mobile.handlebars->11->423",
+ "default.handlebars->31->1051",
+ "default.handlebars->31->2025",
+ "default.handlebars->31->311",
+ "default.handlebars->31->801"
]
},
{
@@ -33503,7 +33517,7 @@
"zh-chs": "安全密钥",
"zh-cht": "安全密鑰",
"xloc": [
- "default.handlebars->31->2021"
+ "default.handlebars->31->2022"
]
},
{
@@ -33511,8 +33525,8 @@
"nl": "Beveiligingswaarschuwing",
"fr": "Avertissement de sécurité",
"xloc": [
- "default-mobile.handlebars->11->524",
- "default.handlebars->31->2135"
+ "default-mobile.handlebars->11->525",
+ "default.handlebars->31->2136"
]
},
{
@@ -33552,12 +33566,12 @@
"zh-chs": "全选",
"zh-cht": "全選",
"xloc": [
- "default.handlebars->31->1639",
- "default.handlebars->31->1814",
- "default.handlebars->31->1897",
- "default.handlebars->31->453",
- "default.handlebars->31->959",
- "default.handlebars->31->961",
+ "default.handlebars->31->1640",
+ "default.handlebars->31->1815",
+ "default.handlebars->31->1898",
+ "default.handlebars->31->454",
+ "default.handlebars->31->960",
+ "default.handlebars->31->962",
"default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar",
"default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3",
"default.handlebars->container->column_l->p4->3->1->0->3->3",
@@ -33583,11 +33597,11 @@
"zh-chs": "选择无",
"zh-cht": "選擇無",
"xloc": [
- "default.handlebars->31->1638",
- "default.handlebars->31->1813",
- "default.handlebars->31->1896",
- "default.handlebars->31->452",
- "default.handlebars->31->960",
+ "default.handlebars->31->1639",
+ "default.handlebars->31->1814",
+ "default.handlebars->31->1897",
+ "default.handlebars->31->453",
+ "default.handlebars->31->961",
"default.handlebars->meshContextMenu->cxselectnone"
]
},
@@ -33608,7 +33622,7 @@
"zh-chs": "为所选设备选择一个新组",
"zh-cht": "為所選裝置選擇一個新群",
"xloc": [
- "default.handlebars->31->814"
+ "default.handlebars->31->815"
]
},
{
@@ -33628,7 +33642,7 @@
"zh-chs": "选择此设备的新组",
"zh-cht": "選擇此裝置的新群",
"xloc": [
- "default.handlebars->31->813"
+ "default.handlebars->31->814"
]
},
{
@@ -33648,7 +33662,7 @@
"zh-chs": "选择要放置的节点",
"zh-cht": "選擇要放置的節點",
"xloc": [
- "default.handlebars->31->554"
+ "default.handlebars->31->555"
]
},
{
@@ -33668,7 +33682,7 @@
"zh-chs": "选择要在所有选定设备上执行的操作。仅在拥有适当权限的情况下才能执行操作。",
"zh-cht": "選擇要在所有選定裝置上執行的操作。僅在擁有適當權限的情況下才能執行操作。",
"xloc": [
- "default.handlebars->31->466"
+ "default.handlebars->31->467"
]
},
{
@@ -33688,8 +33702,8 @@
"zh-chs": "选择要对所有选定用户执行的操作。",
"zh-cht": "選擇要對所有選定用戶執行的操作。",
"xloc": [
- "default.handlebars->31->1817",
- "default.handlebars->31->1898"
+ "default.handlebars->31->1818",
+ "default.handlebars->31->1899"
]
},
{
@@ -33709,8 +33723,8 @@
"zh-chs": "选择要在此设备上执行的操作。",
"zh-cht": "選擇要在此裝置上執行的操作。",
"xloc": [
- "default-mobile.handlebars->11->280",
- "default.handlebars->31->776"
+ "default-mobile.handlebars->11->281",
+ "default.handlebars->31->777"
]
},
{
@@ -33730,7 +33744,7 @@
"zh-chs": "选择新密码",
"zh-cht": "選擇新密碼",
"xloc": [
- "default.handlebars->31->1459"
+ "default.handlebars->31->1460"
]
},
{
@@ -33771,8 +33785,8 @@
"zh-chs": "仅自我事件",
"zh-cht": "僅自我事件",
"xloc": [
- "default-mobile.handlebars->11->505",
- "default.handlebars->31->1566"
+ "default-mobile.handlebars->11->506",
+ "default.handlebars->31->1567"
]
},
{
@@ -33816,7 +33830,7 @@
"zh-chs": "发电邮",
"zh-cht": "發電郵",
"xloc": [
- "default.handlebars->31->1828"
+ "default.handlebars->31->1829"
]
},
{
@@ -33836,8 +33850,8 @@
"zh-chs": "发送MQTT消息",
"zh-cht": "發送MQTT消息",
"xloc": [
- "default.handlebars->31->454",
- "default.handlebars->31->782"
+ "default.handlebars->31->455",
+ "default.handlebars->31->783"
]
},
{
@@ -33857,7 +33871,7 @@
"zh-chs": "发送MQTT消息",
"zh-cht": "發送MQTT消息",
"xloc": [
- "default.handlebars->31->806"
+ "default.handlebars->31->807"
]
},
{
@@ -33877,7 +33891,7 @@
"zh-chs": "发送短信",
"zh-cht": "發送簡訊",
"xloc": [
- "default.handlebars->31->1826"
+ "default.handlebars->31->1827"
]
},
{
@@ -33897,7 +33911,7 @@
"zh-chs": "发送短信给该用户",
"zh-cht": "發送短信給該用戶",
"xloc": [
- "default.handlebars->31->2029"
+ "default.handlebars->31->2030"
]
},
{
@@ -33917,7 +33931,7 @@
"zh-chs": "发送电邮给该用户",
"zh-cht": "發送電郵給該用戶",
"xloc": [
- "default.handlebars->31->2031"
+ "default.handlebars->31->2032"
]
},
{
@@ -33937,7 +33951,7 @@
"zh-chs": "向该组中的所有用户发送通知。",
"zh-cht": "向該群中的所有用戶發送通知。",
"xloc": [
- "default.handlebars->31->1937"
+ "default.handlebars->31->1938"
]
},
{
@@ -33957,7 +33971,7 @@
"zh-chs": "向该用户发送文本通知。",
"zh-cht": "向該用戶發送文本通知。",
"xloc": [
- "default.handlebars->31->1829"
+ "default.handlebars->31->1830"
]
},
{
@@ -33977,7 +33991,7 @@
"zh-chs": "发送电邮给用户",
"zh-cht": "發送電郵給用戶",
"xloc": [
- "default.handlebars->31->1809"
+ "default.handlebars->31->1810"
]
},
{
@@ -33997,7 +34011,7 @@
"zh-chs": "发送安装连结",
"zh-cht": "發送安裝鏈結",
"xloc": [
- "default.handlebars->31->339"
+ "default.handlebars->31->340"
]
},
{
@@ -34017,7 +34031,7 @@
"zh-chs": "发送邀请电邮。",
"zh-cht": "發送邀請電郵。",
"xloc": [
- "default.handlebars->31->1869"
+ "default.handlebars->31->1870"
]
},
{
@@ -34140,7 +34154,7 @@
"zh-chs": "发送用户通知",
"zh-cht": "發送用戶通知",
"xloc": [
- "default.handlebars->31->2033"
+ "default.handlebars->31->2034"
]
},
{
@@ -34160,7 +34174,7 @@
"zh-chs": "塞尔维亚",
"zh-cht": "塞爾維亞",
"xloc": [
- "default.handlebars->31->1266"
+ "default.handlebars->31->1267"
]
},
{
@@ -34180,8 +34194,8 @@
"zh-chs": "序列号",
"zh-cht": "序列號",
"xloc": [
- "default-mobile.handlebars->11->434",
- "default.handlebars->31->1062"
+ "default-mobile.handlebars->11->435",
+ "default.handlebars->31->1063"
]
},
{
@@ -34201,7 +34215,7 @@
"zh-chs": "服务器备份",
"zh-cht": "伺服器備份",
"xloc": [
- "default.handlebars->31->1879"
+ "default.handlebars->31->1880"
]
},
{
@@ -34221,7 +34235,7 @@
"zh-chs": "服务器证书",
"zh-cht": "伺服器憑證",
"xloc": [
- "default.handlebars->31->2226"
+ "default.handlebars->31->2227"
]
},
{
@@ -34241,7 +34255,7 @@
"zh-chs": "服务器数据库",
"zh-cht": "伺服器數據庫",
"xloc": [
- "default.handlebars->31->2227"
+ "default.handlebars->31->2228"
]
},
{
@@ -34261,13 +34275,13 @@
"zh-chs": "服务器档案",
"zh-cht": "伺服器檔案",
"xloc": [
- "default-mobile.handlebars->11->482",
- "default-mobile.handlebars->11->497",
- "default.handlebars->31->1527",
- "default.handlebars->31->1557",
- "default.handlebars->31->1876",
- "default.handlebars->31->708",
- "default.handlebars->31->729"
+ "default-mobile.handlebars->11->483",
+ "default-mobile.handlebars->11->498",
+ "default.handlebars->31->1528",
+ "default.handlebars->31->1558",
+ "default.handlebars->31->1877",
+ "default.handlebars->31->709",
+ "default.handlebars->31->730"
]
},
{
@@ -34295,8 +34309,8 @@
"nl": "Server limiet",
"fr": "Limite du serveur",
"xloc": [
- "default-mobile.handlebars->11->523",
- "default.handlebars->31->2134"
+ "default-mobile.handlebars->11->524",
+ "default.handlebars->31->2135"
]
},
{
@@ -34316,8 +34330,8 @@
"zh-chs": "服务器权限",
"zh-cht": "伺服器權限",
"xloc": [
- "default.handlebars->31->1801",
- "default.handlebars->31->1890"
+ "default.handlebars->31->1802",
+ "default.handlebars->31->1891"
]
},
{
@@ -34337,7 +34351,7 @@
"zh-chs": "服务器配额",
"zh-cht": "伺服器配額",
"xloc": [
- "default.handlebars->31->1995"
+ "default.handlebars->31->1996"
]
},
{
@@ -34357,7 +34371,7 @@
"zh-chs": "服务器还原",
"zh-cht": "伺服器還原",
"xloc": [
- "default.handlebars->31->1880"
+ "default.handlebars->31->1881"
]
},
{
@@ -34377,7 +34391,7 @@
"zh-chs": "服务器权限",
"zh-cht": "伺服器權限",
"xloc": [
- "default.handlebars->31->1994"
+ "default.handlebars->31->1995"
]
},
{
@@ -34397,7 +34411,7 @@
"zh-chs": "服务器状态",
"zh-cht": "伺服器狀態",
"xloc": [
- "default.handlebars->31->2172"
+ "default.handlebars->31->2173"
]
},
{
@@ -34437,14 +34451,14 @@
"zh-chs": "服务器跟踪",
"zh-cht": "伺服器追蹤",
"xloc": [
- "default.handlebars->31->2239"
+ "default.handlebars->31->2240"
]
},
{
"en": "Server Tracing Event",
"nl": "Server Tracing Event",
"xloc": [
- "default.handlebars->31->2218"
+ "default.handlebars->31->2219"
]
},
{
@@ -34505,7 +34519,7 @@
"zh-chs": "服务器更新",
"zh-cht": "伺服器更新",
"xloc": [
- "default.handlebars->31->1881"
+ "default.handlebars->31->1882"
]
},
{
@@ -34606,7 +34620,7 @@
"zh-chs": "服务器没有错误日志。",
"zh-cht": "伺服器沒有錯誤日誌。",
"xloc": [
- "default.handlebars->31->129"
+ "default.handlebars->31->130"
]
},
{
@@ -34670,7 +34684,7 @@
"zh-chs": "ServerStats.csv",
"zh-cht": "ServerStats.csv",
"xloc": [
- "default.handlebars->31->2217"
+ "default.handlebars->31->2218"
]
},
{
@@ -34690,7 +34704,7 @@
"zh-chs": "服务详情",
"zh-cht": "服務詳情",
"xloc": [
- "default.handlebars->31->928"
+ "default.handlebars->31->929"
]
},
{
@@ -34730,7 +34744,7 @@
"zh-chs": "会话",
"zh-cht": "節",
"xloc": [
- "default.handlebars->31->2101"
+ "default.handlebars->31->2102"
]
},
{
@@ -34750,7 +34764,7 @@
"zh-chs": "会话信息",
"zh-cht": "會議訊息",
"xloc": [
- "default.handlebars->31->875",
+ "default.handlebars->31->876",
"desktop.handlebars->3->18"
]
},
@@ -34814,8 +34828,8 @@
"zh-chs": "会话",
"zh-cht": "節",
"xloc": [
- "default-mobile.handlebars->11->190",
- "default.handlebars->31->284",
+ "default-mobile.handlebars->11->191",
+ "default.handlebars->31->285",
"default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->devListToolbar->DevFilterSelect->7"
]
},
@@ -34836,7 +34850,7 @@
"zh-chs": "设置标签",
"zh-cht": "設置標籤",
"xloc": [
- "default.handlebars->31->484"
+ "default.handlebars->31->485"
]
},
{
@@ -34856,7 +34870,7 @@
"zh-chs": "设置剪贴板内容,{0}个字节",
"zh-cht": "設置剪貼板內容,{0}個字節",
"xloc": [
- "default.handlebars->31->1680"
+ "default.handlebars->31->1681"
]
},
{
@@ -34897,7 +34911,7 @@
"zh-chs": "设定档案",
"zh-cht": "設定檔案",
"xloc": [
- "default.handlebars->31->393"
+ "default.handlebars->31->394"
]
},
{
@@ -34939,8 +34953,8 @@
"zh-cht": "設定",
"xloc": [
"agent-translations.json",
- "default.handlebars->31->1438",
- "default.handlebars->31->298"
+ "default.handlebars->31->1439",
+ "default.handlebars->31->299"
]
},
{
@@ -34994,7 +35008,7 @@
"zh-chs": "将此服务器设置为自动将备份上传到Google云端硬盘。首先为您的帐户创建并输入Google Drive ClientID和ClientSecret。",
"zh-cht": "將此服務器設置為自動將備份上傳到Google雲端硬盤。首先為您的帳戶創建並輸入Google Drive ClientID和ClientSecret。",
"xloc": [
- "default.handlebars->31->1370"
+ "default.handlebars->31->1371"
]
},
{
@@ -35016,9 +35030,9 @@
"xloc": [
"default-mobile.handlebars->11->3",
"default.handlebars->31->10",
- "default.handlebars->31->244",
- "default.handlebars->31->247",
- "default.handlebars->31->291",
+ "default.handlebars->31->245",
+ "default.handlebars->31->248",
+ "default.handlebars->31->292",
"desktop.handlebars->3->3",
"terminal.handlebars->3->3",
"xterm.handlebars->9->3"
@@ -35041,7 +35055,7 @@
"zh-chs": "共享",
"zh-cht": "共享",
"xloc": [
- "default.handlebars->31->644"
+ "default.handlebars->31->645"
]
},
{
@@ -35061,8 +35075,8 @@
"zh-chs": "共享设备",
"zh-cht": "共享裝置",
"xloc": [
- "default.handlebars->31->211",
- "default.handlebars->31->775"
+ "default.handlebars->31->212",
+ "default.handlebars->31->776"
]
},
{
@@ -35102,7 +35116,7 @@
"zh-chs": "共享过程",
"zh-cht": "共享過程",
"xloc": [
- "default.handlebars->31->922"
+ "default.handlebars->31->923"
]
},
{
@@ -35152,10 +35166,10 @@
"fr": "Shift",
"nl": "Shift",
"xloc": [
- "default-mobile.handlebars->11->331",
- "default-mobile.handlebars->11->335",
- "default.handlebars->31->898",
- "default.handlebars->31->902"
+ "default-mobile.handlebars->11->332",
+ "default-mobile.handlebars->11->336",
+ "default.handlebars->31->899",
+ "default.handlebars->31->903"
]
},
{
@@ -35337,8 +35351,8 @@
"zh-chs": "只显示自己的事件",
"zh-cht": "只顯示自己的事件",
"xloc": [
- "default-mobile.handlebars->11->485",
- "default.handlebars->31->1530"
+ "default-mobile.handlebars->11->486",
+ "default.handlebars->31->1531"
]
},
{
@@ -35358,7 +35372,7 @@
"zh-chs": "显示连接工具栏",
"zh-cht": "顯示連接工具欄",
"xloc": [
- "default.handlebars->31->1492"
+ "default.handlebars->31->1493"
]
},
{
@@ -35398,7 +35412,7 @@
"zh-chs": "显示设备位置信息",
"zh-cht": "顯示裝置位置訊息",
"xloc": [
- "default.handlebars->31->652"
+ "default.handlebars->31->653"
]
},
{
@@ -35418,7 +35432,7 @@
"zh-chs": "显示设备网络接口信息",
"zh-cht": "顯示裝置網絡介面訊息",
"xloc": [
- "default.handlebars->31->650"
+ "default.handlebars->31->651"
]
},
{
@@ -35458,8 +35472,8 @@
"zh-chs": "显示1分钟",
"zh-cht": "顯示1分鐘",
"xloc": [
- "default.handlebars->31->1832",
- "default.handlebars->31->1855"
+ "default.handlebars->31->1833",
+ "default.handlebars->31->1856"
]
},
{
@@ -35479,8 +35493,8 @@
"zh-chs": "显示10秒",
"zh-cht": "顯示10秒",
"xloc": [
- "default.handlebars->31->1831",
- "default.handlebars->31->1854"
+ "default.handlebars->31->1832",
+ "default.handlebars->31->1855"
]
},
{
@@ -35500,8 +35514,8 @@
"zh-chs": "显示5分钟",
"zh-cht": "顯示5分鐘",
"xloc": [
- "default.handlebars->31->1833",
- "default.handlebars->31->1856"
+ "default.handlebars->31->1834",
+ "default.handlebars->31->1857"
]
},
{
@@ -35521,8 +35535,8 @@
"zh-chs": "显示消息,直到被用户拒绝",
"zh-cht": "顯示消息,直到被用戶拒絕",
"xloc": [
- "default.handlebars->31->1830",
- "default.handlebars->31->1853"
+ "default.handlebars->31->1831",
+ "default.handlebars->31->1854"
]
},
{
@@ -35716,8 +35730,8 @@
"zh-chs": "简单管理员控制模式(ACM)",
"zh-cht": "簡單管理員控制模式(ACM)",
"xloc": [
- "default.handlebars->31->1429",
- "default.handlebars->31->1449"
+ "default.handlebars->31->1430",
+ "default.handlebars->31->1450"
]
},
{
@@ -35737,8 +35751,8 @@
"zh-chs": "简单客户端控制模式(CCM)",
"zh-cht": "簡單客戶端控制模式(CCM)",
"xloc": [
- "default.handlebars->31->1427",
- "default.handlebars->31->1453"
+ "default.handlebars->31->1428",
+ "default.handlebars->31->1454"
]
},
{
@@ -35758,7 +35772,7 @@
"zh-chs": "信地",
"zh-cht": "信地",
"xloc": [
- "default.handlebars->31->1264"
+ "default.handlebars->31->1265"
]
},
{
@@ -35778,7 +35792,7 @@
"zh-chs": "僧伽罗文",
"zh-cht": "僧伽羅文",
"xloc": [
- "default.handlebars->31->1265"
+ "default.handlebars->31->1266"
]
},
{
@@ -35820,8 +35834,8 @@
"zh-chs": "尺寸",
"zh-cht": "尺寸",
"xloc": [
- "default.handlebars->31->2104",
- "default.handlebars->31->2119",
+ "default.handlebars->31->2105",
+ "default.handlebars->31->2120",
"default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSize"
]
},
@@ -35842,7 +35856,7 @@
"zh-chs": "缩放:100%",
"zh-cht": "縮放:100%",
"xloc": [
- "default.handlebars->31->988"
+ "default.handlebars->31->989"
]
},
{
@@ -35862,7 +35876,7 @@
"zh-chs": "缩放:125%",
"zh-cht": "縮放:125%",
"xloc": [
- "default.handlebars->31->989"
+ "default.handlebars->31->990"
]
},
{
@@ -35882,7 +35896,7 @@
"zh-chs": "缩放:150%",
"zh-cht": "縮放:150%",
"xloc": [
- "default.handlebars->31->990"
+ "default.handlebars->31->991"
]
},
{
@@ -35902,7 +35916,7 @@
"zh-chs": "缩放:200%",
"zh-cht": "縮放:200%",
"xloc": [
- "default.handlebars->31->991"
+ "default.handlebars->31->992"
]
},
{
@@ -35922,14 +35936,14 @@
"zh-chs": "休眠",
"zh-cht": "休眠",
"xloc": [
- "default-mobile.handlebars->11->193",
"default-mobile.handlebars->11->194",
"default-mobile.handlebars->11->195",
- "default-mobile.handlebars->11->282",
+ "default-mobile.handlebars->11->196",
+ "default-mobile.handlebars->11->283",
"default.handlebars->31->2",
"default.handlebars->31->3",
"default.handlebars->31->4",
- "default.handlebars->31->779"
+ "default.handlebars->31->780"
]
},
{
@@ -35949,7 +35963,7 @@
"zh-chs": "把装置休眠",
"zh-cht": "把裝置休眠",
"xloc": [
- "default.handlebars->31->458"
+ "default.handlebars->31->459"
]
},
{
@@ -35969,10 +35983,10 @@
"zh-chs": "休眠中",
"zh-cht": "休眠中",
"xloc": [
- "default-mobile.handlebars->11->200",
"default-mobile.handlebars->11->201",
- "default.handlebars->31->423",
- "default.handlebars->31->425"
+ "default-mobile.handlebars->11->202",
+ "default.handlebars->31->424",
+ "default.handlebars->31->426"
]
},
{
@@ -35992,7 +36006,7 @@
"zh-chs": "斯洛伐克文",
"zh-cht": "斯洛伐克文",
"xloc": [
- "default.handlebars->31->1267"
+ "default.handlebars->31->1268"
]
},
{
@@ -36012,7 +36026,7 @@
"zh-chs": "斯洛文尼亞文",
"zh-cht": "斯洛文尼亞文",
"xloc": [
- "default.handlebars->31->1268"
+ "default.handlebars->31->1269"
]
},
{
@@ -36075,7 +36089,7 @@
"zh-chs": "小焦点",
"zh-cht": "小焦點",
"xloc": [
- "default.handlebars->31->881"
+ "default.handlebars->31->882"
]
},
{
@@ -36095,7 +36109,7 @@
"zh-chs": "软断开代理",
"zh-cht": "軟斷開代理",
"xloc": [
- "default.handlebars->31->1094"
+ "default.handlebars->31->1095"
]
},
{
@@ -36115,8 +36129,8 @@
"zh-chs": "软关机",
"zh-cht": "軟關機",
"xloc": [
- "default-mobile.handlebars->11->204",
- "default.handlebars->31->431"
+ "default-mobile.handlebars->11->205",
+ "default.handlebars->31->432"
]
},
{
@@ -36136,7 +36150,7 @@
"zh-chs": "软件代理组",
"zh-cht": "軟體代理群",
"xloc": [
- "default-mobile.handlebars->11->109"
+ "default-mobile.handlebars->11->110"
]
},
{
@@ -36156,7 +36170,7 @@
"zh-chs": "索马尼",
"zh-cht": "索馬尼",
"xloc": [
- "default.handlebars->31->1269"
+ "default.handlebars->31->1270"
]
},
{
@@ -36176,7 +36190,7 @@
"zh-chs": "索比亚文",
"zh-cht": "索比亞文",
"xloc": [
- "default.handlebars->31->1270"
+ "default.handlebars->31->1271"
]
},
{
@@ -36327,7 +36341,7 @@
"zh-chs": "西班牙文",
"zh-cht": "西班牙文",
"xloc": [
- "default.handlebars->31->1271"
+ "default.handlebars->31->1272"
]
},
{
@@ -36347,7 +36361,7 @@
"zh-chs": "西班牙文(阿根廷)",
"zh-cht": "西班牙文(阿根廷)",
"xloc": [
- "default.handlebars->31->1272"
+ "default.handlebars->31->1273"
]
},
{
@@ -36367,7 +36381,7 @@
"zh-chs": "西班牙文(玻利维亚)",
"zh-cht": "西班牙文(玻利維亞)",
"xloc": [
- "default.handlebars->31->1273"
+ "default.handlebars->31->1274"
]
},
{
@@ -36387,7 +36401,7 @@
"zh-chs": "西班牙文(智利)",
"zh-cht": "西班牙文(智利)",
"xloc": [
- "default.handlebars->31->1274"
+ "default.handlebars->31->1275"
]
},
{
@@ -36407,7 +36421,7 @@
"zh-chs": "西班牙文(哥伦比亚)",
"zh-cht": "西班牙文(哥倫比亞)",
"xloc": [
- "default.handlebars->31->1275"
+ "default.handlebars->31->1276"
]
},
{
@@ -36427,7 +36441,7 @@
"zh-chs": "西班牙文(哥斯达黎加)",
"zh-cht": "西班牙文(哥斯達黎加)",
"xloc": [
- "default.handlebars->31->1276"
+ "default.handlebars->31->1277"
]
},
{
@@ -36447,7 +36461,7 @@
"zh-chs": "西班牙文(多米尼加共和国)",
"zh-cht": "西班牙文(多米尼加共和國)",
"xloc": [
- "default.handlebars->31->1277"
+ "default.handlebars->31->1278"
]
},
{
@@ -36467,7 +36481,7 @@
"zh-chs": "西班牙文(厄瓜多尔)",
"zh-cht": "西班牙文(厄瓜多爾)",
"xloc": [
- "default.handlebars->31->1278"
+ "default.handlebars->31->1279"
]
},
{
@@ -36487,7 +36501,7 @@
"zh-chs": "西班牙文(萨尔瓦多)",
"zh-cht": "西班牙文(薩爾瓦多)",
"xloc": [
- "default.handlebars->31->1279"
+ "default.handlebars->31->1280"
]
},
{
@@ -36507,7 +36521,7 @@
"zh-chs": "西班牙文(危地马拉)",
"zh-cht": "西班牙文(危地馬拉)",
"xloc": [
- "default.handlebars->31->1280"
+ "default.handlebars->31->1281"
]
},
{
@@ -36527,7 +36541,7 @@
"zh-chs": "西班牙文(洪都拉斯)",
"zh-cht": "西班牙文(洪都拉斯)",
"xloc": [
- "default.handlebars->31->1281"
+ "default.handlebars->31->1282"
]
},
{
@@ -36547,7 +36561,7 @@
"zh-chs": "西班牙文(墨西哥)",
"zh-cht": "西班牙文(墨西哥)",
"xloc": [
- "default.handlebars->31->1282"
+ "default.handlebars->31->1283"
]
},
{
@@ -36567,7 +36581,7 @@
"zh-chs": "西班牙文(尼加拉瓜)",
"zh-cht": "西班牙文(尼加拉瓜)",
"xloc": [
- "default.handlebars->31->1283"
+ "default.handlebars->31->1284"
]
},
{
@@ -36587,7 +36601,7 @@
"zh-chs": "西班牙文(巴拿马)",
"zh-cht": "西班牙文(巴拿馬)",
"xloc": [
- "default.handlebars->31->1284"
+ "default.handlebars->31->1285"
]
},
{
@@ -36607,7 +36621,7 @@
"zh-chs": "西班牙文(巴拉圭)",
"zh-cht": "西班牙文(巴拉圭)",
"xloc": [
- "default.handlebars->31->1285"
+ "default.handlebars->31->1286"
]
},
{
@@ -36627,7 +36641,7 @@
"zh-chs": "西班牙文(秘鲁)",
"zh-cht": "西班牙文(秘魯)",
"xloc": [
- "default.handlebars->31->1286"
+ "default.handlebars->31->1287"
]
},
{
@@ -36647,7 +36661,7 @@
"zh-chs": "西班牙文(波多黎各)",
"zh-cht": "西班牙文(波多黎各)",
"xloc": [
- "default.handlebars->31->1287"
+ "default.handlebars->31->1288"
]
},
{
@@ -36667,7 +36681,7 @@
"zh-chs": "西班牙文(西班牙)",
"zh-cht": "西班牙文(西班牙)",
"xloc": [
- "default.handlebars->31->1288"
+ "default.handlebars->31->1289"
]
},
{
@@ -36687,7 +36701,7 @@
"zh-chs": "西班牙文(乌拉圭)",
"zh-cht": "西班牙文(烏拉圭)",
"xloc": [
- "default.handlebars->31->1289"
+ "default.handlebars->31->1290"
]
},
{
@@ -36707,7 +36721,7 @@
"zh-chs": "西班牙文(委内瑞拉)",
"zh-cht": "西班牙文(委內瑞拉)",
"xloc": [
- "default.handlebars->31->1290"
+ "default.handlebars->31->1291"
]
},
{
@@ -36727,7 +36741,7 @@
"zh-chs": "特殊键",
"zh-cht": "特殊鍵",
"xloc": [
- "default-mobile.handlebars->11->341"
+ "default-mobile.handlebars->11->342"
]
},
{
@@ -36747,7 +36761,7 @@
"zh-chs": "稳定版",
"zh-cht": "穩定版",
"xloc": [
- "default.handlebars->31->122"
+ "default.handlebars->31->123"
]
},
{
@@ -36787,7 +36801,7 @@
"zh-chs": "开始",
"zh-cht": "開始",
"xloc": [
- "default.handlebars->31->925"
+ "default.handlebars->31->926"
]
},
{
@@ -36824,10 +36838,10 @@
"zh-chs": "开始时间",
"zh-cht": "開始時間",
"xloc": [
- "default.handlebars->31->201",
- "default.handlebars->31->2102",
- "default.handlebars->31->2121",
- "default.handlebars->31->871",
+ "default.handlebars->31->202",
+ "default.handlebars->31->2103",
+ "default.handlebars->31->2122",
+ "default.handlebars->31->872",
"desktop.handlebars->3->14"
]
},
@@ -36848,7 +36862,7 @@
"zh-chs": "首先输入新旧MBEx密码。",
"zh-cht": "首先輸入新舊MBEx密碼。",
"xloc": [
- "default.handlebars->31->318"
+ "default.handlebars->31->319"
]
},
{
@@ -36856,7 +36870,7 @@
"fr": "Démarrer la discussion ?",
"nl": "Chat sessie starten?",
"xloc": [
- "default-mobile.handlebars->11->289"
+ "default-mobile.handlebars->11->290"
]
},
{
@@ -36876,7 +36890,7 @@
"zh-chs": "开始桌面多重会话",
"zh-cht": "啟動桌面多路復用會話",
"xloc": [
- "default.handlebars->31->1664"
+ "default.handlebars->31->1665"
]
},
{
@@ -36896,7 +36910,7 @@
"zh-chs": "从{1}到{2}开始了桌面会话“{0}”",
"zh-cht": "從{1}到{2}開始了桌面會話“{0}”",
"xloc": [
- "default.handlebars->31->1673"
+ "default.handlebars->31->1674"
]
},
{
@@ -36916,7 +36930,7 @@
"zh-chs": "从{1}到{2}开始文件管理会话“{0}”",
"zh-cht": "從{1}到{2}開始文件管理會話“{0}”",
"xloc": [
- "default.handlebars->31->1674"
+ "default.handlebars->31->1675"
]
},
{
@@ -36936,7 +36950,7 @@
"zh-chs": "从{1}到{2}开始中继会话“{0}”",
"zh-cht": "從{1}到{2}開始中繼會話“{0}”",
"xloc": [
- "default.handlebars->31->1671"
+ "default.handlebars->31->1672"
]
},
{
@@ -36956,7 +36970,7 @@
"zh-chs": "使用Toast通知启动远程桌面",
"zh-cht": "使用Toast通知啟動遠程桌面",
"xloc": [
- "default.handlebars->31->1693"
+ "default.handlebars->31->1694"
]
},
{
@@ -36976,7 +36990,7 @@
"zh-chs": "启动远程桌面,而无需通知",
"zh-cht": "啟動遠程桌面,而無需通知",
"xloc": [
- "default.handlebars->31->1694"
+ "default.handlebars->31->1695"
]
},
{
@@ -36996,7 +37010,7 @@
"zh-chs": "启动带有Toast通知的远程文件",
"zh-cht": "啟動帶有Toast通知的遠程文件",
"xloc": [
- "default.handlebars->31->1700"
+ "default.handlebars->31->1701"
]
},
{
@@ -37016,7 +37030,7 @@
"zh-chs": "已启动的远程文件,恕不另行通知",
"zh-cht": "已啟動的遠程文件,恕不另行通知",
"xloc": [
- "default.handlebars->31->1701"
+ "default.handlebars->31->1702"
]
},
{
@@ -37036,7 +37050,7 @@
"zh-chs": "从{1}到{2}开始了终端会话“{0}”",
"zh-cht": "從{1}到{2}開始了終端會話“{0}”",
"xloc": [
- "default.handlebars->31->1672"
+ "default.handlebars->31->1673"
]
},
{
@@ -37056,7 +37070,7 @@
"zh-chs": "现在开始",
"zh-cht": "現在開始",
"xloc": [
- "default.handlebars->31->768"
+ "default.handlebars->31->769"
]
},
{
@@ -37076,7 +37090,7 @@
"zh-chs": "接受本地用户后启动远程桌面",
"zh-cht": "接受本地用戶後啟動遠程桌面",
"xloc": [
- "default.handlebars->31->1688"
+ "default.handlebars->31->1689"
]
},
{
@@ -37096,7 +37110,7 @@
"zh-chs": "本地用户接受后启动远程文件",
"zh-cht": "本地用戶接受後啟動遠程文件",
"xloc": [
- "default.handlebars->31->1698"
+ "default.handlebars->31->1699"
]
},
{
@@ -37116,7 +37130,7 @@
"zh-chs": "状况",
"zh-cht": "狀態",
"xloc": [
- "default.handlebars->31->916",
+ "default.handlebars->31->917",
"default.handlebars->container->column_l->p11->deskarea0->deskarea3x->DeskTools->deskToolsArea->DeskToolsServiceTab->deskToolsServiceHeader->1"
]
},
@@ -37157,8 +37171,8 @@
"zh-chs": "状况",
"zh-cht": "狀態",
"xloc": [
- "default.handlebars->31->2049",
- "default.handlebars->31->2114",
+ "default.handlebars->31->2050",
+ "default.handlebars->31->2115",
"default.handlebars->container->column_l->p42->p42tbl->1->0->7"
]
},
@@ -37179,7 +37193,7 @@
"zh-chs": "停止",
"zh-cht": "停止",
"xloc": [
- "default.handlebars->31->926"
+ "default.handlebars->31->927"
]
},
{
@@ -37199,7 +37213,7 @@
"zh-chs": "停止进程",
"zh-cht": "停止進程",
"xloc": [
- "default.handlebars->31->913"
+ "default.handlebars->31->914"
]
},
{
@@ -37219,7 +37233,7 @@
"zh-chs": "停止进程#{0} “{1}”?",
"zh-cht": "停止進程#{0} “{1}”?",
"xloc": [
- "default.handlebars->31->932",
+ "default.handlebars->31->933",
"desktop.handlebars->3->25"
]
},
@@ -37257,8 +37271,8 @@
"zh-chs": "储存",
"zh-cht": "儲存",
"xloc": [
- "default-mobile.handlebars->11->450",
- "default.handlebars->31->1078"
+ "default-mobile.handlebars->11->451",
+ "default.handlebars->31->1079"
]
},
{
@@ -37278,7 +37292,7 @@
"zh-chs": "超出储存空间",
"zh-cht": "超出儲存空間",
"xloc": [
- "default-mobile.handlebars->11->120"
+ "default-mobile.handlebars->11->121"
]
},
{
@@ -37298,7 +37312,7 @@
"zh-chs": "超出储存空间",
"zh-cht": "超出儲存空間",
"xloc": [
- "default.handlebars->31->1619"
+ "default.handlebars->31->1620"
]
},
{
@@ -37318,7 +37332,7 @@
"zh-chs": "强",
"zh-cht": "強",
"xloc": [
- "default.handlebars->31->1363"
+ "default.handlebars->31->1364"
]
},
{
@@ -37363,7 +37377,7 @@
"zh-chs": "主题",
"zh-cht": "主題",
"xloc": [
- "default.handlebars->31->1827"
+ "default.handlebars->31->1828"
]
},
{
@@ -37403,7 +37417,7 @@
"zh-chs": "成功",
"zh-cht": "成功",
"xloc": [
- "default.handlebars->31->76"
+ "default.handlebars->31->77"
]
},
{
@@ -37463,7 +37477,7 @@
"zh-chs": "苏图",
"zh-cht": "蘇圖",
"xloc": [
- "default.handlebars->31->1291"
+ "default.handlebars->31->1292"
]
},
{
@@ -37483,7 +37497,7 @@
"zh-chs": "斯瓦希里文",
"zh-cht": "斯瓦希里文",
"xloc": [
- "default.handlebars->31->1292"
+ "default.handlebars->31->1293"
]
},
{
@@ -37523,7 +37537,7 @@
"zh-chs": "瑞典文",
"zh-cht": "瑞典文",
"xloc": [
- "default.handlebars->31->1293"
+ "default.handlebars->31->1294"
]
},
{
@@ -37543,7 +37557,7 @@
"zh-chs": "瑞典文(芬兰)",
"zh-cht": "瑞典文(芬蘭)",
"xloc": [
- "default.handlebars->31->1294"
+ "default.handlebars->31->1295"
]
},
{
@@ -37563,7 +37577,7 @@
"zh-chs": "瑞典文(瑞典)",
"zh-cht": "瑞典文(瑞典)",
"xloc": [
- "default.handlebars->31->1295"
+ "default.handlebars->31->1296"
]
},
{
@@ -37583,7 +37597,7 @@
"zh-chs": "将英特尔AMT切换到管理员控制模式(ACM)。",
"zh-cht": "將英特爾AMT切換到管理員控制模式(ACM)。",
"xloc": [
- "default.handlebars->31->1443"
+ "default.handlebars->31->1444"
]
},
{
@@ -37603,7 +37617,7 @@
"zh-chs": "将服务器设备名称同步到主机名称",
"zh-cht": "將伺服器裝置名稱同步到主機名稱",
"xloc": [
- "default.handlebars->31->1500"
+ "default.handlebars->31->1501"
]
},
{
@@ -37623,7 +37637,7 @@
"zh-chs": "系统类型",
"zh-cht": "系統類型",
"xloc": [
- "default.handlebars->31->379"
+ "default.handlebars->31->380"
]
},
{
@@ -37660,8 +37674,8 @@
"zh-chs": "TCP路由",
"zh-cht": "TCP路由",
"xloc": [
- "default-mobile.handlebars->11->184",
- "default.handlebars->31->278"
+ "default-mobile.handlebars->11->185",
+ "default.handlebars->31->279"
]
},
{
@@ -37748,8 +37762,8 @@
"zh-chs": "TLS",
"zh-cht": "TLS",
"xloc": [
- "default-mobile.handlebars->11->248",
- "default.handlebars->31->589"
+ "default-mobile.handlebars->11->249",
+ "default.handlebars->31->590"
]
},
{
@@ -37769,8 +37783,8 @@
"zh-chs": "未设置TLS",
"zh-cht": "未設置TLS",
"xloc": [
- "default-mobile.handlebars->11->424",
- "default.handlebars->31->1052"
+ "default-mobile.handlebars->11->425",
+ "default.handlebars->31->1053"
]
},
{
@@ -37790,9 +37804,9 @@
"zh-chs": "需要TLS加密",
"zh-cht": "需要TLS加密",
"xloc": [
- "default-mobile.handlebars->11->296",
- "default.handlebars->31->312",
- "default.handlebars->31->802"
+ "default-mobile.handlebars->11->297",
+ "default.handlebars->31->313",
+ "default.handlebars->31->803"
]
},
{
@@ -37812,9 +37826,9 @@
"zh-chs": "标签",
"zh-cht": "標籤",
"xloc": [
- "default-mobile.handlebars->11->317",
+ "default-mobile.handlebars->11->318",
"default-mobile.handlebars->dialog->3->dialog3->deskkeys->3",
- "default.handlebars->31->884"
+ "default.handlebars->31->885"
]
},
{
@@ -37834,8 +37848,8 @@
"zh-chs": "标签1,标签2,标签3",
"zh-cht": "標籤1,標籤2,標籤3",
"xloc": [
- "default.handlebars->31->487",
- "default.handlebars->31->861"
+ "default.handlebars->31->488",
+ "default.handlebars->31->862"
]
},
{
@@ -37875,13 +37889,13 @@
"zh-chs": "标签",
"zh-cht": "標籤",
"xloc": [
- "default-mobile.handlebars->11->267",
"default-mobile.handlebars->11->268",
- "default-mobile.handlebars->11->305",
- "default.handlebars->31->486",
- "default.handlebars->31->634",
+ "default-mobile.handlebars->11->269",
+ "default-mobile.handlebars->11->306",
+ "default.handlebars->31->487",
"default.handlebars->31->635",
- "default.handlebars->31->860",
+ "default.handlebars->31->636",
+ "default.handlebars->31->861",
"default.handlebars->container->column_l->p1->devListToolbarSpan->1->0->9->devListToolbarSort->sortselect->7"
]
},
@@ -37902,7 +37916,7 @@
"zh-chs": "泰米尔文",
"zh-cht": "泰米爾文",
"xloc": [
- "default.handlebars->31->1296"
+ "default.handlebars->31->1297"
]
},
{
@@ -37922,7 +37936,7 @@
"zh-chs": "塔塔尔族",
"zh-cht": "塔塔爾族",
"xloc": [
- "default.handlebars->31->1297"
+ "default.handlebars->31->1298"
]
},
{
@@ -37942,7 +37956,7 @@
"zh-chs": "泰卢加",
"zh-cht": "泰盧加",
"xloc": [
- "default.handlebars->31->1298"
+ "default.handlebars->31->1299"
]
},
{
@@ -37962,13 +37976,13 @@
"zh-chs": "终端",
"zh-cht": "終端機",
"xloc": [
- "default-mobile.handlebars->11->178",
- "default.handlebars->31->1493",
- "default.handlebars->31->2108",
- "default.handlebars->31->272",
- "default.handlebars->31->541",
- "default.handlebars->31->693",
- "default.handlebars->31->751",
+ "default-mobile.handlebars->11->179",
+ "default.handlebars->31->1494",
+ "default.handlebars->31->2109",
+ "default.handlebars->31->273",
+ "default.handlebars->31->542",
+ "default.handlebars->31->694",
+ "default.handlebars->31->752",
"default.handlebars->container->topbar->1->1->MainSubMenuSpan->MainSubMenu->1->0->MainDevTerminal",
"default.handlebars->contextMenu->cxterminal"
]
@@ -38010,10 +38024,10 @@
"zh-chs": "终端通知",
"zh-cht": "終端機通知",
"xloc": [
- "default.handlebars->31->1412",
- "default.handlebars->31->1926",
- "default.handlebars->31->2013",
- "default.handlebars->31->615"
+ "default.handlebars->31->1413",
+ "default.handlebars->31->1927",
+ "default.handlebars->31->2014",
+ "default.handlebars->31->616"
]
},
{
@@ -38033,10 +38047,10 @@
"zh-chs": "终端提示",
"zh-cht": "終端機提示",
"xloc": [
- "default.handlebars->31->1411",
- "default.handlebars->31->1925",
- "default.handlebars->31->2012",
- "default.handlebars->31->614"
+ "default.handlebars->31->1412",
+ "default.handlebars->31->1926",
+ "default.handlebars->31->2013",
+ "default.handlebars->31->615"
]
},
{
@@ -38145,7 +38159,7 @@
"zh-chs": "泰国",
"zh-cht": "泰國",
"xloc": [
- "default.handlebars->31->1299"
+ "default.handlebars->31->1300"
]
},
{
@@ -38223,7 +38237,7 @@
"zh-chs": "此计算机所属的设备组的名称",
"zh-cht": "此電腦所屬的裝置群的名稱",
"xloc": [
- "default.handlebars->31->568"
+ "default.handlebars->31->569"
]
},
{
@@ -38243,7 +38257,7 @@
"zh-chs": "此计算机所属的设备组的名称。",
"zh-cht": "此電腦所屬的裝置群的名稱。",
"xloc": [
- "default.handlebars->31->566"
+ "default.handlebars->31->567"
]
},
{
@@ -38263,8 +38277,8 @@
"zh-chs": "此计算机的在操作系统中已设置的名称",
"zh-cht": "此電腦在操作系統中已設置的的名稱",
"xloc": [
- "default.handlebars->31->569",
- "default.handlebars->31->571"
+ "default.handlebars->31->570",
+ "default.handlebars->31->572"
]
},
{
@@ -38284,8 +38298,8 @@
"zh-chs": "目前没有任何通知",
"zh-cht": "目前沒有任何通知",
"xloc": [
- "default-mobile.handlebars->11->518",
- "default.handlebars->31->2129"
+ "default-mobile.handlebars->11->519",
+ "default.handlebars->31->2130"
]
},
{
@@ -38293,8 +38307,8 @@
"nl": "Er zijn {0} mislukte inlogpogingen voor dit account sinds de laatste keer inloggen.",
"fr": "Il y a eu {0} tentatives de connexion infructueuses sur ce compte depuis la dernière connexion.",
"xloc": [
- "default-mobile.handlebars->11->539",
- "default.handlebars->31->2150"
+ "default-mobile.handlebars->11->540",
+ "default.handlebars->31->2151"
]
},
{
@@ -38334,7 +38348,7 @@
"zh-chs": "这些设置可用于连接该设备的MQTT。",
"zh-cht": "這些設置可用於連接該裝置的MQTT。",
"xloc": [
- "default.handlebars->31->212"
+ "default.handlebars->31->213"
]
},
{
@@ -38354,8 +38368,8 @@
"zh-chs": "此帐户无权创建新的设备组。",
"zh-cht": "此帳戶無權建立新的裝置群。",
"xloc": [
- "default-mobile.handlebars->11->102",
- "default.handlebars->31->1349"
+ "default-mobile.handlebars->11->103",
+ "default.handlebars->31->1350"
]
},
{
@@ -38375,7 +38389,7 @@
"zh-chs": "这是OS图形用户界面上的可执行档案。您需要'chmod + x meshagent'并运行此档案。",
"zh-cht": "這是OS圖形用戶界面上的可執行檔案。你需要'chmod + x meshagent'並運行此檔案。",
"xloc": [
- "default.handlebars->31->411"
+ "default.handlebars->31->412"
]
},
{
@@ -38449,7 +38463,7 @@
"zh-chs": "这是推荐的策略。英特尔®AMT激活和管理是完全自动化的,服务器将尝试最大程度地利用硬件管理。",
"zh-cht": "這是推薦的策略。英特爾®AMT激活和管理是完全自動化的,服務器將嘗試最大程度地利用硬件管理。",
"xloc": [
- "default.handlebars->31->1478"
+ "default.handlebars->31->1479"
]
},
{
@@ -38490,7 +38504,7 @@
"zh-chs": "此政策不会影响采用ACM模式的英特尔®AMT的设备。",
"zh-cht": "此政策不會影響採用ACM模式的Intel® AMT的裝置。",
"xloc": [
- "default.handlebars->31->1475"
+ "default.handlebars->31->1476"
]
},
{
@@ -38573,7 +38587,7 @@
"zh-chs": "这会在此设备的事件日志中添加一个条目。",
"zh-cht": "這會在此裝置的事件日誌中增加一個記錄。",
"xloc": [
- "default.handlebars->31->739"
+ "default.handlebars->31->740"
]
},
{
@@ -38610,7 +38624,7 @@
"zh-chs": "这不会从服务器上删除该设备,但是该设备将不再能够连接到服务器。该设备的所有远程访问都将丢失。该设备必须连线,此命令才能起作用。",
"zh-cht": "這不會從伺服器上刪除該裝置,但是該裝置將不再能夠連接到伺服器。該裝置的所有遠程訪問都將丟失。該設備必須連線,此命令才能起作用。",
"xloc": [
- "default.handlebars->31->809"
+ "default.handlebars->31->810"
]
},
{
@@ -38630,7 +38644,7 @@
"zh-chs": "这不会从服务器上删除该设备,但是该设备将不再能够连接到服务器。该设备的所有远程访问都将丢失。该设备必须连线,此命令才能起作用。",
"zh-cht": "這不會從伺服器上刪除該裝置,但是該裝置將不再能夠連接到伺服器。該裝置的所有遠程訪問都將丟失。該設備必須連線,此命令才能起作用。",
"xloc": [
- "default.handlebars->31->810"
+ "default.handlebars->31->811"
]
},
{
@@ -38650,7 +38664,7 @@
"zh-chs": "蒂格雷",
"zh-cht": "蒂格雷",
"xloc": [
- "default.handlebars->31->1300"
+ "default.handlebars->31->1301"
]
},
{
@@ -38690,7 +38704,7 @@
"zh-chs": "时间范围",
"zh-cht": "時間範圍",
"xloc": [
- "default.handlebars->31->771"
+ "default.handlebars->31->772"
]
},
{
@@ -38710,7 +38724,7 @@
"zh-chs": "时间跨度",
"zh-cht": "時間跨度",
"xloc": [
- "default.handlebars->31->1766"
+ "default.handlebars->31->1767"
]
},
{
@@ -38730,7 +38744,7 @@
"zh-chs": "时间范围",
"zh-cht": "時間範圍",
"xloc": [
- "default.handlebars->31->769"
+ "default.handlebars->31->770"
]
},
{
@@ -38750,8 +38764,8 @@
"zh-chs": "超时",
"zh-cht": "超時",
"xloc": [
- "default-mobile.handlebars->11->311",
- "default.handlebars->31->866",
+ "default-mobile.handlebars->11->312",
+ "default.handlebars->31->867",
"desktop.handlebars->3->9",
"terminal.handlebars->3->13"
]
@@ -38773,7 +38787,7 @@
"zh-chs": "标题",
"zh-cht": "標題",
"xloc": [
- "default.handlebars->31->492"
+ "default.handlebars->31->493"
]
},
{
@@ -38793,14 +38807,14 @@
"zh-chs": "要将计算机添加到{0},请运行以下命令。命令需要root凭证。",
"zh-cht": "要將電腦新增到{0},請運行以下命令。命令需要root憑據。",
"xloc": [
- "default.handlebars->31->395"
+ "default.handlebars->31->396"
]
},
{
"en": "To add a mobile device to group \\\"{0}\\\", download the MeshAgent application and scan this QR code.",
"nl": "Om een mobiel apparaat toe te voegen aan de groep \\\"{0}\\\", downloadt u de MeshAgent applicatie en scant u deze QR-code.",
"xloc": [
- "default.handlebars->31->401"
+ "default.handlebars->31->402"
]
},
{
@@ -38871,7 +38885,7 @@
"zh-chs": "要将新计算机添加到设备组“ {0} ”,请下载网状代理并安装该计算机以进行管理。这代理中已嵌入了服务器和设备组信息。",
"zh-cht": "要將新電腦新增到裝置群“ {0} ”,請下載mesh agent並安裝該電腦以進行管理。這agent中已嵌入了伺服器和裝置群訊息。",
"xloc": [
- "default.handlebars->31->384"
+ "default.handlebars->31->385"
]
},
{
@@ -38891,7 +38905,7 @@
"zh-chs": "要将新计算机添加到设备组“ {0} ”,请下载网状代理并安装该计算机以进行管理。该代理安装程序中已嵌入了服务器和设备组讯息。",
"zh-cht": "要將新電腦新增到裝置群“ {0} ”,請下載mesh agent並安裝該電腦以進行管理。該代理安裝程序中已嵌入了伺服器和裝置群訊息。",
"xloc": [
- "default.handlebars->31->397"
+ "default.handlebars->31->398"
]
},
{
@@ -38911,7 +38925,7 @@
"zh-chs": "要删除此帐户,请在下面的两个框中键入帐户密码,然后单击确定。",
"zh-cht": "要刪除此帳戶,請在下面的兩個框中鍵入帳戶密碼,然後單擊確定。",
"xloc": [
- "default.handlebars->31->1336"
+ "default.handlebars->31->1337"
]
},
{
@@ -39011,7 +39025,7 @@
"zh-chs": "要删除网格代理,请下载以下档案,运行并单击“卸载”。",
"zh-cht": "要刪除mash agent,請下載以下檔案,運行該檔案,然後單擊“卸載”。",
"xloc": [
- "default.handlebars->31->403"
+ "default.handlebars->31->404"
]
},
{
@@ -39031,7 +39045,7 @@
"zh-chs": "要删除网格代理,请运行以下命令。需要根凭证。",
"zh-cht": "要刪除網格代理,請運行以下命令。需要root憑據。",
"xloc": [
- "default.handlebars->31->410"
+ "default.handlebars->31->411"
]
},
{
@@ -39071,7 +39085,7 @@
"zh-chs": "吐司通知",
"zh-cht": "吐司通知",
"xloc": [
- "default.handlebars->31->490"
+ "default.handlebars->31->491"
]
},
{
@@ -39390,7 +39404,7 @@
"zh-chs": "主题",
"zh-cht": "主題",
"xloc": [
- "default.handlebars->31->804"
+ "default.handlebars->31->805"
]
},
{
@@ -39450,7 +39464,7 @@
"zh-chs": "用于通过此服务器连接到设备的流量路由器",
"zh-cht": "用於通過此伺服器連接到裝置的流量路由器",
"xloc": [
- "default.handlebars->31->654"
+ "default.handlebars->31->655"
]
},
{
@@ -39470,7 +39484,7 @@
"zh-chs": "再试一次。",
"zh-cht": "再試一次。",
"xloc": [
- "default.handlebars->31->144"
+ "default.handlebars->31->145"
]
},
{
@@ -39510,7 +39524,7 @@
"zh-chs": "特松加",
"zh-cht": "特松加",
"xloc": [
- "default.handlebars->31->1301"
+ "default.handlebars->31->1302"
]
},
{
@@ -39530,7 +39544,7 @@
"zh-chs": "茨瓦纳",
"zh-cht": "茨瓦納",
"xloc": [
- "default.handlebars->31->1302"
+ "default.handlebars->31->1303"
]
},
{
@@ -39550,7 +39564,7 @@
"zh-chs": "土耳其",
"zh-cht": "土耳其",
"xloc": [
- "default.handlebars->31->1303"
+ "default.handlebars->31->1304"
]
},
{
@@ -39570,7 +39584,7 @@
"zh-chs": "土库曼文",
"zh-cht": "土庫曼文",
"xloc": [
- "default.handlebars->31->1304"
+ "default.handlebars->31->1305"
]
},
{
@@ -39590,7 +39604,7 @@
"zh-chs": "两因素身份验证",
"zh-cht": "二因子身份驗證",
"xloc": [
- "default.handlebars->31->60"
+ "default.handlebars->31->61"
]
},
{
@@ -39610,13 +39624,13 @@
"zh-chs": "类型",
"zh-cht": "類型",
"xloc": [
- "default-mobile.handlebars->11->108",
- "default-mobile.handlebars->11->458",
- "default.handlebars->31->1356",
- "default.handlebars->31->1398",
- "default.handlebars->31->1450",
- "default.handlebars->31->748",
- "default.handlebars->31->923",
+ "default-mobile.handlebars->11->109",
+ "default-mobile.handlebars->11->459",
+ "default.handlebars->31->1357",
+ "default.handlebars->31->1399",
+ "default.handlebars->31->1451",
+ "default.handlebars->31->749",
+ "default.handlebars->31->924",
"default.handlebars->container->column_l->p11->deskarea0->deskarea4->3",
"desktop.handlebars->p11->deskarea0->deskarea4->3"
]
@@ -39638,7 +39652,7 @@
"zh-chs": "输入密钥名称,选择OTP框,然后按YubiKey™上的按钮。",
"zh-cht": "輸入密鑰名稱,選擇OTP框,然後按YubiKey™上的按鈕。",
"xloc": [
- "default.handlebars->31->1113"
+ "default.handlebars->31->1114"
]
},
{
@@ -39658,7 +39672,7 @@
"zh-chs": "输入要添加的密钥的名称。",
"zh-cht": "輸入要新增的密鑰的名稱。",
"xloc": [
- "default.handlebars->31->1110"
+ "default.handlebars->31->1111"
]
},
{
@@ -39678,8 +39692,8 @@
"zh-chs": "UDP路由",
"zh-cht": "UDP路由",
"xloc": [
- "default-mobile.handlebars->11->187",
- "default.handlebars->31->281"
+ "default-mobile.handlebars->11->188",
+ "default.handlebars->31->282"
]
},
{
@@ -39699,7 +39713,7 @@
"zh-chs": "UTF8终端",
"zh-cht": "UTF8終端",
"xloc": [
- "default.handlebars->31->936",
+ "default.handlebars->31->937",
"terminal.handlebars->3->15"
]
},
@@ -39720,7 +39734,7 @@
"zh-chs": "乌克兰",
"zh-cht": "烏克蘭",
"xloc": [
- "default.handlebars->31->1305"
+ "default.handlebars->31->1306"
]
},
{
@@ -39757,8 +39771,8 @@
"zh-chs": "在验证电邮地址之前,无法访问设备。这是密码恢复所必需的。转到“我的帐户”以更改并验证电邮地址。",
"zh-cht": "在驗證電郵地址之前,無法訪問裝置。這是密碼恢復所必需的。轉到“我的帳戶”以更改並驗證電郵地址。",
"xloc": [
- "default-mobile.handlebars->11->104",
- "default-mobile.handlebars->11->222"
+ "default-mobile.handlebars->11->105",
+ "default-mobile.handlebars->11->223"
]
},
{
@@ -39778,8 +39792,8 @@
"zh-chs": "在启用两因素身份验证之前,无法访问设备。这是额外的安全性所必需的。转到“我的帐户”,然后查看“帐户安全性”部分。",
"zh-cht": "在啟用二因子身份驗證之前,無法訪問裝置。這是額外的安全性所必需的。轉到“我的帳戶”,然後查看“帳戶安全性”部分。",
"xloc": [
- "default-mobile.handlebars->11->106",
- "default-mobile.handlebars->11->224"
+ "default-mobile.handlebars->11->107",
+ "default-mobile.handlebars->11->225"
]
},
{
@@ -39816,8 +39830,8 @@
"zh-chs": "在验证电子邮件地址之前,无法访问此功能。这是密码恢复所必需的。转到“我的帐户”标签以更改和验证电子邮件地址。",
"zh-cht": "在驗證電子郵件地址之前,無法訪問此功能。這是密碼恢復所必需的。轉到“我的帳戶”標籤以更改和驗證電子郵件地址。",
"xloc": [
- "default.handlebars->31->1351",
- "default.handlebars->31->557"
+ "default.handlebars->31->1352",
+ "default.handlebars->31->558"
]
},
{
@@ -39837,9 +39851,9 @@
"zh-chs": "在启用两因素身份验证之前,无法访问此功能。这是额外的安全性所必需的。转到“我的帐户”标签,然后查看“帐户安全性”部分。",
"zh-cht": "在啟用兩因素身份驗證之前,無法訪問此功能。這是額外的安全性所必需的。轉到“我的帳戶”標籤,然後查看“帳戶安全性”部分。",
"xloc": [
- "default.handlebars->31->1353",
- "default.handlebars->31->2243",
- "default.handlebars->31->559"
+ "default.handlebars->31->1354",
+ "default.handlebars->31->2244",
+ "default.handlebars->31->560"
]
},
{
@@ -39847,8 +39861,8 @@
"nl": "Kan geen gebruiker toevoegen in deze modus",
"fr": "Impossible d'ajouter un utilisateur dans ce mode",
"xloc": [
- "default-mobile.handlebars->11->535",
- "default.handlebars->31->2146"
+ "default-mobile.handlebars->11->536",
+ "default.handlebars->31->2147"
]
},
{
@@ -39868,8 +39882,8 @@
"zh-chs": "无法连接网络套接字",
"zh-cht": "無法連接網絡插座",
"xloc": [
- "default-mobile.handlebars->11->49",
- "default.handlebars->31->58"
+ "default-mobile.handlebars->11->50",
+ "default.handlebars->31->59"
]
},
{
@@ -39911,8 +39925,8 @@
"zh-chs": "无法执行身份验证",
"zh-cht": "無法執行身份驗證",
"xloc": [
- "default-mobile.handlebars->11->48",
- "default.handlebars->31->57"
+ "default-mobile.handlebars->11->49",
+ "default.handlebars->31->58"
]
},
{
@@ -39932,7 +39946,7 @@
"zh-chs": "无法扫描该地址范围。",
"zh-cht": "無法掃描該地址範圍。",
"xloc": [
- "default.handlebars->31->181"
+ "default.handlebars->31->182"
]
},
{
@@ -39975,10 +39989,10 @@
"zh-cht": "卸載",
"xloc": [
"agent-translations.json",
- "default-mobile.handlebars->11->507",
- "default.handlebars->31->1568",
- "default.handlebars->31->713",
- "default.handlebars->31->734"
+ "default-mobile.handlebars->11->508",
+ "default.handlebars->31->1569",
+ "default.handlebars->31->714",
+ "default.handlebars->31->735"
]
},
{
@@ -39998,9 +40012,9 @@
"zh-chs": "卸载代理",
"zh-cht": "卸載代理",
"xloc": [
- "default-mobile.handlebars->11->487",
- "default.handlebars->31->456",
- "default.handlebars->31->783"
+ "default-mobile.handlebars->11->488",
+ "default.handlebars->31->457",
+ "default.handlebars->31->784"
]
},
{
@@ -40020,7 +40034,7 @@
"zh-chs": "卸载代理/删除设备",
"zh-cht": "卸載代理/刪除設備",
"xloc": [
- "default.handlebars->31->1532"
+ "default.handlebars->31->1533"
]
},
{
@@ -40040,7 +40054,7 @@
"zh-chs": "卸载代理",
"zh-cht": "卸載代理",
"xloc": [
- "default.handlebars->31->812"
+ "default.handlebars->31->813"
]
},
{
@@ -40060,35 +40074,33 @@
"zh-chs": "未知",
"zh-cht": "未知",
"xloc": [
- "default-mobile.handlebars->11->218",
+ "default-mobile.handlebars->11->219",
"default-mobile.handlebars->11->37",
- "default-mobile.handlebars->11->38",
"default-mobile.handlebars->11->39",
"default-mobile.handlebars->11->40",
"default-mobile.handlebars->11->41",
- "default-mobile.handlebars->11->414",
+ "default-mobile.handlebars->11->415",
"default-mobile.handlebars->11->42",
- "default-mobile.handlebars->11->421",
+ "default-mobile.handlebars->11->422",
"default-mobile.handlebars->11->43",
"default-mobile.handlebars->11->44",
"default-mobile.handlebars->11->45",
"default-mobile.handlebars->11->6",
- "default.handlebars->31->1042",
- "default.handlebars->31->1049",
- "default.handlebars->31->117",
+ "default.handlebars->31->1043",
+ "default.handlebars->31->1050",
"default.handlebars->31->118",
"default.handlebars->31->119",
- "default.handlebars->31->121",
- "default.handlebars->31->123",
+ "default.handlebars->31->120",
+ "default.handlebars->31->122",
+ "default.handlebars->31->124",
"default.handlebars->31->13",
- "default.handlebars->31->1385",
"default.handlebars->31->1386",
- "default.handlebars->31->2091",
- "default.handlebars->31->2106",
+ "default.handlebars->31->1387",
+ "default.handlebars->31->2092",
"default.handlebars->31->2107",
+ "default.handlebars->31->2108",
"default.handlebars->31->44",
- "default.handlebars->31->45",
- "default.handlebars->31->451",
+ "default.handlebars->31->452",
"default.handlebars->31->46",
"default.handlebars->31->47",
"default.handlebars->31->48",
@@ -40115,8 +40127,8 @@
"zh-chs": "未知#{0}",
"zh-cht": "未知#{0}",
"xloc": [
- "default-mobile.handlebars->11->452",
- "default.handlebars->31->1392"
+ "default-mobile.handlebars->11->453",
+ "default.handlebars->31->1393"
]
},
{
@@ -40136,7 +40148,7 @@
"zh-chs": "未知动作",
"zh-cht": "未知動作",
"xloc": [
- "default.handlebars->31->2178"
+ "default.handlebars->31->2179"
]
},
{
@@ -40156,8 +40168,8 @@
"zh-chs": "未知设备",
"zh-cht": "未知裝置",
"xloc": [
- "default.handlebars->31->1951",
- "default.handlebars->31->2077"
+ "default.handlebars->31->1952",
+ "default.handlebars->31->2078"
]
},
{
@@ -40177,9 +40189,9 @@
"zh-chs": "未知设备组",
"zh-cht": "未知裝置群",
"xloc": [
- "default.handlebars->31->1945",
- "default.handlebars->31->2065",
- "default.handlebars->31->2182"
+ "default.handlebars->31->1946",
+ "default.handlebars->31->2066",
+ "default.handlebars->31->2183"
]
},
{
@@ -40199,7 +40211,7 @@
"zh-chs": "未知群组",
"zh-cht": "未知群組",
"xloc": [
- "default.handlebars->31->2174"
+ "default.handlebars->31->2175"
]
},
{
@@ -40219,8 +40231,8 @@
"zh-chs": "未知状态",
"zh-cht": "未知狀態",
"xloc": [
- "default-mobile.handlebars->11->242",
- "default.handlebars->31->581"
+ "default-mobile.handlebars->11->243",
+ "default.handlebars->31->582"
]
},
{
@@ -40240,7 +40252,7 @@
"zh-chs": "未知用户组",
"zh-cht": "未知用戶群",
"xloc": [
- "default.handlebars->31->2071"
+ "default.handlebars->31->2072"
]
},
{
@@ -40260,8 +40272,8 @@
"zh-chs": "未知版本和状态",
"zh-cht": "未知版本和狀態",
"xloc": [
- "default-mobile.handlebars->11->244",
- "default.handlebars->31->583"
+ "default-mobile.handlebars->11->245",
+ "default.handlebars->31->584"
]
},
{
@@ -40281,7 +40293,7 @@
"zh-chs": "密码未知",
"zh-cht": "密碼未知",
"xloc": [
- "default.handlebars->31->1466"
+ "default.handlebars->31->1467"
]
},
{
@@ -40301,9 +40313,9 @@
"zh-chs": "无限制",
"zh-cht": "無限",
"xloc": [
- "default.handlebars->31->194",
- "default.handlebars->31->350",
- "default.handlebars->31->364"
+ "default.handlebars->31->195",
+ "default.handlebars->31->351",
+ "default.handlebars->31->365"
]
},
{
@@ -40323,7 +40335,7 @@
"zh-chs": "解锁帐户",
"zh-cht": "解鎖帳戶",
"xloc": [
- "default.handlebars->31->1820"
+ "default.handlebars->31->1821"
]
},
{
@@ -40363,10 +40375,10 @@
"zh-chs": "向上",
"zh-cht": "向上",
"xloc": [
- "default-mobile.handlebars->11->327",
+ "default-mobile.handlebars->11->328",
"default-mobile.handlebars->container->page_content->column_l->p10->p10files->p13toolbar->1->2->1->1",
"default-mobile.handlebars->container->page_content->column_l->p5->p5myfiles->p5toolbar->1->0->1->1",
- "default.handlebars->31->894",
+ "default.handlebars->31->895",
"default.handlebars->container->column_l->p13->p13toolbar->1->2->1->3",
"default.handlebars->container->column_l->p5->p5toolbar->1->0->p5filehead->3",
"default.handlebars->container->dialog->dialogBody->dialog3->d3servermode->d3serveraction"
@@ -40389,7 +40401,7 @@
"zh-chs": "最新",
"zh-cht": "最新",
"xloc": [
- "default.handlebars->31->2248"
+ "default.handlebars->31->2249"
]
},
{
@@ -40453,15 +40465,15 @@
"zh-chs": "上载档案",
"zh-cht": "上載檔案",
"xloc": [
- "default-mobile.handlebars->11->136",
- "default-mobile.handlebars->11->358",
- "default-mobile.handlebars->11->376",
- "default-mobile.handlebars->11->379",
- "default.handlebars->31->1648",
- "default.handlebars->31->1656",
- "default.handlebars->31->968",
- "default.handlebars->31->992",
- "default.handlebars->31->995",
+ "default-mobile.handlebars->11->137",
+ "default-mobile.handlebars->11->359",
+ "default-mobile.handlebars->11->377",
+ "default-mobile.handlebars->11->380",
+ "default.handlebars->31->1649",
+ "default.handlebars->31->1657",
+ "default.handlebars->31->969",
+ "default.handlebars->31->993",
+ "default.handlebars->31->996",
"default.handlebars->container->dialog->dialogBody->dialog3->d3localmode->1"
]
},
@@ -40482,7 +40494,7 @@
"zh-chs": "上载网格代理核心",
"zh-cht": "上載mesh agent核心",
"xloc": [
- "default.handlebars->31->1096"
+ "default.handlebars->31->1097"
]
},
{
@@ -40502,7 +40514,7 @@
"zh-chs": "上载核心档案",
"zh-cht": "上載核心檔案",
"xloc": [
- "default.handlebars->31->1093"
+ "default.handlebars->31->1094"
]
},
{
@@ -40522,7 +40534,7 @@
"zh-chs": "上载默认服务器核心",
"zh-cht": "上載默認伺服器核心",
"xloc": [
- "default.handlebars->31->1090"
+ "default.handlebars->31->1091"
]
},
{
@@ -40542,7 +40554,7 @@
"zh-chs": "上传文件",
"zh-cht": "上傳文件",
"xloc": [
- "default.handlebars->31->464"
+ "default.handlebars->31->465"
]
},
{
@@ -40582,7 +40594,7 @@
"zh-chs": "上传恢复核心",
"zh-cht": "上傳恢復核心",
"xloc": [
- "default.handlebars->31->1092"
+ "default.handlebars->31->1093"
]
},
{
@@ -40602,7 +40614,7 @@
"zh-chs": "将所选文件上传到所有所选设备",
"zh-cht": "將所選文件上傳到所有所選設備",
"xloc": [
- "default.handlebars->31->494"
+ "default.handlebars->31->495"
]
},
{
@@ -40622,9 +40634,9 @@
"zh-chs": "上传将覆盖1个档案。继续?",
"zh-cht": "上傳將覆蓋1個檔案。繼續?",
"xloc": [
- "default-mobile.handlebars->11->377",
- "default.handlebars->31->1657",
- "default.handlebars->31->993"
+ "default-mobile.handlebars->11->378",
+ "default.handlebars->31->1658",
+ "default.handlebars->31->994"
]
},
{
@@ -40644,9 +40656,9 @@
"zh-chs": "上传将覆盖{0}个档案。继续?",
"zh-cht": "上傳將覆蓋{0}個檔案。繼續?",
"xloc": [
- "default-mobile.handlebars->11->378",
- "default.handlebars->31->1658",
- "default.handlebars->31->994"
+ "default-mobile.handlebars->11->379",
+ "default.handlebars->31->1659",
+ "default.handlebars->31->995"
]
},
{
@@ -40683,7 +40695,7 @@
"zh-chs": "上传:“{0}”",
"zh-cht": "上傳:“{0}”",
"xloc": [
- "default.handlebars->31->1708"
+ "default.handlebars->31->1709"
]
},
{
@@ -40703,7 +40715,7 @@
"zh-chs": "上索布族",
"zh-cht": "上索布族",
"xloc": [
- "default.handlebars->31->1306"
+ "default.handlebars->31->1307"
]
},
{
@@ -40723,7 +40735,7 @@
"zh-chs": "乌尔都文",
"zh-cht": "烏爾都文",
"xloc": [
- "default.handlebars->31->1307"
+ "default.handlebars->31->1308"
]
},
{
@@ -40787,7 +40799,7 @@
"zh-chs": "使用此网站的桌面版本添加设备。",
"zh-cht": "使用此網站的桌面版本新增裝置。",
"xloc": [
- "default-mobile.handlebars->11->166"
+ "default-mobile.handlebars->11->167"
]
},
{
@@ -40807,8 +40819,8 @@
"zh-chs": "用过的",
"zh-cht": "用過的",
"xloc": [
- "default.handlebars->31->2168",
- "default.handlebars->31->2170"
+ "default.handlebars->31->2169",
+ "default.handlebars->31->2171"
]
},
{
@@ -40828,13 +40840,13 @@
"zh-chs": "用户",
"zh-cht": "用戶",
"xloc": [
- "default.handlebars->31->1447",
- "default.handlebars->31->1773",
- "default.handlebars->31->1802",
- "default.handlebars->31->1941",
- "default.handlebars->31->2126",
- "default.handlebars->31->232",
- "default.handlebars->31->687"
+ "default.handlebars->31->1448",
+ "default.handlebars->31->1774",
+ "default.handlebars->31->1803",
+ "default.handlebars->31->1942",
+ "default.handlebars->31->2127",
+ "default.handlebars->31->233",
+ "default.handlebars->31->688"
]
},
{
@@ -40854,7 +40866,7 @@
"zh-chs": "用户+档案",
"zh-cht": "用戶+檔案",
"xloc": [
- "default.handlebars->31->1803"
+ "default.handlebars->31->1804"
]
},
{
@@ -40874,10 +40886,10 @@
"zh-chs": "用户帐户导入",
"zh-cht": "用戶帳戶導入",
"xloc": [
- "default.handlebars->31->1836",
"default.handlebars->31->1837",
- "default.handlebars->31->1839",
- "default.handlebars->31->1841"
+ "default.handlebars->31->1838",
+ "default.handlebars->31->1840",
+ "default.handlebars->31->1842"
]
},
{
@@ -40897,7 +40909,7 @@
"zh-chs": "用户帐户",
"zh-cht": "用戶帳戶",
"xloc": [
- "default.handlebars->31->2187"
+ "default.handlebars->31->2188"
]
},
{
@@ -40917,9 +40929,9 @@
"zh-chs": "用户授权",
"zh-cht": "用戶授權",
"xloc": [
- "default-mobile.handlebars->11->460",
- "default.handlebars->31->1445",
- "default.handlebars->31->683"
+ "default-mobile.handlebars->11->461",
+ "default.handlebars->31->1446",
+ "default.handlebars->31->684"
]
},
{
@@ -40939,12 +40951,12 @@
"zh-chs": "用户同意",
"zh-cht": "用戶同意",
"xloc": [
- "default.handlebars->31->1418",
- "default.handlebars->31->1932",
- "default.handlebars->31->2019",
- "default.handlebars->31->207",
- "default.handlebars->31->621",
- "default.handlebars->31->772"
+ "default.handlebars->31->1419",
+ "default.handlebars->31->1933",
+ "default.handlebars->31->2020",
+ "default.handlebars->31->208",
+ "default.handlebars->31->622",
+ "default.handlebars->31->773"
]
},
{
@@ -40964,12 +40976,12 @@
"zh-chs": "用户组",
"zh-cht": "用戶群",
"xloc": [
- "default.handlebars->31->1508",
"default.handlebars->31->1509",
- "default.handlebars->31->1905",
- "default.handlebars->31->2073",
- "default.handlebars->31->2094",
- "default.handlebars->31->686"
+ "default.handlebars->31->1510",
+ "default.handlebars->31->1906",
+ "default.handlebars->31->2074",
+ "default.handlebars->31->2095",
+ "default.handlebars->31->687"
]
},
{
@@ -41009,7 +41021,7 @@
"zh-chs": "用户组成员",
"zh-cht": "用戶群成員",
"xloc": [
- "default.handlebars->31->2070"
+ "default.handlebars->31->2071"
]
},
{
@@ -41029,7 +41041,7 @@
"zh-chs": "用户识别码",
"zh-cht": "用戶識別碼",
"xloc": [
- "default-mobile.handlebars->11->512"
+ "default-mobile.handlebars->11->513"
]
},
{
@@ -41049,9 +41061,9 @@
"zh-chs": "用户识别码",
"zh-cht": "用戶識別碼",
"xloc": [
- "default.handlebars->31->1573",
- "default.handlebars->31->1986",
- "default.handlebars->31->1987"
+ "default.handlebars->31->1574",
+ "default.handlebars->31->1987",
+ "default.handlebars->31->1988"
]
},
{
@@ -41071,15 +41083,15 @@
"zh-chs": "用户标识符",
"zh-cht": "用戶標識符",
"xloc": [
- "default.handlebars->31->1506",
- "default.handlebars->31->1970"
+ "default.handlebars->31->1507",
+ "default.handlebars->31->1971"
]
},
{
"en": "User Input",
"nl": "Gebruikers invoer",
"xloc": [
- "default.handlebars->31->198"
+ "default.handlebars->31->199"
]
},
{
@@ -41099,7 +41111,7 @@
"zh-chs": "用户列表输出",
"zh-cht": "用戶列表輸出",
"xloc": [
- "default.handlebars->31->1848"
+ "default.handlebars->31->1849"
]
},
{
@@ -41119,8 +41131,8 @@
"zh-chs": "用户名",
"zh-cht": "用戶名",
"xloc": [
- "default-mobile.handlebars->11->511",
- "default.handlebars->31->1572"
+ "default-mobile.handlebars->11->512",
+ "default.handlebars->31->1573"
]
},
{
@@ -41195,7 +41207,7 @@
"zh-chs": "用户节",
"zh-cht": "用戶節",
"xloc": [
- "default.handlebars->31->2207"
+ "default.handlebars->31->2208"
]
},
{
@@ -41278,7 +41290,7 @@
"zh-chs": "用户“{0}”",
"zh-cht": "用戶“{0}”",
"xloc": [
- "default.handlebars->31->874",
+ "default.handlebars->31->875",
"desktop.handlebars->3->17"
]
},
@@ -41287,8 +41299,8 @@
"nl": "Gebruiker bestaat al",
"fr": "L'utilisateur existe déjà",
"xloc": [
- "default-mobile.handlebars->11->534",
- "default.handlebars->31->2145"
+ "default-mobile.handlebars->11->535",
+ "default.handlebars->31->2146"
]
},
{
@@ -41308,8 +41320,8 @@
"zh-chs": "用户浏览器值",
"zh-cht": "用戶瀏覽器值",
"xloc": [
- "default.handlebars->31->1318",
- "default.handlebars->31->1320"
+ "default.handlebars->31->1319",
+ "default.handlebars->31->1321"
]
},
{
@@ -41329,7 +41341,7 @@
"zh-chs": "用户组已更改:{0}",
"zh-cht": "用戶組已更改:{0}",
"xloc": [
- "default.handlebars->31->1737"
+ "default.handlebars->31->1738"
]
},
{
@@ -41349,7 +41361,7 @@
"zh-chs": "已创建用户组:{0}",
"zh-cht": "已創建用戶組:{0}",
"xloc": [
- "default.handlebars->31->1727"
+ "default.handlebars->31->1728"
]
},
{
@@ -41369,7 +41381,7 @@
"zh-chs": "用户组成员身份已更改:{0}",
"zh-cht": "用戶組成員身份已更改:{0}",
"xloc": [
- "default.handlebars->31->1725"
+ "default.handlebars->31->1726"
]
},
{
@@ -41402,8 +41414,8 @@
"nl": "Gebruiker {0} niet gevonden.",
"fr": "Utilisateur {0} introuvable.",
"xloc": [
- "default-mobile.handlebars->11->542",
- "default.handlebars->31->2153"
+ "default-mobile.handlebars->11->543",
+ "default.handlebars->31->2154"
]
},
{
@@ -41443,10 +41455,10 @@
"zh-chs": "用户名",
"zh-cht": "用戶名",
"xloc": [
- "default-mobile.handlebars->11->292",
- "default.handlebars->31->1860",
- "default.handlebars->31->307",
- "default.handlebars->31->798",
+ "default-mobile.handlebars->11->293",
+ "default.handlebars->31->1861",
+ "default.handlebars->31->308",
+ "default.handlebars->31->799",
"login2.handlebars->centralTable->1->0->logincell->loginpanel->1->loginuserpassdiv->1->1->0->1",
"login2.handlebars->centralTable->1->0->logincell->loginpanel->1->loginuserpassdiv->1->1->0->1",
"mstsc.handlebars->main->1->3->1->4->1->0",
@@ -41518,9 +41530,9 @@
"zh-chs": "用户",
"zh-cht": "用戶",
"xloc": [
- "default.handlebars->31->1893",
- "default.handlebars->31->1933",
- "default.handlebars->31->2206",
+ "default.handlebars->31->1894",
+ "default.handlebars->31->1934",
+ "default.handlebars->31->2207",
"default.handlebars->container->topbar->1->1->UsersSubMenuSpan->UsersSubMenu->1->0->UsersGeneral"
]
},
@@ -41541,7 +41553,7 @@
"zh-chs": "用户会话",
"zh-cht": "用戶節",
"xloc": [
- "default.handlebars->31->2191"
+ "default.handlebars->31->2192"
]
},
{
@@ -41549,8 +41561,8 @@
"nl": "Gebruikers {0} niet gevonden.",
"fr": "Utilisateurs {0} introuvables.",
"xloc": [
- "default-mobile.handlebars->11->543",
- "default.handlebars->31->2154"
+ "default-mobile.handlebars->11->544",
+ "default.handlebars->31->2155"
]
},
{
@@ -41570,7 +41582,7 @@
"zh-chs": "VT100 +(F10 = ESC + [OY)",
"zh-cht": "VT100 +(F10 = ESC + [OY)",
"xloc": [
- "default.handlebars->31->941",
+ "default.handlebars->31->942",
"terminal.handlebars->3->20"
]
},
@@ -41591,7 +41603,7 @@
"zh-chs": "验证电邮",
"zh-cht": "驗證電郵",
"xloc": [
- "default.handlebars->31->1815"
+ "default.handlebars->31->1816"
]
},
{
@@ -41599,8 +41611,8 @@
"nl": "Validatie uitzondering",
"fr": "Exception de validation",
"xloc": [
- "default-mobile.handlebars->11->536",
- "default.handlebars->31->2147"
+ "default-mobile.handlebars->11->537",
+ "default.handlebars->31->2148"
]
},
{
@@ -41620,7 +41632,7 @@
"zh-chs": "有效期",
"zh-cht": "有效期",
"xloc": [
- "default.handlebars->31->767"
+ "default.handlebars->31->768"
]
},
{
@@ -41640,7 +41652,7 @@
"zh-chs": "文达",
"zh-cht": "文達",
"xloc": [
- "default.handlebars->31->1308"
+ "default.handlebars->31->1309"
]
},
{
@@ -41660,10 +41672,10 @@
"zh-chs": "供应商",
"zh-cht": "供應商",
"xloc": [
- "default-mobile.handlebars->11->429",
- "default-mobile.handlebars->11->432",
- "default.handlebars->31->1057",
- "default.handlebars->31->1060"
+ "default-mobile.handlebars->11->430",
+ "default-mobile.handlebars->11->433",
+ "default.handlebars->31->1058",
+ "default.handlebars->31->1061"
]
},
{
@@ -41683,8 +41695,8 @@
"zh-chs": "验证码:",
"zh-cht": "驗證碼:",
"xloc": [
- "default-mobile.handlebars->11->71",
- "default.handlebars->31->168"
+ "default-mobile.handlebars->11->72",
+ "default.handlebars->31->169"
]
},
{
@@ -41704,7 +41716,7 @@
"zh-chs": "已验证",
"zh-cht": "已驗證",
"xloc": [
- "default.handlebars->31->2051"
+ "default.handlebars->31->2052"
]
},
{
@@ -41745,9 +41757,9 @@
"zh-chs": "验证电话号码",
"zh-cht": "驗證電話號碼",
"xloc": [
- "default-mobile.handlebars->11->73",
- "default.handlebars->31->1097",
- "default.handlebars->31->1811"
+ "default-mobile.handlebars->11->74",
+ "default.handlebars->31->1098",
+ "default.handlebars->31->1812"
]
},
{
@@ -41767,7 +41779,7 @@
"zh-chs": "用户{0}的已验证电话号码",
"zh-cht": "用戶{0}的已驗證電話號碼",
"xloc": [
- "default.handlebars->31->1754"
+ "default.handlebars->31->1755"
]
},
{
@@ -41828,14 +41840,14 @@
"zh-chs": "版本",
"zh-cht": "版",
"xloc": [
- "default-mobile.handlebars->11->382",
- "default-mobile.handlebars->11->413",
- "default-mobile.handlebars->11->430",
- "default-mobile.handlebars->11->435",
- "default.handlebars->31->1000",
- "default.handlebars->31->1041",
- "default.handlebars->31->1058",
- "default.handlebars->31->1063",
+ "default-mobile.handlebars->11->383",
+ "default-mobile.handlebars->11->414",
+ "default-mobile.handlebars->11->431",
+ "default-mobile.handlebars->11->436",
+ "default.handlebars->31->1001",
+ "default.handlebars->31->1042",
+ "default.handlebars->31->1059",
+ "default.handlebars->31->1064",
"default.handlebars->container->column_l->p42->p42tbl->1->0->5"
]
},
@@ -41856,7 +41868,7 @@
"zh-chs": "版本不兼容,请先升级您的MeshCentral",
"zh-cht": "版本不兼容,請先升級你的MeshCentral",
"xloc": [
- "default.handlebars->31->2244"
+ "default.handlebars->31->2245"
]
},
{
@@ -41898,7 +41910,7 @@
"zh-chs": "越南文",
"zh-cht": "越南文",
"xloc": [
- "default.handlebars->31->1309"
+ "default.handlebars->31->1310"
]
},
{
@@ -41938,7 +41950,7 @@
"zh-chs": "查看所有事件",
"zh-cht": "查看所有事件",
"xloc": [
- "default.handlebars->31->1885"
+ "default.handlebars->31->1886"
]
},
{
@@ -41958,8 +41970,8 @@
"zh-chs": "查看变更日志",
"zh-cht": "查看變更日誌",
"xloc": [
- "default.handlebars->31->2247",
- "default.handlebars->31->2249"
+ "default.handlebars->31->2248",
+ "default.handlebars->31->2250"
]
},
{
@@ -41979,7 +41991,7 @@
"zh-chs": "查看有关此设备的注释",
"zh-cht": "查看有關此裝置的註釋",
"xloc": [
- "default.handlebars->31->639"
+ "default.handlebars->31->640"
]
},
{
@@ -41999,7 +42011,7 @@
"zh-chs": "查看有关此设备组的注释",
"zh-cht": "查看有關此裝置群的註釋",
"xloc": [
- "default.handlebars->31->1434"
+ "default.handlebars->31->1435"
]
},
{
@@ -42019,7 +42031,7 @@
"zh-chs": "查看有关此用户的注释",
"zh-cht": "查看有關此用戶的註釋",
"xloc": [
- "default.handlebars->31->2027"
+ "default.handlebars->31->2028"
]
},
{
@@ -42039,7 +42051,7 @@
"zh-chs": "沃拉普克",
"zh-cht": "沃拉普克",
"xloc": [
- "default.handlebars->31->1310"
+ "default.handlebars->31->1311"
]
},
{
@@ -42059,7 +42071,7 @@
"zh-chs": "警告:",
"zh-cht": "警告:",
"xloc": [
- "default.handlebars->31->74"
+ "default.handlebars->31->75"
]
},
{
@@ -42184,8 +42196,8 @@
"zh-chs": "正在等待用户授予访问权限...",
"zh-cht": "正在等待用戶授予訪問權限...",
"xloc": [
- "default-mobile.handlebars->11->308",
- "default.handlebars->31->863",
+ "default-mobile.handlebars->11->309",
+ "default.handlebars->31->864",
"desktop.handlebars->3->6",
"terminal.handlebars->3->10"
]
@@ -42207,8 +42219,8 @@
"zh-chs": "唤醒",
"zh-cht": "喚醒",
"xloc": [
- "default.handlebars->31->709",
- "default.handlebars->31->730"
+ "default.handlebars->31->710",
+ "default.handlebars->31->731"
]
},
{
@@ -42228,10 +42240,10 @@
"zh-chs": "唤醒设备",
"zh-cht": "喚醒裝置",
"xloc": [
- "default-mobile.handlebars->11->483",
- "default-mobile.handlebars->11->498",
- "default.handlebars->31->1528",
- "default.handlebars->31->1558"
+ "default-mobile.handlebars->11->484",
+ "default-mobile.handlebars->11->499",
+ "default.handlebars->31->1529",
+ "default.handlebars->31->1559"
]
},
{
@@ -42251,8 +42263,8 @@
"zh-chs": "唤醒",
"zh-cht": "喚醒",
"xloc": [
- "default-mobile.handlebars->11->281",
- "default.handlebars->31->777"
+ "default-mobile.handlebars->11->282",
+ "default.handlebars->31->778"
]
},
{
@@ -42272,7 +42284,7 @@
"zh-chs": "唤醒设备",
"zh-cht": "喚醒裝置",
"xloc": [
- "default.handlebars->31->457"
+ "default.handlebars->31->458"
]
},
{
@@ -42292,7 +42304,7 @@
"zh-chs": "瓦隆",
"zh-cht": "瓦隆",
"xloc": [
- "default.handlebars->31->1311"
+ "default.handlebars->31->1312"
]
},
{
@@ -42312,7 +42324,7 @@
"zh-chs": "弱",
"zh-cht": "弱",
"xloc": [
- "default.handlebars->31->1365"
+ "default.handlebars->31->1366"
]
},
{
@@ -42357,15 +42369,15 @@
"zh-chs": "网络服务器",
"zh-cht": "網絡伺服器",
"xloc": [
- "default.handlebars->31->2229",
- "default.handlebars->31->2230"
+ "default.handlebars->31->2230",
+ "default.handlebars->31->2231"
]
},
{
"en": "Web Server HTTP Headers",
"nl": "Webserver HTTP Headers",
"xloc": [
- "default.handlebars->31->2233"
+ "default.handlebars->31->2234"
]
},
{
@@ -42385,7 +42397,7 @@
"zh-chs": "Web服务器请求",
"zh-cht": "Web伺服器請求",
"xloc": [
- "default.handlebars->31->2231"
+ "default.handlebars->31->2232"
]
},
{
@@ -42405,7 +42417,7 @@
"zh-chs": "Web套接字中继",
"zh-cht": "Web插座中繼",
"xloc": [
- "default.handlebars->31->2232"
+ "default.handlebars->31->2233"
]
},
{
@@ -42425,7 +42437,7 @@
"zh-chs": "网络RDP",
"zh-cht": "網絡RDP",
"xloc": [
- "default.handlebars->31->667"
+ "default.handlebars->31->668"
]
},
{
@@ -42466,7 +42478,7 @@
"zh-chs": "欢迎{0}。",
"zh-cht": "歡迎{0}。",
"xloc": [
- "default.handlebars->31->54",
+ "default.handlebars->31->55",
"terms.handlebars->3->1"
]
},
@@ -42487,7 +42499,7 @@
"zh-chs": "威尔士文",
"zh-cht": "威爾士文",
"xloc": [
- "default.handlebars->31->1312"
+ "default.handlebars->31->1313"
]
},
{
@@ -42507,7 +42519,7 @@
"zh-chs": "启用后,任何人都可以使用邀请代码通过以下公共连结将设备加入该设备组:",
"zh-cht": "啟用後,任何人都可以使用邀請代碼通過以下公共鏈結將裝置加入該裝置群:",
"xloc": [
- "default.handlebars->31->1581"
+ "default.handlebars->31->1582"
]
},
{
@@ -42527,8 +42539,8 @@
"zh-chs": "启用后,每次登录时,您都可以选择向电邮帐户接收登录保安编码,以提高安全性。",
"zh-cht": "啟用後,每次登入時,你都可以選擇向電郵帳戶接收登入保安編碼,以提高安全性。",
"xloc": [
- "default-mobile.handlebars->11->79",
- "default.handlebars->31->1104"
+ "default-mobile.handlebars->11->80",
+ "default.handlebars->31->1105"
]
},
{
@@ -42548,7 +42560,7 @@
"zh-chs": "选择此策略时,此服务器不管理英特尔®AMT。 仍然可以通过手动激活和配置Intel AMT来使用它。",
"zh-cht": "選擇此策略時,此服務器不管理英特爾®AMT。 仍然可以通過手動激活和配置Intel AMT來使用它。",
"xloc": [
- "default.handlebars->31->1476"
+ "default.handlebars->31->1477"
]
},
{
@@ -42585,7 +42597,7 @@
"zh-chs": "选择此策略后,将禁用处于客户端控制模式(CCM)的所有英特尔®AMT。 其他设备将清除CIRA,并且仍然可以手动进行管理。",
"zh-cht": "選擇此策略後,將禁用處於客戶端控制模式(CCM)的所有英特爾®AMT。 其他設備將清除CIRA,並且仍然可以手動進行管理。",
"xloc": [
- "default.handlebars->31->1477"
+ "default.handlebars->31->1478"
]
},
{
@@ -42605,7 +42617,7 @@
"zh-chs": "下次登录时将更改。",
"zh-cht": "下次登入時將更改。",
"xloc": [
- "default.handlebars->31->1999"
+ "default.handlebars->31->2000"
]
},
{
@@ -42625,11 +42637,11 @@
"zh-chs": "Win",
"zh-cht": "Win",
"xloc": [
- "default-mobile.handlebars->11->334",
- "default-mobile.handlebars->11->338",
+ "default-mobile.handlebars->11->335",
+ "default-mobile.handlebars->11->339",
"default-mobile.handlebars->dialog->3->dialog3->deskkeys->5",
- "default.handlebars->31->901",
- "default.handlebars->31->905",
+ "default.handlebars->31->902",
+ "default.handlebars->31->906",
"desktop.handlebars->p11->deskarea0->deskarea4->3->deskkeys->3"
]
},
@@ -42795,7 +42807,7 @@
"zh-chs": "Win32可执行档案",
"zh-cht": "Win32可執行檔案",
"xloc": [
- "default.handlebars->31->826"
+ "default.handlebars->31->827"
]
},
{
@@ -42832,7 +42844,7 @@
"zh-chs": "窗口",
"zh-cht": "視窗",
"xloc": [
- "default.handlebars->31->371"
+ "default.handlebars->31->372"
]
},
{
@@ -42852,8 +42864,8 @@
"zh-chs": "Windows(.exe)",
"zh-cht": "Windows(.exe)",
"xloc": [
- "default.handlebars->31->387",
- "default.handlebars->31->406"
+ "default.handlebars->31->388",
+ "default.handlebars->31->407"
]
},
{
@@ -42873,7 +42885,7 @@
"zh-chs": "Windows(32位)",
"zh-cht": "Windows(32位)",
"xloc": [
- "default.handlebars->31->832"
+ "default.handlebars->31->833"
]
},
{
@@ -42893,7 +42905,7 @@
"zh-chs": "Windows(64位)",
"zh-cht": "Windows(64位)",
"xloc": [
- "default.handlebars->31->831"
+ "default.handlebars->31->832"
]
},
{
@@ -42913,7 +42925,7 @@
"zh-chs": "Windows(卸载)",
"zh-cht": "Windows(卸載)",
"xloc": [
- "default.handlebars->31->376"
+ "default.handlebars->31->377"
]
},
{
@@ -43057,8 +43069,8 @@
"zh-chs": "Windows命令提示",
"zh-cht": "Windows命令提示",
"xloc": [
- "default.handlebars->31->474",
- "default.handlebars->31->788"
+ "default.handlebars->31->475",
+ "default.handlebars->31->789"
]
},
{
@@ -43120,7 +43132,7 @@
"zh-chs": "Windows路径",
"zh-cht": "Windows路徑",
"xloc": [
- "default.handlebars->31->495"
+ "default.handlebars->31->496"
]
},
{
@@ -43140,8 +43152,8 @@
"zh-chs": "Windows PowerShell",
"zh-cht": "Windows PowerShell",
"xloc": [
- "default.handlebars->31->475",
- "default.handlebars->31->789"
+ "default.handlebars->31->476",
+ "default.handlebars->31->790"
]
},
{
@@ -43161,7 +43173,7 @@
"zh-chs": "仅Windows",
"zh-cht": "僅Windows",
"xloc": [
- "default.handlebars->31->341"
+ "default.handlebars->31->342"
]
},
{
@@ -43181,8 +43193,8 @@
"zh-chs": "Windows x64(.exe)",
"zh-cht": "Windows x64(.exe)",
"xloc": [
- "default.handlebars->31->391",
- "default.handlebars->31->409"
+ "default.handlebars->31->392",
+ "default.handlebars->31->410"
]
},
{
@@ -43222,7 +43234,7 @@
"zh-chs": "换行:关",
"zh-cht": "换行:關",
"xloc": [
- "default.handlebars->31->987"
+ "default.handlebars->31->988"
]
},
{
@@ -43242,7 +43254,7 @@
"zh-chs": "换行:开",
"zh-cht": "换行:開",
"xloc": [
- "default.handlebars->31->986"
+ "default.handlebars->31->987"
]
},
{
@@ -43262,7 +43274,7 @@
"zh-chs": "为此设备写一个事件",
"zh-cht": "為此裝置寫一個事件",
"xloc": [
- "default.handlebars->31->641"
+ "default.handlebars->31->642"
]
},
{
@@ -43323,7 +43335,7 @@
"zh-chs": "XTerm",
"zh-cht": "XTerm",
"xloc": [
- "default.handlebars->31->657"
+ "default.handlebars->31->658"
]
},
{
@@ -43343,7 +43355,7 @@
"zh-chs": "科萨",
"zh-cht": "科薩",
"xloc": [
- "default.handlebars->31->1313"
+ "default.handlebars->31->1314"
]
},
{
@@ -43363,7 +43375,7 @@
"zh-chs": "意第绪文",
"zh-cht": "意第緒文",
"xloc": [
- "default.handlebars->31->1314"
+ "default.handlebars->31->1315"
]
},
{
@@ -43383,7 +43395,7 @@
"zh-chs": "您可以随时重新激活此功能。",
"zh-cht": "你可以隨時重新啟動此功能。",
"xloc": [
- "default.handlebars->31->142"
+ "default.handlebars->31->143"
]
},
{
@@ -43460,7 +43472,7 @@
"zh-chs": "您现在需要一个有效的保安编码才能再次登录。",
"zh-cht": "你現在需要一個有效的保安編碼才能再次登入。",
"xloc": [
- "default.handlebars->31->137"
+ "default.handlebars->31->138"
]
},
{
@@ -43501,7 +43513,7 @@
"zh-chs": "YubiKey™ OTP",
"zh-cht": "YubiKey™OTP",
"xloc": [
- "default.handlebars->31->1116"
+ "default.handlebars->31->1117"
]
},
{
@@ -43541,7 +43553,7 @@
"zh-chs": "邮编档案名",
"zh-cht": "郵編檔案名",
"xloc": [
- "default.handlebars->31->971"
+ "default.handlebars->31->972"
]
},
{
@@ -43561,7 +43573,7 @@
"zh-chs": "缩放至适合范围",
"zh-cht": "縮放至適合範圍",
"xloc": [
- "default.handlebars->31->546"
+ "default.handlebars->31->547"
]
},
{
@@ -43581,8 +43593,8 @@
"zh-chs": "放大到一定程度",
"zh-cht": "放大到一定程度",
"xloc": [
- "default.handlebars->31->543",
- "default.handlebars->31->549"
+ "default.handlebars->31->544",
+ "default.handlebars->31->550"
]
},
{
@@ -43602,8 +43614,8 @@
"zh-chs": "缩小到一定程度",
"zh-cht": "縮小到一定程度",
"xloc": [
- "default.handlebars->31->544",
- "default.handlebars->31->550"
+ "default.handlebars->31->545",
+ "default.handlebars->31->551"
]
},
{
@@ -43623,7 +43635,7 @@
"zh-chs": "祖鲁族",
"zh-cht": "祖魯族",
"xloc": [
- "default.handlebars->31->1315"
+ "default.handlebars->31->1316"
]
},
{
@@ -43891,7 +43903,7 @@
"zh-chs": "\\\\'",
"zh-cht": "\\\\'",
"xloc": [
- "default.handlebars->31->2245"
+ "default.handlebars->31->2246"
]
},
{
@@ -43911,8 +43923,8 @@
"zh-chs": "A:",
"zh-cht": "A:",
"xloc": [
- "default.handlebars->31->525",
- "default.handlebars->31->526"
+ "default.handlebars->31->526",
+ "default.handlebars->31->527"
]
},
{
@@ -43932,8 +43944,8 @@
"zh-chs": "加一",
"zh-cht": "加一",
"xloc": [
- "default.handlebars->31->229",
- "default.handlebars->31->231"
+ "default.handlebars->31->230",
+ "default.handlebars->31->232"
]
},
{
@@ -43953,7 +43965,7 @@
"zh-chs": "管理员",
"zh-cht": "管理員",
"xloc": [
- "default.handlebars->31->308"
+ "default.handlebars->31->309"
]
},
{
@@ -44014,8 +44026,8 @@
"zh-chs": "atag:",
"zh-cht": "atag:",
"xloc": [
- "default.handlebars->31->523",
- "default.handlebars->31->524"
+ "default.handlebars->31->524",
+ "default.handlebars->31->525"
]
},
{
@@ -44056,7 +44068,7 @@
"zh-chs": "取消帮助",
"zh-cht": "取消幫助",
"xloc": [
- "default.handlebars->31->265"
+ "default.handlebars->31->266"
]
},
{
@@ -44137,7 +44149,7 @@
"zh-chs": "console.txt",
"zh-cht": "console.txt",
"xloc": [
- "default.handlebars->31->1087"
+ "default.handlebars->31->1088"
]
},
{
@@ -44157,8 +44169,8 @@
"zh-chs": "复制",
"zh-cht": "複製",
"xloc": [
- "default-mobile.handlebars->11->140",
- "default.handlebars->31->1653"
+ "default-mobile.handlebars->11->141",
+ "default.handlebars->31->1654"
]
},
{
@@ -44198,8 +44210,8 @@
"zh-chs": "devicelist.csv",
"zh-cht": "devicelist.csv",
"xloc": [
- "default.handlebars->31->502",
- "default.handlebars->31->507"
+ "default.handlebars->31->503",
+ "default.handlebars->31->508"
]
},
{
@@ -44219,8 +44231,8 @@
"zh-chs": "devicelist.json",
"zh-cht": "devicelist.json",
"xloc": [
- "default.handlebars->31->504",
- "default.handlebars->31->508"
+ "default.handlebars->31->505",
+ "default.handlebars->31->509"
]
},
{
@@ -44257,8 +44269,8 @@
"zh-chs": "eventslist.csv",
"zh-cht": "eventslist.csv",
"xloc": [
- "default.handlebars->31->1780",
- "default.handlebars->31->1785"
+ "default.handlebars->31->1781",
+ "default.handlebars->31->1786"
]
},
{
@@ -44278,8 +44290,8 @@
"zh-chs": "eventslist.json",
"zh-cht": "eventslist.json",
"xloc": [
- "default.handlebars->31->1782",
- "default.handlebars->31->1786"
+ "default.handlebars->31->1783",
+ "default.handlebars->31->1787"
]
},
{
@@ -44299,7 +44311,7 @@
"zh-chs": "example@email.com",
"zh-cht": "example@email.com",
"xloc": [
- "default.handlebars->31->337"
+ "default.handlebars->31->338"
]
},
{
@@ -44319,8 +44331,8 @@
"zh-chs": "免费",
"zh-cht": "免費",
"xloc": [
- "default.handlebars->31->2199",
- "default.handlebars->31->2202"
+ "default.handlebars->31->2200",
+ "default.handlebars->31->2203"
]
},
{
@@ -44340,10 +44352,10 @@
"zh-chs": "G:",
"zh-cht": "G:",
"xloc": [
- "default-mobile.handlebars->11->151",
"default-mobile.handlebars->11->152",
- "default.handlebars->31->517",
- "default.handlebars->31->518"
+ "default-mobile.handlebars->11->153",
+ "default.handlebars->31->518",
+ "default.handlebars->31->519"
]
},
{
@@ -44363,10 +44375,10 @@
"zh-chs": "组:",
"zh-cht": "群:",
"xloc": [
- "default-mobile.handlebars->11->149",
"default-mobile.handlebars->11->150",
- "default.handlebars->31->515",
- "default.handlebars->31->516"
+ "default-mobile.handlebars->11->151",
+ "default.handlebars->31->516",
+ "default.handlebars->31->517"
]
},
{
@@ -44535,7 +44547,7 @@
"zh-chs": "id, name, email, creation, lastlogin, groups, authfactors",
"zh-cht": "id, name, email, creation, lastlogin, groups, authfactors",
"xloc": [
- "default.handlebars->31->1849"
+ "default.handlebars->31->1850"
]
},
{
@@ -44555,7 +44567,7 @@
"zh-chs": "id, name, rname, host, icon, ip, osdesc, state, gruppenname, conn, pwr",
"zh-cht": "id, name, rname, host, icon, ip, osdesc, state, gruppenname, conn, pwr",
"xloc": [
- "default.handlebars->31->506"
+ "default.handlebars->31->507"
]
},
{
@@ -44575,10 +44587,10 @@
"zh-chs": "ip:",
"zh-cht": "ip:",
"xloc": [
- "default-mobile.handlebars->11->147",
"default-mobile.handlebars->11->148",
- "default.handlebars->31->513",
- "default.handlebars->31->514"
+ "default-mobile.handlebars->11->149",
+ "default.handlebars->31->514",
+ "default.handlebars->31->515"
]
},
{
@@ -44658,7 +44670,7 @@
"zh-chs": "k max,默认为空白",
"zh-cht": "k max,默認為空白",
"xloc": [
- "default.handlebars->31->1877"
+ "default.handlebars->31->1878"
]
},
{
@@ -44770,7 +44782,7 @@
"zh-chs": "macOS ARM (64位)",
"zh-cht": "macOS ARM (64位)",
"xloc": [
- "default.handlebars->31->836"
+ "default.handlebars->31->837"
]
},
{
@@ -44790,7 +44802,7 @@
"zh-chs": "macOS x86 (64位)",
"zh-cht": "macOS x86 (64位)",
"xloc": [
- "default.handlebars->31->835"
+ "default.handlebars->31->836"
]
},
{
@@ -44852,7 +44864,7 @@
"zh-chs": "MeshAgent",
"zh-cht": "MeshAgent",
"xloc": [
- "default.handlebars->31->413"
+ "default.handlebars->31->414"
]
},
{
@@ -44872,8 +44884,8 @@
"zh-chs": "移动",
"zh-cht": "移動",
"xloc": [
- "default-mobile.handlebars->11->141",
- "default.handlebars->31->1654"
+ "default-mobile.handlebars->11->142",
+ "default.handlebars->31->1655"
]
},
{
@@ -44893,7 +44905,7 @@
"zh-chs": "无VNC",
"zh-cht": "無VNC",
"xloc": [
- "default.handlebars->31->665"
+ "default.handlebars->31->666"
]
},
{
@@ -44913,7 +44925,7 @@
"zh-chs": "noVNC连接",
"zh-cht": "noVNC連接",
"xloc": [
- "default.handlebars->31->530"
+ "default.handlebars->31->531"
]
},
{
@@ -44933,7 +44945,7 @@
"zh-chs": "noVNC远程连接端口:",
"zh-cht": "noVNC遠程連接端口:",
"xloc": [
- "default.handlebars->31->529"
+ "default.handlebars->31->530"
]
},
{
@@ -44970,7 +44982,7 @@
"zh-chs": "servererrors.txt",
"zh-cht": "servererrors.txt",
"xloc": [
- "default.handlebars->31->1389"
+ "default.handlebars->31->1390"
]
},
{
@@ -44990,7 +45002,7 @@
"zh-chs": "servertrace.csv",
"zh-cht": "servertrace.csv",
"xloc": [
- "default.handlebars->31->2241"
+ "default.handlebars->31->2242"
]
},
{
@@ -45010,10 +45022,10 @@
"zh-chs": "t:",
"zh-cht": "t:",
"xloc": [
- "default-mobile.handlebars->11->155",
"default-mobile.handlebars->11->156",
- "default.handlebars->31->521",
- "default.handlebars->31->522"
+ "default-mobile.handlebars->11->157",
+ "default.handlebars->31->522",
+ "default.handlebars->31->523"
]
},
{
@@ -45033,10 +45045,10 @@
"zh-chs": "标签:",
"zh-cht": "標籤:",
"xloc": [
- "default-mobile.handlebars->11->153",
"default-mobile.handlebars->11->154",
- "default.handlebars->31->519",
- "default.handlebars->31->520"
+ "default-mobile.handlebars->11->155",
+ "default.handlebars->31->520",
+ "default.handlebars->31->521"
]
},
{
@@ -45056,7 +45068,7 @@
"zh-chs": "time, conn.agent, conn.users, conn.usersessions, conn.relaysession, conn.intelamt, mem.external, mem.heapused, mem.heaptotal, mem.rss",
"zh-cht": "time, conn.agent, conn.users, conn.usersessions, conn.relaysession, conn.intelamt, mem.external, mem.heapused, mem.heaptotal, mem.rss",
"xloc": [
- "default.handlebars->31->2216"
+ "default.handlebars->31->2217"
]
},
{
@@ -45076,7 +45088,7 @@
"zh-chs": "时间,来源,信息",
"zh-cht": "時間,來源,訊息",
"xloc": [
- "default.handlebars->31->2240"
+ "default.handlebars->31->2241"
]
},
{
@@ -45113,8 +45125,8 @@
"zh-chs": "总计",
"zh-cht": "總",
"xloc": [
- "default.handlebars->31->2200",
- "default.handlebars->31->2203"
+ "default.handlebars->31->2201",
+ "default.handlebars->31->2204"
]
},
{
@@ -45134,10 +45146,10 @@
"zh-chs": "u:",
"zh-cht": "u:",
"xloc": [
- "default-mobile.handlebars->11->145",
"default-mobile.handlebars->11->146",
- "default.handlebars->31->511",
- "default.handlebars->31->512"
+ "default-mobile.handlebars->11->147",
+ "default.handlebars->31->512",
+ "default.handlebars->31->513"
]
},
{
@@ -45174,10 +45186,10 @@
"zh-chs": "用户:",
"zh-cht": "用戶:",
"xloc": [
- "default-mobile.handlebars->11->143",
"default-mobile.handlebars->11->144",
- "default.handlebars->31->509",
- "default.handlebars->31->510"
+ "default-mobile.handlebars->11->145",
+ "default.handlebars->31->510",
+ "default.handlebars->31->511"
]
},
{
@@ -45197,8 +45209,8 @@
"zh-chs": "userlist.csv",
"zh-cht": "userlist.csv",
"xloc": [
- "default.handlebars->31->1845",
- "default.handlebars->31->1850"
+ "default.handlebars->31->1846",
+ "default.handlebars->31->1851"
]
},
{
@@ -45218,8 +45230,8 @@
"zh-chs": "userlist.json",
"zh-cht": "userlist.json",
"xloc": [
- "default.handlebars->31->1847",
- "default.handlebars->31->1851"
+ "default.handlebars->31->1848",
+ "default.handlebars->31->1852"
]
},
{
@@ -45239,7 +45251,7 @@
"zh-chs": "utc,时间,类型,指令,用户,设备,消息",
"zh-cht": "utc,時間,類型,指令,用戶,裝置,消息",
"xloc": [
- "default.handlebars->31->1784"
+ "default.handlebars->31->1785"
]
},
{
@@ -45279,8 +45291,8 @@
"zh-chs": "{0} Gb",
"zh-cht": "{0} Gb",
"xloc": [
- "default.handlebars->31->1628",
- "default.handlebars->31->1633"
+ "default.handlebars->31->1629",
+ "default.handlebars->31->1634"
]
},
{
@@ -45300,9 +45312,9 @@
"zh-chs": "{0} Kb",
"zh-cht": "{0} Kb",
"xloc": [
- "default.handlebars->31->1626",
- "default.handlebars->31->1631",
- "default.handlebars->31->2105"
+ "default.handlebars->31->1627",
+ "default.handlebars->31->1632",
+ "default.handlebars->31->2106"
]
},
{
@@ -45322,12 +45334,12 @@
"zh-chs": "{0} Mb",
"zh-cht": "{0} Mb",
"xloc": [
- "default-mobile.handlebars->11->443",
- "default-mobile.handlebars->11->448",
- "default.handlebars->31->1071",
- "default.handlebars->31->1076",
- "default.handlebars->31->1627",
- "default.handlebars->31->1632"
+ "default-mobile.handlebars->11->444",
+ "default-mobile.handlebars->11->449",
+ "default.handlebars->31->1072",
+ "default.handlebars->31->1077",
+ "default.handlebars->31->1628",
+ "default.handlebars->31->1633"
]
},
{
@@ -45347,8 +45359,8 @@
"zh-chs": "{0} Mb,{1} Mhz",
"zh-cht": "{0} Mb,{1} Mhz",
"xloc": [
- "default-mobile.handlebars->11->441",
- "default.handlebars->31->1069"
+ "default-mobile.handlebars->11->442",
+ "default.handlebars->31->1070"
]
},
{
@@ -45368,7 +45380,7 @@
"zh-chs": "{0}个活跃会话",
"zh-cht": "{0}個活躍節",
"xloc": [
- "default.handlebars->31->2041"
+ "default.handlebars->31->2042"
]
},
{
@@ -45388,8 +45400,8 @@
"zh-chs": "{0} b",
"zh-cht": "{0} b",
"xloc": [
- "default.handlebars->31->1625",
- "default.handlebars->31->1630"
+ "default.handlebars->31->1626",
+ "default.handlebars->31->1631"
]
},
{
@@ -45409,9 +45421,9 @@
"zh-chs": "{0}个字节",
"zh-cht": "{0}個字節",
"xloc": [
- "default-mobile.handlebars->11->129",
- "default.handlebars->31->1641",
- "default.handlebars->31->2120",
+ "default-mobile.handlebars->11->130",
+ "default.handlebars->31->1642",
+ "default.handlebars->31->2121",
"download.handlebars->3->2",
"download2.handlebars->5->2"
]
@@ -45433,7 +45445,7 @@
"zh-chs": "剩余{0}个字节",
"zh-cht": "剩餘{0}個字節",
"xloc": [
- "default.handlebars->31->1620"
+ "default.handlebars->31->1621"
]
},
{
@@ -45453,7 +45465,7 @@
"zh-chs": "{0}个连接",
"zh-cht": "{0}個連接",
"xloc": [
- "default.handlebars->31->873",
+ "default.handlebars->31->874",
"desktop.handlebars->3->16"
]
},
@@ -45474,7 +45486,7 @@
"zh-chs": "剩余{0} GB",
"zh-cht": "剩餘{0} GB",
"xloc": [
- "default.handlebars->31->1623"
+ "default.handlebars->31->1624"
]
},
{
@@ -45494,7 +45506,7 @@
"zh-chs": "{0}个群组",
"zh-cht": "{0}個群組",
"xloc": [
- "default.handlebars->31->2004"
+ "default.handlebars->31->2005"
]
},
{
@@ -45514,7 +45526,7 @@
"zh-chs": "{0}小時",
"zh-cht": "{0}小時",
"xloc": [
- "default.handlebars->31->190"
+ "default.handlebars->31->191"
]
},
{
@@ -45551,7 +45563,7 @@
"zh-chs": "剩余{0}千字节",
"zh-cht": "剩餘{0}千字節",
"xloc": [
- "default.handlebars->31->1621"
+ "default.handlebars->31->1622"
]
},
{
@@ -45593,7 +45605,7 @@
"zh-chs": "剩余{0}兆字节",
"zh-cht": "剩餘{0}兆字節",
"xloc": [
- "default.handlebars->31->1622"
+ "default.handlebars->31->1623"
]
},
{
@@ -45613,7 +45625,7 @@
"zh-chs": "{0}分钟直到断开连接",
"zh-cht": "{0}分鐘直到斷開連接",
"xloc": [
- "default.handlebars->31->72"
+ "default.handlebars->31->73"
]
},
{
@@ -45633,7 +45645,7 @@
"zh-chs": "{0}未显示更多用户,请使用搜索框查找用户...",
"zh-cht": "{0}未顯示更多用戶,請使用搜索框查找用戶...",
"xloc": [
- "default.handlebars->31->1794"
+ "default.handlebars->31->1795"
]
},
{
@@ -45653,7 +45665,7 @@
"zh-chs": "{0}个节点",
"zh-cht": "{0}個節點",
"xloc": [
- "default.handlebars->31->419"
+ "default.handlebars->31->420"
]
},
{
@@ -45734,7 +45746,7 @@
"zh-chs": "{0}秒后断开连接",
"zh-cht": "{0}秒後斷開連接",
"xloc": [
- "default.handlebars->31->70"
+ "default.handlebars->31->71"
]
},
{
@@ -45791,19 +45803,19 @@
"zh-chs": "{0}节",
"zh-cht": "{0}節",
"xloc": [
- "default-mobile.handlebars->11->174",
- "default-mobile.handlebars->11->177",
- "default-mobile.handlebars->11->180",
- "default-mobile.handlebars->11->183",
- "default-mobile.handlebars->11->186",
- "default-mobile.handlebars->11->189",
- "default.handlebars->31->1798",
- "default.handlebars->31->268",
- "default.handlebars->31->271",
- "default.handlebars->31->274",
- "default.handlebars->31->277",
- "default.handlebars->31->280",
- "default.handlebars->31->283"
+ "default-mobile.handlebars->11->175",
+ "default-mobile.handlebars->11->178",
+ "default-mobile.handlebars->11->181",
+ "default-mobile.handlebars->11->184",
+ "default-mobile.handlebars->11->187",
+ "default-mobile.handlebars->11->190",
+ "default.handlebars->31->1799",
+ "default.handlebars->31->269",
+ "default.handlebars->31->272",
+ "default.handlebars->31->275",
+ "default.handlebars->31->278",
+ "default.handlebars->31->281",
+ "default.handlebars->31->284"
]
},
{
@@ -45823,7 +45835,7 @@
"zh-chs": "{0}设置(.msh)",
"zh-cht": "{0}设置(.msh)",
"xloc": [
- "default.handlebars->31->394"
+ "default.handlebars->31->395"
]
},
{
@@ -45885,7 +45897,7 @@
"zh-chs": "{0}个用户",
"zh-cht": "{0}個用戶",
"xloc": [
- "default.handlebars->31->286"
+ "default.handlebars->31->287"
]
},
{
@@ -45905,7 +45917,7 @@
"zh-chs": "{0},{1}至{2}",
"zh-cht": "{0},{1}至{2}",
"xloc": [
- "default.handlebars->31->692"
+ "default.handlebars->31->693"
]
},
{
@@ -45925,7 +45937,7 @@
"zh-chs": "还剩{0}b",
"zh-cht": "還剩{0}b",
"xloc": [
- "default-mobile.handlebars->11->121"
+ "default-mobile.handlebars->11->122"
]
},
{
@@ -45945,7 +45957,7 @@
"zh-chs": "还剩{0}g",
"zh-cht": "還剩{0}g",
"xloc": [
- "default-mobile.handlebars->11->124"
+ "default-mobile.handlebars->11->125"
]
},
{
@@ -45965,7 +45977,7 @@
"zh-chs": "{0}k在1档案内。最多{1}k",
"zh-cht": "{0}k在1檔案內。最多{1}k",
"xloc": [
- "default.handlebars->31->1635"
+ "default.handlebars->31->1636"
]
},
{
@@ -45985,7 +45997,7 @@
"zh-chs": "{1}k在{0}个档案中。最多{2}k",
"zh-cht": "{1}k在{0}個檔案中。最多{2}k",
"xloc": [
- "default.handlebars->31->1634"
+ "default.handlebars->31->1635"
]
},
{
@@ -46005,7 +46017,7 @@
"zh-chs": "还剩{0}k",
"zh-cht": "還剩{0}k",
"xloc": [
- "default-mobile.handlebars->11->122"
+ "default-mobile.handlebars->11->123"
]
},
{
@@ -46025,7 +46037,7 @@
"zh-chs": "还剩{0}m",
"zh-cht": "還剩{0}m",
"xloc": [
- "default-mobile.handlebars->11->123"
+ "default-mobile.handlebars->11->124"
]
},
{
diff --git a/views/default-mobile.handlebars b/views/default-mobile.handlebars
index fbcd60c6..141e2190 100644
--- a/views/default-mobile.handlebars
+++ b/views/default-mobile.handlebars
@@ -3543,7 +3543,7 @@
// Construct the key command
if (ks == -1) { deskCustomizeKeys(); return; } // Customize
if (ks == 0x0A002E) { desktop.m.sendcad(); return; } // CTRL-ALT-DEL
- if ((desktop.contype == 1) && (ks == 0x100052)) { desktop.sendCtrlMsg('{"action":"lock"}'); return; } // Lock desktop
+ //if ((desktop.contype == 1) && (ks == 0x10004C)) { desktop.sendCtrlMsg('{"action":"lock"}'); return; } // Lock desktop, WIN + L
var flags = (ks & 0xFF0000) >> 16, key = (ks & 0xFFFF), keyArray = [], keyArray2 = [];
var amtTranslate = {
diff --git a/views/default.handlebars b/views/default.handlebars
index 8541c8f6..8fb7427a 100644
--- a/views/default.handlebars
+++ b/views/default.handlebars
@@ -4428,33 +4428,18 @@
var portStr = (serverinfo.port == 443) ? '' : (':' + serverinfo.port);
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 });
- if (serverinfo.https == true)
+ if ((features & 0x2000) == 0)
{
- if ((features & 0x2000) == 0)
- {
- 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';
- 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';
- }
- else
- {
- // Server asked that agent be installed to preferably not use a HTTP proxy.
- 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';
- 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';
- }
+ 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';
+ 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';
+ //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';
}
else
{
- if ((features & 0x2000) == 0)
- {
- 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';
- 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';
- }
- else
- {
- // Server asked that agent be installed to preferably not use a HTTP proxy.
- 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';
- 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';
- }
+ // Server asked that agent be installed to preferably not use a HTTP proxy.
+ 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';
+ 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';
+ //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';
}
Q('aginsSelect').focus();
addAgentToMeshClick();
@@ -7545,7 +7530,7 @@
// Construct the key command
var ks = parseInt(Q('deskkeys').value);
if (ks == 0x0A002E) { desktop.m.sendcad(); return; } // CTRL-ALT-DEL
- if ((desktop.contype == 1) && (ks == 0x100052)) { desktop.sendCtrlMsg('{"action":"lock"}'); return; } // Lock desktop
+ //if ((desktop.contype == 1) && (ks == 0x10004C)) { desktop.sendCtrlMsg('{"action":"lock"}'); return; } // Lock desktop, WIN + L
var flags = (ks & 0xFF0000) >> 16, key = (ks & 0xFFFF), keyArray = [], keyArray2 = [];
var amtTranslate = {