merge: with dev

pull/14943/head
ibuler 2025-02-27 17:05:35 +08:00
commit 93810fb0db
16 changed files with 149 additions and 1146 deletions

View File

@ -1,6 +1,7 @@
from django.http import HttpResponse
from django.shortcuts import get_object_or_404
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.decorators import action
from rest_framework.response import Response
@ -115,9 +116,9 @@ class AutomationExecutionViewSet(
)
return Response({'task': task.id}, status=status.HTTP_201_CREATED)
@xframe_options_sameorigin
@action(methods=['get'], detail=True, url_path='report')
def report(self, request, *args, **kwargs):
execution = self.get_object()
report = execution.manager.gen_report()
return HttpResponse(report)

View File

@ -129,7 +129,7 @@ class AccountRiskViewSet(OrgBulkModelViewSet):
handler = RiskHandler(asset=asset, username=username, request=self.request)
data = handler.handle(act, risk)
if not data:
data = {"message": "Success"}
return Response(data={"message": "Success"})
s = serializers.AccountRiskSerializer(instance=data)
return Response(data=s.data)

View File

@ -2,6 +2,7 @@
#
from django.http import HttpResponse
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.decorators import action
from rest_framework.response import Response
@ -48,6 +49,7 @@ class DiscoverAccountsExecutionViewSet(AutomationExecutionViewSet):
queryset = queryset.filter(automation__type=self.tp)
return queryset
@xframe_options_sameorigin
@action(methods=["get"], detail=False, url_path="adhoc")
def adhoc(self, request, *args, **kwargs):
asset_id = request.query_params.get("asset_id")

View File

@ -130,7 +130,6 @@ class AssetViewSet(SuggestionMixin, OrgBulkModelViewSet):
def get_queryset(self):
queryset = super().get_queryset()
if queryset.model.__name__ != 'Asset':
print("get query prefetch")
queryset = queryset.select_related('asset_ptr')
return queryset

View File

@ -32,6 +32,7 @@
"ExportCurrent": "Export current page",
"ExportData": "Export data",
"FetchError": "Error while fetching data",
"Format": "Format",
"FormatHotKey": "Format (Ctrl + L)",
"InitializeDatasource": "Initialize datasource",
"InitializeDatasourceFailed": "Initialize datasource failed",
@ -60,6 +61,7 @@
"Save": "Save",
"SaveSQL": "Save SQL",
"SaveSucceed": "Save succeed",
"Scope": "Scope",
"SelectSQL": "Select SQL",
"SessionClosedBy": "This session has been closed by %s.",
"SessionFinished": "Session finished",
@ -78,7 +80,5 @@
"ViewData": "View data",
"WaitCommandReviewMessage": "The review request has been initiated, please wait for the review results",
"Warning": "Warning",
"initializingDatasourceFailedMessage": "Connection failed, please check if the database connection configuration is correct",
"Scope": "Scope",
"Format": "Format"
}
"initializingDatasourceFailedMessage": "Connection failed, please check if the database connection configuration is correct"
}

View File

@ -32,6 +32,7 @@
"ExportCurrent": "导出当前页面",
"ExportData": "导出数据",
"FetchError": "获取数据失败",
"Format": "格式",
"FormatHotKey": "格式化 (Ctrl + L)",
"InitializeDatasource": "初始化数据源",
"InitializeDatasourceFailed": "初始化数据源失败",
@ -60,6 +61,7 @@
"Save": "保存",
"SaveSQL": "保存 SQL",
"SaveSucceed": "保存成功",
"Scope": "范围",
"SelectSQL": "选择 SQL",
"SessionClosedBy": "会话被 %s 关闭",
"SessionFinished": "会话已结束",
@ -78,7 +80,5 @@
"ViewData": "查看数据",
"WaitCommandReviewMessage": "复核请求已发起, 请等待复核结果",
"Warning": "警告",
"initializingDatasourceFailedMessage": "连接失败,请检查数据库连接配置是否正确",
"Scope": "范围",
"Format": "格式"
}
"initializingDatasourceFailedMessage": "连接失败,请检查数据库连接配置是否正确"
}

View File

