File tree Expand file tree Collapse file tree 2 files changed +2
-6
lines changed
Plugins/Flow.Launcher.Plugin.Explorer Expand file tree Collapse file tree 2 files changed +2
-6
lines changed Original file line number Diff line number Diff line change @@ -138,7 +138,7 @@ public List<Result> LoadContextMenus(Result selectedResult)
138
138
139
139
contextMenus . Add ( new Result
140
140
{
141
- Title = isFile ? Context . API . GetTranslation ( "plugin_explorer_copyfile" ) : Context . API . GetTranslation ( "plugin_explorer_copyfolder ") ,
141
+ Title = Context . API . GetTranslation ( "plugin_explorer_copyfilefolder " ) ,
142
142
SubTitle = isFile ? Context . API . GetTranslation ( "plugin_explorer_copyfile_subtitle" ) : Context . API . GetTranslation ( "plugin_explorer_copyfolder_subtitle" ) ,
143
143
Action = _ =>
144
144
{
@@ -167,7 +167,7 @@ public List<Result> LoadContextMenus(Result selectedResult)
167
167
if ( record . Type is ResultType . File or ResultType . Folder )
168
168
contextMenus . Add ( new Result
169
169
{
170
- Title = isFile ? Context . API . GetTranslation ( "plugin_explorer_deletefile" ) : Context . API . GetTranslation ( "plugin_explorer_deletefolder ") ,
170
+ Title = Context . API . GetTranslation ( "plugin_explorer_deletefilefolder " ) ,
171
171
SubTitle = isFile ? Context . API . GetTranslation ( "plugin_explorer_deletefile_subtitle" ) : Context . API . GetTranslation ( "plugin_explorer_deletefolder_subtitle" ) ,
172
172
Action = ( context ) =>
173
173
{
Original file line number Diff line number Diff line change 65
65
<system : String x : Key =" plugin_explorer_copypath" >Copy path</system : String >
66
66
<system : String x : Key =" plugin_explorer_copypath_subtitle" >Copy path of current result to clipboard</system : String >
67
67
<system : String x : Key =" plugin_explorer_copyfilefolder" >Copy</system : String >
68
- <system : String x : Key =" plugin_explorer_copyfile" >Copy file</system : String >
69
68
<system : String x : Key =" plugin_explorer_copyfile_subtitle" >Copy current file to clipboard</system : String >
70
- <system : String x : Key =" plugin_explorer_copyfolder" >Copy folder</system : String >
71
69
<system : String x : Key =" plugin_explorer_copyfolder_subtitle" >Copy current folder to clipboard</system : String >
72
70
<system : String x : Key =" plugin_explorer_deletefilefolder" >Delete</system : String >
73
- <system : String x : Key =" plugin_explorer_deletefile" >Delete file</system : String >
74
71
<system : String x : Key =" plugin_explorer_deletefile_subtitle" >Permanently delete current file</system : String >
75
- <system : String x : Key =" plugin_explorer_deletefolder" >Delete folder</system : String >
76
72
<system : String x : Key =" plugin_explorer_deletefolder_subtitle" >Permanently delete current folder</system : String >
77
73
<system : String x : Key =" plugin_explorer_path" >Path:</system : String >
78
74
<system : String x : Key =" plugin_explorer_deletefilefolder_subtitle" >Delete the selected</system : String >
You can’t perform that action at this time.
0 commit comments