mirror of
https://github.com/KeyKeeperApp/KeyKeeper.git
synced 2026-05-08 09:26:30 +03:00
translate settings window to English
This commit is contained in:
@@ -10,7 +10,7 @@ public class SettingsWindow : Window
|
|||||||
public SettingsWindow()
|
public SettingsWindow()
|
||||||
{
|
{
|
||||||
// Базовые параметры окна
|
// Базовые параметры окна
|
||||||
this.Title = "Настройки";
|
this.Title = "Settings";
|
||||||
this.Width = 450;
|
this.Width = 450;
|
||||||
this.Height = 250;
|
this.Height = 250;
|
||||||
this.MinWidth = 450;
|
this.MinWidth = 450;
|
||||||
@@ -29,7 +29,7 @@ public class SettingsWindow : Window
|
|||||||
// Заголовок окна
|
// Заголовок окна
|
||||||
var titleText = new TextBlock
|
var titleText = new TextBlock
|
||||||
{
|
{
|
||||||
Text = "Настройки приложения",
|
Text = "App Settings",
|
||||||
FontSize = 20,
|
FontSize = 20,
|
||||||
FontWeight = FontWeight.Bold,
|
FontWeight = FontWeight.Bold,
|
||||||
Margin = new Thickness(0, 0, 0, 10)
|
Margin = new Thickness(0, 0, 0, 10)
|
||||||
@@ -38,7 +38,7 @@ public class SettingsWindow : Window
|
|||||||
// Чекбокс (Галочка)
|
// Чекбокс (Галочка)
|
||||||
var exitOnCloseCheckBox = new CheckBox
|
var exitOnCloseCheckBox = new CheckBox
|
||||||
{
|
{
|
||||||
Content = "Завершение работы KeyKeeper при закрытии хранилища",
|
Content = "Exit KeyKeeper when closing vault",
|
||||||
FontSize = 14,
|
FontSize = 14,
|
||||||
// Подгружаем сохраненное состояние из статического класса
|
// Подгружаем сохраненное состояние из статического класса
|
||||||
IsChecked = AppSettings.ExitOnRepositoryClose
|
IsChecked = AppSettings.ExitOnRepositoryClose
|
||||||
|
|||||||
Reference in New Issue
Block a user