@ -16,11 +16,12 @@
"AccountBackupList": "Backup account",
"AccountBackupUpdate": "Update account backup",
"AccountChangeSecretDetail": "Change account secret details",
"AccountData": "Account data",
"AccountDeleteConfirmMsg": "Delete account, continue?",
"AccountDeleted": "Account deleted",
"AccountDiscoverDetail": "Gather account details",
"AccountDiscoverList": "Discover accounts",
"AccountDiscover": "Discover accounts",
"AccountDiscoverTaskCreate": "Create discover accounts task",
"AccountDiscoverTask": "Discover accounts tasks",
"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).",
"AccountList": "Accounts",
@ -30,11 +31,15 @@
"AccountPushDetail": "Push account details",
"AccountPushList": "Push accounts",
"AccountPushUpdate": "Update push account",
"AccountResult": "Account secret change success/failure",
"AccountSessions": "Account Sessions",
"AccountStorage": "Account storage",
"AccountSummary": "Account summary",
"AccountTemplate": "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.",
"AccountTotal": "Account total",
"AccountType": "Account Type",
"Accounts": "Accounts",
"Action": "Action",
"ActionCount": "Action count",
@ -131,7 +136,6 @@
"AssetAclCreate": "Create asset connect rule",
"AssetAclDetail": "Asset connect rule details",
"AssetAclList": "Asset connect ACLs",
"AssetConnect": "Asset connect",
"AssetAclUpdate": "Update the asset connect rules",
"AssetAddress": "Asset (ip/hostname)",
"AssetAmount": "Asset amount",
@ -139,6 +143,7 @@
"AssetBulkUpdateTips": "Network devices, cloud services, web, batch updating of zones not supported",
"AssetChangeSecretCreate": "Create account secret change",
"AssetChangeSecretUpdate": "Update account secret change",
"AssetConnect": "Asset connect",
"AssetData": "Asset data",
"AssetDetail": "Asset details",
"AssetList": "Assets",
@ -175,6 +180,7 @@
"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",
"Authentication": "Authentication",
"AuthorizedKeysChanged": "Authorized keys changed",
"AutoPush": "Auto push",
"Automation": "Automation",
"AverageTimeCost": "Average spend time",
@ -265,7 +271,9 @@
"ChangePassword": "Change password",
"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.",
"ChangeSecretFailAccounts": "Secret Change Failed Accounts",
"ChangeSecretParams": "Change secret parameters",
"ChangeSecretTaskStatus": "Secret Change Task Status",
"ChangeViewHelpText": "Click to switch different views",
"Chat": "Chat",
"ChatAI": "Chat AI",
@ -291,6 +299,7 @@
"CloseConfirmMessage": "File has changed, save?",
"CloseStatus": "Completed",
"Closed": "Completed",
"Cloud": "Cloud",
"CloudAccountCreate": "Create a cloud account",
"CloudAccountDetail": "Details of cloud account",
"CloudAccountList": "Accounts",
@ -337,14 +346,15 @@
"Connect": "Connect",
"ConnectAssets": "Access assets",
"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).",
"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",
"ConnectMethodAclDetail": "Connect method control details",
"ConnectMethodAclList": "Connect method ACLs",
"ConnectMethodAclUpdate": "Update the connect method control",
"ConnectMethodAcls": "Connect method ACLs",
"ConnectWebSocketError": "Connection to websocket failed",
"Connectable": "Connectable",
"ConnectionDropped": "Connection disconnected",
"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.",
@ -356,8 +366,9 @@
"Continue": "Continue",
"ConvenientOperate": "Convenient action",
"Copy": "Copy",
"CopySuccess": "Copy successful",
"CopyFailed": "Copy failed",
"CopySuccess": "Copy successful",
"CopyToAsset": "Copy to asset",
"Corporation": "Company",
"Create": "Create",
"CreateAccessKey": "Create access key",
@ -383,6 +394,7 @@
"CrontabOfCreateUpdatePage": "",
"CurrentConnectionUsers": "Online users",
"CurrentConnections": "Current connections",
"CurrentStatus": "Current Status",
"CurrentUserVerify": "Verify current user",
"Custom": "Custom",
"CustomCol": "Customize display columns",
@ -425,6 +437,7 @@
"Datetime": "Datetime",
"Day": "Day",
"DeclassificationLogNum": "Password change logs",
"DeeplyThoughtAbout": "Deeply thought about",
"DefaultDatabase": "Default database",
"DefaultPort": "Default port",
"DefaultValue": "Default value",
@ -448,6 +461,7 @@
"DetectEngines": "Detect engines",
"DetectResults": "Detect results",
"DetectTasks": "Detect tasks",
"Device": "Device",
"DeviceCreate": "Create asset - device",
"DeviceUpdate": "Update the asset - device",
"Digit": "Number",
@ -462,6 +476,7 @@
"DiscoveredAccountList": "Discovered accounts",
"DisplayName": "Name",
"Docs": "Docs",
"Documentation": "Documentation",
"Download": "Download",
"DownloadCenter": "Download",
"DownloadImportTemplateMsg": "Download creation template",
@ -475,6 +490,7 @@
"DynamicUsername": "Dynamic username",
"Edit": "Edit",
"EditRecipient": "Edit recipient",
"EditSecret": "Edit secret",
"Edition": "Version",
"Effective": "Effective",
"Email": "Email",
@ -483,6 +499,7 @@
"EmailTemplateHelpTip": "Email template is used for sending emails and includes the email subject prefix and email content",
"EmailTest": "Test connection",
"Empty": "Empty",
"EmptyPassword": "Empty password",
"Enable": "Enable",
"EnableDomain": "Gateway enabled",
"EnableKoKoSSHHelpText": "When switched on, connecting to the asset will display ssh client pull-up method",
@ -515,17 +532,13 @@
"ExecuteOnce": "Execute once",
"ExecutionDetail": "Execution details",
"ExecutionList": "Executions",
"ExecutionRecord": "Execution records",
"ExistError": "This element already exists",
"Existing": "Already exists",
"ExpirationTimeout": "Expiration timeout (seconds)",
"Expire": "Expire",
"QuickFilter": "Quick filter",
"NoResource": "No valid resources",
"Expired": "Expired",
"Export": "Export",
"NeverLogin": "Never login",
"NoMFA": "MFA not enabled",
"LoginBlocked": "Login blocked",
"ExportAll": "Export all",
"ExportOnlyFiltered": "Export filtered 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)",
"FTPUnknownStorageState": "Unknown file storage status, please contact your administrator.",
"FacialFeatures": "Facial features",
"FailCount": "Failure Count",
"Failed": "Failed",
"FailedAsset": "Failed assets",
"FaviconTip": "Note: website icon (suggested image size: 16px*16px)",
@ -564,6 +578,7 @@
"Footer": "Footer",
"ForgotPasswordURL": "Forgot password URL",
"FormatError": "Format error",
"FoundAccountInAssetDeleteMsg": "Delete the found items from the system assets",
"Friday": "Fri",
"From": "From",
"FromTicket": "From the ticket",
@ -588,6 +603,7 @@
"Goto": "Goto",
"GrantedAssets": "Authorized assets",
"GreatEqualThan": "Greater than or equal to",
"GroupChanged": "Group changed",
"GroupsAmount": "User group",
"HTTPSRequiredForSupport": "HTTPS is required for support",
"HandleTicket": "Handle ticket",
@ -602,9 +618,9 @@
"HistoryDate": "Date",
"HistoryPassword": "Historical password",
"HistoryRecord": "History record",
"Host": "Host",
"HostCreate": "Create asset - host",
"HostDeployment": "Deploy publishing machine",
"Host": "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)",
"Hour": "Hour",
@ -695,6 +711,7 @@
"LdapBulkImport": "User import",
"LdapConnectTest": "Test connection",
"LdapLoginTest": "Test login",
"LeakedPassword": "Leaked password",
"Length": "Length",
"LessEqualThan": "Less than or equal to",
"LevelApproval": "Level approval",
@ -715,6 +732,7 @@
"LoginAssetConfirm": "Asset connect review",
"LoginAssetToday": "Active assets today",
"LoginAssets": "Active assets",
"LoginBlocked": "Login blocked",
"LoginConfirm": "Login review",
"LoginConfirmUser": "Confirm by",
"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)",
"Logout": "Sign out",
"LogsAudit": "Activities",
"LongTimeNoVerify": "Long time no verify",
"LongTimePassword": "Long time password",
"Lowercase": "Lowercase",
"LunaSetting": "Luna",
"MFAAllUsers": "Globally: All users",
"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)!",
"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",
"MIN_LENGTH_ERROR": "Passwords must be at least {0} characters.",
"MailRecipient": "Email recipients",
"MailSend": "Sending",
"ManagePlatform": "Manage platform",
"ManualAccount": "Manual account",
"ManualAccountTip": "Manual input of username/password upon login",
"ManualExecution": "Manual execution",
@ -779,6 +799,7 @@
"More": "More",
"MoreActions": "Actions",
"MoveAssetToNode": "Move assets to node",
"MoveToAsset": "Move to asset",
"MsgSubscribe": "Subscription",
"MyAssets": "My assets",
"MyTickets": "Submitted",
@ -787,7 +808,9 @@
"NavHelp": "Navigation",
"Navigation": "Navigation",
"NeedReLogin": "Need to re-login",
"NeverLogin": "Never login",
"New": "Create",
"NewAccountsFound": "New accounts found",
"NewChat": "New chat",
"NewCount": "Add",
"NewCron": "Generate cron",
@ -801,14 +824,18 @@
"Next": "Next",
"No": "No",
"NoAccountFound": "No account found",
"NoAdminAccount": "No admin account",
"NoContent": "No content",
"NoData": "No data available",
"NoFiles": "No file, upload on the left",
"NoLog": "No log",
"NoLoginLongTime": "No login for long time",
"NoMFA": "MFA not enabled",
"NoPermission": "No permissions",
"NoPermission403": "403 no permission",
"NoPermissionInGlobal": "No permission in GLOBAL",
"NoPermissionVew": "No permission to view the current page",
"NoResource": "No valid resources",
"NoUnreadMsg": "You have unread notifications",
"Node": "Node",
"NodeInformation": "Node information",
@ -839,6 +866,7 @@
"OneAssignee": "First-level approver",
"OneAssigneeType": "First-level handler type",
"OneClickReadMsg": "Are you sure you want to mark all as read?",
"OngoingPwdChange": "Ongoing Secret Change",
"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.",
"OnlineSessions": "Online sessions",
@ -883,6 +911,8 @@
"Password": "Password",
"PasswordAndSSHKey": "Password & SSH key",
"PasswordChangeLog": "Password change",
"PasswordError": "Password error",
"PasswordExpired": "Password expired",
"PasswordPlaceholder": "Please enter password",
"PasswordRecord": "Password record",
"PasswordRule": "Password rules",
@ -935,6 +965,7 @@
"Project": "Project name",
"Prompt": "Prompt",
"Proportion": "Proportion",
"ProportionOfAccountTypes": "Account type proportion",
"ProportionOfAssetTypes": "Asset type proportion",
"Protocol": "Protocol",
"Protocols": "Protocols",
@ -948,6 +979,7 @@
"PublishStatus": "Release status",
"Push": "Push",
"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.",
"PushParams": "Push parameters",
"Qcloud": "Tencent cloud",
@ -955,6 +987,7 @@
"QingYunPrivateCloud": "Qingyun private cloud",
"Queue": "Queue",
"QuickAdd": "Quick add",
"QuickFilter": "Quick filter",
"QuickJob": "Adhoc",
"QuickUpdate": "Quick update",
"Radius": "Radius",
@ -965,13 +998,20 @@
"RealTimeData": "Real-time",
"Reason": "Reason",
"Receivers": "Receiver",
"Recent (7 days)": "Recent (7 days)",
"RecentLogin": "Recent login",
"RecentPasswordChangeFailed": "Recent password change failed",
"RecentSession": "Recent sessions",
"RecentlyChangedPassword": "Recently changed password",
"RecentlyDiscovered": "Recently discovered",
"RecentlyLoggedIn": "Recently logged in",
"RecentlyModified": "Recently modified",
"RecentlyUsed": "Recently",
"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.",
"RecipientServer": "Receiving server",
"Reconnect": "Reconnect",
"Record": "Record",
"Refresh": "Refresh",
"RefreshHardware": "Refresh hardware info",
"Regex": "Regular expression",
@ -988,6 +1028,7 @@
"RelevantCommand": "Command",
"RelevantSystemUser": "System user",
"RemoteAddr": "Remote address",
"RemoteAssetFoundAccountDeleteMsg": "Delete the found remote assets",
"Remove": "Remove",
"RemoveAssetFromNode": "Remove assets from node",
"RemoveSelected": "Remove selected",
@ -995,6 +1036,7 @@
"RemoveWarningMsg": "Are you sure you want to remove",
"Rename": "Rename",
"RenameNode": "Rename node",
"RepeatedPassword": "Repeated password",
"ReplaceNodeAssetsAdminUserWithThis": "Replace asset admin",
"Replay": "Playback",
"ReplaySession": "Session replay",
@ -1002,6 +1044,7 @@
"ReplayStorageCreateUpdateHelpMessage": "Notice: current sftp storage only supports account backup, video storage is not yet supported.",
"ReplayStorageUpdate": "Update the object storage",
"Reply": "Reply",
"Report": "Report",
"RequestAssetPerm": "Request asset authorization",
"RequestPerm": "Authorization request",
"RequestTickets": "New ticket",
@ -1024,9 +1067,10 @@
"ResetSSHKey": "Reset ssh key",
"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?",
"ResetSecret": "Secret can be changed",
"ResolveSelected": "Resolve selected",
"Resource": "Resources",
"ResourceType": "Resource type",
"ResolveSelected": "Resolve selected",
"RestoreButton": "Restore",
"RestoreDefault": "Reset to default",
"RestoreDialogMessage": "Are you sure you want to restore to default initialization?",
@ -1038,15 +1082,14 @@
"RetrySelected": "Retry selected",
"Reviewer": "Approvers",
"RiskDetection": "Risk detection",
"RiskyAccount": "Risky account",
"Role": "Role",
"RoleManage": "Manage role",
"RoleCreate": "Create role",
"RoleDetail": "Role details",
"RoleInfo": "Role information",
"RoleList": "Roles",
"RoleManage": "Manage role",
"RoleUpdate": "Update the role",
"UpgradeEnterpriseEditionHelpText": "Upgrade to enterprise edition to enjoy this feature",
"UpgradeEnterpriseEdition": "Upgrade to Enterprise Edition",
"RoleUsers": "Authorized users",
"Rows": "Row",
"Rule": "Condition",
@ -1098,6 +1141,7 @@
"SaveSetting": "Synchronization settings",
"SaveSuccess": "Save successful",
"SaveSuccessContinueMsg": "Creation successful, you can continue to add content after updating.",
"ScheduledTaskCount": "Scheduled Task Count",
"ScrollToBottom": "Scroll to the bottom",
"ScrollToTop": "Scroll to top",
"Search": "Search",
@ -1105,6 +1149,7 @@
"Secret": "Password",
"SecretKey": "Key",
"SecretKeyStrategy": "Password policy",
"SecretReset": "Secret reset",
"Secure": "Security",
"Security": "Security",
"Select": "Select",
@ -1117,6 +1162,7 @@
"SelectKeyOrCreateNew": "Select tag key or create new one",
"SelectLabelFilter": "Select tag for search",
"SelectProperties": "Attributes",
"SelectProtocol": "Select protocol",
"SelectProvider": "Select provider",
"SelectProviderMsg": "Please select a cloud platform",
"SelectResource": "Select resources",
@ -1130,6 +1176,7 @@
"SerialNumber": "Serial number",
"Server": "Server",
"ServerAccountKey": "Service account key",
"ServerBusyRetry": "The server is busy, please try again later.",
"ServerError": "Server error",
"ServerTime": "Server time",
"Session": "Session",
@ -1209,7 +1256,9 @@
"Success": "Success",
"Success/Total": "Success/Total",
"SuccessAsset": "Successful assets",
"SuccessCount": "Success Count",
"SuccessfulOperation": "Action successful",
"SudoChanged": "Sudo changed",
"Summary": "Summary",
"Summary(success/total)": " overview( successful/total )",
"Sunday": "Sun",
@ -1259,8 +1308,11 @@
"Target": "Target",
"TargetResources": "Target resource",
"Task": "Task",
"TaskCount": "Task Count",
"TaskDetail": "Task details",
"TaskDistribution": "Task distribution",
"TaskDone": "Task finished",
"TaskExecutionCount": "Task Execution Count",
"TaskID": "Task id",
"TaskList": "Tasks",
"TaskMonitor": "Monitoring",
@ -1331,6 +1383,7 @@
"UPPER_CASE_REQUIRED": "Must contain uppercase letters",
"UnFavoriteSucceed": "Unfavorite Successful",
"UnSyncCount": "Not synced",
"UnavailableAccount": "Unavailable account",
"Unbind": "Unlink",
"UnbindHelpText": "Local users are the source of this authentication and cannot be unbound",
"Unblock": "Unlock",
@ -1340,6 +1393,7 @@
"Uninstall": "Uninstall",
"UniqueError": "Only one of the following properties can be set",
"UnlockSuccessMsg": "Unlock successful",
"UnmanagedAccount": "Unmanaged account",
"UnselectedOrg": "No organization selected",
"UnselectedUser": "No user selected",
"UpDownload": "Upload & download",
@ -1357,6 +1411,8 @@
"UpdateSelected": "Update selected",
"UpdateSuccessMsg": "Successfully updated !",
"Updated": "Updated",
"UpgradeEnterpriseEdition": "Upgrade to Enterprise Edition",
"UpgradeEnterpriseEditionHelpText": "Upgrade to enterprise edition to enjoy this feature",
"Upload": "Upload",
"UploadCsvLth10MHelpText": "Only csv/xlsx can be uploaded, and no more than 10m",
"UploadDir": "Upload path",
@ -1381,12 +1437,12 @@
"UserGroupUpdate": "Update the user group",
"UserGroups": "Groups",
"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)",
"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",
"UserLoginAclDetail": "User login control details",
"UserLoginAclList": "User login ACLs",
"UserLogin": "User login",
"UserLoginAclUpdate": "Update the user login control",
"UserLoginLimit": "User restriction",
"UserLoginTrend": "Account login trend",
@ -1407,6 +1463,8 @@
"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.",
"VerificationCodeSent": "Verification code has been sent",
"VerifyFace": "Verify face",
"VerifySecret": "Verify secret",
"VerifySignTmpl": "Sms template",
"Version": "Version",
"View": "View",
@ -1426,6 +1484,7 @@
"WeCom": "WeCom",
"WeComOAuth": "WeCom OAuth",
"WeComTest": "Test",
"WeakPassword": "Weak password",
"WebCreate": "Create asset - web",
"WebHelpMessage": "Web type assets depend on remote applications, please go to system settings and configure in remote applications",
"WebSocketDisconnect": "Websocket disconnected",
@ -1452,66 +1511,6 @@
"disallowSelfUpdateFields": "Not allowed to modify the current fields yourself",
"forceEnableMFAHelpText": "If force enable, user can not disable by themselves",
"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",
"Documentation": "Documentation",
"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."
"setVariable": "Set variable"
}

