fix missing i18n keys (#18309)

This commit is contained in:
Josh Hawkins
2025-05-19 16:45:02 -05:00
committed by GitHub
parent 8a143b4284
commit afe513336c
19 changed files with 103 additions and 46 deletions
@@ -66,12 +66,12 @@ export default function SetPasswordDialog({
const handleSave = () => {
if (!password) {
setError("Password cannot be empty");
setError(t("users.dialog.passwordSetting.cannotBeEmpty"));
return;
}
if (password !== confirmPassword) {
setError("Passwords do not match");
setError(t("users.dialog.passwordSetting.doNotMatch"));
return;
}