mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-04 10:16:24 +02:00
[Spellcheck]Refactor/review entries into different files (#29832)
* remove files * add dictionaries * Create expect.txt * spelling corrections + move words * spelling updates * few more * import commit from bot * move names * undo FZ changed by VS
This commit is contained in:
@@ -289,7 +289,7 @@ namespace Hosts.ViewModels
|
||||
Entries.RefreshFilter();
|
||||
}
|
||||
|
||||
// Ping and duplicate should't trigger a file save
|
||||
// Ping and duplicate should not trigger a file save
|
||||
if (e.PropertyName == nameof(Entry.Ping)
|
||||
|| e.PropertyName == nameof(Entry.Pinging)
|
||||
|| e.PropertyName == nameof(Entry.Duplicate))
|
||||
|
||||
@@ -215,7 +215,7 @@
|
||||
</data>
|
||||
<data name="FancyZones" xml:space="preserve">
|
||||
<value>FancyZones</value>
|
||||
<comment>FancyZone is a product name, keep as is.</comment>
|
||||
<comment>FancyZones is a product name, keep as is.</comment>
|
||||
</data>
|
||||
<data name="Cant_Drag_Elevated" xml:space="preserve">
|
||||
<value>We've detected an application running with administrator privileges. This will prevent certain interactions with these applications.</value>
|
||||
@@ -243,19 +243,19 @@
|
||||
</data>
|
||||
<data name="FancyZones_Data_Error" xml:space="preserve">
|
||||
<value>FancyZones persisted data path not found. Please report the bug to</value>
|
||||
<comment>"Report bug to" will have a URL after. FancyZone is a product name, keep as is.</comment>
|
||||
<comment>"Report bug to" will have a URL after. FancyZones is a product name, keep as is.</comment>
|
||||
</data>
|
||||
<data name="FancyZones_Editor_Launch_Error" xml:space="preserve">
|
||||
<value>The FancyZones editor failed to start. Please report the bug to</value>
|
||||
<comment>"Report bug to" will have a URL after. FancyZone is a product name, keep as is.</comment>
|
||||
<comment>"Report bug to" will have a URL after. FancyZones is a product name, keep as is.</comment>
|
||||
</data>
|
||||
<data name="FancyZones_Settings_Load_Error" xml:space="preserve">
|
||||
<value>Failed to load the FancyZones settings. Default settings will be used.</value>
|
||||
<comment>FancyZone is a product name, keep as is.</comment>
|
||||
<comment>FancyZones is a product name, keep as is.</comment>
|
||||
</data>
|
||||
<data name="FancyZones_Settings_Save_Error" xml:space="preserve">
|
||||
<value>Failed to save the FancyZones settings. Please retry again later, if the problem persists report the bug to</value>
|
||||
<comment>"Report bug to" will have a URL after. FancyZone is a product name, keep as is.</comment>
|
||||
<comment>"Report bug to" will have a URL after. FancyZones is a product name, keep as is.</comment>
|
||||
</data>
|
||||
<data name="Setting_Description_QuickLayoutSwitch" xml:space="preserve">
|
||||
<value>Enable quick layout switch</value>
|
||||
|
||||
@@ -71,7 +71,7 @@ namespace KBMEditor
|
||||
winrt::Windows::Foundation::IInspectable currentSingleKeyUI;
|
||||
std::mutex currentSingleKeyUI_mutex;
|
||||
|
||||
// Stores the UI element which is to be updated based on the shortcut entered (each stackpanel represents a row of keys)
|
||||
// Stores the UI element which is to be updated based on the shortcut entered (each StackPanel represents a row of keys)
|
||||
winrt::Windows::Foundation::IInspectable currentShortcutUI1;
|
||||
winrt::Windows::Foundation::IInspectable currentShortcutUI2;
|
||||
std::mutex currentShortcutUI_mutex;
|
||||
|
||||
@@ -28,7 +28,7 @@ namespace Wox.Infrastructure.Storage
|
||||
}
|
||||
|
||||
// To compare the version numbers
|
||||
public static bool Lessthan(string version1, string version2)
|
||||
public static bool LessThan(string version1, string version2)
|
||||
{
|
||||
string version = "v";
|
||||
string period = ".";
|
||||
@@ -118,7 +118,7 @@ namespace Wox.Infrastructure.Storage
|
||||
|
||||
// If the previous version is below a set threshold, then we want to delete the file
|
||||
// However, we do not want to delete the cache if the same version of powerToys is being launched
|
||||
if (Lessthan(previousVersion, currentPowerToysVersion))
|
||||
if (LessThan(previousVersion, currentPowerToysVersion))
|
||||
{
|
||||
ClearCache = true;
|
||||
}
|
||||
|
||||
@@ -306,7 +306,7 @@ namespace PowerRenameManagerTests
|
||||
RenameHelper(renamePairs, ARRAYSIZE(renamePairs), L"foo", L"bar$YYYY-$MM-$DD-$hh-$mm-$ss-$fff", SYSTEMTIME{ 2020, 7, 3, 22, 15, 6, 42, 453 }, DEFAULT_FLAGS);
|
||||
}
|
||||
|
||||
TEST_METHOD (VerifyFileAttributesMonthandDayNames)
|
||||
TEST_METHOD (VerifyFileAttributesMonthAndDayNames)
|
||||
{
|
||||
std::locale::global(std::locale(""));
|
||||
SYSTEMTIME fileTime = { 2020, 1, 3, 1, 15, 6, 42, 453 };
|
||||
|
||||
@@ -133,7 +133,7 @@ TEST_METHOD (VerifyFileAttributesPadding)
|
||||
}
|
||||
}
|
||||
|
||||
TEST_METHOD (VerifyFileAttributesMonthandDayNames)
|
||||
TEST_METHOD (VerifyFileAttributesMonthAndDayNames)
|
||||
{
|
||||
CComPtr<IPowerRenameRegEx> renameRegEx;
|
||||
Assert::IsTrue(CPowerRenameRegEx::s_CreateInstance(&renameRegEx) == S_OK);
|
||||
|
||||
@@ -28,6 +28,6 @@
|
||||
return result; \
|
||||
}
|
||||
|
||||
#define DECLAR_DLL_PROVIDER_END \
|
||||
#define DECLARE_DLL_PROVIDER_END \
|
||||
} \
|
||||
;
|
||||
|
||||
@@ -7,8 +7,8 @@
|
||||
|
||||
DECLARE_DLL_PROVIDER_BEGIN(mfplat)
|
||||
DECLARE_DLL_FUNCTION(MFCreateAttributes)
|
||||
DECLAR_DLL_PROVIDER_END
|
||||
DECLARE_DLL_PROVIDER_END
|
||||
|
||||
DECLARE_DLL_PROVIDER_BEGIN(mf)
|
||||
DECLARE_DLL_FUNCTION(MFEnumDeviceSources)
|
||||
DECLAR_DLL_PROVIDER_END
|
||||
DECLARE_DLL_PROVIDER_END
|
||||
|
||||
@@ -1616,7 +1616,7 @@ Made with 💗 by Microsoft and the PowerToys community.</value>
|
||||
</data>
|
||||
<data name="FancyZones_Editor_GroupSettings.Header" xml:space="preserve">
|
||||
<value>Editor</value>
|
||||
<comment>refers to the FancyZone editor</comment>
|
||||
<comment>refers to the FancyZones editor</comment>
|
||||
</data>
|
||||
<data name="FancyZones_WindowBehavior_GroupSettings.Header" xml:space="preserve">
|
||||
<value>Window behavior</value>
|
||||
|
||||
Reference in New Issue
Block a user