View File

@ -15,7 +15,6 @@
"AccountBackupDetail": "アカウントバックアップの詳細",
"AccountBackupList": "アカウントバックアップリスト",
"AccountBackupUpdate": "アカウントバックアップの更新",
"AccountChangeSecret": "アカウントパスワード変更",
"AccountChangeSecretDetail": "アカウントのパスワード変更詳細",
"AccountData": "アカウントデータ",
"AccountDeleteConfirmMsg": "アカウントを削除しますか?続行しますか?",
@ -24,7 +23,6 @@
"AccountDiscoverList": "アカウントの収集",
"AccountDiscoverTask": "アカウントを発見",
"AccountDiscoverTaskCreate": "アカウント収集タスクの作成",
"AccountDiscoverTaskList": "アカウント収集タスク",
"AccountDiscoverTaskUpdate": "アカウント収集タスクを更新",
"AccountExportTips": "エクスポートする情報には口座の暗号文が含まれ、これは機密情報に関連しています。エクスポートする形式は、暗号化されたzipファイルです暗号化パスワードを設定していない場合は、個人情報でファイルの暗号化パスワードを設定してください。",
"AccountList": "クラウドアカウント",
@ -197,7 +195,6 @@
"BaseAccountBackup": "アカウントバックアップ",
"BaseAccountChangeSecret": "アカウントのパスワード変更",
"BaseAccountDiscover": "アカウント収集",
"BaseAccountGather": "アカウント収集",
"BaseAccountPush": "アカウントプッシュ",
"BaseAccountTemplate": "アカウントテンプレート",
"BaseApplets": "アプリケーション",
@ -226,24 +223,12 @@
"BaseUserLoginAclList": "ユーザーログイン",
"Basic": "基本設定",
"BasicInfo": "基本情報",
"BasicSetting": "基本設定",
"BasicSettings": "基本設定",
"BasicTools": "基本的なツール",
"BatchActivate": "一括アクティブ化",
"BatchApproval": "大量承認です",
"BatchCommand": "一括コマンド",
"BatchCommandNotExecuted": "未実行コマンド",
"BatchConsent": "一括同意",
"BatchDelete": "一括削除",
"BatchDeployment": "一括デプロイ",
"BatchDisable": "一括無効化",
"BatchProcessing": "バルク処理({number} アイテムが選択されています)",
"BatchReject": "一括拒否",
"BatchRemoval": "一括除去",
"BatchRetry": "一括リトライ",
"BatchScript": "バッチ スクリプト",
"BatchTest": "一括テスト",
"BatchUpdate": "ロット更新",
"BeforeChange": "変更前",
"Beian": "登記",
"BelongAll": "同時に含む",
@ -265,7 +250,6 @@
"CACertificate": "CA 証明書",
"CAS": "CAS",
"CMPP2": "CMPP v2.0",
"CTYunPrivate": "天翼プライベートクラウド",
"CalculationResults": "cron 式のエラー",
"CallRecords": "つうわきろく",
"CanDragSelect": "マウスドラッグで時間帯を選択可能;未選択は全選択と同じです",
@ -282,7 +266,6 @@
"ChangeField": "フィールドの変更",
"ChangeOrganization": "組織の 변경",
"ChangePassword": "パスワード更新",
"ChangeReceiver": "メッセージ受信者の変更",
"ChangeSecret": "アカウントパスワード変更",
"ChangeSecretAccountHelpText": "同じ資産内のアカウントに切り替え元関係がある場合、パスワード変更は同じタスクで実行せず、2 つのタスクに分割して別々に実行する必要があります。",
"ChangeSecretParams": "パスワード変更パラメータ",
@ -303,7 +286,6 @@
"ClearSuccessMsg": "クリアに成功",
"ClickCopy": "クリックでコピー",
"ClientCertificate": "クライアント証明書",
"Clipboard": "クリップボード",
"ClipboardCopyPaste": "クリップボードのコピーペースト",
"Clone": "クローン",
"Close": "閉じる",
@ -322,7 +304,6 @@
"CloudSync": "クラウド同期",
"CloudSyncConfig": "クラウド同期構成",
"CloudUpdate": "資産の更新-クラウドプラットフォーム",
"Clouds": "クラウド プラットフォーム",
"Cluster": "クラスター",
"CollectionSucceed": "お気に入り登録成功",
"Command": "コマンド",
@ -485,7 +466,6 @@
"Docs": "文書",
"Download": "ダウンロード",
"DownloadCenter": "ダウンロードセンター",
"DownloadFTPFileTip": "現在のActionはファイルを記録せず、またはファイルのサイズが閾値デフォルト100Mを超えている、またはまだ対応するストレージに保存されていません。",
"DownloadImportTemplateMsg": "テンプレートをダウンロードで作成",
"DownloadReplay": "ビデオのダウンロード",
"DownloadUpdateTemplateMsg": "更新テンプレートをダウンロード",
@ -536,7 +516,6 @@
"ExcludeSymbol": "文字の除外",
"ExecCloudSyncErrorMsg": "クラウドアカウントの設定が完全でないので、更新して再試行してください",
"Execute": "実行",
"ExecuteAfterSaving": "保存後に実行",
"ExecuteOnce": "一度実行する",
"ExecutionDetail": "Action詳細",
"ExecutionList": "実行記録",
@ -600,15 +579,12 @@
"GatewayList": "ゲートウェイリスト",
"GatewayPlatformHelpText": "ゲートウェイプラットフォームは、Gatewayで始まるプラットフォームのみ選択可能です。",
"GatewayUpdate": "ゲートウェイの更新",
"GatherAccountsHelpText": "資産上のアカウント情報を収集します。収集したアカウント情報はシステムにインポートでき、統一的に管理するのが便利です",
"GatheredAccountList": "収集したアカウント",
"General": "基本",
"GeneralAccounts": "一般アカウント",
"GeneralSetting": "汎用設定",
"Generate": "生成",
"GenerateAccounts": "アカウント再生成",
"GenerateSuccessMsg": "アカウント作成成功",
"GenericSetting": "汎用設定",
"GoHomePage": "ホームページへ行く",
"Goto": "へ移動",
"GrantedAssets": "資産の承認",
@ -622,8 +598,6 @@
"HasImportErrorItemMsg": "インポートに失敗した項目があります、左側の x をクリックして失敗原因を確認し、テーブルを編集した後、失敗した項目を再度インポートできます",
"HashicorpVault": "HCP vault",
"Help": "ヘルプ",
"HelpDocumentTip": "ウェブサイトのナビゲーションバーのURLを変更できます ヘルプ -> ドキュメント",
"HelpSupportTip": "ウェブサイトのナビゲーションバーのURLを変更できます。ヘルプ->サポート",
"HighLoad": "高い",
"HistoricalSessionNum": "歴史的なセッション数",
"History": "履歴記録",
@ -633,7 +607,6 @@
"Host": "資産",
"HostCreate": "資産-ホストの作成",
"HostDeployment": "リリースマシンのデプロイ",
"HostList": "ホストリスト",
"HostUpdate": "資産-ホストの更新",
"HostnameStrategy": "資産ホスト名の生成に使用します。例1. インスタンス名 (instanceDemo); 2. インスタンス名と部分IP後ろ2桁 (instanceDemo-250.1)",
"Hour": "時間",
@ -687,11 +660,6 @@
"InviteSuccess": "招待が成功しました。",
"InviteUser": "ユーザーを招待",
"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",
"IsAlwaysUpdate": "最新の資産を保持",
"IsAlwaysUpdateHelpTip": "同期タスクを実行するたびに、資産情報ホスト名、ip、プラットフォーム、ドメイン、ードなどを同期更新するかどうか",
@ -715,11 +683,6 @@
"LAN": "LAN",
"LDAPUser": "LDAP ユーザー",
"LOWER_CASE_REQUIRED": "小文字を含む必要があります",
"Label": "タグ",
"LabelCreate": "タグを作成",
"LabelInputFormatValidation": "タグの形式が間違っています。正しい形式はname:valueです。",
"LabelList": "タグリスト",
"LabelUpdate": "タグを更新",
"Language": "言語",
"LarkOAuth": "Lark 認証",
"Last30": "最近30回",
@ -807,7 +770,6 @@
"MessageType": "メッセージタイプ",
"MfaLevel": "マルチファクター認証",
"Min": "分",
"MinLengthError": "パスワードは少なくとも {0} 文字必要です",
"MinNumber30": "数字は30以上でなければならない",
"Modify": "修正",
"Module": "モジュール",
@ -851,13 +813,8 @@
"NoPermission403": "403 権限がありません",
"NoPermissionInGlobal": "全体的に権限がありません",
"NoPermissionVew": "現在のページを表示する権限がありません",
"NoPublished": "未発表",
"NoResourceImport": "インポートできるリソースがありません",
"NoSQLProtocol": "非リレーショナルデータベース",
"NoSystemUserWasSelected": "選択されていないシステムユーザー",
"NoUnreadMsg": "未読メッセージなし",
"Node": "ノード",
"NodeAmount": "ノード数",
"NodeInformation": "ノード情報",
"NodeOfNumber": "ノード数",
"NodeSearchStrategy": "ノード検索戦略",
@ -943,7 +900,6 @@
"Pause": "停止",
"PauseTaskSendSuccessMsg": "停止タスクが発行されていますので、しばらくしてから再度更新してください。",
"Pending": "未処理",
"Periodic": "定期的にAction ",
"PermAccount": "認証済みアカウント",
"PermAction": "Actionを承認する",
"PermUserList": "ユーザーへの承認",
@ -972,11 +928,8 @@
"Preferences": "好みの設定",
"PrepareSyncTask": "同期タスクの実行準備中...",
"Primary": "主な",
"PrimaryProtocol": "主要協議は、資産にとって最も基本的で最も一般的に使用されるプロトコルであり、1つのみ設定でき、必ず設定する必要があります",
"Priority": "優先順位",
"PriorityHelpMessage": "1-100、1最低優先度、100最高優先度。複数のユーザーを許可する場合、優先度の高いシステムユーザーはデフォルトのログインユーザーになります",
"PrivateCloud": "プライベートクラウド",
"PrivateIp": "プライベート IP",
"PrivateKey": "秘密鍵",
"Privileged": "特権アカウント",
"PrivilegedFirst": "優先的な特権アカウント",
@ -994,7 +947,6 @@
"Provider": "供給業者",
"Proxy": "代理",
"PublicCloud": "パブリッククラウド",
"PublicIp": "パブリック IP",
"PublicKey": "公開鍵",
"Publish": "公開",
"PublishAllApplets": "すべてのアプリを公開",
@ -1170,7 +1122,6 @@
"SelectAtLeastOneAssetOrNodeErrMsg": "アセットまたはノードは少なくとも一つ選択してください",
"SelectAttrs": "属性の選択",
"SelectByAttr": "プロパティフィルタ",
"SelectCreateMethod": "作り方を選ぶ",
"SelectFile": "ファイル選択",
"SelectKeyOrCreateNew": "タグキーを選択するか、新しいものを作成します",
"SelectLabelFilter": "タグを選択して検索",
@ -1279,11 +1230,6 @@
"Support": "サポート",
"SupportedProtocol": "サポートされているプロトコル",
"SupportedProtocolHelpText": "資産がサポートするプロトコルを設定します。設定ボタンをクリックして、プロトコルのカスタム設定を変更することができます。例えば、SFTPディレクトリやRDP ADドメインなど",
"SwitchPage": "ビューを切り替える",
"SwitchToUser": "Suユーザー",
"SwitchToUserListTips": "次のユーザーからアセットに接続すると、現在のシステムユーザーログインを使用して切り替えます。",
"SymbolSet": "特殊記号集合",
"SymbolSetHelpText": "このタイプのデータベースでサポートされている特殊記号の集合を入力してください。生成されたランダムパスワードにこのようなデータベースでサポートされていない特殊文字があると、変更計画は失敗します",
"Sync": "同期する",
"SyncAction": "同期アクション",
"SyncDelete": "同期削除",
@ -1316,7 +1262,6 @@
"SystemTasks": "タスクリスト",
"SystemTools": "システムツール",
"TableColSetting": "表示属性列の選択",
"TableSetting": "フォームの優先設定",
"TagCreate": "ラベルの作成",
"TagInputFormatValidation": "ラベルの形式が間違っています、正しい形式はname:value",
"TagList": "タグ一覧",
@ -1388,7 +1333,6 @@
"TotalSyncStrategy": "バインドポリシー数(個)",
"Transfer": "転送",
"TriggerMode": "トリガーメソッド",
"True": "はい",
"Tuesday": "火曜日",
"TwoAssignee": "二次受理者",
"TwoAssigneeType": "二次受信者タイプ",

