diff --git a/src/modules/cmdpal/Microsoft.CmdPal.UI.ViewModels/Commands/BuiltInsCommandProvider.cs b/src/modules/cmdpal/Microsoft.CmdPal.UI.ViewModels/Commands/BuiltInsCommandProvider.cs
index c873ecf154..55581e65f3 100644
--- a/src/modules/cmdpal/Microsoft.CmdPal.UI.ViewModels/Commands/BuiltInsCommandProvider.cs
+++ b/src/modules/cmdpal/Microsoft.CmdPal.UI.ViewModels/Commands/BuiltInsCommandProvider.cs
@@ -21,7 +21,7 @@ public sealed partial class BuiltInsCommandProvider : CommandProvider
public override ICommandItem[] TopLevelCommands() =>
[
- new CommandItem(openSettings) { Subtitle = Properties.Resources.builtin_open_settings_subtitle },
+ new CommandItem(openSettings) { },
new CommandItem(_newExtension) { Title = _newExtension.Title, Subtitle = Properties.Resources.builtin_new_extension_subtitle },
];
diff --git a/src/modules/cmdpal/Microsoft.CmdPal.UI.ViewModels/Properties/Resources.resx b/src/modules/cmdpal/Microsoft.CmdPal.UI.ViewModels/Properties/Resources.resx
index f0f68b8582..9a658e38f1 100644
--- a/src/modules/cmdpal/Microsoft.CmdPal.UI.ViewModels/Properties/Resources.resx
+++ b/src/modules/cmdpal/Microsoft.CmdPal.UI.ViewModels/Properties/Resources.resx
@@ -117,11 +117,8 @@
System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
-
- Open Command Palette settings
-
- Creates a project for a new Command Palette extension
+ Generate a new Command Palette extension project
Exit Command Palette
@@ -157,10 +154,10 @@
Open
- Create a new extension
+ Create extension
- Open Settings
+ Open Command Palette settings
Successfully created your new extension!
diff --git a/src/modules/cmdpal/Tests/Microsoft.CmdPal.Ext.System.UnitTests/QueryTests.cs b/src/modules/cmdpal/Tests/Microsoft.CmdPal.Ext.System.UnitTests/QueryTests.cs
index 5b11ba6e05..af17ad8ec3 100644
--- a/src/modules/cmdpal/Tests/Microsoft.CmdPal.Ext.System.UnitTests/QueryTests.cs
+++ b/src/modules/cmdpal/Tests/Microsoft.CmdPal.Ext.System.UnitTests/QueryTests.cs
@@ -25,7 +25,7 @@ public class QueryTests : CommandPaletteUnitTestBase
[DataRow("hibernate", "Hibernate")]
[DataRow("open recycle", "Open Recycle Bin")]
[DataRow("empty recycle", "Empty Recycle Bin")]
- [DataRow("uefi", "UEFI Firmware Settings")]
+ [DataRow("uefi", "UEFI firmware settings")]
public void TopLevelPageQueryTest(string input, string matchedTitle)
{
var settings = new Settings();
@@ -143,6 +143,6 @@ public class QueryTests : CommandPaletteUnitTestBase
Assert.IsNotNull(result);
var firstItem = result.FirstOrDefault();
var firstItemIsUefiCommand = firstItem?.Title.Contains("UEFI", StringComparison.OrdinalIgnoreCase) ?? false;
- Assert.AreEqual(hasCommand, firstItemIsUefiCommand, $"Expected to match (or not match) 'UEFI Firmware Settings' but got '{firstItem?.Title}'");
+ Assert.AreEqual(hasCommand, firstItemIsUefiCommand, $"Expected to match (or not match) 'UEFI firmware settings' but got '{firstItem?.Title}'");
}
}
diff --git a/src/modules/cmdpal/Tests/Microsoft.CmdPal.Ext.TimeDate.UnitTests/TimeDateCommandsProviderTests.cs b/src/modules/cmdpal/Tests/Microsoft.CmdPal.Ext.TimeDate.UnitTests/TimeDateCommandsProviderTests.cs
index f76ee253ca..00f1af30a8 100644
--- a/src/modules/cmdpal/Tests/Microsoft.CmdPal.Ext.TimeDate.UnitTests/TimeDateCommandsProviderTests.cs
+++ b/src/modules/cmdpal/Tests/Microsoft.CmdPal.Ext.TimeDate.UnitTests/TimeDateCommandsProviderTests.cs
@@ -103,7 +103,7 @@ namespace Microsoft.CmdPal.Ext.TimeDate.UnitTests
// Assert
Assert.IsFalse(string.IsNullOrEmpty(subtitle));
- Assert.IsTrue(subtitle.Contains("Provides time and date values in different formats"));
+ Assert.IsTrue(subtitle.Contains("Show time and date values in different formats"));
}
}
}
diff --git a/src/modules/cmdpal/Tests/Microsoft.CmdPal.UITests/BasicTests.cs b/src/modules/cmdpal/Tests/Microsoft.CmdPal.UITests/BasicTests.cs
index 78cd82062a..7fe4e5281d 100644
--- a/src/modules/cmdpal/Tests/Microsoft.CmdPal.UITests/BasicTests.cs
+++ b/src/modules/cmdpal/Tests/Microsoft.CmdPal.UITests/BasicTests.cs
@@ -49,8 +49,8 @@ public class BasicTests : CommandPaletteTestBase
{
SetSearchBox("time and date");
- var searchFileItem = this.Find("Time and Date");
- Assert.AreEqual(searchFileItem.Name, "Time and Date");
+ var searchFileItem = this.Find("Time and date");
+ Assert.AreEqual(searchFileItem.Name, "Time and date");
searchFileItem.DoubleClick();
SetTimeAndDaterExtensionSearchBox("year");
@@ -63,8 +63,8 @@ public class BasicTests : CommandPaletteTestBase
{
SetSearchBox("Windows Terminal");
- var searchFileItem = this.Find("Open Windows Terminal Profiles");
- Assert.AreEqual(searchFileItem.Name, "Open Windows Terminal Profiles");
+ var searchFileItem = this.Find("Open Windows Terminal profiles");
+ Assert.AreEqual(searchFileItem.Name, "Open Windows Terminal profiles");
searchFileItem.DoubleClick();
// SetSearchBox("PowerShell");
@@ -74,10 +74,10 @@ public class BasicTests : CommandPaletteTestBase
[TestMethod]
public void BasicWindowsSettingsTest()
{
- SetSearchBox("Windows Settings");
+ SetSearchBox("Windows settings");
- var searchFileItem = this.Find("Windows Settings");
- Assert.AreEqual(searchFileItem.Name, "Windows Settings");
+ var searchFileItem = this.Find("Windows settings");
+ Assert.AreEqual(searchFileItem.Name, "Windows settings");
searchFileItem.DoubleClick();
SetSearchBox("power");
diff --git a/src/modules/cmdpal/ext/Microsoft.CmdPal.Ext.Apps/AllAppsCommandProvider.cs b/src/modules/cmdpal/ext/Microsoft.CmdPal.Ext.Apps/AllAppsCommandProvider.cs
index b5ce5522bb..7232e955d7 100644
--- a/src/modules/cmdpal/ext/Microsoft.CmdPal.Ext.Apps/AllAppsCommandProvider.cs
+++ b/src/modules/cmdpal/ext/Microsoft.CmdPal.Ext.Apps/AllAppsCommandProvider.cs
@@ -35,7 +35,6 @@ public partial class AllAppsCommandProvider : CommandProvider
_listItem = new(_page)
{
- Subtitle = Resources.search_installed_apps,
MoreCommands = [new CommandContextItem(AllAppsSettings.Instance.Settings.SettingsPage)],
};
diff --git a/src/modules/cmdpal/ext/Microsoft.CmdPal.Ext.Apps/Properties/Resources.Designer.cs b/src/modules/cmdpal/ext/Microsoft.CmdPal.Ext.Apps/Properties/Resources.Designer.cs
index 15cc4d338e..9fdf833b0a 100644
--- a/src/modules/cmdpal/ext/Microsoft.CmdPal.Ext.Apps/Properties/Resources.Designer.cs
+++ b/src/modules/cmdpal/ext/Microsoft.CmdPal.Ext.Apps/Properties/Resources.Designer.cs
@@ -19,7 +19,7 @@ namespace Microsoft.CmdPal.Ext.Apps.Properties {
// class via a tool like ResGen or Visual Studio.
// To add or remove a member, edit your .ResX file then rerun ResGen
// with the /str option, or rebuild your VS project.
- [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "18.0.0.0")]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "17.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
internal class Resources {
@@ -61,7 +61,7 @@ namespace Microsoft.CmdPal.Ext.Apps.Properties {
}
///
- /// Looks up a localized string similar to All Apps.
+ /// Looks up a localized string similar to Search apps.
///
internal static string all_apps {
get {
@@ -313,16 +313,7 @@ namespace Microsoft.CmdPal.Ext.Apps.Properties {
}
///
- /// Looks up a localized string similar to Search installed apps.
- ///
- internal static string search_installed_apps {
- get {
- return ResourceManager.GetString("search_installed_apps", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Search installed apps....
+ /// Looks up a localized string similar to Search apps....
///
internal static string search_installed_apps_placeholder {
get {
diff --git a/src/modules/cmdpal/ext/Microsoft.CmdPal.Ext.Apps/Properties/Resources.resx b/src/modules/cmdpal/ext/Microsoft.CmdPal.Ext.Apps/Properties/Resources.resx
index dae13838e6..758c61e20f 100644
--- a/src/modules/cmdpal/ext/Microsoft.CmdPal.Ext.Apps/Properties/Resources.resx
+++ b/src/modules/cmdpal/ext/Microsoft.CmdPal.Ext.Apps/Properties/Resources.resx
@@ -124,14 +124,11 @@
Installed apps
-
- Search installed apps
-
- All Apps
+ Search apps
- Search installed apps...
+ Search apps...
Open path in console
diff --git a/src/modules/cmdpal/ext/Microsoft.CmdPal.Ext.Indexer/FallbackOpenFileItem.cs b/src/modules/cmdpal/ext/Microsoft.CmdPal.Ext.Indexer/FallbackOpenFileItem.cs
index 2b408f24dc..5e044247ba 100644
--- a/src/modules/cmdpal/ext/Microsoft.CmdPal.Ext.Indexer/FallbackOpenFileItem.cs
+++ b/src/modules/cmdpal/ext/Microsoft.CmdPal.Ext.Indexer/FallbackOpenFileItem.cs
@@ -120,7 +120,6 @@ internal sealed partial class FallbackOpenFileItem : FallbackCommandItem, System
var indexerPage = new IndexerPage(query, _searchEngine, _queryCookie, results);
Title = string.Format(CultureInfo.CurrentCulture, fallbackItemSearchPageTitleCompositeFormat, query);
Icon = Icons.FileExplorerIcon;
- Subtitle = Resources.Indexer_Subtitle;
Command = indexerPage;
return;
diff --git a/src/modules/cmdpal/ext/Microsoft.CmdPal.Ext.Indexer/IndexerCommandsProvider.cs b/src/modules/cmdpal/ext/Microsoft.CmdPal.Ext.Indexer/IndexerCommandsProvider.cs
index d2ea9b9b0c..ca1f215d4c 100644
--- a/src/modules/cmdpal/ext/Microsoft.CmdPal.Ext.Indexer/IndexerCommandsProvider.cs
+++ b/src/modules/cmdpal/ext/Microsoft.CmdPal.Ext.Indexer/IndexerCommandsProvider.cs
@@ -33,7 +33,6 @@ public partial class IndexerCommandsProvider : CommandProvider
new CommandItem(new IndexerPage())
{
Title = Resources.Indexer_Title,
- Subtitle = Resources.Indexer_Subtitle,
}
];
}
diff --git a/src/modules/cmdpal/ext/Microsoft.CmdPal.Ext.Indexer/Pages/IndexerPage.cs b/src/modules/cmdpal/ext/Microsoft.CmdPal.Ext.Indexer/Pages/IndexerPage.cs
index 0ed9458398..41abc0b018 100644
--- a/src/modules/cmdpal/ext/Microsoft.CmdPal.Ext.Indexer/Pages/IndexerPage.cs
+++ b/src/modules/cmdpal/ext/Microsoft.CmdPal.Ext.Indexer/Pages/IndexerPage.cs
@@ -68,7 +68,6 @@ internal sealed partial class IndexerPage : DynamicListPage, IDisposable
_noSearchEmptyContent = new CommandItem(new NoOpCommand())
{
Icon = Icon,
- Title = Resources.Indexer_Subtitle,
Subtitle = Resources.Indexer_NoSearchQueryMessageTip,
};
diff --git a/src/modules/cmdpal/ext/Microsoft.CmdPal.Ext.Indexer/Properties/Resources.Designer.cs b/src/modules/cmdpal/ext/Microsoft.CmdPal.Ext.Indexer/Properties/Resources.Designer.cs
index d4d8f9cd0f..4394cd6697 100644
--- a/src/modules/cmdpal/ext/Microsoft.CmdPal.Ext.Indexer/Properties/Resources.Designer.cs
+++ b/src/modules/cmdpal/ext/Microsoft.CmdPal.Ext.Indexer/Properties/Resources.Designer.cs
@@ -295,15 +295,6 @@ namespace Microsoft.CmdPal.Ext.Indexer.Properties {
}
}
- ///
- /// Looks up a localized string similar to Search files on this device.
- ///
- internal static string Indexer_Subtitle {
- get {
- return ResourceManager.GetString("Indexer_Subtitle", resourceCulture);
- }
- }
-
///
/// Looks up a localized string similar to Search files.
///
diff --git a/src/modules/cmdpal/ext/Microsoft.CmdPal.Ext.Indexer/Properties/Resources.resx b/src/modules/cmdpal/ext/Microsoft.CmdPal.Ext.Indexer/Properties/Resources.resx
index 8e67eae4e9..9ea1c4563e 100644
--- a/src/modules/cmdpal/ext/Microsoft.CmdPal.Ext.Indexer/Properties/Resources.resx
+++ b/src/modules/cmdpal/ext/Microsoft.CmdPal.Ext.Indexer/Properties/Resources.resx
@@ -171,9 +171,6 @@
Only when file path exist
-
- Search files on this device
-
Search files
diff --git a/src/modules/cmdpal/ext/Microsoft.CmdPal.Ext.Registry/RegistryCommandsProvider.cs b/src/modules/cmdpal/ext/Microsoft.CmdPal.Ext.Registry/RegistryCommandsProvider.cs
index 22eca4cc3f..5d68f013a4 100644
--- a/src/modules/cmdpal/ext/Microsoft.CmdPal.Ext.Registry/RegistryCommandsProvider.cs
+++ b/src/modules/cmdpal/ext/Microsoft.CmdPal.Ext.Registry/RegistryCommandsProvider.cs
@@ -25,8 +25,7 @@ public partial class RegistryCommandsProvider : CommandProvider
return [
new CommandItem(new RegistryListPage(_settingsManager))
{
- Title = "Registry",
- Subtitle = "Navigate the Windows registry",
+ Title = "Browse the Windows registry",
}
];
}
diff --git a/src/modules/cmdpal/ext/Microsoft.CmdPal.Ext.Shell/Properties/Resources.Designer.cs b/src/modules/cmdpal/ext/Microsoft.CmdPal.Ext.Shell/Properties/Resources.Designer.cs
index 4200c3050a..e5949f8a02 100644
--- a/src/modules/cmdpal/ext/Microsoft.CmdPal.Ext.Shell/Properties/Resources.Designer.cs
+++ b/src/modules/cmdpal/ext/Microsoft.CmdPal.Ext.Shell/Properties/Resources.Designer.cs
@@ -97,7 +97,7 @@ namespace Microsoft.CmdPal.Ext.Shell.Properties {
}
///
- /// Looks up a localized string similar to Executes commands (e.g. 'ping', 'cmd').
+ /// Looks up a localized string similar to Execute system commands like 'ping' and 'cmd'.
///
public static string cmd_plugin_description {
get {
diff --git a/src/modules/cmdpal/ext/Microsoft.CmdPal.Ext.Shell/Properties/Resources.resx b/src/modules/cmdpal/ext/Microsoft.CmdPal.Ext.Shell/Properties/Resources.resx
index a2f4cfb64f..991869b8da 100644
--- a/src/modules/cmdpal/ext/Microsoft.CmdPal.Ext.Shell/Properties/Resources.resx
+++ b/src/modules/cmdpal/ext/Microsoft.CmdPal.Ext.Shell/Properties/Resources.resx
@@ -121,7 +121,7 @@
Run commands
- Executes commands (e.g. 'ping', 'cmd')
+ Execute system commands like 'ping' and 'cmd'
this command has been executed {0} times
diff --git a/src/modules/cmdpal/ext/Microsoft.CmdPal.Ext.System/Properties/Resources.Designer.cs b/src/modules/cmdpal/ext/Microsoft.CmdPal.Ext.System/Properties/Resources.Designer.cs
index f2ec8c1218..0b1e1fe121 100644
--- a/src/modules/cmdpal/ext/Microsoft.CmdPal.Ext.System/Properties/Resources.Designer.cs
+++ b/src/modules/cmdpal/ext/Microsoft.CmdPal.Ext.System/Properties/Resources.Designer.cs
@@ -160,7 +160,7 @@ namespace Microsoft.CmdPal.Ext.System {
}
///
- /// Looks up a localized string similar to Adapter Details.
+ /// Looks up a localized string similar to Adapter details.
///
public static string Microsoft_plugin_ext_adapter_details {
get {
@@ -169,7 +169,7 @@ namespace Microsoft.CmdPal.Ext.System {
}
///
- /// Looks up a localized string similar to Connection Details.
+ /// Looks up a localized string similar to Connection details.
///
public static string Microsoft_plugin_ext_connection_details {
get {
@@ -187,7 +187,7 @@ namespace Microsoft.CmdPal.Ext.System {
}
///
- /// Looks up a localized string similar to Open System Command.
+ /// Looks up a localized string similar to Open system command.
///
public static string Microsoft_plugin_ext_fallback_display_title {
get {
@@ -205,7 +205,7 @@ namespace Microsoft.CmdPal.Ext.System {
}
///
- /// Looks up a localized string similar to System Commands.
+ /// Looks up a localized string similar to System commands.
///
public static string Microsoft_plugin_ext_system_page_name {
get {
@@ -214,7 +214,7 @@ namespace Microsoft.CmdPal.Ext.System {
}
///
- /// Looks up a localized string similar to Windows System Commands.
+ /// Looks up a localized string similar to Windows system commands.
///
public static string Microsoft_plugin_ext_system_page_title {
get {
@@ -628,7 +628,7 @@ namespace Microsoft.CmdPal.Ext.System {
}
///
- /// Looks up a localized string similar to You are about to restart this computer, are you sure?.
+ /// Looks up a localized string similar to You are about to restart this computer. Are you sure?.
///
public static string Microsoft_plugin_sys_restart_computer_confirmation {
get {
@@ -790,7 +790,7 @@ namespace Microsoft.CmdPal.Ext.System {
}
///
- /// Looks up a localized string similar to DNS Suffix.
+ /// Looks up a localized string similar to DNS suffix.
///
public static string Microsoft_plugin_sys_Suffix {
get {
@@ -817,7 +817,7 @@ namespace Microsoft.CmdPal.Ext.System {
}
///
- /// Looks up a localized string similar to UEFI Firmware Settings.
+ /// Looks up a localized string similar to UEFI firmware settings.
///
public static string Microsoft_plugin_sys_uefi {
get {
@@ -826,7 +826,7 @@ namespace Microsoft.CmdPal.Ext.System {
}
///
- /// Looks up a localized string similar to You are about to reboot this computer into UEFI Firmware Settings menu, are you sure?.
+ /// Looks up a localized string similar to You are about to reboot this computer into UEFI firmware settings menu, are you sure?.
///
public static string Microsoft_plugin_sys_uefi_confirmation {
get {
@@ -835,7 +835,7 @@ namespace Microsoft.CmdPal.Ext.System {
}
///
- /// Looks up a localized string similar to Reboot computer into UEFI Firmware Settings (Requires administrative permissions.).
+ /// Looks up a localized string similar to Reboot computer into UEFI firmware Settings (requires administrative permissions.).
///
public static string Microsoft_plugin_sys_uefi_description {
get {
diff --git a/src/modules/cmdpal/ext/Microsoft.CmdPal.Ext.System/Properties/Resources.resx b/src/modules/cmdpal/ext/Microsoft.CmdPal.Ext.System/Properties/Resources.resx
index bf7ab04da0..bc8ea5ec38 100644
--- a/src/modules/cmdpal/ext/Microsoft.CmdPal.Ext.System/Properties/Resources.resx
+++ b/src/modules/cmdpal/ext/Microsoft.CmdPal.Ext.System/Properties/Resources.resx
@@ -149,10 +149,10 @@
Shutdown
- Connection Details
+ Connection details
- Adapter Details
+ Adapter details
Copy to clipboard
@@ -161,10 +161,10 @@
Hide disconnected network info
- Windows System Commands
+ Windows system commands
- System Commands
+ System commands
Adapter name
@@ -327,7 +327,7 @@
This should align to the action in Windows of a restarting your computer.
- You are about to restart this computer, are you sure?
+ You are about to restart this computer. Are you sure?
This should align to the action in Windows of a restarting your computer.
@@ -381,7 +381,7 @@
State
- DNS Suffix
+ DNS suffix
Tunnel
@@ -391,15 +391,15 @@
Means type like category. Here it means network interface type (ethernet, wifi, ...).
- UEFI Firmware Settings
+ UEFI firmware settings
This should align to the action in Windows Recovery Environment that restart into uefi settings.
- You are about to reboot this computer into UEFI Firmware Settings menu, are you sure?
+ You are about to reboot this computer into UEFI firmware settings menu, are you sure?
This should align to the action in Windows Recovery Environment that restart into uefi settings.
- Reboot computer into UEFI Firmware Settings (Requires administrative permissions.)
+ Reboot computer into UEFI firmware Settings (requires administrative permissions.)
This should align to the action in Windows Recovery Environment that restart into uefi settings.
@@ -415,7 +415,7 @@
Sleep
- Open System Command
+ Execute system commands
Restart Windows Explorer
diff --git a/src/modules/cmdpal/ext/Microsoft.CmdPal.Ext.TimeDate/Helpers/TimeDateCalculator.cs b/src/modules/cmdpal/ext/Microsoft.CmdPal.Ext.TimeDate/Helpers/TimeDateCalculator.cs
index 9b820bbff8..2884cbbad2 100644
--- a/src/modules/cmdpal/ext/Microsoft.CmdPal.Ext.TimeDate/Helpers/TimeDateCalculator.cs
+++ b/src/modules/cmdpal/ext/Microsoft.CmdPal.Ext.TimeDate/Helpers/TimeDateCalculator.cs
@@ -17,11 +17,6 @@ public sealed partial class TimeDateCalculator
///
private const string InputDelimiter = "::";
- ///
- /// A list of conjunctions that we ignore on search
- ///
- private static readonly string[] _conjunctionList = Resources.Microsoft_plugin_timedate_Search_ConjunctionList.Split("; ");
-
///
/// Searches for results
///
diff --git a/src/modules/cmdpal/ext/Microsoft.CmdPal.Ext.TimeDate/Properties/Resources.Designer.cs b/src/modules/cmdpal/ext/Microsoft.CmdPal.Ext.TimeDate/Properties/Resources.Designer.cs
index ef4f2ede35..e3443c3ee6 100644
--- a/src/modules/cmdpal/ext/Microsoft.CmdPal.Ext.TimeDate/Properties/Resources.Designer.cs
+++ b/src/modules/cmdpal/ext/Microsoft.CmdPal.Ext.TimeDate/Properties/Resources.Designer.cs
@@ -349,7 +349,7 @@ namespace Microsoft.CmdPal.Ext.TimeDate {
}
///
- /// Looks up a localized string similar to Time and Date.
+ /// Looks up a localized string similar to Time and date.
///
public static string Microsoft_plugin_timedate_main_page_title {
get {
@@ -448,7 +448,7 @@ namespace Microsoft.CmdPal.Ext.TimeDate {
}
///
- /// Looks up a localized string similar to Provides time and date values in different formats.
+ /// Looks up a localized string similar to Show time and date values in different formats.
///
public static string Microsoft_plugin_timedate_plugin_description {
get {
@@ -484,7 +484,7 @@ namespace Microsoft.CmdPal.Ext.TimeDate {
}
///
- /// Looks up a localized string similar to Time and Date.
+ /// Looks up a localized string similar to Time and date.
///
public static string Microsoft_plugin_timedate_plugin_name {
get {
@@ -501,15 +501,6 @@ namespace Microsoft.CmdPal.Ext.TimeDate {
}
}
- ///
- /// Looks up a localized string similar to "for; and; nor; but; or; so".
- ///
- public static string Microsoft_plugin_timedate_Search_ConjunctionList {
- get {
- return ResourceManager.GetString("Microsoft_plugin_timedate_Search_ConjunctionList", resourceCulture);
- }
- }
-
///
/// Looks up a localized string similar to Date and time; Time and Date; Custom format.
///
diff --git a/src/modules/cmdpal/ext/Microsoft.CmdPal.Ext.TimeDate/Properties/Resources.resx b/src/modules/cmdpal/ext/Microsoft.CmdPal.Ext.TimeDate/Properties/Resources.resx
index 35862592ca..eb248e3b1a 100644
--- a/src/modules/cmdpal/ext/Microsoft.CmdPal.Ext.TimeDate/Properties/Resources.resx
+++ b/src/modules/cmdpal/ext/Microsoft.CmdPal.Ext.TimeDate/Properties/Resources.resx
@@ -202,7 +202,7 @@
'UTC' means here 'Universal Time Convention'
- Provides time and date values in different formats
+ Show time and date values in different formats
Do not translate the placeholders like '{0}' because it will be replaced in code.
@@ -215,7 +215,7 @@
Time
- Time and Date
+ Time and date
RFC1123
@@ -252,10 +252,6 @@
Current Time; Now
Don't change order
-
- for; and; nor; but; or; so
- List of conjunctions. We don't add 'yet' because this can be a synonym of 'now' which might be problematic on localized searches.
-
Second
@@ -358,7 +354,7 @@
Error: Invalid input
- Time and Date
+ Time and date
A {0}format name{0}, a {0}valid date or time value{0}, or a {0}prefixed number{0}. To search for a format in a specific date/time please use the syntax {0}format::date/time/number{0}.{1}Supported prefixes:{2}'{0}u{0}' for Unix Timestamp{2}'{0}ums{0}' for Unix Timestamp in milliseconds{2}'{0}ft{0}' for Windows file time{2}'{0}oa{0}' for OLE Automation Date{2}'{0}exc{0}' for Excel's 1900 date value{2}'{0}exf{0}' for Excel's 1904 date value
diff --git a/src/modules/cmdpal/ext/Microsoft.CmdPal.Ext.WinGet/Properties/Resources.Designer.cs b/src/modules/cmdpal/ext/Microsoft.CmdPal.Ext.WinGet/Properties/Resources.Designer.cs
index 418cccf58c..e4567a30d4 100644
--- a/src/modules/cmdpal/ext/Microsoft.CmdPal.Ext.WinGet/Properties/Resources.Designer.cs
+++ b/src/modules/cmdpal/ext/Microsoft.CmdPal.Ext.WinGet/Properties/Resources.Designer.cs
@@ -124,16 +124,7 @@ namespace Microsoft.CmdPal.Ext.WinGet.Properties {
}
///
- /// Looks up a localized string similar to Search for extensions on WinGet.
- ///
- public static string winget_install_extensions_subtitle {
- get {
- return ResourceManager.GetString("winget_install_extensions_subtitle", resourceCulture);
- }
- }
-
- ///
- /// Looks up a localized string similar to Install Command Palette extensions.
+ /// Looks up a localized string similar to Add Command Palette extensions from WinGet.
///
public static string winget_install_extensions_title {
get {
@@ -205,7 +196,7 @@ namespace Microsoft.CmdPal.Ext.WinGet.Properties {
}
///
- /// Looks up a localized string similar to Search WinGet.
+ /// Looks up a localized string similar to Find apps on WinGet.
///
public static string winget_page_name {
get {
@@ -268,7 +259,7 @@ namespace Microsoft.CmdPal.Ext.WinGet.Properties {
}
///
- /// Looks up a localized string similar to Search for extensions in the Store.
+ /// Looks up a localized string similar to Add Command Palette extensions from the Microsoft Store.
///
public static string winget_search_store_title {
get {
diff --git a/src/modules/cmdpal/ext/Microsoft.CmdPal.Ext.WinGet/Properties/Resources.resx b/src/modules/cmdpal/ext/Microsoft.CmdPal.Ext.WinGet/Properties/Resources.resx
index ac2128430d..4a6df0b518 100644
--- a/src/modules/cmdpal/ext/Microsoft.CmdPal.Ext.WinGet/Properties/Resources.resx
+++ b/src/modules/cmdpal/ext/Microsoft.CmdPal.Ext.WinGet/Properties/Resources.resx
@@ -127,19 +127,15 @@
- Install Command Palette extensions
-
-
-
- Search for extensions on WinGet
+ Add Command Palette extensions from WinGet
- Search for extensions in the Store
+ Add Command Palette extensions from the Microsoft Store
- Search WinGet
+ Find apps on WinGet
diff --git a/src/modules/cmdpal/ext/Microsoft.CmdPal.Ext.WinGet/WinGetExtensionCommandsProvider.cs b/src/modules/cmdpal/ext/Microsoft.CmdPal.Ext.WinGet/WinGetExtensionCommandsProvider.cs
index 44b6da1f17..14c7ec0831 100644
--- a/src/modules/cmdpal/ext/Microsoft.CmdPal.Ext.WinGet/WinGetExtensionCommandsProvider.cs
+++ b/src/modules/cmdpal/ext/Microsoft.CmdPal.Ext.WinGet/WinGetExtensionCommandsProvider.cs
@@ -27,7 +27,6 @@ public partial class WinGetExtensionCommandsProvider : CommandProvider
new WinGetExtensionPage(WinGetExtensionPage.ExtensionsTag) { Title = Properties.Resources.winget_install_extensions_title })
{
Title = Properties.Resources.winget_install_extensions_title,
- Subtitle = Properties.Resources.winget_install_extensions_subtitle,
},
new ListItem(
diff --git a/src/modules/cmdpal/ext/Microsoft.CmdPal.Ext.WindowWalker/Properties/Resources.Designer.cs b/src/modules/cmdpal/ext/Microsoft.CmdPal.Ext.WindowWalker/Properties/Resources.Designer.cs
index 1a8c5106d4..0d0cce13c6 100644
--- a/src/modules/cmdpal/ext/Microsoft.CmdPal.Ext.WindowWalker/Properties/Resources.Designer.cs
+++ b/src/modules/cmdpal/ext/Microsoft.CmdPal.Ext.WindowWalker/Properties/Resources.Designer.cs
@@ -70,7 +70,7 @@ namespace Microsoft.CmdPal.Ext.WindowWalker.Properties {
}
///
- /// Looks up a localized string similar to On all Desktops.
+ /// Looks up a localized string similar to On all desktops.
///
public static string VirtualDesktopHelper_AllDesktops {
get {
@@ -196,7 +196,7 @@ namespace Microsoft.CmdPal.Ext.WindowWalker.Properties {
}
///
- /// Looks up a localized string similar to Not Responding.
+ /// Looks up a localized string similar to Not responding.
///
public static string windowwalker_NotResponding {
get {
diff --git a/src/modules/cmdpal/ext/Microsoft.CmdPal.Ext.WindowWalker/Properties/Resources.resx b/src/modules/cmdpal/ext/Microsoft.CmdPal.Ext.WindowWalker/Properties/Resources.resx
index 3d61936a1d..cbfa9b69b0 100644
--- a/src/modules/cmdpal/ext/Microsoft.CmdPal.Ext.WindowWalker/Properties/Resources.resx
+++ b/src/modules/cmdpal/ext/Microsoft.CmdPal.Ext.WindowWalker/Properties/Resources.resx
@@ -209,7 +209,7 @@
When disabled, windows will be sorted by title
- Not Responding
+ Not responding
Switch between open windows
@@ -218,7 +218,7 @@
Switch to
- On all Desktops
+ On all desktops
Desktop {0}
diff --git a/src/modules/cmdpal/ext/Microsoft.CmdPal.Ext.WindowsServices/WindowsServicesCommandsProvider.cs b/src/modules/cmdpal/ext/Microsoft.CmdPal.Ext.WindowsServices/WindowsServicesCommandsProvider.cs
index 48ca848707..c48dcd99b2 100644
--- a/src/modules/cmdpal/ext/Microsoft.CmdPal.Ext.WindowsServices/WindowsServicesCommandsProvider.cs
+++ b/src/modules/cmdpal/ext/Microsoft.CmdPal.Ext.WindowsServices/WindowsServicesCommandsProvider.cs
@@ -23,8 +23,7 @@ public partial class WindowsServicesCommandsProvider : CommandProvider
return [
new CommandItem(new ServicesListPage())
{
- Title = "Windows Services",
- Subtitle = "Manage Windows Services",
+ Title = "Manage Windows services",
}
];
}
diff --git a/src/modules/cmdpal/ext/Microsoft.CmdPal.Ext.WindowsTerminal/Properties/Resources.Designer.cs b/src/modules/cmdpal/ext/Microsoft.CmdPal.Ext.WindowsTerminal/Properties/Resources.Designer.cs
index 81d82638f0..46b0d185b6 100644
--- a/src/modules/cmdpal/ext/Microsoft.CmdPal.Ext.WindowsTerminal/Properties/Resources.Designer.cs
+++ b/src/modules/cmdpal/ext/Microsoft.CmdPal.Ext.WindowsTerminal/Properties/Resources.Designer.cs
@@ -97,7 +97,7 @@ namespace Microsoft.CmdPal.Ext.WindowsTerminal.Properties {
}
///
- /// Looks up a localized string similar to Open Windows Terminal Profiles.
+ /// Looks up a localized string similar to Open Windows Terminal profiles.
///
internal static string list_item_title {
get {
diff --git a/src/modules/cmdpal/ext/Microsoft.CmdPal.Ext.WindowsTerminal/Properties/Resources.resx b/src/modules/cmdpal/ext/Microsoft.CmdPal.Ext.WindowsTerminal/Properties/Resources.resx
index 23a1533fab..bff603bedc 100644
--- a/src/modules/cmdpal/ext/Microsoft.CmdPal.Ext.WindowsTerminal/Properties/Resources.resx
+++ b/src/modules/cmdpal/ext/Microsoft.CmdPal.Ext.WindowsTerminal/Properties/Resources.resx
@@ -156,7 +156,7 @@
Settings
- Open Windows Terminal Profiles
+ Open Windows Terminal profiles
Preferred channel
diff --git a/src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.System.UnitTests/QueryTests.cs b/src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.System.UnitTests/QueryTests.cs
index d08ec588d3..a6cec9880d 100644
--- a/src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.System.UnitTests/QueryTests.cs
+++ b/src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.System.UnitTests/QueryTests.cs
@@ -74,7 +74,7 @@ namespace Microsoft.PowerToys.Run.Plugin.System.UnitTests
var result = main.Object.Query(expectedQuery).FirstOrDefault().SubTitle;
// Assert
- Assert.AreEqual("Reboot computer into UEFI Firmware Settings (Requires administrative permissions.)", result);
+ Assert.AreEqual("Reboot computer into UEFI firmware settings (Requires administrative permissions.)", result);
}
[TestMethod]
diff --git a/src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.System/Properties/Resources.Designer.cs b/src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.System/Properties/Resources.Designer.cs
index 5d07afd41f..a530fbc580 100644
--- a/src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.System/Properties/Resources.Designer.cs
+++ b/src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.System/Properties/Resources.Designer.cs
@@ -19,7 +19,7 @@ namespace Microsoft.PowerToys.Run.Plugin.System.Properties {
// class via a tool like ResGen or Visual Studio.
// To add or remove a member, edit your .ResX file then rerun ResGen
// with the /str option, or rebuild your VS project.
- [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "17.0.0.0")]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "18.0.0.0")]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
internal class Resources {
@@ -682,7 +682,7 @@ namespace Microsoft.PowerToys.Run.Plugin.System.Properties {
}
///
- /// Looks up a localized string similar to You are about to reboot this computer into UEFI Firmware Settings menu, are you sure?.
+ /// Looks up a localized string similar to You are about to reboot this computer into UEFI firmware settings menu, are you sure?.
///
internal static string Microsoft_plugin_sys_uefi_confirmation {
get {
@@ -691,7 +691,7 @@ namespace Microsoft.PowerToys.Run.Plugin.System.Properties {
}
///
- /// Looks up a localized string similar to Reboot computer into UEFI Firmware Settings (Requires administrative permissions.).
+ /// Looks up a localized string similar to Reboot computer into UEFI firmware settings (Requires administrative permissions.).
///
internal static string Microsoft_plugin_sys_uefi_description {
get {
diff --git a/src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.System/Properties/Resources.resx b/src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.System/Properties/Resources.resx
index eeaa8a423b..f9d1deaab2 100644
--- a/src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.System/Properties/Resources.resx
+++ b/src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.System/Properties/Resources.resx
@@ -362,15 +362,15 @@
Means type like category. Here it means network interface type (ethernet, wifi, ...).
- UEFI Firmware Settings
+ UEFI firmware settings
This should align to the action in Windows Recovery Environment that restart into uefi settings.
- You are about to reboot this computer into UEFI Firmware Settings menu, are you sure?
+ You are about to reboot this computer into UEFI firmware settings menu, are you sure?
This should align to the action in Windows Recovery Environment that restart into uefi settings.
- Reboot computer into UEFI Firmware Settings (Requires administrative permissions.)
+ Reboot computer into UEFI firmware settings (Requires administrative permissions.)
This should align to the action in Windows Recovery Environment that restart into uefi settings.
diff --git a/src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.TimeDate/Properties/Resources.resx b/src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.TimeDate/Properties/Resources.resx
index e1e3a68766..84d81c1b96 100644
--- a/src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.TimeDate/Properties/Resources.resx
+++ b/src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.TimeDate/Properties/Resources.resx
@@ -208,7 +208,7 @@
'UTC' means here 'Universal Time Convention'
- Provides time and date values for the system time or a custom time stamp (e.g.'{0}', '{1}', '{2}', '{3}')
+ Shows time and date values for the system time or a custom time stamp (e.g.'{0}', '{1}', '{2}', '{3}')
Do not translate the placeholders like '{0}' because it will be replaced in code.