translate settings window to English

This commit is contained in:
2026-04-26 21:40:39 +03:00
parent fea0029429
commit b4429354c3
2 changed files with 4 additions and 4 deletions

View File

@@ -10,7 +10,7 @@ public class SettingsWindow : Window
public SettingsWindow()
{
// Базовые параметры окна
this.Title = "Настройки";
this.Title = "Settings";
this.Width = 450;
this.Height = 250;
this.MinWidth = 450;
@@ -29,7 +29,7 @@ public class SettingsWindow : Window
// Заголовок окна
var titleText = new TextBlock
{
Text = "Настройки приложения",
Text = "App Settings",
FontSize = 20,
FontWeight = FontWeight.Bold,
Margin = new Thickness(0, 0, 0, 10)
@@ -38,7 +38,7 @@ public class SettingsWindow : Window
// Чекбокс (Галочка)
var exitOnCloseCheckBox = new CheckBox
{
Content = "Завершение работы KeyKeeper при закрытии хранилища",
Content = "Exit KeyKeeper when closing vault",
FontSize = 14,
// Подгружаем сохраненное состояние из статического класса
IsChecked = AppSettings.ExitOnRepositoryClose
@@ -58,4 +58,4 @@ public class SettingsWindow : Window
// Назначаем стек основным контентом окна
this.Content = mainStack;
}
}
}