View File

@ -14,18 +14,12 @@
"AccountBackupDetail": "Detalhes do backup da conta",
"AccountBackupList": "Lista de Backup de Contas",
"AccountBackupUpdate": "Atualizar backup da conta",
"AccountChangeSecret": "Alteração de Senha da Conta",
"AccountChangeSecretDetail": "Detalhes da alteração de senha da conta",
"AccountData": " Dados da conta ",
"AccountDeleteConfirmMsg": "Excluir conta, continuar?",
"AccountDeleted": " Exclusão 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). ",
"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",
"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.",
@ -195,7 +189,6 @@
"BaseAccount": "Conta",
"BaseAccountBackup": "Backup de Conta",
"BaseAccountChangeSecret": "Alteração de Senha da Conta",
"BaseAccountGather": "Coleta de Contas",
"BaseAccountPush": "Impulsionar conta",
"BaseAccountTemplate": "Modelo de conta",
"BaseApplets": "Aplicação",
@ -286,7 +279,6 @@
"ClearSuccessMsg": "Limpeza bem-sucedida",
"ClickCopy": "Clicar para copiar",
"ClientCertificate": "Certificado do cliente",
"Clipboard": "Prancheta",
"ClipboardCopyPaste": "Copiar e colar da área de transferência",
"Clone": "Clonar",
"Close": "Desativar",
@ -465,7 +457,6 @@
"Docs": "Documento",
"Download": "Baixar",
"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",
"DownloadReplay": " Baixar vídeo",
"DownloadUpdateTemplateMsg": "Baixar modelo atualizado",
@ -516,7 +507,6 @@
"ExcludeSymbol": " Excluir caracteres",
"ExecCloudSyncErrorMsg": "A configuração da conta em nuvem não está completa, atualize e tente novamente",
"Execute": "Action",
"ExecuteAfterSaving": "Executar após salvar",
"ExecuteOnce": "Executar uma vez",
"ExecutionDetail": "Detalhes da Execução",
"ExecutionList": "Registro de Ação",
@ -580,8 +570,6 @@
"GatewayList": "Lista de Gateways",
"GatewayPlatformHelpText": "Somente uma plataforma que começa com Gateway pode ser selecionada para a plataforma de 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",
"GeneralAccounts": "Conta comum",
"GeneralSetting": "Configuração geral",
@ -610,7 +598,6 @@
"Host": "Ativos",
"HostCreate": "Criar Ativo - Host",
"HostDeployment": "Deploy da máquina de produção",
"HostList": "Lista de hosts",
"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)",
"Hour": "Horas",
@ -664,11 +651,6 @@
"InviteSuccess": "Convite bem-sucedido",
"InviteUser": "Convidar usuário",
"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 ",
"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.",
@ -909,7 +891,6 @@
"Pause": "Pausa",
"PauseTaskSendSuccessMsg": " A tarefa de pausa foi emitida, por favor atualize e verifique mais tarde ",
"Pending": " Pendente",
"Periodic": "Executar regularmente",
"PermAccount": "Conta Autorizada",
"PermAction": "Action autorizado",
"PermUserList": "Usuário autorizado",
@ -940,7 +921,6 @@
"Primary": "Principais",
"Priority": "Prioridade",
"PrivateCloud": "Nuvem privada",
"PrivateIp": "IP privado",
"PrivateKey": "Chave privada",
"Privileged": "Conta Privilegiada",
"PrivilegedFirst": "Conta com privilégios prioritários",
@ -958,7 +938,6 @@
"Provider": "Fornecedor",
"Proxy": "Proxy",
"PublicCloud": "Nuvem pública",
"PublicIp": "IP Público",
"PublicKey": "Chave pública",
"Publish": "Publicação",
"PublishAllApplets": " Publicar todos os aplicativos ",
@ -1274,7 +1253,6 @@
"SystemTasks": "Lista de tarefas",
"SystemTools": "Ferramentas do sistema",
"TableColSetting": "Selecione as colunas de propriedades visíveis",
"TableSetting": "Preferências de formulário",
"TagCreate": " Criar etiqueta ",
"TagInputFormatValidation": "Erro no formato da tag, o formato correto é: name:value",
"TagList": "Lista de tags",

