mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-08 04:07:40 +02:00
[Settings]Fix UI typos (#28991)
Fixes simple typo/grammar errors It's easier to understand if it is spelled correctly. This is especially important for those for whom english may not be their first language. Signed-off-by: brian teeman <brian@teeman.net>
This commit is contained in:
@@ -51,7 +51,7 @@ namespace Microsoft.PowerToys.Settings.UI.Library
|
|||||||
[JsonPropertyName("activationaction")]
|
[JsonPropertyName("activationaction")]
|
||||||
public ColorPickerActivationAction ActivationAction { get; set; }
|
public ColorPickerActivationAction ActivationAction { get; set; }
|
||||||
|
|
||||||
// Property ColorHistory is not used, the color history is saved separatedly in the colorHistory.json file
|
// Property ColorHistory is not used, the color history is saved separately in the colorHistory.json file
|
||||||
[JsonPropertyName("colorhistory")]
|
[JsonPropertyName("colorhistory")]
|
||||||
public List<string> ColorHistory { get; set; }
|
public List<string> ColorHistory { get; set; }
|
||||||
|
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
|
|
||||||
namespace Microsoft.PowerToys.Settings.UI.Library.Enumerations
|
namespace Microsoft.PowerToys.Settings.UI.Library.Enumerations
|
||||||
{
|
{
|
||||||
// NOTE: don't change the order (numbers) of the enumeration entires
|
// NOTE: don't change the order (numbers) of the enumeration entries
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The type of the color representation
|
/// The type of the color representation
|
||||||
|
|||||||
@@ -703,7 +703,7 @@ namespace Microsoft.PowerToys.Settings.UI.ViewModels
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Method <c>SelectSettingBackupDir</c> opens folder browser to select a backup and retore location.
|
/// Method <c>SelectSettingBackupDir</c> opens folder browser to select a backup and restore location.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
private async void SelectSettingBackupDir()
|
private async void SelectSettingBackupDir()
|
||||||
{
|
{
|
||||||
|
|||||||
@@ -67,7 +67,7 @@ namespace Microsoft.PowerToys.Settings.UI.ViewModels
|
|||||||
// TextBox setting
|
// TextBox setting
|
||||||
public bool ShowTextBox => _additionalOption.PluginOptionType == PluginAdditionalOption.AdditionalOptionType.Textbox;
|
public bool ShowTextBox => _additionalOption.PluginOptionType == PluginAdditionalOption.AdditionalOptionType.Textbox;
|
||||||
|
|
||||||
public int TextBoxMaxLength => (_additionalOption.TextBoxMaxLength == null) ? 0 : _additionalOption.TextBoxMaxLength.Value; // 0 ist the default and means no limit.
|
public int TextBoxMaxLength => (_additionalOption.TextBoxMaxLength == null) ? 0 : _additionalOption.TextBoxMaxLength.Value; // 0 is the default and means no limit.
|
||||||
|
|
||||||
public string TextValue
|
public string TextValue
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user