Skip to content

Commit 5103b2b

Browse files
Update text
1 parent 1715f81 commit 5103b2b

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

Plugins/Flow.Launcher.Plugin.Program/Languages/en.xaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@
3939
<system:String x:Key="flowlauncher_plugin_program_only_index_tip">Program Plugin will only index files that end with the following file types.</system:String>
4040
<system:String x:Key="flowlauncher_plugin_program_update_file_suffixes">Successfully updated file suffixes</system:String>
4141
<system:String x:Key="flowlauncher_plugin_program_suffixes_cannot_empty">File suffixes can't be empty</system:String>
42+
<system:String x:Key="flowlauncher_plugin_protocols_cannot_empty">Protocols can't be empty</system:String>
4243

4344
<system:String x:Key="flowlauncher_plugin_program_suffixes_excutable_types">Excutable Types</system:String>
4445
<system:String x:Key="flowlauncher_plugin_program_suffixes_URL_types">URL Types</system:String>

Plugins/Flow.Launcher.Plugin.Program/ProgramSuffixes.xaml.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ private void BtnAdd_OnClick(object sender, RoutedEventArgs e)
3939

4040
if (protocols.Length == 0 && _settings.UseCustomProtocols)
4141
{
42-
string warning = context.API.GetTranslation("flowlauncher_plugin_program_suffixes_cannot_empty"); // TODO text update
42+
string warning = context.API.GetTranslation("flowlauncher_plugin_protocols_cannot_empty");
4343
MessageBox.Show(warning);
4444
return;
4545
}

0 commit comments

Comments
 (0)