[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:
Brian Teeman
2023-10-04 11:11:40 +01:00
committed by GitHub
parent fd8d4b9387
commit 74dd40e203
4 changed files with 4 additions and 4 deletions

View File

@@ -51,7 +51,7 @@ namespace Microsoft.PowerToys.Settings.UI.Library
[JsonPropertyName("activationaction")]
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")]
public List<string> ColorHistory { get; set; }

View File

@@ -4,7 +4,7 @@
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>
/// The type of the color representation

View File

@@ -703,7 +703,7 @@ namespace Microsoft.PowerToys.Settings.UI.ViewModels
}
/// <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>
private async void SelectSettingBackupDir()
{

View File

@@ -67,7 +67,7 @@ namespace Microsoft.PowerToys.Settings.UI.ViewModels
// TextBox setting
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
{