[cmdpal] Fix some i18n issues for built-in extensions (#38078)

Fix some i18n issues for built-in extensions.



Co-authored-by: Yu Leng (from Dev Box) <yuleng@microsoft.com>
This commit is contained in:
moooyo
2025-03-21 18:48:28 +08:00
committed by GitHub
parent 048b07c1ce
commit 29551898ca
9 changed files with 36 additions and 9 deletions

View File

@@ -2,6 +2,7 @@
// The Microsoft Corporation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
using Microsoft.CmdPal.Ext.WindowsServices.Properties;
using Microsoft.CommandPalette.Extensions;
using Microsoft.CommandPalette.Extensions.Toolkit;
@@ -15,7 +16,7 @@ public partial class WindowsServicesCommandsProvider : CommandProvider
public WindowsServicesCommandsProvider()
{
Id = "Windows.Services";
DisplayName = $"Windows Services";
DisplayName = Resources.WindowsServicesProvider_DisplayName;
Icon = ServicesIcon;
}