diff --git a/Flow.Launcher.Core/Plugin/PluginManager.cs b/Flow.Launcher.Core/Plugin/PluginManager.cs
index 8c73ae400..2d13f7d7f 100644
--- a/Flow.Launcher.Core/Plugin/PluginManager.cs
+++ b/Flow.Launcher.Core/Plugin/PluginManager.cs
@@ -209,9 +209,15 @@ namespace Flow.Launcher.Core.Plugin
if (failedPlugins.Any())
{
var failed = string.Join(",", failedPlugins.Select(x => x.Metadata.Name));
- API.ShowMsg($"Fail to Init Plugins",
- $"Plugins: {failed} - fail to load and would be disabled, please contact plugin creator for help",
- "", false);
+ API.ShowMsg(
+ InternationalizationManager.Instance.GetTranslation("failedToInitializePluginsTitle"),
+ string.Format(
+ InternationalizationManager.Instance.GetTranslation("failedToInitializePluginsMessage"),
+ failed
+ ),
+ "",
+ false
+ );
}
}
diff --git a/Flow.Launcher/Languages/en.xaml b/Flow.Launcher/Languages/en.xaml
index 3844ccf11..2f11f118b 100644
--- a/Flow.Launcher/Languages/en.xaml
+++ b/Flow.Launcher/Languages/en.xaml
@@ -10,6 +10,8 @@
Please select the {0} executable
Unable to set {0} executable path, please try from Flow's settings (scroll down to the bottom).
+ Fail to Init Plugins
+ Plugins: {0} - fail to load and would be disabled, please contact plugin creator for help
Failed to register hotkey "{0}". The hotkey may be in use by another program. Change to a different hotkey, or exit another program.