Skip to content

Commit 46c8dd8

Browse files
Fix translation
1 parent 65e3aa1 commit 46c8dd8

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

Plugins/Flow.Launcher.Plugin.Explorer/ContextMenu.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ public List<Result> LoadContextMenus(Result selectedResult)
177177
try
178178
{
179179
if (MessageBox.Show(
180-
Context.API.GetTranslation("plugin_explorer_deletefilefolderconfirm"),
180+
string.Format(Context.API.GetTranslation("plugin_explorer_delete_folder_link"), record.FullPath),
181181
string.Empty,
182182
MessageBoxButton.YesNo,
183183
MessageBoxIcon.Warning)

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@
77
<system:String x:Key="plugin_explorer_make_selection_warning">Please make a selection first</system:String>
88
<system:String x:Key="plugin_explorer_select_folder_link_warning">Please select a folder link</system:String>
99
<system:String x:Key="plugin_explorer_delete_folder_link">Are you sure you want to delete {0}?</system:String>
10-
<system:String x:Key="plugin_explorer_deletefolderconfirm">Are you sure you want to permanently delete this folder?</system:String>
1110
<system:String x:Key="plugin_explorer_deletefileconfirm">Are you sure you want to permanently delete this file?</system:String>
1211
<system:String x:Key="plugin_explorer_deletefilefolderconfirm">Are you sure you want to permanently delete this file/folder?</system:String>
1312
<system:String x:Key="plugin_explorer_deletefilefoldersuccess">Deletion successful</system:String>

0 commit comments

Comments
 (0)