From 90723d5b1267d6e19d91abbeda606ff3ef88ab7f Mon Sep 17 00:00:00 2001 From: Aung Khaing Khant Date: Mon, 21 Apr 2025 14:05:47 +0630 Subject: [PATCH] [CmdPal] Fixed #38961 (#38988) * [CmdPal] Fixed #38961 * [CmdPal] Fixed #38961 * [CmdPal] Fix #38961 Wrong Message for "Open Recycle Bin" Command * [CmdPal] Fix #38961 Wrong Message for "Open Recycle Bin" Command --------- Co-authored-by: Aung Khaing Khant --- .../ext/Microsoft.CmdPal.Ext.System/Helpers/Commands.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/cmdpal/ext/Microsoft.CmdPal.Ext.System/Helpers/Commands.cs b/src/modules/cmdpal/ext/Microsoft.CmdPal.Ext.System/Helpers/Commands.cs index 1459b83bc6..a981b2ed00 100644 --- a/src/modules/cmdpal/ext/Microsoft.CmdPal.Ext.System/Helpers/Commands.cs +++ b/src/modules/cmdpal/ext/Microsoft.CmdPal.Ext.System/Helpers/Commands.cs @@ -85,7 +85,7 @@ internal static class Commands { results.AddRange(new[] { - new ListItem(new OpenInShellCommand(Resources.Microsoft_plugin_command_name_empty, "explorer.exe", "shell:RecycleBinFolder")) + new ListItem(new OpenInShellCommand(Resources.Microsoft_plugin_command_name_open, "explorer.exe", "shell:RecycleBinFolder")) { Title = Resources.Microsoft_plugin_sys_RecycleBinOpen, Subtitle = Resources.Microsoft_plugin_sys_RecycleBin_description, @@ -102,7 +102,7 @@ internal static class Commands else { results.Add( - new ListItem(new OpenInShellCommand(Resources.Microsoft_plugin_command_name_empty, "explorer.exe", "shell:RecycleBinFolder")) + new ListItem(new OpenInShellCommand(Resources.Microsoft_plugin_command_name_open, "explorer.exe", "shell:RecycleBinFolder")) { Title = Resources.Microsoft_plugin_sys_RecycleBin, Subtitle = Resources.Microsoft_plugin_sys_RecycleBin_description,