View File

@ -8,14 +8,17 @@
"AccessIP": "IP 白名单",
"AccessKey": "访问密钥",
"Account": "账号信息",
"AccountActivities": "账号活动",
"AccountBackup": "账号备份",
"AccountBackupCreate": "创建账号备份",
"AccountBackupDetail": "账号备份详情",
"AccountBackupList": "账号备份列表",
"AccountBackupUpdate": "更新账号备份",
"AccountChangeSecret": "账号改密",
"AccountChangeSecretDetail": "账号改密详情",
"AccountData": "账号数据",
"AccountDeleteConfirmMsg": "删除账号,是否继续?",
"AccountDeleted": "账号删除",
"AccountDiscover": "账号发现",
"AccountExportTips": "导出信息中包含账号密文涉及敏感信息导出的格式为一个加密的zip文件若没有设置加密密码请前往个人信息中设置文件加密密码。",
"AccountList": "账号",
"AccountPolicy": "账号策略",
@ -24,6 +27,8 @@
"AccountPushDetail": "账号推送详情",
"AccountPushList": "账号推送",
"AccountPushUpdate": "更新账号推送",
"AccountResult": "账号改密成功/失败",
"AccountSessions": "账号会话",
"AccountStorage": "账号存储",
"AccountTemplate": "账号模版",
"AccountTemplateList": "账号模版列表",
@ -167,6 +172,7 @@
"AuthSettings": "认证配置",
"AuthUserAttrMapHelpText": "左侧的键为 JumpServer 用户属性,右侧的值为认证平台用户属性",
"Authentication": "认证",
"AuthorizedKeysChanged": "密钥变更",
"AutoPush": "自动推送",
"Automation": "自动化",
"AverageTimeCost": "平均花费时间",
@ -183,7 +189,6 @@
"BaseAccount": "账号",
"BaseAccountBackup": "账号备份",
"BaseAccountChangeSecret": "账号改密",
"BaseAccountGather": "账号采集",
"BaseAccountPush": "账号推送",
"BaseAccountTemplate": "账号模版",
"BaseApplets": "应用",
@ -254,6 +259,7 @@
"ChangeField": "变更字段",
"ChangeOrganization": "更改组织",
"ChangePassword": "更新密码",
"ChangeSecret": "账号改密",
"ChangeSecretAccountHelpText": "对于同一资产中的账号,如果存在切换自关系,则不应放在同一个任务中执行密码更改,而是应分成两个任务分别执行。",
"ChangeSecretParams": "改密参数",
"ChangeViewHelpText": "点击切换不同视图",
@ -273,7 +279,6 @@
"ClearSuccessMsg": "清除成功",
"ClickCopy": "点击复制",
"ClientCertificate": "客户端证书",
"Clipboard": "剪贴板",
"ClipboardCopyPaste": "剪贴板复制粘贴",
"Clone": "克隆",
"Close": "关闭",
@ -281,6 +286,7 @@
"CloseConfirmMessage": "文件发生变化,是否保存?",
"CloseStatus": "已完成",
"Closed": "已完成",
"Cloud": "云",
"CloudAccountCreate": "创建云平台账号",
"CloudAccountDetail": "云平台账号详情",
"CloudAccountList": "云平台账号",
@ -334,6 +340,7 @@
"ConnectMethodAclList": "连接方式",
"ConnectMethodAclUpdate": "更新连接方式控制",
"ConnectWebSocketError": "连接 WebSocket 失败",
"Connectable": "可连接",
"ConnectionDropped": "连接已断开",
"ConnectionToken": "连接令牌",
"ConnectionTokenList": "连接令牌是将身份验证和连接资产结合起来使用的一种认证信息支持用户一键登录到资产目前支持的组件包括KoKo、Lion、Magnus、Razor 等",
@ -346,6 +353,7 @@
"ConvenientOperate": "便捷操作",
"Copy": "复制",
"CopySuccess": "复制成功",
"CopyToAsset": "复制到资产",
"Corporation": "公司",
"Create": "创建",
"CreateAccessKey": "创建访问密钥",
@ -412,6 +420,7 @@
"Datetime": "日期时间",
"Day": "日",
"DeclassificationLogNum": "改密日志数",
"DeeplyThoughtAbout": "已深度思考",
"DefaultDatabase": "默认数据库",
"DefaultPort": "默认端口",
"DefaultValue": "默认值",
@ -432,6 +441,7 @@
"DestinationIP": "目的地址",
"DestinationPort": "目的端口",
"Detail": "详情",
"Device": "设备",
"DeviceCreate": "创建资产-网络设备",
"DeviceUpdate": "更新资产-网络设备",
"Digit": "数字",
@ -441,11 +451,12 @@
"Disable": "禁用",
"DisableSelected": "禁用所选",
"DisableSuccessMsg": "禁用成功",
"DiscoverAccounts": "帐号发现",
"DiscoveredAccountList": "发现账号",
"DisplayName": "名称",
"Docs": "文档",
"Download": "下载",
"DownloadCenter": "下载中心",
"DownloadFTPFileTip": "当前动作不记录文件或者文件大小超过阈值默认100M或者还未保存到对应存储中",
"DownloadImportTemplateMsg": "下载创建模板",
"DownloadReplay": "下载录像",
"DownloadUpdateTemplateMsg": "下载更新模板",
@ -457,6 +468,7 @@
"DynamicUsername": "动态用户名",
"Edit": "编辑",
"EditRecipient": "编辑接收人",
"EditSecret": "编辑密文",
"Edition": "版本",
"Effective": "生效",
"Email": "邮箱",
@ -465,6 +477,7 @@
"EmailTemplateHelpTip": "邮件模版是用于发送邮件的模版,包括邮件标题前缀和邮件内容",
"EmailTest": "测试连接",
"Empty": "空",
"EmptyPassword": "空密码",
"Enable": "启用",
"EnableDomain": "启用网域",
"EnableKoKoSSHHelpText": "开启时连接资产会显示 SSH Client 拉起方式",
@ -494,10 +507,10 @@
"ExcludeSymbol": "排除字符",
"ExecCloudSyncErrorMsg": "云账号配置不完整,请更新后重试",
"Execute": "执行",
"ExecuteAfterSaving": "保存后执行",
"ExecuteOnce": "执行一次",
"ExecutionDetail": "执行详情",
"ExecutionList": "执行列表",
"ExecutionRecord": "执行记录",
"ExistError": "这个元素已经存在",
"Existing": "已存在",
"ExpirationTimeout": "过期超时时间(秒)",
@ -542,6 +555,7 @@
"Footer": "页脚",
"ForgotPasswordURL": "忘记密码链接",
"FormatError": "格式错误",
"FoundAccountInAssetDeleteMsg": "删除从系统资产中发现的找好",
"Friday": "周五",
"From": "从",
"FromTicket": "来自工单",
@ -556,8 +570,6 @@
"GatewayList": "网关列表",
"GatewayPlatformHelpText": "网关平台只能选择以 Gateway 开头的平台",
"GatewayUpdate": "更新网关",
"GatherAccountsHelpText": "收集资产上的账号信息。收集后的账号信息可以导入到系统中,方便统一管理",
"GatheredAccountList": "收集的账号",
"General": "基本",
"GeneralAccounts": "普通账号",
"GeneralSetting": "通用配置",
@ -568,6 +580,7 @@
"Goto": "转到",
"GrantedAssets": "授权的资产",
"GreatEqualThan": "大于等于",
"GroupChanged": "组变更",
"GroupsAmount": "用户组",
"HTTPSRequiredForSupport": "需要 HTTPS 支持,才能开启",
"HandleTicket": "处理工单",
@ -585,7 +598,6 @@
"Host": "资产",
"HostCreate": "创建资产-主机",
"HostDeployment": "发布机部署",
"HostList": "主机列表",
"HostUpdate": "更新资产-主机",
"HostnameStrategy": "用于生成资产主机名。例如1. 实例名称 (instanceDemo)2. 实例名称和部分IP(后两位) (instanceDemo-250.1)",
"Hour": "小时",
@ -640,11 +652,6 @@
"InviteSuccess": "邀请成功",
"InviteUser": "邀请用户",
"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": "激活",
"IsAlwaysUpdate": "资产保持最新",
"IsAlwaysUpdateHelpTip": "每次执行同步任务时是否同步更新资产信息包括主机名、ip、平台、域、节点等",
@ -678,6 +685,7 @@
"LdapBulkImport": "用户导入",
"LdapConnectTest": "测试连接",
"LdapLoginTest": "测试登录",
"LeakedPassword": "泄露密码",
"Length": "长度",
"LessEqualThan": "小于等于",
"LevelApproval": "级审批",
@ -720,6 +728,8 @@
"LogoLogoutTip": "提示:将会显示在企业版用户的 Web 终端页面建议图片大小为82px*82px",
"Logout": "退出登录",
"LogsAudit": "日志审计",
"LongTimeNoVerify": "长时间未验证",
"LongTimePassword": "长时间未改密",
"Lowercase": "小写字母",
"LunaSetting": "Luna 配置",
"MFAAllUsers": "全局启用: 所有用户",
@ -761,6 +771,7 @@
"More": "更多",
"MoreActions": "更多操作",
"MoveAssetToNode": "移动资产到节点",
"MoveToAsset": "移动到资产",
"MsgSubscribe": "消息订阅",
"MyAssets": "我的资产",
"MyTickets": "我发起的",
@ -770,6 +781,7 @@
"Navigation": "导航",
"NeedReLogin": "需要重新登录",
"New": "新建",
"NewAccountsFound": "新增账号",
"NewChat": "新聊天",
"NewCount": "新增",
"NewCron": "生成 Cron",
@ -783,10 +795,12 @@
"Next": "下一步",
"No": "否",
"NoAccountFound": "未找到帐户",
"NoAdminAccount": "无管理员账号",
"NoContent": "暂无内容",
"NoData": "暂无数据",
"NoFiles": "暂无文件",
"NoLog": "无日志",
"NoLoginLongTime": "长时间未登录",
"NoPermission": "暂无权限",
"NoPermission403": "403 暂无权限",
"NoPermissionInGlobal": "全局无权限",
@ -865,6 +879,7 @@
"Password": "密码",
"PasswordAndSSHKey": "认证设置",
"PasswordChangeLog": "改密日志",
"PasswordError": "密码错误",
"PasswordExpired": "密码过期了",
"PasswordPlaceholder": "请输入密码",
"PasswordRecord": "密码记录",
@ -877,7 +892,6 @@
"Pause": "暂停",
"PauseTaskSendSuccessMsg": "暂停任务已下发,请稍后刷新查看",
"Pending": "待处理",
"Periodic": "定期执行 ",
"PermAccount": "授权账号",
"PermAction": "授权动作",
"PermUserList": "授权用户",
@ -908,7 +922,6 @@
"Primary": "主要的",
"Priority": "优先级",
"PrivateCloud": "私有云",
"PrivateIp": "私有 IP",
"PrivateKey": "私钥",
"Privileged": "特权账号",
"PrivilegedFirst": "优先特权账号",
@ -919,19 +932,20 @@
"Project": "项目名",
"Prompt": "提示词",
"Proportion": "占比",
"ProportionOfAccountTypes": "账号类型占比",
"ProportionOfAssetTypes": "资产类型占比",
"Protocol": "协议",
"Protocols": "协议",
"Provider": "供应商",
"Proxy": "代理",
"PublicCloud": "公有云",
"PublicIp": "公有 IP",
"PublicKey": "公钥",
"Publish": "发布",
"PublishAllApplets": "发布所有应用",
"PublishStatus": "发布状态",
"Push": "推送",
"PushAccount": "推送账号",
"PushAccountHelpText": "若账号已存在,则使用账号密文进行推送;若账号不存在,则根据填写的密文创建账号,然后进行推送。",
"PushAccountsHelpText": "推送已有账号到资产上。推送账号时,如果账号已存在,会更新账号的密码,如果账号不存在,会创建账号",
"PushParams": "推送参数",
"Qcloud": "腾讯云",
@ -949,13 +963,20 @@
"RealTimeData": "实时数据",
"Reason": "原因",
"Receivers": "接收人",
"Recent (7 days)": "最近7天",
"RecentLogin": "最近登录",
"RecentPasswordChangeFailed": "最近改密失败",
"RecentSession": "最近会话",
"RecentlyChangedPassword": "最近改密",
"RecentlyDiscovered": "最近发现",
"RecentlyLoggedIn": "最近登录",
"RecentlyModified": "最近修改",
"RecentlyUsed": "最近使用",
"Recipient": "接收人",
"RecipientHelpText": "如果同时设置了收件人A和B账号的密文将被拆分为两部分如果只设置了一个收件人密钥则不会被拆分。",
"RecipientServer": "接收服务器",
"Reconnect": "重新连接",
"Record": "记录",
"Refresh": "刷新",
"RefreshHardware": "更新硬件信息",
"Regex": "正则表达式",
@ -972,6 +993,7 @@
"RelevantCommand": "命令",
"RelevantSystemUser": "系统用户",
"RemoteAddr": "远端地址",
"RemoteAssetFoundAccountDeleteMsg": "删除从远端资产中发现的找好",
"Remove": "移除",
"RemoveAssetFromNode": "从节点移除资产",
"RemoveSelected": "移除所选",
@ -979,6 +1001,7 @@
"RemoveWarningMsg": "你确定要移除",
"Rename": "重命名",
"RenameNode": "重命名节点",
"RepeatedPassword": "重复密码",
"ReplaceNodeAssetsAdminUserWithThis": "替换资产的管理员",
"Replay": "回放",
"ReplaySession": "回放会话",
@ -986,6 +1009,7 @@
"ReplayStorageCreateUpdateHelpMessage": "注意:目前 SFTP 存储仅支持账号备份,暂不支持录像存储。",
"ReplayStorageUpdate": "更新对象存储",
"Reply": "回复",
"Report": "报告",
"RequestAssetPerm": "申请资产授权",
"RequestPerm": "授权申请",
"RequestTickets": "申请工单",
@ -1008,6 +1032,7 @@
"ResetSSHKey": "重置SSH密钥",
"ResetSSHKeySuccessMsg": "发送邮件任务已提交, 用户稍后会收到重置密钥邮件",
"ResetSSHKeyWarningMsg": "你确定要发送重置用户的SSH Key的邮件吗?",
"ResetSecret": "可改密",
"Resource": "资源",
"ResourceType": "资源类型",
"RestoreButton": "恢复默认",
@ -1020,6 +1045,8 @@
"Retry": "重试",
"RetrySelected": "重试所选",
"Reviewer": "审批人",
"RiskDetection": "风险检测",
"RiskyAccount": "风险账号",
"Role": "角色",
"RoleCreate": "创建角色",
"RoleDetail": "角色详情",
@ -1084,6 +1111,7 @@
"Secret": "密码",
"SecretKey": "密钥",
"SecretKeyStrategy": "密码策略",
"SecretReset": "可改密",
"Secure": "安全",
"Security": "安全设置",
"Select": "选择",
@ -1096,6 +1124,7 @@
"SelectKeyOrCreateNew": "选择标签键或创建新的",
"SelectLabelFilter": "选择标签筛选",
"SelectProperties": "选择属性",
"SelectProtocol": "可选择的协议",
"SelectProvider": "选择平台",
"SelectProviderMsg": "请选择一个云平台",
"SelectResource": "选择资源",
@ -1109,6 +1138,7 @@
"SerialNumber": "序列号",
"Server": "服务",
"ServerAccountKey": "服务账号密钥",
"ServerBusyRetry": "服务器繁忙,请稍后再试。",
"ServerError": "服务器错误",
"ServerTime": "服务器时间",
"Session": "会话",
@ -1189,6 +1219,7 @@
"Success/Total": "成功/总数",
"SuccessAsset": "成功的资产",
"SuccessfulOperation": "操作成功",
"SudoChanged": "Sudo 变更",
"Summary": "汇总",
"Summary(success/total)": "概况( 成功/总数 )",
"Sunday": "周日",
@ -1239,6 +1270,7 @@
"TargetResources": "目标资源",
"Task": "任务",
"TaskDetail": "任务详情",
"TaskDistribution": "任务分配",
"TaskDone": "任务结束",
"TaskID": "任务 ID",
"TaskList": "任务列表",
@ -1310,6 +1342,7 @@
"UPPER_CASE_REQUIRED": "必须包含大写字母",
"UnFavoriteSucceed": "取消收藏成功",
"UnSyncCount": "未同步",
"UnavailableAccount": "不可用账号",
"Unbind": "解绑",
"UnbindHelpText": "本地用户为此认证来源用户,无法解绑",
"Unblock": "解锁",
@ -1319,6 +1352,7 @@
"Uninstall": "卸载",
"UniqueError": "以下属性只能设置一个",
"UnlockSuccessMsg": "解锁成功",
"UnmanagedAccount": "未管理账号",
"UnselectedOrg": "没有选择组织",
"UnselectedUser": "没有选择用户",
"UpDownload": "上传下载",
@ -1385,6 +1419,8 @@
"VaultHCPMountPoint": "Vault 服务器的挂载点,默认为 jumpserver",
"VaultHelpText": "1. 由于安全原因,需要配置文件中开启 Vault 存储。<br>2. 开启后,填写其他配置,进行测试。<br>3. 进行数据同步,同步是单向的,只会从本地数据库同步到远端 Vault同步完成本地数据库不再存储密码请备份好数据。<br>4. 二次修改 Vault 配置后需重启服务。",
"VerificationCodeSent": "验证码已发送",
"VerifyFace": "验证人脸",
"VerifySecret": "验证密文",
"VerifySignTmpl": "验证码短信模板",
"Version": "版本",
"View": "查看",
@ -1404,6 +1440,7 @@
"WeCom": "企业微信",
"WeComOAuth": "企业微信认证",
"WeComTest": "测试",
"WeakPassword": "弱密码",
"WebCreate": "创建资产-Web",
"WebHelpMessage": "Web 类型资产依赖于远程应用,请前往系统设置在远程应用中配置",
"WebSocketDisconnect": "WebSocket 断开",
@ -1431,59 +1468,7 @@
"forceEnableMFAHelpText": "如果强制启用,用户无法自行禁用",
"removeWarningMsg": "你确定要移除",
"setVariable": "设置参数",
"VerifyFace": "验证人脸",
"ServerBusyRetry": "服务器繁忙,请稍后再试。",
"DeeplyThoughtAbout": "已深度思考",
"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": "账号发现",
"ExecutionRecord": "执行记录",
"ExecutionSummary": "执行状态",
"FoundAccountInAssetDeleteMsg": "删除从系统资产中发现的找好",
"RemoteAssetFoundAccountDeleteMsg": "删除从远端资产中发现的找好",
"PushAccountHelpText": "若账号已存在,则使用账号密文进行推送;若账号不存在,则根据填写的密文创建账号,然后进行推送。"
"ExecutionSummary": "执行汇总"
}

