@@ -53,7 +53,9 @@ Public Class Localization
53
53
54
54
'Localize form elements
55
55
Form1.PlayGameBtn.Text = GetString( "ui_play" )
56
- Form1.TasksTitleLabel.Text = GetString( "ui_title_tasks" )
56
+ Form1.SidemenuTasks.Text = " " & GetString( "ui_title_tasks" )
57
+ Form1.SidemenuSettings.Text = " " & GetString( "ui_title_settings" )
58
+ Form1.TitleLabel.Text = GetString( "ui_title_tasks" )
57
59
Form1.FoldersTitleLabel.Text = GetString( "ui_title_folders" )
58
60
Form1.BrowseBackupLocBtn.Text = GetString( "ui_btn_browse" )
59
61
Form1.BrowseSavegamesLocBtn.Text = GetString( "ui_btn_browse" )
@@ -64,17 +66,8 @@ Public Class Localization
64
66
Form1.SettingsOpenLogBtn.Text = GetString( "ui_btn_open" )
65
67
Form1.SettingsOpenCustomExeFolderBtn.Text = GetString( "ui_btn_open_folder" )
66
68
'Top menu
67
- Form1.SettingsLabel.Text = GetString( "topmenu_settings" )
68
69
Form1.LogLabel.Text = GetString( "topmenu_logs" )
69
70
Form1.AboutLabel.Text = GetString( "topmenu_about" )
70
- 'Checkboxes
71
- Form1.ConfirmExitChkBox.Text = GetString( "ui_confirm_exit" )
72
- Form1.ConfirmStopBackupChkBox.Text = GetString( "ui_confirm_backup_interruption" )
73
- Form1.DisplayNotificationChkBox.Text = GetString( "ui_backup_notification" )
74
- Form1.DisableCloudSyncChkBox.Text = GetString( "ui_disable_sync" )
75
- Form1.EnableCloudSyncChkBox.Text = GetString( "ui_enable_sync" )
76
- Form1.CheckUpdatesChkBox.Text = GetString( "ui_updates" )
77
- Form1.RememberFormPositionChkBox.Text = GetString( "ui_coordinates" )
78
71
'Tasks
79
72
Form1.BackupBtn.Text = GetString( "ui_tasks_backup" )
80
73
Form1.StopBtn.Text = GetString( "ui_tasks_stop" )
@@ -92,9 +85,16 @@ Public Class Localization
92
85
'Settings
93
86
Form1.SettingsInterfaceLang.Text = GetString( "ui_settings_lang_choice" )
94
87
Form1.SettingsLangRestartLabel.Text = GetString( "ui_settings_restart" )
95
- Form1.SettingsWriteLogToFileChkBox.Text = GetString( "ui_settings_log_file" )
88
+ Form1.SettingsConfirmExitChkBox.Text = GetString( "ui_settings_confirm_exit" )
89
+ Form1.SettingsConfirmStopBackupChkBox.Text = GetString( "ui_settings_confirm_backup_interruption" )
90
+ Form1.SettingsDisplayNotificationChkBox.Text = GetString( "ui_settings_backup_notification" )
91
+ Form1.SettingsDisableCloudSyncChkBox.Text = GetString( "ui_settings_disable_sync" )
92
+ Form1.SettingsEnableCloudSyncChkBox.Text = GetString( "ui_settings_enable_sync" )
93
+ Form1.SettingsCheckUpdatesChkBox.Text = GetString( "ui_settings_updates" )
94
+ Form1.SettingsRememberFormPositionChkBox.Text = GetString( "ui_settings_coordinates" )
96
95
Form1.SettingsNonUplayVersionChkBox.Text = GetString( "ui_settings_nouplay" )
97
96
Form1.SettingsNonUplayVersionRestartLabel.Text = GetString( "ui_settings_restart" )
97
+ Form1.SettingsWriteLogToFileChkBox.Text = GetString( "ui_settings_log_file" )
98
98
'Logs
99
99
Form1.CopyToolStripMenuItem.Text = GetString( "ui_logs_context_copy" )
100
100
Form1.SelectAllToolStripMenuItem.Text = GetString( "ui_logs_context_selectall" )
@@ -106,14 +106,15 @@ Public Class Localization
106
106
Form1.ChangelogLink.Text = GetString( "ui_about_changelog" )
107
107
Form1.LicenseLink.Text = GetString( "ui_about_legal" )
108
108
'Tooltips
109
- Form1.HelpToolTip.SetToolTip(Form1.UplayPictureBtn, GetString( "tooltip_launch_uplay" ))
110
- Form1.HelpToolTip.SetToolTip(Form1.ConfirmExitChkBox, GetString( "tooltip_confirm_exit" ))
111
- Form1.HelpToolTip.SetToolTip(Form1.ConfirmStopBackupChkBox, GetString( "tooltip_confirm_backup_interruption" ))
112
- Form1.HelpToolTip.SetToolTip(Form1.DisplayNotificationChkBox, GetString( "tooltip_backup_notification" ))
113
- Form1.HelpToolTip.SetToolTip(Form1.DisableCloudSyncChkBox, GetString( "tooltip_disable_sync" ))
114
- Form1.HelpToolTip.SetToolTip(Form1.EnableCloudSyncChkBox, GetString( "tooltip_enable_sync" ))
115
- Form1.HelpToolTip.SetToolTip(Form1.CheckUpdatesChkBox, GetString( "tooltip_updates" ))
116
- Form1.HelpToolTip.SetToolTip(Form1.RememberFormPositionChkBox, GetString( "tooltip_coordinates" ))
109
+ Form1.HelpToolTip.SetToolTip(Form1.UplayBtn, GetString( "tooltip_uplay" ))
110
+ Form1.HelpToolTip.SetToolTip(Form1.BackupFreqUpDown, String .Format(GetString( "tooltip_backup_frequency" ), Form1.BackupFreqUpDown.Minimum, Form1.BackupFreqUpDown.Maximum))
111
+ Form1.HelpToolTip.SetToolTip(Form1.SettingsConfirmExitChkBox, GetString( "tooltip_confirm_exit" ))
112
+ Form1.HelpToolTip.SetToolTip(Form1.SettingsConfirmStopBackupChkBox, GetString( "tooltip_confirm_backup_interruption" ))
113
+ Form1.HelpToolTip.SetToolTip(Form1.SettingsDisplayNotificationChkBox, GetString( "tooltip_backup_notification" ))
114
+ Form1.HelpToolTip.SetToolTip(Form1.SettingsDisableCloudSyncChkBox, GetString( "tooltip_disable_sync" ))
115
+ Form1.HelpToolTip.SetToolTip(Form1.SettingsEnableCloudSyncChkBox, GetString( "tooltip_enable_sync" ))
116
+ Form1.HelpToolTip.SetToolTip(Form1.SettingsCheckUpdatesChkBox, GetString( "tooltip_updates" ))
117
+ Form1.HelpToolTip.SetToolTip(Form1.SettingsRememberFormPositionChkBox, GetString( "tooltip_coordinates" ))
117
118
118
119
'Localize Message Box
119
120
'Buttons
0 commit comments