2
0
deadmoon 2 жил өмнө
parent
commit
4c5b34441e
37 өөрчлөгдсөн 5034 нэмэгдсэн , 4540 устгасан
  1. 8 0
      CHANGELOG.md
  2. 2 1
      Optimizer/Enums.cs
  3. 36 2
      Optimizer/Forms/FirstRunForm.Designer.cs
  4. 12 0
      Optimizer/Forms/FirstRunForm.cs
  5. 4447 4444
      Optimizer/Forms/MainForm.Designer.cs
  6. 23 5
      Optimizer/Forms/MainForm.cs
  7. 1 1
      Optimizer/Forms/MainForm.resx
  8. 2 2
      Optimizer/Optimize.cs
  9. 2 0
      Optimizer/Optimizer.csproj
  10. 2 1
      Optimizer/Options.cs
  11. 3 3
      Optimizer/Program.cs
  12. 67 37
      Optimizer/Properties/Resources.Designer.cs
  13. 6 0
      Optimizer/Properties/Resources.resx
  14. BIN
      Optimizer/Resources/Flags/dutch.png
  15. 2 2
      Optimizer/Resources/i18n/AR.json
  16. 2 2
      Optimizer/Resources/i18n/CN.json
  17. 2 2
      Optimizer/Resources/i18n/CZ.json
  18. 2 2
      Optimizer/Resources/i18n/DE.json
  19. 2 2
      Optimizer/Resources/i18n/EL.json
  20. 2 2
      Optimizer/Resources/i18n/EN.json
  21. 2 2
      Optimizer/Resources/i18n/ES.json
  22. 2 2
      Optimizer/Resources/i18n/FR.json
  23. 2 2
      Optimizer/Resources/i18n/HU.json
  24. 2 2
      Optimizer/Resources/i18n/IT.json
  25. 2 2
      Optimizer/Resources/i18n/KO.json
  26. 2 2
      Optimizer/Resources/i18n/KU.json
  27. 378 0
      Optimizer/Resources/i18n/NL.json
  28. 2 2
      Optimizer/Resources/i18n/PL.json
  29. 2 2
      Optimizer/Resources/i18n/PT.json
  30. 2 2
      Optimizer/Resources/i18n/RO.json
  31. 2 2
      Optimizer/Resources/i18n/RU.json
  32. 2 2
      Optimizer/Resources/i18n/TR.json
  33. 2 2
      Optimizer/Resources/i18n/TW.json
  34. 2 2
      Optimizer/Utilities.cs
  35. 6 5
      README.md
  36. 0 0
      feed.json
  37. 1 1
      version.txt

+ 8 - 0
CHANGELOG.md

@@ -1,3 +1,11 @@
+## [14.0] - 2022-09-24
+- New: Fully translated into Dutch (thanks to svanlaere - https://github.com/svanlaere)
+- Hotfix: Snap Assist not working
+- Hotfix: Restart button crash
+- Hotfix: UWP app image crash
+- Hotfix: Chinese translation
+- Improved: Reset Configuration renamed to Repair, because it is an auto-repair mechanism, NOT a Reset
+
 ## [13.9] - 2022-08-21
 - Hotfix: Help messages for each toggle now appears on a panel
 - Hotfix: Restarting from inside the app does not save settings

+ 2 - 1
Optimizer/Enums.cs

@@ -105,6 +105,7 @@
         AR, // arabic
         KU, // kurdish
         HU, // hungarian
-        RO // romanian
+        RO, // romanian
+        NL // dutch
     }
 }

+ 36 - 2
Optimizer/Forms/FirstRunForm.Designer.cs

@@ -67,6 +67,8 @@ namespace Optimizer
             this.pictureBox14 = new System.Windows.Forms.PictureBox();
             this.radioRomanian = new Optimizer.MoonRadio();
             this.pictureBox15 = new System.Windows.Forms.PictureBox();
+            this.radioDutch = new Optimizer.MoonRadio();
+            this.pictureBox16 = new System.Windows.Forms.PictureBox();
             ((System.ComponentModel.ISupportInitialize)(this.pictureBox88)).BeginInit();
             ((System.ComponentModel.ISupportInitialize)(this.pictureBox87)).BeginInit();
             ((System.ComponentModel.ISupportInitialize)(this.pictureBox86)).BeginInit();
@@ -85,6 +87,7 @@ namespace Optimizer
             ((System.ComponentModel.ISupportInitialize)(this.pictureBox13)).BeginInit();
             ((System.ComponentModel.ISupportInitialize)(this.pictureBox14)).BeginInit();
             ((System.ComponentModel.ISupportInitialize)(this.pictureBox15)).BeginInit();
+            ((System.ComponentModel.ISupportInitialize)(this.pictureBox16)).BeginInit();
             this.SuspendLayout();
             // 
             // pictureBox88
@@ -133,7 +136,7 @@ namespace Optimizer
             this.btnStart.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
             this.btnStart.Font = new System.Drawing.Font("Segoe UI Semibold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
             this.btnStart.ForeColor = System.Drawing.Color.White;
-            this.btnStart.Location = new System.Drawing.Point(11, 320);
+            this.btnStart.Location = new System.Drawing.Point(11, 358);
             this.btnStart.Margin = new System.Windows.Forms.Padding(2);
             this.btnStart.Name = "btnStart";
             this.btnStart.Size = new System.Drawing.Size(289, 31);
@@ -580,6 +583,32 @@ namespace Optimizer
             this.pictureBox15.TabStop = false;
             this.pictureBox15.Click += new System.EventHandler(this.pictureBox15_Click);
             // 
+            // radioDutch
+            // 
+            this.radioDutch.AutoSize = true;
+            this.radioDutch.Font = new System.Drawing.Font("Segoe UI Semibold", 12F);
+            this.radioDutch.ForeColor = System.Drawing.Color.White;
+            this.radioDutch.Location = new System.Drawing.Point(53, 271);
+            this.radioDutch.Margin = new System.Windows.Forms.Padding(2);
+            this.radioDutch.Name = "radioDutch";
+            this.radioDutch.Size = new System.Drawing.Size(112, 25);
+            this.radioDutch.TabIndex = 118;
+            this.radioDutch.Tag = "";
+            this.radioDutch.Text = "Nederlands";
+            this.radioDutch.UseVisualStyleBackColor = true;
+            this.radioDutch.CheckedChanged += new System.EventHandler(this.radioDutch_CheckedChanged);
+            // 
+            // pictureBox16
+            // 
+            this.pictureBox16.Image = global::Optimizer.Properties.Resources.dutch;
+            this.pictureBox16.Location = new System.Drawing.Point(13, 274);
+            this.pictureBox16.Name = "pictureBox16";
+            this.pictureBox16.Size = new System.Drawing.Size(32, 19);
+            this.pictureBox16.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage;
+            this.pictureBox16.TabIndex = 117;
+            this.pictureBox16.TabStop = false;
+            this.pictureBox16.Click += new System.EventHandler(this.pictureBox16_Click);
+            // 
             // FirstRunForm
             // 
             this.AcceptButton = this.btnStart;
@@ -587,7 +616,9 @@ namespace Optimizer
             this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
             this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(20)))), ((int)(((byte)(20)))), ((int)(((byte)(20)))));
             this.CancelButton = this.btnStart;
-            this.ClientSize = new System.Drawing.Size(311, 362);
+            this.ClientSize = new System.Drawing.Size(311, 400);
+            this.Controls.Add(this.radioDutch);
+            this.Controls.Add(this.pictureBox16);
             this.Controls.Add(this.radioRomanian);
             this.Controls.Add(this.pictureBox15);
             this.Controls.Add(this.radioHungarian);
@@ -655,6 +686,7 @@ namespace Optimizer
             ((System.ComponentModel.ISupportInitialize)(this.pictureBox13)).EndInit();
             ((System.ComponentModel.ISupportInitialize)(this.pictureBox14)).EndInit();
             ((System.ComponentModel.ISupportInitialize)(this.pictureBox15)).EndInit();
+            ((System.ComponentModel.ISupportInitialize)(this.pictureBox16)).EndInit();
             this.ResumeLayout(false);
             this.PerformLayout();
 
@@ -699,5 +731,7 @@ namespace Optimizer
         private System.Windows.Forms.PictureBox pictureBox14;
         private MoonRadio radioRomanian;
         private System.Windows.Forms.PictureBox pictureBox15;
+        private MoonRadio radioDutch;
+        private System.Windows.Forms.PictureBox pictureBox16;
     }
 }

+ 12 - 0
Optimizer/Forms/FirstRunForm.cs

@@ -237,5 +237,17 @@ namespace Optimizer
         {
             radioRomanian.PerformClick();
         }
+
+        private void radioDutch_CheckedChanged(object sender, EventArgs e)
+        {
+            Options.CurrentOptions.LanguageCode = LanguageCode.NL;
+            Options.SaveSettings();
+            Options.LoadTranslation();
+        }
+
+        private void pictureBox16_Click(object sender, EventArgs e)
+        {
+            radioDutch.PerformClick();
+        }
     }
 }

Файлын зөрүү хэтэрхий том тул дарагдсан байна
+ 4447 - 4444
Optimizer/Forms/MainForm.Designer.cs


+ 23 - 5
Optimizer/Forms/MainForm.cs

@@ -71,7 +71,7 @@ namespace Optimizer
         string _removeDesktopItemsMessage = "Are you sure you want to delete all desktop items?";
         string _removeModernAppsMessage = "Are you sure you want to uninstall the following app(s)?";
         string _errorModernAppsMessage = "The following app(s) couldn't be uninstalled:\n";
-        string _resetMessage = "Are you sure you want to reset configuration?\n\nThis will reset all your preferences, including any icons you extracted or downloaded using Integrator, but will not touch anything on your computer!";
+        string _repairMessage = "Are you sure you want to reset configuration?\n\nThis will reset all your preferences, including any icons you extracted or downloaded using Integrator, but will not touch anything on your computer!";
         string _flushDNSMessage = "Are you sure you wish to flush the DNS cache of Windows?\n\nThis will cause internet disconnection for a moment and it may be needed a restart to function properly.";
 
         string _byteSizeNullString = " b";
@@ -1874,7 +1874,7 @@ namespace Optimizer
                 _removeDesktopItemsMessage = Options.TranslationList["removeAllItems"];
                 _removeModernAppsMessage = Options.TranslationList["removeModernApps"];
                 _errorModernAppsMessage = Options.TranslationList["errorModernApps"];
-                _resetMessage = Options.TranslationList["resetMessage"];
+                _repairMessage = Options.TranslationList["resetMessage"];
                 _flushDNSMessage = Options.TranslationList["flushDNSMessage"];
 
                 listStartupItems.Columns[0].Text = translationList["startupItemName"];
@@ -2285,7 +2285,11 @@ namespace Optimizer
 
                 if (pngTmp != null)
                 {
-                    appCard.appImage.Image = Image.FromFile(pngTmp.FullName);
+                    try
+                    {
+                        appCard.appImage.Image = Image.FromFile(pngTmp.FullName);
+                    }
+                    catch { }
                 }
 
                 appCard.Location = new Point(0, panelUwp.Controls.Count * (DPI_PREFERENCE / 3));
@@ -3069,9 +3073,9 @@ namespace Optimizer
 
         private void btnResetConfig_Click(object sender, EventArgs e)
         {
-            if (MessageBox.Show(_resetMessage, "Optimizer", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes)
+            if (MessageBox.Show(_repairMessage, "Optimizer", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes)
             {
-                Utilities.ResetConfiguration();
+                Utilities.Repair();
             }
         }
 
@@ -4375,6 +4379,13 @@ namespace Optimizer
                 this.MinimumSize = _sizeDefault;
                 this.Size = _sizeDefault;
             }
+            else if (boxLang.Text == "Nederlands")
+            {
+                picFlag.Image = Properties.Resources.dutch;
+                Options.CurrentOptions.LanguageCode = LanguageCode.NL;
+                this.MinimumSize = _sizeDefault;
+                this.Size = _sizeDefault;
+            }
 
             this.CenterToScreen();
             Options.SaveSettings();
@@ -4645,6 +4656,7 @@ namespace Optimizer
 
         private void picRestartNeeded_Click(object sender, EventArgs e)
         {
+            Options.SaveSettings();
             Utilities.Reboot();
         }
 
@@ -4673,5 +4685,11 @@ namespace Optimizer
         {
             restartAndApply.Font = new Font(restartAndApply.Font, FontStyle.Underline);
         }
+
+        private void restartAndApply_Click(object sender, EventArgs e)
+        {
+            Options.SaveSettings();
+            Utilities.Reboot();
+        }
     }
 }

+ 1 - 1
Optimizer/Forms/MainForm.resx

@@ -751,7 +751,7 @@ any application only by typing your desired keyword.</value>
         AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w
         LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAACZTeXN0
         ZW0uV2luZG93cy5Gb3Jtcy5JbWFnZUxpc3RTdHJlYW1lcgEAAAAERGF0YQcCAgAAAAkDAAAADwMAAAC0
