mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-06 19:26:39 +02:00
[Pt Run] Show context menu for first folder plugin result (#6301)
* Added context menu to first folder result * Added context menu to first folder result * Add localization for string in folder plugin * Fixed issue with context menu not showing on first selected item * Add exception logging
This commit is contained in:
committed by
GitHub
parent
726f94e2a2
commit
a0eaf077de
@@ -177,6 +177,24 @@ namespace Microsoft.Plugin.Folder.Properties {
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Use > to search within the directory. Use * to search for file extensions. Or use both >*.
|
||||
/// </summary>
|
||||
public static string wox_plugin_folder_select_folder_first_result_subtitle {
|
||||
get {
|
||||
return ResourceManager.GetString("wox_plugin_folder_select_folder_first_result_subtitle", resourceCulture);
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Open.
|
||||
/// </summary>
|
||||
public static string wox_plugin_folder_select_folder_first_result_title {
|
||||
get {
|
||||
return ResourceManager.GetString("wox_plugin_folder_select_folder_first_result_title", resourceCulture);
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Please select a folder link.
|
||||
/// </summary>
|
||||
@@ -185,5 +203,14 @@ namespace Microsoft.Plugin.Folder.Properties {
|
||||
return ResourceManager.GetString("wox_plugin_folder_select_folder_link_warning", resourceCulture);
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Looks up a localized string similar to Could not start.
|
||||
/// </summary>
|
||||
public static string wox_plugin_folder_select_folder_OpenFileOrFolder_error_message {
|
||||
get {
|
||||
return ResourceManager.GetString("wox_plugin_folder_select_folder_OpenFileOrFolder_error_message", resourceCulture);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -159,4 +159,13 @@
|
||||
<data name="Microsoft_plugin_folder_clipboard_failed" xml:space="preserve">
|
||||
<value>Fail to set text in clipboard</value>
|
||||
</data>
|
||||
<data name="wox_plugin_folder_select_folder_first_result_subtitle" xml:space="preserve">
|
||||
<value>Use > to search within the directory. Use * to search for file extensions. Or use both >*</value>
|
||||
</data>
|
||||
<data name="wox_plugin_folder_select_folder_first_result_title" xml:space="preserve">
|
||||
<value>Open</value>
|
||||
</data>
|
||||
<data name="wox_plugin_folder_select_folder_OpenFileOrFolder_error_message" xml:space="preserve">
|
||||
<value>Could not start</value>
|
||||
</data>
|
||||
</root>
|
||||
Reference in New Issue
Block a user