chore: update locale file structure (#1478)

This commit is contained in:
boojack
2023-04-06 00:07:10 +08:00
committed by GitHub
parent cc23f69f66
commit f48d91539e
35 changed files with 138 additions and 249 deletions

View File

@ -70,19 +70,19 @@ const ChangeMemberPasswordDialog: React.FC<Props> = (props: Props) => {
</button>
</div>
<div className="dialog-content-container">
<p className="text-sm mb-1">{t("common.new-password")}</p>
<p className="text-sm mb-1">{t("auth.new-password")}</p>
<input
type="password"
className="input-text"
placeholder={t("common.repeat-new-password")}
placeholder={t("auth.repeat-new-password")}
value={newPassword}
onChange={handleNewPasswordChanged}
/>
<p className="text-sm mb-1 mt-2">{t("common.repeat-new-password")}</p>
<p className="text-sm mb-1 mt-2">{t("auth.repeat-new-password")}</p>
<input
type="password"
className="input-text"
placeholder={t("common.repeat-new-password")}
placeholder={t("auth.repeat-new-password")}
value={newPasswordAgain}
onChange={handleNewPasswordAgainChanged}
/>