mirror of https://github.com/jumpserver/jumpserver
merge: with dev
commit
93810fb0db
|
@ -1,6 +1,7 @@
|
||||||
from django.http import HttpResponse
|
from django.http import HttpResponse
|
||||||
from django.shortcuts import get_object_or_404
|
from django.shortcuts import get_object_or_404
|
||||||
from django.utils.translation import gettext_lazy as _
|
from django.utils.translation import gettext_lazy as _
|
||||||
|
from django.views.decorators.clickjacking import xframe_options_sameorigin
|
||||||
from rest_framework import status, mixins, viewsets
|
from rest_framework import status, mixins, viewsets
|
||||||
from rest_framework.decorators import action
|
from rest_framework.decorators import action
|
||||||
from rest_framework.response import Response
|
from rest_framework.response import Response
|
||||||
|
@ -115,9 +116,9 @@ class AutomationExecutionViewSet(
|
||||||
)
|
)
|
||||||
return Response({'task': task.id}, status=status.HTTP_201_CREATED)
|
return Response({'task': task.id}, status=status.HTTP_201_CREATED)
|
||||||
|
|
||||||
|
@xframe_options_sameorigin
|
||||||
@action(methods=['get'], detail=True, url_path='report')
|
@action(methods=['get'], detail=True, url_path='report')
|
||||||
def report(self, request, *args, **kwargs):
|
def report(self, request, *args, **kwargs):
|
||||||
execution = self.get_object()
|
execution = self.get_object()
|
||||||
report = execution.manager.gen_report()
|
report = execution.manager.gen_report()
|
||||||
return HttpResponse(report)
|
return HttpResponse(report)
|
||||||
|
|
||||||
|
|
|
@ -129,7 +129,7 @@ class AccountRiskViewSet(OrgBulkModelViewSet):
|
||||||
handler = RiskHandler(asset=asset, username=username, request=self.request)
|
handler = RiskHandler(asset=asset, username=username, request=self.request)
|
||||||
data = handler.handle(act, risk)
|
data = handler.handle(act, risk)
|
||||||
if not data:
|
if not data:
|
||||||
data = {"message": "Success"}
|
return Response(data={"message": "Success"})
|
||||||
s = serializers.AccountRiskSerializer(instance=data)
|
s = serializers.AccountRiskSerializer(instance=data)
|
||||||
return Response(data=s.data)
|
return Response(data=s.data)
|
||||||
|
|
||||||
|
|
|
@ -2,6 +2,7 @@
|
||||||
#
|
#
|
||||||
from django.http import HttpResponse
|
from django.http import HttpResponse
|
||||||
from django.shortcuts import get_object_or_404
|
from django.shortcuts import get_object_or_404
|
||||||
|
from django.views.decorators.clickjacking import xframe_options_sameorigin
|
||||||
from rest_framework import status
|
from rest_framework import status
|
||||||
from rest_framework.decorators import action
|
from rest_framework.decorators import action
|
||||||
from rest_framework.response import Response
|
from rest_framework.response import Response
|
||||||
|
@ -48,6 +49,7 @@ class DiscoverAccountsExecutionViewSet(AutomationExecutionViewSet):
|
||||||
queryset = queryset.filter(automation__type=self.tp)
|
queryset = queryset.filter(automation__type=self.tp)
|
||||||
return queryset
|
return queryset
|
||||||
|
|
||||||
|
@xframe_options_sameorigin
|
||||||
@action(methods=["get"], detail=False, url_path="adhoc")
|
@action(methods=["get"], detail=False, url_path="adhoc")
|
||||||
def adhoc(self, request, *args, **kwargs):
|
def adhoc(self, request, *args, **kwargs):
|
||||||
asset_id = request.query_params.get("asset_id")
|
asset_id = request.query_params.get("asset_id")
|
||||||
|
|
|
@ -130,7 +130,6 @@ class AssetViewSet(SuggestionMixin, OrgBulkModelViewSet):
|
||||||
def get_queryset(self):
|
def get_queryset(self):
|
||||||
queryset = super().get_queryset()
|
queryset = super().get_queryset()
|
||||||
if queryset.model.__name__ != 'Asset':
|
if queryset.model.__name__ != 'Asset':
|
||||||
print("get query prefetch")
|
|
||||||
queryset = queryset.select_related('asset_ptr')
|
queryset = queryset.select_related('asset_ptr')
|
||||||
return queryset
|
return queryset
|
||||||
|
|
||||||
|
|
|
@ -32,6 +32,7 @@
|
||||||
"ExportCurrent": "Export current page",
|
"ExportCurrent": "Export current page",
|
||||||
"ExportData": "Export data",
|
"ExportData": "Export data",
|
||||||
"FetchError": "Error while fetching data",
|
"FetchError": "Error while fetching data",
|
||||||
|
"Format": "Format",
|
||||||
"FormatHotKey": "Format (Ctrl + L)",
|
"FormatHotKey": "Format (Ctrl + L)",
|
||||||
"InitializeDatasource": "Initialize datasource",
|
"InitializeDatasource": "Initialize datasource",
|
||||||
"InitializeDatasourceFailed": "Initialize datasource failed",
|
"InitializeDatasourceFailed": "Initialize datasource failed",
|
||||||
|
@ -60,6 +61,7 @@
|
||||||
"Save": "Save",
|
"Save": "Save",
|
||||||
"SaveSQL": "Save SQL",
|
"SaveSQL": "Save SQL",
|
||||||
"SaveSucceed": "Save succeed",
|
"SaveSucceed": "Save succeed",
|
||||||
|
"Scope": "Scope",
|
||||||
"SelectSQL": "Select SQL",
|
"SelectSQL": "Select SQL",
|
||||||
"SessionClosedBy": "This session has been closed by %s.",
|
"SessionClosedBy": "This session has been closed by %s.",
|
||||||
"SessionFinished": "Session finished",
|
"SessionFinished": "Session finished",
|
||||||
|
@ -78,7 +80,5 @@
|
||||||
"ViewData": "View data",
|
"ViewData": "View data",
|
||||||
"WaitCommandReviewMessage": "The review request has been initiated, please wait for the review results",
|
"WaitCommandReviewMessage": "The review request has been initiated, please wait for the review results",
|
||||||
"Warning": "Warning",
|
"Warning": "Warning",
|
||||||
"initializingDatasourceFailedMessage": "Connection failed, please check if the database connection configuration is correct",
|
"initializingDatasourceFailedMessage": "Connection failed, please check if the database connection configuration is correct"
|
||||||
"Scope": "Scope",
|
|
||||||
"Format": "Format"
|
|
||||||
}
|
}
|
|
@ -32,6 +32,7 @@
|
||||||
"ExportCurrent": "导出当前页面",
|
"ExportCurrent": "导出当前页面",
|
||||||
"ExportData": "导出数据",
|
"ExportData": "导出数据",
|
||||||
"FetchError": "获取数据失败",
|
"FetchError": "获取数据失败",
|
||||||
|
"Format": "格式",
|
||||||
"FormatHotKey": "格式化 (Ctrl + L)",
|
"FormatHotKey": "格式化 (Ctrl + L)",
|
||||||
"InitializeDatasource": "初始化数据源",
|
"InitializeDatasource": "初始化数据源",
|
||||||
"InitializeDatasourceFailed": "初始化数据源失败",
|
"InitializeDatasourceFailed": "初始化数据源失败",
|
||||||
|
@ -60,6 +61,7 @@
|
||||||
"Save": "保存",
|
"Save": "保存",
|
||||||
"SaveSQL": "保存 SQL",
|
"SaveSQL": "保存 SQL",
|
||||||
"SaveSucceed": "保存成功",
|
"SaveSucceed": "保存成功",
|
||||||
|
"Scope": "范围",
|
||||||
"SelectSQL": "选择 SQL",
|
"SelectSQL": "选择 SQL",
|
||||||
"SessionClosedBy": "会话被 %s 关闭",
|
"SessionClosedBy": "会话被 %s 关闭",
|
||||||
"SessionFinished": "会话已结束",
|
"SessionFinished": "会话已结束",
|
||||||
|
@ -78,7 +80,5 @@
|
||||||
"ViewData": "查看数据",
|
"ViewData": "查看数据",
|
||||||
"WaitCommandReviewMessage": "复核请求已发起, 请等待复核结果",
|
"WaitCommandReviewMessage": "复核请求已发起, 请等待复核结果",
|
||||||
"Warning": "警告",
|
"Warning": "警告",
|
||||||
"initializingDatasourceFailedMessage": "连接失败,请检查数据库连接配置是否正确",
|
"initializingDatasourceFailedMessage": "连接失败,请检查数据库连接配置是否正确"
|
||||||
"Scope": "范围",
|
|
||||||
"Format": "格式"
|
|
||||||
}
|
}
|
|
@ -16,11 +16,12 @@
|
||||||
"AccountBackupList": "Backup account",
|
"AccountBackupList": "Backup account",
|
||||||
"AccountBackupUpdate": "Update account backup",
|
"AccountBackupUpdate": "Update account backup",
|
||||||
"AccountChangeSecretDetail": "Change account secret details",
|
"AccountChangeSecretDetail": "Change account secret details",
|
||||||
|
"AccountData": "Account data",
|
||||||
"AccountDeleteConfirmMsg": "Delete account, continue?",
|
"AccountDeleteConfirmMsg": "Delete account, continue?",
|
||||||
|
"AccountDeleted": "Account deleted",
|
||||||
"AccountDiscoverDetail": "Gather account details",
|
"AccountDiscoverDetail": "Gather account details",
|
||||||
"AccountDiscoverList": "Discover accounts",
|
"AccountDiscover": "Discover accounts",
|
||||||
"AccountDiscoverTaskCreate": "Create discover accounts task",
|
"AccountDiscoverTaskCreate": "Create discover accounts task",
|
||||||
"AccountDiscoverTask": "Discover accounts tasks",
|
|
||||||
"AccountDiscoverTaskUpdate": "Update the discover accounts task",
|
"AccountDiscoverTaskUpdate": "Update the discover accounts task",
|
||||||
"AccountExportTips": "The exported information contains sensitive information such as encrypted account numbers. the exported format is an encrypted zip file (if you have not set the encryption password, please go to personal info to set the file encryption password).",
|
"AccountExportTips": "The exported information contains sensitive information such as encrypted account numbers. the exported format is an encrypted zip file (if you have not set the encryption password, please go to personal info to set the file encryption password).",
|
||||||
"AccountList": "Accounts",
|
"AccountList": "Accounts",
|
||||||
|
@ -30,11 +31,15 @@
|
||||||
"AccountPushDetail": "Push account details",
|
"AccountPushDetail": "Push account details",
|
||||||
"AccountPushList": "Push accounts",
|
"AccountPushList": "Push accounts",
|
||||||
"AccountPushUpdate": "Update push account",
|
"AccountPushUpdate": "Update push account",
|
||||||
|
"AccountResult": "Account secret change success/failure",
|
||||||
"AccountSessions": "Account Sessions",
|
"AccountSessions": "Account Sessions",
|
||||||
"AccountStorage": "Account storage",
|
"AccountStorage": "Account storage",
|
||||||
|
"AccountSummary": "Account summary",
|
||||||
"AccountTemplate": "Account templates",
|
"AccountTemplate": "Account templates",
|
||||||
"AccountTemplateList": "Account templates",
|
"AccountTemplateList": "Account templates",
|
||||||
"AccountTemplateUpdateSecretHelpText": "The account list shows the accounts created through the template. when the secret is updated, the ciphertext of the accounts created through the template will be updated.",
|
"AccountTemplateUpdateSecretHelpText": "The account list shows the accounts created through the template. when the secret is updated, the ciphertext of the accounts created through the template will be updated.",
|
||||||
|
"AccountTotal": "Account total",
|
||||||
|
"AccountType": "Account Type",
|
||||||
"Accounts": "Accounts",
|
"Accounts": "Accounts",
|
||||||
"Action": "Action",
|
"Action": "Action",
|
||||||
"ActionCount": "Action count",
|
"ActionCount": "Action count",
|
||||||
|
@ -131,7 +136,6 @@
|
||||||
"AssetAclCreate": "Create asset connect rule",
|
"AssetAclCreate": "Create asset connect rule",
|
||||||
"AssetAclDetail": "Asset connect rule details",
|
"AssetAclDetail": "Asset connect rule details",
|
||||||
"AssetAclList": "Asset connect ACLs",
|
"AssetAclList": "Asset connect ACLs",
|
||||||
"AssetConnect": "Asset connect",
|
|
||||||
"AssetAclUpdate": "Update the asset connect rules",
|
"AssetAclUpdate": "Update the asset connect rules",
|
||||||
"AssetAddress": "Asset (ip/hostname)",
|
"AssetAddress": "Asset (ip/hostname)",
|
||||||
"AssetAmount": "Asset amount",
|
"AssetAmount": "Asset amount",
|
||||||
|
@ -139,6 +143,7 @@
|
||||||
"AssetBulkUpdateTips": "Network devices, cloud services, web, batch updating of zones not supported",
|
"AssetBulkUpdateTips": "Network devices, cloud services, web, batch updating of zones not supported",
|
||||||
"AssetChangeSecretCreate": "Create account secret change",
|
"AssetChangeSecretCreate": "Create account secret change",
|
||||||
"AssetChangeSecretUpdate": "Update account secret change",
|
"AssetChangeSecretUpdate": "Update account secret change",
|
||||||
|
"AssetConnect": "Asset connect",
|
||||||
"AssetData": "Asset data",
|
"AssetData": "Asset data",
|
||||||
"AssetDetail": "Asset details",
|
"AssetDetail": "Asset details",
|
||||||
"AssetList": "Assets",
|
"AssetList": "Assets",
|
||||||
|
@ -175,6 +180,7 @@
|
||||||
"AuthSettings": "Authentication configuration",
|
"AuthSettings": "Authentication configuration",
|
||||||
"AuthUserAttrMapHelpText": "The key on the left belongs to the jumpserver user properties, and the value on the right belongs to the authentication platform user properties",
|
"AuthUserAttrMapHelpText": "The key on the left belongs to the jumpserver user properties, and the value on the right belongs to the authentication platform user properties",
|
||||||
"Authentication": "Authentication",
|
"Authentication": "Authentication",
|
||||||
|
"AuthorizedKeysChanged": "Authorized keys changed",
|
||||||
"AutoPush": "Auto push",
|
"AutoPush": "Auto push",
|
||||||
"Automation": "Automation",
|
"Automation": "Automation",
|
||||||
"AverageTimeCost": "Average spend time",
|
"AverageTimeCost": "Average spend time",
|
||||||
|
@ -265,7 +271,9 @@
|
||||||
"ChangePassword": "Change password",
|
"ChangePassword": "Change password",
|
||||||
"ChangeSecret": "Change secrets",
|
"ChangeSecret": "Change secrets",
|
||||||
"ChangeSecretAccountHelpText": "For accounts in the same asset, if there is a switch-from relationship, the password change should not be performed in the same task, but should be divided into two tasks for execution separately.",
|
"ChangeSecretAccountHelpText": "For accounts in the same asset, if there is a switch-from relationship, the password change should not be performed in the same task, but should be divided into two tasks for execution separately.",
|
||||||
|
"ChangeSecretFailAccounts": "Secret Change Failed Accounts",
|
||||||
"ChangeSecretParams": "Change secret parameters",
|
"ChangeSecretParams": "Change secret parameters",
|
||||||
|
"ChangeSecretTaskStatus": "Secret Change Task Status",
|
||||||
"ChangeViewHelpText": "Click to switch different views",
|
"ChangeViewHelpText": "Click to switch different views",
|
||||||
"Chat": "Chat",
|
"Chat": "Chat",
|
||||||
"ChatAI": "Chat AI",
|
"ChatAI": "Chat AI",
|
||||||
|
@ -291,6 +299,7 @@
|
||||||
"CloseConfirmMessage": "File has changed, save?",
|
"CloseConfirmMessage": "File has changed, save?",
|
||||||
"CloseStatus": "Completed",
|
"CloseStatus": "Completed",
|
||||||
"Closed": "Completed",
|
"Closed": "Completed",
|
||||||
|
"Cloud": "Cloud",
|
||||||
"CloudAccountCreate": "Create a cloud account",
|
"CloudAccountCreate": "Create a cloud account",
|
||||||
"CloudAccountDetail": "Details of cloud account",
|
"CloudAccountDetail": "Details of cloud account",
|
||||||
"CloudAccountList": "Accounts",
|
"CloudAccountList": "Accounts",
|
||||||
|
@ -337,14 +346,15 @@
|
||||||
"Connect": "Connect",
|
"Connect": "Connect",
|
||||||
"ConnectAssets": "Access assets",
|
"ConnectAssets": "Access assets",
|
||||||
"ConnectMethod": "Connect method",
|
"ConnectMethod": "Connect method",
|
||||||
"ConnectMethodAcls": "Connect method ACLs",
|
|
||||||
"ConnectMethodACLHelpMsg": "Connect methods can be filtered to control whether users can use a certain connect method to login to the asset. according to your set rules, some connect methods can be allowed, while others can be prohibited (globally effective).",
|
"ConnectMethodACLHelpMsg": "Connect methods can be filtered to control whether users can use a certain connect method to login to the asset. according to your set rules, some connect methods can be allowed, while others can be prohibited (globally effective).",
|
||||||
"ConnectMethodACLHelpText": "Connect methods can be filtered to control whether users can use a certain connect method to login to the asset. according to your set rules, some connect methods can be allowed, while others can be prohibited.",
|
"ConnectMethodACLHelpText": "Connect methods can be filtered to control whether users can use a certain connect method to login to the asset. according to your set rules, some connect methods can be allowed, while others can be prohibited.",
|
||||||
"ConnectMethodAclCreate": "Create connect method control",
|
"ConnectMethodAclCreate": "Create connect method control",
|
||||||
"ConnectMethodAclDetail": "Connect method control details",
|
"ConnectMethodAclDetail": "Connect method control details",
|
||||||
"ConnectMethodAclList": "Connect method ACLs",
|
"ConnectMethodAclList": "Connect method ACLs",
|
||||||
"ConnectMethodAclUpdate": "Update the connect method control",
|
"ConnectMethodAclUpdate": "Update the connect method control",
|
||||||
|
"ConnectMethodAcls": "Connect method ACLs",
|
||||||
"ConnectWebSocketError": "Connection to websocket failed",
|
"ConnectWebSocketError": "Connection to websocket failed",
|
||||||
|
"Connectable": "Connectable",
|
||||||
"ConnectionDropped": "Connection disconnected",
|
"ConnectionDropped": "Connection disconnected",
|
||||||
"ConnectionToken": "Connection tokens",
|
"ConnectionToken": "Connection tokens",
|
||||||
"ConnectionTokenList": "The connection token is a type of authentication information that combines identity verification with connecting assets. it supports one-click user login to assets. currently supported components include: koko, lion, magnus, razor, etc.",
|
"ConnectionTokenList": "The connection token is a type of authentication information that combines identity verification with connecting assets. it supports one-click user login to assets. currently supported components include: koko, lion, magnus, razor, etc.",
|
||||||
|
@ -356,8 +366,9 @@
|
||||||
"Continue": "Continue",
|
"Continue": "Continue",
|
||||||
"ConvenientOperate": "Convenient action",
|
"ConvenientOperate": "Convenient action",
|
||||||
"Copy": "Copy",
|
"Copy": "Copy",
|
||||||
"CopySuccess": "Copy successful",
|
|
||||||
"CopyFailed": "Copy failed",
|
"CopyFailed": "Copy failed",
|
||||||
|
"CopySuccess": "Copy successful",
|
||||||
|
"CopyToAsset": "Copy to asset",
|
||||||
"Corporation": "Company",
|
"Corporation": "Company",
|
||||||
"Create": "Create",
|
"Create": "Create",
|
||||||
"CreateAccessKey": "Create access key",
|
"CreateAccessKey": "Create access key",
|
||||||
|
@ -383,6 +394,7 @@
|
||||||
"CrontabOfCreateUpdatePage": "",
|
"CrontabOfCreateUpdatePage": "",
|
||||||
"CurrentConnectionUsers": "Online users",
|
"CurrentConnectionUsers": "Online users",
|
||||||
"CurrentConnections": "Current connections",
|
"CurrentConnections": "Current connections",
|
||||||
|
"CurrentStatus": "Current Status",
|
||||||
"CurrentUserVerify": "Verify current user",
|
"CurrentUserVerify": "Verify current user",
|
||||||
"Custom": "Custom",
|
"Custom": "Custom",
|
||||||
"CustomCol": "Customize display columns",
|
"CustomCol": "Customize display columns",
|
||||||
|
@ -425,6 +437,7 @@
|
||||||
"Datetime": "Datetime",
|
"Datetime": "Datetime",
|
||||||
"Day": "Day",
|
"Day": "Day",
|
||||||
"DeclassificationLogNum": "Password change logs",
|
"DeclassificationLogNum": "Password change logs",
|
||||||
|
"DeeplyThoughtAbout": "Deeply thought about",
|
||||||
"DefaultDatabase": "Default database",
|
"DefaultDatabase": "Default database",
|
||||||
"DefaultPort": "Default port",
|
"DefaultPort": "Default port",
|
||||||
"DefaultValue": "Default value",
|
"DefaultValue": "Default value",
|
||||||
|
@ -448,6 +461,7 @@
|
||||||
"DetectEngines": "Detect engines",
|
"DetectEngines": "Detect engines",
|
||||||
"DetectResults": "Detect results",
|
"DetectResults": "Detect results",
|
||||||
"DetectTasks": "Detect tasks",
|
"DetectTasks": "Detect tasks",
|
||||||
|
"Device": "Device",
|
||||||
"DeviceCreate": "Create asset - device",
|
"DeviceCreate": "Create asset - device",
|
||||||
"DeviceUpdate": "Update the asset - device",
|
"DeviceUpdate": "Update the asset - device",
|
||||||
"Digit": "Number",
|
"Digit": "Number",
|
||||||
|
@ -462,6 +476,7 @@
|
||||||
"DiscoveredAccountList": "Discovered accounts",
|
"DiscoveredAccountList": "Discovered accounts",
|
||||||
"DisplayName": "Name",
|
"DisplayName": "Name",
|
||||||
"Docs": "Docs",
|
"Docs": "Docs",
|
||||||
|
"Documentation": "Documentation",
|
||||||
"Download": "Download",
|
"Download": "Download",
|
||||||
"DownloadCenter": "Download",
|
"DownloadCenter": "Download",
|
||||||
"DownloadImportTemplateMsg": "Download creation template",
|
"DownloadImportTemplateMsg": "Download creation template",
|
||||||
|
@ -475,6 +490,7 @@
|
||||||
"DynamicUsername": "Dynamic username",
|
"DynamicUsername": "Dynamic username",
|
||||||
"Edit": "Edit",
|
"Edit": "Edit",
|
||||||
"EditRecipient": "Edit recipient",
|
"EditRecipient": "Edit recipient",
|
||||||
|
"EditSecret": "Edit secret",
|
||||||
"Edition": "Version",
|
"Edition": "Version",
|
||||||
"Effective": "Effective",
|
"Effective": "Effective",
|
||||||
"Email": "Email",
|
"Email": "Email",
|
||||||
|
@ -483,6 +499,7 @@
|
||||||
"EmailTemplateHelpTip": "Email template is used for sending emails and includes the email subject prefix and email content",
|
"EmailTemplateHelpTip": "Email template is used for sending emails and includes the email subject prefix and email content",
|
||||||
"EmailTest": "Test connection",
|
"EmailTest": "Test connection",
|
||||||
"Empty": "Empty",
|
"Empty": "Empty",
|
||||||
|
"EmptyPassword": "Empty password",
|
||||||
"Enable": "Enable",
|
"Enable": "Enable",
|
||||||
"EnableDomain": "Gateway enabled",
|
"EnableDomain": "Gateway enabled",
|
||||||
"EnableKoKoSSHHelpText": "When switched on, connecting to the asset will display ssh client pull-up method",
|
"EnableKoKoSSHHelpText": "When switched on, connecting to the asset will display ssh client pull-up method",
|
||||||
|
@ -515,17 +532,13 @@
|
||||||
"ExecuteOnce": "Execute once",
|
"ExecuteOnce": "Execute once",
|
||||||
"ExecutionDetail": "Execution details",
|
"ExecutionDetail": "Execution details",
|
||||||
"ExecutionList": "Executions",
|
"ExecutionList": "Executions",
|
||||||
|
"ExecutionRecord": "Execution records",
|
||||||
"ExistError": "This element already exists",
|
"ExistError": "This element already exists",
|
||||||
"Existing": "Already exists",
|
"Existing": "Already exists",
|
||||||
"ExpirationTimeout": "Expiration timeout (seconds)",
|
"ExpirationTimeout": "Expiration timeout (seconds)",
|
||||||
"Expire": "Expire",
|
"Expire": "Expire",
|
||||||
"QuickFilter": "Quick filter",
|
|
||||||
"NoResource": "No valid resources",
|
|
||||||
"Expired": "Expired",
|
"Expired": "Expired",
|
||||||
"Export": "Export",
|
"Export": "Export",
|
||||||
"NeverLogin": "Never login",
|
|
||||||
"NoMFA": "MFA not enabled",
|
|
||||||
"LoginBlocked": "Login blocked",
|
|
||||||
"ExportAll": "Export all",
|
"ExportAll": "Export all",
|
||||||
"ExportOnlyFiltered": "Export filtered items",
|
"ExportOnlyFiltered": "Export filtered items",
|
||||||
"ExportOnlySelectedItems": "Export selected items",
|
"ExportOnlySelectedItems": "Export selected items",
|
||||||
|
@ -537,6 +550,7 @@
|
||||||
"FTPStorageNotEnabled": "The file storage function is not enabled. Please modify the configuration file and add the following configuration: FTP_FILE_MAX_STORE=100 (supports saving files within 100M)",
|
"FTPStorageNotEnabled": "The file storage function is not enabled. Please modify the configuration file and add the following configuration: FTP_FILE_MAX_STORE=100 (supports saving files within 100M)",
|
||||||
"FTPUnknownStorageState": "Unknown file storage status, please contact your administrator.",
|
"FTPUnknownStorageState": "Unknown file storage status, please contact your administrator.",
|
||||||
"FacialFeatures": "Facial features",
|
"FacialFeatures": "Facial features",
|
||||||
|
"FailCount": "Failure Count",
|
||||||
"Failed": "Failed",
|
"Failed": "Failed",
|
||||||
"FailedAsset": "Failed assets",
|
"FailedAsset": "Failed assets",
|
||||||
"FaviconTip": "Note: website icon (suggested image size: 16px*16px)",
|
"FaviconTip": "Note: website icon (suggested image size: 16px*16px)",
|
||||||
|
@ -564,6 +578,7 @@
|
||||||
"Footer": "Footer",
|
"Footer": "Footer",
|
||||||
"ForgotPasswordURL": "Forgot password URL",
|
"ForgotPasswordURL": "Forgot password URL",
|
||||||
"FormatError": "Format error",
|
"FormatError": "Format error",
|
||||||
|
"FoundAccountInAssetDeleteMsg": "Delete the found items from the system assets",
|
||||||
"Friday": "Fri",
|
"Friday": "Fri",
|
||||||
"From": "From",
|
"From": "From",
|
||||||
"FromTicket": "From the ticket",
|
"FromTicket": "From the ticket",
|
||||||
|
@ -588,6 +603,7 @@
|
||||||
"Goto": "Goto",
|
"Goto": "Goto",
|
||||||
"GrantedAssets": "Authorized assets",
|
"GrantedAssets": "Authorized assets",
|
||||||
"GreatEqualThan": "Greater than or equal to",
|
"GreatEqualThan": "Greater than or equal to",
|
||||||
|
"GroupChanged": "Group changed",
|
||||||
"GroupsAmount": "User group",
|
"GroupsAmount": "User group",
|
||||||
"HTTPSRequiredForSupport": "HTTPS is required for support",
|
"HTTPSRequiredForSupport": "HTTPS is required for support",
|
||||||
"HandleTicket": "Handle ticket",
|
"HandleTicket": "Handle ticket",
|
||||||
|
@ -602,9 +618,9 @@
|
||||||
"HistoryDate": "Date",
|
"HistoryDate": "Date",
|
||||||
"HistoryPassword": "Historical password",
|
"HistoryPassword": "Historical password",
|
||||||
"HistoryRecord": "History record",
|
"HistoryRecord": "History record",
|
||||||
|
"Host": "Host",
|
||||||
"HostCreate": "Create asset - host",
|
"HostCreate": "Create asset - host",
|
||||||
"HostDeployment": "Deploy publishing machine",
|
"HostDeployment": "Deploy publishing machine",
|
||||||
"Host": "Host",
|
|
||||||
"HostUpdate": "Update the asset - host",
|
"HostUpdate": "Update the asset - host",
|
||||||
"HostnameStrategy": "Used to generate hostnames for assets. for example: 1. instance name (instancedemo); 2. instance name and part of ip (last two letters) (instancedemo-250.1)",
|
"HostnameStrategy": "Used to generate hostnames for assets. for example: 1. instance name (instancedemo); 2. instance name and part of ip (last two letters) (instancedemo-250.1)",
|
||||||
"Hour": "Hour",
|
"Hour": "Hour",
|
||||||
|
@ -695,6 +711,7 @@
|
||||||
"LdapBulkImport": "User import",
|
"LdapBulkImport": "User import",
|
||||||
"LdapConnectTest": "Test connection",
|
"LdapConnectTest": "Test connection",
|
||||||
"LdapLoginTest": "Test login",
|
"LdapLoginTest": "Test login",
|
||||||
|
"LeakedPassword": "Leaked password",
|
||||||
"Length": "Length",
|
"Length": "Length",
|
||||||
"LessEqualThan": "Less than or equal to",
|
"LessEqualThan": "Less than or equal to",
|
||||||
"LevelApproval": "Level approval",
|
"LevelApproval": "Level approval",
|
||||||
|
@ -715,6 +732,7 @@
|
||||||
"LoginAssetConfirm": "Asset connect review",
|
"LoginAssetConfirm": "Asset connect review",
|
||||||
"LoginAssetToday": "Active assets today",
|
"LoginAssetToday": "Active assets today",
|
||||||
"LoginAssets": "Active assets",
|
"LoginAssets": "Active assets",
|
||||||
|
"LoginBlocked": "Login blocked",
|
||||||
"LoginConfirm": "Login review",
|
"LoginConfirm": "Login review",
|
||||||
"LoginConfirmUser": "Confirm by",
|
"LoginConfirmUser": "Confirm by",
|
||||||
"LoginCount": "Login times",
|
"LoginCount": "Login times",
|
||||||
|
@ -737,17 +755,19 @@
|
||||||
"LogoLogoutTip": "Tip: it will be displayed on the web terminal page of enterprise edition users (recommended image size: 82px*82px)",
|
"LogoLogoutTip": "Tip: it will be displayed on the web terminal page of enterprise edition users (recommended image size: 82px*82px)",
|
||||||
"Logout": "Sign out",
|
"Logout": "Sign out",
|
||||||
"LogsAudit": "Activities",
|
"LogsAudit": "Activities",
|
||||||
|
"LongTimeNoVerify": "Long time no verify",
|
||||||
|
"LongTimePassword": "Long time password",
|
||||||
"Lowercase": "Lowercase",
|
"Lowercase": "Lowercase",
|
||||||
"LunaSetting": "Luna",
|
"LunaSetting": "Luna",
|
||||||
"MFAAllUsers": "Globally: All users",
|
"MFAAllUsers": "Globally: All users",
|
||||||
"MFAErrorMsg": "MFA errors, please check",
|
"MFAErrorMsg": "MFA errors, please check",
|
||||||
"ManagePlatform": "Manage platform",
|
|
||||||
"MFAOfUserFirstLoginPersonalInformationImprovementPage": "Enable multi-factor authentication to make your account more secure. <br/>after enabling, you will enter the multi-factor authentication binding process the next time you login; you can also directly bind in (personal information->quick modification->change multi-factor settings)!",
|
"MFAOfUserFirstLoginPersonalInformationImprovementPage": "Enable multi-factor authentication to make your account more secure. <br/>after enabling, you will enter the multi-factor authentication binding process the next time you login; you can also directly bind in (personal information->quick modification->change multi-factor settings)!",
|
||||||
"MFAOfUserFirstLoginUserGuidePage": "In order to protect your and the company's security, please carefully safeguard important sensitive information such as your account, password, and key (for example, set a complex password, and enable multi-factor authentication) <br/> personal information such as email, mobile number, and wechat are only used for user authentication and platform internal message notifications.",
|
"MFAOfUserFirstLoginUserGuidePage": "In order to protect your and the company's security, please carefully safeguard important sensitive information such as your account, password, and key (for example, set a complex password, and enable multi-factor authentication) <br/> personal information such as email, mobile number, and wechat are only used for user authentication and platform internal message notifications.",
|
||||||
"MFAOnlyAdminUsers": "Globally: Only admin",
|
"MFAOnlyAdminUsers": "Globally: Only admin",
|
||||||
"MIN_LENGTH_ERROR": "Passwords must be at least {0} characters.",
|
"MIN_LENGTH_ERROR": "Passwords must be at least {0} characters.",
|
||||||
"MailRecipient": "Email recipients",
|
"MailRecipient": "Email recipients",
|
||||||
"MailSend": "Sending",
|
"MailSend": "Sending",
|
||||||
|
"ManagePlatform": "Manage platform",
|
||||||
"ManualAccount": "Manual account",
|
"ManualAccount": "Manual account",
|
||||||
"ManualAccountTip": "Manual input of username/password upon login",
|
"ManualAccountTip": "Manual input of username/password upon login",
|
||||||
"ManualExecution": "Manual execution",
|
"ManualExecution": "Manual execution",
|
||||||
|
@ -779,6 +799,7 @@
|
||||||
"More": "More",
|
"More": "More",
|
||||||
"MoreActions": "Actions",
|
"MoreActions": "Actions",
|
||||||
"MoveAssetToNode": "Move assets to node",
|
"MoveAssetToNode": "Move assets to node",
|
||||||
|
"MoveToAsset": "Move to asset",
|
||||||
"MsgSubscribe": "Subscription",
|
"MsgSubscribe": "Subscription",
|
||||||
"MyAssets": "My assets",
|
"MyAssets": "My assets",
|
||||||
"MyTickets": "Submitted",
|
"MyTickets": "Submitted",
|
||||||
|
@ -787,7 +808,9 @@
|
||||||
"NavHelp": "Navigation",
|
"NavHelp": "Navigation",
|
||||||
"Navigation": "Navigation",
|
"Navigation": "Navigation",
|
||||||
"NeedReLogin": "Need to re-login",
|
"NeedReLogin": "Need to re-login",
|
||||||
|
"NeverLogin": "Never login",
|
||||||
"New": "Create",
|
"New": "Create",
|
||||||
|
"NewAccountsFound": "New accounts found",
|
||||||
"NewChat": "New chat",
|
"NewChat": "New chat",
|
||||||
"NewCount": "Add",
|
"NewCount": "Add",
|
||||||
"NewCron": "Generate cron",
|
"NewCron": "Generate cron",
|
||||||
|
@ -801,14 +824,18 @@
|
||||||
"Next": "Next",
|
"Next": "Next",
|
||||||
"No": "No",
|
"No": "No",
|
||||||
"NoAccountFound": "No account found",
|
"NoAccountFound": "No account found",
|
||||||
|
"NoAdminAccount": "No admin account",
|
||||||
"NoContent": "No content",
|
"NoContent": "No content",
|
||||||
"NoData": "No data available",
|
"NoData": "No data available",
|
||||||
"NoFiles": "No file, upload on the left",
|
"NoFiles": "No file, upload on the left",
|
||||||
"NoLog": "No log",
|
"NoLog": "No log",
|
||||||
|
"NoLoginLongTime": "No login for long time",
|
||||||
|
"NoMFA": "MFA not enabled",
|
||||||
"NoPermission": "No permissions",
|
"NoPermission": "No permissions",
|
||||||
"NoPermission403": "403 no permission",
|
"NoPermission403": "403 no permission",
|
||||||
"NoPermissionInGlobal": "No permission in GLOBAL",
|
"NoPermissionInGlobal": "No permission in GLOBAL",
|
||||||
"NoPermissionVew": "No permission to view the current page",
|
"NoPermissionVew": "No permission to view the current page",
|
||||||
|
"NoResource": "No valid resources",
|
||||||
"NoUnreadMsg": "You have unread notifications",
|
"NoUnreadMsg": "You have unread notifications",
|
||||||
"Node": "Node",
|
"Node": "Node",
|
||||||
"NodeInformation": "Node information",
|
"NodeInformation": "Node information",
|
||||||
|
@ -839,6 +866,7 @@
|
||||||
"OneAssignee": "First-level approver",
|
"OneAssignee": "First-level approver",
|
||||||
"OneAssigneeType": "First-level handler type",
|
"OneAssigneeType": "First-level handler type",
|
||||||
"OneClickReadMsg": "Are you sure you want to mark all as read?",
|
"OneClickReadMsg": "Are you sure you want to mark all as read?",
|
||||||
|
"OngoingPwdChange": "Ongoing Secret Change",
|
||||||
"OnlineSession": "Online devices",
|
"OnlineSession": "Online devices",
|
||||||
"OnlineSessionHelpMsg": "Unable to log out of the current session because it is the current user's online session. currently only users logged in via web are being logged.",
|
"OnlineSessionHelpMsg": "Unable to log out of the current session because it is the current user's online session. currently only users logged in via web are being logged.",
|
||||||
"OnlineSessions": "Online sessions",
|
"OnlineSessions": "Online sessions",
|
||||||
|
@ -883,6 +911,8 @@
|
||||||
"Password": "Password",
|
"Password": "Password",
|
||||||
"PasswordAndSSHKey": "Password & SSH key",
|
"PasswordAndSSHKey": "Password & SSH key",
|
||||||
"PasswordChangeLog": "Password change",
|
"PasswordChangeLog": "Password change",
|
||||||
|
"PasswordError": "Password error",
|
||||||
|
"PasswordExpired": "Password expired",
|
||||||
"PasswordPlaceholder": "Please enter password",
|
"PasswordPlaceholder": "Please enter password",
|
||||||
"PasswordRecord": "Password record",
|
"PasswordRecord": "Password record",
|
||||||
"PasswordRule": "Password rules",
|
"PasswordRule": "Password rules",
|
||||||
|
@ -935,6 +965,7 @@
|
||||||
"Project": "Project name",
|
"Project": "Project name",
|
||||||
"Prompt": "Prompt",
|
"Prompt": "Prompt",
|
||||||
"Proportion": "Proportion",
|
"Proportion": "Proportion",
|
||||||
|
"ProportionOfAccountTypes": "Account type proportion",
|
||||||
"ProportionOfAssetTypes": "Asset type proportion",
|
"ProportionOfAssetTypes": "Asset type proportion",
|
||||||
"Protocol": "Protocol",
|
"Protocol": "Protocol",
|
||||||
"Protocols": "Protocols",
|
"Protocols": "Protocols",
|
||||||
|
@ -948,6 +979,7 @@
|
||||||
"PublishStatus": "Release status",
|
"PublishStatus": "Release status",
|
||||||
"Push": "Push",
|
"Push": "Push",
|
||||||
"PushAccount": "Push accounts",
|
"PushAccount": "Push accounts",
|
||||||
|
"PushAccountHelpText": "If the account already exists, the ciphertext of the account will be used for push; if the account does not exist, the account will be created according to the filled-in ciphertext and then pushed.",
|
||||||
"PushAccountsHelpText": "Pushing the account to the target asset allows for configuring different push methods for assets on different platforms.",
|
"PushAccountsHelpText": "Pushing the account to the target asset allows for configuring different push methods for assets on different platforms.",
|
||||||
"PushParams": "Push parameters",
|
"PushParams": "Push parameters",
|
||||||
"Qcloud": "Tencent cloud",
|
"Qcloud": "Tencent cloud",
|
||||||
|
@ -955,6 +987,7 @@
|
||||||
"QingYunPrivateCloud": "Qingyun private cloud",
|
"QingYunPrivateCloud": "Qingyun private cloud",
|
||||||
"Queue": "Queue",
|
"Queue": "Queue",
|
||||||
"QuickAdd": "Quick add",
|
"QuickAdd": "Quick add",
|
||||||
|
"QuickFilter": "Quick filter",
|
||||||
"QuickJob": "Adhoc",
|
"QuickJob": "Adhoc",
|
||||||
"QuickUpdate": "Quick update",
|
"QuickUpdate": "Quick update",
|
||||||
"Radius": "Radius",
|
"Radius": "Radius",
|
||||||
|
@ -965,13 +998,20 @@
|
||||||
"RealTimeData": "Real-time",
|
"RealTimeData": "Real-time",
|
||||||
"Reason": "Reason",
|
"Reason": "Reason",
|
||||||
"Receivers": "Receiver",
|
"Receivers": "Receiver",
|
||||||
|
"Recent (7 days)": "Recent (7 days)",
|
||||||
"RecentLogin": "Recent login",
|
"RecentLogin": "Recent login",
|
||||||
|
"RecentPasswordChangeFailed": "Recent password change failed",
|
||||||
"RecentSession": "Recent sessions",
|
"RecentSession": "Recent sessions",
|
||||||
|
"RecentlyChangedPassword": "Recently changed password",
|
||||||
|
"RecentlyDiscovered": "Recently discovered",
|
||||||
|
"RecentlyLoggedIn": "Recently logged in",
|
||||||
|
"RecentlyModified": "Recently modified",
|
||||||
"RecentlyUsed": "Recently",
|
"RecentlyUsed": "Recently",
|
||||||
"Recipient": "Recipient",
|
"Recipient": "Recipient",
|
||||||
"RecipientHelpText": "If both recipients A and B are set, the account's ciphertext will be split into two parts; if only one recipient is set, the key will not be split.",
|
"RecipientHelpText": "If both recipients A and B are set, the account's ciphertext will be split into two parts; if only one recipient is set, the key will not be split.",
|
||||||
"RecipientServer": "Receiving server",
|
"RecipientServer": "Receiving server",
|
||||||
"Reconnect": "Reconnect",
|
"Reconnect": "Reconnect",
|
||||||
|
"Record": "Record",
|
||||||
"Refresh": "Refresh",
|
"Refresh": "Refresh",
|
||||||
"RefreshHardware": "Refresh hardware info",
|
"RefreshHardware": "Refresh hardware info",
|
||||||
"Regex": "Regular expression",
|
"Regex": "Regular expression",
|
||||||
|
@ -988,6 +1028,7 @@
|
||||||
"RelevantCommand": "Command",
|
"RelevantCommand": "Command",
|
||||||
"RelevantSystemUser": "System user",
|
"RelevantSystemUser": "System user",
|
||||||
"RemoteAddr": "Remote address",
|
"RemoteAddr": "Remote address",
|
||||||
|
"RemoteAssetFoundAccountDeleteMsg": "Delete the found remote assets",
|
||||||
"Remove": "Remove",
|
"Remove": "Remove",
|
||||||
"RemoveAssetFromNode": "Remove assets from node",
|
"RemoveAssetFromNode": "Remove assets from node",
|
||||||
"RemoveSelected": "Remove selected",
|
"RemoveSelected": "Remove selected",
|
||||||
|
@ -995,6 +1036,7 @@
|
||||||
"RemoveWarningMsg": "Are you sure you want to remove",
|
"RemoveWarningMsg": "Are you sure you want to remove",
|
||||||
"Rename": "Rename",
|
"Rename": "Rename",
|
||||||
"RenameNode": "Rename node",
|
"RenameNode": "Rename node",
|
||||||
|
"RepeatedPassword": "Repeated password",
|
||||||
"ReplaceNodeAssetsAdminUserWithThis": "Replace asset admin",
|
"ReplaceNodeAssetsAdminUserWithThis": "Replace asset admin",
|
||||||
"Replay": "Playback",
|
"Replay": "Playback",
|
||||||
"ReplaySession": "Session replay",
|
"ReplaySession": "Session replay",
|
||||||
|
@ -1002,6 +1044,7 @@
|
||||||
"ReplayStorageCreateUpdateHelpMessage": "Notice: current sftp storage only supports account backup, video storage is not yet supported.",
|
"ReplayStorageCreateUpdateHelpMessage": "Notice: current sftp storage only supports account backup, video storage is not yet supported.",
|
||||||
"ReplayStorageUpdate": "Update the object storage",
|
"ReplayStorageUpdate": "Update the object storage",
|
||||||
"Reply": "Reply",
|
"Reply": "Reply",
|
||||||
|
"Report": "Report",
|
||||||
"RequestAssetPerm": "Request asset authorization",
|
"RequestAssetPerm": "Request asset authorization",
|
||||||
"RequestPerm": "Authorization request",
|
"RequestPerm": "Authorization request",
|
||||||
"RequestTickets": "New ticket",
|
"RequestTickets": "New ticket",
|
||||||
|
@ -1024,9 +1067,10 @@
|
||||||
"ResetSSHKey": "Reset ssh key",
|
"ResetSSHKey": "Reset ssh key",
|
||||||
"ResetSSHKeySuccessMsg": "Email task submitted, user will receive a url to reset shortly",
|
"ResetSSHKeySuccessMsg": "Email task submitted, user will receive a url to reset shortly",
|
||||||
"ResetSSHKeyWarningMsg": "Are you sure you want to send a reset ssh key email to the user?",
|
"ResetSSHKeyWarningMsg": "Are you sure you want to send a reset ssh key email to the user?",
|
||||||
|
"ResetSecret": "Secret can be changed",
|
||||||
|
"ResolveSelected": "Resolve selected",
|
||||||
"Resource": "Resources",
|
"Resource": "Resources",
|
||||||
"ResourceType": "Resource type",
|
"ResourceType": "Resource type",
|
||||||
"ResolveSelected": "Resolve selected",
|
|
||||||
"RestoreButton": "Restore",
|
"RestoreButton": "Restore",
|
||||||
"RestoreDefault": "Reset to default",
|
"RestoreDefault": "Reset to default",
|
||||||
"RestoreDialogMessage": "Are you sure you want to restore to default initialization?",
|
"RestoreDialogMessage": "Are you sure you want to restore to default initialization?",
|
||||||
|
@ -1038,15 +1082,14 @@
|
||||||
"RetrySelected": "Retry selected",
|
"RetrySelected": "Retry selected",
|
||||||
"Reviewer": "Approvers",
|
"Reviewer": "Approvers",
|
||||||
"RiskDetection": "Risk detection",
|
"RiskDetection": "Risk detection",
|
||||||
|
"RiskyAccount": "Risky account",
|
||||||
"Role": "Role",
|
"Role": "Role",
|
||||||
"RoleManage": "Manage role",
|
|
||||||
"RoleCreate": "Create role",
|
"RoleCreate": "Create role",
|
||||||
"RoleDetail": "Role details",
|
"RoleDetail": "Role details",
|
||||||
"RoleInfo": "Role information",
|
"RoleInfo": "Role information",
|
||||||
"RoleList": "Roles",
|
"RoleList": "Roles",
|
||||||
|
"RoleManage": "Manage role",
|
||||||
"RoleUpdate": "Update the role",
|
"RoleUpdate": "Update the role",
|
||||||
"UpgradeEnterpriseEditionHelpText": "Upgrade to enterprise edition to enjoy this feature",
|
|
||||||
"UpgradeEnterpriseEdition": "Upgrade to Enterprise Edition",
|
|
||||||
"RoleUsers": "Authorized users",
|
"RoleUsers": "Authorized users",
|
||||||
"Rows": "Row",
|
"Rows": "Row",
|
||||||
"Rule": "Condition",
|
"Rule": "Condition",
|
||||||
|
@ -1098,6 +1141,7 @@
|
||||||
"SaveSetting": "Synchronization settings",
|
"SaveSetting": "Synchronization settings",
|
||||||
"SaveSuccess": "Save successful",
|
"SaveSuccess": "Save successful",
|
||||||
"SaveSuccessContinueMsg": "Creation successful, you can continue to add content after updating.",
|
"SaveSuccessContinueMsg": "Creation successful, you can continue to add content after updating.",
|
||||||
|
"ScheduledTaskCount": "Scheduled Task Count",
|
||||||
"ScrollToBottom": "Scroll to the bottom",
|
"ScrollToBottom": "Scroll to the bottom",
|
||||||
"ScrollToTop": "Scroll to top",
|
"ScrollToTop": "Scroll to top",
|
||||||
"Search": "Search",
|
"Search": "Search",
|
||||||
|
@ -1105,6 +1149,7 @@
|
||||||
"Secret": "Password",
|
"Secret": "Password",
|
||||||
"SecretKey": "Key",
|
"SecretKey": "Key",
|
||||||
"SecretKeyStrategy": "Password policy",
|
"SecretKeyStrategy": "Password policy",
|
||||||
|
"SecretReset": "Secret reset",
|
||||||
"Secure": "Security",
|
"Secure": "Security",
|
||||||
"Security": "Security",
|
"Security": "Security",
|
||||||
"Select": "Select",
|
"Select": "Select",
|
||||||
|
@ -1117,6 +1162,7 @@
|
||||||
"SelectKeyOrCreateNew": "Select tag key or create new one",
|
"SelectKeyOrCreateNew": "Select tag key or create new one",
|
||||||
"SelectLabelFilter": "Select tag for search",
|
"SelectLabelFilter": "Select tag for search",
|
||||||
"SelectProperties": "Attributes",
|
"SelectProperties": "Attributes",
|
||||||
|
"SelectProtocol": "Select protocol",
|
||||||
"SelectProvider": "Select provider",
|
"SelectProvider": "Select provider",
|
||||||
"SelectProviderMsg": "Please select a cloud platform",
|
"SelectProviderMsg": "Please select a cloud platform",
|
||||||
"SelectResource": "Select resources",
|
"SelectResource": "Select resources",
|
||||||
|
@ -1130,6 +1176,7 @@
|
||||||
"SerialNumber": "Serial number",
|
"SerialNumber": "Serial number",
|
||||||
"Server": "Server",
|
"Server": "Server",
|
||||||
"ServerAccountKey": "Service account key",
|
"ServerAccountKey": "Service account key",
|
||||||
|
"ServerBusyRetry": "The server is busy, please try again later.",
|
||||||
"ServerError": "Server error",
|
"ServerError": "Server error",
|
||||||
"ServerTime": "Server time",
|
"ServerTime": "Server time",
|
||||||
"Session": "Session",
|
"Session": "Session",
|
||||||
|
@ -1209,7 +1256,9 @@
|
||||||
"Success": "Success",
|
"Success": "Success",
|
||||||
"Success/Total": "Success/Total",
|
"Success/Total": "Success/Total",
|
||||||
"SuccessAsset": "Successful assets",
|
"SuccessAsset": "Successful assets",
|
||||||
|
"SuccessCount": "Success Count",
|
||||||
"SuccessfulOperation": "Action successful",
|
"SuccessfulOperation": "Action successful",
|
||||||
|
"SudoChanged": "Sudo changed",
|
||||||
"Summary": "Summary",
|
"Summary": "Summary",
|
||||||
"Summary(success/total)": " overview( successful/total )",
|
"Summary(success/total)": " overview( successful/total )",
|
||||||
"Sunday": "Sun",
|
"Sunday": "Sun",
|
||||||
|
@ -1259,8 +1308,11 @@
|
||||||
"Target": "Target",
|
"Target": "Target",
|
||||||
"TargetResources": "Target resource",
|
"TargetResources": "Target resource",
|
||||||
"Task": "Task",
|
"Task": "Task",
|
||||||
|
"TaskCount": "Task Count",
|
||||||
"TaskDetail": "Task details",
|
"TaskDetail": "Task details",
|
||||||
|
"TaskDistribution": "Task distribution",
|
||||||
"TaskDone": "Task finished",
|
"TaskDone": "Task finished",
|
||||||
|
"TaskExecutionCount": "Task Execution Count",
|
||||||
"TaskID": "Task id",
|
"TaskID": "Task id",
|
||||||
"TaskList": "Tasks",
|
"TaskList": "Tasks",
|
||||||
"TaskMonitor": "Monitoring",
|
"TaskMonitor": "Monitoring",
|
||||||
|
@ -1331,6 +1383,7 @@
|
||||||
"UPPER_CASE_REQUIRED": "Must contain uppercase letters",
|
"UPPER_CASE_REQUIRED": "Must contain uppercase letters",
|
||||||
"UnFavoriteSucceed": "Unfavorite Successful",
|
"UnFavoriteSucceed": "Unfavorite Successful",
|
||||||
"UnSyncCount": "Not synced",
|
"UnSyncCount": "Not synced",
|
||||||
|
"UnavailableAccount": "Unavailable account",
|
||||||
"Unbind": "Unlink",
|
"Unbind": "Unlink",
|
||||||
"UnbindHelpText": "Local users are the source of this authentication and cannot be unbound",
|
"UnbindHelpText": "Local users are the source of this authentication and cannot be unbound",
|
||||||
"Unblock": "Unlock",
|
"Unblock": "Unlock",
|
||||||
|
@ -1340,6 +1393,7 @@
|
||||||
"Uninstall": "Uninstall",
|
"Uninstall": "Uninstall",
|
||||||
"UniqueError": "Only one of the following properties can be set",
|
"UniqueError": "Only one of the following properties can be set",
|
||||||
"UnlockSuccessMsg": "Unlock successful",
|
"UnlockSuccessMsg": "Unlock successful",
|
||||||
|
"UnmanagedAccount": "Unmanaged account",
|
||||||
"UnselectedOrg": "No organization selected",
|
"UnselectedOrg": "No organization selected",
|
||||||
"UnselectedUser": "No user selected",
|
"UnselectedUser": "No user selected",
|
||||||
"UpDownload": "Upload & download",
|
"UpDownload": "Upload & download",
|
||||||
|
@ -1357,6 +1411,8 @@
|
||||||
"UpdateSelected": "Update selected",
|
"UpdateSelected": "Update selected",
|
||||||
"UpdateSuccessMsg": "Successfully updated !",
|
"UpdateSuccessMsg": "Successfully updated !",
|
||||||
"Updated": "Updated",
|
"Updated": "Updated",
|
||||||
|
"UpgradeEnterpriseEdition": "Upgrade to Enterprise Edition",
|
||||||
|
"UpgradeEnterpriseEditionHelpText": "Upgrade to enterprise edition to enjoy this feature",
|
||||||
"Upload": "Upload",
|
"Upload": "Upload",
|
||||||
"UploadCsvLth10MHelpText": "Only csv/xlsx can be uploaded, and no more than 10m",
|
"UploadCsvLth10MHelpText": "Only csv/xlsx can be uploaded, and no more than 10m",
|
||||||
"UploadDir": "Upload path",
|
"UploadDir": "Upload path",
|
||||||
|
@ -1381,12 +1437,12 @@
|
||||||
"UserGroupUpdate": "Update the user group",
|
"UserGroupUpdate": "Update the user group",
|
||||||
"UserGroups": "Groups",
|
"UserGroups": "Groups",
|
||||||
"UserList": "Users",
|
"UserList": "Users",
|
||||||
|
"UserLogin": "User login",
|
||||||
"UserLoginACLHelpMsg": "When logging into the system, the user's login ip and time range can be audited to determine whether they are allowed to loginto the system (effective globally)",
|
"UserLoginACLHelpMsg": "When logging into the system, the user's login ip and time range can be audited to determine whether they are allowed to loginto the system (effective globally)",
|
||||||
"UserLoginACLHelpText": "When logging in, it can be audited based on the user's login ip and time segment to determine whether the user can login",
|
"UserLoginACLHelpText": "When logging in, it can be audited based on the user's login ip and time segment to determine whether the user can login",
|
||||||
"UserLoginAclCreate": "Create user login control",
|
"UserLoginAclCreate": "Create user login control",
|
||||||
"UserLoginAclDetail": "User login control details",
|
"UserLoginAclDetail": "User login control details",
|
||||||
"UserLoginAclList": "User login ACLs",
|
"UserLoginAclList": "User login ACLs",
|
||||||
"UserLogin": "User login",
|
|
||||||
"UserLoginAclUpdate": "Update the user login control",
|
"UserLoginAclUpdate": "Update the user login control",
|
||||||
"UserLoginLimit": "User restriction",
|
"UserLoginLimit": "User restriction",
|
||||||
"UserLoginTrend": "Account login trend",
|
"UserLoginTrend": "Account login trend",
|
||||||
|
@ -1407,6 +1463,8 @@
|
||||||
"VaultHCPMountPoint": "The mount point of the Vault server, default is jumpserver",
|
"VaultHCPMountPoint": "The mount point of the Vault server, default is jumpserver",
|
||||||
"VaultHelpText": "1. for security reasons, add the parameters VAULT_ENABLED=true and VAULT_BACKEND=hcp/azure/aws in the configuration file to enable Vault storage.<br>2. after enabled, fill in other configurations, and perform tests.<br>3. carry out data synchronization, which is one-way, only syncing from the local database to the distant vault, once synchronization is completed, the local database will no longer store passwords, please back up your data.<br>4. after modifying vault configuration the second time, you need to restart the service.",
|
"VaultHelpText": "1. for security reasons, add the parameters VAULT_ENABLED=true and VAULT_BACKEND=hcp/azure/aws in the configuration file to enable Vault storage.<br>2. after enabled, fill in other configurations, and perform tests.<br>3. carry out data synchronization, which is one-way, only syncing from the local database to the distant vault, once synchronization is completed, the local database will no longer store passwords, please back up your data.<br>4. after modifying vault configuration the second time, you need to restart the service.",
|
||||||
"VerificationCodeSent": "Verification code has been sent",
|
"VerificationCodeSent": "Verification code has been sent",
|
||||||
|
"VerifyFace": "Verify face",
|
||||||
|
"VerifySecret": "Verify secret",
|
||||||
"VerifySignTmpl": "Sms template",
|
"VerifySignTmpl": "Sms template",
|
||||||
"Version": "Version",
|
"Version": "Version",
|
||||||
"View": "View",
|
"View": "View",
|
||||||
|
@ -1426,6 +1484,7 @@
|
||||||
"WeCom": "WeCom",
|
"WeCom": "WeCom",
|
||||||
"WeComOAuth": "WeCom OAuth",
|
"WeComOAuth": "WeCom OAuth",
|
||||||
"WeComTest": "Test",
|
"WeComTest": "Test",
|
||||||
|
"WeakPassword": "Weak password",
|
||||||
"WebCreate": "Create asset - web",
|
"WebCreate": "Create asset - web",
|
||||||
"WebHelpMessage": "Web type assets depend on remote applications, please go to system settings and configure in remote applications",
|
"WebHelpMessage": "Web type assets depend on remote applications, please go to system settings and configure in remote applications",
|
||||||
"WebSocketDisconnect": "Websocket disconnected",
|
"WebSocketDisconnect": "Websocket disconnected",
|
||||||
|
@ -1452,66 +1511,6 @@
|
||||||
"disallowSelfUpdateFields": "Not allowed to modify the current fields yourself",
|
"disallowSelfUpdateFields": "Not allowed to modify the current fields yourself",
|
||||||
"forceEnableMFAHelpText": "If force enable, user can not disable by themselves",
|
"forceEnableMFAHelpText": "If force enable, user can not disable by themselves",
|
||||||
"removeWarningMsg": "Are you sure you want to remove",
|
"removeWarningMsg": "Are you sure you want to remove",
|
||||||
"Recent (7 days)": "Recent (7 days)",
|
|
||||||
"RecentlyDiscovered": "Recently discovered",
|
|
||||||
"RecentlyLoggedIn": "Recently logged in",
|
|
||||||
"RecentlyModified": "Recently modified",
|
|
||||||
"RecentlyChangedPassword": "Recently changed password",
|
|
||||||
"RecentPasswordChangeFailed": "Recent password change failed",
|
|
||||||
"RiskyAccount": "Risky account",
|
|
||||||
"UnmanagedAccount": "Unmanaged account",
|
|
||||||
"UnavailableAccount": "Unavailable account",
|
|
||||||
"EmptyPassword": "Empty password",
|
|
||||||
"LongTimeNoVerify": "Long time no verify",
|
|
||||||
"AccountType": "Account Type",
|
|
||||||
"AccountData": "Account data",
|
|
||||||
"AccountTotal": "Account total",
|
|
||||||
"AccountSummary": "Account summary",
|
|
||||||
"CopyToAsset": "Copy to asset",
|
|
||||||
"MoveToAsset": "Move to asset",
|
|
||||||
"Cloud": "Cloud",
|
|
||||||
"Device": "Device",
|
|
||||||
"NoLoginLongTime": "No login for long time",
|
|
||||||
"NewAccountsFound": "New accounts found",
|
|
||||||
"GroupChanged": "Group changed",
|
|
||||||
"SudoChanged": "Sudo changed",
|
|
||||||
"AuthorizedKeysChanged": "Authorized keys changed",
|
|
||||||
"AccountDeleted": "Account deleted",
|
|
||||||
"PasswordExpired": "Password expired",
|
|
||||||
"LongTimePassword": "Long time password",
|
|
||||||
"WeakPassword": "Weak password",
|
|
||||||
"LeakedPassword": "Leaked password",
|
|
||||||
"RepeatedPassword": "Repeated password",
|
|
||||||
"PasswordError": "Password error",
|
|
||||||
"NoAdminAccount": "No admin account",
|
|
||||||
"ProportionOfAccountTypes": "Account type proportion",
|
|
||||||
"CurrentStatus": "Current Status",
|
|
||||||
"ChangeSecretTaskStatus": "Secret Change Task Status",
|
|
||||||
"TaskCount": "Task Count",
|
|
||||||
"ScheduledTaskCount": "Scheduled Task Count",
|
|
||||||
"TaskExecutionCount": "Task Execution Count",
|
|
||||||
"SuccessCount": "Success Count",
|
|
||||||
"FailCount": "Failure Count",
|
|
||||||
"ChangeSecretFailAccounts": "Secret Change Failed Accounts",
|
|
||||||
"OngoingPwdChange": "Ongoing Secret Change",
|
|
||||||
"AccountResult": "Account secret change success/failure",
|
|
||||||
"ResetSecret": "Secret can be changed",
|
|
||||||
"Connectable": "Connectable",
|
|
||||||
"ExecutionRecord": "Execution records",
|
|
||||||
"ExecutionSummary": "Execution summary",
|
"ExecutionSummary": "Execution summary",
|
||||||
"Documentation": "Documentation",
|
"setVariable": "Set variable"
|
||||||
"setVariable": "Set variable",
|
|
||||||
"VerifyFace": "Verify face",
|
|
||||||
"ServerBusyRetry": "The server is busy, please try again later.",
|
|
||||||
"DeeplyThoughtAbout": "Deeply thought about",
|
|
||||||
"TaskDistribution": "Task distribution",
|
|
||||||
"SecretReset": "Secret reset",
|
|
||||||
"EditSecret": "Edit secret",
|
|
||||||
"VerifySecret": "Verify secret",
|
|
||||||
"SelectProtocol": "Select protocol",
|
|
||||||
"Report": "Report",
|
|
||||||
"Record": "Record",
|
|
||||||
"FoundAccountInAssetDeleteMsg": "Delete the found items from the system assets",
|
|
||||||
"RemoteAssetFoundAccountDeleteMsg": "Delete the found remote assets",
|
|
||||||
"PushAccountHelpText": "If the account already exists, the ciphertext of the account will be used for push; if the account does not exist, the account will be created according to the filled-in ciphertext and then pushed."
|
|
||||||
}
|
}
|
|
@ -15,7 +15,6 @@
|
||||||
"AccountBackupDetail": "アカウントバックアップの詳細",
|
"AccountBackupDetail": "アカウントバックアップの詳細",
|
||||||
"AccountBackupList": "アカウントバックアップリスト",
|
"AccountBackupList": "アカウントバックアップリスト",
|
||||||
"AccountBackupUpdate": "アカウントバックアップの更新",
|
"AccountBackupUpdate": "アカウントバックアップの更新",
|
||||||
"AccountChangeSecret": "アカウントパスワード変更",
|
|
||||||
"AccountChangeSecretDetail": "アカウントのパスワード変更詳細",
|
"AccountChangeSecretDetail": "アカウントのパスワード変更詳細",
|
||||||
"AccountData": "アカウントデータ",
|
"AccountData": "アカウントデータ",
|
||||||
"AccountDeleteConfirmMsg": "アカウントを削除しますか?続行しますか?",
|
"AccountDeleteConfirmMsg": "アカウントを削除しますか?続行しますか?",
|
||||||
|
@ -24,7 +23,6 @@
|
||||||
"AccountDiscoverList": "アカウントの収集",
|
"AccountDiscoverList": "アカウントの収集",
|
||||||
"AccountDiscoverTask": "アカウントを発見",
|
"AccountDiscoverTask": "アカウントを発見",
|
||||||
"AccountDiscoverTaskCreate": "アカウント収集タスクの作成",
|
"AccountDiscoverTaskCreate": "アカウント収集タスクの作成",
|
||||||
"AccountDiscoverTaskList": "アカウント収集タスク",
|
|
||||||
"AccountDiscoverTaskUpdate": "アカウント収集タスクを更新",
|
"AccountDiscoverTaskUpdate": "アカウント収集タスクを更新",
|
||||||
"AccountExportTips": "エクスポートする情報には口座の暗号文が含まれ、これは機密情報に関連しています。エクスポートする形式は、暗号化されたzipファイルです(暗号化パスワードを設定していない場合は、個人情報でファイルの暗号化パスワードを設定してください)。",
|
"AccountExportTips": "エクスポートする情報には口座の暗号文が含まれ、これは機密情報に関連しています。エクスポートする形式は、暗号化されたzipファイルです(暗号化パスワードを設定していない場合は、個人情報でファイルの暗号化パスワードを設定してください)。",
|
||||||
"AccountList": "クラウドアカウント",
|
"AccountList": "クラウドアカウント",
|
||||||
|
@ -197,7 +195,6 @@
|
||||||
"BaseAccountBackup": "アカウントバックアップ",
|
"BaseAccountBackup": "アカウントバックアップ",
|
||||||
"BaseAccountChangeSecret": "アカウントのパスワード変更",
|
"BaseAccountChangeSecret": "アカウントのパスワード変更",
|
||||||
"BaseAccountDiscover": "アカウント収集",
|
"BaseAccountDiscover": "アカウント収集",
|
||||||
"BaseAccountGather": "アカウント収集",
|
|
||||||
"BaseAccountPush": "アカウントプッシュ",
|
"BaseAccountPush": "アカウントプッシュ",
|
||||||
"BaseAccountTemplate": "アカウントテンプレート",
|
"BaseAccountTemplate": "アカウントテンプレート",
|
||||||
"BaseApplets": "アプリケーション",
|
"BaseApplets": "アプリケーション",
|
||||||
|
@ -226,24 +223,12 @@
|
||||||
"BaseUserLoginAclList": "ユーザーログイン",
|
"BaseUserLoginAclList": "ユーザーログイン",
|
||||||
"Basic": "基本設定",
|
"Basic": "基本設定",
|
||||||
"BasicInfo": "基本情報",
|
"BasicInfo": "基本情報",
|
||||||
"BasicSetting": "基本設定",
|
|
||||||
"BasicSettings": "基本設定",
|
"BasicSettings": "基本設定",
|
||||||
"BasicTools": "基本的なツール",
|
|
||||||
"BatchActivate": "一括アクティブ化",
|
|
||||||
"BatchApproval": "大量承認です",
|
|
||||||
"BatchCommand": "一括コマンド",
|
|
||||||
"BatchCommandNotExecuted": "未実行コマンド",
|
|
||||||
"BatchConsent": "一括同意",
|
"BatchConsent": "一括同意",
|
||||||
"BatchDelete": "一括削除",
|
|
||||||
"BatchDeployment": "一括デプロイ",
|
"BatchDeployment": "一括デプロイ",
|
||||||
"BatchDisable": "一括無効化",
|
|
||||||
"BatchProcessing": "バルク処理({number} アイテムが選択されています)",
|
"BatchProcessing": "バルク処理({number} アイテムが選択されています)",
|
||||||
"BatchReject": "一括拒否",
|
"BatchReject": "一括拒否",
|
||||||
"BatchRemoval": "一括除去",
|
|
||||||
"BatchRetry": "一括リトライ",
|
|
||||||
"BatchScript": "バッチ スクリプト",
|
|
||||||
"BatchTest": "一括テスト",
|
"BatchTest": "一括テスト",
|
||||||
"BatchUpdate": "ロット更新",
|
|
||||||
"BeforeChange": "変更前",
|
"BeforeChange": "変更前",
|
||||||
"Beian": "登記",
|
"Beian": "登記",
|
||||||
"BelongAll": "同時に含む",
|
"BelongAll": "同時に含む",
|
||||||
|
@ -265,7 +250,6 @@
|
||||||
"CACertificate": "CA 証明書",
|
"CACertificate": "CA 証明書",
|
||||||
"CAS": "CAS",
|
"CAS": "CAS",
|
||||||
"CMPP2": "CMPP v2.0",
|
"CMPP2": "CMPP v2.0",
|
||||||
"CTYunPrivate": "天翼プライベートクラウド",
|
|
||||||
"CalculationResults": "cron 式のエラー",
|
"CalculationResults": "cron 式のエラー",
|
||||||
"CallRecords": "つうわきろく",
|
"CallRecords": "つうわきろく",
|
||||||
"CanDragSelect": "マウスドラッグで時間帯を選択可能;未選択は全選択と同じです",
|
"CanDragSelect": "マウスドラッグで時間帯を選択可能;未選択は全選択と同じです",
|
||||||
|
@ -282,7 +266,6 @@
|
||||||
"ChangeField": "フィールドの変更",
|
"ChangeField": "フィールドの変更",
|
||||||
"ChangeOrganization": "組織の 변경",
|
"ChangeOrganization": "組織の 변경",
|
||||||
"ChangePassword": "パスワード更新",
|
"ChangePassword": "パスワード更新",
|
||||||
"ChangeReceiver": "メッセージ受信者の変更",
|
|
||||||
"ChangeSecret": "アカウントパスワード変更",
|
"ChangeSecret": "アカウントパスワード変更",
|
||||||
"ChangeSecretAccountHelpText": "同じ資産内のアカウントに切り替え元関係がある場合、パスワード変更は同じタスクで実行せず、2 つのタスクに分割して別々に実行する必要があります。",
|
"ChangeSecretAccountHelpText": "同じ資産内のアカウントに切り替え元関係がある場合、パスワード変更は同じタスクで実行せず、2 つのタスクに分割して別々に実行する必要があります。",
|
||||||
"ChangeSecretParams": "パスワード変更パラメータ",
|
"ChangeSecretParams": "パスワード変更パラメータ",
|
||||||
|
@ -303,7 +286,6 @@
|
||||||
"ClearSuccessMsg": "クリアに成功",
|
"ClearSuccessMsg": "クリアに成功",
|
||||||
"ClickCopy": "クリックでコピー",
|
"ClickCopy": "クリックでコピー",
|
||||||
"ClientCertificate": "クライアント証明書",
|
"ClientCertificate": "クライアント証明書",
|
||||||
"Clipboard": "クリップボード",
|
|
||||||
"ClipboardCopyPaste": "クリップボードのコピーペースト",
|
"ClipboardCopyPaste": "クリップボードのコピーペースト",
|
||||||
"Clone": "クローン",
|
"Clone": "クローン",
|
||||||
"Close": "閉じる",
|
"Close": "閉じる",
|
||||||
|
@ -322,7 +304,6 @@
|
||||||
"CloudSync": "クラウド同期",
|
"CloudSync": "クラウド同期",
|
||||||
"CloudSyncConfig": "クラウド同期構成",
|
"CloudSyncConfig": "クラウド同期構成",
|
||||||
"CloudUpdate": "資産の更新-クラウドプラットフォーム",
|
"CloudUpdate": "資産の更新-クラウドプラットフォーム",
|
||||||
"Clouds": "クラウド プラットフォーム",
|
|
||||||
"Cluster": "クラスター",
|
"Cluster": "クラスター",
|
||||||
"CollectionSucceed": "お気に入り登録成功",
|
"CollectionSucceed": "お気に入り登録成功",
|
||||||
"Command": "コマンド",
|
"Command": "コマンド",
|
||||||
|
@ -485,7 +466,6 @@
|
||||||
"Docs": "文書",
|
"Docs": "文書",
|
||||||
"Download": "ダウンロード",
|
"Download": "ダウンロード",
|
||||||
"DownloadCenter": "ダウンロードセンター",
|
"DownloadCenter": "ダウンロードセンター",
|
||||||
"DownloadFTPFileTip": "現在のActionはファイルを記録せず、またはファイルのサイズが閾値(デフォルト100M)を超えている、またはまだ対応するストレージに保存されていません。",
|
|
||||||
"DownloadImportTemplateMsg": "テンプレートをダウンロードで作成",
|
"DownloadImportTemplateMsg": "テンプレートをダウンロードで作成",
|
||||||
"DownloadReplay": "ビデオのダウンロード",
|
"DownloadReplay": "ビデオのダウンロード",
|
||||||
"DownloadUpdateTemplateMsg": "更新テンプレートをダウンロード",
|
"DownloadUpdateTemplateMsg": "更新テンプレートをダウンロード",
|
||||||
|
@ -536,7 +516,6 @@
|
||||||
"ExcludeSymbol": "文字の除外",
|
"ExcludeSymbol": "文字の除外",
|
||||||
"ExecCloudSyncErrorMsg": "クラウドアカウントの設定が完全でないので、更新して再試行してください",
|
"ExecCloudSyncErrorMsg": "クラウドアカウントの設定が完全でないので、更新して再試行してください",
|
||||||
"Execute": "実行",
|
"Execute": "実行",
|
||||||
"ExecuteAfterSaving": "保存後に実行",
|
|
||||||
"ExecuteOnce": "一度実行する",
|
"ExecuteOnce": "一度実行する",
|
||||||
"ExecutionDetail": "Action詳細",
|
"ExecutionDetail": "Action詳細",
|
||||||
"ExecutionList": "実行記録",
|
"ExecutionList": "実行記録",
|
||||||
|
@ -600,15 +579,12 @@
|
||||||
"GatewayList": "ゲートウェイリスト",
|
"GatewayList": "ゲートウェイリスト",
|
||||||
"GatewayPlatformHelpText": "ゲートウェイプラットフォームは、Gatewayで始まるプラットフォームのみ選択可能です。",
|
"GatewayPlatformHelpText": "ゲートウェイプラットフォームは、Gatewayで始まるプラットフォームのみ選択可能です。",
|
||||||
"GatewayUpdate": "ゲートウェイの更新",
|
"GatewayUpdate": "ゲートウェイの更新",
|
||||||
"GatherAccountsHelpText": "資産上のアカウント情報を収集します。収集したアカウント情報はシステムにインポートでき、統一的に管理するのが便利です",
|
|
||||||
"GatheredAccountList": "収集したアカウント",
|
|
||||||
"General": "基本",
|
"General": "基本",
|
||||||
"GeneralAccounts": "一般アカウント",
|
"GeneralAccounts": "一般アカウント",
|
||||||
"GeneralSetting": "汎用設定",
|
"GeneralSetting": "汎用設定",
|
||||||
"Generate": "生成",
|
"Generate": "生成",
|
||||||
"GenerateAccounts": "アカウント再生成",
|
"GenerateAccounts": "アカウント再生成",
|
||||||
"GenerateSuccessMsg": "アカウント作成成功",
|
"GenerateSuccessMsg": "アカウント作成成功",
|
||||||
"GenericSetting": "汎用設定",
|
|
||||||
"GoHomePage": "ホームページへ行く",
|
"GoHomePage": "ホームページへ行く",
|
||||||
"Goto": "へ移動",
|
"Goto": "へ移動",
|
||||||
"GrantedAssets": "資産の承認",
|
"GrantedAssets": "資産の承認",
|
||||||
|
@ -622,8 +598,6 @@
|
||||||
"HasImportErrorItemMsg": "インポートに失敗した項目があります、左側の x をクリックして失敗原因を確認し、テーブルを編集した後、失敗した項目を再度インポートできます",
|
"HasImportErrorItemMsg": "インポートに失敗した項目があります、左側の x をクリックして失敗原因を確認し、テーブルを編集した後、失敗した項目を再度インポートできます",
|
||||||
"HashicorpVault": "HCP vault",
|
"HashicorpVault": "HCP vault",
|
||||||
"Help": "ヘルプ",
|
"Help": "ヘルプ",
|
||||||
"HelpDocumentTip": "ウェブサイトのナビゲーションバーのURLを変更できます ヘルプ -> ドキュメント",
|
|
||||||
"HelpSupportTip": "ウェブサイトのナビゲーションバーのURLを変更できます。ヘルプ->サポート",
|
|
||||||
"HighLoad": "高い",
|
"HighLoad": "高い",
|
||||||
"HistoricalSessionNum": "歴史的なセッション数",
|
"HistoricalSessionNum": "歴史的なセッション数",
|
||||||
"History": "履歴記録",
|
"History": "履歴記録",
|
||||||
|
@ -633,7 +607,6 @@
|
||||||
"Host": "資産",
|
"Host": "資産",
|
||||||
"HostCreate": "資産-ホストの作成",
|
"HostCreate": "資産-ホストの作成",
|
||||||
"HostDeployment": "リリースマシンのデプロイ",
|
"HostDeployment": "リリースマシンのデプロイ",
|
||||||
"HostList": "ホストリスト",
|
|
||||||
"HostUpdate": "資産-ホストの更新",
|
"HostUpdate": "資産-ホストの更新",
|
||||||
"HostnameStrategy": "資産ホスト名の生成に使用します。例:1. インスタンス名 (instanceDemo); 2. インスタンス名と部分IP(後ろ2桁) (instanceDemo-250.1)",
|
"HostnameStrategy": "資産ホスト名の生成に使用します。例:1. インスタンス名 (instanceDemo); 2. インスタンス名と部分IP(後ろ2桁) (instanceDemo-250.1)",
|
||||||
"Hour": "時間",
|
"Hour": "時間",
|
||||||
|
@ -687,11 +660,6 @@
|
||||||
"InviteSuccess": "招待が成功しました。",
|
"InviteSuccess": "招待が成功しました。",
|
||||||
"InviteUser": "ユーザーを招待",
|
"InviteUser": "ユーザーを招待",
|
||||||
"InviteUserInOrg": "ユーザーをこの組織に招待する",
|
"InviteUserInOrg": "ユーザーをこの組織に招待する",
|
||||||
"Ip": "IP",
|
|
||||||
"IpDomain": "IP ドメイン",
|
|
||||||
"IpGroup": "IPグループ",
|
|
||||||
"IpGroupHelpText": "*はすべてに一致します。例えば: 192.168.10.1, 192.168.1.0/24, 10.1.1.1-10.1.1.20, 2001:db8:2de::e13, 2001:db8:1a:1110::/64",
|
|
||||||
"IpType": "IP タイプ",
|
|
||||||
"IsActive": "Activate",
|
"IsActive": "Activate",
|
||||||
"IsAlwaysUpdate": "最新の資産を保持",
|
"IsAlwaysUpdate": "最新の資産を保持",
|
||||||
"IsAlwaysUpdateHelpTip": "同期タスクを実行するたびに、資産情報(ホスト名、ip、プラットフォーム、ドメイン、ノードなど)を同期更新するかどうか",
|
"IsAlwaysUpdateHelpTip": "同期タスクを実行するたびに、資産情報(ホスト名、ip、プラットフォーム、ドメイン、ノードなど)を同期更新するかどうか",
|
||||||
|
@ -715,11 +683,6 @@
|
||||||
"LAN": "LAN",
|
"LAN": "LAN",
|
||||||
"LDAPUser": "LDAP ユーザー",
|
"LDAPUser": "LDAP ユーザー",
|
||||||
"LOWER_CASE_REQUIRED": "小文字を含む必要があります",
|
"LOWER_CASE_REQUIRED": "小文字を含む必要があります",
|
||||||
"Label": "タグ",
|
|
||||||
"LabelCreate": "タグを作成",
|
|
||||||
"LabelInputFormatValidation": "タグの形式が間違っています。正しい形式は:name:valueです。",
|
|
||||||
"LabelList": "タグリスト",
|
|
||||||
"LabelUpdate": "タグを更新",
|
|
||||||
"Language": "言語",
|
"Language": "言語",
|
||||||
"LarkOAuth": "Lark 認証",
|
"LarkOAuth": "Lark 認証",
|
||||||
"Last30": "最近30回",
|
"Last30": "最近30回",
|
||||||
|
@ -807,7 +770,6 @@
|
||||||
"MessageType": "メッセージタイプ",
|
"MessageType": "メッセージタイプ",
|
||||||
"MfaLevel": "マルチファクター認証",
|
"MfaLevel": "マルチファクター認証",
|
||||||
"Min": "分",
|
"Min": "分",
|
||||||
"MinLengthError": "パスワードは少なくとも {0} 文字必要です",
|
|
||||||
"MinNumber30": "数字は30以上でなければならない",
|
"MinNumber30": "数字は30以上でなければならない",
|
||||||
"Modify": "修正",
|
"Modify": "修正",
|
||||||
"Module": "モジュール",
|
"Module": "モジュール",
|
||||||
|
@ -851,13 +813,8 @@
|
||||||
"NoPermission403": "403 権限がありません",
|
"NoPermission403": "403 権限がありません",
|
||||||
"NoPermissionInGlobal": "全体的に権限がありません",
|
"NoPermissionInGlobal": "全体的に権限がありません",
|
||||||
"NoPermissionVew": "現在のページを表示する権限がありません",
|
"NoPermissionVew": "現在のページを表示する権限がありません",
|
||||||
"NoPublished": "未発表",
|
|
||||||
"NoResourceImport": "インポートできるリソースがありません",
|
|
||||||
"NoSQLProtocol": "非リレーショナルデータベース",
|
|
||||||
"NoSystemUserWasSelected": "選択されていないシステムユーザー",
|
|
||||||
"NoUnreadMsg": "未読メッセージなし",
|
"NoUnreadMsg": "未読メッセージなし",
|
||||||
"Node": "ノード",
|
"Node": "ノード",
|
||||||
"NodeAmount": "ノード数",
|
|
||||||
"NodeInformation": "ノード情報",
|
"NodeInformation": "ノード情報",
|
||||||
"NodeOfNumber": "ノード数",
|
"NodeOfNumber": "ノード数",
|
||||||
"NodeSearchStrategy": "ノード検索戦略",
|
"NodeSearchStrategy": "ノード検索戦略",
|
||||||
|
@ -943,7 +900,6 @@
|
||||||
"Pause": "停止",
|
"Pause": "停止",
|
||||||
"PauseTaskSendSuccessMsg": "停止タスクが発行されていますので、しばらくしてから再度更新してください。",
|
"PauseTaskSendSuccessMsg": "停止タスクが発行されていますので、しばらくしてから再度更新してください。",
|
||||||
"Pending": "未処理",
|
"Pending": "未処理",
|
||||||
"Periodic": "定期的にAction ",
|
|
||||||
"PermAccount": "認証済みアカウント",
|
"PermAccount": "認証済みアカウント",
|
||||||
"PermAction": "Actionを承認する",
|
"PermAction": "Actionを承認する",
|
||||||
"PermUserList": "ユーザーへの承認",
|
"PermUserList": "ユーザーへの承認",
|
||||||
|
@ -972,11 +928,8 @@
|
||||||
"Preferences": "好みの設定",
|
"Preferences": "好みの設定",
|
||||||
"PrepareSyncTask": "同期タスクの実行準備中...",
|
"PrepareSyncTask": "同期タスクの実行準備中...",
|
||||||
"Primary": "主な",
|
"Primary": "主な",
|
||||||
"PrimaryProtocol": "主要協議は、資産にとって最も基本的で最も一般的に使用されるプロトコルであり、1つのみ設定でき、必ず設定する必要があります",
|
|
||||||
"Priority": "優先順位",
|
"Priority": "優先順位",
|
||||||
"PriorityHelpMessage": "1-100、1最低優先度、100最高優先度。複数のユーザーを許可する場合、優先度の高いシステムユーザーはデフォルトのログインユーザーになります",
|
|
||||||
"PrivateCloud": "プライベートクラウド",
|
"PrivateCloud": "プライベートクラウド",
|
||||||
"PrivateIp": "プライベート IP",
|
|
||||||
"PrivateKey": "秘密鍵",
|
"PrivateKey": "秘密鍵",
|
||||||
"Privileged": "特権アカウント",
|
"Privileged": "特権アカウント",
|
||||||
"PrivilegedFirst": "優先的な特権アカウント",
|
"PrivilegedFirst": "優先的な特権アカウント",
|
||||||
|
@ -994,7 +947,6 @@
|
||||||
"Provider": "供給業者",
|
"Provider": "供給業者",
|
||||||
"Proxy": "代理",
|
"Proxy": "代理",
|
||||||
"PublicCloud": "パブリッククラウド",
|
"PublicCloud": "パブリッククラウド",
|
||||||
"PublicIp": "パブリック IP",
|
|
||||||
"PublicKey": "公開鍵",
|
"PublicKey": "公開鍵",
|
||||||
"Publish": "公開",
|
"Publish": "公開",
|
||||||
"PublishAllApplets": "すべてのアプリを公開",
|
"PublishAllApplets": "すべてのアプリを公開",
|
||||||
|
@ -1170,7 +1122,6 @@
|
||||||
"SelectAtLeastOneAssetOrNodeErrMsg": "アセットまたはノードは少なくとも一つ選択してください",
|
"SelectAtLeastOneAssetOrNodeErrMsg": "アセットまたはノードは少なくとも一つ選択してください",
|
||||||
"SelectAttrs": "属性の選択",
|
"SelectAttrs": "属性の選択",
|
||||||
"SelectByAttr": "プロパティフィルタ",
|
"SelectByAttr": "プロパティフィルタ",
|
||||||
"SelectCreateMethod": "作り方を選ぶ",
|
|
||||||
"SelectFile": "ファイル選択",
|
"SelectFile": "ファイル選択",
|
||||||
"SelectKeyOrCreateNew": "タグキーを選択するか、新しいものを作成します",
|
"SelectKeyOrCreateNew": "タグキーを選択するか、新しいものを作成します",
|
||||||
"SelectLabelFilter": "タグを選択して検索",
|
"SelectLabelFilter": "タグを選択して検索",
|
||||||
|
@ -1279,11 +1230,6 @@
|
||||||
"Support": "サポート",
|
"Support": "サポート",
|
||||||
"SupportedProtocol": "サポートされているプロトコル",
|
"SupportedProtocol": "サポートされているプロトコル",
|
||||||
"SupportedProtocolHelpText": "資産がサポートするプロトコルを設定します。設定ボタンをクリックして、プロトコルのカスタム設定を変更することができます。例えば、SFTPディレクトリやRDP ADドメインなど",
|
"SupportedProtocolHelpText": "資産がサポートするプロトコルを設定します。設定ボタンをクリックして、プロトコルのカスタム設定を変更することができます。例えば、SFTPディレクトリやRDP ADドメインなど",
|
||||||
"SwitchPage": "ビューを切り替える",
|
|
||||||
"SwitchToUser": "Suユーザー",
|
|
||||||
"SwitchToUserListTips": "次のユーザーからアセットに接続すると、現在のシステムユーザーログインを使用して切り替えます。",
|
|
||||||
"SymbolSet": "特殊記号集合",
|
|
||||||
"SymbolSetHelpText": "このタイプのデータベースでサポートされている特殊記号の集合を入力してください。生成されたランダムパスワードにこのようなデータベースでサポートされていない特殊文字があると、変更計画は失敗します",
|
|
||||||
"Sync": "同期する",
|
"Sync": "同期する",
|
||||||
"SyncAction": "同期アクション",
|
"SyncAction": "同期アクション",
|
||||||
"SyncDelete": "同期削除",
|
"SyncDelete": "同期削除",
|
||||||
|
@ -1316,7 +1262,6 @@
|
||||||
"SystemTasks": "タスクリスト",
|
"SystemTasks": "タスクリスト",
|
||||||
"SystemTools": "システムツール",
|
"SystemTools": "システムツール",
|
||||||
"TableColSetting": "表示属性列の選択",
|
"TableColSetting": "表示属性列の選択",
|
||||||
"TableSetting": "フォームの優先設定",
|
|
||||||
"TagCreate": "ラベルの作成",
|
"TagCreate": "ラベルの作成",
|
||||||
"TagInputFormatValidation": "ラベルの形式が間違っています、正しい形式は:name:value",
|
"TagInputFormatValidation": "ラベルの形式が間違っています、正しい形式は:name:value",
|
||||||
"TagList": "タグ一覧",
|
"TagList": "タグ一覧",
|
||||||
|
@ -1388,7 +1333,6 @@
|
||||||
"TotalSyncStrategy": "バインドポリシー数(個)",
|
"TotalSyncStrategy": "バインドポリシー数(個)",
|
||||||
"Transfer": "転送",
|
"Transfer": "転送",
|
||||||
"TriggerMode": "トリガーメソッド",
|
"TriggerMode": "トリガーメソッド",
|
||||||
"True": "はい",
|
|
||||||
"Tuesday": "火曜日",
|
"Tuesday": "火曜日",
|
||||||
"TwoAssignee": "二次受理者",
|
"TwoAssignee": "二次受理者",
|
||||||
"TwoAssigneeType": "二次受信者タイプ",
|
"TwoAssigneeType": "二次受信者タイプ",
|
||||||
|
|
|
@ -14,18 +14,12 @@
|
||||||
"AccountBackupDetail": "Detalhes do backup da conta",
|
"AccountBackupDetail": "Detalhes do backup da conta",
|
||||||
"AccountBackupList": "Lista de Backup de Contas",
|
"AccountBackupList": "Lista de Backup de Contas",
|
||||||
"AccountBackupUpdate": "Atualizar backup da conta",
|
"AccountBackupUpdate": "Atualizar backup da conta",
|
||||||
"AccountChangeSecret": "Alteração de Senha da Conta",
|
|
||||||
"AccountChangeSecretDetail": "Detalhes da alteração de senha da conta",
|
"AccountChangeSecretDetail": "Detalhes da alteração de senha da conta",
|
||||||
"AccountData": " Dados da conta ",
|
"AccountData": " Dados da conta ",
|
||||||
"AccountDeleteConfirmMsg": "Excluir conta, continuar?",
|
"AccountDeleteConfirmMsg": "Excluir conta, continuar?",
|
||||||
"AccountDeleted": " Exclusão de conta ",
|
"AccountDeleted": " Exclusão de conta ",
|
||||||
"AccountDiscoverTask": " Descoberta de conta ",
|
"AccountDiscoverTask": " Descoberta de conta ",
|
||||||
"AccountExportTips": " As informações de exportação incluem texto cifrado de conta que contém informações sensíveis, o formato de exportação é um arquivo zip criptografado (se nenhuma senha de criptografia foi definida, vá para as informações pessoais para definir uma senha de criptografia de arquivo). ",
|
"AccountExportTips": " As informações de exportação incluem texto cifrado de conta que contém informações sensíveis, o formato de exportação é um arquivo zip criptografado (se nenhuma senha de criptografia foi definida, vá para as informações pessoais para definir uma senha de criptografia de arquivo). ",
|
||||||
"AccountGatherDetail": "Detalhes de coleta de conta",
|
|
||||||
"AccountGatherList": "Coleta de conta",
|
|
||||||
"AccountGatherTaskCreate": "Criar tarefa de coleta de conta",
|
|
||||||
"AccountGatherTaskList": "Tarefa de coleta de conta",
|
|
||||||
"AccountGatherTaskUpdate": "Atualizar tarefas de coleta de contas",
|
|
||||||
"AccountList": "Conta",
|
"AccountList": "Conta",
|
||||||
"AccountPolicy": "Política de contas",
|
"AccountPolicy": "Política de contas",
|
||||||
"AccountPolicyHelpText": "Ao criar uma conta que não atende aos requisitos, como: tipo de chave não conformidade, restrição de chave única, você pode escolher a política acima.",
|
"AccountPolicyHelpText": "Ao criar uma conta que não atende aos requisitos, como: tipo de chave não conformidade, restrição de chave única, você pode escolher a política acima.",
|
||||||
|
@ -195,7 +189,6 @@
|
||||||
"BaseAccount": "Conta",
|
"BaseAccount": "Conta",
|
||||||
"BaseAccountBackup": "Backup de Conta",
|
"BaseAccountBackup": "Backup de Conta",
|
||||||
"BaseAccountChangeSecret": "Alteração de Senha da Conta",
|
"BaseAccountChangeSecret": "Alteração de Senha da Conta",
|
||||||
"BaseAccountGather": "Coleta de Contas",
|
|
||||||
"BaseAccountPush": "Impulsionar conta",
|
"BaseAccountPush": "Impulsionar conta",
|
||||||
"BaseAccountTemplate": "Modelo de conta",
|
"BaseAccountTemplate": "Modelo de conta",
|
||||||
"BaseApplets": "Aplicação",
|
"BaseApplets": "Aplicação",
|
||||||
|
@ -286,7 +279,6 @@
|
||||||
"ClearSuccessMsg": "Limpeza bem-sucedida",
|
"ClearSuccessMsg": "Limpeza bem-sucedida",
|
||||||
"ClickCopy": "Clicar para copiar",
|
"ClickCopy": "Clicar para copiar",
|
||||||
"ClientCertificate": "Certificado do cliente",
|
"ClientCertificate": "Certificado do cliente",
|
||||||
"Clipboard": "Prancheta",
|
|
||||||
"ClipboardCopyPaste": "Copiar e colar da área de transferência",
|
"ClipboardCopyPaste": "Copiar e colar da área de transferência",
|
||||||
"Clone": "Clonar",
|
"Clone": "Clonar",
|
||||||
"Close": "Desativar",
|
"Close": "Desativar",
|
||||||
|
@ -465,7 +457,6 @@
|
||||||
"Docs": "Documento",
|
"Docs": "Documento",
|
||||||
"Download": "Baixar",
|
"Download": "Baixar",
|
||||||
"DownloadCenter": "Centro de Download",
|
"DownloadCenter": "Centro de Download",
|
||||||
"DownloadFTPFileTip": "A Atual Action não registra arquivos, ou se o tamanho do arquivo excede o limite (padrão 100M), ou ainda não foi salvo no armazenamento correspondente",
|
|
||||||
"DownloadImportTemplateMsg": "Baixar Modelo Criado",
|
"DownloadImportTemplateMsg": "Baixar Modelo Criado",
|
||||||
"DownloadReplay": " Baixar vídeo",
|
"DownloadReplay": " Baixar vídeo",
|
||||||
"DownloadUpdateTemplateMsg": "Baixar modelo atualizado",
|
"DownloadUpdateTemplateMsg": "Baixar modelo atualizado",
|
||||||
|
@ -516,7 +507,6 @@
|
||||||
"ExcludeSymbol": " Excluir caracteres",
|
"ExcludeSymbol": " Excluir caracteres",
|
||||||
"ExecCloudSyncErrorMsg": "A configuração da conta em nuvem não está completa, atualize e tente novamente",
|
"ExecCloudSyncErrorMsg": "A configuração da conta em nuvem não está completa, atualize e tente novamente",
|
||||||
"Execute": "Action",
|
"Execute": "Action",
|
||||||
"ExecuteAfterSaving": "Executar após salvar",
|
|
||||||
"ExecuteOnce": "Executar uma vez",
|
"ExecuteOnce": "Executar uma vez",
|
||||||
"ExecutionDetail": "Detalhes da Execução",
|
"ExecutionDetail": "Detalhes da Execução",
|
||||||
"ExecutionList": "Registro de Ação",
|
"ExecutionList": "Registro de Ação",
|
||||||
|
@ -580,8 +570,6 @@
|
||||||
"GatewayList": "Lista de Gateways",
|
"GatewayList": "Lista de Gateways",
|
||||||
"GatewayPlatformHelpText": "Somente uma plataforma que começa com Gateway pode ser selecionada para a plataforma de Gateway",
|
"GatewayPlatformHelpText": "Somente uma plataforma que começa com Gateway pode ser selecionada para a plataforma de Gateway",
|
||||||
"GatewayUpdate": "Atualizar Gateway",
|
"GatewayUpdate": "Atualizar Gateway",
|
||||||
"GatherAccountsHelpText": "Coletar informações da conta no ativo. As informações da conta coletada podem ser importadas para o sistema para facilitar a gestão unificada",
|
|
||||||
"GatheredAccountList": "Contas coletadas",
|
|
||||||
"General": "Básico",
|
"General": "Básico",
|
||||||
"GeneralAccounts": "Conta comum",
|
"GeneralAccounts": "Conta comum",
|
||||||
"GeneralSetting": "Configuração geral",
|
"GeneralSetting": "Configuração geral",
|
||||||
|
@ -610,7 +598,6 @@
|
||||||
"Host": "Ativos",
|
"Host": "Ativos",
|
||||||
"HostCreate": "Criar Ativo - Host",
|
"HostCreate": "Criar Ativo - Host",
|
||||||
"HostDeployment": "Deploy da máquina de produção",
|
"HostDeployment": "Deploy da máquina de produção",
|
||||||
"HostList": "Lista de hosts",
|
|
||||||
"HostUpdate": "Atualização de ativos - host",
|
"HostUpdate": "Atualização de ativos - host",
|
||||||
"HostnameStrategy": "Usado para gerar nomes de host de ativos. Por exemplo: 1. Nome da instância (instanceDemo);2. Nome da instância e parte do IP (últimos dois dígitos) (instanceDemo-250.1)",
|
"HostnameStrategy": "Usado para gerar nomes de host de ativos. Por exemplo: 1. Nome da instância (instanceDemo);2. Nome da instância e parte do IP (últimos dois dígitos) (instanceDemo-250.1)",
|
||||||
"Hour": "Horas",
|
"Hour": "Horas",
|
||||||
|
@ -664,11 +651,6 @@
|
||||||
"InviteSuccess": "Convite bem-sucedido",
|
"InviteSuccess": "Convite bem-sucedido",
|
||||||
"InviteUser": "Convidar usuário",
|
"InviteUser": "Convidar usuário",
|
||||||
"InviteUserInOrg": "Convide usuários para ingressar nessa organização",
|
"InviteUserInOrg": "Convide usuários para ingressar nessa organização",
|
||||||
"Ip": "IP",
|
|
||||||
"IpDomain": "IP Domínio",
|
|
||||||
"IpGroup": "Grupo IP",
|
|
||||||
"IpGroupHelpText": "* indica correspondência com todos. Por exemplo: 192.168.10.1, 192.168.1.0/24, 10.1.1.1-10.1.1.20, 2001:db8:2de::e13, 2001:db8:1a:1110::/64",
|
|
||||||
"IpType": "Tipo de IP",
|
|
||||||
"IsActive": " Ativar ",
|
"IsActive": " Ativar ",
|
||||||
"IsAlwaysUpdate": "Manter ativos atualizados",
|
"IsAlwaysUpdate": "Manter ativos atualizados",
|
||||||
"IsAlwaysUpdateHelpTip": "Se atualiza informações do ativo sincronizado cada vez que uma tarefa de sincronização é executada, incluindo hostname, IP, plataforma, domínio, nós etc.",
|
"IsAlwaysUpdateHelpTip": "Se atualiza informações do ativo sincronizado cada vez que uma tarefa de sincronização é executada, incluindo hostname, IP, plataforma, domínio, nós etc.",
|
||||||
|
@ -909,7 +891,6 @@
|
||||||
"Pause": "Pausa",
|
"Pause": "Pausa",
|
||||||
"PauseTaskSendSuccessMsg": " A tarefa de pausa foi emitida, por favor atualize e verifique mais tarde ",
|
"PauseTaskSendSuccessMsg": " A tarefa de pausa foi emitida, por favor atualize e verifique mais tarde ",
|
||||||
"Pending": " Pendente",
|
"Pending": " Pendente",
|
||||||
"Periodic": "Executar regularmente",
|
|
||||||
"PermAccount": "Conta Autorizada",
|
"PermAccount": "Conta Autorizada",
|
||||||
"PermAction": "Action autorizado",
|
"PermAction": "Action autorizado",
|
||||||
"PermUserList": "Usuário autorizado",
|
"PermUserList": "Usuário autorizado",
|
||||||
|
@ -940,7 +921,6 @@
|
||||||
"Primary": "Principais",
|
"Primary": "Principais",
|
||||||
"Priority": "Prioridade",
|
"Priority": "Prioridade",
|
||||||
"PrivateCloud": "Nuvem privada",
|
"PrivateCloud": "Nuvem privada",
|
||||||
"PrivateIp": "IP privado",
|
|
||||||
"PrivateKey": "Chave privada",
|
"PrivateKey": "Chave privada",
|
||||||
"Privileged": "Conta Privilegiada",
|
"Privileged": "Conta Privilegiada",
|
||||||
"PrivilegedFirst": "Conta com privilégios prioritários",
|
"PrivilegedFirst": "Conta com privilégios prioritários",
|
||||||
|
@ -958,7 +938,6 @@
|
||||||
"Provider": "Fornecedor",
|
"Provider": "Fornecedor",
|
||||||
"Proxy": "Proxy",
|
"Proxy": "Proxy",
|
||||||
"PublicCloud": "Nuvem pública",
|
"PublicCloud": "Nuvem pública",
|
||||||
"PublicIp": "IP Público",
|
|
||||||
"PublicKey": "Chave pública",
|
"PublicKey": "Chave pública",
|
||||||
"Publish": "Publicação",
|
"Publish": "Publicação",
|
||||||
"PublishAllApplets": " Publicar todos os aplicativos ",
|
"PublishAllApplets": " Publicar todos os aplicativos ",
|
||||||
|
@ -1274,7 +1253,6 @@
|
||||||
"SystemTasks": "Lista de tarefas",
|
"SystemTasks": "Lista de tarefas",
|
||||||
"SystemTools": "Ferramentas do sistema",
|
"SystemTools": "Ferramentas do sistema",
|
||||||
"TableColSetting": "Selecione as colunas de propriedades visíveis",
|
"TableColSetting": "Selecione as colunas de propriedades visíveis",
|
||||||
"TableSetting": "Preferências de formulário",
|
|
||||||
"TagCreate": " Criar etiqueta ",
|
"TagCreate": " Criar etiqueta ",
|
||||||
"TagInputFormatValidation": "Erro no formato da tag, o formato correto é: name:value",
|
"TagInputFormatValidation": "Erro no formato da tag, o formato correto é: name:value",
|
||||||
"TagList": "Lista de tags",
|
"TagList": "Lista de tags",
|
||||||
|
|
|
@ -8,14 +8,17 @@
|
||||||
"AccessIP": "IP 白名单",
|
"AccessIP": "IP 白名单",
|
||||||
"AccessKey": "访问密钥",
|
"AccessKey": "访问密钥",
|
||||||
"Account": "账号信息",
|
"Account": "账号信息",
|
||||||
|
"AccountActivities": "账号活动",
|
||||||
"AccountBackup": "账号备份",
|
"AccountBackup": "账号备份",
|
||||||
"AccountBackupCreate": "创建账号备份",
|
"AccountBackupCreate": "创建账号备份",
|
||||||
"AccountBackupDetail": "账号备份详情",
|
"AccountBackupDetail": "账号备份详情",
|
||||||
"AccountBackupList": "账号备份列表",
|
"AccountBackupList": "账号备份列表",
|
||||||
"AccountBackupUpdate": "更新账号备份",
|
"AccountBackupUpdate": "更新账号备份",
|
||||||
"AccountChangeSecret": "账号改密",
|
|
||||||
"AccountChangeSecretDetail": "账号改密详情",
|
"AccountChangeSecretDetail": "账号改密详情",
|
||||||
|
"AccountData": "账号数据",
|
||||||
"AccountDeleteConfirmMsg": "删除账号,是否继续?",
|
"AccountDeleteConfirmMsg": "删除账号,是否继续?",
|
||||||
|
"AccountDeleted": "账号删除",
|
||||||
|
"AccountDiscover": "账号发现",
|
||||||
"AccountExportTips": "导出信息中包含账号密文涉及敏感信息,导出的格式为一个加密的zip文件(若没有设置加密密码,请前往个人信息中设置文件加密密码)。",
|
"AccountExportTips": "导出信息中包含账号密文涉及敏感信息,导出的格式为一个加密的zip文件(若没有设置加密密码,请前往个人信息中设置文件加密密码)。",
|
||||||
"AccountList": "账号",
|
"AccountList": "账号",
|
||||||
"AccountPolicy": "账号策略",
|
"AccountPolicy": "账号策略",
|
||||||
|
@ -24,6 +27,8 @@
|
||||||
"AccountPushDetail": "账号推送详情",
|
"AccountPushDetail": "账号推送详情",
|
||||||
"AccountPushList": "账号推送",
|
"AccountPushList": "账号推送",
|
||||||
"AccountPushUpdate": "更新账号推送",
|
"AccountPushUpdate": "更新账号推送",
|
||||||
|
"AccountResult": "账号改密成功/失败",
|
||||||
|
"AccountSessions": "账号会话",
|
||||||
"AccountStorage": "账号存储",
|
"AccountStorage": "账号存储",
|
||||||
"AccountTemplate": "账号模版",
|
"AccountTemplate": "账号模版",
|
||||||
"AccountTemplateList": "账号模版列表",
|
"AccountTemplateList": "账号模版列表",
|
||||||
|
@ -167,6 +172,7 @@
|
||||||
"AuthSettings": "认证配置",
|
"AuthSettings": "认证配置",
|
||||||
"AuthUserAttrMapHelpText": "左侧的键为 JumpServer 用户属性,右侧的值为认证平台用户属性",
|
"AuthUserAttrMapHelpText": "左侧的键为 JumpServer 用户属性,右侧的值为认证平台用户属性",
|
||||||
"Authentication": "认证",
|
"Authentication": "认证",
|
||||||
|
"AuthorizedKeysChanged": "密钥变更",
|
||||||
"AutoPush": "自动推送",
|
"AutoPush": "自动推送",
|
||||||
"Automation": "自动化",
|
"Automation": "自动化",
|
||||||
"AverageTimeCost": "平均花费时间",
|
"AverageTimeCost": "平均花费时间",
|
||||||
|
@ -183,7 +189,6 @@
|
||||||
"BaseAccount": "账号",
|
"BaseAccount": "账号",
|
||||||
"BaseAccountBackup": "账号备份",
|
"BaseAccountBackup": "账号备份",
|
||||||
"BaseAccountChangeSecret": "账号改密",
|
"BaseAccountChangeSecret": "账号改密",
|
||||||
"BaseAccountGather": "账号采集",
|
|
||||||
"BaseAccountPush": "账号推送",
|
"BaseAccountPush": "账号推送",
|
||||||
"BaseAccountTemplate": "账号模版",
|
"BaseAccountTemplate": "账号模版",
|
||||||
"BaseApplets": "应用",
|
"BaseApplets": "应用",
|
||||||
|
@ -254,6 +259,7 @@
|
||||||
"ChangeField": "变更字段",
|
"ChangeField": "变更字段",
|
||||||
"ChangeOrganization": "更改组织",
|
"ChangeOrganization": "更改组织",
|
||||||
"ChangePassword": "更新密码",
|
"ChangePassword": "更新密码",
|
||||||
|
"ChangeSecret": "账号改密",
|
||||||
"ChangeSecretAccountHelpText": "对于同一资产中的账号,如果存在切换自关系,则不应放在同一个任务中执行密码更改,而是应分成两个任务分别执行。",
|
"ChangeSecretAccountHelpText": "对于同一资产中的账号,如果存在切换自关系,则不应放在同一个任务中执行密码更改,而是应分成两个任务分别执行。",
|
||||||
"ChangeSecretParams": "改密参数",
|
"ChangeSecretParams": "改密参数",
|
||||||
"ChangeViewHelpText": "点击切换不同视图",
|
"ChangeViewHelpText": "点击切换不同视图",
|
||||||
|
@ -273,7 +279,6 @@
|
||||||
"ClearSuccessMsg": "清除成功",
|
"ClearSuccessMsg": "清除成功",
|
||||||
"ClickCopy": "点击复制",
|
"ClickCopy": "点击复制",
|
||||||
"ClientCertificate": "客户端证书",
|
"ClientCertificate": "客户端证书",
|
||||||
"Clipboard": "剪贴板",
|
|
||||||
"ClipboardCopyPaste": "剪贴板复制粘贴",
|
"ClipboardCopyPaste": "剪贴板复制粘贴",
|
||||||
"Clone": "克隆",
|
"Clone": "克隆",
|
||||||
"Close": "关闭",
|
"Close": "关闭",
|
||||||
|
@ -281,6 +286,7 @@
|
||||||
"CloseConfirmMessage": "文件发生变化,是否保存?",
|
"CloseConfirmMessage": "文件发生变化,是否保存?",
|
||||||
"CloseStatus": "已完成",
|
"CloseStatus": "已完成",
|
||||||
"Closed": "已完成",
|
"Closed": "已完成",
|
||||||
|
"Cloud": "云",
|
||||||
"CloudAccountCreate": "创建云平台账号",
|
"CloudAccountCreate": "创建云平台账号",
|
||||||
"CloudAccountDetail": "云平台账号详情",
|
"CloudAccountDetail": "云平台账号详情",
|
||||||
"CloudAccountList": "云平台账号",
|
"CloudAccountList": "云平台账号",
|
||||||
|
@ -334,6 +340,7 @@
|
||||||
"ConnectMethodAclList": "连接方式",
|
"ConnectMethodAclList": "连接方式",
|
||||||
"ConnectMethodAclUpdate": "更新连接方式控制",
|
"ConnectMethodAclUpdate": "更新连接方式控制",
|
||||||
"ConnectWebSocketError": "连接 WebSocket 失败",
|
"ConnectWebSocketError": "连接 WebSocket 失败",
|
||||||
|
"Connectable": "可连接",
|
||||||
"ConnectionDropped": "连接已断开",
|
"ConnectionDropped": "连接已断开",
|
||||||
"ConnectionToken": "连接令牌",
|
"ConnectionToken": "连接令牌",
|
||||||
"ConnectionTokenList": "连接令牌是将身份验证和连接资产结合起来使用的一种认证信息,支持用户一键登录到资产,目前支持的组件包括:KoKo、Lion、Magnus、Razor 等",
|
"ConnectionTokenList": "连接令牌是将身份验证和连接资产结合起来使用的一种认证信息,支持用户一键登录到资产,目前支持的组件包括:KoKo、Lion、Magnus、Razor 等",
|
||||||
|
@ -346,6 +353,7 @@
|
||||||
"ConvenientOperate": "便捷操作",
|
"ConvenientOperate": "便捷操作",
|
||||||
"Copy": "复制",
|
"Copy": "复制",
|
||||||
"CopySuccess": "复制成功",
|
"CopySuccess": "复制成功",
|
||||||
|
"CopyToAsset": "复制到资产",
|
||||||
"Corporation": "公司",
|
"Corporation": "公司",
|
||||||
"Create": "创建",
|
"Create": "创建",
|
||||||
"CreateAccessKey": "创建访问密钥",
|
"CreateAccessKey": "创建访问密钥",
|
||||||
|
@ -412,6 +420,7 @@
|
||||||
"Datetime": "日期时间",
|
"Datetime": "日期时间",
|
||||||
"Day": "日",
|
"Day": "日",
|
||||||
"DeclassificationLogNum": "改密日志数",
|
"DeclassificationLogNum": "改密日志数",
|
||||||
|
"DeeplyThoughtAbout": "已深度思考",
|
||||||
"DefaultDatabase": "默认数据库",
|
"DefaultDatabase": "默认数据库",
|
||||||
"DefaultPort": "默认端口",
|
"DefaultPort": "默认端口",
|
||||||
"DefaultValue": "默认值",
|
"DefaultValue": "默认值",
|
||||||
|
@ -432,6 +441,7 @@
|
||||||
"DestinationIP": "目的地址",
|
"DestinationIP": "目的地址",
|
||||||
"DestinationPort": "目的端口",
|
"DestinationPort": "目的端口",
|
||||||
"Detail": "详情",
|
"Detail": "详情",
|
||||||
|
"Device": "设备",
|
||||||
"DeviceCreate": "创建资产-网络设备",
|
"DeviceCreate": "创建资产-网络设备",
|
||||||
"DeviceUpdate": "更新资产-网络设备",
|
"DeviceUpdate": "更新资产-网络设备",
|
||||||
"Digit": "数字",
|
"Digit": "数字",
|
||||||
|
@ -441,11 +451,12 @@
|
||||||
"Disable": "禁用",
|
"Disable": "禁用",
|
||||||
"DisableSelected": "禁用所选",
|
"DisableSelected": "禁用所选",
|
||||||
"DisableSuccessMsg": "禁用成功",
|
"DisableSuccessMsg": "禁用成功",
|
||||||
|
"DiscoverAccounts": "帐号发现",
|
||||||
|
"DiscoveredAccountList": "发现账号",
|
||||||
"DisplayName": "名称",
|
"DisplayName": "名称",
|
||||||
"Docs": "文档",
|
"Docs": "文档",
|
||||||
"Download": "下载",
|
"Download": "下载",
|
||||||
"DownloadCenter": "下载中心",
|
"DownloadCenter": "下载中心",
|
||||||
"DownloadFTPFileTip": "当前动作不记录文件,或者文件大小超过阈值(默认100M),或者还未保存到对应存储中",
|
|
||||||
"DownloadImportTemplateMsg": "下载创建模板",
|
"DownloadImportTemplateMsg": "下载创建模板",
|
||||||
"DownloadReplay": "下载录像",
|
"DownloadReplay": "下载录像",
|
||||||
"DownloadUpdateTemplateMsg": "下载更新模板",
|
"DownloadUpdateTemplateMsg": "下载更新模板",
|
||||||
|
@ -457,6 +468,7 @@
|
||||||
"DynamicUsername": "动态用户名",
|
"DynamicUsername": "动态用户名",
|
||||||
"Edit": "编辑",
|
"Edit": "编辑",
|
||||||
"EditRecipient": "编辑接收人",
|
"EditRecipient": "编辑接收人",
|
||||||
|
"EditSecret": "编辑密文",
|
||||||
"Edition": "版本",
|
"Edition": "版本",
|
||||||
"Effective": "生效",
|
"Effective": "生效",
|
||||||
"Email": "邮箱",
|
"Email": "邮箱",
|
||||||
|
@ -465,6 +477,7 @@
|
||||||
"EmailTemplateHelpTip": "邮件模版是用于发送邮件的模版,包括邮件标题前缀和邮件内容",
|
"EmailTemplateHelpTip": "邮件模版是用于发送邮件的模版,包括邮件标题前缀和邮件内容",
|
||||||
"EmailTest": "测试连接",
|
"EmailTest": "测试连接",
|
||||||
"Empty": "空",
|
"Empty": "空",
|
||||||
|
"EmptyPassword": "空密码",
|
||||||
"Enable": "启用",
|
"Enable": "启用",
|
||||||
"EnableDomain": "启用网域",
|
"EnableDomain": "启用网域",
|
||||||
"EnableKoKoSSHHelpText": "开启时连接资产会显示 SSH Client 拉起方式",
|
"EnableKoKoSSHHelpText": "开启时连接资产会显示 SSH Client 拉起方式",
|
||||||
|
@ -494,10 +507,10 @@
|
||||||
"ExcludeSymbol": "排除字符",
|
"ExcludeSymbol": "排除字符",
|
||||||
"ExecCloudSyncErrorMsg": "云账号配置不完整,请更新后重试",
|
"ExecCloudSyncErrorMsg": "云账号配置不完整,请更新后重试",
|
||||||
"Execute": "执行",
|
"Execute": "执行",
|
||||||
"ExecuteAfterSaving": "保存后执行",
|
|
||||||
"ExecuteOnce": "执行一次",
|
"ExecuteOnce": "执行一次",
|
||||||
"ExecutionDetail": "执行详情",
|
"ExecutionDetail": "执行详情",
|
||||||
"ExecutionList": "执行列表",
|
"ExecutionList": "执行列表",
|
||||||
|
"ExecutionRecord": "执行记录",
|
||||||
"ExistError": "这个元素已经存在",
|
"ExistError": "这个元素已经存在",
|
||||||
"Existing": "已存在",
|
"Existing": "已存在",
|
||||||
"ExpirationTimeout": "过期超时时间(秒)",
|
"ExpirationTimeout": "过期超时时间(秒)",
|
||||||
|
@ -542,6 +555,7 @@
|
||||||
"Footer": "页脚",
|
"Footer": "页脚",
|
||||||
"ForgotPasswordURL": "忘记密码链接",
|
"ForgotPasswordURL": "忘记密码链接",
|
||||||
"FormatError": "格式错误",
|
"FormatError": "格式错误",
|
||||||
|
"FoundAccountInAssetDeleteMsg": "删除从系统资产中发现的找好",
|
||||||
"Friday": "周五",
|
"Friday": "周五",
|
||||||
"From": "从",
|
"From": "从",
|
||||||
"FromTicket": "来自工单",
|
"FromTicket": "来自工单",
|
||||||
|
@ -556,8 +570,6 @@
|
||||||
"GatewayList": "网关列表",
|
"GatewayList": "网关列表",
|
||||||
"GatewayPlatformHelpText": "网关平台只能选择以 Gateway 开头的平台",
|
"GatewayPlatformHelpText": "网关平台只能选择以 Gateway 开头的平台",
|
||||||
"GatewayUpdate": "更新网关",
|
"GatewayUpdate": "更新网关",
|
||||||
"GatherAccountsHelpText": "收集资产上的账号信息。收集后的账号信息可以导入到系统中,方便统一管理",
|
|
||||||
"GatheredAccountList": "收集的账号",
|
|
||||||
"General": "基本",
|
"General": "基本",
|
||||||
"GeneralAccounts": "普通账号",
|
"GeneralAccounts": "普通账号",
|
||||||
"GeneralSetting": "通用配置",
|
"GeneralSetting": "通用配置",
|
||||||
|
@ -568,6 +580,7 @@
|
||||||
"Goto": "转到",
|
"Goto": "转到",
|
||||||
"GrantedAssets": "授权的资产",
|
"GrantedAssets": "授权的资产",
|
||||||
"GreatEqualThan": "大于等于",
|
"GreatEqualThan": "大于等于",
|
||||||
|
"GroupChanged": "组变更",
|
||||||
"GroupsAmount": "用户组",
|
"GroupsAmount": "用户组",
|
||||||
"HTTPSRequiredForSupport": "需要 HTTPS 支持,才能开启",
|
"HTTPSRequiredForSupport": "需要 HTTPS 支持,才能开启",
|
||||||
"HandleTicket": "处理工单",
|
"HandleTicket": "处理工单",
|
||||||
|
@ -585,7 +598,6 @@
|
||||||
"Host": "资产",
|
"Host": "资产",
|
||||||
"HostCreate": "创建资产-主机",
|
"HostCreate": "创建资产-主机",
|
||||||
"HostDeployment": "发布机部署",
|
"HostDeployment": "发布机部署",
|
||||||
"HostList": "主机列表",
|
|
||||||
"HostUpdate": "更新资产-主机",
|
"HostUpdate": "更新资产-主机",
|
||||||
"HostnameStrategy": "用于生成资产主机名。例如:1. 实例名称 (instanceDemo);2. 实例名称和部分IP(后两位) (instanceDemo-250.1)",
|
"HostnameStrategy": "用于生成资产主机名。例如:1. 实例名称 (instanceDemo);2. 实例名称和部分IP(后两位) (instanceDemo-250.1)",
|
||||||
"Hour": "小时",
|
"Hour": "小时",
|
||||||
|
@ -640,11 +652,6 @@
|
||||||
"InviteSuccess": "邀请成功",
|
"InviteSuccess": "邀请成功",
|
||||||
"InviteUser": "邀请用户",
|
"InviteUser": "邀请用户",
|
||||||
"InviteUserInOrg": "邀请用户加入此组织",
|
"InviteUserInOrg": "邀请用户加入此组织",
|
||||||
"Ip": "IP",
|
|
||||||
"IpDomain": "IP 域",
|
|
||||||
"IpGroup": "IP 组",
|
|
||||||
"IpGroupHelpText": "* 表示匹配所有。例如: 192.168.10.1, 192.168.1.0/24, 10.1.1.1-10.1.1.20, 2001:db8:2de::e13, 2001:db8:1a:1110::/64",
|
|
||||||
"IpType": "IP 类型",
|
|
||||||
"IsActive": "激活",
|
"IsActive": "激活",
|
||||||
"IsAlwaysUpdate": "资产保持最新",
|
"IsAlwaysUpdate": "资产保持最新",
|
||||||
"IsAlwaysUpdateHelpTip": "每次执行同步任务时是否同步更新资产信息,包括主机名、ip、平台、域、节点等",
|
"IsAlwaysUpdateHelpTip": "每次执行同步任务时是否同步更新资产信息,包括主机名、ip、平台、域、节点等",
|
||||||
|
@ -678,6 +685,7 @@
|
||||||
"LdapBulkImport": "用户导入",
|
"LdapBulkImport": "用户导入",
|
||||||
"LdapConnectTest": "测试连接",
|
"LdapConnectTest": "测试连接",
|
||||||
"LdapLoginTest": "测试登录",
|
"LdapLoginTest": "测试登录",
|
||||||
|
"LeakedPassword": "泄露密码",
|
||||||
"Length": "长度",
|
"Length": "长度",
|
||||||
"LessEqualThan": "小于等于",
|
"LessEqualThan": "小于等于",
|
||||||
"LevelApproval": "级审批",
|
"LevelApproval": "级审批",
|
||||||
|
@ -720,6 +728,8 @@
|
||||||
"LogoLogoutTip": "提示:将会显示在企业版用户的 Web 终端页面(建议图片大小为:82px*82px)",
|
"LogoLogoutTip": "提示:将会显示在企业版用户的 Web 终端页面(建议图片大小为:82px*82px)",
|
||||||
"Logout": "退出登录",
|
"Logout": "退出登录",
|
||||||
"LogsAudit": "日志审计",
|
"LogsAudit": "日志审计",
|
||||||
|
"LongTimeNoVerify": "长时间未验证",
|
||||||
|
"LongTimePassword": "长时间未改密",
|
||||||
"Lowercase": "小写字母",
|
"Lowercase": "小写字母",
|
||||||
"LunaSetting": "Luna 配置",
|
"LunaSetting": "Luna 配置",
|
||||||
"MFAAllUsers": "全局启用: 所有用户",
|
"MFAAllUsers": "全局启用: 所有用户",
|
||||||
|
@ -761,6 +771,7 @@
|
||||||
"More": "更多",
|
"More": "更多",
|
||||||
"MoreActions": "更多操作",
|
"MoreActions": "更多操作",
|
||||||
"MoveAssetToNode": "移动资产到节点",
|
"MoveAssetToNode": "移动资产到节点",
|
||||||
|
"MoveToAsset": "移动到资产",
|
||||||
"MsgSubscribe": "消息订阅",
|
"MsgSubscribe": "消息订阅",
|
||||||
"MyAssets": "我的资产",
|
"MyAssets": "我的资产",
|
||||||
"MyTickets": "我发起的",
|
"MyTickets": "我发起的",
|
||||||
|
@ -770,6 +781,7 @@
|
||||||
"Navigation": "导航",
|
"Navigation": "导航",
|
||||||
"NeedReLogin": "需要重新登录",
|
"NeedReLogin": "需要重新登录",
|
||||||
"New": "新建",
|
"New": "新建",
|
||||||
|
"NewAccountsFound": "新增账号",
|
||||||
"NewChat": "新聊天",
|
"NewChat": "新聊天",
|
||||||
"NewCount": "新增",
|
"NewCount": "新增",
|
||||||
"NewCron": "生成 Cron",
|
"NewCron": "生成 Cron",
|
||||||
|
@ -783,10 +795,12 @@
|
||||||
"Next": "下一步",
|
"Next": "下一步",
|
||||||
"No": "否",
|
"No": "否",
|
||||||
"NoAccountFound": "未找到帐户",
|
"NoAccountFound": "未找到帐户",
|
||||||
|
"NoAdminAccount": "无管理员账号",
|
||||||
"NoContent": "暂无内容",
|
"NoContent": "暂无内容",
|
||||||
"NoData": "暂无数据",
|
"NoData": "暂无数据",
|
||||||
"NoFiles": "暂无文件",
|
"NoFiles": "暂无文件",
|
||||||
"NoLog": "无日志",
|
"NoLog": "无日志",
|
||||||
|
"NoLoginLongTime": "长时间未登录",
|
||||||
"NoPermission": "暂无权限",
|
"NoPermission": "暂无权限",
|
||||||
"NoPermission403": "403 暂无权限",
|
"NoPermission403": "403 暂无权限",
|
||||||
"NoPermissionInGlobal": "全局无权限",
|
"NoPermissionInGlobal": "全局无权限",
|
||||||
|
@ -865,6 +879,7 @@
|
||||||
"Password": "密码",
|
"Password": "密码",
|
||||||
"PasswordAndSSHKey": "认证设置",
|
"PasswordAndSSHKey": "认证设置",
|
||||||
"PasswordChangeLog": "改密日志",
|
"PasswordChangeLog": "改密日志",
|
||||||
|
"PasswordError": "密码错误",
|
||||||
"PasswordExpired": "密码过期了",
|
"PasswordExpired": "密码过期了",
|
||||||
"PasswordPlaceholder": "请输入密码",
|
"PasswordPlaceholder": "请输入密码",
|
||||||
"PasswordRecord": "密码记录",
|
"PasswordRecord": "密码记录",
|
||||||
|
@ -877,7 +892,6 @@
|
||||||
"Pause": "暂停",
|
"Pause": "暂停",
|
||||||
"PauseTaskSendSuccessMsg": "暂停任务已下发,请稍后刷新查看",
|
"PauseTaskSendSuccessMsg": "暂停任务已下发,请稍后刷新查看",
|
||||||
"Pending": "待处理",
|
"Pending": "待处理",
|
||||||
"Periodic": "定期执行 ",
|
|
||||||
"PermAccount": "授权账号",
|
"PermAccount": "授权账号",
|
||||||
"PermAction": "授权动作",
|
"PermAction": "授权动作",
|
||||||
"PermUserList": "授权用户",
|
"PermUserList": "授权用户",
|
||||||
|
@ -908,7 +922,6 @@
|
||||||
"Primary": "主要的",
|
"Primary": "主要的",
|
||||||
"Priority": "优先级",
|
"Priority": "优先级",
|
||||||
"PrivateCloud": "私有云",
|
"PrivateCloud": "私有云",
|
||||||
"PrivateIp": "私有 IP",
|
|
||||||
"PrivateKey": "私钥",
|
"PrivateKey": "私钥",
|
||||||
"Privileged": "特权账号",
|
"Privileged": "特权账号",
|
||||||
"PrivilegedFirst": "优先特权账号",
|
"PrivilegedFirst": "优先特权账号",
|
||||||
|
@ -919,19 +932,20 @@
|
||||||
"Project": "项目名",
|
"Project": "项目名",
|
||||||
"Prompt": "提示词",
|
"Prompt": "提示词",
|
||||||
"Proportion": "占比",
|
"Proportion": "占比",
|
||||||
|
"ProportionOfAccountTypes": "账号类型占比",
|
||||||
"ProportionOfAssetTypes": "资产类型占比",
|
"ProportionOfAssetTypes": "资产类型占比",
|
||||||
"Protocol": "协议",
|
"Protocol": "协议",
|
||||||
"Protocols": "协议",
|
"Protocols": "协议",
|
||||||
"Provider": "供应商",
|
"Provider": "供应商",
|
||||||
"Proxy": "代理",
|
"Proxy": "代理",
|
||||||
"PublicCloud": "公有云",
|
"PublicCloud": "公有云",
|
||||||
"PublicIp": "公有 IP",
|
|
||||||
"PublicKey": "公钥",
|
"PublicKey": "公钥",
|
||||||
"Publish": "发布",
|
"Publish": "发布",
|
||||||
"PublishAllApplets": "发布所有应用",
|
"PublishAllApplets": "发布所有应用",
|
||||||
"PublishStatus": "发布状态",
|
"PublishStatus": "发布状态",
|
||||||
"Push": "推送",
|
"Push": "推送",
|
||||||
"PushAccount": "推送账号",
|
"PushAccount": "推送账号",
|
||||||
|
"PushAccountHelpText": "若账号已存在,则使用账号密文进行推送;若账号不存在,则根据填写的密文创建账号,然后进行推送。",
|
||||||
"PushAccountsHelpText": "推送已有账号到资产上。推送账号时,如果账号已存在,会更新账号的密码,如果账号不存在,会创建账号",
|
"PushAccountsHelpText": "推送已有账号到资产上。推送账号时,如果账号已存在,会更新账号的密码,如果账号不存在,会创建账号",
|
||||||
"PushParams": "推送参数",
|
"PushParams": "推送参数",
|
||||||
"Qcloud": "腾讯云",
|
"Qcloud": "腾讯云",
|
||||||
|
@ -949,13 +963,20 @@
|
||||||
"RealTimeData": "实时数据",
|
"RealTimeData": "实时数据",
|
||||||
"Reason": "原因",
|
"Reason": "原因",
|
||||||
"Receivers": "接收人",
|
"Receivers": "接收人",
|
||||||
|
"Recent (7 days)": "最近7天",
|
||||||
"RecentLogin": "最近登录",
|
"RecentLogin": "最近登录",
|
||||||
|
"RecentPasswordChangeFailed": "最近改密失败",
|
||||||
"RecentSession": "最近会话",
|
"RecentSession": "最近会话",
|
||||||
|
"RecentlyChangedPassword": "最近改密",
|
||||||
|
"RecentlyDiscovered": "最近发现",
|
||||||
|
"RecentlyLoggedIn": "最近登录",
|
||||||
|
"RecentlyModified": "最近修改",
|
||||||
"RecentlyUsed": "最近使用",
|
"RecentlyUsed": "最近使用",
|
||||||
"Recipient": "接收人",
|
"Recipient": "接收人",
|
||||||
"RecipientHelpText": "如果同时设置了收件人A和B,账号的密文将被拆分为两部分;如果只设置了一个收件人,密钥则不会被拆分。",
|
"RecipientHelpText": "如果同时设置了收件人A和B,账号的密文将被拆分为两部分;如果只设置了一个收件人,密钥则不会被拆分。",
|
||||||
"RecipientServer": "接收服务器",
|
"RecipientServer": "接收服务器",
|
||||||
"Reconnect": "重新连接",
|
"Reconnect": "重新连接",
|
||||||
|
"Record": "记录",
|
||||||
"Refresh": "刷新",
|
"Refresh": "刷新",
|
||||||
"RefreshHardware": "更新硬件信息",
|
"RefreshHardware": "更新硬件信息",
|
||||||
"Regex": "正则表达式",
|
"Regex": "正则表达式",
|
||||||
|
@ -972,6 +993,7 @@
|
||||||
"RelevantCommand": "命令",
|
"RelevantCommand": "命令",
|
||||||
"RelevantSystemUser": "系统用户",
|
"RelevantSystemUser": "系统用户",
|
||||||
"RemoteAddr": "远端地址",
|
"RemoteAddr": "远端地址",
|
||||||
|
"RemoteAssetFoundAccountDeleteMsg": "删除从远端资产中发现的找好",
|
||||||
"Remove": "移除",
|
"Remove": "移除",
|
||||||
"RemoveAssetFromNode": "从节点移除资产",
|
"RemoveAssetFromNode": "从节点移除资产",
|
||||||
"RemoveSelected": "移除所选",
|
"RemoveSelected": "移除所选",
|
||||||
|
@ -979,6 +1001,7 @@
|
||||||
"RemoveWarningMsg": "你确定要移除",
|
"RemoveWarningMsg": "你确定要移除",
|
||||||
"Rename": "重命名",
|
"Rename": "重命名",
|
||||||
"RenameNode": "重命名节点",
|
"RenameNode": "重命名节点",
|
||||||
|
"RepeatedPassword": "重复密码",
|
||||||
"ReplaceNodeAssetsAdminUserWithThis": "替换资产的管理员",
|
"ReplaceNodeAssetsAdminUserWithThis": "替换资产的管理员",
|
||||||
"Replay": "回放",
|
"Replay": "回放",
|
||||||
"ReplaySession": "回放会话",
|
"ReplaySession": "回放会话",
|
||||||
|
@ -986,6 +1009,7 @@
|
||||||
"ReplayStorageCreateUpdateHelpMessage": "注意:目前 SFTP 存储仅支持账号备份,暂不支持录像存储。",
|
"ReplayStorageCreateUpdateHelpMessage": "注意:目前 SFTP 存储仅支持账号备份,暂不支持录像存储。",
|
||||||
"ReplayStorageUpdate": "更新对象存储",
|
"ReplayStorageUpdate": "更新对象存储",
|
||||||
"Reply": "回复",
|
"Reply": "回复",
|
||||||
|
"Report": "报告",
|
||||||
"RequestAssetPerm": "申请资产授权",
|
"RequestAssetPerm": "申请资产授权",
|
||||||
"RequestPerm": "授权申请",
|
"RequestPerm": "授权申请",
|
||||||
"RequestTickets": "申请工单",
|
"RequestTickets": "申请工单",
|
||||||
|
@ -1008,6 +1032,7 @@
|
||||||
"ResetSSHKey": "重置SSH密钥",
|
"ResetSSHKey": "重置SSH密钥",
|
||||||
"ResetSSHKeySuccessMsg": "发送邮件任务已提交, 用户稍后会收到重置密钥邮件",
|
"ResetSSHKeySuccessMsg": "发送邮件任务已提交, 用户稍后会收到重置密钥邮件",
|
||||||
"ResetSSHKeyWarningMsg": "你确定要发送重置用户的SSH Key的邮件吗?",
|
"ResetSSHKeyWarningMsg": "你确定要发送重置用户的SSH Key的邮件吗?",
|
||||||
|
"ResetSecret": "可改密",
|
||||||
"Resource": "资源",
|
"Resource": "资源",
|
||||||
"ResourceType": "资源类型",
|
"ResourceType": "资源类型",
|
||||||
"RestoreButton": "恢复默认",
|
"RestoreButton": "恢复默认",
|
||||||
|
@ -1020,6 +1045,8 @@
|
||||||
"Retry": "重试",
|
"Retry": "重试",
|
||||||
"RetrySelected": "重试所选",
|
"RetrySelected": "重试所选",
|
||||||
"Reviewer": "审批人",
|
"Reviewer": "审批人",
|
||||||
|
"RiskDetection": "风险检测",
|
||||||
|
"RiskyAccount": "风险账号",
|
||||||
"Role": "角色",
|
"Role": "角色",
|
||||||
"RoleCreate": "创建角色",
|
"RoleCreate": "创建角色",
|
||||||
"RoleDetail": "角色详情",
|
"RoleDetail": "角色详情",
|
||||||
|
@ -1084,6 +1111,7 @@
|
||||||
"Secret": "密码",
|
"Secret": "密码",
|
||||||
"SecretKey": "密钥",
|
"SecretKey": "密钥",
|
||||||
"SecretKeyStrategy": "密码策略",
|
"SecretKeyStrategy": "密码策略",
|
||||||
|
"SecretReset": "可改密",
|
||||||
"Secure": "安全",
|
"Secure": "安全",
|
||||||
"Security": "安全设置",
|
"Security": "安全设置",
|
||||||
"Select": "选择",
|
"Select": "选择",
|
||||||
|
@ -1096,6 +1124,7 @@
|
||||||
"SelectKeyOrCreateNew": "选择标签键或创建新的",
|
"SelectKeyOrCreateNew": "选择标签键或创建新的",
|
||||||
"SelectLabelFilter": "选择标签筛选",
|
"SelectLabelFilter": "选择标签筛选",
|
||||||
"SelectProperties": "选择属性",
|
"SelectProperties": "选择属性",
|
||||||
|
"SelectProtocol": "可选择的协议",
|
||||||
"SelectProvider": "选择平台",
|
"SelectProvider": "选择平台",
|
||||||
"SelectProviderMsg": "请选择一个云平台",
|
"SelectProviderMsg": "请选择一个云平台",
|
||||||
"SelectResource": "选择资源",
|
"SelectResource": "选择资源",
|
||||||
|
@ -1109,6 +1138,7 @@
|
||||||
"SerialNumber": "序列号",
|
"SerialNumber": "序列号",
|
||||||
"Server": "服务",
|
"Server": "服务",
|
||||||
"ServerAccountKey": "服务账号密钥",
|
"ServerAccountKey": "服务账号密钥",
|
||||||
|
"ServerBusyRetry": "服务器繁忙,请稍后再试。",
|
||||||
"ServerError": "服务器错误",
|
"ServerError": "服务器错误",
|
||||||
"ServerTime": "服务器时间",
|
"ServerTime": "服务器时间",
|
||||||
"Session": "会话",
|
"Session": "会话",
|
||||||
|
@ -1189,6 +1219,7 @@
|
||||||
"Success/Total": "成功/总数",
|
"Success/Total": "成功/总数",
|
||||||
"SuccessAsset": "成功的资产",
|
"SuccessAsset": "成功的资产",
|
||||||
"SuccessfulOperation": "操作成功",
|
"SuccessfulOperation": "操作成功",
|
||||||
|
"SudoChanged": "Sudo 变更",
|
||||||
"Summary": "汇总",
|
"Summary": "汇总",
|
||||||
"Summary(success/total)": "概况( 成功/总数 )",
|
"Summary(success/total)": "概况( 成功/总数 )",
|
||||||
"Sunday": "周日",
|
"Sunday": "周日",
|
||||||
|
@ -1239,6 +1270,7 @@
|
||||||
"TargetResources": "目标资源",
|
"TargetResources": "目标资源",
|
||||||
"Task": "任务",
|
"Task": "任务",
|
||||||
"TaskDetail": "任务详情",
|
"TaskDetail": "任务详情",
|
||||||
|
"TaskDistribution": "任务分配",
|
||||||
"TaskDone": "任务结束",
|
"TaskDone": "任务结束",
|
||||||
"TaskID": "任务 ID",
|
"TaskID": "任务 ID",
|
||||||
"TaskList": "任务列表",
|
"TaskList": "任务列表",
|
||||||
|
@ -1310,6 +1342,7 @@
|
||||||
"UPPER_CASE_REQUIRED": "必须包含大写字母",
|
"UPPER_CASE_REQUIRED": "必须包含大写字母",
|
||||||
"UnFavoriteSucceed": "取消收藏成功",
|
"UnFavoriteSucceed": "取消收藏成功",
|
||||||
"UnSyncCount": "未同步",
|
"UnSyncCount": "未同步",
|
||||||
|
"UnavailableAccount": "不可用账号",
|
||||||
"Unbind": "解绑",
|
"Unbind": "解绑",
|
||||||
"UnbindHelpText": "本地用户为此认证来源用户,无法解绑",
|
"UnbindHelpText": "本地用户为此认证来源用户,无法解绑",
|
||||||
"Unblock": "解锁",
|
"Unblock": "解锁",
|
||||||
|
@ -1319,6 +1352,7 @@
|
||||||
"Uninstall": "卸载",
|
"Uninstall": "卸载",
|
||||||
"UniqueError": "以下属性只能设置一个",
|
"UniqueError": "以下属性只能设置一个",
|
||||||
"UnlockSuccessMsg": "解锁成功",
|
"UnlockSuccessMsg": "解锁成功",
|
||||||
|
"UnmanagedAccount": "未管理账号",
|
||||||
"UnselectedOrg": "没有选择组织",
|
"UnselectedOrg": "没有选择组织",
|
||||||
"UnselectedUser": "没有选择用户",
|
"UnselectedUser": "没有选择用户",
|
||||||
"UpDownload": "上传下载",
|
"UpDownload": "上传下载",
|
||||||
|
@ -1385,6 +1419,8 @@
|
||||||
"VaultHCPMountPoint": "Vault 服务器的挂载点,默认为 jumpserver",
|
"VaultHCPMountPoint": "Vault 服务器的挂载点,默认为 jumpserver",
|
||||||
"VaultHelpText": "1. 由于安全原因,需要配置文件中开启 Vault 存储。<br>2. 开启后,填写其他配置,进行测试。<br>3. 进行数据同步,同步是单向的,只会从本地数据库同步到远端 Vault,同步完成本地数据库不再存储密码,请备份好数据。<br>4. 二次修改 Vault 配置后需重启服务。",
|
"VaultHelpText": "1. 由于安全原因,需要配置文件中开启 Vault 存储。<br>2. 开启后,填写其他配置,进行测试。<br>3. 进行数据同步,同步是单向的,只会从本地数据库同步到远端 Vault,同步完成本地数据库不再存储密码,请备份好数据。<br>4. 二次修改 Vault 配置后需重启服务。",
|
||||||
"VerificationCodeSent": "验证码已发送",
|
"VerificationCodeSent": "验证码已发送",
|
||||||
|
"VerifyFace": "验证人脸",
|
||||||
|
"VerifySecret": "验证密文",
|
||||||
"VerifySignTmpl": "验证码短信模板",
|
"VerifySignTmpl": "验证码短信模板",
|
||||||
"Version": "版本",
|
"Version": "版本",
|
||||||
"View": "查看",
|
"View": "查看",
|
||||||
|
@ -1404,6 +1440,7 @@
|
||||||
"WeCom": "企业微信",
|
"WeCom": "企业微信",
|
||||||
"WeComOAuth": "企业微信认证",
|
"WeComOAuth": "企业微信认证",
|
||||||
"WeComTest": "测试",
|
"WeComTest": "测试",
|
||||||
|
"WeakPassword": "弱密码",
|
||||||
"WebCreate": "创建资产-Web",
|
"WebCreate": "创建资产-Web",
|
||||||
"WebHelpMessage": "Web 类型资产依赖于远程应用,请前往系统设置在远程应用中配置",
|
"WebHelpMessage": "Web 类型资产依赖于远程应用,请前往系统设置在远程应用中配置",
|
||||||
"WebSocketDisconnect": "WebSocket 断开",
|
"WebSocketDisconnect": "WebSocket 断开",
|
||||||
|
@ -1431,59 +1468,7 @@
|
||||||
"forceEnableMFAHelpText": "如果强制启用,用户无法自行禁用",
|
"forceEnableMFAHelpText": "如果强制启用,用户无法自行禁用",
|
||||||
"removeWarningMsg": "你确定要移除",
|
"removeWarningMsg": "你确定要移除",
|
||||||
"setVariable": "设置参数",
|
"setVariable": "设置参数",
|
||||||
"VerifyFace": "验证人脸",
|
|
||||||
"ServerBusyRetry": "服务器繁忙,请稍后再试。",
|
|
||||||
"DeeplyThoughtAbout": "已深度思考",
|
|
||||||
"TableSetting": "表格偏好",
|
"TableSetting": "表格偏好",
|
||||||
"AccountData": "账号数据",
|
|
||||||
"AccountResult": "账号改密成功/失败",
|
|
||||||
"RiskyAccount": "风险账号",
|
|
||||||
"ProportionOfAccountTypes": "账号类型占比",
|
|
||||||
"TaskDistribution": "任务分配",
|
|
||||||
"Connectable": "可连接",
|
|
||||||
"DiscoverAccounts": "帐号发现",
|
|
||||||
"ResetSecret": "可改密",
|
|
||||||
"NoLoginLongTime": "长时间未登录",
|
|
||||||
"NewAccountsFound": "新增账号",
|
|
||||||
"GroupChanged": "组变更",
|
|
||||||
"SudoChanged": "Sudo 变更",
|
|
||||||
"AuthorizedKeysChanged": "密钥变更",
|
|
||||||
"AccountDeleted": "账号删除",
|
|
||||||
"LongTimePassword": "长时间未改密",
|
|
||||||
"WeakPassword": "弱密码",
|
|
||||||
"LeakedPassword": "泄露密码",
|
|
||||||
"RepeatedPassword": "重复密码",
|
|
||||||
"PasswordError": "密码错误",
|
|
||||||
"NoAdminAccount": "无管理员账号",
|
|
||||||
"RiskDetection": "风险检测",
|
|
||||||
"AccountSessions": "账号会话",
|
|
||||||
"AccountActivities": "账号活动",
|
|
||||||
"ChangeSecret": "账号改密",
|
|
||||||
"Recent (7 days)": "最近7天",
|
|
||||||
"RecentlyDiscovered": "最近发现",
|
|
||||||
"RecentlyLoggedIn": "最近登录",
|
|
||||||
"RecentlyModified": "最近修改",
|
|
||||||
"RecentlyChangedPassword": "最近改密",
|
|
||||||
"RecentPasswordChangeFailed": "最近改密失败",
|
|
||||||
"UnmanagedAccount": "未管理账号",
|
|
||||||
"UnavailableAccount": "不可用账号",
|
|
||||||
"EmptyPassword": "空密码",
|
|
||||||
"LongTimeNoVerify": "长时间未验证",
|
|
||||||
"Cloud": "云",
|
|
||||||
"Device": "设备",
|
|
||||||
"SecretReset": "可改密",
|
|
||||||
"EditSecret": "编辑密文",
|
|
||||||
"VerifySecret": "验证密文",
|
|
||||||
"CopyToAsset": "复制到资产",
|
|
||||||
"MoveToAsset": "移动到资产",
|
|
||||||
"SelectProtocol": "可选择的协议",
|
|
||||||
"Report": "报告",
|
|
||||||
"Record": "记录",
|
|
||||||
"DiscoveredAccountList": "发现账号",
|
|
||||||
"AccountDiscoverTask": "账号发现",
|
"AccountDiscoverTask": "账号发现",
|
||||||
"ExecutionRecord": "执行记录",
|
"ExecutionSummary": "执行汇总"
|
||||||
"ExecutionSummary": "执行状态",
|
|
||||||
"FoundAccountInAssetDeleteMsg": "删除从系统资产中发现的找好",
|
|
||||||
"RemoteAssetFoundAccountDeleteMsg": "删除从远端资产中发现的找好",
|
|
||||||
"PushAccountHelpText": "若账号已存在,则使用账号密文进行推送;若账号不存在,则根据填写的密文创建账号,然后进行推送。"
|
|
||||||
}
|
}
|
File diff suppressed because it is too large
Load Diff
|
@ -171,6 +171,7 @@
|
||||||
"Select account": "Select account",
|
"Select account": "Select account",
|
||||||
"Send command": "Send command",
|
"Send command": "Send command",
|
||||||
"Send text to all ssh terminals": "Send text to all ssh terminals",
|
"Send text to all ssh terminals": "Send text to all ssh terminals",
|
||||||
|
"SessionIsBeingMonitored": "session is being monitored",
|
||||||
"Set reusable": "Set reusable",
|
"Set reusable": "Set reusable",
|
||||||
"Setting": "Setting",
|
"Setting": "Setting",
|
||||||
"Settings or basic settings": "Settings → Basic Settings",
|
"Settings or basic settings": "Settings → Basic Settings",
|
||||||
|
@ -232,6 +233,5 @@
|
||||||
"start time": "start time",
|
"start time": "start time",
|
||||||
"success": "success",
|
"success": "success",
|
||||||
"system user": "system user",
|
"system user": "system user",
|
||||||
"user": "user",
|
"user": "user"
|
||||||
"SessionIsBeingMonitored": "session is being monitored"
|
|
||||||
}
|
}
|
|
@ -42,7 +42,6 @@
|
||||||
"CommandBar": "コマンドバー",
|
"CommandBar": "コマンドバー",
|
||||||
"Confirm": "確認",
|
"Confirm": "確認",
|
||||||
"Connect": "接続",
|
"Connect": "接続",
|
||||||
"Connect Method": "接続方法",
|
|
||||||
"Connect checked": "接続済み",
|
"Connect checked": "接続済み",
|
||||||
"Connect command line": "接続コマンドライン",
|
"Connect command line": "接続コマンドライン",
|
||||||
"Connect method": "接続方法",
|
"Connect method": "接続方法",
|
||||||
|
@ -113,7 +112,6 @@
|
||||||
"LoginExpireMsg": "現在のログインはタイムアウトしました。ウィンドウを閉じないでください。新しいウィンドウでログインすると現在のページが復元されます。復元されない場合は、ページを更新してください。",
|
"LoginExpireMsg": "現在のログインはタイムアウトしました。ウィンドウを閉じないでください。新しいウィンドウでログインすると現在のページが復元されます。復元されない場合は、ページを更新してください。",
|
||||||
"Low Speed Broadband (256 Kbps - 2 Mbps)": "低速ブロードバンド (256 Kbps - 2 Mbps)",
|
"Low Speed Broadband (256 Kbps - 2 Mbps)": "低速ブロードバンド (256 Kbps - 2 Mbps)",
|
||||||
"Manual accounts": "手動アカウント",
|
"Manual accounts": "手動アカウント",
|
||||||
"MenuAccountTemplates": "アカウントテンプレート",
|
|
||||||
"Module": "ユニット",
|
"Module": "ユニット",
|
||||||
"Multi Screen": "マルチスクリーン",
|
"Multi Screen": "マルチスクリーン",
|
||||||
"My applications": "私の応用",
|
"My applications": "私の応用",
|
||||||
|
@ -130,7 +128,6 @@
|
||||||
"No permission": "権限がありません",
|
"No permission": "権限がありません",
|
||||||
"No protocol available": "利用可能なプロトコルがありません",
|
"No protocol available": "利用可能なプロトコルがありません",
|
||||||
"NoTabs": "ウィンドウなし",
|
"NoTabs": "ウィンドウなし",
|
||||||
"Normal accounts": "通常のログインアカウント",
|
|
||||||
"Not quick command": "非高速コマンド",
|
"Not quick command": "非高速コマンド",
|
||||||
"Open in new window": "新しいウィンドウが開きます",
|
"Open in new window": "新しいウィンドウが開きます",
|
||||||
"Operator": "オペレーター",
|
"Operator": "オペレーター",
|
||||||
|
@ -145,7 +142,6 @@
|
||||||
"Port": "ポート",
|
"Port": "ポート",
|
||||||
"Protocol": "プロトコル",
|
"Protocol": "プロトコル",
|
||||||
"Protocol: ": "プロトコル: {{value}}",
|
"Protocol: ": "プロトコル: {{value}}",
|
||||||
"Question answer": "質問-答え",
|
|
||||||
"RDP Client": "RDPクライアント",
|
"RDP Client": "RDPクライアント",
|
||||||
"RDP File": "RDPファイル",
|
"RDP File": "RDPファイル",
|
||||||
"RDP client options": "RDPクライアントオプション",
|
"RDP client options": "RDPクライアントオプション",
|
||||||
|
@ -158,7 +154,6 @@
|
||||||
"Refresh": "リフレッシュ",
|
"Refresh": "リフレッシュ",
|
||||||
"Remember password": "パスワードを覚える",
|
"Remember password": "パスワードを覚える",
|
||||||
"Remember select": "選択を覚える",
|
"Remember select": "選択を覚える",
|
||||||
"Remote apps": "リモートアプリケーション",
|
|
||||||
"RemoteApp": "リモートアプリケーション",
|
"RemoteApp": "リモートアプリケーション",
|
||||||
"Reselect connection method": "資産の接続方法の再選択",
|
"Reselect connection method": "資産の接続方法の再選択",
|
||||||
"Resume": "タスクを再開",
|
"Resume": "タスクを再開",
|
||||||
|
@ -174,7 +169,6 @@
|
||||||
"Select account": "システムユーザーの選択",
|
"Select account": "システムユーザーの選択",
|
||||||
"Send command": "コマンドを送信",
|
"Send command": "コマンドを送信",
|
||||||
"Send text to all ssh terminals": "すべてのssh端末にテキストを送信します",
|
"Send text to all ssh terminals": "すべてのssh端末にテキストを送信します",
|
||||||
"Send text to current ssh terminals": "現在の SSH 端末にテキストを送信する",
|
|
||||||
"SessionIsBeingMonitored": "会話が監視されています。",
|
"SessionIsBeingMonitored": "会話が監視されています。",
|
||||||
"Set reusable": "再利用可能な",
|
"Set reusable": "再利用可能な",
|
||||||
"Setting": "設定",
|
"Setting": "設定",
|
||||||
|
@ -183,7 +177,6 @@
|
||||||
"Show left manager": "左サイドバーを表示",
|
"Show left manager": "左サイドバーを表示",
|
||||||
"Skip": "スキップ",
|
"Skip": "スキップ",
|
||||||
"Skip manual password": "手動パスワードウィンドウをスキップします",
|
"Skip manual password": "手動パスワードウィンドウをスキップします",
|
||||||
"Special account": "特別なアカウント",
|
|
||||||
"Special accounts": "特別ログインアカウント",
|
"Special accounts": "特別ログインアカウント",
|
||||||
"Speed": "スピード",
|
"Speed": "スピード",
|
||||||
"Split connect": "スクリーン接続",
|
"Split connect": "スクリーン接続",
|
||||||
|
|
|
@ -112,7 +112,6 @@
|
||||||
"LoginExpireMsg": "O login atual excedeu o tempo limite, por favor, não feche a janela. Após o login na nova janela, será possível restaurar a página atual. Se não restaurar, por favor atualize a página.",
|
"LoginExpireMsg": "O login atual excedeu o tempo limite, por favor, não feche a janela. Após o login na nova janela, será possível restaurar a página atual. Se não restaurar, por favor atualize a página.",
|
||||||
"Low Speed Broadband (256 Kbps - 2 Mbps)": "Banda larga de baixa velocidade (256 Kbps - 2 Mbps)",
|
"Low Speed Broadband (256 Kbps - 2 Mbps)": "Banda larga de baixa velocidade (256 Kbps - 2 Mbps)",
|
||||||
"Manual accounts": "Conta manual",
|
"Manual accounts": "Conta manual",
|
||||||
"MenuAccountTemplates": "Modelo de conta",
|
|
||||||
"Module": "Módulo",
|
"Module": "Módulo",
|
||||||
"Multi Screen": " Exibição Multi-Tela ",
|
"Multi Screen": " Exibição Multi-Tela ",
|
||||||
"My applications": " Meu Aplicativo ",
|
"My applications": " Meu Aplicativo ",
|
||||||
|
|
|
@ -112,7 +112,6 @@
|
||||||
"LoginExpireMsg": "当前登录已超时,请不要关闭窗口。在新的窗口登录后即可恢复当前页面,如未恢复请刷新页面。",
|
"LoginExpireMsg": "当前登录已超时,请不要关闭窗口。在新的窗口登录后即可恢复当前页面,如未恢复请刷新页面。",
|
||||||
"Low Speed Broadband (256 Kbps - 2 Mbps)": "低速宽带 (256 Kbps - 2 Mbps)",
|
"Low Speed Broadband (256 Kbps - 2 Mbps)": "低速宽带 (256 Kbps - 2 Mbps)",
|
||||||
"Manual accounts": "手动账号",
|
"Manual accounts": "手动账号",
|
||||||
"MenuAccountTemplates": "账号模版",
|
|
||||||
"Module": "模块",
|
"Module": "模块",
|
||||||
"Multi Screen": "多屏显示",
|
"Multi Screen": "多屏显示",
|
||||||
"My applications": "我的应用",
|
"My applications": "我的应用",
|
||||||
|
@ -170,6 +169,7 @@
|
||||||
"Select account": "选择账号",
|
"Select account": "选择账号",
|
||||||
"Send command": "发送命令",
|
"Send command": "发送命令",
|
||||||
"Send text to all ssh terminals": "发送文本到所有ssh终端",
|
"Send text to all ssh terminals": "发送文本到所有ssh终端",
|
||||||
|
"SessionIsBeingMonitored": "会话正在被监控",
|
||||||
"Set reusable": "开启复用",
|
"Set reusable": "开启复用",
|
||||||
"Setting": "设置",
|
"Setting": "设置",
|
||||||
"Settings or basic settings": "菜单设置 → 基本设置",
|
"Settings or basic settings": "菜单设置 → 基本设置",
|
||||||
|
@ -230,6 +230,5 @@
|
||||||
"start time": "开始时间",
|
"start time": "开始时间",
|
||||||
"success": "成功",
|
"success": "成功",
|
||||||
"system user": "系统用户",
|
"system user": "系统用户",
|
||||||
"user": "用户",
|
"user": "用户"
|
||||||
"SessionIsBeingMonitored": "会话正在被监控"
|
|
||||||
}
|
}
|
|
@ -42,7 +42,6 @@
|
||||||
"CommandBar": "指令欄",
|
"CommandBar": "指令欄",
|
||||||
"Confirm": "確認",
|
"Confirm": "確認",
|
||||||
"Connect": "連接",
|
"Connect": "連接",
|
||||||
"Connect Method": "連接方式",
|
|
||||||
"Connect checked": "連接選中",
|
"Connect checked": "連接選中",
|
||||||
"Connect command line": "連接命令行",
|
"Connect command line": "連接命令行",
|
||||||
"Connect method": "連線方式",
|
"Connect method": "連線方式",
|
||||||
|
@ -113,7 +112,6 @@
|
||||||
"LoginExpireMsg": "目前登入已逾時,請不要關閉視窗。在新的視窗登入後即可恢復目前頁面,如未恢復請重新整理頁面。",
|
"LoginExpireMsg": "目前登入已逾時,請不要關閉視窗。在新的視窗登入後即可恢復目前頁面,如未恢復請重新整理頁面。",
|
||||||
"Low Speed Broadband (256 Kbps - 2 Mbps)": "低速寬帶 (256 Kbps - 2 Mbps)",
|
"Low Speed Broadband (256 Kbps - 2 Mbps)": "低速寬帶 (256 Kbps - 2 Mbps)",
|
||||||
"Manual accounts": "手動帳號",
|
"Manual accounts": "手動帳號",
|
||||||
"MenuAccountTemplates": "帳號範本",
|
|
||||||
"Module": "模組",
|
"Module": "模組",
|
||||||
"Multi Screen": "多屏顯示",
|
"Multi Screen": "多屏顯示",
|
||||||
"My applications": "我的應用",
|
"My applications": "我的應用",
|
||||||
|
@ -144,7 +142,6 @@
|
||||||
"Port": "埠",
|
"Port": "埠",
|
||||||
"Protocol": "協議",
|
"Protocol": "協議",
|
||||||
"Protocol: ": "協議: {{value}}",
|
"Protocol: ": "協議: {{value}}",
|
||||||
"Question answer": "智慧問答",
|
|
||||||
"RDP Client": "RDP 用戶端",
|
"RDP Client": "RDP 用戶端",
|
||||||
"RDP File": "RDP 文件",
|
"RDP File": "RDP 文件",
|
||||||
"RDP client options": "RDP 用戶端選項",
|
"RDP client options": "RDP 用戶端選項",
|
||||||
|
@ -157,7 +154,6 @@
|
||||||
"Refresh": "刷新",
|
"Refresh": "刷新",
|
||||||
"Remember password": "記住密碼",
|
"Remember password": "記住密碼",
|
||||||
"Remember select": "記住選擇",
|
"Remember select": "記住選擇",
|
||||||
"Remote apps": "遠程應用",
|
|
||||||
"RemoteApp": "遠端應用",
|
"RemoteApp": "遠端應用",
|
||||||
"Reselect connection method": "可重新選擇連接方式",
|
"Reselect connection method": "可重新選擇連接方式",
|
||||||
"Resume": "恢復",
|
"Resume": "恢復",
|
||||||
|
@ -173,7 +169,6 @@
|
||||||
"Select account": "選擇帳號",
|
"Select account": "選擇帳號",
|
||||||
"Send command": "發送命令",
|
"Send command": "發送命令",
|
||||||
"Send text to all ssh terminals": "發送文本到所有ssh終端",
|
"Send text to all ssh terminals": "發送文本到所有ssh終端",
|
||||||
"Send text to current ssh terminals": "發送文本到當前ssh終端",
|
|
||||||
"SessionIsBeingMonitored": "對話正在被監控。",
|
"SessionIsBeingMonitored": "對話正在被監控。",
|
||||||
"Set reusable": "開啟復用",
|
"Set reusable": "開啟復用",
|
||||||
"Setting": "設置",
|
"Setting": "設置",
|
||||||
|
|
Loading…
Reference in New Issue