Spelling: ... core (#3782)

* spelling: administrator

* spelling: appearance

* spelling: expected

* spelling: explorer

* spelling: implementation

* spelling: integration

* spelling: successful

* spelling: windows
This commit is contained in:
Josh Soref 2020-05-27 11:06:17 -04:00 committed by GitHub
parent 84169cce10
commit c0e62372e6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
7 changed files with 29 additions and 29 deletions

View File

@ -257,7 +257,7 @@
<data name="About_This_Feature.Text" xml:space="preserve">
<value>About this feature</value>
</data>
<data name="Appearancce_GroupSettings.Text" xml:space="preserve">
<data name="Appearance_GroupSettings.Text" xml:space="preserve">
<value>Appearance</value>
</data>
<data name="FancyZones_Description.Text" xml:space="preserve">
@ -290,7 +290,7 @@
<data name="FancyZones_MouseDragCheckBoxControl_Header.Content" xml:space="preserve">
<value>Hold a non-primary mouse button to activate zones while dragging</value>
</data>
<data name="FancyZones_MoveVindowsAcrossAllMonitorsCheckBoxControl.Content" xml:space="preserve">
<data name="FancyZones_MoveWindowsAcrossAllMonitorsCheckBoxControl.Content" xml:space="preserve">
<value>Move windows between zones across all monitors when snapping with win+arrow</value>
</data>
<data name="FancyZones_OverrideSnapHotkeysCheckBoxControl.Content" xml:space="preserve">
@ -362,7 +362,7 @@
<data name="PowerRename_Description.Text" xml:space="preserve">
<value>A Windows Shell extension for more advanced bulk renaming using search and replace or regular expressions.</value>
</data>
<data name="PowerRename_ShellIntergration.Text" xml:space="preserve">
<data name="PowerRename_ShellIntegration.Text" xml:space="preserve">
<value>Shell integration</value>
</data>
<data name="PowerRename_Toggle_Enable.Header" xml:space="preserve">
@ -383,10 +383,10 @@
<data name="PowerRename_Toggle_RestoreFlagsOnLaunch.Header" xml:space="preserve">
<value>Show values from last use</value>
</data>
<data name="FileEplorerPreview_ToggleSwitch_Preview_MD.Header" xml:space="preserve">
<data name="FileExplorerPreview_ToggleSwitch_Preview_MD.Header" xml:space="preserve">
<value>Enable Markdown (.md) preview</value>
</data>
<data name="FileEplorerPreview_ToggleSwitch_Preview_SVG.Header" xml:space="preserve">
<data name="FileExplorerPreview_ToggleSwitch_Preview_SVG.Header" xml:space="preserve">
<value>Enable SVG (.svg) preview</value>
</data>
<data name="FileExplorerPreview_Description.Text" xml:space="preserve">
@ -543,7 +543,7 @@
<value>Running as user</value>
</data>
<data name="GeneralSettings_RunningAsAdminText" xml:space="preserve">
<value>Running as adminstrator</value>
<value>Running as administrator</value>
</data>
<data name="About_FancyZones.Text" xml:space="preserve">
<value>About FancyZones</value>

View File

@ -99,7 +99,7 @@
Margin="{StaticResource SmallTopMargin}"
IsEnabled="{ Binding Mode=TwoWay, Path=IsEnabled}"/>
<CheckBox x:Uid="FancyZones_MoveVindowsAcrossAllMonitorsCheckBoxControl"
<CheckBox x:Uid="FancyZones_MoveWindowsAcrossAllMonitorsCheckBoxControl"
IsChecked="{ Binding Mode=TwoWay, Path=MoveWindowsAcrossMonitors}"
Margin="{StaticResource SmallTopMargin}"
IsEnabled="{ Binding Mode=TwoWay, Path=IsEnabled}"/>
@ -131,7 +131,7 @@
IsEnabled="{ Binding Mode=TwoWay, Path=IsEnabled}"/>
<TextBlock x:Uid="Appearancce_GroupSettings"
<TextBlock x:Uid="Appearance_GroupSettings"
Style="{StaticResource SettingsGroupTitleStyle}"/>
<!-- TO DO: Do we still need this numberbox? The colorpicker has an Alpha/Opacity option as well so we could use that -->

View File

@ -46,11 +46,11 @@
<TextBlock x:Uid="FileExplorerPreview_Description"
TextWrapping="Wrap"/>
<ToggleSwitch x:Uid="FileEplorerPreview_ToggleSwitch_Preview_SVG"
<ToggleSwitch x:Uid="FileExplorerPreview_ToggleSwitch_Preview_SVG"
Margin="{StaticResource MediumTopMargin}"
IsOn="{Binding Mode=TwoWay, Path=SVGRenderIsEnabled}" />
<ToggleSwitch x:Uid="FileEplorerPreview_ToggleSwitch_Preview_MD"
<ToggleSwitch x:Uid="FileExplorerPreview_ToggleSwitch_Preview_MD"
Margin="{StaticResource SmallTopMargin}"
IsOn="{Binding Mode=TwoWay, Path=MDRenderIsEnabled}" />

View File

@ -52,7 +52,7 @@
IsOn="{Binding Mode=TwoWay, Path=IsEnabled}"
/>
<TextBlock x:Uid="PowerRename_ShellIntergration"
<TextBlock x:Uid="PowerRename_ShellIntegration"
Style="{StaticResource SettingsGroupTitleStyle}"/>
<ToggleSwitch x:Uid="PowerRename_Toggle_EnableOnContextMenu"

View File

@ -59,19 +59,19 @@ namespace Microsoft.PowerToys.Settings.UI.Views
/// <summary>
/// Set Default IPC Message callback function.
/// </summary>
/// <param name="implmentation">delegate function implementation.</param>
public void SetDefaultSndMessageCallback(IPCMessageCallback implmentation)
/// <param name="implementation">delegate function implementation.</param>
public void SetDefaultSndMessageCallback(IPCMessageCallback implementation)
{
DefaultSndMSGCallback = implmentation;
DefaultSndMSGCallback = implementation;
}
/// <summary>
/// Set restart as admin IPC callback function.
/// </summary>
/// <param name="implmentation">delegate function implementation.</param>
public void SetRestartAdminSndMessageCallback(IPCMessageCallback implmentation)
/// <param name="implementation">delegate function implementation.</param>
public void SetRestartAdminSndMessageCallback(IPCMessageCallback implementation)
{
SndRestartAsAdminMsgCallback = implmentation;
SndRestartAsAdminMsgCallback = implementation;
}
public void SetElevationStatus(bool isElevated)

View File

@ -91,7 +91,7 @@ namespace CommonLibTest
}
[TestMethod]
public void CreateSettingsFolder_ShouldCreateFolder_WhenSuccessfull()
public void CreateSettingsFolder_ShouldCreateFolder_WhenSuccessful()
{
// Arrange
string file_name = "test\\" + RandomString();

View File

@ -68,7 +68,7 @@ namespace ViewModelTests
}
[TestMethod]
public void JPEGQualityLevel_ShouldSetValueToTen_WhenSuccefull()
public void JPEGQualityLevel_ShouldSetValueToTen_WhenSuccessful()
{
// arrange
ImageResizerViewModel viewModel = new ImageResizerViewModel();
@ -82,7 +82,7 @@ namespace ViewModelTests
}
[TestMethod]
public void PngInterlaceOption_ShouldSetValueToTen_WhenSuccefull()
public void PngInterlaceOption_ShouldSetValueToTen_WhenSuccessful()
{
// arrange
ImageResizerViewModel viewModel = new ImageResizerViewModel();
@ -96,7 +96,7 @@ namespace ViewModelTests
}
[TestMethod]
public void TiffCompressOption_ShouldSetValueToTen_WhenSuccefull()
public void TiffCompressOption_ShouldSetValueToTen_WhenSuccessful()
{
// arrange
ImageResizerViewModel viewModel = new ImageResizerViewModel();
@ -110,18 +110,18 @@ namespace ViewModelTests
}
[TestMethod]
public void FileName_ShouldUpdateValue_WhenSuccefull()
public void FileName_ShouldUpdateValue_WhenSuccessful()
{
// arrange
ImageResizerViewModel viewModel = new ImageResizerViewModel();
string exptectedValue = "%1 (%3)";
string expectedValue = "%1 (%3)";
// act
viewModel.FileName = exptectedValue;
viewModel.FileName = expectedValue;
// Assert
viewModel = new ImageResizerViewModel();
Assert.AreEqual(exptectedValue, viewModel.FileName);
Assert.AreEqual(expectedValue, viewModel.FileName);
}
[TestMethod]
@ -157,7 +157,7 @@ namespace ViewModelTests
}
[TestMethod]
public void KeepDateModified_ShouldUpdateValue_WhenSuccefull()
public void KeepDateModified_ShouldUpdateValue_WhenSuccessful()
{
// arrange
ImageResizerViewModel viewModel = new ImageResizerViewModel();
@ -172,7 +172,7 @@ namespace ViewModelTests
[TestMethod]
public void Encoder_ShouldUpdateValue_WhenSuccefull()
public void Encoder_ShouldUpdateValue_WhenSuccessful()
{
// arrange
ImageResizerViewModel viewModel = new ImageResizerViewModel();
@ -187,7 +187,7 @@ namespace ViewModelTests
}
[TestMethod]
public void AddRow_ShouldAddEmptyImageSize_WhenSuccefull()
public void AddRow_ShouldAddEmptyImageSize_WhenSuccessful()
{
// arrange
ImageResizerViewModel viewModel = new ImageResizerViewModel();
@ -201,7 +201,7 @@ namespace ViewModelTests
}
[TestMethod]
public void DeleteImageSize_ShouldDeleteImageSize_WhenSuccefull()
public void DeleteImageSize_ShouldDeleteImageSize_WhenSuccessful()
{
// arrange
ImageResizerViewModel viewModel = new ImageResizerViewModel();