-        GgAAAk1TRnQBSQFMAgEBCQEAAZgBCwGYAQsBIAEAASABAAT/ASEBAAj/AUIBTQE2BwABNgMAASgDAAGA
+        GgAAAk1TRnQBSQFMAgEBCQEAAdgBCwHYAQsBIAEAASABAAT/ASEBAAj/AUIBTQE2BwABNgMAASgDAAGA
         AwABYAMAAQEBAAEgBgABwP8A/wD/AP8A/wD/AP8A/wAeAANHAYB0//8AiQADRwGAdP//AIkAAyoBQANH
         AYADRwGAA0cBgANHAYADRwGAA0cBgANHAYADRwGAA0cBgANHAYADRwGAA0cBgANHAYADRwGAA0cBgANH
         AYADRwGAA0cBgANHAYADRwGAA0cBgANHAYADRwGAA0cBgANHAYADRwGAA0cBgANHAYADRwGA/wD/AP8A

+ 2 - 2
Optimizer/Optimize.cs

@@ -1536,13 +1536,13 @@ namespace Optimizer
         internal static void DisableSnapAssist()
         {
             Registry.SetValue(@"HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced", "EnableSnapAssistFlyout", "0", RegistryValueKind.DWord);
-            Registry.SetValue(@"HKEY_CURRENT_USER\Control Panel\Desktop", "DockMoving", 0, RegistryValueKind.DWord);
+            Registry.SetValue(@"HKEY_CURRENT_USER\Control Panel\Desktop", "DockMoving", "0", RegistryValueKind.String);
         }
 
         internal static void EnableSnapAssist()
         {
             Registry.SetValue(@"HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\Advanced", "EnableSnapAssistFlyout", "1", RegistryValueKind.DWord);
-            Registry.SetValue(@"HKEY_CURRENT_USER\Control Panel\Desktop", "DockMoving", 1, RegistryValueKind.DWord);
+            Registry.SetValue(@"HKEY_CURRENT_USER\Control Panel\Desktop", "DockMoving", "1", RegistryValueKind.String);
         }
 
         internal static void DisableWidgets()

+ 2 - 0
Optimizer/Optimizer.csproj

@@ -298,6 +298,7 @@
     </Compile>
     <None Include="Resources\i18n\AR.json" />
     <None Include="Resources\i18n\HU.json" />
+    <None Include="Resources\i18n\NL.json" />
     <None Include="Resources\i18n\PL.json" />
     <None Include="Resources\i18n\KU.json" />
     <None Include="Resources\i18n\RO.json" />
@@ -366,6 +367,7 @@
     </COMReference>
   </ItemGroup>
   <ItemGroup>
+    <None Include="Resources\Flags\dutch.png" />
     <None Include="Resources\Assets\silver.png" />
     <None Include="Resources\Assets\ruby.png" />
     <None Include="Resources\Assets\jade.png" />

+ 2 - 1
Optimizer/Options.cs

@@ -310,7 +310,8 @@ namespace Optimizer
                 if (CurrentOptions.LanguageCode == LanguageCode.KU) TranslationList = JObject.Parse(Properties.Resources.KU);
                 if (CurrentOptions.LanguageCode == LanguageCode.HU) TranslationList = JObject.Parse(Properties.Resources.HU);
                 if (CurrentOptions.LanguageCode == LanguageCode.RO) TranslationList = JObject.Parse(Properties.Resources.RO);
