Skip to content

Commit a099935

Browse files
committed
Fix message
1 parent 284729a commit a099935

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,8 @@
4848

4949
<system:String x:Key="flowlauncher_plugin_program_pls_select_program_source">Please select a program source</system:String>
5050
<system:String x:Key="flowlauncher_plugin_program_delete_program_source">Are you sure you want to delete the selected program sources?</system:String>
51-
<system:String x:Key="flowlauncher_plugin_program_delete_program_source_user_added">Please select program sources that are not added by you</system:String>
52-
<system:String x:Key="flowlauncher_plugin_program_delete_program_source_not_user_added">Please select program sources that are added by you</system:String>
51+
<system:String x:Key="flowlauncher_plugin_program_delete_program_source_not_user_added">Please select program sources that are not added by you</system:String>
52+
<system:String x:Key="flowlauncher_plugin_program_delete_program_source_user_added">Please select program sources that are added by you</system:String>
5353
<system:String x:Key="flowlauncher_plugin_program_duplicate_program_source">Another program source with the same location already exists.</system:String>
5454

5555
<system:String x:Key="flowlauncher_plugin_program_edit_program_source_title">Program Source</system:String>

Plugins/Flow.Launcher.Plugin.Program/Views/ProgramSetting.xaml.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -428,7 +428,7 @@ private async void btnDeleteProgramSource_OnClick(object sender, RoutedEventArgs
428428

429429
if (!IsAllItemsUserAdded(selectedItems))
430430
{
431-
var msg1 = context.API.GetTranslation("flowlauncher_plugin_program_delete_program_source_not_user_added");
431+
var msg1 = context.API.GetTranslation("flowlauncher_plugin_program_delete_program_source_user_added");
432432
context.API.ShowMsgBox(msg1);
433433
return;
434434
}

0 commit comments

Comments
 (0)