diff --git a/src/modules/launcher/PowerLauncher/Properties/Resources.Designer.cs b/src/modules/launcher/PowerLauncher/Properties/Resources.Designer.cs
index 311f7acb09..589dffd5ca 100644
--- a/src/modules/launcher/PowerLauncher/Properties/Resources.Designer.cs
+++ b/src/modules/launcher/PowerLauncher/Properties/Resources.Designer.cs
@@ -60,15 +60,6 @@ namespace PowerLauncher.Properties {
}
}
- ///
- /// Looks up a localized string similar to You have activated Wox {0} times.
- ///
- public static string about_activate_times {
- get {
- return ResourceManager.GetString("about_activate_times", resourceCulture);
- }
- }
-
///
/// Looks up a localized string similar to Application Icon.
///
diff --git a/src/modules/launcher/PowerLauncher/Properties/Resources.resx b/src/modules/launcher/PowerLauncher/Properties/Resources.resx
index 928386c109..e0b6647201 100644
--- a/src/modules/launcher/PowerLauncher/Properties/Resources.resx
+++ b/src/modules/launcher/PowerLauncher/Properties/Resources.resx
@@ -129,9 +129,6 @@
Last execution time: {0}
-
- You have activated Wox {0} times
-
Something went wrong.
diff --git a/src/modules/launcher/PowerLauncher/ViewModel/SettingWindowViewModel.cs b/src/modules/launcher/PowerLauncher/ViewModel/SettingWindowViewModel.cs
index 44620736ba..2d8335a3c1 100644
--- a/src/modules/launcher/PowerLauncher/ViewModel/SettingWindowViewModel.cs
+++ b/src/modules/launcher/PowerLauncher/ViewModel/SettingWindowViewModel.cs
@@ -17,13 +17,6 @@ namespace PowerLauncher.ViewModel
{
_storage = new WoxJsonStorage();
Settings = _storage.Load();
- Settings.PropertyChanged += (s, e) =>
- {
- if (e.PropertyName == nameof(Settings.ActivateTimes))
- {
- OnPropertyChanged(nameof(ActivatedTimes));
- }
- };
}
public PowerToysRunSettings Settings { get; set; }
@@ -32,7 +25,5 @@ namespace PowerLauncher.ViewModel
{
_storage.Save();
}
-
- public string ActivatedTimes => string.Format(CultureInfo.InvariantCulture, Properties.Resources.about_activate_times, Settings.ActivateTimes);
}
}
diff --git a/src/modules/launcher/Wox.Plugin/Properties/Resources.Designer.cs b/src/modules/launcher/Wox.Plugin/Properties/Resources.Designer.cs
index ca18b9aee7..9d6b31a320 100644
--- a/src/modules/launcher/Wox.Plugin/Properties/Resources.Designer.cs
+++ b/src/modules/launcher/Wox.Plugin/Properties/Resources.Designer.cs
@@ -59,32 +59,5 @@ namespace Wox.Plugin.Properties {
resourceCulture = value;
}
}
-
- ///
- /// Looks up a localized string similar to Copying path {0} has failed, it will now be deleted for consistency.
- ///
- public static string filesfolder_copy_failed {
- get {
- return ResourceManager.GetString("filesfolder_copy_failed", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Not able to delete folder {0}, please go to the location and manually delete it.
- ///
- public static string filesfolder_removefolder_failed {
- get {
- return ResourceManager.GetString("filesfolder_removefolder_failed", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Unable to verify folders and files between {0} and {1}.
- ///
- public static string filesfolder_verifybothfolderfilesequal_failed {
- get {
- return ResourceManager.GetString("filesfolder_verifybothfolderfilesequal_failed", resourceCulture);
- }
- }
}
}
diff --git a/src/modules/launcher/Wox.Plugin/Properties/Resources.resx b/src/modules/launcher/Wox.Plugin/Properties/Resources.resx
index 609f1edd55..1af7de150c 100644
--- a/src/modules/launcher/Wox.Plugin/Properties/Resources.resx
+++ b/src/modules/launcher/Wox.Plugin/Properties/Resources.resx
@@ -117,16 +117,4 @@
System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- Copying path {0} has failed, it will now be deleted for consistency
- parameter: targetPath
-
-
- Not able to delete folder {0}, please go to the location and manually delete it
- parameter: path
-
-
- Unable to verify folders and files between {0} and {1}
- parameters: fromPath, toPath
-
\ No newline at end of file