diff --git a/src/i18n/langs/en.json b/src/i18n/langs/en.json index 63d02a4f4..16f849d0c 100644 --- a/src/i18n/langs/en.json +++ b/src/i18n/langs/en.json @@ -323,6 +323,7 @@ "ReLoginErr": "Login time has exceeded 5 minutes, please login again" }, "common": { + "ApproverNumbers": "Approver numbers", "Overview": "Overview", "Now": "Now", "EnterToContinue": "Press Enter to continue", @@ -1122,6 +1123,7 @@ "Ldap": "LDAP", "License": "License", "LicenseFile": "License file", + "ExpirationTimeout": "Expiration timeout", "PasswordCheckRule": "Password check rule", "Security": "Security", "SecuritySetting": "Security", diff --git a/src/i18n/langs/ja.json b/src/i18n/langs/ja.json index 378038490..337bab7c7 100644 --- a/src/i18n/langs/ja.json +++ b/src/i18n/langs/ja.json @@ -326,6 +326,7 @@ "ReLoginErr": "ログイン時間が 5 分を超えました。もう一度ログインしてください" }, "common": { + "ApproverNumbers": "承認者数", "Overview": "概要", "Now": "今", "EnterToContinue": "Enter キーを押して続行します了", @@ -1142,6 +1143,7 @@ "License": "ライセンス", "Senior": "高度", "LicenseFile": "ライセンスファイル", + "ExpirationTimeout": "期限切れタイムアウト時間", "PasswordCheckRule": "パスワード強弱ルール", "Security": "セキュリティ設定", "SecuritySetting": "セキュリティ設定", diff --git a/src/i18n/langs/zh.json b/src/i18n/langs/zh.json index 924377869..9338aa226 100644 --- a/src/i18n/langs/zh.json +++ b/src/i18n/langs/zh.json @@ -425,6 +425,7 @@ "ReLoginErr": "登录时长已超过 5 分钟,请重新登录" }, "common": { + "ApproverNumbers": "审批人数量", "Overview": "概览", "Now": "现在", "EnterToContinue": "按回车继续输入", @@ -1359,6 +1360,7 @@ "License": "许可证", "Senior": "高级", "LicenseFile": "许可证文件", + "ExpirationTimeout": "过期超时时间", "PasswordCheckRule": "密码强弱规则", "Security": "安全设置", "SecuritySetting": "安全设置", diff --git a/src/views/acl/UserLoginACL/UserLoginACLList.vue b/src/views/acl/UserLoginACL/UserLoginACLList.vue index 9afecc638..82e904ec2 100644 --- a/src/views/acl/UserLoginACL/UserLoginACLList.vue +++ b/src/views/acl/UserLoginACL/UserLoginACLList.vue @@ -27,6 +27,9 @@ export default { } } }, + reviewers_amount: { + label: this.$t('common.ApproverNumbers') + }, actions: { formatterArgs: { hasClone: false, diff --git a/src/views/settings/Security/index.vue b/src/views/settings/Security/index.vue index 340053dd1..0602e95d1 100644 --- a/src/views/settings/Security/index.vue +++ b/src/views/settings/Security/index.vue @@ -79,6 +79,9 @@ export default { } } }, + VERIFY_CODE_TTL: { + label: this.$t('setting.ExpirationTimeout') + }, PasswordRule: { label: this.$t('setting.PasswordCheckRule'), component: PasswordRule