-            }
+                if (CurrentOptions.LanguageCode == LanguageCode.NL) TranslationList = JObject.Parse(Properties.Resources.NL);
+;            }
             catch (Exception ex)
             {
                 ErrorLogger.LogError("Options.LoadTranslation", ex.Message, ex.StackTrace);

+ 3 - 3
Optimizer/Program.cs

@@ -12,8 +12,8 @@ namespace Optimizer
         /* VERSION PROPERTIES */
         /* DO NOT LEAVE THEM EMPTY */
 
-        internal readonly static float Major = 13;
-        internal readonly static float Minor = 9;
+        internal readonly static float Major = 14;
+        internal readonly static float Minor = 0;
 
         internal readonly static bool EXPERIMENTAL_BUILD = false;
 
@@ -187,7 +187,7 @@ namespace Optimizer
                                 // resets configuration
                                 if (arg == "/reset")
                                 {
-                                    Utilities.ResetConfiguration(true);
+                                    Utilities.Repair(true);
                                     return;
                                 }
 

+ 67 - 37
Optimizer/Properties/Resources.Designer.cs

@@ -113,12 +113,12 @@ namespace Optimizer.Properties {
         ///	&quot;restartButton&quot;: &quot;إعادة التشغيل الآن&quot;,
         ///	&quot;restartButton8&quot;: &quot;إعادة التشغيل الآن&quot;,
         ///	&quot;restartButton10&quot;: &quot;إعادة التشغيل الآن&quot;,
-        ///	&quot;restartAndApply&quot;: &quot;إعادة التشغيل لتطبيق التغييرات؟&quot;,
+        ///	&quot;restartAndApply&quot;: &quot;إعادة التشغيل لتطبيق التغييرات&quot;,
         ///	&quot;btnFind&quot;: &quot;يجد&quot;,
         ///	&quot;btnKill&quot;: &quot;قتل&quot;,
         ///	&quot;trayUnlocker&quot;: &quot;مقابض الملفات&quot;,
         ///	&quot;onedriveM&quot;: &quot;هل أنت متأكد من أنك تريد إزالة تثبيت OneDrive؟ يؤدي هذا إلى حذف ملفات سطح المكتب والمستندات الخاصة بك! استخدم هذا الخيار فقط في حساب محلي!&quot;,
-        ///	&quot;systemRestoreM&quot;: &quot;هل أنت متأكد أنك تريد تعطيل استعادة النظام؟ سيؤدي هذا [rest of string was truncated]&quot;;.
+        ///	&quot;systemRestoreM&quot;: &quot;هل أنت متأكد أنك تريد تعطيل استعادة النظام؟ سيؤدي هذا  [rest of string was truncated]&quot;;.
         /// </summary>
         internal static string AR {
             get {
@@ -222,7 +222,7 @@ namespace Optimizer.Properties {
         ///	&quot;restartButton&quot;: &quot;现在重启&quot;,
         ///	&quot;restartButton8&quot;: &quot;现在重启&quot;,
         ///	&quot;restartButton10&quot;: &quot;现在重启&quot;,
-        ///	&quot;restartAndApply&quot;: &quot;重新启动以应用更改?&quot;,
+        ///	&quot;restartAndApply&quot;: &quot;重新启动以应用更改&quot;,
         ///	&quot;btnFind&quot;: &quot;查找进程&quot;,
         ///	&quot;btnKill&quot;: &quot;结束进程&quot;,
         ///	&quot;trayUnlocker&quot;: &quot;查找文件句柄&quot;,
@@ -234,7 +234,7 @@ namespace Optimizer.Properties {
         ///	&quot;lblLab&quot;: &quot;实验构建\n(删除后测试)&quot;,
         ///	&quot;performanceSw&quot;: &quot;启用性能调整&quot;,
         ///	&quot;networkSw&quot;: &quot;禁用网络节流&quot;,
-        ///	&quot;defenderSw&quot;: &quot;禁用  [rest of string was truncated]&quot;;.
+        ///	&quot;defenderSw&quot;: &quot;禁用 W [rest of string was truncated]&quot;;.
         /// </summary>
         internal static string CN {
             get {
@@ -248,13 +248,13 @@ namespace Optimizer.Properties {
         ///	&quot;restartButton&quot;: &quot;Restartovat nyní&quot;,
         ///	&quot;restartButton8&quot;: &quot;Restartovat nyní&quot;,
         ///	&quot;restartButton10&quot;: &quot;Restartovat nyní&quot;,
-        ///	&quot;restartAndApply&quot;: &quot;Restartovat a použít změny?&quot;,
+        ///	&quot;restartAndApply&quot;: &quot;Restartovat a použít změny&quot;,
         ///	&quot;btnFind&quot;: &quot;Nalézt&quot;,
         ///	&quot;btnKill&quot;: &quot;Zabít&quot;,
         ///	&quot;trayUnlocker&quot;: &quot;Držadla souborů&quot;,
         ///	&quot;txtVersion&quot;: &quot;Verze: {VN}&quot;,
         ///	&quot;onedriveM&quot;: &quot;Opravdu chcete odinstalovat OneDrive? Tím smažete soubory plochy a dokumentů! Tuto možnost používejte pouze na místním účtu!&quot;,
-        ///	&quot;systemRestoreM&quot;: &quot;Opravdu chcete zakázat Obnovení systému?  [rest of string was truncated]&quot;;.
+        ///	&quot;systemRestoreM&quot;: &quot;Opravdu chcete zakázat Obnovení systému? T [rest of string was truncated]&quot;;.
         /// </summary>
         internal static string CZ {
             get {
@@ -278,13 +278,13 @@ namespace Optimizer.Properties {
         ///	&quot;restartButton&quot;: &quot;Jetzt neu starten&quot;,
         ///	&quot;restartButton8&quot;: &quot;Jetzt neu starten&quot;,
         ///	&quot;restartButton10&quot;: &quot;Jetzt neu starten&quot;,
-        ///	&quot;restartAndApply&quot;: &quot;Neu starten, um Änderungen anzuwenden?&quot;,
+        ///	&quot;restartAndApply&quot;: &quot;Neu starten, um Änderungen anzuwenden&quot;,
         ///	&quot;txtVersion&quot;: &quot;Version: {VN}&quot;,
         ///	&quot;btnFind&quot;: &quot;Finden&quot;,
         ///	&quot;btnKill&quot;: &quot;Töten&quot;,
         ///	&quot;trayUnlocker&quot;: &quot;Dateihandles&quot;,
         ///	&quot;txtBitness&quot;: &quot;Betriebssystem: {BITS}&quot;,
-        ///	&quot;onedriveM&quot;: &quot;Möchten Sie OneDrive wirklich deinstallieren? Dadurch werden Ihre Desktop- und Dokumentdateien gelöscht! Verwenden Sie diese Option nu [rest of string was truncated]&quot;;.
+        ///	&quot;onedriveM&quot;: &quot;Möchten Sie OneDrive wirklich deinstallieren? Dadurch werden Ihre Desktop- und Dokumentdateien gelöscht! Verwenden Sie diese Option nur [rest of string was truncated]&quot;;.
         /// </summary>
         internal static string DE {
             get {
@@ -396,6 +396,16 @@ namespace Optimizer.Properties {
             }
         }
         
+        /// <summary>
+        ///   Looks up a localized resource of type System.Drawing.Bitmap.
+        /// </summary>
+        internal static System.Drawing.Bitmap dutch {
+            get {
+                object obj = ResourceManager.GetObject("dutch", resourceCulture);
+                return ((System.Drawing.Bitmap)(obj));
+            }
+        }
+        
         /// <summary>
         ///   Looks up a localized resource of type System.Drawing.Bitmap.
         /// </summary>
@@ -415,12 +425,12 @@ namespace Optimizer.Properties {
         ///	&quot;btnFind&quot;: &quot;Εύρεση&quot;,
         ///	&quot;btnKill&quot;: &quot;Τερματισμός&quot;,
         ///	&quot;trayUnlocker&quot;: &quot;File Handles&quot;,
-        ///	&quot;restartAndApply&quot;: &quot;Επανεκκίνηση για την εφαρμογή των αλλαγών;&quot;,
+        ///	&quot;restartAndApply&quot;: &quot;Επανεκκίνηση για την εφαρμογή των αλλαγών&quot;,
         ///	&quot;txtVersion&quot;: &quot;Έκδοση: {VN}&quot;,
         ///	&quot;txtBitness&quot;: &quot;Αρχιτεκτονική {BITS}&quot;,
         ///	&quot;linkUpdate&quot;: &quot;Διαθέσιμη ενημέρωση&quot;,
         ///	&quot;lblLab&quot;: &quot;Πειραματική έκδοση&quot;,
-        ///	&quot;systemRestoreM&quot;: &quot;Είστε σίγουροι ότι θέλετε να απενεργοποιήσετε τα αντίγραφ [rest of string was truncated]&quot;;.
+        ///	&quot;systemRestoreM&quot;: &quot;Είστε σίγουροι ότι θέλετε να απενεργοποιήσετε τα αντίγραφα [rest of string was truncated]&quot;;.
         /// </summary>
         internal static string EL {
             get {
@@ -437,14 +447,14 @@ namespace Optimizer.Properties {
         ///	&quot;btnFind&quot;: &quot;Find&quot;,
         ///	&quot;btnKill&quot;: &quot;Kill&quot;,
         ///	&quot;trayUnlocker&quot;: &quot;File Handles&quot;,
-        ///	&quot;restartAndApply&quot;: &quot;Restart to apply changes?&quot;,
+        ///	&quot;restartAndApply&quot;: &quot;Restart to apply changes&quot;,
         ///	&quot;txtVersion&quot;: &quot;Version: {VN}&quot;,
         ///	&quot;txtBitness&quot;: &quot;You are working with {BITS}&quot;,
         ///	&quot;linkUpdate&quot;: &quot;Update available&quot;,
         ///	&quot;lblLab&quot;: &quot;Experimental build\n(delete after testing)&quot;,
-        ///	&quot;performanceSw&quot;: &quot;Enable Performance Tweaks&quot;,
+        ///	&quot;performanceSw&quot;: &quot;Optimize Performance&quot;,
         ///	&quot;networkSw&quot;: &quot;Disable Network Throttling&quot;,
-        ///	&quot;defe [rest of string was truncated]&quot;;.
+        ///	&quot;defenderSw [rest of string was truncated]&quot;;.
         /// </summary>
         internal static string EN {
             get {
@@ -547,10 +557,10 @@ namespace Optimizer.Properties {
         ///	&quot;btnFind&quot;: &quot;Encontrar&quot;,
         ///	&quot;btnKill&quot;: &quot;Matar&quot;,
         ///	&quot;trayUnlocker&quot;: &quot;Asas de archivo&quot;,
-        ///	&quot;restartAndApply&quot;: &quot;Reiniciar para aplicar cambios?&quot;,
+        ///	&quot;restartAndApply&quot;: &quot;Reiniciar para aplicar cambios&quot;,
         ///	&quot;onedriveM&quot;: &quot;¿Seguro que quieres desinstalar OneDrive? ¡Esto eliminará sus archivos de escritorio y documentos! ¡Use esta opción solo en una cuenta local!&quot;,
         ///	&quot;txtVersion&quot;: &quot;Versión: {VN}&quot;,
-        ///	&quot;systemRestoreM&quot;: &quot;¿Está seguro de qu [rest of string was truncated]&quot;;.
+        ///	&quot;systemRestoreM&quot;: &quot;¿Está seguro de que [rest of string was truncated]&quot;;.
         /// </summary>
         internal static string ES {
             get {
@@ -567,10 +577,10 @@ namespace Optimizer.Properties {
         ///	&quot;btnFind&quot;: &quot;Trouver&quot;,
         ///	&quot;btnKill&quot;: &quot;Tuer&quot;,
         ///	&quot;trayUnlocker&quot;: &quot;Poignées de fichier&quot;,
-        ///	&quot;restartAndApply&quot;: &quot;Redemarrer pour appliquer les changements?&quot;,
+        ///	&quot;restartAndApply&quot;: &quot;Redemarrer pour appliquer les changements&quot;,
         ///	&quot;onedriveM&quot;: &quot;Voulez-vous vraiment désinstaller OneDrive? Cela supprimera vos fichiers de bureau et de document! N&apos;utilisez cette option que sur un compte local!&quot;,
         ///	&quot;txtVersion&quot;: &quot;Version: {VN}&quot;,
-        ///	&quot; [rest of string was truncated]&quot;;.
+        ///	&quot;s [rest of string was truncated]&quot;;.
         /// </summary>
         internal static string FR {
             get {
@@ -638,14 +648,14 @@ namespace Optimizer.Properties {
         ///	&quot;restartButton&quot;: &quot;Újraindítás most&quot;,
         ///	&quot;restartButton8&quot;: &quot;Újraindítás most&quot;,
         ///	&quot;restartButton10&quot;: &quot;Újraindítás most&quot;,
-        ///	&quot;restartAndApply&quot;: &quot;Újraindítod az eszközt, hogy a változások érvénybe kerüljenek?&quot;,
+        ///	&quot;restartAndApply&quot;: &quot;Újraindítod az eszközt, hogy a változások érvénybe kerüljenek&quot;,
         ///	&quot;txtVersion&quot;: &quot;Verzuó: {VN}&quot;,
         ///	&quot;txtBitness&quot;: &quot;You are working with {BITS}&quot;,
         ///	&quot;linkUpdate&quot;: &quot;Frissítés elérhető&quot;,
         ///	&quot;lblLab&quot;: &quot;Kísérleti verzió\n(töröld tesztelés után!)&quot;,
         ///	&quot;performanceSw&quot;: &quot;Teljesítményjavítások engedélyezése&quot;,
         ///	&quot;networkSw&quot;: &quot;Hálózati korlátozás letiltása&quot;,
-        ///	&quot;defend [rest of string was truncated]&quot;;.
+        ///	&quot;defende [rest of string was truncated]&quot;;.
         /// </summary>
         internal static string HU {
             get {
@@ -693,7 +703,7 @@ namespace Optimizer.Properties {
         ///	&quot;restartButton&quot;: &quot;riavvia ora&quot;,
         ///	&quot;restartButton8&quot;: &quot;riavvia ora&quot;,
         ///	&quot;restartButton10&quot;: &quot;riavvia ora&quot;,
-        ///	&quot;restartAndApply&quot;: &quot;Riavviare per applicare le modifiche?&quot;,
+        ///	&quot;restartAndApply&quot;: &quot;Riavviare per applicare le modifiche&quot;,
         ///	&quot;txtVersion&quot;: &quot;Versione: {VN}&quot;,
         ///	&quot;btnFind&quot;: &quot;Trova&quot;,
         ///	&quot;btnKill&quot;: &quot;Uccisione&quot;,
@@ -701,7 +711,7 @@ namespace Optimizer.Properties {
         ///	&quot;txtBitness&quot;: &quot;Architettura: {BITS}&quot;,
         ///	&quot;linkUpdate&quot;: &quot;Aggiornamento disponibile&quot;,
         ///	&quot;lblLab&quot;: &quot;Build sperimentale\n(cancellare dopo il test)&quot;,
-        ///	&quot;systemRestoreM&quot;: &quot;Sei sicuro di voler disabilitare Ripristino configu [rest of string was truncated]&quot;;.
+        ///	&quot;systemRestoreM&quot;: &quot;Sei sicuro di voler disabilitare Ripristino configur [rest of string was truncated]&quot;;.
         /// </summary>
         internal static string IT {
             get {
@@ -738,7 +748,7 @@ namespace Optimizer.Properties {
         ///	&quot;btnFind&quot;: &quot;찾기&quot;,
         ///	&quot;btnKill&quot;: &quot;죽이기&quot;,
         ///	&quot;trayUnlocker&quot;: &quot;파일 핸들&quot;,
-        ///	&quot;restartAndApply&quot;: &quot;다시 시작하여 변경 사항을 적용하시겠습니까?&quot;,
+        ///	&quot;restartAndApply&quot;: &quot;다시 시작하여 변경 사항을 적용하시겠습니까&quot;,
         ///	&quot;txtVersion&quot;: &quot;버전: {VN}&quot;,
         ///	&quot;txtBitness&quot;: &quot;{BITS}로 작업중 - 한국어: 비너스걸&quot;,
         ///	&quot;linkUpdate&quot;: &quot;업데이트 가능&quot;,
@@ -746,7 +756,7 @@ namespace Optimizer.Properties {
         ///	&quot;performanceSw&quot;: &quot;성능 조정 사용함&quot;,
         ///	&quot;networkSw&quot;: &quot;네트워크 조절 사용 안 함&quot;,
         ///	&quot;defenderSw&quot;: &quot;Windows Defender 사용 안 함&quot;,
-        ///	&quot;systemRestoreSw&quot;: &quot;시스템 복원 사용 안 함&quot; [rest of string was truncated]&quot;;.
+        ///	&quot;systemRestoreSw&quot;: &quot;시스템 복원 사용 안 함&quot;, [rest of string was truncated]&quot;;.
         /// </summary>
         internal static string KO {
             get {
@@ -773,12 +783,12 @@ namespace Optimizer.Properties {
         ///	&quot;btnFind&quot;: &quot;بیدۆزەوە&quot;,
         ///	&quot;btnKill&quot;: &quot;بیکوژە (دایبخە)&quot;,
         ///	&quot;trayUnlocker&quot;: &quot;دەسکەکانی فایل&quot;,
-        ///	&quot;restartAndApply&quot;: &quot;ڕیستارتی ئەکەیتەوە بۆ بینینی گۆڕانکاریەکان؟&quot;,
+        ///	&quot;restartAndApply&quot;: &quot;ڕیستارتی ئەکەیتەوە بۆ بینینی گۆڕانکاریەکان&quot;,
         ///	&quot;txtVersion&quot;: &quot;وەشان : &quot;,
         ///	&quot;txtBitness&quot;: &quot;کاردەکەیت (BITS) تۆ لەگەڵ&quot;,
         ///	&quot;linkUpdate&quot;: &quot;وەشانی نوێ بەردەستە&quot;,
         ///	&quot;lblLab&quot;: &quot;دروست کردنی تاقیکاری\n سڕینەوە دوای تاقیکردنەو&quot;,
-        ///	&quot;performanceSw&quot;: &quot;کاراکردن بۆ با [rest of string was truncated]&quot;;.
+        ///	&quot;performanceSw&quot;: &quot;کاراکردن بۆ باش [rest of string was truncated]&quot;;.
         /// </summary>
         internal static string KU {
             get {
@@ -916,6 +926,26 @@ namespace Optimizer.Properties {
             }
         }
         
+        /// <summary>
+        ///   Looks up a localized string similar to {
+        ///   &quot;btnAbout&quot;:&quot;OK&quot;,
+        ///   &quot;restartButton&quot;:&quot;Nu opnieuw opstarten&quot;,
+        ///   &quot;restartButton8&quot;:&quot;Nu opnieuw opstarten&quot;,
+        ///   &quot;restartButton10&quot;:&quot;Nu opnieuw opstarten&quot;,
+        ///   &quot;restartAndApply&quot;:&quot;Herstart om wijzigingen toe te passen&quot;,
+        ///   &quot;txtVersion&quot;:&quot;Versie: {VN}&quot;,
+        ///   &quot;btnFind&quot;:&quot;Vind&quot;,
+        ///   &quot;btnKill&quot;:&quot;Dood&quot;,
+        ///   &quot;trayUnlocker&quot;:&quot;Bestandshandvatten&quot;,
+        ///   &quot;txtBitness&quot;:&quot;OS: {BITS}&quot;,
+        ///   &quot;onedriveM&quot;:&quot;Weet u zeker dat u OneDrive wilt verwijderen? Hiermee worden uw bureaublad- en documentbestanden verwijderd! Gebruik deze opt [rest of string was truncated]&quot;;.
+        /// </summary>
+        internal static string NL {
+            get {
+                return ResourceManager.GetString("NL", resourceCulture);
+            }
+        }
+        
         /// <summary>
         ///   Looks up a localized resource of type System.Byte[].
         /// </summary>
@@ -935,10 +965,10 @@ namespace Optimizer.Properties {
         ///	&quot;btnFind&quot;: &quot;Znajdować&quot;,
         ///	&quot;btnKill&quot;: &quot;Zabić&quot;,
         ///	&quot;trayUnlocker&quot;: &quot;Uchwyty do plików&quot;,
-        ///	&quot;restartAndApply&quot;: &quot;Uruchom ponownie, aby zastosować zmiany?&quot;,
+        ///	&quot;restartAndApply&quot;: &quot;Uruchom ponownie, aby zastosować zmiany&quot;,
         ///	&quot;onedriveM&quot;: &quot;Czy na pewno chcesz odinstalować OneDrive? Spowoduje to usunięcie plików pulpitu i dokumentów! Używaj tej opcji tylko na koncie lokalnym!&quot;,
         ///	&quot;txtVersion&quot;: &quot;Wersja: {VN}&quot;,
-        ///	&quot;systemRes [rest of string was truncated]&quot;;.
+        ///	&quot;systemRest [rest of string was truncated]&quot;;.
         /// </summary>
         internal static string PL {
             get {
@@ -996,10 +1026,10 @@ namespace Optimizer.Properties {
         ///	&quot;btnFind&quot;: &quot;Encontrar&quot;,
         ///	&quot;btnKill&quot;: &quot;Matar&quot;,
         ///	&quot;trayUnlocker&quot;: &quot;Alças de arquivo&quot;,
-        ///	&quot;restartAndApply&quot;: &quot;Reiniciar para aplicar as alterações?&quot;,
+        ///	&quot;restartAndApply&quot;: &quot;Reiniciar para aplicar as alterações&quot;,
         ///	&quot;onedriveM&quot;: &quot;Tem certeza de que deseja desinstalar o OneDrive? Isso excluirá seus arquivos da área de trabalho e de documentos! Use esta opção apenas em uma conta local!&quot;,
         ///	&quot;CleanPreviewForm&quot;: &quot;Antevisão Limpa&quot;,
-        ///	&quot;systemRestoreM&quot;: &quot;Te [rest of string was truncated]&quot;;.
+        ///	&quot;systemRestoreM&quot;: &quot;Tem [rest of string was truncated]&quot;;.
         /// </summary>
         internal static string PT {
             get {
@@ -1031,12 +1061,12 @@ namespace Optimizer.Properties {
         ///	&quot;btnFind&quot;: &quot;Găsește&quot;,
         ///	&quot;btnKill&quot;: &quot;Termin&quot;,
         ///	&quot;trayUnlocker&quot;: &quot;Mânere de fișiere&quot;,
-        ///	&quot;restartAndApply&quot;: &quot;Reporniți pentru a aplica modificări?&quot;,
+        ///	&quot;restartAndApply&quot;: &quot;Reporniți pentru a aplica modificări&quot;,
         ///	&quot;txtVersion&quot;: &quot;Versiune: {VN}&quot;,
         ///	&quot;txtBitness&quot;: &quot;Tu lucrezi cu {BITS}&quot;,
         ///	&quot;linkUpdate&quot;: &quot;Actualizare disponibilă&quot;,
         ///	&quot;lblLab&quot;: &quot;Construcție experimentală\n(șterge după testare)&quot;,
-        ///	&quot;performanceSw&quot;: &quot;Activează trucuri perform [rest of string was truncated]&quot;;.
+        ///	&quot;performanceSw&quot;: &quot;Activează trucuri performa [rest of string was truncated]&quot;;.
         /// </summary>
         internal static string RO {
             get {
@@ -1060,14 +1090,14 @@ namespace Optimizer.Properties {
         ///	&quot;restartButton&quot;: &quot;Перезапустить сейчас&quot;,
         ///	&quot;restartButton8&quot;: &quot;Перезапустить сейчас&quot;,
         ///	&quot;restartButton10&quot;: &quot;Перезапустить сейчас&quot;,
-        ///	&quot;restartAndApply&quot;: &quot;Перезапустить, чтобы применить изменения?&quot;,
+        ///	&quot;restartAndApply&quot;: &quot;Перезапустить, чтобы применить изменения&quot;,
         ///	&quot;txtVersion&quot;: &quot;Версия: {VN}&quot;,
         ///	&quot;btnFind&quot;: &quot;Находить&quot;,
         ///	&quot;btnKill&quot;: &quot;Убийство&quot;,
         ///	&quot;trayUnlocker&quot;: &quot;Дескрипторы файлов&quot;,
         ///	&quot;txtBitness&quot;: &quot;Вы работаете с {BITS}&quot;,
         ///	&quot;systemRestoreM&quot;: &quot;Вы уверены, что хотите отключить восстановление системы? Это удалит ваши текущие резервные изображения!&quot;,
-        ///	&quot;onedriveM&quot;: [rest of string was truncated]&quot;;.
+        ///	&quot;onedriveM&quot;:  [rest of string was truncated]&quot;;.
         /// </summary>
         internal static string RU {
             get {
@@ -1174,13 +1204,13 @@ namespace Optimizer.Properties {
         ///	&quot;restartButton&quot;: &quot;şimdi yeniden başlat&quot;,
         ///	&quot;restartButton8&quot;: &quot;şimdi yeniden başlat&quot;,
         ///	&quot;restartButton10&quot;: &quot;şimdi yeniden başlat&quot;,
-        ///	&quot;restartAndApply&quot;: &quot;Değişiklikleri uygulamak için yeniden başlatılsın mı?&quot;,
+        ///	&quot;restartAndApply&quot;: &quot;Değişiklikleri uygulamak için yeniden başlatılsın mı&quot;,
         ///	&quot;onedriveM&quot;: &quot;OneDrive&apos;ı kaldırmak istediğinizden emin misiniz? Bu, Masaüstü ve Belge dosyalarınızı siler! Bu seçeneği yalnızca yerel bir hesapta kullanın!&quot;,
         ///	&quot;txtVersion&quot;: &quot;Versiyon: {VN}&quot;,
         ///	&quot;txtBitness&quot;: &quot;{BITS} ile çalışıyor.&quot;,
         ///	&quot;btnFind&quot;: &quot;Bulmak&quot;,
         ///	&quot;btnKill&quot;: &quot;Öldürmek&quot;,
-        ///	&quot;trayU [rest of string was truncated]&quot;;.
+        ///	&quot;trayUn [rest of string was truncated]&quot;;.
         /// </summary>
         internal static string TR {
             get {
@@ -1204,7 +1234,7 @@ namespace Optimizer.Properties {
         ///	&quot;restartButton&quot;: &quot;現在重啟&quot;,
         ///	&quot;restartButton8&quot;: &quot;現在重啟&quot;,
         ///	&quot;restartButton10&quot;: &quot;現在重啟&quot;,
-        ///	&quot;restartAndApply&quot;: &quot;重新啟動以應用更改?&quot;,
+        ///	&quot;restartAndApply&quot;: &quot;重新啟動以應用更改&quot;,
         ///	&quot;onedriveM&quot;: &quot;確定要卸載 OneDrive 嗎? 這將刪除您的桌面和文檔文件! 僅在本地帳戶上使用此選項!&quot;,
         ///	&quot;txtVersion&quot;: &quot;版本: {VN}&quot;,
         ///	&quot;systemRestoreM&quot;: &quot;您確定要禁用系統還原嗎? 這將刪除您當前的備份圖像!&quot;,
@@ -1216,7 +1246,7 @@ namespace Optimizer.Properties {
         ///	&quot;lblLab&quot;: &quot;實驗構建\n(刪除後測試)&quot;,
         ///	&quot;performanceSw&quot;: &quot;啟用性能調整&quot;,
         ///	&quot;networkSw&quot;: &quot;禁用網路節流&quot;,
-        ///	&quot;defenderSw&quot;: &quot;禁用 Windows [rest of string was truncated]&quot;;.
+        ///	&quot;defenderSw&quot;: &quot;禁用 Windows  [rest of string was truncated]&quot;;.
         /// </summary>
         internal static string TW {
             get {

+ 6 - 0
Optimizer/Properties/Resources.resx

@@ -364,4 +364,10 @@
   <data name="Poppins_Regular" type="System.Resources.ResXFileRef, System.Windows.Forms">
     <value>..\Resources\Fonts\Poppins-Regular.ttf;System.Byte[], mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
   </data>
+  <data name="dutch" type="System.Resources.ResXFileRef, System.Windows.Forms">
+    <value>..\Resources\Flags\dutch.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a</value>
+  </data>
+  <data name="NL" type="System.Resources.ResXFileRef, System.Windows.Forms">
+    <value>..\Resources\i18n\NL.json;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;utf-8</value>
+  </data>
 </root>

BIN
Optimizer/Resources/Flags/dutch.png


+ 2 - 2
Optimizer/Resources/i18n/AR.json

@@ -168,7 +168,7 @@
 	"lblTroubleshoot": "استكشاف الأخطاء وإصلاحها",
 	"btnViewLog": "عرض الأخطاء",
 	"btnOpenConf": "إظهار مجلد الإعدادات",
-	"btnResetConfig": "إعادة التهيئة",
+	"btnResetConfig": "يصلح",
 	"integrator1": "يمكن لعنصر التكامل إضافة عناصر\nمخصصة بالكامل في قائمة سطح المكتب التي تظهر بالنقر بزر الماوس الأيمن:",
 	"integrator2": "• أي برنامج",
 	"integrator3": "• اختصارات إلى المجلدات",
@@ -257,7 +257,7 @@
 	"errorModernApps": "تعذر إلغاء تثبيت التطبيق(التطبيقات) التالية:\n",
 	"latestVersionM": "أحدث إصدار: {LATEST}",
 	"currentVersionM": "الإصدار الحالي: {CURRENT}",
-	"resetMessage": "هل تريد بالتأكيد إعادة تعيين الإعدادات؟\nسيؤدي هذا إلى إعادة تعيين جميع تفضيلاتك، بما في ذلك أي أيقونات قمت باستخراجها أو تنزيلها باستخدام Integrator، ولكن لن تلمس أي شيء على جهاز الكمبيوتر الخاص بك!",
+	"resetMessage": "سيخرج التطبيق ويحاول إصلاح نفسه.",
 	"newVersion": "يتوفر إصدار جديد!هل تريد تنزيله الآن؟\nسيتم إعادة تشغيل التطبيق في غضون ثوانٍ قليلة.",
 	"flushDNSMessage": "هل أنت متأكد من رغبتك في مسح ذاكرة التخزين المؤقت لـ DNS الخاصة بـ Windows?\n\nسيؤدي ذلك إلى قطع الاتصال بالإنترنت للحظة وقد تكون هناك حاجة لإعادة التشغيل لتعمل بشكل صحيح.",
 	"downloadsFinished": "أنتها",

+ 2 - 2
Optimizer/Resources/i18n/CN.json

@@ -171,7 +171,7 @@
 	"lblTroubleshoot": "故障排除",
 	"btnViewLog": "查看错误",
 	"btnOpenConf": "显示配置文件夹",
-	"btnResetConfig": "重置配置",
+	"btnResetConfig": "修理",
 	"integrator1": "集成器能够添加完全定制\n项目在桌面右键菜单:",
 	"integrator2": "• 任何程序",
 	"integrator3": "• 快捷方式到文件夹",
@@ -260,7 +260,7 @@
 	"errorModernApps": "以下应用程序无法卸载:\n",
 	"latestVersionM": "最新版本: {LATEST}",
 	"currentVersionM": "当前版本: {CURRENT}",
-	"resetMessage": "您确定要重置配置吗?\n这将重置所有您的首选项,包括您提取的任何图标\n或使用Integrator下载,但不会接触您的计算机上的任何东西!",
+	"resetMessage": "应用程序将退出并尝试自行修复。",
 	"newVersion": "有一个新的版本可用! 你想现在下载吗?\n应用程序将在几秒钟内重新启动.",
 	"downloadsFinished": "完成",
 	"downloadDirInvalid": "指定的下载文件夹无效",

+ 2 - 2
Optimizer/Resources/i18n/CZ.json

@@ -169,7 +169,7 @@
 	"lblTroubleshoot": "Odstranit problémy",
 	"btnViewLog": "Zobrazit chyby",
 	"btnOpenConf": "Zobrazit konfigurační složku",
-	"btnResetConfig": "Obnovit konfiguraci",
+	"btnResetConfig": "Opravit",
 	"integrator1": "Integrátor umožňuje přidávat plně přizpůsobené\npoložky v nabídce pravého tlačítka myši na ploše:",
 	"integrator2": "• Libovolný program",
 	"integrator3": "• Zástupci na složky",
@@ -258,7 +258,7 @@
 	"errorModernApps": "Následující aplikace se nepodařilo odinstalovat:\n",
 	"latestVersionM": "Nejnovější verze: {LATEST}",
 	"currentVersionM": "Současná verze: {CURRENT}",
-	"resetMessage": "Opravdu chcete resetovat konfiguraci?\nTím se resetují všechny vaše předvolby, včetně všech extrahovaných ikon\nkteré jste stáhli pomocí Integrátoru, ale program se nedotkne ničeho na vašem počítači!",
+	"resetMessage": "Aplikace se ukončí a pokusí se opravit.",
 	"newVersion": "K dispozici je nová verze! Chcete si je nyní stáhnout?\nAplikace se za několik sekund restartuje.",
 	"downloadsFinished": "Dokončeno",
 	"downloadDirInvalid": "Zadaná složka pro stahování není platná",

+ 2 - 2
Optimizer/Resources/i18n/DE.json

@@ -169,7 +169,7 @@
 	"lblTroubleshoot": "Fehlersuche",
 	"btnViewLog": "Fehler anzeigen",
 	"btnOpenConf": "Konfigurationsordner anzeigen",
-	"btnResetConfig": "Konfiguration zurücksetzen",
+	"btnResetConfig": "Reparatur",
 	"integrator1": "Der Integrator ist in der Lage, vollständig angepasste\nEinträge im Rechtsklick-Menü des Desktop hinzuzufügen:",
 	"integrator2": "- Jedes Programm",
 	"integrator3": "- Verknüpfungen zu Ordnern",
@@ -258,7 +258,7 @@
 	"errorModernApps": "Die folgende(n) App(s) konnte(n) nicht deinstalliert werden:\n",
 	"latestVersionM": "NLetzte Version: {LATEST}",
 	"currentVersionM": "Aktuelle Version: {CURRENT}",
-	"resetMessage": "Sind Sie sicher, dass Sie die Konfiguration zurücksetzen möchten?\nDies setzt alle Ihre Einstellungen zurück, einschließlich aller Symbole, die Sie mit Integrator extrahiert oder heruntergeladen haben, verändert jedoch nichts auf Ihrem Computer!",
+	"resetMessage": "Die App wird beendet und versucht, sich selbst zu reparieren.",
 	"newVersion": "Es ist eine neue Version verfügbar! Möchten Sie jetzt herunterladen?\nDie App wird in ein paar Sekunden neu gestartet.",
 	"downloadsFinished": "Abgeschlossen",
 	"downloadDirInvalid": "Der angegebene Download-Ordner ist nicht gültig",

+ 2 - 2
Optimizer/Resources/i18n/EL.json

@@ -168,7 +168,7 @@
 	"lblTroubleshoot": "Επίλυση Προβλημάτων",
 	"btnViewLog": "Προβολή Σφαλμάτων",
 	"btnOpenConf": "Εμφάνιση Φακέλου Ρυθμίσεων",
-	"btnResetConfig": "Επαναφορά Ρυθμίσεων",
+	"btnResetConfig": "Επιδιόρθωση",
 	"integrator1": "Το Integrator μπορεί να προσθέσει πλήρως προσαρμοσμένα\nστοιχεία στο μενού δεξιού κλικ στην επιφάνεια εργασίας:",
 	"integrator2": "• Οποιοδήποτε πρόγραμμα",
 	"integrator3": "• Συντομεύσεις για τους φακέλους",
@@ -258,7 +258,7 @@
 	"errorModernApps": "Δεν ήταν δυνατή η απεγκατάσταση των ακόλουθων εφαρμογών:\n",
 	"latestVersionM": "Τελευταία έκδοση: {LATEST}",
 	"currentVersionM": "Τρέχουσα έκδοση: {CURRENT}",
-	"resetMessage": "Είστε βέβαιοι ότι θέλετε να επαναφέρετε τις ρυθμίσεις;\nΑυτό θα επαναφέρει όλες τις προτιμήσεις σας, συμπεριλαμβανομένων των εικονιδίων που έχετε εξαγάγει\nή έχετε κατεβάσει μέσω του Integrator, αλλά δεν θα αλλάξει τίποτα στον υπολογιστή σας!",
+	"resetMessage": "Η εφαρμογή θα κλείσει και θα προσπαθήσει να επιδιορθωθεί μόνη της.",
 	"newVersion": "Υπάρχει μια νέα έκδοση διαθέσιμη! Θέλετε να την κατεβάσετε τώρα;\nΗ εφαρμογή θα κάνει επανακκίνηση σε λίγα δευτερόλεπτα",
 	"downloadsFinished": "Τέλος",
 	"downloadDirInvalid": "Ο φάκελος λήψης δεν είναι έγκυρος",

+ 2 - 2
Optimizer/Resources/i18n/EN.json

@@ -167,7 +167,7 @@
 	"lblTroubleshoot": "Troubleshooting",
 	"btnViewLog": "View errors",
 	"btnOpenConf": "Show config folder",
-	"btnResetConfig": "Reset configuration",
+	"btnResetConfig": "Repair",
 	"integrator1": "Integrator is able to add fully-customized\nitems in Desktop right-click menu:",
 	"integrator2": "• Any program",
 	"integrator3": "• Shortcuts to folders",
@@ -256,7 +256,7 @@
 	"errorModernApps": "The following app(s) couldn't be uninstalled:\n",
 	"latestVersionM": "Latest version: {LATEST}",
 	"currentVersionM": "Current version: {CURRENT}",
-	"resetMessage": "Are you sure you want to reset configuration?\nThis will reset all your preferences, including any icons you extracted\nor downloaded using Integrator, but will not touch anything on your computer!",
+	"resetMessage": "App will exit and try to repair itself.",
 	"newVersion": "There is a new version available! Do you want to download it now?\nApp will restart in a few seconds.",
 	"flushDNSMessage": "Are you sure you wish to flush the DNS cache of Windows?\n\nThis will cause internet disconnection for a moment and it may be needed a restart to function properly.",
 	"downloadsFinished": "Finished",

+ 2 - 2
Optimizer/Resources/i18n/ES.json

@@ -169,7 +169,7 @@
 	"lblTroubleshoot": "Solución de problemas",
 	"btnViewLog": "Ver errores",
 	"btnOpenConf": "Mostrar carpeta de configuración",
-	"btnResetConfig": "Restablecer configuración",
+	"btnResetConfig": "Reparar",
 	"integrator1": "El integrador puede agregar\nelementos en el menú contextual del escritorio:",
 	"integrator2": "• Cualquier programa",
 	"integrator3": "• Accesos directos a carpetas",
@@ -256,7 +256,7 @@
 	"removeAllItems": "¿Está seguro de que desea eliminar todos los elementos del escritorio?",
 	"removeModernApps": "¿Está seguro de que desea desinstalar las siguientes aplicaciones?",
 	"errorModernApps": "No se pudieron desinstalar la(s) siguientes aplicaciones:\n",
-	"resetMessage": "¿Estás seguro de que quieres restablecer la configuración?\nEsto restablecerá todas sus preferencias, incluidos los iconos que extrajo\no descargado usando Integrator, ¡Pero no tocará nada en su computadora!",
+	"resetMessage": "La aplicación se cerrará e intentará repararse sola.",
 	"newVersion": "¡Hay una nueva versión disponible! ¿Quieres descargarlo ahora?\nLa aplicación se reiniciará en unos segundos.",
 	"downloadsFinished": "Terminado",
 	"latestVersionM": "Ultima versión: {LATEST}",

+ 2 - 2
Optimizer/Resources/i18n/FR.json

@@ -169,7 +169,7 @@
 	"lblTroubleshoot": "Resolution des problemes",
 	"btnViewLog": "Afficher les erreurs",
 	"btnOpenConf": "Afficher le dossier de configuration",
-	"btnResetConfig": "Reinitialiser la configuration",
+	"btnResetConfig": "Réparation",
 	"integrator1": "L'integrateur est capable d'ajouter des element\nentierement personnalises dans le menu contextuel du bureau:",
 	"integrator2": "- N'importe quel programme",
 	"integrator3": "- Raccourcis vers des dossiers",
@@ -256,7 +256,7 @@
 	"removeAllItems": "Etes-vous sur de vouloir supprimer tous les elements du bureau?",
 	"removeModernApps": "Etes-vous sur de vouloir desinstaller les applications suivantes?",
 	"errorModernApps": "L'application suivante n'a pas pu etre desinstallee :\n",
-	"resetMessage": "Etes-vous sur de vouloir reinitialiser la configuration?\nCeci reinitialisera toutes vos preferences, y compris les icones que vous avez extraites\nou telechargees a l'aide d'Integrator, mais ne touchera rien sur votre ordinateur !",
+	"resetMessage": "L'application va se fermer et essayer de se réparer.",
 	"newVersion": "Une nouvelle version est disponible! Voulez-vous la telecharger maintenant?\nL'application va redemarrer dans quelques secondes.",
 	"downloadsFinished": "Fini",
 	"latestVersionM": "Derniere version: {LATEST}",

+ 2 - 2
Optimizer/Resources/i18n/HU.json

@@ -164,7 +164,7 @@
 	"lblTroubleshoot": "Hibaelhárítás",
 	"btnViewLog": "Hibák megtekintése",
 	"btnOpenConf": "Konfigurációs mappa megjelenítése",
-	"btnResetConfig": "Konfiguráció visszaállítása",
+	"btnResetConfig": "Javítás",
 	"integrator1": "Az Integrator képes teljesen testreszabott\nlemeket hozzáadni az Asztal jobb klikk menüjéhez:",
 	"integrator2": "• Bármilyen program",
 	"integrator3": "• Mappák parancsikonjai",
@@ -253,7 +253,7 @@
 	"errorModernApps": "A következő alkalmazás(ok) nem távolíthatók el:\n",
 	"latestVersionM": "Legújabb verzió: {LATEST}",
 	"currentVersionM": "Jelenlegi verzió: {CURRENT}",
-	"resetMessage": "Biztosan visszaállítja a konfigurációt?\nEz visszaállítja az összes beállítást, beleértve az Integrator segítségével kicsomagolt vagy letöltött ikonokat is, de nem érint semmit a számítógépén!",
+	"resetMessage": "Az alkalmazás kilép, és megpróbálja megjavítani magát.",
 	"newVersion": "Új verzió érhető el! Szeretné most letölteni?\nAz alkalmazás néhány másodpercen belül újraindul.",
 	"flushDNSMessage": "Biztosan ki szeretné üríteni a Windows DNS-gyorsítótárát?\n\nEz egy pillanatra megszakítja az internetkapcsolatot, és a megfelelő működéshez újraindításra lehet szükség.",
 	"downloadsFinished": "Kész",

+ 2 - 2
Optimizer/Resources/i18n/IT.json

@@ -160,7 +160,7 @@
 	"lblTroubleshoot": "Risoluzione errori",
 	"btnViewLog": "Visualizza errori",
 	"btnOpenConf": "Mostra cartella configurazione",
-	"btnResetConfig": "Reimposta configurazione",
+	"btnResetConfig": "Riparazione",
 	"integrator1": "L'integratore è in grado di aggiungere elementi\npersonalizzati al menu contestuale del Desktop:",
 	"integrator2": "• Qualsiasi programma",
 	"integrator3": "• Scorciatoie alle cartelle",
@@ -246,7 +246,7 @@
 	"removeAllItems": "Sei sicuro di voler eliminare tutti gli elementi dal desktop?",
 	"removeModernApps": "Sei sicuro di voler disinstallare le seguenti app?",
 	"errorModernApps": "Le seguenti applicazioni non possono essere disinstallate:\n",
-	"resetMessage": "Sei sicuro di voler reimpostare la configurazione?\nQuesto reimposterà tutte le tue preferenze, comprese icone estratte\n o scaricate usando l'integratore, ma non toccherà niente sul tuo computer!",
+	"resetMessage": "L'app si chiuderà e proverà a ripararsi.",
 	"newVersion": "C'è una nuova versione disponibile! Vuoi scaricarla adesso?\nL'app si riavvierà tra pochi secondi.",
 	"downloadsFinished": "Completato",
 	"latestVersionM": "Ultima versione: {LATEST}",

+ 2 - 2
Optimizer/Resources/i18n/KO.json

@@ -167,7 +167,7 @@
 	"lblTroubleshoot": "문제 해결",
 	"btnViewLog": "오류 표시",
 	"btnOpenConf": "구성 폴더 표시",
-	"btnResetConfig": "구성 재설정",
+	"btnResetConfig": "수리하다",
 	"integrator1": "통합은 바탕화면 마우스 오른쪽 클릭 메뉴에\n완전히 사용자 정의된 항목을 추가할 수 있습니다:",
 	"integrator2": "• 모든 프로그램",
 	"integrator3": "• 폴더 바로가기",
@@ -256,7 +256,7 @@
 	"errorModernApps": "다음 앱을 제거할 수 없습니다\n",
 	"latestVersionM": "최신 버전: {LATEST}",
 	"currentVersionM": "현재 버전: {CURRENT}",
-	"resetMessage": "구성을 재설정하시겠습니까?\n이렇게 하면 통합기를 사용하여 압축을 풀거나 다운로드한 아이콘을 포함하여\n모든 기본 설정이 재설정되지만 컴퓨터의 아무 것도 건드리지 않습니다!",
+	"resetMessage": "앱이 종료되고 자체 복구를 시도합니다.",
 	"newVersion": "사용 가능한 새 버전이 있습니다! 지금 다운로드하시겠습니까?\n몇 초 후에 앱이 다시 시작됩니다.",
 	"flushDNSMessage": "Windows의 DNS 캐시를 플러시하시겠습니까?\n\n이로 인해 인터넷 연결이 잠시 끊기고 제대로 작동하려면 다시 시작해야 할 수 있습니다.",
 	"downloadsFinished": "마침",

+ 2 - 2
Optimizer/Resources/i18n/KU.json

@@ -168,7 +168,7 @@
 	"lblTroubleshoot": "چارەسەرکردن",
 	"btnViewLog": "پیشاندانی هەڵەکان",
 	"btnOpenConf": "فۆڵدەری شێوەپێدان نیشان بدە",
-	"btnResetConfig": "ڕێکخستنەوەی شێوەپێدان",
+	"btnResetConfig": "چاککردنەوە",
 	"integrator1": "تەواوکەرەکە توانای ئەوەی هەیە بە تەواوی تایبەتمەندکراو زێدە بکات\n شتەکان لەسەر شاشە لیستی کلیکی لای ڕاست  :",
 	"integrator2": "• هەر پڕۆگرامێک بێ",
 	"integrator3": "• کورتکراوەکان بۆ فۆڵدەرەکان",
@@ -257,7 +257,7 @@
 	"errorModernApps": "\n ناتوانی ئەم بەرنامانە بسڕیتەوە",
 	"latestVersionM": "کۆتا ڤێرژن: {کۆتا}",
 	"currentVersionM": "ڤێرژنی ئێستا: {ئێستا}",
-	"resetMessage": "یان دابەزێنراوە بە بەکارهێنانی Integrator، بەڵام دەست لە هیچ شتێک نادات لەسەر کۆمپیوتەرەکەت \n ئەمە هەموو پەسەندکراوەکانت دووبارە ڕێک دەکاتەوە، بە هەر ئایکۆنێک کە دەرتهێناوە\n ئایا دڵنیایت کە دەتەوێت شێوەپێدانەکە دووبارە ڕێک بخەیتەوە",
+	"resetMessage": "ئەپەکە دەردەچێت و هەوڵدەدات خۆی چاک بکاتەوە.",
 	"newVersion": "بەرنامە لە چەند چرکەیەکدا دەستپێدەکاتەوە \n ڤێرژنێکی نوێ بەردەستە! دەتەوێت ئێستا دایبەزێنیت؟",
 	"flushDNSMessage": "بسڕیتەوە؟ئەمە دەبێتە هۆی بڕینی پەیوەندی ئینتەرنێت بۆ ساتێک و لەوانەیە پێویستی بە دەستپێکردنەوەیەک بێت بۆ کارکردن بە شێوەیەکی گونجاو DNS WINDOWS ئایا دڵنیای دەتەوێ خزنگەی",
 	"downloadsFinished": "تەواوبوو",

+ 378 - 0
Optimizer/Resources/i18n/NL.json

@@ -0,0 +1,378 @@
+{
+   "btnAbout":"OK",
+   "restartButton":"Nu opnieuw opstarten",
+   "restartButton8":"Nu opnieuw opstarten",
+   "restartButton10":"Nu opnieuw opstarten",
+   "restartAndApply":"Herstart om wijzigingen toe te passen",
+   "txtVersion":"Versie: {VN}",
+   "btnFind":"Vind",
+   "btnKill":"Dood",
+   "trayUnlocker":"Bestandshandvatten",
+   "txtBitness":"OS: {BITS}",
+   "onedriveM":"Weet u zeker dat u OneDrive wilt verwijderen? Hiermee worden uw bureaublad- en documentbestanden verwijderd! Gebruik deze optie alleen voor een lokaal account!",
+   "linkUpdate":"Update beschikbaar",
+   "systemRestoreM":"Weet u zeker dat u systeemherstel wilt uitschakelen? Hiermee worden uw huidige back-upimages gewist!",
+   "lblLab":"Experimentele build\n(verwijderen na testen)",
+   "performanceSw":"Prestaties optimaliseren",
+   "networkSw":"Netwerkbeperking uitschakelen",
+   "defenderSw":"Windows Defender uitschakelen",
+   "systemRestoreSw":"Systeemherstel uitschakelen",
+   "printSw":"Afdrukservice uitschakelen",
+   "mediaSharingSw":"Delen van mediaspeler uitschakelen",
+   "faxSw":"Faxservice uitschakelen",
+   "reportingSw":"Foutrapportage uitschakelen",
+   "homegroupSw":"Thuisgroep uitschakelen",
+   "superfetchSw":"Superfetch uitschakelen",
+   "telemetryTasksSw":"Telemetrietaken uitschakelen",
+   "analyzeDriveB":"Analyseren",
+   "officeTelemetrySw":"Office 2016-telemetrie uitschakelen",
+   "vsSW":"Visual Studio-telemetrie uitschakelen",
+   "ffTelemetrySw":"Mozilla Firefox-telemetrie uitschakelen",
+   "chromeTelemetrySw":"Google Chrome-telemetrie uitschakelen",
+   "compatSw":"Compatibiliteitsassistent uitschakelen",
+   "smartScreenSw":"SmartScreen uitschakelen",
+   "stickySw":"Sticky Keys uitschakelen",
+   "universalTab":"Algemeen",
+   "modernAppsTab":"UWP-apps",
+   "startupTab":"Opstarten",
+   "appsTab":"Algemene apps",
+   "cleanerTab":"Cleaner",
+   "pingerTab":"pinger",
+   "registryFixerTab":"Register",
+   "integratorTab":"Integrator",
+   "optiesTab":"Opties",
+   "oldMixerSw":"Klassieke volumemixer inschakelen",
+   "oldExplorerSw":"Klassieke bestandsverkenner herstellen",
+   "adsSw":"Startmenu-advertenties uitschakelen",
+   "uODSw":"OneDrive verwijderen",
+   "peopleSw":"Mijn mensen uitschakelen",
+   "longPathsSw":"Lange paden inschakelen",
+   "autoUpdatesSw":"Automatische updates uitschakelen",
+   "driversSw":"Stuurprogramma's uitsluiten van updates",
+   "telemetryServicesSw":"Telemetrieservices uitschakelen",
+   "privacySw":"Versterk de privacy",
+   "ccSw":"Cloud klembord uitschakelen",
+   "cortanaSw":"Cortana uitschakelen",
+   "sensorSw":"Sensorservices uitschakelen",
+   "castSw":"Verwijder cast naar apparaat",
+   "inkSw":"Windows Ink uitschakelen",
+   "spellSw":"Spellingcontrole uitschakelen",
+   "xboxSw":"Xbox Live uitschakelen",
+   "gameBarSw":"Spelbalk uitschakelen",
+   "insiderSw":"Insider-service uitschakelen",
+   "featuresSw":"Functie-updates uitschakelen",
+   "actionSw":"Meldingscentrum uitschakelen",
+   "disableOneDriveSw":"OneDrive uitschakelen",
+   "tpmSw":"TPM 2.0-controle uitschakelen",
+   "leftTaskbarSw":"Taakbalk links uitlijnen",
+   "snapAssistSw":"Snap Assist uitschakelen",
+   "widgetsSw":"Widgets uitschakelen",
+   "chatSw":"Chat uitschakelen",
+   "smallerTaskbarSw":"Kleinere taakbalk",
+   "classicRibbonSw":"Klassiek lint inschakelen",
+   "classicContextSw":"Klassiek rechtsklikmenu inschakelen",
+   "refreshModernAppsButton":"Vernieuwen",
+   "uninstallModernAppsButton":"Verwijderen",
+   "txtModernAppsTitle":"Ongewenste UWP-apps verwijderen",
+   "chkSelectAllModernApps":"Alles selecteren",
+   "chkOnlyRemovable":"Alleen verwijderbaar",
+   "flushDNSMessage":"Weet u zeker dat u de Windows DNS-cache wilt leegmaken?\n\nDit zal resulteren in een korte onderbreking van de internetverbinding en mogelijk opnieuw opstarten om correct te functioneren.",
+   "startupTitle":"Kies uw opstartitems",
+   "removeStartupItemB":"Verwijderen",
+   "locateFileB":"Bestand zoeken",
+   "findInRegB":"Zoeken in het register",
+   "CleanPreviewForm":"Clean Preview",
+   "refreshStartupB":"Vernieuwen",
+   "restoreStartupB":"Herstellen",
+   "backupStartupB":"Back-up",
+   "lblBackupTitle":"Back-uptitel",
+   "doBackup":"OK",
+   "cancelBackup":"Annuleren",
+   "startupItemName":"Naam",
+   "startupItemLocation":"Locatie",
+   "startupItemType":"Type",
+   "txtFeedError":"Geen internetverbinding, probeer de links opnieuw bij te werken",
+   "appsTitle":"Snel nuttige apps downloaden en installeren",
+   "btnGetFeed":"Koppelingen bijwerken",
+   "bitPref":"Bitvoorkeur instellen",
+   "linkWarnings":"Zie waarschuwingen",
+   "txtDownloadStatus":"Inactief",
+   "goToDownloadsB":"Ga naar Downloads",
+   "btnDownloadApps":"Downloaden",
+   "cAutoInstall":"Installeren na downloaden",
+   "setDownDirLbl":"Downloadmap instellen",
+   "c64":"64-bits",
+   "c32":"32-bits",
+   "checkSelectAll":"Alles selecteren",
+   "checkTemp":"Tijdelijke bestanden",
+   "checkLogs":"Windows-logboeken",
+   "checkMiniDumps":"BSOD Minidumps",
+   "checkBin":"Prullenbak leegmaken",
+   "checkMediaCache":"Mediaspeler-cache",
+   "checkErrorReports":"Foutrapporten",
+   "cleanDriveB":"Schoon",
+   "lblPretext":"Maximaal vrij te maken geheugen:",
+   "cleanerTitle":"Systeemschijf opschonen",
+   "pingerTitle":"IP-adressen pingen en latentie bepalen",
+   "lblPinger":"IP / domeinnaam",
+   "btnOpenNetwork":"Open netwerkverbindingen",
+   "copyIPB":"Kopiëren",
+   "copyB":"Kopieer IP",
+   "btnShodan":"Controleer op SHODAN.io",
+   "btnPing":"Ping",
+   "lblResultaten":"Resultaten",
+   "flushCacheB":"DNS-cache doorspoelen",
+   "btnExport":"Exporteren",
+   "hostsTitle":"Efficiënte bewerking van uw hosts-bestand",
+   "linkLocate":"Lokaliseert",
+   "linkAdvancedEdit":"Geavanceerde editor",
+   "linkRestoreDefault":"Standaard herstellen",
+   "lblIP":"IP-adres",
+   "lblDomain":"Domein",
+   "chkBlock":"Blok",
+   "addHostB":"Toevoegen",
+   "lblLock":"Vergrendel het HOSTS-bestand om het te beschermen",
+   "chkReadOnly":"Alleen lezen",
+   "lblAdblock":"Vooraf gebouwde adblockers",
+   "lblAdblockSub":"(verwijdert uw huidige configuratie)",
+   "adblockS":"AdBlock + sociaal",
+   "adblockP":"AdBlock + porno",
+   "removeHostB":"Verwijderen",
+   "refreshHostsB":"Ververs",
+   "removeAllHostsB":"Alles verwijderen",
+   "regFixB":"Repareren",
+   "regLbl":"(sommige wijzigingen kunnen dit vereisen)",
+   "checkRestartExplorer":"Herstart Explorer om wijzigingen toe te passen",
+   "checkRegistryEditor":"Register-editor",
+   "checkFirewall":"Windows Firewall",
+   "checkContextMenu":"Rechtsklikmenu",
+   "checkRunDialog":"Dialoogvenster uitvoeren",
+   "checkFolderOptions":"Mapopties",
+   "checkControlPanel":"Configuratiescherm",
+   "checkCommandPrompt":"Opdrachtprompt",
+   "checkTaskManager":"Taakbeheer",
+   "checkEnableAll":"Alles inschakelen",
+   "registryTitle":"Veelvoorkomende registerproblemen oplossen",
+   "quickAccessToggle":"Toon menu voor snelle toegang",
+   "helpTipsToggle":"Toon Help-tips",
+   "lblTheming":"Kies je thema",
+   "radioOcean":"Oceaan",
+   "radioMagma":"Magma",
+   "radioZerg":"Zerg",
+   "radioCaramel":"Caramel",
+   "radioLime":"Lime",
+   "radioMinimaal":"Minimaal",
+   "lblUpdating":"Controleer && update",
+   "btnUpdate":"Controleer op updates",
+   "btnChangelog":"Bekijk wijzigingen",
+   "lblUpdateDisabled":"Uitgeschakeld in experimentele builds",
+   "lblTroubleshoot":"Problemen oplossen",
+   "btnViewLog":"Bekijk fouten",
+   "btnOpenConf":"Toon configuratiemap",
+   "btnResetConfig":"Reparatie",
+   "integrator1":"De integrator kan volledig aangepaste\nitems toevoegen aan het rechtermuisknopmenu op het bureaublad:",
+   "integrator2":"- Elk programma",
+   "integrator3":"- snelkoppelingen naar mappen",
+   "integrator4":"- Links naar internet",
+   "integrator5":"- Elk bestandstype",
+   "integrator6":"- Commando's",
+   "integrator7":"Elementen kunnen aangepaste pictogrammen en posities hebben.\nZe kunnen ook worden verborgen en zijn alleen\ntoegankelijk door op de SHIFT-toets te drukken.\nOok aangepaste opdrachten\nkunnen worden gemaakt voor het dialoogvenster Uitvoeren, waardoor het gemakkelijk wordt om Start de applicatie met een willekeurig trefwoord.",
+   "integratorInfoTab":"Info",
+   "tabPage8":"Toevoegen/Wijzigen",
+   "tabPage9":"Verwijderen",
+   "tabPage10":"Vooraf gemaakte menu's",
+   "tabPage11":"Dialoogvenster uitvoeren",
+   "addItemL":"Een item toevoegen of wijzigen",
+   "itemtype":"Artikeltype",
+   "radioProgramma":"Programma",
+   "radioFolder":"Map",
+   "radioLink":"Link",
+   "radioFile":"Bestand",
+   "radioCommand":"Commando",
+   "itemtoaddgroup":"Programma om toe te voegen",
+   "folderToAdd":"Map om toe te voegen",
+   "linkToAdd":"Link om toe te voegen",
+   "fileToAdd":"Bestand om toe te voegen",
+   "commandToAdd":"Opdracht om toe te voegen",
+   "icontoaddgroup":"Pictogram toevoegen",
+   "checkDefaultIcon":"Gebruik programmapictogram",
+   "checkDefaultFolderIcon":"Gebruik standaardmappictogram",
+   "checkFavicon":"Download website icoon (favicon)",
+   "checkNoIcon":"Geen pictogram",
+   "dnsCacheM":"DNS-cache wordt gegenereerd, probeer het later opnieuw!",
+   "itempositie":"Artikelpositie",
+   "radioTop":"Top",
+   "radioMiddle":"Midden",
+   "radioBottom":"Bottom",
+   "beveiliging":"beveiliging",
+   "checkShift":"Alleen weergeven als SHIFT is ingedrukt",
+   "itemnamegroup":"Itemnaam in menu",
+   "btnAddItem":"Toevoegen/Wijzigen",
+   "removeIntegratorItemsL":"Bestaande bureaubladitems verwijderen",
+   "removeDIB":"Verwijderen",
+   "refreshIIB":"Ververs",
+   "removeAllIIB":"Alles verwijderen",
+   "PMB":"Voeg voedingsmenu toe",
+   "STB":"Systeemhulpprogramma's toevoegen",
+   "WAB":"Windows-toepassingen toevoegen",
+   "SSB":"Systeemsnelkoppelingen toevoegen",
+   "DSB":"Bureausnelkoppelingen toevoegen",
+   "AddOwnerB":"Eigenaar toevoegen",
+   "RemoveOwnerB":"Eigendom verwijderen",
+   "AddCMDB":"Open toevoegen met CMD",
+   "DeleteCMDB":"Open verwijderen met CMD",
+   "readyMenusL":"Nuttige kant-en-klare menu's toevoegen",
+   "refreshCCB":"Ververs",
+   "removeCCB":"Verwijderenn",
+   "removeCCL":"Bestaande opdrachten verwijderen",
+   "btnCreateCustomCommand":"Maken",
+   "ccKeywordL":"Trefwoord",
+   "ccFileL":"Bestandslocatie",
+   "ccL":"Definieer uw eigen uitvoeringscommando's",
+   "btnYes":"Ja",
+   "btnNo":"Nee",
+   "btnOk":"OK",
+   "HostsEditorForm":"HostsEditor",
+   "savebtn":"Opslaan",
+   "closebtn":"Sluiten",
+   "alreadyRunningMsg":"Optimizer draait al op de achtergrond!",
+   "adminMissingMsg":"Optimizer moet worden uitgevoerd als beheerder!\nApp wordt nu gesloten...",
+   "unsupportedMsg":"Optimizer werkt alleen op Windows 7 of hoger!\nApp wordt nu gesloten...",
+   "confInvalidVersionMsg":"Windows-versie komt niet overeen!",
+   "confInvalidFormatMsg":"Config-bestand heeft een ongeldig formaat!",
+   "confNotFoundMsg":"Config-bestand bestaat niet!",
+   "argInvalidMsg":"Ongeldig argument! Voorbeeld: Optimizer.exe /silent.conf",
+   "StartupPreviewForm":"Opstartitems voorbeeld",
+   "StartupRestoreForm":"Opstartitems herstellen",
+   "backupL":"Opstartitems herstellen",
+   "txtNoBackups":"Geen back-ups gevonden",
+   "previewBackupB":"Voorbeeld",
+   "restoreBackupB":"Herstellen",
+   "deleteBackupB":"Verwijderen",
+   "noNewVersion":"Je hebt al de laatste versie!",
+   "betaVersion":"Je gebruikt een experimentele versie!",
+   "removeAllStartup":"Weet u zeker dat u alle opstartitems wilt verwijderen?",
+   "removeAllHosts":"Weet u zeker dat u alle hosts-items wilt verwijderen?",
+   "removeAllItems":"Weet u zeker dat u alle bureaubladitems wilt verwijderen?",
+   "removeModernApps":"Weet u zeker dat u de volgende app(s) wilt verwijderen?",
+   "errorModernApps":"De volgende app(s) konden niet worden verwijderd:\n",
+   "latestVersionM":"Laatste versie: {LAATSTE}",
+   "currentVersionM":"Huidige versie: {CURRENT}",
+   "resetMessage":"De app wordt afgesloten en probeert zichzelf te repareren.",
+   "newVersion":"Er is een nieuwe versie beschikbaar! Wilt u deze nu downloaden?\nDe app wordt binnen enkele seconden opnieuw opgestart.",
+   "downloadsFinished":"Voltooid",
+   "downloadDirInvalid":"De opgegeven downloadmap is niet geldig",
+   "no64Download":"Geen 64-bit beschikbaar, download 32-bit",
+   "no32Download":"Geen 32-bits beschikbaar, overslaan",
+   "installing":"Installeren",
+   "linkInvalid":"Link is niet meer geldig",
+   "noErrorsM":"Geen fout om weer te geven!",
+   "hostNotFound":"Geen host gevonden",
+   "pinging":"Pingen met 32 ​​bytes - 9 keer...",
+   "latency":"LATENTIE",
+   "lblSystemTools":"Systeem && Tools",
+   "lblInternet":"Internet",
+   "lblCoding":"Coding",
+   "lblVideoSound":"Video && Audio",
+   "min":"min",
+   "max":"max",
+   "gem":"Gemiddeld",
+   "timeout":"Verzoek is verlopen.",
+   "languagesL":"Kies taal",
+   "trayStartup":"Startup Manager",
+   "trayCleaner":"Drive Cleaner",
+   "trayPinger":"Pinger-tool",
+   "trayHosts":"HOSTS-editor",
+   "trayAD":"App-downloader",
+   "trayOptions":"Opties",
+   "trayRegistry":"Reparatieregister",
+   "trayRestartExplorer":"Herstart Explorer",
+   "trayExit":"Afsluiten",
+   "tipWhatsThis":"Wat is dit?",
+   "hwDetailed":"Gedetailleerde weergave",
+   "btnCopyHW":"Kopiëren",
+   "btnSaveHW":"Opslaan",
+   "indiciumTab":"Hardware",
+   "toolHWCopy":"Kopiëren",
+   "toolHWGoogle":"Zoeken met Google",
+   "toolHWDuck":"Zoeken met DuckDuckGo",
+   "trayHW":"Hardware-informatie",
+   "os":"Besturingssysteem",
+   "cpu":"Processors",
+   "ram":"Geheugen",
+   "gpu":"Grafiek",
+   "mobo":"Moederborden",
+   "disk":"opslag",
+   "inet":"Netwerkadapter",
+   "audio":"audio",
+   "dev":"Randapparatuur",
+   "vm":"Virtueel geheugen",
+   "drives":"harde schijven",
+   "volumes":"partities",
+   "opticals":"Optische stations",
+   "removables":"Verwisselbare schijven",
+   "physicalAdapters":"Fysieke Adapters",
+   "virtualAdapters":"Virtuele adapters",
+   "keyboards":"Toetsenborden",
+   "pointings":"Aanwijsapparaten",
+   "performanceTip":"Verzameling van interne Windows-instellingen voor prestatie-optimalisatie. Volledig veilig in gebruik. - Kortere wachttijd voor het beëindigen van niet-reagerende processen. - Verlaagt de vertraging van de menuweergave. - Melding van weinig schijfruimte uitgeschakeld. - Schudden uitgeschakeld om de functie te minimaliseren. - Toont altijd bestandsextensies - Toont verborgen bestanden ",
+   "networkTip":"Windows implementeert een netwerkbeperkingsmechanisme dat het netwerkverkeer beperkt bij het uitvoeren van multimediatoepassingen. Het kan ook de netwerkprestaties verminderen bij het spelen van online games.",
+   "defenderTip":"Windows Defender is de ingebouwde virusbescherming in Windows-systemen.",
+   "smartScreenTip":"SmartScreen scant automatisch bestanden, downloads en websites, blokkeert reeds bekende gevaarlijke inhoud en warip ze voordat je ze uitvoert.",
+   "systemRestoreTip":"Systeemherstel is een functie die kan worden gebruikt om Windows terug te zetten van de huidige staat naar een vorige staat om storingen of andere problemen op te lossen.",
+   "reportingTip":"Foutrapportage verzamelt applicatiecrashes en fouten en stuurt deze naar Microsoft.",
+   "telemetryTasksTip":"Telemetrieservices sturen periodiek gebruiks- en prestatiegegevens naar Microsoft om toekomstige verbeteringen mogelijk te maken.",
+   "officeTelemetryTip":"Office Telemetry Services sturen regelmatig gebruiks- en prestatiegegevens naar Microsoft voor toekomstige verbeteringen.",
+   "ffTelemetryTip":"Schakelt de telemetrie- en gegevensrapportageservices van Mozilla Firefox uit.",
+   "vsTip":"Schakelt telemetrie- en feedbackfuncties van Visual Studio uit, inclusief de SQM-client.",
+   "chromeTelemetryTip":"Hiermee wordt de telemetrie- en softwarerapportagetool van Google Chrome uitgeschakeld. (bekend vanwege het hoge CPU-gebruik).",
+   "printTip":"De printservice is verantwoordelijk voor het ontdekken, installeren en gebruiken van printers.",
+   "faxTip":"De faxservice is verantwoordelijk voor het verzenden en ontvangen van faxen.",
+   "mediaSharingTip":"Media Player Sharing is verantwoordelijk voor het delen van thuismedia voor Windows Media Player.",
+   "stickyTip":"Sticky Keys is een toegankelijkheidsfunctie die is ontworpen om Windows-gebruikers met een fysieke handicap te helpen het soort bewegingen te verminderen dat gepaard gaat met RSI.",
+   "homegroupTip":"Thuisgroep is een functie waarmee bestanden kunnen worden gedeeld op een thuisnetwerk met behulp van Windows Verkenner.",
+   "superfetchTip":"Superfetch laadt veelgebruikte applicaties vooraf in het geheugen, wat resulteert in een hoog schijfgebruik, vooral op harde schijven.",
+   "compatTip":"De compatibiliteitsassistent detecteert bekende compatibiliteitsproblemen in oudere programma's.",
+   "disableOneDriveTip":"Deactiveert integratie van OneDrive-cloudopslag.",
+   "oldMixerTip":"Herstelt het klassieke Volume Mixer-paneel.",
+   "oldExplorerTip":"Schakelt de toegang uit en verwijdert het veelgebruikte paneel Bestanden in Windows Verkenner.",
+   "adsTip":"Voorkom de weergave van advertenties in het startmenu",
+   "uODTip":"Verwijdert de integratie van OneDrive cloudopslag volledig.",
+   "peopleTip":"Mijn mensen is een nieuwe functie die recente contacten in het systeemvak toont.",
+   "longPathsTip":"Verwijdert de maximale padlengte van 256 tekens.",
+   "inkTip":"Windows Ink voegt digitale penondersteuning toe voor tekenen op het scherm.",
+   "spellTip":"Alleen touch-toetsenbordfuncties zoals: - Automatische correctie -Tekstsuggesties -Spellingscontrole ",
+   "xboxTip":"Xbox Live-services bieden streaming-, opname- en sociale functies voor Xbox-games.",
+   "actionTip":"Het meldingscentrum is een centrale plaats voor meldingen en snelle actietegels, zoals wifi, Bluetooth, enz.",
+   "autoUpdatesTip":"Hiermee wordt het automatisch downloaden en installeren van Windows-updates uitgeschakeld. In plaats daarvan ontvangt u een melding wanneer er nieuwe updates beschikbaar zijn. De Deployment Optimization-service wordt ook uitgeschakeld.",
+   "driversTip":"Handig wanneer Windows Update een goed werkend stuurprogramma steeds vervangt door een defect stuurprogramma.",
+   "telemetryServicesTip":"Telemetry Services volgen en loggen gebruiksgegevens en sturen feedback naar Microsoft voor analyse.",
+   "privacyTip":"Extra privacy tweaks die uitschakelen: - Biometrie - Geolocatie - App delen op verschillende apparaten - Tekstlogger - Diagnose ",
+   "ccTip":"Cloud klembord deelt klembordgegevens op verschillende apparaten. Hierdoor kunt u op het ene apparaat kopiëren en op het andere plakken. Aanmelden bij een Microsoft-account vereist.",
+   "cortanaTip":"Cortana is een virtuele op AI gebaseerde assistent. - Schakelt Cortana uit. - Schakelt zoeken op internet in het startmenu uit - Voorkomt dat de zoekgeschiedenis wordt opgeslagen ",
+   "sensorTip":"Services die de functionaliteit van sensoren beheren, zoals automatische rotatie, automatische helderheid, enz. Alleen nuttig voor tablets of touchscreen-apparaten.",
+   "castTip":"Verwijdert rechtsklik om media-inhoud naar Miracast-apparaten te casten.",
+   "gameBarTip":"Game Bar is een toegangsmenu voor Xbox-gameservices.",
+   "insiderTip":"Met het Windows Insider-programma kunt u de nieuwste functies testen voordat ze voor het publiek worden vrijgegeven. Het wordt beschouwd als een onnodige service voor gebruikers die niet willen deelnemen.",
+   "featuresTip":"Functie-updates zijn technisch nieuwe versies van Windows die een upgrade vereisen. Ze worden echter als een riskante praktijk beschouwd. Ze worden meestal halfjaarlijks uitgebrachtniet verlicht.",
+   "tpmTip":"Omzeilt Secure Boot- en TPM 2.0-vereisten en maakt een upgrade naar Windows 11 mogelijk",
+   "leftTaskbarTip":"Lijnt de taakbalkpictogrammen naar links uit.",
+   "snapAssistTip":"Schakelhulp-flyout uitschakelen wanneer de muisaanwijzer over de maximaliseerknop wordt gehouden.",
+   "widgetsTip":"Schakelt de widgetfunctie uit en verwijdert het widgetpictogram uit het systeemvak.",
+   "chatTip":"Verwijdert het chatpictogram uit het systeemvak.",
+   "smallerTaskbarTip":"Verklein de taakbalk en pictogrammen.",
+   "classicRibbonTip":"Herstelt het klassieke Windows 10-lint in Verkenner.",
+   "classicContextTip":"Herstelt het klassieke rechtsklikmenu en verwijdert de optie 'Meer opties weergeven'.",
+   "gameModeSw":"Spelmodus inschakelen",
+   "gameModeTip":"Maakt gaming-modus mogelijk in combinatie met hardware-versnelde GPU-planning.",
+   "compactModeSw":"Schakel de compacte modus in Verkenner in",
+   "compactModeTip":"Vermindert extra ruimte en opvulling tussen bestanden in Verkenner.",
+   "stickersTip":"Stickers zijn grote emoji's die op achtergrondafbeeldingen verschijnen en worden gebruikt in sociale messengers.",
+   "hibernateSw":"Sluimerstand uitschakelen",
+   "hibernateTip":"Schakelt de Windows-slaapstandfunctie uit.",
+   "smbSw1":"SMBv1-protocol uitschakelen",
+   "smbSw2":"SMBv2-protocol uitschakelen",
+   "smbTip":"Het SMB{v}-protocol is verantwoordelijk voor het delen van bestanden tussen Windows-computers. Het is vervangen door SMBv3, wat veiliger is.",
+   "ntfsStampSw":"NTFS-tijdstempel uitschakelen",
+   "ntfsStampTip":"Geeft aan wanneer het bestand voor het laatst is geopend. Uitschakelen kan I/O-bewerkingen op de harde schijven verminderen."
+}

+ 2 - 2
Optimizer/Resources/i18n/PL.json

@@ -167,7 +167,7 @@
 	"lblTroubleshoot": "Rozwiązywanie problemów",
 	"btnViewLog": "Wyświetl błędy",
 	"btnOpenConf": "Pokaż folder konfiguracji",
-	"btnResetConfig": "Resetuj konfigurację",
+	"btnResetConfig": "Naprawa",
 	"integrator1": "Integrator pozwala dodać w pełni konfigurowalne\nelementy menu kontekstowego Pulpitu:",
 	"integrator2": "• Dowolny program",
 	"integrator3": "• Skróty do folderów",
@@ -254,7 +254,7 @@
 	"removeAllItems": "Jesteś pewien że chcesz usunąć wszystkie elementy menu kontekstowego pulpitu?",
 	"removeModernApps": "Jesteś pewien że chcesz odinstalować następujące programy?",
 	"errorModernApps": "Następujące programy nie mogły zostać odinstalowane:\n",
-	"resetMessage": "Jesteś pewien że chcesz zresetować konfigurację?\nSpowoduje to zresetowanie wszystkich ustawień użytkownika, w tym wszystkich ikon rozpakowanych lub pobranych przy użyciu Integratora, ale nie będzie ingerować w nic co zostało zmienione na komputerze!",
+	"resetMessage": "Aplikacja zakończy działanie i spróbuje się naprawić.",
 	"newVersion": "Dostępna jest nowsza wersja! Czy chcesz pobrać ją teraz?\nProgram uruchomi się ponownie za kilka sekund.",
 	"flushDNSMessage": "Czy na pewno chcesz wyczyścić pamięć podręczną DNS systemu Windows?\n\nSpowoduje to chwilowe odłączenie od Internetu i być może będzie konieczne ponowne uruchomienie komputera, aby połączenie Internetowe mógło działać prawidłowo.",
 	"downloadsFinished": "Gotowe",

+ 2 - 2
Optimizer/Resources/i18n/PT.json

@@ -169,7 +169,7 @@
 	"lblTroubleshoot": "Solução de problemas",
 	"btnViewLog": "Visualizar erros",
 	"btnOpenConf": "Visualizar configurações de pasta",
-	"btnResetConfig": "Resetar configurações",
+	"btnResetConfig": "Reparar",
 	"integrator1": "O Integrator pode adicionar itens totalmente personalizados\nna área de trabalho, clique com o botão direito no menu:",
 	"integrator2": "• Alguns programas",
 	"integrator3": "• Atalhos para pastas",
@@ -256,7 +256,7 @@
 	"removeAllItems": "Tem certeza de que deseja excluir todos os itens da área de trabalho?",
 	"removeModernApps": "Tem certeza de que deseja desinstalar os seguintes aplicativos?",
 	"errorModernApps": "Não foi possível desinstalar os seguintes aplicativos:\n",
-	"resetMessage": "Tem certeza de que deseja redefinir a configuração?\nIsso irá redefinir todas as suas preferências, incluindo quaisquer ícones que você extraiu\nou baixado usando o Integrator, mas não vai deletar nada do seu computador!",
+	"resetMessage": "O aplicativo sairá e tentará se reparar.",
 	"newVersion": "Existe uma nova versão disponível! Deseja fazer o download agora para atualizar?\nO aplicativo irá R em alguns segundos.",
 	"downloadsFinished": "Finalizado",
 	"latestVersionM": "Versão mais recente: {LATEST}",

+ 2 - 2
Optimizer/Resources/i18n/RO.json

@@ -167,7 +167,7 @@
 	"lblTroubleshoot": "Depanare",
 	"btnViewLog": "Vizualizați erorile",
 	"btnOpenConf": "Afișează folderul de configurare",
-	"btnResetConfig": "Resetați configurația",
+	"btnResetConfig": "Reparație",
 	"integrator1": "Integrator poate adăuga elemente\ncomplet personalizate în meniul de clic dreapta pe desktop:",
 	"integrator2": "• Orice program",
 	"integrator3": "• Comenzi rapide la foldere",
@@ -256,7 +256,7 @@
 	"errorModernApps": "Următoarele aplicație(ții) nu au putut fi dezinstalate:\n",
 	"latestVersionM": "Cea mai recentă versiune: {CELE MAI RECENTE}",
 	"currentVersionM": "Versiunea curentă: {CURENT}",
-	"resetMessage": "Sigur doriți să resetați configurația?\nAcest lucru vă va reseta toate preferințele, inclusiv pictogramele pe care le-ați extras\nu descărcat folosind Integrator, dar nu va atinge nimic de pe computer!",
+	"resetMessage": "Aplicația va ieși și va încerca să se repare singură.",
 	"newVersion": "Există o nouă versiune disponibilă! Doriți să o descărcați acum?\nAplicația va reporni în câteva secunde.",
 	"flushDNSMessage": "Sigur doriți să ștergeți memoria cache DNS din Windows?\nși acest lucru vă cauza deconectarea de la internet pentru un moment și poate fi necesară o repornire pentru a funcționa corect.",
 	"downloadsFinished": "Terminat",

+ 2 - 2
Optimizer/Resources/i18n/RU.json

@@ -169,7 +169,7 @@
 	"lblTroubleshoot": "Troubleshooting",
 	"btnViewLog": "Просмотреть ошибки",
 	"btnOpenConf": "Показать папку конфигурации",
-	"btnResetConfig": "Сбросить конфигурацию",
+	"btnResetConfig": "Ремонт",
 	"integrator1": "Интегратор может добавлять полностью настраиваемые элементы в контекстное меню рабочего стола:",
 	"integrator2": "• Любую программу",
 	"integrator3": "• Ярлыки для папок",
@@ -256,7 +256,7 @@
 	"removeAllItems": "Вы уверены, что хотите удалить все элементы рабочего стола?",
 	"removeModernApps": "Вы уверены, что хотите удалить следующие приложения?",
 	"errorModernApps": "Не удалось удалить следующие приложения:\n",
-	"resetMessage": "Вы уверены, что хотите сбросить конфигурацию?\nЭто сбросит все ваши настройки, включая все значки, которые вы извлекли\nили скачает с помощью Integrator, но ничего не тронет на вашем компьютере!",
+	"resetMessage": "Приложение выйдет и попытается восстановить себя.",
 	"newVersion": "Доступна новая версия! Вы хотите загрузить её сейчас?\nПриложение перезапустится через несколько секунд.",
 	"downloadsFinished": "Готово",
 	"latestVersionM": "Последняя версия: {LATEST}",

+ 2 - 2
Optimizer/Resources/i18n/TR.json

@@ -169,7 +169,7 @@
 	"lblTroubleshoot": "Sorun giderme",
 	"btnViewLog": "Hataları görüntüle",
 	"btnOpenConf": "Yapılandırma klasörünü göster",
-	"btnResetConfig": "Yapılandırmayı sıfırla",
+	"btnResetConfig": "Onarım",
 	"integrator1": "Entegratör tamamen özelleştirilmiş ekleyebilir\nMasaüstü sağ tıklama menüsündeki öğeler:",
 	"integrator2": "• Herhangi bir program",
 	"integrator3": "• Klasörlere kısayollar",
@@ -256,7 +256,7 @@
 	"removeAllItems": "Tüm masaüstü öğelerini silmek istediğinizden emin misiniz?",
 	"removeModernApps": "Seçilen uygulamaları kaldırmak istediğinizden emin misiniz?",
 	"errorModernApps": "Seçilen uygulamalar kaldırılamadı:\n",
-	"resetMessage": "Yapılandırmayı sıfırlamak istediğinizden emin misiniz?\nEntegratör'ü kullanarak çıkardığınız veya indirdiğiniz simgeler de dahil olmak üzere tüm tercihlerinizi sıfırlar,\nancak bilgisayarınızdaki hiçbir şeye dokunmaz!",
+	"resetMessage": "Uygulama çıkacak ve kendini onarmaya çalışacak.",
 	"newVersion": "Yeni bir sürüm mevcut! Şimdi indirmek istiyor musunuz?\nUygulama birkaç saniye içinde yeniden başlayacaktır.",
 	"downloadsFinished": "Tamamlandı",
 	"latestVersionM": "En son sürüm: {LATEST}",

+ 2 - 2
Optimizer/Resources/i18n/TW.json

@@ -171,7 +171,7 @@
 	"lblTroubleshoot": "故障排除",
 	"btnViewLog": "查看錯誤",
 	"btnOpenConf": "顯示配置資料夾",
-	"btnResetConfig": "重設配置",
+	"btnResetConfig": "修理",
 	"integrator1": "集成器能夠新增完全訂製\n項目在桌面右鍵選單:",
 	"integrator2": "• 任何程序",
 	"integrator3": "• 捷徑到資料夾",
@@ -258,7 +258,7 @@
 	"removeAllItems": "您確定要刪除所有桌面項目嗎?",
 	"removeModernApps": "您確定要解除安裝以下應用程式嗎??",
 	"errorModernApps": "以下應用程式無法解除安裝:\n",
-	"resetMessage": "您確定要重設配置嗎?\n這將重設所有您的首選項,包括您提取的任何圖示\n或使用Integrator下載,但不會變更您的計算機上的任何東西!",
+	"resetMessage": "應用程序將退出並嘗試自行修復。",
 	"newVersion": "有一個新的版本可用! 你想現在下載嗎?\n應用程式將在幾秒鐘內重新啟動.",
 	"latestVersionM": "n最新版本: {LATEST}",
 	"currentVersionM": "n當前版本: {CURRENT}",

+ 2 - 2
Optimizer/Utilities.cs

@@ -222,7 +222,7 @@ namespace Optimizer
         internal static void Reboot()
         {
             Options.SaveSettings();
-            Process.Start("shutdown /r /t 0");
+            Process.Start("shutdown.exe", "/r /t 0");
         }
 
         internal static void DisableHibernation()
@@ -424,7 +424,7 @@ namespace Optimizer
             }
         }
 
-        internal static void ResetConfiguration(bool withoutRestart = false)
+        internal static void Repair(bool withoutRestart = false)
         {
             try
             {

+ 6 - 5
README.md

@@ -3,7 +3,7 @@
 </p> 
 
 <p align="center">
-	<a href="https://github.com/hellzerg/optimizer/releases/download/13.9/Optimizer-13.9.exe" target="_blank">
+	<a href="https://github.com/hellzerg/optimizer/releases/download/14.0/Optimizer-14.0.exe" target="_blank">
 		<img src="https://raw.githubusercontent.com/hellzerg/optimizer/master/download-button.png">
 		<br>
 		<img src="https://raw.githubusercontent.com/hellzerg/optimizer/master/flags.png">
@@ -16,7 +16,7 @@ Advanced configuration utility that helps you restore your privacy and increase
 Optimizer is recommended after a fresh, clean installation of Windows to achieve maximum privacy and security.<br>
 Depending on your version of Windows, Optimizer will also allow you to perform some specific tweaks.
 
-* Full multilingual support (18 languages available)
+* Full multilingual support (19 languages available)
 * Speed up your system and network performance
 * Disable unnecessary Windows services
 * Disable Windows telemetry, Cortana and many more
@@ -88,9 +88,9 @@ https://github.com/hellzerg/optimizer/blob/master/LEGACY.md
 
 ### #️ Details: ###
 
-* Latest version: 13.9
-* Released: August 21, 2022
-* SHA256: BCC5F991262E73A55E11F34D45DD61073F1F196877CFBD37BDFF8029608CEE5F
+* Latest version: 14.0
+* Released: September 24, 2022
+* SHA256: 0BCC84F4993028A6D4F2E7139AC390DD78743831869CB0FB2D6E5E87E629DAF0
 
 <hr>
 
@@ -123,5 +123,6 @@ Support my hard work by donating me through [PayPal](https://www.paypal.com/payp
 * https://github.com/Wilamaxin - Wilamaxin for Polish translation
 * https://github.com/MesterPerfect - MesterPerfect for Arabic translation
 * https://github.com/BeamingNG - BeamingNG for Romanian translation
+* https://github.com/svanlaere - svanlaere for Dutch translation
 * Parwar Andam for Kurdish translation
 * Zan for Hungarian translation

Файлын зөрүү хэтэрхий том тул дарагдсан байна
+ 0 - 0
feed.json


+ 1 - 1
version.txt

@@ -1 +1 @@
-13.9
+14.0

Энэ ялгаанд хэт олон файл өөрчлөгдсөн тул зарим файлыг харуулаагүй болно