File diff suppressed because it is too large Load Diff

View File

@ -171,6 +171,7 @@
"Select account": "Select account",
"Send command": "Send command",
"Send text to all ssh terminals": "Send text to all ssh terminals",
"SessionIsBeingMonitored": "session is being monitored",
"Set reusable": "Set reusable",
"Setting": "Setting",
"Settings or basic settings": "Settings → Basic Settings",
@ -232,6 +233,5 @@
"start time": "start time",
"success": "success",
"system user": "system user",
"user": "user",
"SessionIsBeingMonitored": "session is being monitored"
"user": "user"
}

View File

@ -42,7 +42,6 @@
"CommandBar": "コマンドバー",
"Confirm": "確認",
"Connect": "接続",
"Connect Method": "接続方法",
"Connect checked": "接続済み",
"Connect command line": "接続コマンドライン",
"Connect method": "接続方法",
@ -113,7 +112,6 @@
"LoginExpireMsg": "現在のログインはタイムアウトしました。ウィンドウを閉じないでください。新しいウィンドウでログインすると現在のページが復元されます。復元されない場合は、ページを更新してください。",
"Low Speed Broadband (256 Kbps - 2 Mbps)": "低速ブロードバンド (256 Kbps - 2 Mbps)",
"Manual accounts": "手動アカウント",
"MenuAccountTemplates": "アカウントテンプレート",
"Module": "ユニット",
"Multi Screen": "マルチスクリーン",
"My applications": "私の応用",
@ -130,7 +128,6 @@
"No permission": "権限がありません",
"No protocol available": "利用可能なプロトコルがありません",
"NoTabs": "ウィンドウなし",
"Normal accounts": "通常のログインアカウント",
"Not quick command": "非高速コマンド",
"Open in new window": "新しいウィンドウが開きます",
"Operator": "オペレーター",
@ -145,7 +142,6 @@
"Port": "ポート",
"Protocol": "プロトコル",
"Protocol: ": "プロトコル: {{value}}",
"Question answer": "質問-答え",
"RDP Client": "RDPクライアント",
"RDP File": "RDPファイル",
"RDP client options": "RDPクライアントオプション",
@ -158,7 +154,6 @@
"Refresh": "リフレッシュ",
"Remember password": "パスワードを覚える",
"Remember select": "選択を覚える",
"Remote apps": "リモートアプリケーション",
"RemoteApp": "リモートアプリケーション",
"Reselect connection method": "資産の接続方法の再選択",
"Resume": "タスクを再開",
@ -174,7 +169,6 @@
"Select account": "システムユーザーの選択",
"Send command": "コマンドを送信",
"Send text to all ssh terminals": "すべてのssh端末にテキストを送信します",
"Send text to current ssh terminals": "現在の SSH 端末にテキストを送信する",
"SessionIsBeingMonitored": "会話が監視されています。",
"Set reusable": "再利用可能な",
"Setting": "設定",
@ -183,7 +177,6 @@
"Show left manager": "左サイドバーを表示",
"Skip": "スキップ",
"Skip manual password": "手動パスワードウィンドウをスキップします",
"Special account": "特別なアカウント",
"Special accounts": "特別ログインアカウント",
"Speed": "スピード",
"Split connect": "スクリーン接続",

