diff --git a/src/components/Form/FormFields/PasswordRule.vue b/src/components/Form/FormFields/PasswordRule.vue index 1b91624d9..f7a60b0cd 100644 --- a/src/components/Form/FormFields/PasswordRule.vue +++ b/src/components/Form/FormFields/PasswordRule.vue @@ -70,6 +70,11 @@ export default { id: 'symbol', label: this.$t('common.SpecialSymbol'), type: 'switch' + }, + { + id: 'exclude_symbols', + label: this.$t('common.ExcludeSymbol'), + type: 'input' } ] } diff --git a/src/i18n/langs/en.json b/src/i18n/langs/en.json index c962b0f3d..dfb824833 100644 --- a/src/i18n/langs/en.json +++ b/src/i18n/langs/en.json @@ -913,7 +913,8 @@ "Length": "Length", "Digit": "Digit", "Lowercase": "Lowercase", - "SpecialSymbol": "SpecialSymbol" + "SpecialSymbol": "Special symbol", + "ExcludeSymbol": "Exclude symbol" }, "dashboard": { "ActiveAsset": "Asset active", diff --git a/src/i18n/langs/ja.json b/src/i18n/langs/ja.json index 3ae296e9b..e46f19ed4 100644 --- a/src/i18n/langs/ja.json +++ b/src/i18n/langs/ja.json @@ -911,7 +911,8 @@ "Length": "長さ", "Digit": "数字", "Lowercase": "小文字", - "SpecialSymbol": "特殊記号" + "SpecialSymbol": "特殊記号", + "ExcludeSymbol": "記号を除外する" }, "dashboard": { "TotalJobLog": "ジョブ実行総数", diff --git a/src/i18n/langs/zh.json b/src/i18n/langs/zh.json index 5e1797cde..cf27c388e 100644 --- a/src/i18n/langs/zh.json +++ b/src/i18n/langs/zh.json @@ -485,6 +485,7 @@ "Lowercase": "小写字母", "Digit": "数字", "SpecialSymbol": "特殊字符", + "ExcludeSymbol": "排除字符", "Enterprise": "企业版", "SyncTask": "同步任务", "New": "新建",