diff --git a/src/views/accounts/RiskDetect/RiskHandlerFormatter/BatchResolveDialog.vue b/src/views/accounts/RiskDetect/RiskHandlerFormatter/BatchResolveDialog.vue
index d1dd957cc..7de65c5f0 100644
--- a/src/views/accounts/RiskDetect/RiskHandlerFormatter/BatchResolveDialog.vue
+++ b/src/views/accounts/RiskDetect/RiskHandlerFormatter/BatchResolveDialog.vue
@@ -3,7 +3,7 @@
     <div>
       <el-form class="el-form">
         <el-form-item class="risk-select" prop="selected">
-          <el-select v-model="riskSelected" :placeholder="$t('Select risk')">
+          <el-select v-model="riskSelected" :placeholder="$t('SelectRisk')">
             <el-option
               v-for="item in riskTypes"
               :key="item.value"
diff --git a/src/views/accounts/RiskDetect/RiskHandlerFormatter/const.js b/src/views/accounts/RiskDetect/RiskHandlerFormatter/const.js
index dbde33dbe..2f4efaa0a 100644
--- a/src/views/accounts/RiskDetect/RiskHandlerFormatter/const.js
+++ b/src/views/accounts/RiskDetect/RiskHandlerFormatter/const.js
@@ -35,7 +35,7 @@ export const riskActions = [
   },
   {
     name: 'change_password_add',
-    label: i18n.t('AddAccountAfterChangePassword'),
+    label: i18n.t('AddAccountAfterChangingPassword'),
     has: async function() {
       const risks = ['new_found', 'long_time_password', 'password_expired']
       return risks.includes(this.row.risk.value) && !await checkUserExist.call(this)