Handy_Cao il y a 1 an
Parent
commit
77753d40e8
1 fichiers modifiés avec 3 ajouts et 3 suppressions
  1. 3 3
      src/constants/account.ts

+ 3 - 3
src/constants/account.ts

@@ -26,10 +26,10 @@ export enum AQCertificateType {
  */
 export function getAuthStatusList() {
     return [
-        { label: '未实名', value: AuthStatus.Uncertified },
+        { label: i18n.global.t('enum.auth.Uncertified'), value: AuthStatus.Uncertified },
         { label: i18n.global.t('enum.auth.Certified'), value: AuthStatus.Certified },
-        { label: '审核中', value: AuthStatus.Submitted },
-        { label: '未通过', value: AuthStatus.Rejected },
+        { label: i18n.global.t('enum.auth.Submitted'), value: AuthStatus.Submitted },
+        { label: i18n.global.t('enum.auth.Rejected'), value: AuthStatus.Rejected },
     ]
 }