diff --git a/src/Privatezilla/Locales/Locale.Designer.cs b/src/Privatezilla/Locales/Locale.Designer.cs index 908fff1..1afa204 100644 --- a/src/Privatezilla/Locales/Locale.Designer.cs +++ b/src/Privatezilla/Locales/Locale.Designer.cs @@ -1255,7 +1255,7 @@ namespace Privatezilla.Locales { } /// - /// Sucht eine lokalisierte Zeichenfolge, die The Inventory Collector inventories applications files devices and drivers on the system and sends the information to Microsoft. This information is used to help diagnose compatibility problems.\nNote: This setting setting has no effect if the Customer Experience Improvement Program is turned off. The Inventory Collector will be off. ähnelt. + /// Sucht eine lokalisierte Zeichenfolge, die The Inventory Collector inventories applications files devices and drivers on the system and sends the information to Microsoft. This information is used to help diagnose compatibility problems.\nNote: This setting has no effect if the Customer Experience Improvement Program is turned off. The Inventory Collector will be off. ähnelt. /// internal static string settingsPrivacyInventoryCollectorInfo { get { diff --git a/src/Privatezilla/Locales/Locale.de.resx b/src/Privatezilla/Locales/Locale.de.resx index fbe0783..8a750fc 100644 --- a/src/Privatezilla/Locales/Locale.de.resx +++ b/src/Privatezilla/Locales/Locale.de.resx @@ -158,8 +158,8 @@ Info zu einer Einstellung: \r\nBewegen Sie den Cursor über eine Einstellung, um eine kurze Erläuterung anzuzeigen \r\nAnalyse (Button): Bestimmt, welche Einstellungen auf Ihrem System aktiviert und konfiguriert werden oder nicht. Es werden noche KEINE Systemänderungen vorgenommen! - \r\nAusgewählte (Button): Dies wird alle ausgewählten Einstellungen aktivieren. - \r\nAusgewählte zurücksetzen (Button): Damit werden die Standardeinstellungen für Windows 10 wiederhergestellt. + \r\nAusgewähltes anwenden (Button): Dies wird alle ausgewählten Einstellungen aktivieren. + \r\nAusgewähltes zurücksetzen (Button): Damit werden die Standardeinstellungen für Windows 10 wiederhergestellt. \r\nKonfiguriert (Zustand): Dies gibt an, dass Ihre Privatsphäre geschützt ist. \r\nNicht konfiguriert (Zustand): Dies bedeutet, dass die Windows 10-Einstellungen vorhanden sind. Main menu diff --git a/src/Privatezilla/Locales/Locale.resx b/src/Privatezilla/Locales/Locale.resx index 9a3c939..ccf144f 100644 --- a/src/Privatezilla/Locales/Locale.resx +++ b/src/Privatezilla/Locales/Locale.resx @@ -759,4 +759,4 @@ To check the code for vulnerabilities click on "View code". To obtain new objects (templates, scripts etc.) visit the Marketplace in the upper right menu. GUI - + \ No newline at end of file diff --git a/src/Privatezilla/MainWindow.cs b/src/Privatezilla/MainWindow.cs index d5cde3b..29f12ae 100644 --- a/src/Privatezilla/MainWindow.cs +++ b/src/Privatezilla/MainWindow.cs @@ -12,9 +12,6 @@ using System.Text; using System.Threading.Tasks; using System.Windows.Forms; -using System.Globalization; -using System.Threading; - namespace Privatezilla { public partial class MainWindow : Form @@ -376,11 +373,9 @@ namespace Privatezilla DoProgress(100); // Summary - ListViewItem sum = new ListViewItem(Locale.summarySelected + " " + $"{selectedSettings.Count}" + " | " + Locale.summaryConfigured + " " + $"{selectedSettings.Count - performSettingsCount}" + " | " + Locale.summaryNotConfigured + " " + $"{performSettingsCount}"); - sum.SubItems.Add(Locale.summaryInfo); - LvwStatus.Items.Insert(0, sum); + var sum = (Locale.summarySelected + " " + $"{selectedSettings.Count}" + " - " + Locale.summaryConfigured + " " + $"{selectedSettings.Count - performSettingsCount}" + " - " + Locale.summaryNotConfigured + " " + $"{performSettingsCount}"); + LblStatus.Text = Locale.statusFinishAnalyze + "\n" + sum; - LblStatus.Text = Locale.statusFinishAnalyze; BtnSettingsAnalyze.Enabled = true; LvwStatus.EndUpdate(); @@ -493,7 +488,7 @@ namespace Privatezilla private void Info_Click(object sender, EventArgs e) { - MessageBox.Show("Privatezilla" + "\nVersion " + Program.GetCurrentVersionTostring() + " (Phoenix)\r\n" + + MessageBox.Show("Privatezilla" + "\nVersion " + Program.GetCurrentVersionTostring() + " (Pollux)\r\n" + Locale.infoApp.Replace("\\t", "\t"), "Info", MessageBoxButtons.OK, MessageBoxIcon.Information); } diff --git a/src/Privatezilla/MainWindow.resx b/src/Privatezilla/MainWindow.resx index 414d8a4..eaf3ec8 100644 --- a/src/Privatezilla/MainWindow.resx +++ b/src/Privatezilla/MainWindow.resx @@ -413,11 +413,14 @@ Top, Left, Right + + NoControl + - 12, 41 + 13, 54 - 814, 5 + 702, 5 27 @@ -456,10 +459,10 @@ Segoe UI Semilight, 12pt - 9, 50 + 9, 62 - 704, 720 + 704, 708 31 @@ -486,7 +489,7 @@ 9, 7 - 704, 40 + 704, 50 29 diff --git a/src/Privatezilla/Privatezilla.csproj b/src/Privatezilla/Privatezilla.csproj index 95b791b..fd545e3 100644 --- a/src/Privatezilla/Privatezilla.csproj +++ b/src/Privatezilla/Privatezilla.csproj @@ -154,6 +154,7 @@ + diff --git a/src/Privatezilla/Properties/AssemblyInfo.cs b/src/Privatezilla/Properties/AssemblyInfo.cs index 2acc616..7943ba5 100644 --- a/src/Privatezilla/Properties/AssemblyInfo.cs +++ b/src/Privatezilla/Properties/AssemblyInfo.cs @@ -32,5 +32,5 @@ using System.Runtime.InteropServices; // Sie können alle Werte angeben oder Standardwerte für die Build- und Revisionsnummern verwenden, // indem Sie "*" wie unten gezeigt eingeben: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("0.43.0")] -[assembly: AssemblyFileVersion("0.43.0")] +[assembly: AssemblyVersion("0.50.0")] +[assembly: AssemblyFileVersion("0.50.0")] diff --git a/src/Privatezilla/Settings/Updates/DisableUpdates.cs b/src/Privatezilla/Settings/Updates/DisableUpdates.cs index ca57c70..6dc8ace 100644 --- a/src/Privatezilla/Settings/Updates/DisableUpdates.cs +++ b/src/Privatezilla/Settings/Updates/DisableUpdates.cs @@ -60,10 +60,9 @@ namespace Privatezilla.Setting.Updates return true; } catch - {} + { } return false; } - } -} +} \ No newline at end of file