From 5103b2b712a5b69eeeaf39aa74e63a6edc04ce67 Mon Sep 17 00:00:00 2001 From: Vic <10308169+VictoriousRaptor@users.noreply.github.com> Date: Sun, 23 Oct 2022 20:05:51 +0800 Subject: [PATCH] Update text --- Plugins/Flow.Launcher.Plugin.Program/Languages/en.xaml | 1 + Plugins/Flow.Launcher.Plugin.Program/ProgramSuffixes.xaml.cs | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Plugins/Flow.Launcher.Plugin.Program/Languages/en.xaml b/Plugins/Flow.Launcher.Plugin.Program/Languages/en.xaml index c77b070ac..c7acb3184 100644 --- a/Plugins/Flow.Launcher.Plugin.Program/Languages/en.xaml +++ b/Plugins/Flow.Launcher.Plugin.Program/Languages/en.xaml @@ -39,6 +39,7 @@ Program Plugin will only index files that end with the following file types. Successfully updated file suffixes File suffixes can't be empty + Protocols can't be empty Excutable Types URL Types diff --git a/Plugins/Flow.Launcher.Plugin.Program/ProgramSuffixes.xaml.cs b/Plugins/Flow.Launcher.Plugin.Program/ProgramSuffixes.xaml.cs index 8fe00bf2a..a1a273ea2 100644 --- a/Plugins/Flow.Launcher.Plugin.Program/ProgramSuffixes.xaml.cs +++ b/Plugins/Flow.Launcher.Plugin.Program/ProgramSuffixes.xaml.cs @@ -39,7 +39,7 @@ namespace Flow.Launcher.Plugin.Program if (protocols.Length == 0 && _settings.UseCustomProtocols) { - string warning = context.API.GetTranslation("flowlauncher_plugin_program_suffixes_cannot_empty"); // TODO text update + string warning = context.API.GetTranslation("flowlauncher_plugin_protocols_cannot_empty"); MessageBox.Show(warning); return; }