Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Keys/KeysManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -68,13 +68,13 @@ public static bool GenerateKey(string name, string comment = "", bool message =
{
if (message)
{
MessageBox.Show("Ключ сгенирирован", "Успех", MessageBoxButtons.OK, MessageBoxIcon.Information);
MessageBox.Show("Ключ сгенерирован", "Успех", MessageBoxButtons.OK, MessageBoxIcon.Information);
}
return true;
}
else
{
MessageBox.Show($"Ошибка генерерации ключа: {error}", "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
MessageBox.Show($"Ошибка генерации ключа: {error}", "Ошибка", MessageBoxButtons.OK, MessageBoxIcon.Error);
return false;
}
}
Expand Down