View File

@ -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.",
"Low Speed Broadband (256 Kbps - 2 Mbps)": "Banda larga de baixa velocidade (256 Kbps - 2 Mbps)",
"Manual accounts": "Conta manual",
"MenuAccountTemplates": "Modelo de conta",
"Module": "Módulo",
"Multi Screen": " Exibição Multi-Tela ",
"My applications": " Meu Aplicativo ",

View File

@ -112,7 +112,6 @@
"LoginExpireMsg": "当前登录已超时,请不要关闭窗口。在新的窗口登录后即可恢复当前页面,如未恢复请刷新页面。",
"Low Speed Broadband (256 Kbps - 2 Mbps)": "低速宽带 (256 Kbps - 2 Mbps)",
"Manual accounts": "手动账号",
"MenuAccountTemplates": "账号模版",
"Module": "模块",
"Multi Screen": "多屏显示",
"My applications": "我的应用",
@ -170,6 +169,7 @@
"Select account": "选择账号",
"Send command": "发送命令",
"Send text to all ssh terminals": "发送文本到所有ssh终端",
"SessionIsBeingMonitored": "会话正在被监控",
"Set reusable": "开启复用",
"Setting": "设置",
"Settings or basic settings": "菜单设置 → 基本设置",
@ -230,6 +230,5 @@
"start time": "开始时间",
"success": "成功",
"system user": "系统用户",
"user": "用户",
"SessionIsBeingMonitored": "会话正在被监控"
"user": "用户"
}

