mirror of
https://github.com/blakeblackshear/frigate.git
synced 2026-07-31 08:09:02 +03:00
fix missing i18n keys (#18309)
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user