From 0093ca4d0c46252a15930e720346308e45e70a0c Mon Sep 17 00:00:00 2001 From: Chernykh Aleksandr Date: Fri, 5 Dec 2025 02:10:41 +0300 Subject: [PATCH] =?UTF-8?q?=D0=BD=D0=B0=D0=B4=D0=BF=D0=B8=D1=81=D0=B8=20?= =?UTF-8?q?=D0=BE=20=D0=BF=D0=B0=D1=80=D0=BE=D0=BB=D1=8F=D1=85=20=D0=BD?= =?UTF-8?q?=D0=B0=20=D0=B0=D0=BD=D0=B3=D0=BB=D0=B8=D0=B9=D1=81=D0=BA=D0=BE?= =?UTF-8?q?=D0=BC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/KeyKeeper/PasswordDialog.axaml.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/KeyKeeper/PasswordDialog.axaml.cs b/src/KeyKeeper/PasswordDialog.axaml.cs index a1513ed..18047fc 100644 --- a/src/KeyKeeper/PasswordDialog.axaml.cs +++ b/src/KeyKeeper/PasswordDialog.axaml.cs @@ -33,14 +33,14 @@ namespace KeyKeeper // Проверяем, что пароли не пустые if (string.IsNullOrEmpty(password) || string.IsNullOrEmpty(confirmPassword)) { - ShowError("Пароль не может быть пустым"); + ShowError("Password cannot be empty"); return; } // Проверяем совпадение паролей if (password != confirmPassword) { - ShowError("Пароли не совпадают"); + ShowError("Passwords don't match"); return; }