View File

@ -42,7 +42,6 @@
"CommandBar": "指令欄",
"Confirm": "確認",
"Connect": "連接",
"Connect Method": "連接方式",
"Connect checked": "連接選中",
"Connect command line": "連接命令行",
"Connect method": "連線方式",
@ -113,7 +112,6 @@
"LoginExpireMsg": "目前登入已逾時,請不要關閉視窗。在新的視窗登入後即可恢復目前頁面,如未恢復請重新整理頁面。",
"Low Speed Broadband (256 Kbps - 2 Mbps)": "低速寬帶 (256 Kbps - 2 Mbps)",
"Manual accounts": "手動帳號",
"MenuAccountTemplates": "帳號範本",
"Module": "模組",
"Multi Screen": "多屏顯示",
"My applications": "我的應用",
@ -144,7 +142,6 @@
"Port": "埠",
"Protocol": "協議",
"Protocol: ": "協議: {{value}}",
"Question answer": "智慧問答",
"RDP Client": "RDP 用戶端",
"RDP File": "RDP 文件",
"RDP client options": "RDP 用戶端選項",
@ -157,7 +154,6 @@
"Refresh": "刷新",
"Remember password": "記住密碼",
"Remember select": "記住選擇",
"Remote apps": "遠程應用",
"RemoteApp": "遠端應用",
"Reselect connection method": "可重新選擇連接方式",
"Resume": "恢復",
@ -173,7 +169,6 @@
"Select account": "選擇帳號",
"Send command": "發送命令",
"Send text to all ssh terminals": "發送文本到所有ssh終端",
"Send text to current ssh terminals": "發送文本到當前ssh終端",
"SessionIsBeingMonitored": "對話正在被監控。",
"Set reusable": "開啟復用",
"Setting": "設置",