repo_name
stringlengths
8
38
pr_number
int64
3
47.1k
pr_title
stringlengths
8
175
pr_description
stringlengths
2
19.8k
author
null
date_created
stringlengths
25
25
date_merged
stringlengths
25
25
filepath
stringlengths
6
136
before_content
stringlengths
54
884k
after_content
stringlengths
56
884k
pr_author
stringlengths
3
21
previous_commit
stringlengths
40
40
pr_commit
stringlengths
40
40
comment
stringlengths
2
25.4k
comment_author
stringlengths
3
29
__index_level_0__
int64
0
5.1k
microsoft/PowerToys
29,075
[ColorPicker] will now end user session on right click.
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [x] **Closes:** #22982 - [x] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected - [ ] **Tests:** Added/updated and all pass - [ ] **Localization:** All end user facing strings can be localized - [ ] **Dev docs:** Added/updated - [ ] **New binaries:** Added on the required places - [ ] [JSON for signing](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ESRPSigning_core.json) for new binaries - [ ] [WXS for installer](https://github.com/microsoft/PowerToys/blob/main/installer/PowerToysSetup/Product.wxs) for new binaries and localization folder - [ ] [YML for CI pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ci/templates/build-powertoys-steps.yml) for new test projects - [ ] [YML for signed pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/release.yml) - [ ] **Documentation updated:** If checked, please file a pull request on [our docs repo](https://github.com/MicrosoftDocs/windows-uwp/tree/docs/hub/powertoys) and link it here: #xxx <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed
null
2023-10-07 01:47:38+00:00
2023-10-19 14:01:59+00:00
src/modules/colorPicker/ColorPickerUI/Mouse/IMouseInfoProvider.cs
// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using System.Drawing; namespace ColorPicker.Mouse { public interface IMouseInfoProvider { event EventHandler<Color> MouseColorChanged; event EventHandler<System.Windows.Point> MousePositionChanged; // position and bool indicating zoom in or zoom out event EventHandler<Tuple<System.Windows.Point, bool>> OnMouseWheel; event MouseUpEventHandler OnMouseDown; System.Windows.Point CurrentPosition { get; } Color CurrentColor { get; } } }
// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using System.Drawing; namespace ColorPicker.Mouse { public interface IMouseInfoProvider { event EventHandler<Color> MouseColorChanged; event EventHandler<System.Windows.Point> MousePositionChanged; // position and bool indicating zoom in or zoom out event EventHandler<Tuple<System.Windows.Point, bool>> OnMouseWheel; event MouseUpEventHandler OnMouseDown; event SecondaryMouseUpEventHandler OnSecondaryMouseUp; System.Windows.Point CurrentPosition { get; } Color CurrentColor { get; } } }
fredso90
e63dbe00b6b331613d052d6fb8e972952bbff1d6
3c10542c4cde49baf9013f1de0b9fc53caf0345e
while the hook is abbreviated and is RMouse, we should pivot the methods and properties in code to be maybe be more aligned with maybe either settings or something. Secondary would be preferable as that is what is actually in settings. if someone switches buttons in settings, i'd hope this would just flip accordingly.
crutkas
336
microsoft/PowerToys
29,075
[ColorPicker] will now end user session on right click.
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [x] **Closes:** #22982 - [x] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected - [ ] **Tests:** Added/updated and all pass - [ ] **Localization:** All end user facing strings can be localized - [ ] **Dev docs:** Added/updated - [ ] **New binaries:** Added on the required places - [ ] [JSON for signing](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ESRPSigning_core.json) for new binaries - [ ] [WXS for installer](https://github.com/microsoft/PowerToys/blob/main/installer/PowerToysSetup/Product.wxs) for new binaries and localization folder - [ ] [YML for CI pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ci/templates/build-powertoys-steps.yml) for new test projects - [ ] [YML for signed pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/release.yml) - [ ] **Documentation updated:** If checked, please file a pull request on [our docs repo](https://github.com/MicrosoftDocs/windows-uwp/tree/docs/hub/powertoys) and link it here: #xxx <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed
null
2023-10-07 01:47:38+00:00
2023-10-19 14:01:59+00:00
src/modules/colorPicker/ColorPickerUI/Mouse/IMouseInfoProvider.cs
// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using System.Drawing; namespace ColorPicker.Mouse { public interface IMouseInfoProvider { event EventHandler<Color> MouseColorChanged; event EventHandler<System.Windows.Point> MousePositionChanged; // position and bool indicating zoom in or zoom out event EventHandler<Tuple<System.Windows.Point, bool>> OnMouseWheel; event MouseUpEventHandler OnMouseDown; System.Windows.Point CurrentPosition { get; } Color CurrentColor { get; } } }
// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using System.Drawing; namespace ColorPicker.Mouse { public interface IMouseInfoProvider { event EventHandler<Color> MouseColorChanged; event EventHandler<System.Windows.Point> MousePositionChanged; // position and bool indicating zoom in or zoom out event EventHandler<Tuple<System.Windows.Point, bool>> OnMouseWheel; event MouseUpEventHandler OnMouseDown; event SecondaryMouseUpEventHandler OnSecondaryMouseUp; System.Windows.Point CurrentPosition { get; } Color CurrentColor { get; } } }
fredso90
e63dbe00b6b331613d052d6fb8e972952bbff1d6
3c10542c4cde49baf9013f1de0b9fc53caf0345e
So, I should just swap "R" for "Secondary" everywhere? I'm sorry if I ask annoying questions. This is my first ever Open Source PR and I want to make sure I get it right.
fredso90
337
microsoft/PowerToys
29,028
Adds a link to the OOBE What's New Section in the ShellPage Navigation
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request Adds an "About this App" in the ShellPage that redirects to the What's New section of the OOBE Page. Links Issue 17611 <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [ ] **Closes:** #17611 - [ ] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected - [ ] **Tests:** Added/updated and all pass - [ ] **Localization:** All end user facing strings can be localized - [ ] **Dev docs:** Added/updated - [ ] **New binaries:** Added on the required places - [ ] [JSON for signing](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ESRPSigning_core.json) for new binaries - [ ] [WXS for installer](https://github.com/microsoft/PowerToys/blob/main/installer/PowerToysSetup/Product.wxs) for new binaries and localization folder - [ ] [YML for CI pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ci/templates/build-powertoys-steps.yml) for new test projects - [ ] [YML for signed pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/release.yml) - [ ] **Documentation updated:** If checked, please file a pull request on [our docs repo](https://github.com/MicrosoftDocs/windows-uwp/tree/docs/hub/powertoys) and link it here: #xxx <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed
null
2023-10-05 01:38:43+00:00
2023-11-21 19:19:12+00:00
src/settings-ui/Settings.UI/SettingsXAML/OobeWindow.xaml.cs
// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using interop; using ManagedCommon; using Microsoft.PowerToys.Settings.UI.Helpers; using Microsoft.PowerToys.Settings.UI.OOBE.Enums; using Microsoft.PowerToys.Settings.UI.OOBE.Views; using Microsoft.UI; using Microsoft.UI.Windowing; using Microsoft.UI.Xaml; using Windows.Graphics; using WinUIEx; using WinUIEx.Messaging; namespace Microsoft.PowerToys.Settings.UI { /// <summary> /// An empty window that can be used on its own or navigated to within a Frame. /// </summary> public sealed partial class OobeWindow : WindowEx { private PowerToysModules initialModule; private const int ExpectedWidth = 1100; private const int ExpectedHeight = 700; private const int DefaultDPI = 96; private int _currentDPI; private WindowId _windowId; private IntPtr _hWnd; private AppWindow _appWindow; public OobeWindow(PowerToysModules initialModule, bool isDark) { this.InitializeComponent(); // Set window icon _hWnd = WinRT.Interop.WindowNative.GetWindowHandle(this); _windowId = Win32Interop.GetWindowIdFromWindow(_hWnd); _appWindow = AppWindow.GetFromWindowId(_windowId); _appWindow.SetIcon("Assets\\Settings\\icon.ico"); // Passed by parameter, as it needs to be evaluated ASAP, otherwise there is a white flash if (isDark) { ThemeHelpers.SetImmersiveDarkMode(_hWnd, isDark); } SetTheme(isDark); OverlappedPresenter presenter = _appWindow.Presenter as OverlappedPresenter; presenter.IsMinimizable = false; presenter.IsMaximizable = false; var dpi = NativeMethods.GetDpiForWindow(_hWnd); _currentDPI = dpi; float scalingFactor = (float)dpi / DefaultDPI; int width = (int)(ExpectedWidth * scalingFactor); int height = (int)(ExpectedHeight * scalingFactor); SizeInt32 size; size.Width = width; size.Height = height; _appWindow.Resize(size); this.initialModule = initialModule; var msgMonitor = new WindowMessageMonitor(this); msgMonitor.WindowMessageReceived += (_, e) => { const int WM_NCLBUTTONDBLCLK = 0x00A3; if (e.Message.MessageId == WM_NCLBUTTONDBLCLK) { // Disable double click on title bar to maximize window e.Result = 0; e.Handled = true; } }; this.SizeChanged += OobeWindow_SizeChanged; var loader = Helpers.ResourceLoaderInstance.ResourceLoader; Title = loader.GetString("OobeWindow_Title"); if (shellPage != null) { shellPage.NavigateToModule(this.initialModule); } OobeShellPage.SetRunSharedEventCallback(() => { return Constants.PowerLauncherSharedEvent(); }); OobeShellPage.SetColorPickerSharedEventCallback(() => { return Constants.ShowColorPickerSharedEvent(); }); OobeShellPage.SetOpenMainWindowCallback((Type type) => { App.OpenSettingsWindow(type); }); } private void OobeWindow_SizeChanged(object sender, WindowSizeChangedEventArgs args) { var dpi = NativeMethods.GetDpiForWindow(_hWnd); if (_currentDPI != dpi) { // Reacting to a DPI change. Should not cause a resize -> sizeChanged loop. _currentDPI = dpi; float scalingFactor = (float)dpi / DefaultDPI; int width = (int)(ExpectedWidth * scalingFactor); int height = (int)(ExpectedHeight * scalingFactor); SizeInt32 size; size.Width = width; size.Height = height; _appWindow.Resize(size); } } private void Window_Closed(object sender, WindowEventArgs args) { App.ClearOobeWindow(); var mainWindow = App.GetSettingsWindow(); if (mainWindow != null) { mainWindow.CloseHiddenWindow(); } } public void SetTheme(bool isDark) { shellPage.RequestedTheme = isDark ? ElementTheme.Dark : ElementTheme.Light; } } }
// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using interop; using ManagedCommon; using Microsoft.PowerToys.Settings.UI.Helpers; using Microsoft.PowerToys.Settings.UI.OOBE.Enums; using Microsoft.PowerToys.Settings.UI.OOBE.Views; using Microsoft.UI; using Microsoft.UI.Windowing; using Microsoft.UI.Xaml; using Windows.Graphics; using WinUIEx; using WinUIEx.Messaging; namespace Microsoft.PowerToys.Settings.UI { /// <summary> /// An empty window that can be used on its own or navigated to within a Frame. /// </summary> public sealed partial class OobeWindow : WindowEx { private PowerToysModules initialModule; private const int ExpectedWidth = 1100; private const int ExpectedHeight = 700; private const int DefaultDPI = 96; private int _currentDPI; private WindowId _windowId; private IntPtr _hWnd; private AppWindow _appWindow; public OobeWindow(PowerToysModules initialModule, bool isDark) { this.InitializeComponent(); // Set window icon _hWnd = WinRT.Interop.WindowNative.GetWindowHandle(this); _windowId = Win32Interop.GetWindowIdFromWindow(_hWnd); _appWindow = AppWindow.GetFromWindowId(_windowId); _appWindow.SetIcon("Assets\\Settings\\icon.ico"); // Passed by parameter, as it needs to be evaluated ASAP, otherwise there is a white flash if (isDark) { ThemeHelpers.SetImmersiveDarkMode(_hWnd, isDark); } SetTheme(isDark); OverlappedPresenter presenter = _appWindow.Presenter as OverlappedPresenter; presenter.IsMinimizable = false; presenter.IsMaximizable = false; var dpi = NativeMethods.GetDpiForWindow(_hWnd); _currentDPI = dpi; float scalingFactor = (float)dpi / DefaultDPI; int width = (int)(ExpectedWidth * scalingFactor); int height = (int)(ExpectedHeight * scalingFactor); SizeInt32 size; size.Width = width; size.Height = height; _appWindow.Resize(size); this.initialModule = initialModule; var msgMonitor = new WindowMessageMonitor(this); msgMonitor.WindowMessageReceived += (_, e) => { const int WM_NCLBUTTONDBLCLK = 0x00A3; if (e.Message.MessageId == WM_NCLBUTTONDBLCLK) { // Disable double click on title bar to maximize window e.Result = 0; e.Handled = true; } }; this.SizeChanged += OobeWindow_SizeChanged; var loader = Helpers.ResourceLoaderInstance.ResourceLoader; Title = loader.GetString("OobeWindow_Title"); if (shellPage != null) { shellPage.NavigateToModule(this.initialModule); } OobeShellPage.SetRunSharedEventCallback(() => { return Constants.PowerLauncherSharedEvent(); }); OobeShellPage.SetColorPickerSharedEventCallback(() => { return Constants.ShowColorPickerSharedEvent(); }); OobeShellPage.SetOpenMainWindowCallback((Type type) => { App.OpenSettingsWindow(type); }); } public void SetAppWindow(PowerToysModules module) { if (shellPage != null) { shellPage.NavigateToModule(module); } } private void OobeWindow_SizeChanged(object sender, WindowSizeChangedEventArgs args) { var dpi = NativeMethods.GetDpiForWindow(_hWnd); if (_currentDPI != dpi) { // Reacting to a DPI change. Should not cause a resize -> sizeChanged loop. _currentDPI = dpi; float scalingFactor = (float)dpi / DefaultDPI; int width = (int)(ExpectedWidth * scalingFactor); int height = (int)(ExpectedHeight * scalingFactor); SizeInt32 size; size.Width = width; size.Height = height; _appWindow.Resize(size); } } private void Window_Closed(object sender, WindowEventArgs args) { App.ClearOobeWindow(); var mainWindow = App.GetSettingsWindow(); if (mainWindow != null) { mainWindow.CloseHiddenWindow(); } } public void SetTheme(bool isDark) { shellPage.RequestedTheme = isDark ? ElementTheme.Dark : ElementTheme.Light; } } }
iakrayna
949b9a61856e340a4367be54dc405b4d3574f280
1a8007ca0a5d420f6b6f9c832f4da266da86ca76
Shouldn't this be `module`, or this method parameter is redundant. ```suggestion shellPage.NavigateToModule(module); ```
jerone
338
microsoft/PowerToys
29,028
Adds a link to the OOBE What's New Section in the ShellPage Navigation
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request Adds an "About this App" in the ShellPage that redirects to the What's New section of the OOBE Page. Links Issue 17611 <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [ ] **Closes:** #17611 - [ ] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected - [ ] **Tests:** Added/updated and all pass - [ ] **Localization:** All end user facing strings can be localized - [ ] **Dev docs:** Added/updated - [ ] **New binaries:** Added on the required places - [ ] [JSON for signing](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ESRPSigning_core.json) for new binaries - [ ] [WXS for installer](https://github.com/microsoft/PowerToys/blob/main/installer/PowerToysSetup/Product.wxs) for new binaries and localization folder - [ ] [YML for CI pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ci/templates/build-powertoys-steps.yml) for new test projects - [ ] [YML for signed pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/release.yml) - [ ] **Documentation updated:** If checked, please file a pull request on [our docs repo](https://github.com/MicrosoftDocs/windows-uwp/tree/docs/hub/powertoys) and link it here: #xxx <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed
null
2023-10-05 01:38:43+00:00
2023-11-21 19:19:12+00:00
src/settings-ui/Settings.UI/SettingsXAML/OobeWindow.xaml.cs
// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using interop; using ManagedCommon; using Microsoft.PowerToys.Settings.UI.Helpers; using Microsoft.PowerToys.Settings.UI.OOBE.Enums; using Microsoft.PowerToys.Settings.UI.OOBE.Views; using Microsoft.UI; using Microsoft.UI.Windowing; using Microsoft.UI.Xaml; using Windows.Graphics; using WinUIEx; using WinUIEx.Messaging; namespace Microsoft.PowerToys.Settings.UI { /// <summary> /// An empty window that can be used on its own or navigated to within a Frame. /// </summary> public sealed partial class OobeWindow : WindowEx { private PowerToysModules initialModule; private const int ExpectedWidth = 1100; private const int ExpectedHeight = 700; private const int DefaultDPI = 96; private int _currentDPI; private WindowId _windowId; private IntPtr _hWnd; private AppWindow _appWindow; public OobeWindow(PowerToysModules initialModule, bool isDark) { this.InitializeComponent(); // Set window icon _hWnd = WinRT.Interop.WindowNative.GetWindowHandle(this); _windowId = Win32Interop.GetWindowIdFromWindow(_hWnd); _appWindow = AppWindow.GetFromWindowId(_windowId); _appWindow.SetIcon("Assets\\Settings\\icon.ico"); // Passed by parameter, as it needs to be evaluated ASAP, otherwise there is a white flash if (isDark) { ThemeHelpers.SetImmersiveDarkMode(_hWnd, isDark); } SetTheme(isDark); OverlappedPresenter presenter = _appWindow.Presenter as OverlappedPresenter; presenter.IsMinimizable = false; presenter.IsMaximizable = false; var dpi = NativeMethods.GetDpiForWindow(_hWnd); _currentDPI = dpi; float scalingFactor = (float)dpi / DefaultDPI; int width = (int)(ExpectedWidth * scalingFactor); int height = (int)(ExpectedHeight * scalingFactor); SizeInt32 size; size.Width = width; size.Height = height; _appWindow.Resize(size); this.initialModule = initialModule; var msgMonitor = new WindowMessageMonitor(this); msgMonitor.WindowMessageReceived += (_, e) => { const int WM_NCLBUTTONDBLCLK = 0x00A3; if (e.Message.MessageId == WM_NCLBUTTONDBLCLK) { // Disable double click on title bar to maximize window e.Result = 0; e.Handled = true; } }; this.SizeChanged += OobeWindow_SizeChanged; var loader = Helpers.ResourceLoaderInstance.ResourceLoader; Title = loader.GetString("OobeWindow_Title"); if (shellPage != null) { shellPage.NavigateToModule(this.initialModule); } OobeShellPage.SetRunSharedEventCallback(() => { return Constants.PowerLauncherSharedEvent(); }); OobeShellPage.SetColorPickerSharedEventCallback(() => { return Constants.ShowColorPickerSharedEvent(); }); OobeShellPage.SetOpenMainWindowCallback((Type type) => { App.OpenSettingsWindow(type); }); } private void OobeWindow_SizeChanged(object sender, WindowSizeChangedEventArgs args) { var dpi = NativeMethods.GetDpiForWindow(_hWnd); if (_currentDPI != dpi) { // Reacting to a DPI change. Should not cause a resize -> sizeChanged loop. _currentDPI = dpi; float scalingFactor = (float)dpi / DefaultDPI; int width = (int)(ExpectedWidth * scalingFactor); int height = (int)(ExpectedHeight * scalingFactor); SizeInt32 size; size.Width = width; size.Height = height; _appWindow.Resize(size); } } private void Window_Closed(object sender, WindowEventArgs args) { App.ClearOobeWindow(); var mainWindow = App.GetSettingsWindow(); if (mainWindow != null) { mainWindow.CloseHiddenWindow(); } } public void SetTheme(bool isDark) { shellPage.RequestedTheme = isDark ? ElementTheme.Dark : ElementTheme.Light; } } }
// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using interop; using ManagedCommon; using Microsoft.PowerToys.Settings.UI.Helpers; using Microsoft.PowerToys.Settings.UI.OOBE.Enums; using Microsoft.PowerToys.Settings.UI.OOBE.Views; using Microsoft.UI; using Microsoft.UI.Windowing; using Microsoft.UI.Xaml; using Windows.Graphics; using WinUIEx; using WinUIEx.Messaging; namespace Microsoft.PowerToys.Settings.UI { /// <summary> /// An empty window that can be used on its own or navigated to within a Frame. /// </summary> public sealed partial class OobeWindow : WindowEx { private PowerToysModules initialModule; private const int ExpectedWidth = 1100; private const int ExpectedHeight = 700; private const int DefaultDPI = 96; private int _currentDPI; private WindowId _windowId; private IntPtr _hWnd; private AppWindow _appWindow; public OobeWindow(PowerToysModules initialModule, bool isDark) { this.InitializeComponent(); // Set window icon _hWnd = WinRT.Interop.WindowNative.GetWindowHandle(this); _windowId = Win32Interop.GetWindowIdFromWindow(_hWnd); _appWindow = AppWindow.GetFromWindowId(_windowId); _appWindow.SetIcon("Assets\\Settings\\icon.ico"); // Passed by parameter, as it needs to be evaluated ASAP, otherwise there is a white flash if (isDark) { ThemeHelpers.SetImmersiveDarkMode(_hWnd, isDark); } SetTheme(isDark); OverlappedPresenter presenter = _appWindow.Presenter as OverlappedPresenter; presenter.IsMinimizable = false; presenter.IsMaximizable = false; var dpi = NativeMethods.GetDpiForWindow(_hWnd); _currentDPI = dpi; float scalingFactor = (float)dpi / DefaultDPI; int width = (int)(ExpectedWidth * scalingFactor); int height = (int)(ExpectedHeight * scalingFactor); SizeInt32 size; size.Width = width; size.Height = height; _appWindow.Resize(size); this.initialModule = initialModule; var msgMonitor = new WindowMessageMonitor(this); msgMonitor.WindowMessageReceived += (_, e) => { const int WM_NCLBUTTONDBLCLK = 0x00A3; if (e.Message.MessageId == WM_NCLBUTTONDBLCLK) { // Disable double click on title bar to maximize window e.Result = 0; e.Handled = true; } }; this.SizeChanged += OobeWindow_SizeChanged; var loader = Helpers.ResourceLoaderInstance.ResourceLoader; Title = loader.GetString("OobeWindow_Title"); if (shellPage != null) { shellPage.NavigateToModule(this.initialModule); } OobeShellPage.SetRunSharedEventCallback(() => { return Constants.PowerLauncherSharedEvent(); }); OobeShellPage.SetColorPickerSharedEventCallback(() => { return Constants.ShowColorPickerSharedEvent(); }); OobeShellPage.SetOpenMainWindowCallback((Type type) => { App.OpenSettingsWindow(type); }); } public void SetAppWindow(PowerToysModules module) { if (shellPage != null) { shellPage.NavigateToModule(module); } } private void OobeWindow_SizeChanged(object sender, WindowSizeChangedEventArgs args) { var dpi = NativeMethods.GetDpiForWindow(_hWnd); if (_currentDPI != dpi) { // Reacting to a DPI change. Should not cause a resize -> sizeChanged loop. _currentDPI = dpi; float scalingFactor = (float)dpi / DefaultDPI; int width = (int)(ExpectedWidth * scalingFactor); int height = (int)(ExpectedHeight * scalingFactor); SizeInt32 size; size.Width = width; size.Height = height; _appWindow.Resize(size); } } private void Window_Closed(object sender, WindowEventArgs args) { App.ClearOobeWindow(); var mainWindow = App.GetSettingsWindow(); if (mainWindow != null) { mainWindow.CloseHiddenWindow(); } } public void SetTheme(bool isDark) { shellPage.RequestedTheme = isDark ? ElementTheme.Dark : ElementTheme.Light; } } }
iakrayna
949b9a61856e340a4367be54dc405b4d3574f280
1a8007ca0a5d420f6b6f9c832f4da266da86ca76
Good catch - that's what I get for copy/paste mindlessly. Fixed.
iakrayna
339
microsoft/PowerToys
29,028
Adds a link to the OOBE What's New Section in the ShellPage Navigation
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request Adds an "About this App" in the ShellPage that redirects to the What's New section of the OOBE Page. Links Issue 17611 <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [ ] **Closes:** #17611 - [ ] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected - [ ] **Tests:** Added/updated and all pass - [ ] **Localization:** All end user facing strings can be localized - [ ] **Dev docs:** Added/updated - [ ] **New binaries:** Added on the required places - [ ] [JSON for signing](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ESRPSigning_core.json) for new binaries - [ ] [WXS for installer](https://github.com/microsoft/PowerToys/blob/main/installer/PowerToysSetup/Product.wxs) for new binaries and localization folder - [ ] [YML for CI pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ci/templates/build-powertoys-steps.yml) for new test projects - [ ] [YML for signed pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/release.yml) - [ ] **Documentation updated:** If checked, please file a pull request on [our docs repo](https://github.com/MicrosoftDocs/windows-uwp/tree/docs/hub/powertoys) and link it here: #xxx <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed
null
2023-10-05 01:38:43+00:00
2023-11-21 19:19:12+00:00
src/settings-ui/Settings.UI/SettingsXAML/Views/ShellPage.xaml
<UserControl x:Class="Microsoft.PowerToys.Settings.UI.Views.ShellPage" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:animations="using:CommunityToolkit.WinUI.Animations" xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:helpers="using:Microsoft.PowerToys.Settings.UI.Helpers" xmlns:i="using:Microsoft.Xaml.Interactivity" xmlns:ic="using:Microsoft.Xaml.Interactions.Core" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:ui="using:CommunityToolkit.WinUI" xmlns:views="using:Microsoft.PowerToys.Settings.UI.Views" HighContrastAdjustment="None" Loaded="ShellPage_Loaded" mc:Ignorable="d"> <i:Interaction.Behaviors> <ic:EventTriggerBehavior EventName="Loaded"> <ic:InvokeCommandAction Command="{x:Bind ViewModel.LoadedCommand}" /> </ic:EventTriggerBehavior> </i:Interaction.Behaviors> <Grid x:Name="RootGrid"> <Grid.RowDefinitions> <RowDefinition Height="48" /> <RowDefinition Height="*" /> </Grid.RowDefinitions> <Button x:Name="PaneToggleBtn" Width="48" HorizontalAlignment="Left" VerticalAlignment="Center" Click="PaneToggleBtn_Click" Style="{StaticResource PaneToggleButtonStyle}" /> <Grid x:Name="AppTitleBar" Height="{Binding ElementName=navigationView, Path=CompactPaneLength}" Margin="48,0,0,0" VerticalAlignment="Top" IsHitTestVisible="True"> <animations:Implicit.Animations> <animations:OffsetAnimation Duration="0:0:0.3" /> </animations:Implicit.Animations> <StackPanel Orientation="Horizontal"> <Image Width="16" Height="16" HorizontalAlignment="Left" Source="/Assets/Settings/icon.ico" /> <TextBlock x:Name="AppTitleBarText" Margin="12,0,0,0" VerticalAlignment="Center" Style="{StaticResource CaptionTextBlockStyle}" TextWrapping="NoWrap" /> <TextBlock x:Name="DebugMessage" Margin="8,0,0,0" VerticalAlignment="Center" Foreground="{ThemeResource TextFillColorSecondaryBrush}" Style="{StaticResource CaptionTextBlockStyle}" Text="Debug" TextWrapping="NoWrap" Visibility="Collapsed" /> </StackPanel> </Grid> <NavigationView x:Name="navigationView" Grid.Row="1" Canvas.ZIndex="0" CompactModeThresholdWidth="1007" DisplayModeChanged="NavigationView_DisplayModeChanged" ExpandedModeThresholdWidth="1007" IsBackButtonVisible="Collapsed" IsBackEnabled="{x:Bind ViewModel.IsBackEnabled, Mode=OneWay}" IsPaneToggleButtonVisible="False" IsSettingsVisible="False" IsTitleBarAutoPaddingEnabled="False" PaneClosed="NavigationView_PaneClosed" PaneOpened="NavigationView_PaneOpened" SelectedItem="{x:Bind ViewModel.Selected, Mode=OneWay}" SelectionChanged="NavigationView_SelectionChanged"> <NavigationView.Resources> <SolidColorBrush x:Key="NavigationViewContentBackground" Color="Transparent" /> <SolidColorBrush x:Key="NavigationViewContentGridBorderBrush" Color="Transparent" /> </NavigationView.Resources> <NavigationView.MenuItems> <NavigationViewItem x:Uid="Shell_Dashboard" helpers:NavHelper.NavigateTo="views:DashboardPage" Icon="{ui:FontIcon Glyph=&#xE80F;}" /> <NavigationViewItem x:Uid="Shell_General" helpers:NavHelper.NavigateTo="views:GeneralPage" Icon="{ui:FontIcon Glyph=&#xE713;}" /> <NavigationViewItemSeparator /> <NavigationViewItem x:Uid="Shell_AlwaysOnTop" helpers:NavHelper.NavigateTo="views:AlwaysOnTopPage" Icon="{ui:BitmapIcon Source=/Assets/Settings/FluentIcons/FluentIconsAlwaysOnTop.png}" /> <NavigationViewItem x:Uid="Shell_Awake" helpers:NavHelper.NavigateTo="views:AwakePage" Icon="{ui:BitmapIcon Source=/Assets/Settings/FluentIcons/FluentIconsAwake.png}" /> <NavigationViewItem x:Uid="Shell_ColorPicker" helpers:NavHelper.NavigateTo="views:ColorPickerPage" Icon="{ui:BitmapIcon Source=/Assets/Settings/FluentIcons/FluentIconsColorPicker.png}" /> <NavigationViewItem x:Uid="Shell_CropAndLock" helpers:NavHelper.NavigateTo="views:CropAndLockPage" Icon="{ui:BitmapIcon Source=/Assets/Settings/FluentIcons/FluentIconsCropAndLock.png}" /> <NavigationViewItem x:Uid="Shell_EnvironmentVariables" helpers:NavHelper.NavigateTo="views:EnvironmentVariablesPage" Icon="{ui:BitmapIcon Source=/Assets/Settings/FluentIcons/FluentIconsEnvironmentVariables.png}" /> <NavigationViewItem x:Uid="Shell_FancyZones" helpers:NavHelper.NavigateTo="views:FancyZonesPage" Icon="{ui:BitmapIcon Source=/Assets/Settings/FluentIcons/FluentIconsFancyZones.png}" /> <NavigationViewItem x:Uid="Shell_FileLocksmith" helpers:NavHelper.NavigateTo="views:FileLocksmithPage" Icon="{ui:BitmapIcon Source=/Assets/Settings/FluentIcons/FluentIconsFileLocksmith.png}" /> <NavigationViewItem x:Uid="Shell_PowerPreview" helpers:NavHelper.NavigateTo="views:PowerPreviewPage" Icon="{ui:BitmapIcon Source=/Assets/Settings/FluentIcons/FluentIconsFileExplorerPreview.png}" /> <NavigationViewItem x:Uid="Shell_Hosts" helpers:NavHelper.NavigateTo="views:HostsPage" Icon="{ui:BitmapIcon Source=/Assets/Settings/FluentIcons/FluentIconsHosts.png}" /> <NavigationViewItem x:Uid="Shell_ImageResizer" helpers:NavHelper.NavigateTo="views:ImageResizerPage" Icon="{ui:BitmapIcon Source=/Assets/Settings/FluentIcons/FluentIconsImageResizer.png}" /> <NavigationViewItem x:Uid="Shell_KeyboardManager" helpers:NavHelper.NavigateTo="views:KeyboardManagerPage" Icon="{ui:BitmapIcon Source=/Assets/Settings/FluentIcons/FluentIconsKeyboardManager.png}" /> <NavigationViewItem x:Uid="Shell_MouseUtilities" helpers:NavHelper.NavigateTo="views:MouseUtilsPage" Icon="{ui:BitmapIcon Source=/Assets/Settings/FluentIcons/FluentIconsMouseUtils.png}" /> <NavigationViewItem x:Uid="Shell_MouseWithoutBorders" helpers:NavHelper.NavigateTo="views:MouseWithoutBordersPage" Icon="{ui:BitmapIcon Source=/Assets/Settings/FluentIcons/FluentIconsMouseWithoutBorders.png}" /> <NavigationViewItem x:Uid="Shell_PastePlain" helpers:NavHelper.NavigateTo="views:PastePlainPage" Icon="{ui:BitmapIcon Source=/Assets/Settings/FluentIcons/FluentIconsPastePlain.png}" /> <NavigationViewItem x:Uid="Shell_Peek" helpers:NavHelper.NavigateTo="views:PeekPage" Icon="{ui:BitmapIcon Source=/Assets/Settings/FluentIcons/FluentIconsPeek.png}" /> <NavigationViewItem x:Uid="Shell_PowerRename" helpers:NavHelper.NavigateTo="views:PowerRenamePage" Icon="{ui:BitmapIcon Source=/Assets/Settings/FluentIcons/FluentIconsPowerRename.png}" /> <NavigationViewItem x:Uid="Shell_PowerLauncher" helpers:NavHelper.NavigateTo="views:PowerLauncherPage" Icon="{ui:BitmapIcon Source=/Assets/Settings/FluentIcons/FluentIconsPowerToysRun.png}" /> <NavigationViewItem x:Uid="Shell_QuickAccent" helpers:NavHelper.NavigateTo="views:PowerAccentPage" Icon="{ui:BitmapIcon Source=/Assets/Settings/FluentIcons/FluentIconsPowerAccent.png}" /> <NavigationViewItem x:Uid="Shell_RegistryPreview" helpers:NavHelper.NavigateTo="views:RegistryPreviewPage" Icon="{ui:BitmapIcon Source=/Assets/Settings/FluentIcons/FluentIconsRegistryPreview.png}" /> <NavigationViewItem x:Uid="Shell_MeasureTool" helpers:NavHelper.NavigateTo="views:MeasureToolPage" Icon="{ui:BitmapIcon Source=/Assets/Settings/FluentIcons/FluentIconsScreenRuler.png}" /> <NavigationViewItem x:Uid="Shell_ShortcutGuide" helpers:NavHelper.NavigateTo="views:ShortcutGuidePage" Icon="{ui:BitmapIcon Source=/Assets/Settings/FluentIcons/FluentIconsShortcutGuide.png}" /> <NavigationViewItem x:Uid="Shell_TextExtractor" helpers:NavHelper.NavigateTo="views:PowerOcrPage" Icon="{ui:BitmapIcon Source=/Assets/Settings/FluentIcons/FluentIconsPowerOcr.png}" /> <NavigationViewItem x:Uid="Shell_VideoConference" helpers:NavHelper.NavigateTo="views:VideoConferencePage" Icon="{ui:BitmapIcon Source=/Assets/Settings/FluentIcons/FluentIconsVideoConferenceMute.png}" IsEnabled="{x:Bind ViewModel.IsVideoConferenceBuild, Mode=OneWay}" /> </NavigationView.MenuItems> <NavigationView.PaneFooter> <StackPanel Orientation="Vertical"> <NavigationViewItem x:Uid="OOBE_NavViewItem" Icon="{ui:FontIcon Glyph=&#xF133;}" Tapped="OOBEItem_Tapped" /> <NavigationViewItem x:Uid="Feedback_NavViewItem" Icon="{ui:FontIcon Glyph=&#xED15;}" Tapped="FeedbackItem_Tapped" /> </StackPanel> </NavigationView.PaneFooter> <i:Interaction.Behaviors> <ic:EventTriggerBehavior EventName="ItemInvoked"> <ic:InvokeCommandAction Command="{x:Bind ViewModel.ItemInvokedCommand}" /> </ic:EventTriggerBehavior> </i:Interaction.Behaviors> <Frame x:Name="shellFrame" /> </NavigationView> </Grid> </UserControl>
<UserControl x:Class="Microsoft.PowerToys.Settings.UI.Views.ShellPage" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:animations="using:CommunityToolkit.WinUI.Animations" xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:helpers="using:Microsoft.PowerToys.Settings.UI.Helpers" xmlns:i="using:Microsoft.Xaml.Interactivity" xmlns:ic="using:Microsoft.Xaml.Interactions.Core" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:ui="using:CommunityToolkit.WinUI" xmlns:views="using:Microsoft.PowerToys.Settings.UI.Views" HighContrastAdjustment="None" Loaded="ShellPage_Loaded" mc:Ignorable="d"> <i:Interaction.Behaviors> <ic:EventTriggerBehavior EventName="Loaded"> <ic:InvokeCommandAction Command="{x:Bind ViewModel.LoadedCommand}" /> </ic:EventTriggerBehavior> </i:Interaction.Behaviors> <Grid x:Name="RootGrid"> <Grid.RowDefinitions> <RowDefinition Height="48" /> <RowDefinition Height="*" /> </Grid.RowDefinitions> <Button x:Name="PaneToggleBtn" Width="48" HorizontalAlignment="Left" VerticalAlignment="Center" Click="PaneToggleBtn_Click" Style="{StaticResource PaneToggleButtonStyle}" /> <Grid x:Name="AppTitleBar" Height="{Binding ElementName=navigationView, Path=CompactPaneLength}" Margin="48,0,0,0" VerticalAlignment="Top" IsHitTestVisible="True"> <animations:Implicit.Animations> <animations:OffsetAnimation Duration="0:0:0.3" /> </animations:Implicit.Animations> <StackPanel Orientation="Horizontal"> <Image Width="16" Height="16" HorizontalAlignment="Left" Source="/Assets/Settings/icon.ico" /> <TextBlock x:Name="AppTitleBarText" Margin="12,0,0,0" VerticalAlignment="Center" Style="{StaticResource CaptionTextBlockStyle}" TextWrapping="NoWrap" /> <TextBlock x:Name="DebugMessage" Margin="8,0,0,0" VerticalAlignment="Center" Foreground="{ThemeResource TextFillColorSecondaryBrush}" Style="{StaticResource CaptionTextBlockStyle}" Text="Debug" TextWrapping="NoWrap" Visibility="Collapsed" /> </StackPanel> </Grid> <NavigationView x:Name="navigationView" Grid.Row="1" Canvas.ZIndex="0" CompactModeThresholdWidth="1007" DisplayModeChanged="NavigationView_DisplayModeChanged" ExpandedModeThresholdWidth="1007" IsBackButtonVisible="Collapsed" IsBackEnabled="{x:Bind ViewModel.IsBackEnabled, Mode=OneWay}" IsPaneToggleButtonVisible="False" IsSettingsVisible="False" IsTitleBarAutoPaddingEnabled="False" PaneClosed="NavigationView_PaneClosed" PaneOpened="NavigationView_PaneOpened" SelectedItem="{x:Bind ViewModel.Selected, Mode=OneWay}" SelectionChanged="NavigationView_SelectionChanged"> <NavigationView.Resources> <SolidColorBrush x:Key="NavigationViewContentBackground" Color="Transparent" /> <SolidColorBrush x:Key="NavigationViewContentGridBorderBrush" Color="Transparent" /> </NavigationView.Resources> <NavigationView.MenuItems> <NavigationViewItem x:Uid="Shell_Dashboard" helpers:NavHelper.NavigateTo="views:DashboardPage" Icon="{ui:FontIcon Glyph=&#xE80F;}" /> <NavigationViewItem x:Uid="Shell_General" helpers:NavHelper.NavigateTo="views:GeneralPage" Icon="{ui:FontIcon Glyph=&#xE713;}" /> <NavigationViewItemSeparator /> <NavigationViewItem x:Uid="Shell_AlwaysOnTop" helpers:NavHelper.NavigateTo="views:AlwaysOnTopPage" Icon="{ui:BitmapIcon Source=/Assets/Settings/FluentIcons/FluentIconsAlwaysOnTop.png}" /> <NavigationViewItem x:Uid="Shell_Awake" helpers:NavHelper.NavigateTo="views:AwakePage" Icon="{ui:BitmapIcon Source=/Assets/Settings/FluentIcons/FluentIconsAwake.png}" /> <NavigationViewItem x:Uid="Shell_ColorPicker" helpers:NavHelper.NavigateTo="views:ColorPickerPage" Icon="{ui:BitmapIcon Source=/Assets/Settings/FluentIcons/FluentIconsColorPicker.png}" /> <NavigationViewItem x:Uid="Shell_CropAndLock" helpers:NavHelper.NavigateTo="views:CropAndLockPage" Icon="{ui:BitmapIcon Source=/Assets/Settings/FluentIcons/FluentIconsCropAndLock.png}" /> <NavigationViewItem x:Uid="Shell_EnvironmentVariables" helpers:NavHelper.NavigateTo="views:EnvironmentVariablesPage" Icon="{ui:BitmapIcon Source=/Assets/Settings/FluentIcons/FluentIconsEnvironmentVariables.png}" /> <NavigationViewItem x:Uid="Shell_FancyZones" helpers:NavHelper.NavigateTo="views:FancyZonesPage" Icon="{ui:BitmapIcon Source=/Assets/Settings/FluentIcons/FluentIconsFancyZones.png}" /> <NavigationViewItem x:Uid="Shell_FileLocksmith" helpers:NavHelper.NavigateTo="views:FileLocksmithPage" Icon="{ui:BitmapIcon Source=/Assets/Settings/FluentIcons/FluentIconsFileLocksmith.png}" /> <NavigationViewItem x:Uid="Shell_PowerPreview" helpers:NavHelper.NavigateTo="views:PowerPreviewPage" Icon="{ui:BitmapIcon Source=/Assets/Settings/FluentIcons/FluentIconsFileExplorerPreview.png}" /> <NavigationViewItem x:Uid="Shell_Hosts" helpers:NavHelper.NavigateTo="views:HostsPage" Icon="{ui:BitmapIcon Source=/Assets/Settings/FluentIcons/FluentIconsHosts.png}" /> <NavigationViewItem x:Uid="Shell_ImageResizer" helpers:NavHelper.NavigateTo="views:ImageResizerPage" Icon="{ui:BitmapIcon Source=/Assets/Settings/FluentIcons/FluentIconsImageResizer.png}" /> <NavigationViewItem x:Uid="Shell_KeyboardManager" helpers:NavHelper.NavigateTo="views:KeyboardManagerPage" Icon="{ui:BitmapIcon Source=/Assets/Settings/FluentIcons/FluentIconsKeyboardManager.png}" /> <NavigationViewItem x:Uid="Shell_MouseUtilities" helpers:NavHelper.NavigateTo="views:MouseUtilsPage" Icon="{ui:BitmapIcon Source=/Assets/Settings/FluentIcons/FluentIconsMouseUtils.png}" /> <NavigationViewItem x:Uid="Shell_MouseWithoutBorders" helpers:NavHelper.NavigateTo="views:MouseWithoutBordersPage" Icon="{ui:BitmapIcon Source=/Assets/Settings/FluentIcons/FluentIconsMouseWithoutBorders.png}" /> <NavigationViewItem x:Uid="Shell_PastePlain" helpers:NavHelper.NavigateTo="views:PastePlainPage" Icon="{ui:BitmapIcon Source=/Assets/Settings/FluentIcons/FluentIconsPastePlain.png}" /> <NavigationViewItem x:Uid="Shell_Peek" helpers:NavHelper.NavigateTo="views:PeekPage" Icon="{ui:BitmapIcon Source=/Assets/Settings/FluentIcons/FluentIconsPeek.png}" /> <NavigationViewItem x:Uid="Shell_PowerRename" helpers:NavHelper.NavigateTo="views:PowerRenamePage" Icon="{ui:BitmapIcon Source=/Assets/Settings/FluentIcons/FluentIconsPowerRename.png}" /> <NavigationViewItem x:Uid="Shell_PowerLauncher" helpers:NavHelper.NavigateTo="views:PowerLauncherPage" Icon="{ui:BitmapIcon Source=/Assets/Settings/FluentIcons/FluentIconsPowerToysRun.png}" /> <NavigationViewItem x:Uid="Shell_QuickAccent" helpers:NavHelper.NavigateTo="views:PowerAccentPage" Icon="{ui:BitmapIcon Source=/Assets/Settings/FluentIcons/FluentIconsPowerAccent.png}" /> <NavigationViewItem x:Uid="Shell_RegistryPreview" helpers:NavHelper.NavigateTo="views:RegistryPreviewPage" Icon="{ui:BitmapIcon Source=/Assets/Settings/FluentIcons/FluentIconsRegistryPreview.png}" /> <NavigationViewItem x:Uid="Shell_MeasureTool" helpers:NavHelper.NavigateTo="views:MeasureToolPage" Icon="{ui:BitmapIcon Source=/Assets/Settings/FluentIcons/FluentIconsScreenRuler.png}" /> <NavigationViewItem x:Uid="Shell_ShortcutGuide" helpers:NavHelper.NavigateTo="views:ShortcutGuidePage" Icon="{ui:BitmapIcon Source=/Assets/Settings/FluentIcons/FluentIconsShortcutGuide.png}" /> <NavigationViewItem x:Uid="Shell_TextExtractor" helpers:NavHelper.NavigateTo="views:PowerOcrPage" Icon="{ui:BitmapIcon Source=/Assets/Settings/FluentIcons/FluentIconsPowerOcr.png}" /> <NavigationViewItem x:Uid="Shell_VideoConference" helpers:NavHelper.NavigateTo="views:VideoConferencePage" Icon="{ui:BitmapIcon Source=/Assets/Settings/FluentIcons/FluentIconsVideoConferenceMute.png}" IsEnabled="{x:Bind ViewModel.IsVideoConferenceBuild, Mode=OneWay}" /> </NavigationView.MenuItems> <NavigationView.PaneFooter> <StackPanel Orientation="Vertical"> <NavigationViewItem x:Uid="OOBE_NavViewItem" Icon="{ui:FontIcon Glyph=&#xF133;}" Tapped="OOBEItem_Tapped" /> <NavigationViewItem x:Uid="WhatIsNew_NavViewItem" Icon="{ui:FontIcon Glyph=&#xF133;}" Tapped="WhatIsNewItem_Tapped" /> <NavigationViewItem x:Uid="Feedback_NavViewItem" Icon="{ui:FontIcon Glyph=&#xED15;}" Tapped="FeedbackItem_Tapped" /> </StackPanel> </NavigationView.PaneFooter> <i:Interaction.Behaviors> <ic:EventTriggerBehavior EventName="ItemInvoked"> <ic:InvokeCommandAction Command="{x:Bind ViewModel.ItemInvokedCommand}" /> </ic:EventTriggerBehavior> </i:Interaction.Behaviors> <Frame x:Name="shellFrame" /> </NavigationView> </Grid> </UserControl>
iakrayna
949b9a61856e340a4367be54dc405b4d3574f280
1a8007ca0a5d420f6b6f9c832f4da266da86ca76
"WhatIsNewItem_Tapped"
crutkas
340
microsoft/PowerToys
29,028
Adds a link to the OOBE What's New Section in the ShellPage Navigation
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request Adds an "About this App" in the ShellPage that redirects to the What's New section of the OOBE Page. Links Issue 17611 <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [ ] **Closes:** #17611 - [ ] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected - [ ] **Tests:** Added/updated and all pass - [ ] **Localization:** All end user facing strings can be localized - [ ] **Dev docs:** Added/updated - [ ] **New binaries:** Added on the required places - [ ] [JSON for signing](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ESRPSigning_core.json) for new binaries - [ ] [WXS for installer](https://github.com/microsoft/PowerToys/blob/main/installer/PowerToysSetup/Product.wxs) for new binaries and localization folder - [ ] [YML for CI pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ci/templates/build-powertoys-steps.yml) for new test projects - [ ] [YML for signed pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/release.yml) - [ ] **Documentation updated:** If checked, please file a pull request on [our docs repo](https://github.com/MicrosoftDocs/windows-uwp/tree/docs/hub/powertoys) and link it here: #xxx <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed
null
2023-10-05 01:38:43+00:00
2023-11-21 19:19:12+00:00
src/settings-ui/Settings.UI/SettingsXAML/Views/ShellPage.xaml
<UserControl x:Class="Microsoft.PowerToys.Settings.UI.Views.ShellPage" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:animations="using:CommunityToolkit.WinUI.Animations" xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:helpers="using:Microsoft.PowerToys.Settings.UI.Helpers" xmlns:i="using:Microsoft.Xaml.Interactivity" xmlns:ic="using:Microsoft.Xaml.Interactions.Core" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:ui="using:CommunityToolkit.WinUI" xmlns:views="using:Microsoft.PowerToys.Settings.UI.Views" HighContrastAdjustment="None" Loaded="ShellPage_Loaded" mc:Ignorable="d"> <i:Interaction.Behaviors> <ic:EventTriggerBehavior EventName="Loaded"> <ic:InvokeCommandAction Command="{x:Bind ViewModel.LoadedCommand}" /> </ic:EventTriggerBehavior> </i:Interaction.Behaviors> <Grid x:Name="RootGrid"> <Grid.RowDefinitions> <RowDefinition Height="48" /> <RowDefinition Height="*" /> </Grid.RowDefinitions> <Button x:Name="PaneToggleBtn" Width="48" HorizontalAlignment="Left" VerticalAlignment="Center" Click="PaneToggleBtn_Click" Style="{StaticResource PaneToggleButtonStyle}" /> <Grid x:Name="AppTitleBar" Height="{Binding ElementName=navigationView, Path=CompactPaneLength}" Margin="48,0,0,0" VerticalAlignment="Top" IsHitTestVisible="True"> <animations:Implicit.Animations> <animations:OffsetAnimation Duration="0:0:0.3" /> </animations:Implicit.Animations> <StackPanel Orientation="Horizontal"> <Image Width="16" Height="16" HorizontalAlignment="Left" Source="/Assets/Settings/icon.ico" /> <TextBlock x:Name="AppTitleBarText" Margin="12,0,0,0" VerticalAlignment="Center" Style="{StaticResource CaptionTextBlockStyle}" TextWrapping="NoWrap" /> <TextBlock x:Name="DebugMessage" Margin="8,0,0,0" VerticalAlignment="Center" Foreground="{ThemeResource TextFillColorSecondaryBrush}" Style="{StaticResource CaptionTextBlockStyle}" Text="Debug" TextWrapping="NoWrap" Visibility="Collapsed" /> </StackPanel> </Grid> <NavigationView x:Name="navigationView" Grid.Row="1" Canvas.ZIndex="0" CompactModeThresholdWidth="1007" DisplayModeChanged="NavigationView_DisplayModeChanged" ExpandedModeThresholdWidth="1007" IsBackButtonVisible="Collapsed" IsBackEnabled="{x:Bind ViewModel.IsBackEnabled, Mode=OneWay}" IsPaneToggleButtonVisible="False" IsSettingsVisible="False" IsTitleBarAutoPaddingEnabled="False" PaneClosed="NavigationView_PaneClosed" PaneOpened="NavigationView_PaneOpened" SelectedItem="{x:Bind ViewModel.Selected, Mode=OneWay}" SelectionChanged="NavigationView_SelectionChanged"> <NavigationView.Resources> <SolidColorBrush x:Key="NavigationViewContentBackground" Color="Transparent" /> <SolidColorBrush x:Key="NavigationViewContentGridBorderBrush" Color="Transparent" /> </NavigationView.Resources> <NavigationView.MenuItems> <NavigationViewItem x:Uid="Shell_Dashboard" helpers:NavHelper.NavigateTo="views:DashboardPage" Icon="{ui:FontIcon Glyph=&#xE80F;}" /> <NavigationViewItem x:Uid="Shell_General" helpers:NavHelper.NavigateTo="views:GeneralPage" Icon="{ui:FontIcon Glyph=&#xE713;}" /> <NavigationViewItemSeparator /> <NavigationViewItem x:Uid="Shell_AlwaysOnTop" helpers:NavHelper.NavigateTo="views:AlwaysOnTopPage" Icon="{ui:BitmapIcon Source=/Assets/Settings/FluentIcons/FluentIconsAlwaysOnTop.png}" /> <NavigationViewItem x:Uid="Shell_Awake" helpers:NavHelper.NavigateTo="views:AwakePage" Icon="{ui:BitmapIcon Source=/Assets/Settings/FluentIcons/FluentIconsAwake.png}" /> <NavigationViewItem x:Uid="Shell_ColorPicker" helpers:NavHelper.NavigateTo="views:ColorPickerPage" Icon="{ui:BitmapIcon Source=/Assets/Settings/FluentIcons/FluentIconsColorPicker.png}" /> <NavigationViewItem x:Uid="Shell_CropAndLock" helpers:NavHelper.NavigateTo="views:CropAndLockPage" Icon="{ui:BitmapIcon Source=/Assets/Settings/FluentIcons/FluentIconsCropAndLock.png}" /> <NavigationViewItem x:Uid="Shell_EnvironmentVariables" helpers:NavHelper.NavigateTo="views:EnvironmentVariablesPage" Icon="{ui:BitmapIcon Source=/Assets/Settings/FluentIcons/FluentIconsEnvironmentVariables.png}" /> <NavigationViewItem x:Uid="Shell_FancyZones" helpers:NavHelper.NavigateTo="views:FancyZonesPage" Icon="{ui:BitmapIcon Source=/Assets/Settings/FluentIcons/FluentIconsFancyZones.png}" /> <NavigationViewItem x:Uid="Shell_FileLocksmith" helpers:NavHelper.NavigateTo="views:FileLocksmithPage" Icon="{ui:BitmapIcon Source=/Assets/Settings/FluentIcons/FluentIconsFileLocksmith.png}" /> <NavigationViewItem x:Uid="Shell_PowerPreview" helpers:NavHelper.NavigateTo="views:PowerPreviewPage" Icon="{ui:BitmapIcon Source=/Assets/Settings/FluentIcons/FluentIconsFileExplorerPreview.png}" /> <NavigationViewItem x:Uid="Shell_Hosts" helpers:NavHelper.NavigateTo="views:HostsPage" Icon="{ui:BitmapIcon Source=/Assets/Settings/FluentIcons/FluentIconsHosts.png}" /> <NavigationViewItem x:Uid="Shell_ImageResizer" helpers:NavHelper.NavigateTo="views:ImageResizerPage" Icon="{ui:BitmapIcon Source=/Assets/Settings/FluentIcons/FluentIconsImageResizer.png}" /> <NavigationViewItem x:Uid="Shell_KeyboardManager" helpers:NavHelper.NavigateTo="views:KeyboardManagerPage" Icon="{ui:BitmapIcon Source=/Assets/Settings/FluentIcons/FluentIconsKeyboardManager.png}" /> <NavigationViewItem x:Uid="Shell_MouseUtilities" helpers:NavHelper.NavigateTo="views:MouseUtilsPage" Icon="{ui:BitmapIcon Source=/Assets/Settings/FluentIcons/FluentIconsMouseUtils.png}" /> <NavigationViewItem x:Uid="Shell_MouseWithoutBorders" helpers:NavHelper.NavigateTo="views:MouseWithoutBordersPage" Icon="{ui:BitmapIcon Source=/Assets/Settings/FluentIcons/FluentIconsMouseWithoutBorders.png}" /> <NavigationViewItem x:Uid="Shell_PastePlain" helpers:NavHelper.NavigateTo="views:PastePlainPage" Icon="{ui:BitmapIcon Source=/Assets/Settings/FluentIcons/FluentIconsPastePlain.png}" /> <NavigationViewItem x:Uid="Shell_Peek" helpers:NavHelper.NavigateTo="views:PeekPage" Icon="{ui:BitmapIcon Source=/Assets/Settings/FluentIcons/FluentIconsPeek.png}" /> <NavigationViewItem x:Uid="Shell_PowerRename" helpers:NavHelper.NavigateTo="views:PowerRenamePage" Icon="{ui:BitmapIcon Source=/Assets/Settings/FluentIcons/FluentIconsPowerRename.png}" /> <NavigationViewItem x:Uid="Shell_PowerLauncher" helpers:NavHelper.NavigateTo="views:PowerLauncherPage" Icon="{ui:BitmapIcon Source=/Assets/Settings/FluentIcons/FluentIconsPowerToysRun.png}" /> <NavigationViewItem x:Uid="Shell_QuickAccent" helpers:NavHelper.NavigateTo="views:PowerAccentPage" Icon="{ui:BitmapIcon Source=/Assets/Settings/FluentIcons/FluentIconsPowerAccent.png}" /> <NavigationViewItem x:Uid="Shell_RegistryPreview" helpers:NavHelper.NavigateTo="views:RegistryPreviewPage" Icon="{ui:BitmapIcon Source=/Assets/Settings/FluentIcons/FluentIconsRegistryPreview.png}" /> <NavigationViewItem x:Uid="Shell_MeasureTool" helpers:NavHelper.NavigateTo="views:MeasureToolPage" Icon="{ui:BitmapIcon Source=/Assets/Settings/FluentIcons/FluentIconsScreenRuler.png}" /> <NavigationViewItem x:Uid="Shell_ShortcutGuide" helpers:NavHelper.NavigateTo="views:ShortcutGuidePage" Icon="{ui:BitmapIcon Source=/Assets/Settings/FluentIcons/FluentIconsShortcutGuide.png}" /> <NavigationViewItem x:Uid="Shell_TextExtractor" helpers:NavHelper.NavigateTo="views:PowerOcrPage" Icon="{ui:BitmapIcon Source=/Assets/Settings/FluentIcons/FluentIconsPowerOcr.png}" /> <NavigationViewItem x:Uid="Shell_VideoConference" helpers:NavHelper.NavigateTo="views:VideoConferencePage" Icon="{ui:BitmapIcon Source=/Assets/Settings/FluentIcons/FluentIconsVideoConferenceMute.png}" IsEnabled="{x:Bind ViewModel.IsVideoConferenceBuild, Mode=OneWay}" /> </NavigationView.MenuItems> <NavigationView.PaneFooter> <StackPanel Orientation="Vertical"> <NavigationViewItem x:Uid="OOBE_NavViewItem" Icon="{ui:FontIcon Glyph=&#xF133;}" Tapped="OOBEItem_Tapped" /> <NavigationViewItem x:Uid="Feedback_NavViewItem" Icon="{ui:FontIcon Glyph=&#xED15;}" Tapped="FeedbackItem_Tapped" /> </StackPanel> </NavigationView.PaneFooter> <i:Interaction.Behaviors> <ic:EventTriggerBehavior EventName="ItemInvoked"> <ic:InvokeCommandAction Command="{x:Bind ViewModel.ItemInvokedCommand}" /> </ic:EventTriggerBehavior> </i:Interaction.Behaviors> <Frame x:Name="shellFrame" /> </NavigationView> </Grid> </UserControl>
<UserControl x:Class="Microsoft.PowerToys.Settings.UI.Views.ShellPage" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:animations="using:CommunityToolkit.WinUI.Animations" xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:helpers="using:Microsoft.PowerToys.Settings.UI.Helpers" xmlns:i="using:Microsoft.Xaml.Interactivity" xmlns:ic="using:Microsoft.Xaml.Interactions.Core" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:ui="using:CommunityToolkit.WinUI" xmlns:views="using:Microsoft.PowerToys.Settings.UI.Views" HighContrastAdjustment="None" Loaded="ShellPage_Loaded" mc:Ignorable="d"> <i:Interaction.Behaviors> <ic:EventTriggerBehavior EventName="Loaded"> <ic:InvokeCommandAction Command="{x:Bind ViewModel.LoadedCommand}" /> </ic:EventTriggerBehavior> </i:Interaction.Behaviors> <Grid x:Name="RootGrid"> <Grid.RowDefinitions> <RowDefinition Height="48" /> <RowDefinition Height="*" /> </Grid.RowDefinitions> <Button x:Name="PaneToggleBtn" Width="48" HorizontalAlignment="Left" VerticalAlignment="Center" Click="PaneToggleBtn_Click" Style="{StaticResource PaneToggleButtonStyle}" /> <Grid x:Name="AppTitleBar" Height="{Binding ElementName=navigationView, Path=CompactPaneLength}" Margin="48,0,0,0" VerticalAlignment="Top" IsHitTestVisible="True"> <animations:Implicit.Animations> <animations:OffsetAnimation Duration="0:0:0.3" /> </animations:Implicit.Animations> <StackPanel Orientation="Horizontal"> <Image Width="16" Height="16" HorizontalAlignment="Left" Source="/Assets/Settings/icon.ico" /> <TextBlock x:Name="AppTitleBarText" Margin="12,0,0,0" VerticalAlignment="Center" Style="{StaticResource CaptionTextBlockStyle}" TextWrapping="NoWrap" /> <TextBlock x:Name="DebugMessage" Margin="8,0,0,0" VerticalAlignment="Center" Foreground="{ThemeResource TextFillColorSecondaryBrush}" Style="{StaticResource CaptionTextBlockStyle}" Text="Debug" TextWrapping="NoWrap" Visibility="Collapsed" /> </StackPanel> </Grid> <NavigationView x:Name="navigationView" Grid.Row="1" Canvas.ZIndex="0" CompactModeThresholdWidth="1007" DisplayModeChanged="NavigationView_DisplayModeChanged" ExpandedModeThresholdWidth="1007" IsBackButtonVisible="Collapsed" IsBackEnabled="{x:Bind ViewModel.IsBackEnabled, Mode=OneWay}" IsPaneToggleButtonVisible="False" IsSettingsVisible="False" IsTitleBarAutoPaddingEnabled="False" PaneClosed="NavigationView_PaneClosed" PaneOpened="NavigationView_PaneOpened" SelectedItem="{x:Bind ViewModel.Selected, Mode=OneWay}" SelectionChanged="NavigationView_SelectionChanged"> <NavigationView.Resources> <SolidColorBrush x:Key="NavigationViewContentBackground" Color="Transparent" /> <SolidColorBrush x:Key="NavigationViewContentGridBorderBrush" Color="Transparent" /> </NavigationView.Resources> <NavigationView.MenuItems> <NavigationViewItem x:Uid="Shell_Dashboard" helpers:NavHelper.NavigateTo="views:DashboardPage" Icon="{ui:FontIcon Glyph=&#xE80F;}" /> <NavigationViewItem x:Uid="Shell_General" helpers:NavHelper.NavigateTo="views:GeneralPage" Icon="{ui:FontIcon Glyph=&#xE713;}" /> <NavigationViewItemSeparator /> <NavigationViewItem x:Uid="Shell_AlwaysOnTop" helpers:NavHelper.NavigateTo="views:AlwaysOnTopPage" Icon="{ui:BitmapIcon Source=/Assets/Settings/FluentIcons/FluentIconsAlwaysOnTop.png}" /> <NavigationViewItem x:Uid="Shell_Awake" helpers:NavHelper.NavigateTo="views:AwakePage" Icon="{ui:BitmapIcon Source=/Assets/Settings/FluentIcons/FluentIconsAwake.png}" /> <NavigationViewItem x:Uid="Shell_ColorPicker" helpers:NavHelper.NavigateTo="views:ColorPickerPage" Icon="{ui:BitmapIcon Source=/Assets/Settings/FluentIcons/FluentIconsColorPicker.png}" /> <NavigationViewItem x:Uid="Shell_CropAndLock" helpers:NavHelper.NavigateTo="views:CropAndLockPage" Icon="{ui:BitmapIcon Source=/Assets/Settings/FluentIcons/FluentIconsCropAndLock.png}" /> <NavigationViewItem x:Uid="Shell_EnvironmentVariables" helpers:NavHelper.NavigateTo="views:EnvironmentVariablesPage" Icon="{ui:BitmapIcon Source=/Assets/Settings/FluentIcons/FluentIconsEnvironmentVariables.png}" /> <NavigationViewItem x:Uid="Shell_FancyZones" helpers:NavHelper.NavigateTo="views:FancyZonesPage" Icon="{ui:BitmapIcon Source=/Assets/Settings/FluentIcons/FluentIconsFancyZones.png}" /> <NavigationViewItem x:Uid="Shell_FileLocksmith" helpers:NavHelper.NavigateTo="views:FileLocksmithPage" Icon="{ui:BitmapIcon Source=/Assets/Settings/FluentIcons/FluentIconsFileLocksmith.png}" /> <NavigationViewItem x:Uid="Shell_PowerPreview" helpers:NavHelper.NavigateTo="views:PowerPreviewPage" Icon="{ui:BitmapIcon Source=/Assets/Settings/FluentIcons/FluentIconsFileExplorerPreview.png}" /> <NavigationViewItem x:Uid="Shell_Hosts" helpers:NavHelper.NavigateTo="views:HostsPage" Icon="{ui:BitmapIcon Source=/Assets/Settings/FluentIcons/FluentIconsHosts.png}" /> <NavigationViewItem x:Uid="Shell_ImageResizer" helpers:NavHelper.NavigateTo="views:ImageResizerPage" Icon="{ui:BitmapIcon Source=/Assets/Settings/FluentIcons/FluentIconsImageResizer.png}" /> <NavigationViewItem x:Uid="Shell_KeyboardManager" helpers:NavHelper.NavigateTo="views:KeyboardManagerPage" Icon="{ui:BitmapIcon Source=/Assets/Settings/FluentIcons/FluentIconsKeyboardManager.png}" /> <NavigationViewItem x:Uid="Shell_MouseUtilities" helpers:NavHelper.NavigateTo="views:MouseUtilsPage" Icon="{ui:BitmapIcon Source=/Assets/Settings/FluentIcons/FluentIconsMouseUtils.png}" /> <NavigationViewItem x:Uid="Shell_MouseWithoutBorders" helpers:NavHelper.NavigateTo="views:MouseWithoutBordersPage" Icon="{ui:BitmapIcon Source=/Assets/Settings/FluentIcons/FluentIconsMouseWithoutBorders.png}" /> <NavigationViewItem x:Uid="Shell_PastePlain" helpers:NavHelper.NavigateTo="views:PastePlainPage" Icon="{ui:BitmapIcon Source=/Assets/Settings/FluentIcons/FluentIconsPastePlain.png}" /> <NavigationViewItem x:Uid="Shell_Peek" helpers:NavHelper.NavigateTo="views:PeekPage" Icon="{ui:BitmapIcon Source=/Assets/Settings/FluentIcons/FluentIconsPeek.png}" /> <NavigationViewItem x:Uid="Shell_PowerRename" helpers:NavHelper.NavigateTo="views:PowerRenamePage" Icon="{ui:BitmapIcon Source=/Assets/Settings/FluentIcons/FluentIconsPowerRename.png}" /> <NavigationViewItem x:Uid="Shell_PowerLauncher" helpers:NavHelper.NavigateTo="views:PowerLauncherPage" Icon="{ui:BitmapIcon Source=/Assets/Settings/FluentIcons/FluentIconsPowerToysRun.png}" /> <NavigationViewItem x:Uid="Shell_QuickAccent" helpers:NavHelper.NavigateTo="views:PowerAccentPage" Icon="{ui:BitmapIcon Source=/Assets/Settings/FluentIcons/FluentIconsPowerAccent.png}" /> <NavigationViewItem x:Uid="Shell_RegistryPreview" helpers:NavHelper.NavigateTo="views:RegistryPreviewPage" Icon="{ui:BitmapIcon Source=/Assets/Settings/FluentIcons/FluentIconsRegistryPreview.png}" /> <NavigationViewItem x:Uid="Shell_MeasureTool" helpers:NavHelper.NavigateTo="views:MeasureToolPage" Icon="{ui:BitmapIcon Source=/Assets/Settings/FluentIcons/FluentIconsScreenRuler.png}" /> <NavigationViewItem x:Uid="Shell_ShortcutGuide" helpers:NavHelper.NavigateTo="views:ShortcutGuidePage" Icon="{ui:BitmapIcon Source=/Assets/Settings/FluentIcons/FluentIconsShortcutGuide.png}" /> <NavigationViewItem x:Uid="Shell_TextExtractor" helpers:NavHelper.NavigateTo="views:PowerOcrPage" Icon="{ui:BitmapIcon Source=/Assets/Settings/FluentIcons/FluentIconsPowerOcr.png}" /> <NavigationViewItem x:Uid="Shell_VideoConference" helpers:NavHelper.NavigateTo="views:VideoConferencePage" Icon="{ui:BitmapIcon Source=/Assets/Settings/FluentIcons/FluentIconsVideoConferenceMute.png}" IsEnabled="{x:Bind ViewModel.IsVideoConferenceBuild, Mode=OneWay}" /> </NavigationView.MenuItems> <NavigationView.PaneFooter> <StackPanel Orientation="Vertical"> <NavigationViewItem x:Uid="OOBE_NavViewItem" Icon="{ui:FontIcon Glyph=&#xF133;}" Tapped="OOBEItem_Tapped" /> <NavigationViewItem x:Uid="WhatIsNew_NavViewItem" Icon="{ui:FontIcon Glyph=&#xF133;}" Tapped="WhatIsNewItem_Tapped" /> <NavigationViewItem x:Uid="Feedback_NavViewItem" Icon="{ui:FontIcon Glyph=&#xED15;}" Tapped="FeedbackItem_Tapped" /> </StackPanel> </NavigationView.PaneFooter> <i:Interaction.Behaviors> <ic:EventTriggerBehavior EventName="ItemInvoked"> <ic:InvokeCommandAction Command="{x:Bind ViewModel.ItemInvokedCommand}" /> </ic:EventTriggerBehavior> </i:Interaction.Behaviors> <Frame x:Name="shellFrame" /> </NavigationView> </Grid> </UserControl>
iakrayna
949b9a61856e340a4367be54dc405b4d3574f280
1a8007ca0a5d420f6b6f9c832f4da266da86ca76
changed per recommendation
iakrayna
341
microsoft/PowerToys
29,028
Adds a link to the OOBE What's New Section in the ShellPage Navigation
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request Adds an "About this App" in the ShellPage that redirects to the What's New section of the OOBE Page. Links Issue 17611 <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [ ] **Closes:** #17611 - [ ] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected - [ ] **Tests:** Added/updated and all pass - [ ] **Localization:** All end user facing strings can be localized - [ ] **Dev docs:** Added/updated - [ ] **New binaries:** Added on the required places - [ ] [JSON for signing](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ESRPSigning_core.json) for new binaries - [ ] [WXS for installer](https://github.com/microsoft/PowerToys/blob/main/installer/PowerToysSetup/Product.wxs) for new binaries and localization folder - [ ] [YML for CI pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ci/templates/build-powertoys-steps.yml) for new test projects - [ ] [YML for signed pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/release.yml) - [ ] **Documentation updated:** If checked, please file a pull request on [our docs repo](https://github.com/MicrosoftDocs/windows-uwp/tree/docs/hub/powertoys) and link it here: #xxx <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed
null
2023-10-05 01:38:43+00:00
2023-11-21 19:19:12+00:00
src/settings-ui/Settings.UI/SettingsXAML/Views/ShellPage.xaml.cs
// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using System.Collections.Generic; using ManagedCommon; using Microsoft.PowerToys.Settings.UI.Helpers; using Microsoft.PowerToys.Settings.UI.Services; using Microsoft.PowerToys.Settings.UI.ViewModels; using Microsoft.UI.Xaml; using Microsoft.UI.Xaml.Automation.Peers; using Microsoft.UI.Xaml.Controls; using Windows.Data.Json; using Windows.System; namespace Microsoft.PowerToys.Settings.UI.Views { /// <summary> /// Root page. /// </summary> public sealed partial class ShellPage : UserControl { /// <summary> /// Declaration for the ipc callback function. /// </summary> /// <param name="msg">message.</param> public delegate void IPCMessageCallback(string msg); /// <summary> /// Declaration for the opening main window callback function. /// </summary> public delegate void MainOpeningCallback(Type type); /// <summary> /// Declaration for the updating the general settings callback function. /// </summary> public delegate bool UpdatingGeneralSettingsCallback(ModuleType moduleType, bool isEnabled); /// <summary> /// Declaration for the opening oobe window callback function. /// </summary> public delegate void OobeOpeningCallback(); /// <summary> /// Declaration for the opening flyout window callback function. /// </summary> public delegate void FlyoutOpeningCallback(POINT? point); /// <summary> /// Declaration for the disabling hide of flyout window callback function. /// </summary> public delegate void DisablingFlyoutHidingCallback(); /// <summary> /// Gets or sets a shell handler to be used to update contents of the shell dynamically from page within the frame. /// </summary> public static ShellPage ShellHandler { get; set; } /// <summary> /// Gets or sets iPC default callback function. /// </summary> public static IPCMessageCallback DefaultSndMSGCallback { get; set; } /// <summary> /// Gets or sets iPC callback function for restart as admin. /// </summary> public static IPCMessageCallback SndRestartAsAdminMsgCallback { get; set; } /// <summary> /// Gets or sets iPC callback function for checking updates. /// </summary> public static IPCMessageCallback CheckForUpdatesMsgCallback { get; set; } /// <summary> /// Gets or sets callback function for opening main window /// </summary> public static MainOpeningCallback OpenMainWindowCallback { get; set; } /// <summary> /// Gets or sets callback function for updating the general settings /// </summary> public static UpdatingGeneralSettingsCallback UpdateGeneralSettingsCallback { get; set; } /// <summary> /// Gets or sets callback function for opening oobe window /// </summary> public static OobeOpeningCallback OpenOobeWindowCallback { get; set; } /// <summary> /// Gets or sets callback function for opening flyout window /// </summary> public static FlyoutOpeningCallback OpenFlyoutCallback { get; set; } /// <summary> /// Gets or sets callback function for disabling hide of flyout window /// </summary> public static DisablingFlyoutHidingCallback DisableFlyoutHidingCallback { get; set; } /// <summary> /// Gets view model. /// </summary> public ShellViewModel ViewModel { get; } = new ShellViewModel(); /// <summary> /// Gets a collection of functions that handle IPC responses. /// </summary> public List<System.Action<JsonObject>> IPCResponseHandleList { get; } = new List<System.Action<JsonObject>>(); public static bool IsElevated { get; set; } public static bool IsUserAnAdmin { get; set; } /// <summary> /// Initializes a new instance of the <see cref="ShellPage"/> class. /// Shell page constructor. /// </summary> public ShellPage() { InitializeComponent(); DataContext = ViewModel; ShellHandler = this; ViewModel.Initialize(shellFrame, navigationView, KeyboardAccelerators); // NL moved navigation to general page to the moment when the window is first activated (to not make flyout window disappear) // shellFrame.Navigate(typeof(GeneralPage)); IPCResponseHandleList.Add(ReceiveMessage); SetTitleBar(); } public static int SendDefaultIPCMessage(string msg) { DefaultSndMSGCallback?.Invoke(msg); return 0; } public static int SendCheckForUpdatesIPCMessage(string msg) { CheckForUpdatesMsgCallback?.Invoke(msg); return 0; } public static int SendRestartAdminIPCMessage(string msg) { SndRestartAsAdminMsgCallback?.Invoke(msg); return 0; } /// <summary> /// Set Default IPC Message callback function. /// </summary> /// <param name="implementation">delegate function implementation.</param> public static void SetDefaultSndMessageCallback(IPCMessageCallback implementation) { DefaultSndMSGCallback = implementation; } /// <summary> /// Set restart as admin IPC callback function. /// </summary> /// <param name="implementation">delegate function implementation.</param> public static void SetRestartAdminSndMessageCallback(IPCMessageCallback implementation) { SndRestartAsAdminMsgCallback = implementation; } /// <summary> /// Set check for updates IPC callback function. /// </summary> /// <param name="implementation">delegate function implementation.</param> public static void SetCheckForUpdatesMessageCallback(IPCMessageCallback implementation) { CheckForUpdatesMsgCallback = implementation; } /// <summary> /// Set main window opening callback function /// </summary> /// <param name="implementation">delegate function implementation.</param> public static void SetOpenMainWindowCallback(MainOpeningCallback implementation) { OpenMainWindowCallback = implementation; } /// <summary> /// Set updating the general settings callback function /// </summary> /// <param name="implementation">delegate function implementation.</param> public static void SetUpdatingGeneralSettingsCallback(UpdatingGeneralSettingsCallback implementation) { UpdateGeneralSettingsCallback = implementation; } /// <summary> /// Set oobe opening callback function /// </summary> /// <param name="implementation">delegate function implementation.</param> public static void SetOpenOobeCallback(OobeOpeningCallback implementation) { OpenOobeWindowCallback = implementation; } /// <summary> /// Set flyout opening callback function /// </summary> /// <param name="implementation">delegate function implementation.</param> public static void SetOpenFlyoutCallback(FlyoutOpeningCallback implementation) { OpenFlyoutCallback = implementation; } /// <summary> /// Set disable flyout hiding callback function /// </summary> /// <param name="implementation">delegate function implementation.</param> public static void SetDisableFlyoutHidingCallback(DisablingFlyoutHidingCallback implementation) { DisableFlyoutHidingCallback = implementation; } public static void SetElevationStatus(bool isElevated) { IsElevated = isElevated; } public static void SetIsUserAnAdmin(bool isAdmin) { IsUserAnAdmin = isAdmin; } public static void Navigate(Type type) { NavigationService.Navigate(type); } public void Refresh() { shellFrame.Navigate(typeof(DashboardPage)); } // Tell the current page view model to update public void SignalGeneralDataUpdate() { IRefreshablePage currentPage = shellFrame?.Content as IRefreshablePage; if (currentPage != null) { currentPage.RefreshEnabledState(); } } private void OobeButton_Click(object sender, RoutedEventArgs e) { OpenOobeWindowCallback(); } private bool navigationViewInitialStateProcessed; // avoid announcing initial state of the navigation pane. private void NavigationView_PaneOpened(Microsoft.UI.Xaml.Controls.NavigationView sender, object args) { if (!navigationViewInitialStateProcessed) { navigationViewInitialStateProcessed = true; return; } var peer = FrameworkElementAutomationPeer.FromElement(sender); if (peer == null) { peer = FrameworkElementAutomationPeer.CreatePeerForElement(sender); } if (AutomationPeer.ListenerExists(AutomationEvents.MenuOpened)) { var loader = Helpers.ResourceLoaderInstance.ResourceLoader; peer.RaiseNotificationEvent( AutomationNotificationKind.ActionCompleted, AutomationNotificationProcessing.ImportantMostRecent, loader.GetString("Shell_NavigationMenu_Announce_Open"), "navigationMenuPaneOpened"); } } private void NavigationView_PaneClosed(Microsoft.UI.Xaml.Controls.NavigationView sender, object args) { if (!navigationViewInitialStateProcessed) { navigationViewInitialStateProcessed = true; return; } var peer = FrameworkElementAutomationPeer.FromElement(sender); if (peer == null) { peer = FrameworkElementAutomationPeer.CreatePeerForElement(sender); } if (AutomationPeer.ListenerExists(AutomationEvents.MenuClosed)) { var loader = Helpers.ResourceLoaderInstance.ResourceLoader; peer.RaiseNotificationEvent( AutomationNotificationKind.ActionCompleted, AutomationNotificationProcessing.ImportantMostRecent, loader.GetString("Shell_NavigationMenu_Announce_Collapse"), "navigationMenuPaneClosed"); } } private void OOBEItem_Tapped(object sender, Microsoft.UI.Xaml.Input.TappedRoutedEventArgs e) { OpenOobeWindowCallback(); } private async void FeedbackItem_Tapped(object sender, Microsoft.UI.Xaml.Input.TappedRoutedEventArgs e) { await Launcher.LaunchUriAsync(new Uri("https://aka.ms/powerToysGiveFeedback")); } private void NavigationView_SelectionChanged(NavigationView sender, NavigationViewSelectionChangedEventArgs args) { NavigationViewItem selectedItem = args.SelectedItem as NavigationViewItem; if (selectedItem != null) { Type pageType = selectedItem.GetValue(NavHelper.NavigateToProperty) as Type; NavigationService.Navigate(pageType); } } private void ReceiveMessage(JsonObject json) { if (json != null) { IJsonValue whatToShowJson; if (json.TryGetValue("ShowYourself", out whatToShowJson)) { if (whatToShowJson.ValueType == JsonValueType.String && whatToShowJson.GetString().Equals("flyout", StringComparison.Ordinal)) { POINT? p = null; IJsonValue flyoutPointX; IJsonValue flyoutPointY; if (json.TryGetValue("x_position", out flyoutPointX) && json.TryGetValue("y_position", out flyoutPointY)) { if (flyoutPointX.ValueType == JsonValueType.Number && flyoutPointY.ValueType == JsonValueType.Number) { int flyout_x = (int)flyoutPointX.GetNumber(); int flyout_y = (int)flyoutPointY.GetNumber(); p = new POINT(flyout_x, flyout_y); } } OpenFlyoutCallback(p); } else if (whatToShowJson.ValueType == JsonValueType.String) { OpenMainWindowCallback(App.GetPage(whatToShowJson.GetString())); } } } } internal static void EnsurePageIsSelected() { NavigationService.EnsurePageIsSelected(typeof(DashboardPage)); } private void SetTitleBar() { var u = App.GetSettingsWindow(); if (u != null) { // A custom title bar is required for full window theme and Mica support. // https://docs.microsoft.com/windows/apps/develop/title-bar?tabs=winui3#full-customization u.ExtendsContentIntoTitleBar = true; u.SetTitleBar(AppTitleBar); var loader = ResourceLoaderInstance.ResourceLoader; AppTitleBarText.Text = App.IsElevated ? loader.GetString("SettingsWindow_AdminTitle") : loader.GetString("SettingsWindow_Title"); #if DEBUG DebugMessage.Visibility = Visibility.Visible; #endif } } private void ShellPage_Loaded(object sender, RoutedEventArgs e) { SetTitleBar(); } private void NavigationView_DisplayModeChanged(NavigationView sender, NavigationViewDisplayModeChangedEventArgs args) { if (args.DisplayMode == NavigationViewDisplayMode.Compact || args.DisplayMode == NavigationViewDisplayMode.Minimal) { PaneToggleBtn.Visibility = Visibility.Visible; AppTitleBar.Margin = new Thickness(48, 0, 0, 0); AppTitleBarText.Margin = new Thickness(12, 0, 0, 0); } else { PaneToggleBtn.Visibility = Visibility.Collapsed; AppTitleBar.Margin = new Thickness(16, 0, 0, 0); AppTitleBarText.Margin = new Thickness(16, 0, 0, 0); } } private void PaneToggleBtn_Click(object sender, RoutedEventArgs e) { navigationView.IsPaneOpen = !navigationView.IsPaneOpen; } } }
// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using System.Collections.Generic; using ManagedCommon; using Microsoft.PowerToys.Settings.UI.Helpers; using Microsoft.PowerToys.Settings.UI.Services; using Microsoft.PowerToys.Settings.UI.ViewModels; using Microsoft.UI.Xaml; using Microsoft.UI.Xaml.Automation.Peers; using Microsoft.UI.Xaml.Controls; using Windows.Data.Json; using Windows.System; namespace Microsoft.PowerToys.Settings.UI.Views { /// <summary> /// Root page. /// </summary> public sealed partial class ShellPage : UserControl { /// <summary> /// Declaration for the ipc callback function. /// </summary> /// <param name="msg">message.</param> public delegate void IPCMessageCallback(string msg); /// <summary> /// Declaration for the opening main window callback function. /// </summary> public delegate void MainOpeningCallback(Type type); /// <summary> /// Declaration for the updating the general settings callback function. /// </summary> public delegate bool UpdatingGeneralSettingsCallback(ModuleType moduleType, bool isEnabled); /// <summary> /// Declaration for the opening oobe window callback function. /// </summary> public delegate void OobeOpeningCallback(); /// <summary> /// Declaration for the opening whats new window callback function. /// </summary> public delegate void WhatIsNewOpeningCallback(); /// <summary> /// Declaration for the opening flyout window callback function. /// </summary> public delegate void FlyoutOpeningCallback(POINT? point); /// <summary> /// Declaration for the disabling hide of flyout window callback function. /// </summary> public delegate void DisablingFlyoutHidingCallback(); /// <summary> /// Gets or sets a shell handler to be used to update contents of the shell dynamically from page within the frame. /// </summary> public static ShellPage ShellHandler { get; set; } /// <summary> /// Gets or sets iPC default callback function. /// </summary> public static IPCMessageCallback DefaultSndMSGCallback { get; set; } /// <summary> /// Gets or sets iPC callback function for restart as admin. /// </summary> public static IPCMessageCallback SndRestartAsAdminMsgCallback { get; set; } /// <summary> /// Gets or sets iPC callback function for checking updates. /// </summary> public static IPCMessageCallback CheckForUpdatesMsgCallback { get; set; } /// <summary> /// Gets or sets callback function for opening main window /// </summary> public static MainOpeningCallback OpenMainWindowCallback { get; set; } /// <summary> /// Gets or sets callback function for updating the general settings /// </summary> public static UpdatingGeneralSettingsCallback UpdateGeneralSettingsCallback { get; set; } /// <summary> /// Gets or sets callback function for opening oobe window /// </summary> public static OobeOpeningCallback OpenOobeWindowCallback { get; set; } /// <summary> /// Gets or sets callback function for opening oobe window /// </summary> public static WhatIsNewOpeningCallback OpenWhatIsNewWindowCallback { get; set; } /// <summary> /// Gets or sets callback function for opening flyout window /// </summary> public static FlyoutOpeningCallback OpenFlyoutCallback { get; set; } /// <summary> /// Gets or sets callback function for disabling hide of flyout window /// </summary> public static DisablingFlyoutHidingCallback DisableFlyoutHidingCallback { get; set; } /// <summary> /// Gets view model. /// </summary> public ShellViewModel ViewModel { get; } = new ShellViewModel(); /// <summary> /// Gets a collection of functions that handle IPC responses. /// </summary> public List<System.Action<JsonObject>> IPCResponseHandleList { get; } = new List<System.Action<JsonObject>>(); public static bool IsElevated { get; set; } public static bool IsUserAnAdmin { get; set; } /// <summary> /// Initializes a new instance of the <see cref="ShellPage"/> class. /// Shell page constructor. /// </summary> public ShellPage() { InitializeComponent(); DataContext = ViewModel; ShellHandler = this; ViewModel.Initialize(shellFrame, navigationView, KeyboardAccelerators); // NL moved navigation to general page to the moment when the window is first activated (to not make flyout window disappear) // shellFrame.Navigate(typeof(GeneralPage)); IPCResponseHandleList.Add(ReceiveMessage); SetTitleBar(); } public static int SendDefaultIPCMessage(string msg) { DefaultSndMSGCallback?.Invoke(msg); return 0; } public static int SendCheckForUpdatesIPCMessage(string msg) { CheckForUpdatesMsgCallback?.Invoke(msg); return 0; } public static int SendRestartAdminIPCMessage(string msg) { SndRestartAsAdminMsgCallback?.Invoke(msg); return 0; } /// <summary> /// Set Default IPC Message callback function. /// </summary> /// <param name="implementation">delegate function implementation.</param> public static void SetDefaultSndMessageCallback(IPCMessageCallback implementation) { DefaultSndMSGCallback = implementation; } /// <summary> /// Set restart as admin IPC callback function. /// </summary> /// <param name="implementation">delegate function implementation.</param> public static void SetRestartAdminSndMessageCallback(IPCMessageCallback implementation) { SndRestartAsAdminMsgCallback = implementation; } /// <summary> /// Set check for updates IPC callback function. /// </summary> /// <param name="implementation">delegate function implementation.</param> public static void SetCheckForUpdatesMessageCallback(IPCMessageCallback implementation) { CheckForUpdatesMsgCallback = implementation; } /// <summary> /// Set main window opening callback function /// </summary> /// <param name="implementation">delegate function implementation.</param> public static void SetOpenMainWindowCallback(MainOpeningCallback implementation) { OpenMainWindowCallback = implementation; } /// <summary> /// Set updating the general settings callback function /// </summary> /// <param name="implementation">delegate function implementation.</param> public static void SetUpdatingGeneralSettingsCallback(UpdatingGeneralSettingsCallback implementation) { UpdateGeneralSettingsCallback = implementation; } /// <summary> /// Set oobe opening callback function /// </summary> /// <param name="implementation">delegate function implementation.</param> public static void SetOpenOobeCallback(OobeOpeningCallback implementation) { OpenOobeWindowCallback = implementation; } /// <summary> /// Set whats new opening callback function /// </summary> /// <param name="implementation">delegate function implementation.</param> public static void SetOpenWhatIsNewCallback(WhatIsNewOpeningCallback implementation) { OpenWhatIsNewWindowCallback = implementation; } /// <summary> /// Set flyout opening callback function /// </summary> /// <param name="implementation">delegate function implementation.</param> public static void SetOpenFlyoutCallback(FlyoutOpeningCallback implementation) { OpenFlyoutCallback = implementation; } /// <summary> /// Set disable flyout hiding callback function /// </summary> /// <param name="implementation">delegate function implementation.</param> public static void SetDisableFlyoutHidingCallback(DisablingFlyoutHidingCallback implementation) { DisableFlyoutHidingCallback = implementation; } public static void SetElevationStatus(bool isElevated) { IsElevated = isElevated; } public static void SetIsUserAnAdmin(bool isAdmin) { IsUserAnAdmin = isAdmin; } public static void Navigate(Type type) { NavigationService.Navigate(type); } public void Refresh() { shellFrame.Navigate(typeof(DashboardPage)); } // Tell the current page view model to update public void SignalGeneralDataUpdate() { IRefreshablePage currentPage = shellFrame?.Content as IRefreshablePage; if (currentPage != null) { currentPage.RefreshEnabledState(); } } private void OobeButton_Click(object sender, RoutedEventArgs e) { OpenOobeWindowCallback(); } private bool navigationViewInitialStateProcessed; // avoid announcing initial state of the navigation pane. private void NavigationView_PaneOpened(Microsoft.UI.Xaml.Controls.NavigationView sender, object args) { if (!navigationViewInitialStateProcessed) { navigationViewInitialStateProcessed = true; return; } var peer = FrameworkElementAutomationPeer.FromElement(sender); if (peer == null) { peer = FrameworkElementAutomationPeer.CreatePeerForElement(sender); } if (AutomationPeer.ListenerExists(AutomationEvents.MenuOpened)) { var loader = Helpers.ResourceLoaderInstance.ResourceLoader; peer.RaiseNotificationEvent( AutomationNotificationKind.ActionCompleted, AutomationNotificationProcessing.ImportantMostRecent, loader.GetString("Shell_NavigationMenu_Announce_Open"), "navigationMenuPaneOpened"); } } private void NavigationView_PaneClosed(Microsoft.UI.Xaml.Controls.NavigationView sender, object args) { if (!navigationViewInitialStateProcessed) { navigationViewInitialStateProcessed = true; return; } var peer = FrameworkElementAutomationPeer.FromElement(sender); if (peer == null) { peer = FrameworkElementAutomationPeer.CreatePeerForElement(sender); } if (AutomationPeer.ListenerExists(AutomationEvents.MenuClosed)) { var loader = Helpers.ResourceLoaderInstance.ResourceLoader; peer.RaiseNotificationEvent( AutomationNotificationKind.ActionCompleted, AutomationNotificationProcessing.ImportantMostRecent, loader.GetString("Shell_NavigationMenu_Announce_Collapse"), "navigationMenuPaneClosed"); } } private void OOBEItem_Tapped(object sender, Microsoft.UI.Xaml.Input.TappedRoutedEventArgs e) { OpenOobeWindowCallback(); } private async void FeedbackItem_Tapped(object sender, Microsoft.UI.Xaml.Input.TappedRoutedEventArgs e) { await Launcher.LaunchUriAsync(new Uri("https://aka.ms/powerToysGiveFeedback")); } private void WhatIsNewItem_Tapped(object sender, Microsoft.UI.Xaml.Input.TappedRoutedEventArgs e) { OpenWhatIsNewWindowCallback(); } private void NavigationView_SelectionChanged(NavigationView sender, NavigationViewSelectionChangedEventArgs args) { NavigationViewItem selectedItem = args.SelectedItem as NavigationViewItem; if (selectedItem != null) { Type pageType = selectedItem.GetValue(NavHelper.NavigateToProperty) as Type; NavigationService.Navigate(pageType); } } private void ReceiveMessage(JsonObject json) { if (json != null) { IJsonValue whatToShowJson; if (json.TryGetValue("ShowYourself", out whatToShowJson)) { if (whatToShowJson.ValueType == JsonValueType.String && whatToShowJson.GetString().Equals("flyout", StringComparison.Ordinal)) { POINT? p = null; IJsonValue flyoutPointX; IJsonValue flyoutPointY; if (json.TryGetValue("x_position", out flyoutPointX) && json.TryGetValue("y_position", out flyoutPointY)) { if (flyoutPointX.ValueType == JsonValueType.Number && flyoutPointY.ValueType == JsonValueType.Number) { int flyout_x = (int)flyoutPointX.GetNumber(); int flyout_y = (int)flyoutPointY.GetNumber(); p = new POINT(flyout_x, flyout_y); } } OpenFlyoutCallback(p); } else if (whatToShowJson.ValueType == JsonValueType.String) { OpenMainWindowCallback(App.GetPage(whatToShowJson.GetString())); } } } } internal static void EnsurePageIsSelected() { NavigationService.EnsurePageIsSelected(typeof(DashboardPage)); } private void SetTitleBar() { var u = App.GetSettingsWindow(); if (u != null) { // A custom title bar is required for full window theme and Mica support. // https://docs.microsoft.com/windows/apps/develop/title-bar?tabs=winui3#full-customization u.ExtendsContentIntoTitleBar = true; u.SetTitleBar(AppTitleBar); var loader = ResourceLoaderInstance.ResourceLoader; AppTitleBarText.Text = App.IsElevated ? loader.GetString("SettingsWindow_AdminTitle") : loader.GetString("SettingsWindow_Title"); #if DEBUG DebugMessage.Visibility = Visibility.Visible; #endif } } private void ShellPage_Loaded(object sender, RoutedEventArgs e) { SetTitleBar(); } private void NavigationView_DisplayModeChanged(NavigationView sender, NavigationViewDisplayModeChangedEventArgs args) { if (args.DisplayMode == NavigationViewDisplayMode.Compact || args.DisplayMode == NavigationViewDisplayMode.Minimal) { PaneToggleBtn.Visibility = Visibility.Visible; AppTitleBar.Margin = new Thickness(48, 0, 0, 0); AppTitleBarText.Margin = new Thickness(12, 0, 0, 0); } else { PaneToggleBtn.Visibility = Visibility.Collapsed; AppTitleBar.Margin = new Thickness(16, 0, 0, 0); AppTitleBarText.Margin = new Thickness(16, 0, 0, 0); } } private void PaneToggleBtn_Click(object sender, RoutedEventArgs e) { navigationView.IsPaneOpen = !navigationView.IsPaneOpen; } } }
iakrayna
949b9a61856e340a4367be54dc405b4d3574f280
1a8007ca0a5d420f6b6f9c832f4da266da86ca76
WhatIsNewItem_Tapped
crutkas
342
microsoft/PowerToys
29,028
Adds a link to the OOBE What's New Section in the ShellPage Navigation
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request Adds an "About this App" in the ShellPage that redirects to the What's New section of the OOBE Page. Links Issue 17611 <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [ ] **Closes:** #17611 - [ ] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected - [ ] **Tests:** Added/updated and all pass - [ ] **Localization:** All end user facing strings can be localized - [ ] **Dev docs:** Added/updated - [ ] **New binaries:** Added on the required places - [ ] [JSON for signing](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ESRPSigning_core.json) for new binaries - [ ] [WXS for installer](https://github.com/microsoft/PowerToys/blob/main/installer/PowerToysSetup/Product.wxs) for new binaries and localization folder - [ ] [YML for CI pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ci/templates/build-powertoys-steps.yml) for new test projects - [ ] [YML for signed pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/release.yml) - [ ] **Documentation updated:** If checked, please file a pull request on [our docs repo](https://github.com/MicrosoftDocs/windows-uwp/tree/docs/hub/powertoys) and link it here: #xxx <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed
null
2023-10-05 01:38:43+00:00
2023-11-21 19:19:12+00:00
src/settings-ui/Settings.UI/SettingsXAML/Views/ShellPage.xaml.cs
// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using System.Collections.Generic; using ManagedCommon; using Microsoft.PowerToys.Settings.UI.Helpers; using Microsoft.PowerToys.Settings.UI.Services; using Microsoft.PowerToys.Settings.UI.ViewModels; using Microsoft.UI.Xaml; using Microsoft.UI.Xaml.Automation.Peers; using Microsoft.UI.Xaml.Controls; using Windows.Data.Json; using Windows.System; namespace Microsoft.PowerToys.Settings.UI.Views { /// <summary> /// Root page. /// </summary> public sealed partial class ShellPage : UserControl { /// <summary> /// Declaration for the ipc callback function. /// </summary> /// <param name="msg">message.</param> public delegate void IPCMessageCallback(string msg); /// <summary> /// Declaration for the opening main window callback function. /// </summary> public delegate void MainOpeningCallback(Type type); /// <summary> /// Declaration for the updating the general settings callback function. /// </summary> public delegate bool UpdatingGeneralSettingsCallback(ModuleType moduleType, bool isEnabled); /// <summary> /// Declaration for the opening oobe window callback function. /// </summary> public delegate void OobeOpeningCallback(); /// <summary> /// Declaration for the opening flyout window callback function. /// </summary> public delegate void FlyoutOpeningCallback(POINT? point); /// <summary> /// Declaration for the disabling hide of flyout window callback function. /// </summary> public delegate void DisablingFlyoutHidingCallback(); /// <summary> /// Gets or sets a shell handler to be used to update contents of the shell dynamically from page within the frame. /// </summary> public static ShellPage ShellHandler { get; set; } /// <summary> /// Gets or sets iPC default callback function. /// </summary> public static IPCMessageCallback DefaultSndMSGCallback { get; set; } /// <summary> /// Gets or sets iPC callback function for restart as admin. /// </summary> public static IPCMessageCallback SndRestartAsAdminMsgCallback { get; set; } /// <summary> /// Gets or sets iPC callback function for checking updates. /// </summary> public static IPCMessageCallback CheckForUpdatesMsgCallback { get; set; } /// <summary> /// Gets or sets callback function for opening main window /// </summary> public static MainOpeningCallback OpenMainWindowCallback { get; set; } /// <summary> /// Gets or sets callback function for updating the general settings /// </summary> public static UpdatingGeneralSettingsCallback UpdateGeneralSettingsCallback { get; set; } /// <summary> /// Gets or sets callback function for opening oobe window /// </summary> public static OobeOpeningCallback OpenOobeWindowCallback { get; set; } /// <summary> /// Gets or sets callback function for opening flyout window /// </summary> public static FlyoutOpeningCallback OpenFlyoutCallback { get; set; } /// <summary> /// Gets or sets callback function for disabling hide of flyout window /// </summary> public static DisablingFlyoutHidingCallback DisableFlyoutHidingCallback { get; set; } /// <summary> /// Gets view model. /// </summary> public ShellViewModel ViewModel { get; } = new ShellViewModel(); /// <summary> /// Gets a collection of functions that handle IPC responses. /// </summary> public List<System.Action<JsonObject>> IPCResponseHandleList { get; } = new List<System.Action<JsonObject>>(); public static bool IsElevated { get; set; } public static bool IsUserAnAdmin { get; set; } /// <summary> /// Initializes a new instance of the <see cref="ShellPage"/> class. /// Shell page constructor. /// </summary> public ShellPage() { InitializeComponent(); DataContext = ViewModel; ShellHandler = this; ViewModel.Initialize(shellFrame, navigationView, KeyboardAccelerators); // NL moved navigation to general page to the moment when the window is first activated (to not make flyout window disappear) // shellFrame.Navigate(typeof(GeneralPage)); IPCResponseHandleList.Add(ReceiveMessage); SetTitleBar(); } public static int SendDefaultIPCMessage(string msg) { DefaultSndMSGCallback?.Invoke(msg); return 0; } public static int SendCheckForUpdatesIPCMessage(string msg) { CheckForUpdatesMsgCallback?.Invoke(msg); return 0; } public static int SendRestartAdminIPCMessage(string msg) { SndRestartAsAdminMsgCallback?.Invoke(msg); return 0; } /// <summary> /// Set Default IPC Message callback function. /// </summary> /// <param name="implementation">delegate function implementation.</param> public static void SetDefaultSndMessageCallback(IPCMessageCallback implementation) { DefaultSndMSGCallback = implementation; } /// <summary> /// Set restart as admin IPC callback function. /// </summary> /// <param name="implementation">delegate function implementation.</param> public static void SetRestartAdminSndMessageCallback(IPCMessageCallback implementation) { SndRestartAsAdminMsgCallback = implementation; } /// <summary> /// Set check for updates IPC callback function. /// </summary> /// <param name="implementation">delegate function implementation.</param> public static void SetCheckForUpdatesMessageCallback(IPCMessageCallback implementation) { CheckForUpdatesMsgCallback = implementation; } /// <summary> /// Set main window opening callback function /// </summary> /// <param name="implementation">delegate function implementation.</param> public static void SetOpenMainWindowCallback(MainOpeningCallback implementation) { OpenMainWindowCallback = implementation; } /// <summary> /// Set updating the general settings callback function /// </summary> /// <param name="implementation">delegate function implementation.</param> public static void SetUpdatingGeneralSettingsCallback(UpdatingGeneralSettingsCallback implementation) { UpdateGeneralSettingsCallback = implementation; } /// <summary> /// Set oobe opening callback function /// </summary> /// <param name="implementation">delegate function implementation.</param> public static void SetOpenOobeCallback(OobeOpeningCallback implementation) { OpenOobeWindowCallback = implementation; } /// <summary> /// Set flyout opening callback function /// </summary> /// <param name="implementation">delegate function implementation.</param> public static void SetOpenFlyoutCallback(FlyoutOpeningCallback implementation) { OpenFlyoutCallback = implementation; } /// <summary> /// Set disable flyout hiding callback function /// </summary> /// <param name="implementation">delegate function implementation.</param> public static void SetDisableFlyoutHidingCallback(DisablingFlyoutHidingCallback implementation) { DisableFlyoutHidingCallback = implementation; } public static void SetElevationStatus(bool isElevated) { IsElevated = isElevated; } public static void SetIsUserAnAdmin(bool isAdmin) { IsUserAnAdmin = isAdmin; } public static void Navigate(Type type) { NavigationService.Navigate(type); } public void Refresh() { shellFrame.Navigate(typeof(DashboardPage)); } // Tell the current page view model to update public void SignalGeneralDataUpdate() { IRefreshablePage currentPage = shellFrame?.Content as IRefreshablePage; if (currentPage != null) { currentPage.RefreshEnabledState(); } } private void OobeButton_Click(object sender, RoutedEventArgs e) { OpenOobeWindowCallback(); } private bool navigationViewInitialStateProcessed; // avoid announcing initial state of the navigation pane. private void NavigationView_PaneOpened(Microsoft.UI.Xaml.Controls.NavigationView sender, object args) { if (!navigationViewInitialStateProcessed) { navigationViewInitialStateProcessed = true; return; } var peer = FrameworkElementAutomationPeer.FromElement(sender); if (peer == null) { peer = FrameworkElementAutomationPeer.CreatePeerForElement(sender); } if (AutomationPeer.ListenerExists(AutomationEvents.MenuOpened)) { var loader = Helpers.ResourceLoaderInstance.ResourceLoader; peer.RaiseNotificationEvent( AutomationNotificationKind.ActionCompleted, AutomationNotificationProcessing.ImportantMostRecent, loader.GetString("Shell_NavigationMenu_Announce_Open"), "navigationMenuPaneOpened"); } } private void NavigationView_PaneClosed(Microsoft.UI.Xaml.Controls.NavigationView sender, object args) { if (!navigationViewInitialStateProcessed) { navigationViewInitialStateProcessed = true; return; } var peer = FrameworkElementAutomationPeer.FromElement(sender); if (peer == null) { peer = FrameworkElementAutomationPeer.CreatePeerForElement(sender); } if (AutomationPeer.ListenerExists(AutomationEvents.MenuClosed)) { var loader = Helpers.ResourceLoaderInstance.ResourceLoader; peer.RaiseNotificationEvent( AutomationNotificationKind.ActionCompleted, AutomationNotificationProcessing.ImportantMostRecent, loader.GetString("Shell_NavigationMenu_Announce_Collapse"), "navigationMenuPaneClosed"); } } private void OOBEItem_Tapped(object sender, Microsoft.UI.Xaml.Input.TappedRoutedEventArgs e) { OpenOobeWindowCallback(); } private async void FeedbackItem_Tapped(object sender, Microsoft.UI.Xaml.Input.TappedRoutedEventArgs e) { await Launcher.LaunchUriAsync(new Uri("https://aka.ms/powerToysGiveFeedback")); } private void NavigationView_SelectionChanged(NavigationView sender, NavigationViewSelectionChangedEventArgs args) { NavigationViewItem selectedItem = args.SelectedItem as NavigationViewItem; if (selectedItem != null) { Type pageType = selectedItem.GetValue(NavHelper.NavigateToProperty) as Type; NavigationService.Navigate(pageType); } } private void ReceiveMessage(JsonObject json) { if (json != null) { IJsonValue whatToShowJson; if (json.TryGetValue("ShowYourself", out whatToShowJson)) { if (whatToShowJson.ValueType == JsonValueType.String && whatToShowJson.GetString().Equals("flyout", StringComparison.Ordinal)) { POINT? p = null; IJsonValue flyoutPointX; IJsonValue flyoutPointY; if (json.TryGetValue("x_position", out flyoutPointX) && json.TryGetValue("y_position", out flyoutPointY)) { if (flyoutPointX.ValueType == JsonValueType.Number && flyoutPointY.ValueType == JsonValueType.Number) { int flyout_x = (int)flyoutPointX.GetNumber(); int flyout_y = (int)flyoutPointY.GetNumber(); p = new POINT(flyout_x, flyout_y); } } OpenFlyoutCallback(p); } else if (whatToShowJson.ValueType == JsonValueType.String) { OpenMainWindowCallback(App.GetPage(whatToShowJson.GetString())); } } } } internal static void EnsurePageIsSelected() { NavigationService.EnsurePageIsSelected(typeof(DashboardPage)); } private void SetTitleBar() { var u = App.GetSettingsWindow(); if (u != null) { // A custom title bar is required for full window theme and Mica support. // https://docs.microsoft.com/windows/apps/develop/title-bar?tabs=winui3#full-customization u.ExtendsContentIntoTitleBar = true; u.SetTitleBar(AppTitleBar); var loader = ResourceLoaderInstance.ResourceLoader; AppTitleBarText.Text = App.IsElevated ? loader.GetString("SettingsWindow_AdminTitle") : loader.GetString("SettingsWindow_Title"); #if DEBUG DebugMessage.Visibility = Visibility.Visible; #endif } } private void ShellPage_Loaded(object sender, RoutedEventArgs e) { SetTitleBar(); } private void NavigationView_DisplayModeChanged(NavigationView sender, NavigationViewDisplayModeChangedEventArgs args) { if (args.DisplayMode == NavigationViewDisplayMode.Compact || args.DisplayMode == NavigationViewDisplayMode.Minimal) { PaneToggleBtn.Visibility = Visibility.Visible; AppTitleBar.Margin = new Thickness(48, 0, 0, 0); AppTitleBarText.Margin = new Thickness(12, 0, 0, 0); } else { PaneToggleBtn.Visibility = Visibility.Collapsed; AppTitleBar.Margin = new Thickness(16, 0, 0, 0); AppTitleBarText.Margin = new Thickness(16, 0, 0, 0); } } private void PaneToggleBtn_Click(object sender, RoutedEventArgs e) { navigationView.IsPaneOpen = !navigationView.IsPaneOpen; } } }
// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using System.Collections.Generic; using ManagedCommon; using Microsoft.PowerToys.Settings.UI.Helpers; using Microsoft.PowerToys.Settings.UI.Services; using Microsoft.PowerToys.Settings.UI.ViewModels; using Microsoft.UI.Xaml; using Microsoft.UI.Xaml.Automation.Peers; using Microsoft.UI.Xaml.Controls; using Windows.Data.Json; using Windows.System; namespace Microsoft.PowerToys.Settings.UI.Views { /// <summary> /// Root page. /// </summary> public sealed partial class ShellPage : UserControl { /// <summary> /// Declaration for the ipc callback function. /// </summary> /// <param name="msg">message.</param> public delegate void IPCMessageCallback(string msg); /// <summary> /// Declaration for the opening main window callback function. /// </summary> public delegate void MainOpeningCallback(Type type); /// <summary> /// Declaration for the updating the general settings callback function. /// </summary> public delegate bool UpdatingGeneralSettingsCallback(ModuleType moduleType, bool isEnabled); /// <summary> /// Declaration for the opening oobe window callback function. /// </summary> public delegate void OobeOpeningCallback(); /// <summary> /// Declaration for the opening whats new window callback function. /// </summary> public delegate void WhatIsNewOpeningCallback(); /// <summary> /// Declaration for the opening flyout window callback function. /// </summary> public delegate void FlyoutOpeningCallback(POINT? point); /// <summary> /// Declaration for the disabling hide of flyout window callback function. /// </summary> public delegate void DisablingFlyoutHidingCallback(); /// <summary> /// Gets or sets a shell handler to be used to update contents of the shell dynamically from page within the frame. /// </summary> public static ShellPage ShellHandler { get; set; } /// <summary> /// Gets or sets iPC default callback function. /// </summary> public static IPCMessageCallback DefaultSndMSGCallback { get; set; } /// <summary> /// Gets or sets iPC callback function for restart as admin. /// </summary> public static IPCMessageCallback SndRestartAsAdminMsgCallback { get; set; } /// <summary> /// Gets or sets iPC callback function for checking updates. /// </summary> public static IPCMessageCallback CheckForUpdatesMsgCallback { get; set; } /// <summary> /// Gets or sets callback function for opening main window /// </summary> public static MainOpeningCallback OpenMainWindowCallback { get; set; } /// <summary> /// Gets or sets callback function for updating the general settings /// </summary> public static UpdatingGeneralSettingsCallback UpdateGeneralSettingsCallback { get; set; } /// <summary> /// Gets or sets callback function for opening oobe window /// </summary> public static OobeOpeningCallback OpenOobeWindowCallback { get; set; } /// <summary> /// Gets or sets callback function for opening oobe window /// </summary> public static WhatIsNewOpeningCallback OpenWhatIsNewWindowCallback { get; set; } /// <summary> /// Gets or sets callback function for opening flyout window /// </summary> public static FlyoutOpeningCallback OpenFlyoutCallback { get; set; } /// <summary> /// Gets or sets callback function for disabling hide of flyout window /// </summary> public static DisablingFlyoutHidingCallback DisableFlyoutHidingCallback { get; set; } /// <summary> /// Gets view model. /// </summary> public ShellViewModel ViewModel { get; } = new ShellViewModel(); /// <summary> /// Gets a collection of functions that handle IPC responses. /// </summary> public List<System.Action<JsonObject>> IPCResponseHandleList { get; } = new List<System.Action<JsonObject>>(); public static bool IsElevated { get; set; } public static bool IsUserAnAdmin { get; set; } /// <summary> /// Initializes a new instance of the <see cref="ShellPage"/> class. /// Shell page constructor. /// </summary> public ShellPage() { InitializeComponent(); DataContext = ViewModel; ShellHandler = this; ViewModel.Initialize(shellFrame, navigationView, KeyboardAccelerators); // NL moved navigation to general page to the moment when the window is first activated (to not make flyout window disappear) // shellFrame.Navigate(typeof(GeneralPage)); IPCResponseHandleList.Add(ReceiveMessage); SetTitleBar(); } public static int SendDefaultIPCMessage(string msg) { DefaultSndMSGCallback?.Invoke(msg); return 0; } public static int SendCheckForUpdatesIPCMessage(string msg) { CheckForUpdatesMsgCallback?.Invoke(msg); return 0; } public static int SendRestartAdminIPCMessage(string msg) { SndRestartAsAdminMsgCallback?.Invoke(msg); return 0; } /// <summary> /// Set Default IPC Message callback function. /// </summary> /// <param name="implementation">delegate function implementation.</param> public static void SetDefaultSndMessageCallback(IPCMessageCallback implementation) { DefaultSndMSGCallback = implementation; } /// <summary> /// Set restart as admin IPC callback function. /// </summary> /// <param name="implementation">delegate function implementation.</param> public static void SetRestartAdminSndMessageCallback(IPCMessageCallback implementation) { SndRestartAsAdminMsgCallback = implementation; } /// <summary> /// Set check for updates IPC callback function. /// </summary> /// <param name="implementation">delegate function implementation.</param> public static void SetCheckForUpdatesMessageCallback(IPCMessageCallback implementation) { CheckForUpdatesMsgCallback = implementation; } /// <summary> /// Set main window opening callback function /// </summary> /// <param name="implementation">delegate function implementation.</param> public static void SetOpenMainWindowCallback(MainOpeningCallback implementation) { OpenMainWindowCallback = implementation; } /// <summary> /// Set updating the general settings callback function /// </summary> /// <param name="implementation">delegate function implementation.</param> public static void SetUpdatingGeneralSettingsCallback(UpdatingGeneralSettingsCallback implementation) { UpdateGeneralSettingsCallback = implementation; } /// <summary> /// Set oobe opening callback function /// </summary> /// <param name="implementation">delegate function implementation.</param> public static void SetOpenOobeCallback(OobeOpeningCallback implementation) { OpenOobeWindowCallback = implementation; } /// <summary> /// Set whats new opening callback function /// </summary> /// <param name="implementation">delegate function implementation.</param> public static void SetOpenWhatIsNewCallback(WhatIsNewOpeningCallback implementation) { OpenWhatIsNewWindowCallback = implementation; } /// <summary> /// Set flyout opening callback function /// </summary> /// <param name="implementation">delegate function implementation.</param> public static void SetOpenFlyoutCallback(FlyoutOpeningCallback implementation) { OpenFlyoutCallback = implementation; } /// <summary> /// Set disable flyout hiding callback function /// </summary> /// <param name="implementation">delegate function implementation.</param> public static void SetDisableFlyoutHidingCallback(DisablingFlyoutHidingCallback implementation) { DisableFlyoutHidingCallback = implementation; } public static void SetElevationStatus(bool isElevated) { IsElevated = isElevated; } public static void SetIsUserAnAdmin(bool isAdmin) { IsUserAnAdmin = isAdmin; } public static void Navigate(Type type) { NavigationService.Navigate(type); } public void Refresh() { shellFrame.Navigate(typeof(DashboardPage)); } // Tell the current page view model to update public void SignalGeneralDataUpdate() { IRefreshablePage currentPage = shellFrame?.Content as IRefreshablePage; if (currentPage != null) { currentPage.RefreshEnabledState(); } } private void OobeButton_Click(object sender, RoutedEventArgs e) { OpenOobeWindowCallback(); } private bool navigationViewInitialStateProcessed; // avoid announcing initial state of the navigation pane. private void NavigationView_PaneOpened(Microsoft.UI.Xaml.Controls.NavigationView sender, object args) { if (!navigationViewInitialStateProcessed) { navigationViewInitialStateProcessed = true; return; } var peer = FrameworkElementAutomationPeer.FromElement(sender); if (peer == null) { peer = FrameworkElementAutomationPeer.CreatePeerForElement(sender); } if (AutomationPeer.ListenerExists(AutomationEvents.MenuOpened)) { var loader = Helpers.ResourceLoaderInstance.ResourceLoader; peer.RaiseNotificationEvent( AutomationNotificationKind.ActionCompleted, AutomationNotificationProcessing.ImportantMostRecent, loader.GetString("Shell_NavigationMenu_Announce_Open"), "navigationMenuPaneOpened"); } } private void NavigationView_PaneClosed(Microsoft.UI.Xaml.Controls.NavigationView sender, object args) { if (!navigationViewInitialStateProcessed) { navigationViewInitialStateProcessed = true; return; } var peer = FrameworkElementAutomationPeer.FromElement(sender); if (peer == null) { peer = FrameworkElementAutomationPeer.CreatePeerForElement(sender); } if (AutomationPeer.ListenerExists(AutomationEvents.MenuClosed)) { var loader = Helpers.ResourceLoaderInstance.ResourceLoader; peer.RaiseNotificationEvent( AutomationNotificationKind.ActionCompleted, AutomationNotificationProcessing.ImportantMostRecent, loader.GetString("Shell_NavigationMenu_Announce_Collapse"), "navigationMenuPaneClosed"); } } private void OOBEItem_Tapped(object sender, Microsoft.UI.Xaml.Input.TappedRoutedEventArgs e) { OpenOobeWindowCallback(); } private async void FeedbackItem_Tapped(object sender, Microsoft.UI.Xaml.Input.TappedRoutedEventArgs e) { await Launcher.LaunchUriAsync(new Uri("https://aka.ms/powerToysGiveFeedback")); } private void WhatIsNewItem_Tapped(object sender, Microsoft.UI.Xaml.Input.TappedRoutedEventArgs e) { OpenWhatIsNewWindowCallback(); } private void NavigationView_SelectionChanged(NavigationView sender, NavigationViewSelectionChangedEventArgs args) { NavigationViewItem selectedItem = args.SelectedItem as NavigationViewItem; if (selectedItem != null) { Type pageType = selectedItem.GetValue(NavHelper.NavigateToProperty) as Type; NavigationService.Navigate(pageType); } } private void ReceiveMessage(JsonObject json) { if (json != null) { IJsonValue whatToShowJson; if (json.TryGetValue("ShowYourself", out whatToShowJson)) { if (whatToShowJson.ValueType == JsonValueType.String && whatToShowJson.GetString().Equals("flyout", StringComparison.Ordinal)) { POINT? p = null; IJsonValue flyoutPointX; IJsonValue flyoutPointY; if (json.TryGetValue("x_position", out flyoutPointX) && json.TryGetValue("y_position", out flyoutPointY)) { if (flyoutPointX.ValueType == JsonValueType.Number && flyoutPointY.ValueType == JsonValueType.Number) { int flyout_x = (int)flyoutPointX.GetNumber(); int flyout_y = (int)flyoutPointY.GetNumber(); p = new POINT(flyout_x, flyout_y); } } OpenFlyoutCallback(p); } else if (whatToShowJson.ValueType == JsonValueType.String) { OpenMainWindowCallback(App.GetPage(whatToShowJson.GetString())); } } } } internal static void EnsurePageIsSelected() { NavigationService.EnsurePageIsSelected(typeof(DashboardPage)); } private void SetTitleBar() { var u = App.GetSettingsWindow(); if (u != null) { // A custom title bar is required for full window theme and Mica support. // https://docs.microsoft.com/windows/apps/develop/title-bar?tabs=winui3#full-customization u.ExtendsContentIntoTitleBar = true; u.SetTitleBar(AppTitleBar); var loader = ResourceLoaderInstance.ResourceLoader; AppTitleBarText.Text = App.IsElevated ? loader.GetString("SettingsWindow_AdminTitle") : loader.GetString("SettingsWindow_Title"); #if DEBUG DebugMessage.Visibility = Visibility.Visible; #endif } } private void ShellPage_Loaded(object sender, RoutedEventArgs e) { SetTitleBar(); } private void NavigationView_DisplayModeChanged(NavigationView sender, NavigationViewDisplayModeChangedEventArgs args) { if (args.DisplayMode == NavigationViewDisplayMode.Compact || args.DisplayMode == NavigationViewDisplayMode.Minimal) { PaneToggleBtn.Visibility = Visibility.Visible; AppTitleBar.Margin = new Thickness(48, 0, 0, 0); AppTitleBarText.Margin = new Thickness(12, 0, 0, 0); } else { PaneToggleBtn.Visibility = Visibility.Collapsed; AppTitleBar.Margin = new Thickness(16, 0, 0, 0); AppTitleBarText.Margin = new Thickness(16, 0, 0, 0); } } private void PaneToggleBtn_Click(object sender, RoutedEventArgs e) { navigationView.IsPaneOpen = !navigationView.IsPaneOpen; } } }
iakrayna
949b9a61856e340a4367be54dc405b4d3574f280
1a8007ca0a5d420f6b6f9c832f4da266da86ca76
Fixed per recommendation
iakrayna
343
microsoft/PowerToys
29,028
Adds a link to the OOBE What's New Section in the ShellPage Navigation
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request Adds an "About this App" in the ShellPage that redirects to the What's New section of the OOBE Page. Links Issue 17611 <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [ ] **Closes:** #17611 - [ ] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected - [ ] **Tests:** Added/updated and all pass - [ ] **Localization:** All end user facing strings can be localized - [ ] **Dev docs:** Added/updated - [ ] **New binaries:** Added on the required places - [ ] [JSON for signing](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ESRPSigning_core.json) for new binaries - [ ] [WXS for installer](https://github.com/microsoft/PowerToys/blob/main/installer/PowerToysSetup/Product.wxs) for new binaries and localization folder - [ ] [YML for CI pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ci/templates/build-powertoys-steps.yml) for new test projects - [ ] [YML for signed pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/release.yml) - [ ] **Documentation updated:** If checked, please file a pull request on [our docs repo](https://github.com/MicrosoftDocs/windows-uwp/tree/docs/hub/powertoys) and link it here: #xxx <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed
null
2023-10-05 01:38:43+00:00
2023-11-21 19:19:12+00:00
src/settings-ui/Settings.UI/Strings/en-us/Resources.resw
<?xml version="1.0" encoding="utf-8"?> <root> <!-- Microsoft ResX Schema Version 2.0 The primary goals of this format is to allow a simple XML format that is mostly human readable. The generation and parsing of the various data types are done through the TypeConverter classes associated with the data types. Example: ... ado.net/XML headers & schema ... <resheader name="resmimetype">text/microsoft-resx</resheader> <resheader name="version">2.0</resheader> <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader> <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader> <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data> <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data> <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64"> <value>[base64 mime encoded serialized .NET Framework object]</value> </data> <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value> <comment>This is a comment</comment> </data> There are any number of "resheader" rows that contain simple name/value pairs. Each data row contains a name, and value. The row also contains a type or mimetype. Type corresponds to a .NET class that support text/value conversion through the TypeConverter architecture. Classes that don't support this are serialized and stored with the mimetype set. The mimetype is used for serialized objects, and tells the ResXResourceReader how to depersist the object. This is currently not extensible. For a given mimetype the value must be set accordingly: Note - application/x-microsoft.net.object.binary.base64 is the format that the ResXResourceWriter will generate, however the reader can read any of the formats listed below. mimetype: application/x-microsoft.net.object.binary.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.soap.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Soap.SoapFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.bytearray.base64 value : The object must be serialized into a byte array : using a System.ComponentModel.TypeConverter : and then encoded with base64 encoding. --> <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> <xsd:import namespace="http://www.w3.org/XML/1998/namespace" /> <xsd:element name="root" msdata:IsDataSet="true"> <xsd:complexType> <xsd:choice maxOccurs="unbounded"> <xsd:element name="metadata"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" /> </xsd:sequence> <xsd:attribute name="name" use="required" type="xsd:string" /> <xsd:attribute name="type" type="xsd:string" /> <xsd:attribute name="mimetype" type="xsd:string" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="assembly"> <xsd:complexType> <xsd:attribute name="alias" type="xsd:string" /> <xsd:attribute name="name" type="xsd:string" /> </xsd:complexType> </xsd:element> <xsd:element name="data"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" /> <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="resheader"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" /> </xsd:complexType> </xsd:element> </xsd:choice> </xsd:complexType> </xsd:element> </xsd:schema> <resheader name="resmimetype"> <value>text/microsoft-resx</value> </resheader> <resheader name="version"> <value>2.0</value> </resheader> <resheader name="reader"> <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <resheader name="writer"> <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <data name="Attribution_Rooler.Text" xml:space="preserve"> <value>Inspired by Rooler</value> <comment>Rooler is a name of the tool.</comment> </data> <data name="Shell_VideoConference.Content" xml:space="preserve"> <value>Video Conference Mute</value> <comment>Navigation view item name for Video Conference</comment> </data> <data name="Shell_MeasureTool.Content" xml:space="preserve"> <value>Screen Ruler</value> <comment>Product name: Navigation view item name for Screen Ruler</comment> </data> <data name="MeasureTool.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="MeasureTool.ModuleDescription" xml:space="preserve"> <value>Screen Ruler is a quick and easy way to measure pixels on your screen.</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool.ModuleTitle" xml:space="preserve"> <value>Screen Ruler</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool_ActivationSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="MeasureTool_Settings.Header" xml:space="preserve"> <value>Behavior</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MeasureTool_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to bring up the command bar</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool_DefaultMeasureStyle.Header" xml:space="preserve"> <value>Default measure style</value> </data> <data name="MeasureTool_DefaultMeasureStyle.Description" xml:space="preserve"> <value>The utility will start having the selected style activated</value> </data> <data name="MeasureTool_DefaultMeasureStyle_None.Content" xml:space="preserve"> <value>None</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Bounds.Content" xml:space="preserve"> <value>Bounds</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Spacing.Content" xml:space="preserve"> <value>Spacing</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Horizontal_Spacing.Content" xml:space="preserve"> <value>Horizontal spacing</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Vertical_Spacing.Content" xml:space="preserve"> <value>Vertical spacing</value> </data> <data name="MeasureTool_UnitsOfMeasure.Header" xml:space="preserve"> <value>Units of measurement</value> </data> <data name="MeasureTool_UnitsOfMeasure_Pixels.Content" xml:space="preserve"> <value>Pixels</value> </data> <data name="MeasureTool_UnitsOfMeasure_Inches.Content" xml:space="preserve"> <value>Inches</value> </data> <data name="MeasureTool_UnitsOfMeasure_Centimeters.Content" xml:space="preserve"> <value>Centimeters</value> </data> <data name="MeasureTool_PixelTolerance.Header" xml:space="preserve"> <value>Pixel tolerance for edge detection</value> </data> <data name="MeasureTool_MeasureCrossColor.Header" xml:space="preserve"> <value>Line color</value> </data> <data name="MeasureTool_ContinuousCapture.Header" xml:space="preserve"> <value>Capture screen continuously during measuring</value> </data> <data name="MeasureTool_ContinuousCapture.Description" xml:space="preserve"> <value>Refresh screen contexts in real-time instead of making a screenshot once</value> </data> <data name="MeasureTool_PerColorChannelEdgeDetection.Header" xml:space="preserve"> <value>Per color channel edge detection</value> </data> <data name="MeasureTool_PerColorChannelEdgeDetection.Description" xml:space="preserve"> <value>If enabled, test that all color channels are within a tolerance distance from each other. Otherwise, check that the sum of all color channels differences is smaller than the tolerance.</value> </data> <data name="MeasureTool_DrawFeetOnCross.Header" xml:space="preserve"> <value>Draw feet on cross</value> </data> <data name="MeasureTool_DrawFeetOnCross.Description" xml:space="preserve"> <value>Adds feet to the end of cross lines</value> </data> <data name="MeasureTool_EnableMeasureTool.Header" xml:space="preserve"> <value>Enable Screen Ruler</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MouseWithoutBorders_ActivationSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="MouseWithoutBorders_DeviceLayoutSettings.Header" xml:space="preserve"> <value>Device layout</value> </data> <data name="MouseWithoutBorders_DeviceLayoutSettings.Description" xml:space="preserve"> <value>Drag and drop a machine to rearrange the order.</value> </data> <data name="MouseWithoutBorders_CannotDragDropAsAdmin.Title" xml:space="preserve"> <value>It is not possible to use drag and drop while running PowerToys elevated. As a workaround, please restart PowerToys without elevation to edit the device layout.</value> </data> <data name="MouseWithoutBorders_KeySettings.Header" xml:space="preserve"> <value>Encryption key</value> </data> <data name="MouseWithoutBorders_SecurityKey.Header" xml:space="preserve"> <value>Security key</value> </data> <data name="MouseWithoutBorders_SecurityKey.Description" xml:space="preserve"> <value>The key must be auto generated in one machine by clicking on New Key, then typed in other machines</value> </data> <data name="MouseWithoutBorders_NewKey.Content" xml:space="preserve"> <value>New key</value> </data> <data name="MouseWithoutBorders_CopyMachineName.Text" xml:space="preserve"> <value>Copy to clipboard</value> </data> <data name="MouseWithoutBorders_ReconnectButton.Text" xml:space="preserve"> <value>Refresh connections</value> </data> <data name="MouseWithoutBorders_ReconnectTooltip.Text" xml:space="preserve"> <value>Reestablishes connections with other devices if you are experiencing issues.</value> </data> <data name="MouseWithoutBorders_ThisMachineNameLabel.Header" xml:space="preserve"> <value>Host name of this device</value> </data> <data name="MouseWithoutBorders_Connect.Content" xml:space="preserve"> <value>Connect</value> </data> <data name="MouseWithoutBorders_UninstallService.Header" xml:space="preserve"> <value>Uninstall service</value> </data> <data name="MouseWithoutBorders_UninstallService.Description" xml:space="preserve"> <value>Removes the service from the computer. Needs to run as administrator.</value> </data> <data name="MouseWithoutBorders_Settings.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="MouseWithoutBorders_TroubleShooting.Header" xml:space="preserve"> <value>Troubleshooting</value> </data> <data name="MouseWithoutBorders_AddFirewallRuleButtonControl.Header" xml:space="preserve"> <value>Add a firewall rule for Mouse Without Borders</value> <comment>"Mouse Without Borders" is a product name</comment> </data> <data name="MouseWithoutBorders_AddFirewallRuleButtonControl.Description" xml:space="preserve"> <value>Adding a firewall rule might help solve connection issues.</value> </data> <data name="MouseWithoutBorders_RunAsAdminText.Title" xml:space="preserve"> <value>You need to run as administrator to modify this setting.</value> </data> <data name="MouseWithoutBorders_ServiceUserUninstallWarning.Title" xml:space="preserve"> <value>If PowerToys is installed as a user, uninstalling/upgrading may require the Mouse Without Borders service to be removed manually later.</value> </data> <data name="MouseWithoutBorders_ServiceSettings.Header" xml:space="preserve"> <value>Service</value> </data> <data name="MouseWithoutBorders_Toggle_Enable.Header" xml:space="preserve"> <value>Enable Mouse Without Borders</value> </data> <data name="MouseWithoutBorders.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="MouseWithoutBorders.ModuleDescription" xml:space="preserve"> <value>Mouse Without Borders is a quick and easy way to move your cursor across multiple devices.</value> <comment>"Mouse Without Borders" is the name of the utility</comment> </data> <data name="MouseWithoutBorders.ModuleTitle" xml:space="preserve"> <value>Mouse Without Borders</value> <comment>"Mouse Without Borders" is the name of the utility</comment> </data> <data name="MouseWithoutBorders_UseService.Header" xml:space="preserve"> <value>Use Service</value> </data> <data name="MouseWithoutBorders_UseService.Description" xml:space="preserve"> <value>Runs in service mode, that allows MWB to control remote machines when they're locked. Also allows control of system and administrator applications.</value> </data> <data name="MouseWithoutBorders_MatrixOneRow.Header" xml:space="preserve"> <value>Devices in a single row</value> </data> <data name="MouseWithoutBorders_MatrixOneRow.Description" xml:space="preserve"> <value>Sets whether the devices are aligned on a single row. A two by two matrix is considered otherwise.</value> </data> <data name="MouseWithoutBorders_WrapMouse.Header" xml:space="preserve"> <value>Wrap mouse</value> </data> <data name="MouseWithoutBorders_WrapMouse.Description" xml:space="preserve"> <value>Move control back to the first machine when mouse moves past the last one.</value> </data> <data name="MouseWithoutBorders_ShareClipboard.Header" xml:space="preserve"> <value>Share clipboard</value> </data> <data name="MouseWithoutBorders_TransferFile.Header" xml:space="preserve"> <value>Transfer file</value> </data> <data name="MouseWithoutBorders_HideMouseAtScreenEdge.Header" xml:space="preserve"> <value>Hide mouse at the screen edge</value> </data> <data name="MouseWithoutBorders_DrawMouseCursor.Header" xml:space="preserve"> <value>Draw mouse cursor</value> </data> <data name="MouseWithoutBorders_ValidateRemoteMachineIP.Header" xml:space="preserve"> <value>Validate remote machine IP</value> </data> <data name="MouseWithoutBorders_SameSubnetOnly.Header" xml:space="preserve"> <value>Same subnet only</value> </data> <data name="MouseWithoutBorders_BlockScreenSaverOnOtherMachines.Header" xml:space="preserve"> <value>Block screen saver on other machines</value> </data> <data name="MouseWithoutBorders_MoveMouseRelatively.Header" xml:space="preserve"> <value>Move mouse relatively</value> </data> <data name="MouseWithoutBorders_BlockMouseAtScreenCorners.Header" xml:space="preserve"> <value>Block mouse at screen corners</value> </data> <data name="MouseWithoutBorders_ShowClipboardAndNetworkStatusMessages.Header" xml:space="preserve"> <value>Show clipboard and network status messages</value> </data> <data name="MouseWithoutBorders_ShowOriginalUI.Header" xml:space="preserve"> <value>Show the original Mouse Without Borders UI</value> </data> <data name="MouseWithoutBorders_ShowOriginalUI.Description" xml:space="preserve"> <value>This is accessible from the system tray and requires a restart.</value> </data> <data name="MouseWithoutBorders_ShareClipboard.Description" xml:space="preserve"> <value>If share clipboard stops working, Ctrl+Alt+Del then Esc may solve the problem.</value> </data> <data name="MouseWithoutBorders_TransferFile.Description" xml:space="preserve"> <value>If a file (&lt;100MB) is copied, it will be transferred to the remote machine clipboard.</value> </data> <data name="MouseWithoutBorders_HideMouseAtScreenEdge.Description" xml:space="preserve"> <value>Hide the mouse cursor at the top edge of the screen when switching to other machine. This option also steals the focus from any full-screen app to ensure the keyboard input is redirected.</value> </data> <data name="MouseWithoutBorders_DrawMouseCursor.Description" xml:space="preserve"> <value>Mouse cursor may not be visible in Windows 10 and later versions of Windows when there is no physical mouse attached.</value> </data> <data name="MouseWithoutBorders_ValidateRemoteMachineIP.Description" xml:space="preserve"> <value>Reverse DNS lookup to validate machine IP Address.</value> </data> <data name="MouseWithoutBorders_SameSubnetOnly.Description" xml:space="preserve"> <value>Only connect to machines in the same intranet NNN.NNN.*.* (only works when both machines have IPv4 enabled)</value> </data> <data name="MouseWithoutBorders_IPAddressMapping_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: MyLaptop 192.168.0.24</value> <comment>Don't translate MyLaptop</comment> </data> <data name="MouseWithoutBorders_IPAddressMapping.Header" xml:space="preserve"> <value>IP address mapping</value> </data> <data name="MouseWithoutBorders_IPAddressMapping.Description" xml:space="preserve"> <value>Resolve machine's IP address using manually entered mappings below.</value> </data> <data name="MouseWithoutBorders_BlockScreenSaverOnOtherMachines.Description" xml:space="preserve"> <value>Prevent screen saver from starting on other machines when user is actively working on this machine.</value> </data> <data name="MouseWithoutBorders_MoveMouseRelatively.Description" xml:space="preserve"> <value>Use this option when remote machine's monitor settings are different, or remote machine has multiple monitors.</value> </data> <data name="MouseWithoutBorders_BlockMouseAtScreenCorners.Description" xml:space="preserve"> <value>To avoid accident machine-switch at screen corners.</value> </data> <data name="MouseWithoutBorders_ShowClipboardAndNetworkStatusMessages.Description" xml:space="preserve"> <value>Show clipboard activities and network status in system tray notifications</value> </data> <data name="MouseWithoutBorders_KeyboardShortcuts_Group.Header" xml:space="preserve"> <value>Keyboard shortcuts</value> <comment>keyboard is the hardware peripheral</comment> </data> <data name="MouseWithoutBorders_AdvancedSettings_Group.Header" xml:space="preserve"> <value>Advanced Settings</value> </data> <data name="MouseWithoutBorders_EasyMouseOption.Header" xml:space="preserve"> <value>Easy Mouse: move between machines by moving the mouse pointer to the screen edges.</value> </data> <data name="MouseWithoutBorders_EasyMouseOption.Description" xml:space="preserve"> <value>Can also be set to move only when pressing Shift or Ctrl.</value> <comment>Shift and Ctrl are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_EasyMouseOption_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_EasyMouseOption_Enabled.Content" xml:space="preserve"> <value>Enabled</value> </data> <data name="MouseWithoutBorders_EasyMouseOption_Ctrl.Content" xml:space="preserve"> <value>Ctrl</value> <comment>This is the Ctrl keyboard key</comment> </data> <data name="MouseWithoutBorders_EasyMouseOption_Shift.Content" xml:space="preserve"> <value>Shift</value> <comment>This is the Shift keyboard key</comment> </data> <data name="MouseWithoutBorders_LockMachinesShortcut.Header" xml:space="preserve"> <value>Shortcut to lock all machines.</value> </data> <data name="MouseWithoutBorders_LockMachinesShortcut.Description" xml:space="preserve"> <value>Hit this hotkey twice to lock all machines. Note: Only the machines which have the same shortcut configured will be locked.</value> </data> <data name="MouseWithoutBorders_ToggleEasyMouseShortcut.Header" xml:space="preserve"> <value>Shortcut to toggle Easy Mouse.</value> <comment>Ctrl and Alt are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_ToggleEasyMouseShortcut.Description" xml:space="preserve"> <value>Only works if EasyMouse is set to Enabled or Disabled.</value> </data> <data name="MouseWithoutBorders_ToggleEasyMouseShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut.Header" xml:space="preserve"> <value>Shortcut to switch between machines. Ctrl+Alt+:</value> <comment>Ctrl and Alt are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut.Description" xml:space="preserve"> <value>Click on Ctrl+Alt+ the chosen option to switch between machines.</value> <comment>Ctrl and Alt are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut_F1.Content" xml:space="preserve"> <value>F1, F2, F3, F4</value> <comment>Don't localize. These are keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut_1.Content" xml:space="preserve"> <value>1, 2, 3, 4</value> <comment>Don't localize. These are keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_LockMachinesShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_ReconnectShortcut.Header" xml:space="preserve"> <value>Shortcut to try reconnecting</value> </data> <data name="MouseWithoutBorders_ReconnectShortcut.Description" xml:space="preserve"> <value>Just in case the connection is lost for any reason.</value> </data> <data name="MouseWithoutBorders_ReconnectShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut.Header" xml:space="preserve"> <value>Shortcut to switch to multiple machine mode.</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut.Description" xml:space="preserve"> <value>Allows controlling all computers at once.</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut_Ctrl3.Content" xml:space="preserve"> <value>Ctrl three times</value> <comment>This is the Ctrl keyboard key</comment> </data> <data name="VideoConference_Enable.Header" xml:space="preserve"> <value>Enable Video Conference Mute</value> </data> <data name="VideoConference.ModuleDescription" xml:space="preserve"> <value>Video Conference Mute is a quick and easy way to do a global "mute" of both your microphone and webcam. Disabling this module or closing PowerToys will unmute the microphone and camera.</value> </data> <data name="VideoConference_CameraAndMicrophoneMuteHotkeyControl_Header.Header" xml:space="preserve"> <value>Mute camera &amp; microphone</value> </data> <data name="VideoConference_MicrophoneMuteHotkeyControl_Header.Header" xml:space="preserve"> <value>Mute microphone</value> </data> <data name="VideoConference_MicrophonePushToTalkHotkeyControl_Header.Header" xml:space="preserve"> <value>Push to talk</value> </data> <data name="VideoConference_CameraMuteHotkeyControl_Header.Header" xml:space="preserve"> <value>Mute camera</value> </data> <data name="VideoConference_SelectedCamera.Header" xml:space="preserve"> <value>Selected camera</value> </data> <data name="VideoConference_SelectedMicrophone.Header" xml:space="preserve"> <value>Selected microphone</value> </data> <data name="VideoConference_PushToReverse.Header" xml:space="preserve"> <value>Push to reverse</value> </data> <data name="VideoConference_PushToReverse.Description" xml:space="preserve"> <value>If enabled, allows both push to talk and push to mute, depending on microphone state</value> </data> <data name="VideoConference_CameraOverlayImagePathHeader.Header" xml:space="preserve"> <value>Image displayed when camera is muted</value> </data> <data name="VideoConference_ToolbarPosition.Header" xml:space="preserve"> <value>Toolbar position</value> </data> <data name="VideoConference_ToolbarPosition_TopCenter.Content" xml:space="preserve"> <value>Top center</value> </data> <data name="VideoConference_ToolbarPosition_TopLeftCorner.Content" xml:space="preserve"> <value>Top left corner</value> </data> <data name="VideoConference_ToolbarPosition_TopRightCorner.Content" xml:space="preserve"> <value>Top right corner</value> </data> <data name="VideoConference_ToolbarPosition_BottomLeftCorner.Content" xml:space="preserve"> <value>Bottom left corner</value> </data> <data name="VideoConference_ToolbarPosition_BottomCenter.Content" xml:space="preserve"> <value>Bottom center</value> </data> <data name="VideoConference_ToolbarPosition_BottomRightCorner.Content" xml:space="preserve"> <value>Bottom right corner</value> </data> <data name="VideoConference_ToolbarMonitor.Header" xml:space="preserve"> <value>Show toolbar on</value> </data> <data name="VideoConference_ToolbarMonitor_Main.Content" xml:space="preserve"> <value>Main monitor</value> </data> <data name="VideoConference_ToolbarMonitor_UnderCursor.Content" xml:space="preserve"> <value>Monitor under cursor</value> </data> <data name="VideoConference_ToolbarMonitor_ActiveWindow.Content" xml:space="preserve"> <value>Active window monitor</value> </data> <data name="VideoConference_ToolbarMonitor_All.Content" xml:space="preserve"> <value>All monitors</value> </data> <data name="VideoConference_ToolbarHide.Header" xml:space="preserve"> <value>Hide toolbar</value> </data> <data name="VideoConference_ToolbarHideMuted.Content" xml:space="preserve"> <value>When both camera and microphone are muted</value> </data> <data name="VideoConference_ToolbarHideNever.Content" xml:space="preserve"> <value>Never</value> </data> <data name="VideoConference_ToolbarHideUnmuted.Content" xml:space="preserve"> <value>When both camera and microphone are unmuted</value> </data> <data name="VideoConference_ToolbarHideTimeout.Content" xml:space="preserve"> <value>After timeout</value> </data> <data name="VideoConference.ModuleTitle" xml:space="preserve"> <value>Video Conference Mute</value> </data> <data name="VideoConference_Camera.Header" xml:space="preserve"> <value>Camera</value> </data> <data name="VideoConference_Camera.Description" xml:space="preserve"> <value>To use this feature, make sure to select PowerToys VideoConference Mute as your camera source in your apps.</value> </data> <data name="VideoConference_Microphone.Header" xml:space="preserve"> <value>Microphone</value> </data> <data name="VideoConference_Toolbar.Header" xml:space="preserve"> <value>Toolbar</value> </data> <data name="VideoConference_Behavior.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="VideoConference_StartupAction.Header" xml:space="preserve"> <value>Startup action</value> </data> <data name="VideoConference_StartupActionNothing.Content" xml:space="preserve"> <value>Nothing</value> </data> <data name="VideoConference_StartupActionUnmute.Content" xml:space="preserve"> <value>Unmute</value> </data> <data name="VideoConference_StartupActionMute.Content" xml:space="preserve"> <value>Mute</value> </data> <data name="VideoConference_Shortcuts.Header" xml:space="preserve"> <value>Shortcuts</value> </data> <data name="VideoConference_CameraOverlayImageAlt.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Camera overlay image preview</value> </data> <data name="VideoConference_CameraOverlayImageBrowse.Content" xml:space="preserve"> <value>Browse</value> </data> <data name="VideoConference_CameraOverlayImageClear.Content" xml:space="preserve"> <value>Clear</value> </data> <data name="Shell_General.Content" xml:space="preserve"> <value>General</value> <comment>Navigation view item name for General</comment> </data> <data name="Shell_Awake.Content" xml:space="preserve"> <value>Awake</value> <comment>Product name: Navigation view item name for Awake</comment> </data> <data name="Shell_PowerLauncher.Content" xml:space="preserve"> <value>PowerToys Run</value> <comment>Product name: Navigation view item name for PowerToys Run</comment> </data> <data name="Shell_PowerRename.Content" xml:space="preserve"> <value>PowerRename</value> <comment>Product name: Navigation view item name for PowerRename</comment> </data> <data name="Shell_ShortcutGuide.Content" xml:space="preserve"> <value>Shortcut Guide</value> <comment>Product name: Navigation view item name for Shortcut Guide</comment> </data> <data name="Shell_PowerPreview.Content" xml:space="preserve"> <value>File Explorer add-ons</value> <comment>Product name: Navigation view item name for File Explorer. Please use File Explorer as in the context of File Explorer in Windows</comment> </data> <data name="Shell_FancyZones.Content" xml:space="preserve"> <value>FancyZones</value> <comment>Product name: Navigation view item name for FancyZones</comment> </data> <data name="Shell_ImageResizer.Content" xml:space="preserve"> <value>Image Resizer</value> <comment>Product name: Navigation view item name for Image Resizer</comment> </data> <data name="Shell_ColorPicker.Content" xml:space="preserve"> <value>Color Picker</value> <comment>Product name: Navigation view item name for Color Picker</comment> </data> <data name="Shell_KeyboardManager.Content" xml:space="preserve"> <value>Keyboard Manager</value> <comment>Product name: Navigation view item name for Keyboard Manager</comment> </data> <data name="Shell_MouseWithoutBorders.Content" xml:space="preserve"> <value>Mouse Without Borders</value> <comment>Product name: Navigation view item name for Mouse Without Borders</comment> </data> <data name="Shell_MouseUtilities.Content" xml:space="preserve"> <value>Mouse utilities</value> <comment>Product name: Navigation view item name for Mouse utilities</comment> </data> <data name="Shell_NavigationMenu_Announce_Collapse" xml:space="preserve"> <value>Navigation closed</value> <comment>Accessibility announcement when the navigation pane collapses</comment> </data> <data name="Shell_NavigationMenu_Announce_Open" xml:space="preserve"> <value>Navigation opened</value> <comment>Accessibility announcement when the navigation pane opens</comment> </data> <data name="KeyboardManager_ConfigHeader.Text" xml:space="preserve"> <value>Current configuration</value> <comment>Keyboard Manager current configuration header</comment> </data> <data name="KeyboardManager.ModuleDescription" xml:space="preserve"> <value>Reconfigure your keyboard by remapping keys and shortcuts</value> <comment>Keyboard Manager page description</comment> </data> <data name="KeyboardManager_EnableToggle.Header" xml:space="preserve"> <value>Enable Keyboard Manager</value> <comment>Keyboard Manager enable toggle header. Do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="KeyboardManager_ProfileDescription.Text" xml:space="preserve"> <value>Select the profile to display the active key remap and shortcuts</value> <comment>Keyboard Manager configuration dropdown description</comment> </data> <data name="KeyboardManager_RemapKeyboardButton.Header" xml:space="preserve"> <value>Remap a key</value> <comment>Keyboard Manager remap keyboard button content</comment> </data> <data name="KeyboardManager_Keys.Header" xml:space="preserve"> <value>Keys</value> <comment>Keyboard Manager remap keyboard header</comment> </data> <data name="KeyboardManager_RemapShortcutsButton.Header" xml:space="preserve"> <value>Remap a shortcut</value> <comment>Keyboard Manager remap shortcuts button</comment> </data> <data name="KeyboardManager_Shortcuts.Header" xml:space="preserve"> <value>Shortcuts</value> <comment>Keyboard Manager remap keyboard header</comment> </data> <data name="KeyboardManager_All_Apps_Description" xml:space="preserve"> <value>All Apps</value> <comment>Should be the same as EditShortcuts_AllApps from keyboard manager editor</comment> </data> <data name="Shortcuts.Header" xml:space="preserve"> <value>Shortcuts</value> </data> <data name="Shortcut.Header" xml:space="preserve"> <value>Shortcut</value> </data> <data name="RemapKeysList.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Current Key Remappings</value> </data> <data name="RemapShortcutsList.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Current Shortcut Remappings</value> </data> <data name="KeyboardManager_RemappedKeysListItem.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Key Remapping</value> <comment>key as in keyboard key</comment> </data> <data name="KeyboardManager_RemappedShortcutsListItem.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Shortcut Remapping</value> </data> <data name="KeyboardManager_RemappedTo.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Remapped to</value> </data> <data name="KeyboardManager_ShortcutRemappedTo.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Remapped to</value> </data> <data name="KeyboardManager_TargetApp.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>For Target Application</value> <comment>What computer application would this be for</comment> </data> <data name="KeyboardManager_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Keyboard Manager</value> <comment>do not loc, product name</comment> </data> <data name="ColorPicker.ModuleDescription" xml:space="preserve"> <value>Quick and simple system-wide color picker.</value> </data> <data name="ColorPicker_EnableColorPicker.Header" xml:space="preserve"> <value>Enable Color Picker</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="ColorPicker_ChangeCursor.Content" xml:space="preserve"> <value>Change cursor when picking a color</value> </data> <data name="PowerLauncher.ModuleDescription" xml:space="preserve"> <value>A quick launcher that has additional capabilities without sacrificing performance.</value> </data> <data name="PowerLauncher_EnablePowerLauncher.Header" xml:space="preserve"> <value>Enable PowerToys Run</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="PowerLauncher_SearchResults.Header" xml:space="preserve"> <value>Search &amp; results</value> </data> <data name="PowerLauncher_SearchResultPreference.Header" xml:space="preserve"> <value>Search result preference</value> </data> <data name="PowerLauncher_UsePinyin.Header" xml:space="preserve"> <value>Use Pinyin</value> </data> <data name="PowerLauncher_UsePinyin.Description" xml:space="preserve"> <value>Experimental: Use Pinyin on the search query. May not work for every plugin.</value> </data> <data name="PowerLauncher_SearchResultPreference_MostRecentlyUsed" xml:space="preserve"> <value>Most recently used</value> </data> <data name="PowerLauncher_SearchResultPreference_AlphabeticalOrder" xml:space="preserve"> <value>Alphabetical order</value> </data> <data name="PowerLauncher_SearchResultPreference_RunningProcessesOpenApplications" xml:space="preserve"> <value>Running processes/open applications</value> </data> <data name="PowerLauncher_SearchTypePreference.Header" xml:space="preserve"> <value>Search type preference</value> </data> <data name="PowerLauncher_SearchTypePreference_ApplicationName" xml:space="preserve"> <value>Application name</value> </data> <data name="PowerLauncher_SearchTypePreference_StringInApplication" xml:space="preserve"> <value>A string that is contained in the application</value> </data> <data name="PowerLauncher_SearchTypePreference_ExecutableName" xml:space="preserve"> <value>Executable name</value> </data> <data name="PowerLauncher_MaximumNumberOfResults.Header" xml:space="preserve"> <value>Number of results shown before scrolling</value> </data> <data name="PowerLauncher_OpenPowerLauncher.Header" xml:space="preserve"> <value>Open PowerToys Run</value> </data> <data name="PowerLauncher_OpenFileLocation.Header" xml:space="preserve"> <value>Open file location</value> </data> <data name="PowerLauncher_CopyPathLocation.Header" xml:space="preserve"> <value>Copy path location</value> </data> <data name="PowerLauncher_OpenConsole.Header" xml:space="preserve"> <value>Open console</value> <comment>console refers to Windows command prompt</comment> </data> <data name="PowerLauncher_OverrideWinRKey.Content" xml:space="preserve"> <value>Override Win+R shortcut</value> </data> <data name="PowerLauncher_OverrideWinSKey.Content" xml:space="preserve"> <value>Override Win+S shortcut</value> </data> <data name="PowerLauncher_IgnoreHotkeysInFullScreen.Content" xml:space="preserve"> <value>Ignore shortcuts in fullscreen mode</value> </data> <data name="PowerLauncher_UseCentralizedKeyboardHook.Header" xml:space="preserve"> <value>Use centralized keyboard hook</value> </data> <data name="PowerLauncher_UseCentralizedKeyboardHook.Description" xml:space="preserve"> <value>Try this if there are issues with the shortcut (PowerToys Run might not get focus when triggered from an elevated window)</value> </data> <data name="PowerLauncher_ClearInputOnLaunch.Content" xml:space="preserve"> <value>Clear the previous query on launch</value> </data> <data name="PowerLauncher_TabSelectsContextButtons.Header" xml:space="preserve"> <value>Tab through context buttons</value> </data> <data name="PowerLauncher_TabSelectsContextButtons.Description" xml:space="preserve"> <value>Pressing tab will first select through the available context buttons of the current selection before moving onto the next result</value> </data> <data name="PowerLauncher_GenerateThumbnailsFromFiles.Header" xml:space="preserve"> <value>Generate thumbnails from files</value> </data> <data name="PowerLauncher_GenerateThumbnailsFromFiles.Description" xml:space="preserve"> <value>Results will try to generate thumbnails for files. Disabling this setting may increase stability and speed</value> </data> <data name="PowerLauncher_SearchQueryResultsWithDelay.Header" xml:space="preserve"> <value>Input Smoothing</value> <comment>This is about adding a delay to wait for more input before executing a search</comment> </data> <data name="PowerLauncher_SearchQueryResultsWithDelay.Description" xml:space="preserve"> <value>Wait for more input before searching. This reduces interface jumpiness and system load.</value> </data> <data name="PowerLauncher_FastSearchInputDelayMs.Header" xml:space="preserve"> <value>Immediate plugins</value> </data> <data name="PowerLauncher_FastSearchInputDelayMs.Description" xml:space="preserve"> <value>Affects the plugins that make the UI wait for their results by this amount. Recommended: 30-50 ms.</value> </data> <data name="PowerLauncher_SlowSearchInputDelayMs.Header" xml:space="preserve"> <value>Background execution plugins</value> </data> <data name="PowerLauncher_SlowSearchInputDelayMs.Description" xml:space="preserve"> <value>Affects the plugins that execute in the background by this amount. Recommended: 100-150 ms.</value> </data> <data name="PowerLauncher_SearchInputDelayMs.Header" xml:space="preserve"> <value>Fast plugin throttle (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="KeyboardManager_KeysMappingLayoutRightHeader.Text" xml:space="preserve"> <value>To:</value> <comment>Keyboard Manager mapping keys view right header</comment> </data> <data name="Appearance_GroupSettings.Text" xml:space="preserve"> <value>Appearance</value> </data> <data name="Fancyzones_ImageHyperlinkToDocs.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>FancyZones windows</value> <comment>do not loc the Product name</comment> </data> <data name="FancyZones.ModuleDescription" xml:space="preserve"> <value>Create window layouts to help make multi-tasking easy.</value> <comment>windows refers to application windows</comment> </data> <data name="FancyZones_DisplayOrWorkAreaChangeMoveWindowsCheckBoxControl.Content" xml:space="preserve"> <value>Keep windows in their zones when the screen resolution or work area changes</value> <comment>windows refers to application windows</comment> </data> <data name="FancyZones_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable FancyZones</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="FancyZones_ExcludeApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="FancyZones_ExcludeApps.Description" xml:space="preserve"> <value>Excludes an application from snapping to zones and will only react to Windows Snap - add one application name per line</value> </data> <data name="FancyZones_HighlightOpacity.Header" xml:space="preserve"> <value>Opacity (%)</value> </data> <data name="FancyZones_HotkeyEditorControl.Header" xml:space="preserve"> <value>Open layout editor</value> <comment>Shortcut to launch the FancyZones layout editor application</comment> </data> <data name="FancyZones_WindowSwitching_GroupSettings.Header" xml:space="preserve"> <value>Switch between windows in the current zone</value> </data> <data name="FancyZones_HotkeyNextTabControl.Header" xml:space="preserve"> <value>Next window</value> </data> <data name="FancyZones_HotkeyPrevTabControl.Header" xml:space="preserve"> <value>Previous window</value> </data> <data name="SettingsPage_SetShortcut.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Shortcut setting</value> </data> <data name="SettingsPage_SetShortcut_Glyph.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Information Symbol</value> </data> <data name="FancyZones_LaunchEditorButtonControl.Header" xml:space="preserve"> <value>Launch layout editor</value> <comment>launches the FancyZones layout editor application</comment> </data> <data name="FancyZones_LaunchEditorButtonControl.Description" xml:space="preserve"> <value>Set and manage your layouts</value> <comment>launches the FancyZones layout editor application</comment> </data> <data name="FancyZones_MakeDraggedWindowTransparentCheckBoxControl.Content" xml:space="preserve"> <value>Make dragged window transparent</value> </data> <data name="FancyZones_MouseDragCheckBoxControl_Header.Content" xml:space="preserve"> <value>Use a non-primary mouse button to toggle zone activation</value> </data> <data name="FancyZones_MouseMiddleClickSpanningMultipleZonesCheckBoxControl_Header.Content" xml:space="preserve"> <value>Use middle-click mouse button to toggle multiple zones spanning</value> </data> <data name="FancyZones_MoveWindowsAcrossAllMonitorsCheckBoxControl.Content" xml:space="preserve"> <value>Move windows between zones across all monitors</value> </data> <data name="FancyZones_OverrideSnapHotkeys.Header" xml:space="preserve"> <value>Override Windows Snap</value> </data> <data name="FancyZones_OverrideSnapHotkeys.Description" xml:space="preserve"> <value>This overrides the Windows Snap shortcut (Win + arrow) to move windows between zones</value> </data> <data name="FancyZones_ShiftDragCheckBoxControl_Header.Content" xml:space="preserve"> <value>Hold Shift key to activate zones while dragging a window</value> </data> <data name="FancyZones_ActivationNoShiftDrag" xml:space="preserve"> <value>Drag windows to activate zones</value> </data> <data name="FancyZones_ShowZonesOnAllMonitorsCheckBoxControl.Content" xml:space="preserve"> <value>Show zones on all monitors while dragging a window</value> </data> <data name="FancyZones_AppLastZoneMoveWindows.Content" xml:space="preserve"> <value>Move newly created windows to their last known zone</value> <comment>windows refers to application windows</comment> </data> <data name="FancyZones_OpenWindowOnActiveMonitor.Content" xml:space="preserve"> <value>Move newly created windows to the current active monitor (Experimental)</value> </data> <data name="FancyZones_UseCursorPosEditorStartupScreen.Header" xml:space="preserve"> <value>Launch editor on the display</value> </data> <data name="FancyZones_UseCursorPosEditorStartupScreen.Description" xml:space="preserve"> <value>When using multiple displays</value> </data> <data name="FancyZones_LaunchPositionMouse.Content" xml:space="preserve"> <value>Where the mouse pointer is</value> </data> <data name="FancyZones_LaunchPositionScreen.Content" xml:space="preserve"> <value>With active focus</value> </data> <data name="FancyZones_ZoneBehavior_GroupSettings.Header" xml:space="preserve"> <value>Zone behavior</value> </data> <data name="FancyZones_ZoneBehavior_GroupSettings.Description" xml:space="preserve"> <value>Manage how zones behave when using FancyZones</value> </data> <data name="FancyZones_Zones.Header" xml:space="preserve"> <value>Zones</value> </data> <data name="FancyZones_ZoneHighlightColor.Header" xml:space="preserve"> <value>Highlight color</value> </data> <data name="FancyZones_ZoneSetChangeMoveWindows.Content" xml:space="preserve"> <value>During zone layout changes, windows assigned to a zone will match new size/positions</value> </data> <data name="AttributionTitle.Text" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="General.ModuleTitle" xml:space="preserve"> <value>General</value> </data> <data name="GeneralPage_CheckForUpdates.Content" xml:space="preserve"> <value>Check for updates</value> </data> <data name="General_SettingsBackupAndRestoreLocationText.Header" xml:space="preserve"> <value>Location</value> </data> <data name="General_SettingsBackupAndRestore_ButtonBackup.Content" xml:space="preserve"> <value>Backup</value> </data> <data name="General_SettingsBackupInfo_FileNameHeader.Text" xml:space="preserve"> <value>File name:</value> </data> <data name="General_SettingsBackupAndRestore_LinkRefresh.Text" xml:space="preserve"> <value>Refresh</value> </data> <data name="General_SettingsBackupAndRestore_ButtonRestore.Content" xml:space="preserve"> <value>Restore</value> </data> <data name="General_SettingsBackupAndRestore_ButtonSelectLocation.Text" xml:space="preserve"> <value>Select folder</value> </data> <data name="GeneralPage_UpdateNow.Content" xml:space="preserve"> <value>Update now</value> </data> <data name="GeneralPage_PrivacyStatement_URL.Text" xml:space="preserve"> <value>Privacy statement</value> </data> <data name="GeneralPage_ReportAbug.Text" xml:space="preserve"> <value>Report a bug</value> <comment>Report an issue inside powertoys</comment> </data> <data name="GeneralPage_RequestAFeature_URL.Text" xml:space="preserve"> <value>Request a feature</value> <comment>Tell our team what we should build</comment> </data> <data name="GeneralPage_RestartAsAdmin_Button.Content" xml:space="preserve"> <value>Restart PowerToys as administrator</value> <comment>running PowerToys as a higher level user, account is typically referred to as an admin / administrator</comment> </data> <data name="GeneralPage_RunAtStartUp.Header" xml:space="preserve"> <value>Run at startup</value> </data> <data name="GeneralPage_RunAtStartUp.Description" xml:space="preserve"> <value>PowerToys will launch automatically</value> </data> <data name="PowerRename.ModuleDescription" xml:space="preserve"> <value>A Windows Shell extension for more advanced bulk renaming using search &amp; replace or regular expressions.</value> </data> <data name="PowerRename_ShellIntegration.Header" xml:space="preserve"> <value>Shell integration</value> <comment>This refers to directly integrating in with Windows</comment> </data> <data name="PowerRename_Toggle_Enable.Header" xml:space="preserve"> <value>Enable PowerRename</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="RadioButtons_Name_Theme.Text" xml:space="preserve"> <value>Settings theme</value> </data> <data name="PowerRename_Toggle_HideIcon.Content" xml:space="preserve"> <value>Hide icon in context menu</value> </data> <data name="PowerRename_Toggle_ContextMenu.Header" xml:space="preserve"> <value>Show PowerRename in</value> </data> <data name="PowerRename_Toggle_StandardContextMenu.Content" xml:space="preserve"> <value>Default and extended context menu</value> </data> <data name="PowerRename_Toggle_ExtendedContextMenu.Content" xml:space="preserve"> <value>Extended context menu only</value> </data> <data name="ExtendedContextMenuInfo.Title" xml:space="preserve"> <value>Press Shift + right-click on files to open the extended context menu</value> </data> <data name="PowerRename_Toggle_MaxDispListNum.Header" xml:space="preserve"> <value>Maximum number of items</value> </data> <data name="PowerRename_Toggle_RestoreFlagsOnLaunch.Header" xml:space="preserve"> <value>Show recently used strings</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_MD.Header" xml:space="preserve"> <value>Markdown</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_MD.Description" xml:space="preserve"> <value>.md, .markdown, .mdown, .mkdn, .mkd, .mdwn, .mdtxt, .mdtext</value> <comment>File extensions, should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_Monaco.Header" xml:space="preserve"> <value>Source code files (Monaco)</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_Monaco.Description" xml:space="preserve"> <value>.cpp, .py, .json, .xml, .csproj, ...</value> <comment>File extensions should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_SVG.Header" xml:space="preserve"> <value>Scalable Vector Graphics</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_SVG.Description" xml:space="preserve"> <value>.svg</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_Preview_SVG_Color_Mode.Header" xml:space="preserve"> <value>Color mode</value> </data> <data name="FileExplorerPreview_Preview_SVG_Color_Mode_Default.Content" xml:space="preserve"> <value>Windows default</value> </data> <data name="FileExplorerPreview_Preview_SVG_Color_Solid_Color.Content" xml:space="preserve"> <value>Solid color</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade.Content" xml:space="preserve"> <value>Checkered pattern</value> </data> <data name="FileExplorerPreview_Preview_SVG_Background_Color.Header" xml:space="preserve"> <value>Color</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_Mode.Header" xml:space="preserve"> <value>Checkered shade</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_1.Content" xml:space="preserve"> <value>Light</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_2.Content" xml:space="preserve"> <value>Medium</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_3.Content" xml:space="preserve"> <value>Dark</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_PDF.Header" xml:space="preserve"> <value>Portable Document Format</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_PDF.Description" xml:space="preserve"> <value>.pdf</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_SVG.Header" xml:space="preserve"> <value>Scalable Vector Graphics</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_SVG.Description" xml:space="preserve"> <value>.svg</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_STL.Header" xml:space="preserve"> <value>Stereolithography</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_STL.Description" xml:space="preserve"> <value>.stl</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_Color_Thumbnail_STL.Header" xml:space="preserve"> <value>Color</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_QOI.Header" xml:space="preserve"> <value>Quite Ok Image</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_QOI.Description" xml:space="preserve"> <value>.qoi</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_QOI.Header" xml:space="preserve"> <value>Quite OK Image</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_QOI.Description" xml:space="preserve"> <value>.qoi</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_PDF.Header" xml:space="preserve"> <value>Portable Document Format</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_PDF.Description" xml:space="preserve"> <value>.pdf</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview.ModuleDescription" xml:space="preserve"> <value>These settings allow you to manage your Windows File Explorer custom preview handlers.</value> </data> <data name="PowerRename_AutoCompleteHeader.Header" xml:space="preserve"> <value>Auto-complete</value> </data> <data name="OpenSource_Notice.Text" xml:space="preserve"> <value>Open-source notice</value> </data> <data name="PowerRename_Toggle_AutoComplete.Header" xml:space="preserve"> <value>Enable auto-complete for the search &amp; replace fields</value> </data> <data name="FancyZones_BorderColor.Header" xml:space="preserve"> <value>Border color</value> </data> <data name="FancyZones_InActiveColor.Header" xml:space="preserve"> <value>Inactive color</value> </data> <data name="ShortcutGuide.ModuleDescription" xml:space="preserve"> <value>Shows a help overlay with Windows shortcuts.</value> </data> <data name="ShortcutGuide_PressTimeForGlobalWindowsShortcuts.Header" xml:space="preserve"> <value>Press duration before showing global Windows shortcuts (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="ShortcutGuide_ActivationMethod.Header" xml:space="preserve"> <value>Activation method</value> </data> <data name="ShortcutGuide_ActivationMethod.Description" xml:space="preserve"> <value>Use a shortcut or press the Windows key for some time to activate</value> </data> <data name="Radio_ShortcutGuide_ActivationMethod_CustomizedShortcut.Content" xml:space="preserve"> <value>Custom shortcut</value> </data> <data name="Radio_ShortcutGuide_ActivationMethod_LongPressWindowsKey.Content" xml:space="preserve"> <value>Hold down Windows key</value> </data> <data name="ShortcutGuide_PressWinKeyWarning.Title" xml:space="preserve"> <value>In some edge cases Shortcut Guide might not function correctly when using this activation method</value> </data> <data name="Appearance_Behavior.Header" xml:space="preserve"> <value>Appearance &amp; behavior</value> </data> <data name="General_SettingsBackupAndRestoreTitle.Header" xml:space="preserve"> <value>Backup &amp; restore</value> </data> <data name="General_SettingsBackupAndRestore.Header" xml:space="preserve"> <value>Backup and restore your settings</value> </data> <data name="General_SettingsBackupAndRestore.Description" xml:space="preserve"> <value>PowerToys will restart automatically if needed</value> </data> <data name="ShortcutGuide_Enable.Header" xml:space="preserve"> <value>Enable Shortcut Guide</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="ShortcutGuide_OverlayOpacity.Header" xml:space="preserve"> <value>Background opacity (%)</value> </data> <data name="ShortcutGuide_DisabledApps.Header" xml:space="preserve"> <value>Exclude apps</value> </data> <data name="ShortcutGuide_DisabledApps.Description" xml:space="preserve"> <value>Turns off Shortcut Guide when these applications have focus - add one application name per line</value> </data> <data name="ShortcutGuide_DisabledApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> <comment>Don't translate outlook.exe</comment> </data> <data name="ImageResizer_CustomSizes.Header" xml:space="preserve"> <value>Image sizes</value> </data> <data name="ImageResizer_Presets.Header" xml:space="preserve"> <value>Presets</value> </data> <data name="ImageResizer_Presets.Description" xml:space="preserve"> <value>Manage preset sizes that can be used in the editor</value> </data> <data name="ImageResizer_FilenameFormatHeader.Description" xml:space="preserve"> <value>This format is used as the filename for resized images</value> </data> <data name="ImageResizer.ModuleDescription" xml:space="preserve"> <value>Lets you resize images by right-clicking.</value> </data> <data name="ImageResizer_EnableToggle.Header" xml:space="preserve"> <value>Enable Image Resizer</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="ImagesSizesListView.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Image Size</value> </data> <data name="ImageResizer_Configurations.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Configurations</value> </data> <data name="ImageResizer_Name.Header" xml:space="preserve"> <value>Name</value> </data> <data name="ImageResizer_Fit.Header" xml:space="preserve"> <value>Fit</value> </data> <data name="ImageResizer_Width.Header" xml:space="preserve"> <value>Width</value> </data> <data name="ImageResizer_Height.Header" xml:space="preserve"> <value>Height</value> </data> <data name="ImageResizer_Size.Header" xml:space="preserve"> <value>Unit</value> </data> <data name="RemoveButton.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Remove</value> <comment>Removes a user defined setting group for Image Resizer</comment> </data> <data name="RemoveItem.Text" xml:space="preserve"> <value>Delete</value> </data> <data name="ImageResizer_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Image Resizer</value> </data> <data name="ImageResizer_AddSizeButton.Content" xml:space="preserve"> <value>Add new size</value> </data> <data name="ImageResizer_SaveSizeButton.Label" xml:space="preserve"> <value>Save sizes</value> </data> <data name="ImageResizer_Encoding.Header" xml:space="preserve"> <value>JPEG quality level (%)</value> </data> <data name="ImageResizer_PNGInterlacing.Header" xml:space="preserve"> <value>PNG interlacing</value> </data> <data name="ImageResizer_TIFFCompression.Header" xml:space="preserve"> <value>TIFF compression</value> </data> <data name="File.Header" xml:space="preserve"> <value>File</value> <comment>as in a computer file</comment> </data> <data name="Default.Content" xml:space="preserve"> <value>Default</value> </data> <data name="ImageResizer_ENCODER_TIFF_CCITT3.Content" xml:space="preserve"> <value>CCITT3</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_CCITT4.Content" xml:space="preserve"> <value>CCITT4</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_Default.Content" xml:space="preserve"> <value>Default</value> </data> <data name="ImageResizer_ENCODER_TIFF_LZW.Content" xml:space="preserve"> <value>LZW</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_None.Content" xml:space="preserve"> <value>None</value> </data> <data name="ImageResizer_ENCODER_TIFF_RLE.Content" xml:space="preserve"> <value>RLE</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_Zip.Content" xml:space="preserve"> <value>Zip</value> <comment>do not loc</comment> </data> <data name="ImageResizer_FallbackEncoder_BMP.Content" xml:space="preserve"> <value>BMP encoder</value> </data> <data name="ImageResizer_FallbackEncoder_GIF.Content" xml:space="preserve"> <value>GIF encoder</value> </data> <data name="ImageResizer_FallbackEncoder_JPEG.Content" xml:space="preserve"> <value>JPEG encoder</value> </data> <data name="ImageResizer_FallbackEncoder_PNG.Content" xml:space="preserve"> <value>PNG encoder</value> </data> <data name="ImageResizer_FallbackEncoder_TIFF.Content" xml:space="preserve"> <value>TIFF encoder</value> </data> <data name="ImageResizer_FallbackEncoder_WMPhoto.Content" xml:space="preserve"> <value>WMPhoto encoder</value> </data> <data name="ImageResizer_Sizes_Fit_Fill.Content" xml:space="preserve"> <value>Fill</value> <comment>Refers to filling an image into a certain size. It could overflow</comment> </data> <data name="ImageResizer_Sizes_Fit_Fill_ThirdPersonSingular.Text" xml:space="preserve"> <value>Fill</value> <comment>Refers to filling an image into a certain size. It could overflow</comment> </data> <data name="ImageResizer_Sizes_Fit_Fit.Content" xml:space="preserve"> <value>Fit</value> <comment>Refers to fitting an image into a certain size. It won't overflow</comment> </data> <data name="ImageResizer_Sizes_Fit_Stretch.Content" xml:space="preserve"> <value>Stretch</value> <comment>Refers to stretching an image into a certain size. Won't overflow but could distort.</comment> </data> <data name="ImageResizer_Sizes_Units_CM.Content" xml:space="preserve"> <value>Centimeters</value> </data> <data name="ImageResizer_Sizes_Units_Inches.Content" xml:space="preserve"> <value>Inches</value> </data> <data name="ImageResizer_Sizes_Units_Percent.Content" xml:space="preserve"> <value>Percent</value> </data> <data name="ImageResizer_Sizes_Units_Pixels.Content" xml:space="preserve"> <value>Pixels</value> </data> <data name="Off.Content" xml:space="preserve"> <value>Off</value> </data> <data name="On.Content" xml:space="preserve"> <value>On</value> </data> <data name="GeneralPage_ToggleSwitch_AlwaysRunElevated_Link.Content" xml:space="preserve"> <value>Learn more about administrator mode</value> </data> <data name="GeneralPage_ToggleSwitch_AutoDownloadUpdates.Header" xml:space="preserve"> <value>Download updates automatically</value> </data> <data name="GeneralPage_ToggleSwitch_AutoDownloadUpdates.Description" xml:space="preserve"> <value>Except on metered connections</value> </data> <data name="GeneralPage_ToggleSwitch_RunningAsAdminNote.Text" xml:space="preserve"> <value>Currently running as administrator</value> </data> <data name="GeneralSettings_AlwaysRunAsAdminText.Header" xml:space="preserve"> <value>Always run as administrator</value> </data> <data name="GeneralSettings_AlwaysRunAsAdminText.Description" xml:space="preserve"> <value>You need to run as administrator to use this setting</value> </data> <data name="GeneralSettings_RunningAsUserText" xml:space="preserve"> <value>Running as user</value> </data> <data name="GeneralSettings_RunningAsAdminText" xml:space="preserve"> <value>Running as administrator</value> </data> <data name="FancyZones.ModuleTitle" xml:space="preserve"> <value>FancyZones</value> </data> <data name="FileExplorerPreview.ModuleTitle" xml:space="preserve"> <value>File Explorer</value> </data> <data name="FileExplorerPreview_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>File Explorer</value> <comment>Use same translation as Windows does for File Explorer</comment> </data> <data name="ImageResizer.ModuleTitle" xml:space="preserve"> <value>Image Resizer</value> </data> <data name="KeyboardManager.ModuleTitle" xml:space="preserve"> <value>Keyboard Manager</value> </data> <data name="ColorPicker.ModuleTitle" xml:space="preserve"> <value>Color Picker</value> </data> <data name="PowerLauncher.ModuleTitle" xml:space="preserve"> <value>PowerToys Run</value> </data> <data name="PowerToys_Run_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>PowerToys Run</value> </data> <data name="PowerRename.ModuleTitle" xml:space="preserve"> <value>PowerRename</value> <comment>do not loc the product name</comment> </data> <data name="PowerRename_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>PowerRename</value> <comment>do not loc</comment> </data> <data name="ShortcutGuide.ModuleTitle" xml:space="preserve"> <value>Shortcut Guide</value> </data> <data name="Shortcut_Guide_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Shortcut Guide</value> </data> <data name="General_Repository.Text" xml:space="preserve"> <value>GitHub repository</value> </data> <data name="General_Version.Header" xml:space="preserve"> <value>Version</value> </data> <data name="General_VersionLastChecked.Text" xml:space="preserve"> <value>Last checked: </value> </data> <data name="General_SettingsBackupInfo_DateHeader.Text" xml:space="preserve"> <value>Created at:</value> </data> <data name="General_SettingsBackupAndRestoreStatusInfo.Header" xml:space="preserve"> <value>Backup information</value> </data> <data name="General_SettingsBackupInfo_SourceHeader.Text" xml:space="preserve"> <value>Source machine:</value> </data> <data name="General_SettingsBackupInfo_StatusHeader.Text" xml:space="preserve"> <value>Status:</value> </data> <data name="General_Version.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Version</value> </data> <data name="Admin_mode.Header" xml:space="preserve"> <value>Administrator mode</value> </data> <data name="FancyZones_RestoreSize.Content" xml:space="preserve"> <value>Restore the original size of windows when unsnapping</value> </data> <data name="ImageResizer_FallBackEncoderText.Header" xml:space="preserve"> <value>Fallback encoder</value> </data> <data name="ImageResizer_FileFormatDescription.Text" xml:space="preserve"> <value>The following parameters can be used:</value> </data> <data name="ImageResizer_FilenameFormatHeader.Header" xml:space="preserve"> <value>Filename format</value> </data> <data name="ImageResizer_FileModifiedDate.Header" xml:space="preserve"> <value>File modified timestamp</value> </data> <data name="ImageResizer_FileModifiedDate.Description" xml:space="preserve"> <value>Used as the 'modified timestamp' in the file properties</value> </data> <data name="ImageResizer_UseOriginalDate.Content" xml:space="preserve"> <value>Original file timestamp</value> </data> <data name="ImageResizer_UseResizeDate.Content" xml:space="preserve"> <value>Timestamp of resize action</value> </data> <data name="Encoding.Header" xml:space="preserve"> <value>Encoding</value> </data> <data name="KeyboardManager_RemapKeyboardButton.Description" xml:space="preserve"> <value>Remap keys to other keys or shortcuts</value> </data> <data name="KeyboardManager_RemapShortcutsButton.Description" xml:space="preserve"> <value>Remap shortcuts to other shortcuts or keys for all or specific applications</value> </data> <data name="General.ModuleDescription" xml:space="preserve"> <value>Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. Made with 💗 by Microsoft and the PowerToys community.</value> <comment>Windows refers to the OS</comment> </data> <data name="FancyZones_SpanZonesAcrossMonitors.Header" xml:space="preserve"> <value>Allow zones to span across monitors</value> </data> <data name="ImageResizer_Formatting_ActualHeight.Text" xml:space="preserve"> <value>Actual height</value> </data> <data name="ImageResizer_Formatting_ActualWidth.Text" xml:space="preserve"> <value>Actual width</value> </data> <data name="ImageResizer_Formatting_Filename.Text" xml:space="preserve"> <value>Original filename</value> </data> <data name="ImageResizer_Formatting_SelectedHeight.Text" xml:space="preserve"> <value>Selected height</value> </data> <data name="ImageResizer_Formatting_SelectedWidth.Text" xml:space="preserve"> <value>Selected width</value> </data> <data name="ImageResizer_Formatting_Sizename.Text" xml:space="preserve"> <value>Size name</value> </data> <data name="FancyZones_MoveWindowsBasedOnPositionCheckBoxControl.Content" xml:space="preserve"> <value>Move windows based on their position</value> <comment>Windows refers to application windows</comment> </data> <data name="GeneralSettings_NewVersionIsAvailable" xml:space="preserve"> <value>New update available</value> </data> <data name="GeneralSettings_VersionIsLatest" xml:space="preserve"> <value>PowerToys is up to date.</value> </data> <data name="FileExplorerPreview_IconThumbnail_GroupSettings.Header" xml:space="preserve"> <value>Thumbnail icon Preview</value> </data> <data name="FileExplorerPreview_IconThumbnail_GroupSettings.Description" xml:space="preserve"> <value>Select the file types for which thumbnail previews must be rendered.</value> </data> <data name="FileExplorerPreview_PreviewPane.Header" xml:space="preserve"> <value>Preview Pane</value> </data> <data name="FileExplorerPreview_PreviewPane.Description" xml:space="preserve"> <value>Select the file types which must be rendered in the Preview Pane. Ensure that Preview Pane is open by toggling the view with Alt + P in File Explorer.</value> <comment>Preview Pane and File Explorer are app/feature names in Windows. 'Alt + P' is a shortcut</comment> </data> <data name="FileExplorerPreview_RunAsAdminRequired.Title" xml:space="preserve"> <value>You need to run as administrator to modify these settings.</value> </data> <data name="FileExplorerPreview_RebootRequired.Title" xml:space="preserve"> <value>A reboot may be required for changes to these settings to take effect</value> </data> <data name="FileExplorerPreview_PreviewHandlerOutlookIncompatibility.Title" xml:space="preserve"> <value>Enabling the preview handlers will override other preview handlers already installed - there have been reports of incompatibility between Outlook and the PDF Preview Handler.</value> <comment>Outlook is the name of a Microsoft product</comment> </data> <data name="FileExplorerPreview_ThumbnailsMightNotAppearOnRemoteFolders.Title" xml:space="preserve"> <value>Thumbnails might not appear on paths managed by cloud storage solutions like OneDrive, since these solutions may get their thumbnails from the cloud instead of generating them locally.</value> <comment>OneDrive is the name of a Microsoft product</comment> </data> <data name="FancyZones_ExcludeApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> <comment>Don't translate outlook.exe</comment> </data> <data name="ImageResizer_FilenameFormatPlaceholder.PlaceholderText" xml:space="preserve"> <value>Example: %1 (%2)</value> </data> <data name="ImageResizer_FilenameParameters.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Filename parameters</value> </data> <data name="Radio_Theme_Dark.Content" xml:space="preserve"> <value>Dark</value> <comment>Dark refers to color, not weight</comment> </data> <data name="Radio_Theme_Light.Content" xml:space="preserve"> <value>Light</value> <comment>Light refers to color, not weight</comment> </data> <data name="Radio_Theme_Default.Content" xml:space="preserve"> <value>Windows default</value> <comment>Windows refers to the Operating system</comment> </data> <data name="Windows_Color_Settings.Content" xml:space="preserve"> <value>Windows color settings</value> <comment>Windows refers to the Operating system</comment> </data> <data name="ColorPicker_CopiedColorRepresentation.Header" xml:space="preserve"> <value>Default color format</value> </data> <data name="ColorPickerFirst.Content" xml:space="preserve"> <value>Pick a color and open editor</value> </data> <data name="EditorFirst.Content" xml:space="preserve"> <value>Open editor</value> </data> <data name="ColorPickerOnly.Content" xml:space="preserve"> <value>Only pick a color</value> </data> <data name="ColorPicker_ActivationAction.Header" xml:space="preserve"> <value>Activation behavior</value> </data> <data name="ColorFormats.Header" xml:space="preserve"> <value>Picker behavior</value> </data> <data name="ColorPicker_CopiedColorRepresentation.Description" xml:space="preserve"> <value>This format will be copied to your clipboard</value> </data> <data name="KBM_KeysCannotBeRemapped.Text" xml:space="preserve"> <value>Learn more about remapping limitations</value> <comment>This is a link that will discuss what is and is not possible for Keyboard manager to remap</comment> </data> <data name="FancyZones_Editor_GroupSettings.Header" xml:space="preserve"> <value>Editor</value> <comment>refers to the FancyZones editor</comment> </data> <data name="FancyZones_WindowBehavior_GroupSettings.Header" xml:space="preserve"> <value>Window behavior</value> </data> <data name="FancyZones_WindowBehavior_GroupSettings.Description" xml:space="preserve"> <value>Manage how windows behave when using FancyZones</value> </data> <data name="FancyZones_Windows.Header" xml:space="preserve"> <value>Windows</value> <comment>Do translate: refers to a set of application windows, not the product name</comment> </data> <data name="PowerRename_BehaviorHeader.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="PowerRename_Toggle_UseBoostLib.Header" xml:space="preserve"> <value>Use Boost library</value> <comment>Boost is a product name, should not be translated</comment> </data> <data name="PowerRename_Toggle_UseBoostLib.Description" xml:space="preserve"> <value>Provides extended features but may use different regex syntax</value> <comment>Boost is a product name, should not be translated</comment> </data> <data name="MadeWithOssLove.Text" xml:space="preserve"> <value>Made with 💗 by Microsoft and the PowerToys community.</value> </data> <data name="ColorPicker_ColorFormats.Header" xml:space="preserve"> <value>Color formats</value> </data> <data name="ColorPicker_ColorFormats.Description" xml:space="preserve"> <value>Configure the color formats (edit, delete, hide, reorder them)</value> </data> <data name="MoveUp.Text" xml:space="preserve"> <value>Move up</value> </data> <data name="MoveDown.Text" xml:space="preserve"> <value>Move down</value> </data> <data name="ColorPickerAddNewFormat.Content" xml:space="preserve"> <value>Add new format</value> </data> <data name="NewColorFormat.Header" xml:space="preserve"> <value>Format</value> </data> <data name="NewColorName.Header" xml:space="preserve"> <value>Name</value> </data> <data name="AddCustomColorFormat" xml:space="preserve"> <value>Add custom color format</value> </data> <data name="ColorFormatSave" xml:space="preserve"> <value>Save</value> </data> <data name="EditCustomColorFormat" xml:space="preserve"> <value>Edit custom color format</value> </data> <data name="ColorFormatUpdate" xml:space="preserve"> <value>Update</value> </data> <data name="CustomColorFormatDefaultName" xml:space="preserve"> <value>My Format</value> </data> <data name="ColorFormatDialog.SecondaryButtonText" xml:space="preserve"> <value>Cancel</value> </data> <data name="ColorFormatEditorHelpline1.Text" xml:space="preserve"> <value>The following parameters can be used:</value> </data> <data name="Help_red" xml:space="preserve"> <value>red</value> </data> <data name="Help_green" xml:space="preserve"> <value>green</value> </data> <data name="Help_blue" xml:space="preserve"> <value>blue</value> </data> <data name="Help_alpha" xml:space="preserve"> <value>alpha</value> </data> <data name="Help_cyan" xml:space="preserve"> <value>cyan</value> </data> <data name="Help_magenta" xml:space="preserve"> <value>magenta</value> </data> <data name="Help_yellow" xml:space="preserve"> <value>yellow</value> </data> <data name="Help_black_key" xml:space="preserve"> <value>black key</value> </data> <data name="Help_hue" xml:space="preserve"> <value>hue</value> </data> <data name="Help_hueNat" xml:space="preserve"> <value>hue (natural)</value> </data> <data name="Help_saturationI" xml:space="preserve"> <value>saturation (HSI)</value> </data> <data name="Help_saturationL" xml:space="preserve"> <value>saturation (HSL)</value> </data> <data name="Help_saturationB" xml:space="preserve"> <value>saturation (HSB)</value> </data> <data name="Help_brightness" xml:space="preserve"> <value>brightness</value> </data> <data name="Help_intensity" xml:space="preserve"> <value>intensity</value> </data> <data name="Help_lightnessNat" xml:space="preserve"> <value>lightness (nat)</value> </data> <data name="Help_lightnessCIE" xml:space="preserve"> <value>lightness (CIE)</value> </data> <data name="Help_value" xml:space="preserve"> <value>value</value> </data> <data name="Help_whiteness" xml:space="preserve"> <value>whiteness</value> </data> <data name="Help_blackness" xml:space="preserve"> <value>blackness</value> </data> <data name="Help_chromaticityA" xml:space="preserve"> <value>chromaticityA</value> </data> <data name="Help_chromaticityB" xml:space="preserve"> <value>chromaticityB</value> </data> <data name="Help_X_value" xml:space="preserve"> <value>X value</value> </data> <data name="Help_Y_value" xml:space="preserve"> <value>Y value</value> </data> <data name="Help_Z_value" xml:space="preserve"> <value>Z value</value> </data> <data name="Help_decimal_value_RGB" xml:space="preserve"> <value>decimal value (RGB)</value> </data> <data name="Help_decimal_value_BGR" xml:space="preserve"> <value>decimal value (BGR)</value> </data> <data name="Help_color_name" xml:space="preserve"> <value>color name</value> </data> <data name="ColorFormatEditorHelpline2.Text" xml:space="preserve"> <value>The red, green, blue and alpha values can be formatted to the following formats:</value> </data> <data name="Help_byte" xml:space="preserve"> <value>byte value (default)</value> </data> <data name="Help_hexL1" xml:space="preserve"> <value>hex lowercase one digit</value> </data> <data name="Help_hexU1" xml:space="preserve"> <value>hex uppercase one digit</value> </data> <data name="Help_hexL2" xml:space="preserve"> <value>hex lowercase two digits</value> </data> <data name="Help_hexU2" xml:space="preserve"> <value>hex uppercase two digits</value> </data> <data name="Help_floatWith" xml:space="preserve"> <value>float with leading zero</value> </data> <data name="Help_floatWithout" xml:space="preserve"> <value>float without leading zero</value> </data> <data name="ColorFormatEditorHelpline3.Text" xml:space="preserve"> <value>Example: %ReX means red value in hex uppercase two digits format.</value> </data> <data name="ColorPicker_ShowColorName.Header" xml:space="preserve"> <value>Show color name</value> </data> <data name="ColorPicker_ShowColorName.Description" xml:space="preserve"> <value>This will show the name of the color when picking a color</value> </data> <data name="ImageResizer_DefaultSize_Large" xml:space="preserve"> <value>Large</value> <comment>The size of the image</comment> </data> <data name="ImageResizer_DefaultSize_Medium" xml:space="preserve"> <value>Medium</value> <comment>The size of the image</comment> </data> <data name="ImageResizer_DefaultSize_Phone" xml:space="preserve"> <value>Phone</value> <comment>The size of the image referring to a Mobile Phone typical image size</comment> </data> <data name="ImageResizer_DefaultSize_Small" xml:space="preserve"> <value>Small</value> <comment>The size of the image</comment> </data> <data name="FancyZones_MoveWindowBasedOnRelativePosition_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Windows key + Up, down, left or right arrow key to move windows based on relative position</value> </data> <data name="FancyZones_MoveWindowLeftRightBasedOnZoneIndex_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Windows key + Left or right arrow keys to move windows based on zone index</value> </data> <data name="FancyZones_MoveWindowBasedOnRelativePosition_Description.Text" xml:space="preserve"> <value>Windows key +    or </value> <comment>Do not loc the icons (hex numbers)</comment> </data> <data name="FancyZones_MoveWindowLeftRightBasedOnZoneIndex_Description.Text" xml:space="preserve"> <value>Windows key +  or </value> <comment>Do not loc the icons (hex numbers)</comment> </data> <data name="FancyZones_MoveWindowBasedOnRelativePosition.Text" xml:space="preserve"> <value>Relative position</value> </data> <data name="FancyZones_MoveWindow.Header" xml:space="preserve"> <value>Move windows based on</value> </data> <data name="FancyZones_MoveWindowLeftRightBasedOnZoneIndex.Text" xml:space="preserve"> <value>Zone index</value> </data> <data name="ColorPicker_Editor.Header" xml:space="preserve"> <value>Color formats</value> </data> <data name="FancyZones_OverlappingZonesClosestCenter.Content" xml:space="preserve"> <value>Activate the zone whose center is closest to the cursor</value> </data> <data name="FancyZones_OverlappingZonesLargest.Content" xml:space="preserve"> <value>Activate the largest zone by area</value> </data> <data name="FancyZones_OverlappingZonesPositional.Content" xml:space="preserve"> <value>Split the overlapped area into multiple activation targets</value> </data> <data name="FancyZones_OverlappingZonesSmallest.Content" xml:space="preserve"> <value>Activate the smallest zone by area</value> </data> <data name="FancyZones_OverlappingZones.Header" xml:space="preserve"> <value>When multiple zones overlap</value> </data> <data name="PowerLauncher_Plugins.Header" xml:space="preserve"> <value>Plugins</value> </data> <data name="PowerLauncher_ActionKeyword.Header" xml:space="preserve"> <value>Direct activation command</value> </data> <data name="PowerLauncher_AuthoredBy.Text" xml:space="preserve"> <value>Authored by</value> <comment>example: Authored by Microsoft</comment> </data> <data name="PowerLauncher_IncludeInGlobalResultTitle.Text" xml:space="preserve"> <value>Include in global result</value> </data> <data name="PowerLauncher_IncludeInGlobalResultDescription.Text" xml:space="preserve"> <value>Show results on queries without direct activation command</value> </data> <data name="PowerLauncher_EnablePluginToggle.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Enable plugin</value> </data> <data name="PowerLauncher_EnablePluginToggle.OnContent" xml:space="preserve"> <value>On</value> </data> <data name="PowerLauncher_EnablePluginToggle.OffContent" xml:space="preserve"> <value>Off</value> </data> <data name="Run_AdditionalOptions.Text" xml:space="preserve"> <value>Additional options</value> </data> <data name="Run_NotAccessibleWarning.Title" xml:space="preserve"> <value>Please define an activation command or allow this plugin to be used in the global results.</value> </data> <data name="Run_AllPluginsDisabled.Title" xml:space="preserve"> <value>PowerToys Run can't provide any results without plugins</value> </data> <data name="Run_AllPluginsDisabled.Message" xml:space="preserve"> <value>Enable at least one plugin to get started</value> </data> <data name="Run_PluginUse.Header" xml:space="preserve"> <value>Plugins</value> </data> <data name="Run_PluginUseDescription.Text" xml:space="preserve"> <value>Include or remove plugins from the global results, change the direct activation phrase and configure additional options</value> </data> <data name="Run_PositionAppearance_GroupSettings.Header" xml:space="preserve"> <value>Position &amp; appearance</value> </data> <data name="Run_PositionHeader.Header" xml:space="preserve"> <value>Preferred monitor position</value> <comment>as in Show PowerToys Run on primary monitor</comment> </data> <data name="Run_PositionHeader.Description" xml:space="preserve"> <value>If multiple monitors are in use, PowerToys Run can be launched on the desired monitor</value> <comment>as in Show PowerToys Run on primary monitor</comment> </data> <data name="Run_Radio_Position_Cursor.Content" xml:space="preserve"> <value>Monitor with mouse cursor</value> </data> <data name="Run_Radio_Position_Focus.Content" xml:space="preserve"> <value>Monitor with focused window</value> </data> <data name="Run_Radio_Position_Primary_Monitor.Content" xml:space="preserve"> <value>Primary monitor</value> </data> <data name="Run_PluginsLoading.Text" xml:space="preserve"> <value>Plugins are loading...</value> </data> <data name="ColorPicker_ButtonDown.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Move the color down</value> </data> <data name="ColorPicker_ButtonUp.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Move the color up</value> </data> <data name="FancyZones_FlashZonesOnQuickSwitch.Content" xml:space="preserve"> <value>Flash zones when switching layout</value> </data> <data name="FancyZones_Layouts.Header" xml:space="preserve"> <value>Layouts</value> </data> <data name="FancyZones_QuickLayoutSwitch.Header" xml:space="preserve"> <value>Enable quick layout switch</value> </data> <data name="FancyZones_QuickLayoutSwitch.Description" xml:space="preserve"> <value>Layout-specific shortcuts can be configured in the editor</value> </data> <data name="FancyZones_QuickLayoutSwitch_GroupSettings.Text" xml:space="preserve"> <value>Quick layout switch</value> </data> <data name="Activation_Shortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="Activation_Shortcut.Description" xml:space="preserve"> <value>Customize the shortcut to activate this module</value> </data> <data name="Oobe_GetStarted.Text" xml:space="preserve"> <value>Let's get started!</value> </data> <data name="Oobe_PowerToysDescription.Text" xml:space="preserve"> <value>Welcome to PowerToys! These overviews will help you quickly learn the basics of all our utilities.</value> </data> <data name="Oobe_GettingStarted.Text" xml:space="preserve"> <value>Getting started</value> </data> <data name="Oobe_Launch.Text" xml:space="preserve"> <value>Launch</value> </data> <data name="Launch_ColorPicker.Content" xml:space="preserve"> <value>Launch Color Picker</value> </data> <data name="Oobe_LearnMore.Text" xml:space="preserve"> <value>Learn more about</value> </data> <data name="Oobe_ColorPicker.Description" xml:space="preserve"> <value>Color Picker is a system-wide color selection tool for Windows that enables you to pick colors from any currently running application and automatically copies it in a configurable format to your clipboard.</value> </data> <data name="Oobe_FancyZones.Description" xml:space="preserve"> <value>FancyZones is a window manager that makes it easy to create complex window layouts and quickly position windows into those layouts.</value> </data> <data name="Oobe_FileLocksmith.Description" xml:space="preserve"> <value>File Locksmith lists which processes are using the selected files or directories and allows closing those processes.</value> </data> <data name="Oobe_FileExplorer.Description" xml:space="preserve"> <value>PowerToys introduces add-ons to the Windows File Explorer that will enable files like Markdown (.md), PDF (.pdf), SVG (.svg), STL (.stl), G-code (.gcode) and developer files to be viewed in the preview pane. It introduces File Explorer thumbnail support for a number of these file types as well.</value> </data> <data name="Oobe_ImageResizer.Description" xml:space="preserve"> <value>Image Resizer is a Windows shell extension for simple bulk image-resizing.</value> </data> <data name="Oobe_KBM.Description" xml:space="preserve"> <value>Keyboard Manager allows you to customize the keyboard to be more productive by remapping keys and creating your own keyboard shortcuts.</value> </data> <data name="Oobe_MouseWithoutBorders.Description" xml:space="preserve"> <value>Mouse Without Borders enables using the mouse pointer, keyboard, clipboard and drag and drop between machines in the same local network.</value> </data> <data name="Oobe_PowerRename.Description" xml:space="preserve"> <value>PowerRename enables you to perform simple bulk renaming, searching and replacing file names.</value> </data> <data name="Oobe_Run.Description" xml:space="preserve"> <value>PowerToys Run is a quick launcher for power users that contains some additional features without sacrificing performance.</value> </data> <data name="Oobe_MeasureTool.Description" xml:space="preserve"> <value>Screen Ruler is a quick and easy way to measure pixels on your screen.</value> </data> <data name="Oobe_ShortcutGuide.Description" xml:space="preserve"> <value>Shortcut Guide presents the user with a listing of available shortcuts for the current state of the desktop.</value> </data> <data name="Oobe_VideoConference.Description" xml:space="preserve"> <value>Video Conference Mute allows users to quickly mute the microphone and turn off the camera while on a conference call with a single keystroke, regardless of what application has focus on your computer.</value> </data> <data name="Oobe_MouseUtils.Description" xml:space="preserve"> <value>A collection of utilities to enhance your mouse.</value> <comment>Mouse as in the hardware peripheral</comment> </data> <data name="Oobe_Overview.Description" xml:space="preserve"> <value>Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. Take a moment to preview the various utilities listed or view our comprehensive documentation.</value> </data> <data name="Oobe_Overview_DescriptionLinkText.Text" xml:space="preserve"> <value>Documentation on Microsoft Docs</value> </data> <data name="ReleaseNotes.Content" xml:space="preserve"> <value>Release notes</value> </data> <data name="Oobe_ColorPicker_HowToUse.Text" xml:space="preserve"> <value>to open Color Picker.</value> </data> <data name="Oobe_ColorPicker_TipsAndTricks.Text" xml:space="preserve"> <value>To select a color with more precision, **scroll the mouse wheel** to zoom in.</value> </data> <data name="Oobe_FancyZones_HowToUse.Text" xml:space="preserve"> <value>**Shift** + **drag the window** to snap a window to a zone, and release the window in the desired zone.</value> </data> <data name="Oobe_FancyZones_HowToUse_Shortcut.Text" xml:space="preserve"> <value>to open the FancyZones editor.</value> </data> <data name="Oobe_FancyZones_TipsAndTricks.Text" xml:space="preserve"> <value>Snap a window to multiple zones by holding the **Ctrl** key (while also holding **Shift**) when dragging a window.</value> </data> <data name="Oobe_FileLocksmith_HowToUse.Text" xml:space="preserve"> <value>In File Explorer, right-click one or more selected files and select **What's using this file?** from the context menu.</value> </data> <data name="Oobe_FileLocksmith_TipsAndTricks.Text" xml:space="preserve"> <value>Press the **Restart Elevated** button from the File Locksmith UI to also get information on elevated processes that might be using the files.</value> </data> <data name="Oobe_FileExplorer_HowToEnable.Text" xml:space="preserve"> <value>Select **View** which is located at the top of File Explorer, followed by **Show**, and then **Preview pane**. From there, simply click on one of the supported files in the File Explorer and observe the content on the preview pane!</value> </data> <data name="Oobe_HowToCreateMappings.Text" xml:space="preserve"> <value>How to create mappings</value> </data> <data name="Oobe_HowToEnable.Text" xml:space="preserve"> <value>How to enable</value> </data> <data name="Oobe_HowToLaunch.Text" xml:space="preserve"> <value>How to launch</value> </data> <data name="Oobe_HowToUse.Text" xml:space="preserve"> <value>How to use</value> </data> <data name="Oobe_ImageResizer_HowToLaunch.Text" xml:space="preserve"> <value>In File Explorer, right-click one or more image files and select **Resize pictures** from the context menu.</value> </data> <data name="Oobe_ImageResizer_TipsAndTricks.Text" xml:space="preserve"> <value>Want a custom size? You can add them in the PowerToys Settings!</value> </data> <data name="Oobe_KBM_HowToCreateMappings.Text" xml:space="preserve"> <value>Launch **PowerToys Settings**, navigate to the Keyboard Manager menu, and select either **Remap a key** or **Remap a shortcut**.</value> </data> <data name="Oobe_KBM_TipsAndTricks.Text" xml:space="preserve"> <value>Want to only have a shortcut work for a single application? Use the Target App field when creating the shortcut remapping.</value> </data> <data name="Oobe_MouseWithoutBorders_HowToUse.Text" xml:space="preserve"> <value>Use the Settings screen on each machine to connect to the other machines using the same key. If a connection is not working, it may be necessary to add an exception to the Windows Firewall.</value> </data> <data name="Oobe_MouseWithoutBorders_TipsAndTricks.Text" xml:space="preserve"> <value>Use the service option in Settings to install a service enabling Mouse Without Borders to function even in the lock screen.</value> </data> <data name="Oobe_PowerRename_HowToUse.Text" xml:space="preserve"> <value>In File Explorer, right-click one or more selected files and select **PowerRename** from the context menu.</value> </data> <data name="Oobe_PowerRename_TipsAndTricks.Text" xml:space="preserve"> <value>PowerRename supports searching for files using regular expressions to enable more advanced renaming functionalities.</value> </data> <data name="Oobe_Run_HowToLaunch.Text" xml:space="preserve"> <value>to open Run and just start typing.</value> </data> <data name="Oobe_Run_TipsAndTricks.Text" xml:space="preserve"> <value>PowerToys Run supports various action keys to funnel search queries for a specific subset of results. Typing `&lt;` searches for running processes only, `?` will search only for file, or `.` for installed applications! See PowerToys documentation for the complete set of 'Action Keys' available.</value> </data> <data name="Oobe_ShortcutGuide_HowToLaunch.Text" xml:space="preserve"> <value>to open Shortcut Guide, press it again to close or press **Esc**.</value> </data> <data name="Oobe_TipsAndTricks.Text" xml:space="preserve"> <value>Tips &amp; tricks</value> </data> <data name="Oobe_VideoConference_ToggleMicVid.Text" xml:space="preserve"> <value>to toggle both your microphone and video</value> </data> <data name="Oobe_VideoConference_ToggleMic.Text" xml:space="preserve"> <value>to toggle your microphone</value> </data> <data name="Oobe_VideoConference_PushToTalkMic.Text" xml:space="preserve"> <value>to toggle your microphone until key release</value> </data> <data name="Oobe_VideoConference_ToggleVid.Text" xml:space="preserve"> <value>to toggle your video</value> </data> <data name="Oobe_MeasureTool_Activation.Text" xml:space="preserve"> <value>to bring up the Screen Ruler command bar.</value> </data> <data name="Oobe_MeasureTool_HowToLaunch.Text" xml:space="preserve"> <value>The Bounds mode lets you select a specific area to measure. You can also shift-drag an area to persist in on screen. The various Spacing modes allows tracing similar pixels along horizontal and vertical axes with a customizable pixel tolerance threshold (use settings or mouse wheel to adjust it).</value> </data> <data name="Oobe_MeasureTool.Title" xml:space="preserve"> <value>Screen Ruler</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_ColorPicker.Title" xml:space="preserve"> <value>Color Picker</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_FancyZones.Title" xml:space="preserve"> <value>FancyZones</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_FileLocksmith.Title" xml:space="preserve"> <value>File Locksmith</value> </data> <data name="Oobe_ImageResizer.Title" xml:space="preserve"> <value>Image Resizer</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_KBM.Title" xml:space="preserve"> <value>Keyboard Manager</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_MouseWithoutBorders.Title" xml:space="preserve"> <value>Mouse Without Borders</value> <comment>Product name. Do not localize this string</comment> </data> <data name="Oobe_PowerRename.Title" xml:space="preserve"> <value>PowerRename</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_Run.Title" xml:space="preserve"> <value>PowerToys Run</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_ShortcutGuide.Title" xml:space="preserve"> <value>Shortcut Guide</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_VideoConference.Title" xml:space="preserve"> <value>Video Conference Mute</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_Overview.Title" xml:space="preserve"> <value>Welcome</value> </data> <data name="Oobe_WhatsNew.Text" xml:space="preserve"> <value>What's new</value> </data> <data name="Oobe_WhatsNew_LoadingError.Title" xml:space="preserve"> <value>Couldn't load the release notes.</value> </data> <data name="Oobe_WhatsNew_LoadingError.Message" xml:space="preserve"> <value>Please check your internet connection.</value> </data> <data name="Oobe_WhatsNew_ProxyAuthenticationWarning.Title" xml:space="preserve"> <value>Couldn't load the release notes.</value> </data> <data name="Oobe_WhatsNew_ProxyAuthenticationWarning.Message" xml:space="preserve"> <value>Your proxy server requires authentication.</value> </data> <data name="Oobe_WhatsNew_DetailedReleaseNotesLink.Text" xml:space="preserve"> <value>See more detailed release notes on GitHub</value> <comment>Don't loc "GitHub", it's the name of a product</comment> </data> <data name="OOBE_Settings.Content" xml:space="preserve"> <value>Open Settings</value> </data> <data name="Oobe_NavViewItem.Content" xml:space="preserve"> <value>Welcome to PowerToys</value> <comment>Don't loc "PowerToys"</comment> </data> <data name="Feedback_NavViewItem.Content" xml:space="preserve"> <value>Give feedback</value> </data> <data name="OobeWindow_Title" xml:space="preserve"> <value>Welcome to PowerToys</value> </data> <data name="OobeWindow_TitleTxt.Text" xml:space="preserve"> <value>Welcome to PowerToys</value> </data> <data name="SettingsWindow_Title" xml:space="preserve"> <value>PowerToys Settings</value> <comment>Title of the settings window when running as user</comment> </data> <data name="Awake.ModuleTitle" xml:space="preserve"> <value>Awake</value> </data> <data name="Awake.ModuleDescription" xml:space="preserve"> <value>A convenient way to keep your PC awake on-demand.</value> </data> <data name="Awake_EnableSettingsCard.Header" xml:space="preserve"> <value>Enable Awake</value> <comment>Awake is a product name, do not loc</comment> </data> <data name="Awake_NoKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep using the selected power plan</value> </data> <data name="Awake_IndefiniteKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep awake indefinitely</value> </data> <data name="Awake_TemporaryKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep awake for a time interval</value> </data> <data name="Awake_ExpirableKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep awake until expiration</value> </data> <data name="Awake_DisplaySettingsCard.Header" xml:space="preserve"> <value>Keep screen on</value> </data> <data name="Awake_DisplaySettingsCard.Description" xml:space="preserve"> <value>This setting is only available when keeping the PC awake</value> </data> <data name="Awake_ExpirationSettingsExpander.Description" xml:space="preserve"> <value>Keep custom awake state until a specific date and time</value> </data> <data name="Awake_ModeSettingsCard.Header" xml:space="preserve"> <value>Mode</value> </data> <data name="Awake_BehaviorSettingsGroup.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="Awake_IntervalHoursInput.Header" xml:space="preserve"> <value>Hours</value> </data> <data name="Awake_IntervalMinutesInput.Header" xml:space="preserve"> <value>Minutes</value> </data> <data name="Awake_ExpirationSettingsExpander_Date.Header" xml:space="preserve"> <value>End date</value> </data> <data name="Awake_ExpirationSettingsExpander_Time.Header" xml:space="preserve"> <value>End time</value> </data> <data name="Oobe_Awake.Title" xml:space="preserve"> <value>Awake</value> <comment>Module name, do not loc</comment> </data> <data name="Oobe_Awake.Description" xml:space="preserve"> <value>Awake is a Windows tool designed to keep your PC awake on-demand without having to manage its power settings. This behavior can be helpful when running time-consuming tasks while ensuring that your PC does not go to sleep or turn off its screens.</value> </data> <data name="Oobe_Awake_HowToUse.Text" xml:space="preserve"> <value>Open **PowerToys Settings** and enable Awake</value> </data> <data name="Oobe_Awake_TipsAndTricks.Text" xml:space="preserve"> <value>You can always change modes quickly by **right-clicking the Awake icon** in the system tray.</value> </data> <data name="General_FailedToDownloadTheNewVersion.Title" xml:space="preserve"> <value>An error occurred trying to install this update:</value> </data> <data name="General_InstallNow.Content" xml:space="preserve"> <value>Install now</value> </data> <data name="General_ReadMore.Text" xml:space="preserve"> <value>Read more</value> </data> <data name="General_NewVersionAvailable.Title" xml:space="preserve"> <value>An update is available:</value> </data> <data name="General_Downloading.Text" xml:space="preserve"> <value>Downloading...</value> </data> <data name="General_TryAgainToDownloadAndInstall.Content" xml:space="preserve"> <value>Try again to download and install</value> </data> <data name="General_CheckingForUpdates.Text" xml:space="preserve"> <value>Checking for updates...</value> </data> <data name="General_NewVersionReadyToInstall.Title" xml:space="preserve"> <value>An update is ready to install:</value> </data> <data name="General_UpToDate.Title" xml:space="preserve"> <value>PowerToys is up to date</value> </data> <data name="General_CantCheck.Title" xml:space="preserve"> <value>Network error. Please try again later</value> </data> <data name="General_DownloadAndInstall.Content" xml:space="preserve"> <value>Download &amp; install</value> </data> <data name="ImageResizer_Fit_Fill_ThirdPersonSingular" xml:space="preserve"> <value>Fills</value> </data> <data name="ImageResizer_Fit_Fit_ThirdPersonSingular" xml:space="preserve"> <value>Fits within</value> </data> <data name="ImageResizer_Fit_Stretch_ThirdPersonSingular" xml:space="preserve"> <value>Stretches to</value> </data> <data name="ImageResizer_Unit_Centimeter" xml:space="preserve"> <value>Centimeters</value> </data> <data name="ImageResizer_Unit_Inch" xml:space="preserve"> <value>Inches</value> </data> <data name="ImageResizer_Unit_Percent" xml:space="preserve"> <value>Percent</value> </data> <data name="ImageResizer_Unit_Pixel" xml:space="preserve"> <value>Pixels</value> </data> <data name="EditButton.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Edit</value> </data> <data name="ImageResizer_EditSize.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Edit size</value> </data> <data name="No" xml:space="preserve"> <value>No</value> <comment>Label of a cancel button</comment> </data> <data name="Delete_Dialog_Description" xml:space="preserve"> <value>Are you sure you want to delete this item?</value> </data> <data name="Yes" xml:space="preserve"> <value>Yes</value> <comment>Label of a confirmation button</comment> </data> <data name="SeeWhatsNew.Content" xml:space="preserve"> <value>See what's new</value> </data> <data name="Awake_ModeSettingsCard.Description" xml:space="preserve"> <value>Manage the state of your device when Awake is active</value> </data> <data name="ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="Enable_ColorFormat.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Enable colorformat</value> </data> <data name="More_Options_Button.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>More options</value> </data> <data name="More_Options_ButtonTooltip.Text" xml:space="preserve"> <value>More options</value> </data> <data name="To.Text" xml:space="preserve"> <value>to</value> <comment>as in: from x to y</comment> </data> <data name="LearnMore_Awake.Text" xml:space="preserve"> <value>Learn more about Awake</value> <comment>Awake is a product name, do not loc</comment> </data> <data name="SecondaryLink_Awake.Text" xml:space="preserve"> <value>Den Delimarsky's work on creating Awake</value> <comment>Awake is a product name, do not loc</comment> </data> <data name="LearnMore_ColorPicker.Text" xml:space="preserve"> <value>Learn more about Color Picker</value> <comment>Color Picker is a product name, do not loc</comment> </data> <data name="LearnMore_FancyZones.Text" xml:space="preserve"> <value>Learn more about FancyZones</value> <comment>FancyZones is a product name, do not loc</comment> </data> <data name="LearnMore_FileLocksmith.Text" xml:space="preserve"> <value>Learn more about File Locksmith</value> </data> <data name="LearnMore_ImageResizer.Text" xml:space="preserve"> <value>Learn more about Image Resizer</value> <comment>Image Resizer is a product name, do not loc</comment> </data> <data name="LearnMore_KBM.Text" xml:space="preserve"> <value>Learn more about Keyboard Manager</value> <comment>Keyboard Manager is a product name, do not loc</comment> </data> <data name="LearnMore_MouseUtils.Text" xml:space="preserve"> <value>Learn more about Mouse utilities</value> <comment>Mouse utilities is a product name, do not loc</comment> </data> <data name="LearnMore_PastePlain.Text" xml:space="preserve"> <value>Learn more about Paste as Plain Text</value> <comment> Paste as Plain Text is the name of the module. </comment> </data> <data name="LearnMore_MouseWithoutBorders.Text" xml:space="preserve"> <value>Learn more about Mouse Without Borders</value> <comment>Mouse Without Borders is the name of the module. </comment> </data> <data name="LearnMore_PowerPreview.Text" xml:space="preserve"> <value>Learn more about File Explorer add-ons</value> <comment>File Explorer is a product name, localize as Windows does</comment> </data> <data name="LearnMore_Peek.Text" xml:space="preserve"> <value>Learn more about Peek</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="LearnMore_PowerRename.Text" xml:space="preserve"> <value>Learn more about PowerRename</value> <comment>PowerRename is a product name, do not loc</comment> </data> <data name="LearnMore_Run.Text" xml:space="preserve"> <value>Learn more about PowerToys Run</value> <comment>PowerToys Run is a product name, do not loc</comment> </data> <data name="LearnMore_MeasureTool.Text" xml:space="preserve"> <value>Learn more about Screen Ruler</value> <comment>Screen Ruler is a product name, do not loc</comment> </data> <data name="LearnMore_ShortcutGuide.Text" xml:space="preserve"> <value>Learn more about Shortcut Guide</value> <comment>Shortcut Guide is a product name, do not loc</comment> </data> <data name="LearnMore_VCM.Text" xml:space="preserve"> <value>Learn more about Video Conference Mute</value> <comment>Video Conference Mute is a product name, do not loc</comment> </data> <data name="Oobe_FileExplorer.Title" xml:space="preserve"> <value>File Explorer add-ons</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_MouseUtils.Title" xml:space="preserve"> <value>Mouse utilities</value> <comment>Mouse as in the hardware peripheral</comment> </data> <data name="Oobe_MouseUtils_FindMyMouse.Text" xml:space="preserve"> <value>Find My Mouse</value> <comment>Mouse as in the hardware peripheral</comment> </data> <data name="Oobe_MouseUtils_FindMyMouse_Description.Text" xml:space="preserve"> <value>Focus the mouse pointer pressing the Ctrl key twice, using a custom shortcut or shaking the mouse.</value> <comment>Mouse as in the hardware peripheral. Key as in a keyboard key</comment> </data> <data name="Oobe_MouseUtils_MouseHighlighter.Text" xml:space="preserve"> <value>Mouse Highlighter</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MouseHighlighter_Description.Text" xml:space="preserve"> <value>Use a keyboard shortcut to highlight left and right mouse clicks.</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MousePointerCrosshairs.Text" xml:space="preserve"> <value>Mouse Pointer Crosshairs</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MousePointerCrosshairs_Description.Text" xml:space="preserve"> <value>Draw crosshairs centered around the mouse pointer.</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MouseJump.Text" xml:space="preserve"> <value>Mouse Jump</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MouseJump_Description.Text" xml:space="preserve"> <value>Jump the mouse pointer quickly to anywhere on your desktop.</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Launch_Run.Content" xml:space="preserve"> <value>Launch PowerToys Run</value> </data> <data name="Launch_ShortcutGuide.Content" xml:space="preserve"> <value>Launch Shortcut Guide</value> </data> <data name="ColorPicker_ColorFormat_ToggleSwitch.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Show format in editor</value> </data> <data name="GeneralPage_Documentation.Text" xml:space="preserve"> <value>Documentation</value> </data> <data name="PowerLauncher_SearchList.PlaceholderText" xml:space="preserve"> <value>Search this list</value> </data> <data name="PowerLauncher_SearchList.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Search this list</value> </data> <data name="Awake.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="ColorPicker.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="General.SecondaryLinksHeader" xml:space="preserve"> <value>Related information</value> </data> <data name="ImageResizer.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="MouseUtils.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="PowerLauncher.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="PowerRename.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="EditTooltip.Text" xml:space="preserve"> <value>Edit</value> </data> <data name="RemoveTooltip.Text" xml:space="preserve"> <value>Remove</value> </data> <data name="Activation_Shortcut_Cancel" xml:space="preserve"> <value>Cancel</value> </data> <data name="Activation_Shortcut_Description" xml:space="preserve"> <value>Press a combination of keys to change this shortcut</value> </data> <data name="Activation_Shortcut_With_Disable_Description" xml:space="preserve"> <value>Press a combination of keys to change this shortcut. Right-click to remove the key combination, thereby deactivating the shortcut.</value> </data> <data name="Activation_Shortcut_Reset" xml:space="preserve"> <value>Reset</value> </data> <data name="Activation_Shortcut_Save" xml:space="preserve"> <value>Save</value> </data> <data name="Activation_Shortcut_Title" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="InvalidShortcut.Title" xml:space="preserve"> <value>Invalid shortcut</value> </data> <data name="InvalidShortcutWarningLabel.Text" xml:space="preserve"> <value>Only shortcuts that start with **Windows key**, **Ctrl**, **Alt** or **Shift** are valid.</value> <comment>The ** sequences are used for text formatting of the key names. Don't remove them on translation.</comment> </data> <data name="WarningShortcutAltGr.Title" xml:space="preserve"> <value>Possible shortcut interference with Alt Gr</value> <comment>Alt Gr refers to the right alt key on some international keyboards</comment> </data> <data name="WarningShortcutAltGr.ToolTipService.ToolTip" xml:space="preserve"> <value>Shortcuts with **Ctrl** and **Alt** may remove functionality from some international keyboards, because **Ctrl** + **Alt** = **Alt Gr** in those keyboards.</value> <comment>The ** sequences are used for text formatting of the key names. Don't remove them on translation.</comment> </data> <data name="FancyZones_SpanZonesAcrossMonitors.Description" xml:space="preserve"> <value>All monitors must have the same DPI scaling and will be treated as one large combined rectangle which contains all monitors</value> </data> <data name="ImageResizer_DefaultSize_NewSizePrefix" xml:space="preserve"> <value>New size</value> <comment>First part of the default name of new sizes that can be added in PT's settings ui.</comment> </data> <data name="Awake_IntervalSettingsCard.Header" xml:space="preserve"> <value>Interval before returning to the previous awakeness state</value> </data> <data name="Awake_ExpirationSettingsExpander.Header" xml:space="preserve"> <value>End date and time</value> </data> <data name="MouseUtils.ModuleTitle" xml:space="preserve"> <value>Mouse utilities</value> </data> <data name="MouseUtils.ModuleDescription" xml:space="preserve"> <value>A collection of mouse utilities.</value> </data> <data name="MouseUtils_FindMyMouse.Header" xml:space="preserve"> <value>Find My Mouse</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_FindMyMouse.Description" xml:space="preserve"> <value>Find My Mouse highlights the position of the cursor when pressing the Ctrl key twice, using a custom shortcut or when shaking the mouse.</value> <comment>"Ctrl" is a keyboard key. "Find My Mouse" is the name of the utility</comment> </data> <data name="MouseUtils_Enable_FindMyMouse.Header" xml:space="preserve"> <value>Enable Find My Mouse</value> <comment>"Find My Mouse" is the name of the utility.</comment> </data> <data name="MouseUtils_FindMyMouse_ActivationMethod.Header" xml:space="preserve"> <value>Activation method</value> </data> <data name="MouseUtils_FindMyMouse_ActivationDoubleControlPress.Content" xml:space="preserve"> <value>Press Left Control twice</value> <comment>Left control is the physical key on the keyboard.</comment> </data> <data name="MouseUtils_FindMyMouse_ActivationShakeMouse.Content" xml:space="preserve"> <value>Shake mouse</value> <comment>Mouse is the hardware peripheral.</comment> </data> <data name="MouseUtils_FindMyMouse_ExcludedApps.Description" xml:space="preserve"> <value>Prevents module activation when an excluded application is the foreground application</value> </data> <data name="MouseUtils_FindMyMouse_ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="MouseUtils_FindMyMouse_ExcludedApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> </data> <data name="MouseUtils_Prevent_Activation_On_Game_Mode.Content" xml:space="preserve"> <value>Do not activate when Game Mode is on</value> <comment>"Game mode" is the Windows feature to prevent notification when playing a game.</comment> </data> <data name="MouseUtils_FindMyMouse_BackgroundColor.Header" xml:space="preserve"> <value>Background color</value> </data> <data name="MouseUtils_FindMyMouse_SpotlightColor.Header" xml:space="preserve"> <value>Spotlight color</value> </data> <data name="MouseUtils_FindMyMouse_OverlayOpacity.Header" xml:space="preserve"> <value>Overlay opacity (%)</value> </data> <data name="MouseUtils_FindMyMouse_SpotlightRadius.Header" xml:space="preserve"> <value>Spotlight radius (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_FindMyMouse_SpotlightInitialZoom.Header" xml:space="preserve"> <value>Spotlight initial zoom</value> </data> <data name="MouseUtils_FindMyMouse_SpotlightInitialZoom.Description" xml:space="preserve"> <value>Spotlight zoom factor at animation start</value> </data> <data name="MouseUtils_FindMyMouse_AnimationDurationMs.Header" xml:space="preserve"> <value>Animation duration (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_FindMyMouse_AnimationDurationMs.Description" xml:space="preserve"> <value>Time before the spotlight appears (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_FindMyMouse_AnimationDurationMs_Disabled.Message" xml:space="preserve"> <value>Animations are disabled by OS. See Settings &gt; Accessibility &gt; Visual effects</value> </data> <data name="MouseUtils_FindMyMouse_ShakingMinimumDistance.Header" xml:space="preserve"> <value>Shake minimum distance</value> </data> <data name="MouseUtils_FindMyMouse_ShakingMinimumDistance.Description" xml:space="preserve"> <value>The minimum distance for mouse shaking activation, for adjusting sensitivity</value> </data> <data name="MouseUtils_MouseHighlighter.Header" xml:space="preserve"> <value>Mouse Highlighter</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_MouseHighlighter.Description" xml:space="preserve"> <value>Mouse Highlighter mode will highlight mouse clicks.</value> <comment>"Mouse Highlighter" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_Enable_MouseHighlighter.Header" xml:space="preserve"> <value>Enable Mouse Highlighter</value> <comment>"Find My Mouse" is the name of the utility.</comment> </data> <data name="MouseUtils_MouseHighlighter_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MouseUtils_MouseHighlighter_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to turn on or off this mode</value> <comment>"Mouse Highlighter" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_MouseHighlighter_PrimaryButtonClickColor.Header" xml:space="preserve"> <value>Primary button highlight color</value> </data> <data name="MouseUtils_MouseHighlighter_SecondaryButtonClickColor.Header" xml:space="preserve"> <value>Secondary button highlight color</value> </data> <data name="MouseUtils_MouseHighlighter_HighlightRadius.Header" xml:space="preserve"> <value>Radius (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDelayMs.Header" xml:space="preserve"> <value>Fade delay (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDelayMs.Description" xml:space="preserve"> <value>Time before the highlight begins to fade (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDurationMs.Header" xml:space="preserve"> <value>Fade duration (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDurationMs.Description" xml:space="preserve"> <value>Duration of the disappear animation (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MousePointerCrosshairs.Header" xml:space="preserve"> <value>Mouse Pointer Crosshairs</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_MousePointerCrosshairs.Description" xml:space="preserve"> <value>Mouse Pointer Crosshairs draws crosshairs centered on the mouse pointer.</value> <comment>"Mouse Pointer Crosshairs" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_Enable_MousePointerCrosshairs.Header" xml:space="preserve"> <value>Enable Mouse Pointer Crosshairs</value> <comment>"Mouse Pointer Crosshairs" is the name of the utility.</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MouseUtils_MousePointerCrosshairs_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to show/hide the crosshairs</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsColor.Header" xml:space="preserve"> <value>Crosshairs color</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsOpacity.Header" xml:space="preserve"> <value>Crosshairs opacity (%)</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsRadius.Header" xml:space="preserve"> <value>Crosshairs center radius (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsThickness.Header" xml:space="preserve"> <value>Crosshairs thickness (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsBorderColor.Header" xml:space="preserve"> <value>Crosshairs border color</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsBorderSize.Header" xml:space="preserve"> <value>Crosshairs border size (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_IsCrosshairsFixedLengthEnabled.Header" xml:space="preserve"> <value>Fix crosshairs length</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsFixedLength.Header" xml:space="preserve"> <value>Crosshairs fixed length (px)</value> <comment>px = pixels</comment> </data> <data name="FancyZones_Radio_Custom_Colors.Content" xml:space="preserve"> <value>Custom colors</value> </data> <data name="FancyZones_Radio_Default_Theme.Content" xml:space="preserve"> <value>Windows default</value> </data> <data name="ColorModeHeader.Header" xml:space="preserve"> <value>App theme</value> </data> <data name="FancyZones_Zone_Appearance.Description" xml:space="preserve"> <value>Customize the way zones look</value> </data> <data name="FancyZones_Zone_Appearance.Header" xml:space="preserve"> <value>Zone appearance</value> </data> <data name="VideoConference_DeprecationWarning.Title" xml:space="preserve"> <value>VCM is moving into legacy mode (maintenance only).</value> </data> <data name="VideoConference_DeprecationWarningButton.Content" xml:space="preserve"> <value>Learn more</value> </data> <data name="LearnMore.Content" xml:space="preserve"> <value>Learn more</value> </data> <data name="VideoConference_RunAsAdminRequired.Title" xml:space="preserve"> <value>You need to run as administrator to modify these settings.</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_GCODE.Header" xml:space="preserve"> <value>Geometric Code</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_GCODE.Description" xml:space="preserve"> <value>Only .gcode files with embedded thumbnails are supported</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_GCODE.Header" xml:space="preserve"> <value>Geometric Code</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_GCODE.Description" xml:space="preserve"> <value>Only .gcode files with embedded thumbnails are supported</value> </data> <data name="FancyZones_NumberColor.Header" xml:space="preserve"> <value>Number color</value> </data> <data name="FancyZones_ShowZoneNumberCheckBoxControl.Content" xml:space="preserve"> <value>Show zone number</value> </data> <data name="ToggleSwitch.OffContent" xml:space="preserve"> <value>Off</value> <comment>The state of a ToggleSwitch when it's off</comment> </data> <data name="ToggleSwitch.OnContent" xml:space="preserve"> <value>On</value> <comment>The state of a ToggleSwitch when it's on</comment> </data> <data name="CropAndLock.ModuleDescription" xml:space="preserve"> <value>Crop And Lock allows you to crop a current application into a smaller window or just create a thumbnail. Focus the target window and press the shortcut to start cropping.</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="CropAndLock.ModuleTitle" xml:space="preserve"> <value>Crop And Lock </value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="CropAndLock_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="CropAndLock_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="Shell_CropAndLock.Content" xml:space="preserve"> <value>Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="LearnMore_CropAndLock.Text" xml:space="preserve"> <value>Learn more about Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="CropAndLock_ReparentActivation_Shortcut.Header" xml:space="preserve"> <value>Reparent shortcut</value> </data> <data name="CropAndLock_ReparentActivation_Shortcut.Description" xml:space="preserve"> <value>Shortcut to crop an application's window into a cropped window. This is experimental and can cause issues with some applications, since the cropped window will contain the original application window.</value> </data> <data name="CropAndLock_ThumbnailActivation_Shortcut.Header" xml:space="preserve"> <value>Thumbnail shortcut</value> </data> <data name="CropAndLock_ThumbnailActivation_Shortcut.Description" xml:space="preserve"> <value>Shortcut to crop and create a thumbnail of another window. The application isn't controllable through the thumbnail but it'll have less compatibility issues. </value> </data> <data name="CropAndLock.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="Oobe_CropAndLock.Title" xml:space="preserve"> <value>Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="Oobe_CropAndLock.Description" xml:space="preserve"> <value>Crop And Lock allows you to crop a current application into a smaller window or just create a thumbnail. Focus the target window and press the shortcut to start cropping.</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="Oobe_CropAndLock_HowToUse_Thumbnail.Text" xml:space="preserve"> <value>to crop and create a thumbnail of another window. The application isn't controllable through the thumbnail but it'll have less compatibility issues.</value> </data> <data name="Oobe_CropAndLock_HowToUse_Reparent.Text" xml:space="preserve"> <value>to crop an application's window into a cropped window. This is experimental and can cause issues with some applications, since the cropped window will contain the original application window.</value> </data> <data name="AlwaysOnTop.ModuleDescription" xml:space="preserve"> <value>Always On Top is a quick and easy way to pin windows on top.</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop.ModuleTitle" xml:space="preserve"> <value>Always On Top </value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="Peek_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="AlwaysOnTop_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_ExcludedApps.Description" xml:space="preserve"> <value>Excludes an application from pinning on top</value> </data> <data name="AlwaysOnTop_ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="AlwaysOnTop_ExcludedApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> </data> <data name="AlwaysOnTop_FrameColor.Header" xml:space="preserve"> <value>Color</value> </data> <data name="AlwaysOnTop_FrameEnabled.Header" xml:space="preserve"> <value>Show a border around the pinned window</value> </data> <data name="AlwaysOnTop_FrameThickness.Header" xml:space="preserve"> <value>Thickness (px)</value> <comment>px = pixels</comment> </data> <data name="AlwaysOnTop_Behavior_GroupSettings.Header" xml:space="preserve"> <value>Appearance &amp; behavior</value> </data> <data name="Shell_AlwaysOnTop.Content" xml:space="preserve"> <value>Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_GameMode.Content" xml:space="preserve"> <value>Do not activate when Game Mode is on</value> <comment>Game Mode is a Windows feature</comment> </data> <data name="AlwaysOnTop_SoundTitle.Header" xml:space="preserve"> <value>Sound</value> </data> <data name="AlwaysOnTop_Sound.Content" xml:space="preserve"> <value>Play a sound when pinning a window</value> </data> <data name="AlwaysOnTop_Behavior.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="LearnMore_AlwaysOnTop.Text" xml:space="preserve"> <value>Learn more about Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="AlwaysOnTop_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to pin or unpin an app window</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="Oobe_AlwaysOnTop.Title" xml:space="preserve"> <value>Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="Oobe_AlwaysOnTop.Description" xml:space="preserve"> <value>Always On Top improves your multitasking workflow by pinning an application window so it's always in front - even when focus changes to another window after that.</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="Oobe_AlwaysOnTop_HowToUse.Text" xml:space="preserve"> <value>to pin or unpin the selected window so it's always on top of all other windows.</value> </data> <data name="Oobe_AlwaysOnTop_TipsAndTricks.Text" xml:space="preserve"> <value>You can tweak the visual outline of the pinned windows in PowerToys settings.</value> </data> <data name="AlwaysOnTop_FrameColor_Mode.Header" xml:space="preserve"> <value>Color mode</value> </data> <data name="AlwaysOnTop_Radio_Custom_Color.Content" xml:space="preserve"> <value>Custom color</value> </data> <data name="AlwaysOnTop_Radio_Windows_Default.Content" xml:space="preserve"> <value>Windows default</value> </data> <data name="FileExplorerPreview.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Monaco_Wrap_Text.Content" xml:space="preserve"> <value>Wrap text</value> <comment>Feature on or off</comment> </data> <data name="FancyZones_AllowPopupWindowSnap.Description" xml:space="preserve"> <value>This setting can affect all popup windows including notifications</value> </data> <data name="FancyZones_AllowPopupWindowSnap.Header" xml:space="preserve"> <value>Allow popup windows snapping</value> </data> <data name="FancyZones_AllowChildWindowSnap.Content" xml:space="preserve"> <value>Allow child windows snapping</value> </data> <data name="Shell_WhatsNew.Content" xml:space="preserve"> <value>What's new</value> </data> <data name="Shell_Peek.Content" xml:space="preserve"> <value>Peek</value> <comment>Product name: Navigation view item name for Peek</comment> </data> <data name="Peek.ModuleTitle" xml:space="preserve"> <value>Peek</value> </data> <data name="Peek.ModuleDescription" xml:space="preserve"> <value>Peek is a quick and easy way to preview files. Select a file in File Explorer and press the shortcut to open the file preview.</value> </data> <data name="Peek_EnablePeek.Header" xml:space="preserve"> <value>Enable Peek</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="Peek_BehaviorHeader.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="Peek_AlwaysRunNotElevated.Header" xml:space="preserve"> <value>Always run not elevated, even when PowerToys is elevated</value> </data> <data name="Peek_AlwaysRunNotElevated.Description" xml:space="preserve"> <value>Tries to run Peek without elevated permissions, to fix access to network shares. You need to disable and re-enable Peek for changes to this value to take effect.</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="Peek_CloseAfterLosingFocus.Header" xml:space="preserve"> <value>Automatically close the Peek window after it loses focus</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="FancyZones_DisableRoundCornersOnWindowSnap.Content" xml:space="preserve"> <value>Disable round corners when window is snapped</value> </data> <data name="PowerLauncher_SearchQueryTuningEnabled.Description" xml:space="preserve"> <value>Fine tune results ordering</value> </data> <data name="PowerLauncher_SearchQueryTuningEnabled.Header" xml:space="preserve"> <value>Results order tuning</value> </data> <data name="PowerLauncher_SearchClickedItemWeight.Description" xml:space="preserve"> <value>Use a higher number to get selected results to rise faster. The default is 5, 0 to disable.</value> </data> <data name="PowerLauncher_SearchClickedItemWeight.Header" xml:space="preserve"> <value>Selected item weight</value> </data> <data name="PowerLauncher_WaitForSlowResults.Description" xml:space="preserve"> <value>Selecting this can help preselect the top, more relevant result, but at the risk of jumpiness</value> </data> <data name="PowerLauncher_WaitForSlowResults.Header" xml:space="preserve"> <value>Wait on slower plugin results before selecting top item in results</value> </data> <data name="PowerLauncher_PluginWeightBoost.Description" xml:space="preserve"> <value>Use a higher number to have this plugin's result show higher in the global results. Default is 0.</value> </data> <data name="PowerLauncher_PluginWeightBoost.Header" xml:space="preserve"> <value>Global sort order score modifier</value> </data> <data name="AlwaysOnTop_RoundCorners.Content" xml:space="preserve"> <value>Enable round corners</value> </data> <data name="LearnMore_QuickAccent.Text" xml:space="preserve"> <value>Learn more about Quick Accent</value> <comment>Quick Accent is a product name, do not loc</comment> </data> <data name="QuickAccent_EnableQuickAccent.Header" xml:space="preserve"> <value>Enable Quick Accent</value> </data> <data name="Shell_QuickAccent.Content" xml:space="preserve"> <value>Quick Accent</value> </data> <data name="QuickAccent.ModuleDescription" xml:space="preserve"> <value>Quick Accent is an alternative way to type accented characters, useful for when a keyboard doesn't support that specific accent. Activate by holding the key for the character you want to add an accent to, then press the activation key (space, left or right arrow keys) and an overlay to select accented characters will appear!</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent.ModuleTitle" xml:space="preserve"> <value>Quick Accent</value> </data> <data name="QuickAccent.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> </data> <data name="AlwaysOnTop_ShortDescription" xml:space="preserve"> <value>Pin a window</value> </data> <data name="Awake_ShortDescription" xml:space="preserve"> <value>Keep your PC awake</value> </data> <data name="ColorPicker_ShortDescription" xml:space="preserve"> <value>Pick a color</value> </data> <data name="CropAndLock_Thumbnail" xml:space="preserve"> <value>Thumbnail</value> </data> <data name="CropAndLock_Reparent" xml:space="preserve"> <value>Reparent</value> </data> <data name="FancyZones_OpenEditor" xml:space="preserve"> <value>Open editor</value> </data> <data name="FileLocksmith_ShortDescription" xml:space="preserve"> <value>Right-click on files or directories to show running processes</value> </data> <data name="FindMyMouse_ShortDescription" xml:space="preserve"> <value>Find the mouse</value> </data> <data name="ImageResizer_ShortDescription" xml:space="preserve"> <value>Resize images from right-click context menu</value> </data> <data name="MouseHighlighter_ShortDescription" xml:space="preserve"> <value>Highlight clicks</value> </data> <data name="MouseJump_ShortDescription" xml:space="preserve"> <value>Quickly move the mouse pointer</value> </data> <data name="MouseCrosshairs_ShortDescription" xml:space="preserve"> <value>Draw crosshairs centered on the mouse pointer</value> </data> <data name="MouseWithoutBorders_ShortDescription" xml:space="preserve"> <value>Move your cursor across multiple devices</value> </data> <data name="PastePlain_ShortDescription" xml:space="preserve"> <value>Paste clipboard content without formatting</value> </data> <data name="Peek_ShortDescription" xml:space="preserve"> <value>Quick and easy previewer</value> </data> <data name="PowerRename_ShortDescription" xml:space="preserve"> <value>Rename files and folders from right-click context menu</value> </data> <data name="Run_ShortDescription" xml:space="preserve"> <value>A quick launcher</value> </data> <data name="PowerAccent_ShortDescription" xml:space="preserve"> <value>An alternative way to type accented characters</value> </data> <data name="RegistryPreview_ShortDescription" xml:space="preserve"> <value>Visualize and edit Windows Registry files</value> </data> <data name="ScreenRuler_ShortDescription" xml:space="preserve"> <value>Measure pixels on your screen</value> </data> <data name="ShortcutGuide_ShortDescription" xml:space="preserve"> <value>Show a help overlay with Windows shortcuts</value> </data> <data name="PowerOcr_ShortDescription" xml:space="preserve"> <value>A convenient way to copy text from anywhere on screen</value> </data> <data name="Dashboard_Activation" xml:space="preserve"> <value>Activation</value> </data> <data name="DashboardKBMShowMappingsButton.Content" xml:space="preserve"> <value>Show remappings</value> </data> <data name="Oobe_QuickAccent.Description" xml:space="preserve"> <value>Quick Accent is an easy way to write letters with accents, like on a smartphone.</value> </data> <data name="Oobe_QuickAccent.Title" xml:space="preserve"> <value>Quick Accent</value> </data> <data name="Oobe_QuickAccent_HowToUse.Text" xml:space="preserve"> <value>Open **PowerToys Settings** and enable Quick Accent. While holding the key for the character you want to add an accent to, press the Activation Key and an overlay to select the accented character will appear.</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="QuickAccent_Activation_Shortcut.Header" xml:space="preserve"> <value>Activation key</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent_Activation_Shortcut.Description" xml:space="preserve"> <value>Press this key after holding down the target letter</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent_Activation_Key_Arrows.Content" xml:space="preserve"> <value>Left/Right Arrow</value> <comment>Left/Right arrow keyboard keys</comment> </data> <data name="QuickAccent_Activation_Key_Space.Content" xml:space="preserve"> <value>Space</value> <comment>Space is the space keyboard key</comment> </data> <data name="QuickAccent_Activation_Key_Either.Content" xml:space="preserve"> <value>Left, Right or Space</value> <comment>All are keys on a keyboard</comment> </data> <data name="QuickAccent_Toolbar.Header" xml:space="preserve"> <value>Toolbar</value> </data> <data name="QuickAccent_ToolbarPosition.Header" xml:space="preserve"> <value>Toolbar position</value> </data> <data name="QuickAccent_ToolbarPosition_TopCenter.Content" xml:space="preserve"> <value>Top center</value> </data> <data name="QuickAccent_ToolbarPosition_TopLeftCorner.Content" xml:space="preserve"> <value>Top left corner</value> </data> <data name="QuickAccent_ToolbarPosition_TopRightCorner.Content" xml:space="preserve"> <value>Top right corner</value> </data> <data name="QuickAccent_ToolbarPosition_BottomLeftCorner.Content" xml:space="preserve"> <value>Bottom left corner</value> </data> <data name="QuickAccent_ToolbarPosition_BottomCenter.Content" xml:space="preserve"> <value>Bottom center</value> </data> <data name="QuickAccent_ToolbarPosition_BottomRightCorner.Content" xml:space="preserve"> <value>Bottom right corner</value> </data> <data name="QuickAccent_ToolbarPosition_Center.Content" xml:space="preserve"> <value>Center</value> </data> <data name="QuickAccent_ToolbarPosition_Left.Content" xml:space="preserve"> <value>Left</value> </data> <data name="QuickAccent_ToolbarPosition_Right.Content" xml:space="preserve"> <value>Right</value> </data> <data name="QuickAccent_Behavior.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="QuickAccent_InputTimeMs.Header" xml:space="preserve"> <value>Input delay (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="QuickAccent_InputTimeMs.Description" xml:space="preserve"> <value>Hold the key down for this much time to make the accent menu appear (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="QuickAccent_ExcludedApps.Description" xml:space="preserve"> <value>Prevents module activation if a foreground application is excluded. Add one application name per line.</value> </data> <data name="QuickAccent_ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="QuickAccent_ExcludedApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: Teams.exe</value> </data> <data name="LearnMore_TextExtractor.Text" xml:space="preserve"> <value>Learn more about Text Extractor</value> </data> <data name="TextExtractor_Cancel" xml:space="preserve"> <value>cancel</value> </data> <data name="General_SettingsBackupAndRestore_NothingToBackup" xml:space="preserve"> <value>A new backup was not created because no settings have been changed since last backup.</value> </data> <data name="General_SettingsBackupAndRestore_NoBackupFound" xml:space="preserve"> <value>No backup found</value> </data> <data name="General_SettingsBackupAndRestore_FailedToParseTime" xml:space="preserve"> <value>Failed to parse time</value> </data> <data name="General_SettingsBackupAndRestore_UnknownBackupTime" xml:space="preserve"> <value>Unknown</value> </data> <data name="General_SettingsBackupAndRestore_UnknownBackupSource" xml:space="preserve"> <value>Unknown</value> </data> <data name="General_SettingsBackupAndRestore_ThisMachine" xml:space="preserve"> <value>This computer</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsMatch" xml:space="preserve"> <value>Current settings match</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsStatusAt" xml:space="preserve"> <value>at</value> <comment>E.g., Food was served 'at' noon.</comment> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsDiffer" xml:space="preserve"> <value>Current settings differ</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsNoChecked" xml:space="preserve"> <value>Checking...</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsUnknown" xml:space="preserve"> <value>Unknown</value> </data> <data name="General_SettingsBackupAndRestore_NeverRestored" xml:space="preserve"> <value>Never restored</value> </data> <data name="General_SettingsBackupAndRestore_NothingToRestore" xml:space="preserve"> <value>Nothing to restore.</value> </data> <data name="General_SettingsBackupAndRestore_NoSettingsFilesFound" xml:space="preserve"> <value>No settings files found.</value> </data> <data name="General_SettingsBackupAndRestore_BackupError" xml:space="preserve"> <value>There was an error. Try another backup location.</value> </data> <data name="General_SettingsBackupAndRestore_SettingsFormatError" xml:space="preserve"> <value>There was an error in the settings format. Please check the settings file:</value> </data> <data name="General_SettingsBackupAndRestore_BackupComplete" xml:space="preserve"> <value>Backup completed.</value> </data> <data name="General_SettingsBackupAndRestore_NoBackupSyncPath" xml:space="preserve"> <value>No backup location selected.</value> </data> <data name="General_SettingsBackupAndRestore_NoBackupsFound" xml:space="preserve"> <value>No backups found to restore.</value> </data> <data name="General_SettingsBackupAndRestore_InvalidBackupLocation" xml:space="preserve"> <value>Invalid backup location.</value> </data> <data name="TextExtractor.ModuleDescription" xml:space="preserve"> <value>Text Extractor is a convenient way to copy text from anywhere on screen</value> </data> <data name="TextExtractor.ModuleTitle" xml:space="preserve"> <value>Text Extractor</value> </data> <data name="TextExtractor_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Text Extractor</value> </data> <data name="TextExtractor_SupportedLanguages.Title" xml:space="preserve"> <value>Text Extractor can only recognize languages that have the OCR pack installed.</value> </data> <data name="TextExtractor_UseSnippingToolWarning.Title" xml:space="preserve"> <value>It is recommended to use the Snipping Tool instead of the TextExtractor module.</value> </data> <data name="TextExtractor_SupportedLanguages_Link.Content" xml:space="preserve"> <value>Learn more about supported languages</value> </data> <data name="Shell_TextExtractor.Content" xml:space="preserve"> <value>Text Extractor</value> </data> <data name="Launch_TextExtractor.Content" xml:space="preserve"> <value>Launch Text Extractor</value> </data> <data name="Oobe_TextExtractor.Title" xml:space="preserve"> <value>Text Extractor</value> </data> <data name="Oobe_TextExtractor_HowToUse.Text" xml:space="preserve"> <value>to open Text Extractor and then selecting a region to copy the text from.</value> </data> <data name="Oobe_TextExtractor_TipsAndTricks.Text" xml:space="preserve"> <value>Hold the shift key to move the selection region around.</value> </data> <data name="TextExtractor.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> </data> <data name="Oobe_TextExtractor.Description" xml:space="preserve"> <value>Text Extractor works like Snipping Tool, but copies the text out of the selected region using OCR and puts it on the clipboard.</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Monaco_Try_Format.Description" xml:space="preserve"> <value>Applies to json and xml. Files remain unchanged.</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Monaco_Try_Format.Header" xml:space="preserve"> <value>Try to format the source for preview</value> </data> <data name="Run_ConflictingKeywordInfo.Title" xml:space="preserve"> <value>Some characters and phrases may conflict with global queries of other plugins if you use them as activation command.</value> </data> <data name="Run_ConflictingKeywordInfo_Link.Content" xml:space="preserve"> <value>Learn more about conflicting activation commands</value> </data> <data name="MeasureTool_ContinuousCapture_Information.Title" xml:space="preserve"> <value>The continuous capture mode will consume more resources when in use. Also, measurements will be excluded from screenshots and screen capture.</value> <comment>pointer as in mouse pointer. Resources refer to things like CPU, GPU, RAM</comment> </data> <data name="QuickAccent_Description_Indicator.Header" xml:space="preserve"> <value>Show the Unicode code and name of the currently selected character</value> </data> <data name="QuickAccent_SortByUsageFrequency_Indicator.Header" xml:space="preserve"> <value>Sort characters by usage frequency</value> </data> <data name="QuickAccent_SortByUsageFrequency_Indicator.Description" xml:space="preserve"> <value>Track characters usage frequency and sort them accordingly</value> </data> <data name="QuickAccent_StartSelectionFromTheLeft_Indicator.Header" xml:space="preserve"> <value>Start selection from the left</value> </data> <data name="QuickAccent_StartSelectionFromTheLeft_Indicator.Description" xml:space="preserve"> <value>Start selection from the leftmost character for all activation keys, including left and right arrows</value> </data> <data name="QuickAccent_DisableFullscreen.Header" xml:space="preserve"> <value>Disable when Game Mode is On</value> </data> <data name="QuickAccent_Language.Header" xml:space="preserve"> <value>Characters</value> </data> <data name="QuickAccent_SelectedLanguage.Header" xml:space="preserve"> <value>Choose a character set</value> </data> <data name="QuickAccent_SelectedLanguage.Description" xml:space="preserve"> <value>Show only accented characters common to the selected set</value> </data> <data name="QuickAccent_SelectedLanguage_All.Content" xml:space="preserve"> <value>All available</value> </data> <data name="QuickAccent_SelectedLanguage_Catalan.Content" xml:space="preserve"> <value>Catalan</value> </data> <data name="QuickAccent_SelectedLanguage_Currency.Content" xml:space="preserve"> <value>Currency</value> </data> <data name="QuickAccent_SelectedLanguage_Croatian.Content" xml:space="preserve"> <value>Croatian</value> </data> <data name="QuickAccent_SelectedLanguage_Czech.Content" xml:space="preserve"> <value>Czech</value> </data> <data name="QuickAccent_SelectedLanguage_Danish.Content" xml:space="preserve"> <value>Danish</value> </data> <data name="QuickAccent_SelectedLanguage_Gaeilge.Content" xml:space="preserve"> <value>Gaeilge</value> <comment>Gaelic language spoken in Ireland</comment> </data> <data name="QuickAccent_SelectedLanguage_Gaidhlig.Content" xml:space="preserve"> <value>Gàidhlig</value> <comment>Scottish Gaelic</comment> </data> <data name="QuickAccent_SelectedLanguage_German.Content" xml:space="preserve"> <value>German</value> </data> <data name="QuickAccent_SelectedLanguage_Greek.Content" xml:space="preserve"> <value>Greek</value> </data> <data name="QuickAccent_SelectedLanguage_Hebrew.Content" xml:space="preserve"> <value>Hebrew</value> </data> <data name="QuickAccent_SelectedLanguage_French.Content" xml:space="preserve"> <value>French</value> </data> <data name="QuickAccent_SelectedLanguage_Finnish.Content" xml:space="preserve"> <value>Finnish</value> </data> <data name="QuickAccent_SelectedLanguage_Estonian.Content" xml:space="preserve"> <value>Estonian</value> </data> <data name="QuickAccent_SelectedLanguage_Lithuanian.Content" xml:space="preserve"> <value>Lithuanian</value> </data> <data name="QuickAccent_SelectedLanguage_Macedonian.Content" xml:space="preserve"> <value>Macedonian</value> </data> <data name="QuickAccent_SelectedLanguage_Maori.Content" xml:space="preserve"> <value>Maori</value> </data> <data name="QuickAccent_SelectedLanguage_Dutch.Content" xml:space="preserve"> <value>Dutch</value> </data> <data name="QuickAccent_SelectedLanguage_Norwegian.Content" xml:space="preserve"> <value>Norwegian</value> </data> <data name="QuickAccent_SelectedLanguage_Pinyin.Content" xml:space="preserve"> <value>Pinyin</value> </data> <data name="QuickAccent_SelectedLanguage_Polish.Content" xml:space="preserve"> <value>Polish</value> </data> <data name="QuickAccent_SelectedLanguage_Portuguese.Content" xml:space="preserve"> <value>Portuguese</value> </data> <data name="QuickAccent_SelectedLanguage_Slovak.Content" xml:space="preserve"> <value>Slovak</value> </data> <data name="QuickAccent_SelectedLanguage_Spanish.Content" xml:space="preserve"> <value>Spanish</value> </data> <data name="QuickAccent_SelectedLanguage_Swedish.Content" xml:space="preserve"> <value>Swedish</value> </data> <data name="QuickAccent_SelectedLanguage_Turkish.Content" xml:space="preserve"> <value>Turkish</value> </data> <data name="QuickAccent_SelectedLanguage_Icelandic.Content" xml:space="preserve"> <value>Icelandic</value> </data> <data name="QuickAccent_SelectedLanguage_Romanian.Content" xml:space="preserve"> <value>Romanian</value> </data> <data name="QuickAccent_SelectedLanguage_Serbian.Content" xml:space="preserve"> <value>Serbian</value> </data> <data name="QuickAccent_SelectedLanguage_Hungarian.Content" xml:space="preserve"> <value>Hungarian</value> </data> <data name="QuickAccent_SelectedLanguage_Italian.Content" xml:space="preserve"> <value>Italian</value> </data> <data name="QuickAccent_SelectedLanguage_Kurdish.Content" xml:space="preserve"> <value>Kurdish</value> </data> <data name="QuickAccent_SelectedLanguage_Welsh.Content" xml:space="preserve"> <value>Welsh</value> </data> <data name="Hosts.ModuleDescription" xml:space="preserve"> <value>Quick and simple utility for managing hosts file.</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Hosts.ModuleTitle" xml:space="preserve"> <value>Hosts File Editor</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Shell_Hosts.Content" xml:space="preserve"> <value>Hosts File Editor</value> <comment>Products name: Navigation view item name for Hosts File Editor</comment> </data> <data name="Hosts_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Hosts_Toggle_ShowStartupWarning.Header" xml:space="preserve"> <value>Show a warning at startup</value> </data> <data name="Hosts_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="Hosts_LaunchButtonControl.Description" xml:space="preserve"> <value>Manage your hosts file</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Hosts_LaunchButtonControl.Header" xml:space="preserve"> <value>Launch Host File Editor</value> <comment>"Host File Editor" is a product name</comment> </data> <data name="Hosts_LaunchButton_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Launch Host File Editor</value> <comment>"Host File Editor" is a product name</comment> </data> <data name="Hosts_AdditionalLinesPosition.Header" xml:space="preserve"> <value>Position of additional content</value> </data> <data name="Hosts_AdditionalLinesPosition_Bottom.Content" xml:space="preserve"> <value>Bottom</value> </data> <data name="Hosts_AdditionalLinesPosition_Top.Content" xml:space="preserve"> <value>Top</value> </data> <data name="Hosts_Behavior_GroupSettings.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="Launch_Hosts.Content" xml:space="preserve"> <value>Launch Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="LearnMore_Hosts.Text" xml:space="preserve"> <value>Learn more about Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Oobe_Hosts.Description" xml:space="preserve"> <value>Hosts File Editor is a quick and simple utility for managing hosts file.</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Oobe_Hosts.Title" xml:space="preserve"> <value>Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Hosts_Toggle_LaunchAdministrator.Description" xml:space="preserve"> <value>Needs to be launched as administrator in order to make changes to the hosts file</value> </data> <data name="Hosts_Toggle_LaunchAdministrator.Header" xml:space="preserve"> <value>Launch as administrator</value> </data> <data name="EnvironmentVariables.ModuleDescription" xml:space="preserve"> <value>A quick utility for managing environment variables.</value> </data> <data name="EnvironmentVariables.ModuleTitle" xml:space="preserve"> <value>Environment Variables</value> </data> <data name="Shell_EnvironmentVariables.Content" xml:space="preserve"> <value>Environment Variables</value> </data> <data name="EnvironmentVariables_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Environment Variables</value> </data> <data name="EnvironmentVariables_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="EnvironmentVariables_LaunchButtonControl.Description" xml:space="preserve"> <value>Manage your environment variables</value> </data> <data name="EnvironmentVariables_LaunchButtonControl.Header" xml:space="preserve"> <value>Launch Environment Variables</value> </data> <data name="EnvironmentVariables_LaunchButton_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Launch Environment Variables</value> </data> <data name="Launch_EnvironmentVariables.Content" xml:space="preserve"> <value>Launch Environment Variables</value> </data> <data name="LearnMore_EnvironmentVariables.Text" xml:space="preserve"> <value>Learn more about Environment Variables</value> </data> <data name="Oobe_EnvironmentVariables.Description" xml:space="preserve"> <value>Environment Variables is a quick utility for managing environment variables.</value> </data> <data name="Oobe_EnvironmentVariables.Title" xml:space="preserve"> <value>Environment Variables</value> </data> <data name="EnvironmentVariables_Toggle_LaunchAdministrator.Description" xml:space="preserve"> <value>Needs to be launched as administrator in order to make changes to the system environment variables</value> </data> <data name="EnvironmentVariables_Toggle_LaunchAdministrator.Header" xml:space="preserve"> <value>Launch as administrator</value> </data> <data name="ShortcutGuide_PressTimeForTaskbarIconShortcuts.Header" xml:space="preserve"> <value>Press duration before showing taskbar icon shortcuts (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="FileLocksmith.ModuleDescription" xml:space="preserve"> <value>A Windows shell extension to find out which processes are using the selected files and directories.</value> </data> <data name="FileLocksmith.ModuleTitle" xml:space="preserve"> <value>File Locksmith</value> </data> <data name="Shell_FileLocksmith.Content" xml:space="preserve"> <value>File Locksmith</value> <comment>Product name: Navigation view item name for FileLocksmith</comment> </data> <data name="FileLocksmith_Enable_FileLocksmith.Header" xml:space="preserve"> <value>Enable File Locksmith</value> <comment>File Locksmith is the name of the utility</comment> </data> <data name="FileLocksmith_Toggle_StandardContextMenu.Content" xml:space="preserve"> <value>Default and extended context menu</value> </data> <data name="FileLocksmith_Toggle_ExtendedContextMenu.Content" xml:space="preserve"> <value>Extended context menu only</value> </data> <data name="FileLocksmith_Toggle_ContextMenu.Header" xml:space="preserve"> <value>Show File Locksmith in</value> </data> <data name="FileLocksmith_ShellIntegration.Header" xml:space="preserve"> <value>Shell integration</value> <comment>This refers to directly integrating in with Windows</comment> </data> <data name="GPO_IsSettingForced.Title" xml:space="preserve"> <value>This setting is enforced by your System Administrator.</value> </data> <data name="Hosts_AdditionalLinesPosition.Description" xml:space="preserve"> <value>Additional content includes the file header and lines that can't parse</value> </data> <data name="TextExtractor_Languages.Header" xml:space="preserve"> <value>Preferred language</value> </data> <data name="Alternate_OOBE_AlwaysOnTop_Description.Text" xml:space="preserve"> <value>Pin a window so that:</value> </data> <data name="Alternate_OOBE_AlwaysOnTop_Title.Text" xml:space="preserve"> <value>Always On Top</value> </data> <data name="Alternate_OOBE_ColorPicker_Description.Text" xml:space="preserve"> <value>To pick a color:</value> </data> <data name="Alternate_OOBE_ColorPicker_Title.Text" xml:space="preserve"> <value>Color Picker</value> </data> <data name="Alternate_OOBE_Description.Text" xml:space="preserve"> <value>Here are a few shortcuts to get you started:</value> </data> <data name="Alternate_OOBE_FancyZones_Description.Text" xml:space="preserve"> <value>To open the FancyZones editor, press:</value> </data> <data name="Alternate_OOBE_FancyZones_Title.Text" xml:space="preserve"> <value>FancyZones</value> </data> <data name="Alternate_OOBE_Run_Description.Text" xml:space="preserve"> <value>Get access to your files and more:</value> </data> <data name="Alternate_OOBE_Run_Title.Text" xml:space="preserve"> <value>PowerToys Run</value> </data> <data name="General_Experimentation.Header" xml:space="preserve"> <value>Experimentation</value> </data> <data name="GeneralPage_EnableExperimentation.Description" xml:space="preserve"> <value>Note: Only Windows Insider builds may be selected for experimentation</value> </data> <data name="GeneralPage_EnableExperimentation.Header" xml:space="preserve"> <value>Allow experimentation with new features</value> </data> <data name="GPO_ExperimentationIsDisallowed.Title" xml:space="preserve"> <value>The system administrator has disabled experimentation.</value> </data> <data name="Shell_PastePlain.Content" xml:space="preserve"> <value>Paste As Plain Text</value> <comment>Product name: Navigation view item name for Paste as Plain Text</comment> </data> <data name="PastePlain.ModuleDescription" xml:space="preserve"> <value>Paste As Plain Text is a quick shortcut for pasting the text contents of your clipboard without formatting. Note: the formatted text in the clipboard is replaced with the unformatted text.</value> </data> <data name="PastePlain.ModuleTitle" xml:space="preserve"> <value>Paste As Plain Text</value> </data> <data name="PastePlain_Cancel" xml:space="preserve"> <value>cancel</value> </data> <data name="PastePlain_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Paste As Plain Text</value> </data> <data name="Oobe_PastePlain.Description" xml:space="preserve"> <value>Paste As Plain Text strips rich formatting from your clipboard data and pastes it as non-formatted text.</value> </data> <data name="Oobe_PastePlain.Title" xml:space="preserve"> <value>Paste As Plain Text</value> </data> <data name="Oobe_PastePlain_HowToUse.Text" xml:space="preserve"> <value>to paste your clipboard data as plain text. Note: this will replace the formatted text in your clipboard with the plain text.</value> </data> <data name="AllAppsTxt.Text" xml:space="preserve"> <value>All apps</value> </data> <data name="BackBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Back</value> </data> <data name="BackLabel.Text" xml:space="preserve"> <value>Back</value> </data> <data name="BugReportBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Bug report</value> </data> <data name="BugReportTooltip.Text" xml:space="preserve"> <value>Bug report</value> </data> <data name="DocsBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Documentation</value> </data> <data name="DocsTooltip.Text" xml:space="preserve"> <value>Documentation</value> </data> <data name="FZEditorString" xml:space="preserve"> <value>FancyZones Editor</value> <comment>Do not localize this string</comment> </data> <data name="MoreBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>More</value> </data> <data name="MoreLabel.Text" xml:space="preserve"> <value>More</value> </data> <data name="SettingsBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Settings</value> </data> <data name="SettingsTooltip.Text" xml:space="preserve"> <value>Settings</value> </data> <data name="ShortcutsTxt.Text" xml:space="preserve"> <value>Shortcuts</value> </data> <data name="UpdateAvailable.Title" xml:space="preserve"> <value>Update available</value> </data> <data name="FileExplorerPreview_Toggle_Monaco_Max_File_Size.Header" xml:space="preserve"> <value>Maximum file size to preview</value> <comment>Size refers to the disk space used by a file</comment> </data> <data name="FileExplorerPreview_Toggle_Monaco_Max_File_Size.Description" xml:space="preserve"> <value>The maximum size, in kilobytes, for files to be displayed. This is a safety mechanism to prevent loading large files into RAM.</value> <comment>"RAM" refers to random access memory; "size" refers to disk space; "bytes" refer to the measurement unit</comment> </data> <data name="RegistryPreview.ModuleDescription" xml:space="preserve"> <value>A quick little utility to visualize and edit complex Windows Registry files.</value> </data> <data name="RegistryPreview.ModuleTitle" xml:space="preserve"> <value>Registry Preview</value> </data> <data name="Shell_RegistryPreview.Content" xml:space="preserve"> <value>Registry Preview</value> <comment>Product name: Navigation view item name for Registry Preview</comment> </data> <data name="RegistryPreview_Enable_RegistryPreview.Header" xml:space="preserve"> <value>Enable Registry Preview</value> <comment>Registry Preview is the name of the utility</comment> </data> <data name="Oobe_RegistryPreview_HowToUse.Text" xml:space="preserve"> <value>In File Explorer, right-click a .REG file and select **Preview** from the context menu.</value> </data> <data name="Oobe_RegistryPreview_TipsAndTricks.Text" xml:space="preserve"> <value>You can preview or edit Registry files in File Explorer or by opening the app from the PowerToys launcher.</value> </data> <data name="Oobe_RegistryPreview.Description" xml:space="preserve"> <value>Registry Preview is a quick little utility to visualize and edit complex Windows Registry files.</value> </data> <data name="Oobe_RegistryPreview.Title" xml:space="preserve"> <value>Registry Preview</value> <comment>Do not localize this string</comment> </data> <data name="LearnMore_RegistryPreview.Text" xml:space="preserve"> <value>Learn more about Registry Preview</value> <comment>Registry Preview is a product name, do not loc</comment> </data> <data name="Launch_RegistryPreview.Content" xml:space="preserve"> <value>Launch Registry Preview</value> <comment>"Registry Preview" is the name of the utility</comment> </data> <data name="MouseUtils_MouseJump.Description" xml:space="preserve"> <value>Quickly move the mouse pointer long distances.</value> <comment>"Mouse Jump" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_MouseJump.Header" xml:space="preserve"> <value>Mouse Jump</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_MouseJump_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to turn on or off this mode</value> </data> <data name="MouseUtils_MouseJump_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MouseUtils_Enable_MouseJump.Header" xml:space="preserve"> <value>Enable Mouse Jump</value> <comment>"Mouse Jump" is the name of the utility.</comment> </data> <data name="GPO_AutoDownloadUpdatesIsDisabled.Title" xml:space="preserve"> <value>The system administrator has disabled the automatic download of updates.</value> </data> <data name="Hosts_Toggle_LoopbackDuplicates.Description" xml:space="preserve"> <value>127.0.0.1, ::1, ...</value> <comment>"127.0.0.1 and ::1" are well known loopback addresses, do not loc</comment> </data> <data name="Hosts_Toggle_LoopbackDuplicates.Header" xml:space="preserve"> <value>Consider loopback addresses as duplicates</value> </data> <data name="RegistryPreview_Launch_GroupSettings.Header" xml:space="preserve"> <value>Launch</value> </data> <data name="RegistryPreview_LaunchButton_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Launch Registry Preview</value> </data> <data name="RegistryPreview_LaunchButtonControl.Header" xml:space="preserve"> <value>Launch Registry Preview</value> </data> <data name="RegistryPreview_DefaultRegApp.Header" xml:space="preserve"> <value>Default app</value> </data> <data name="RegistryPreview_DefaultRegApp.Description" xml:space="preserve"> <value>Make Registry Preview default app for opening .reg files</value> <comment>Registry Preview is app name. Do not localize.</comment> </data> <data name="PastePlain_ShortcutWarning.Title" xml:space="preserve"> <value>Using this shortcut may prevent non-text paste actions (e.g. images, files) or built-in paste plain text actions in other applications from functioning.</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize.Header" xml:space="preserve"> <value>Thumbnail Size</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Description_Prefix.Text" xml:space="preserve"> <value>Constrain thumbnail image size to a maximum of</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Description_Suffix.Text" xml:space="preserve"> <value>pixels</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Edit_Height.Header" xml:space="preserve"> <value>Maximum height (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Edit_Width.Header" xml:space="preserve"> <value>Maximum width (px)</value> <comment>px = pixels</comment> </data> <data name="Oobe_Peek.Description" xml:space="preserve"> <value>A lightning fast file preview feature for Windows.</value> </data> <data name="Oobe_Peek.Title" xml:space="preserve"> <value>Peek</value> </data> <data name="Oobe_Peek_HowToUse.Text" xml:space="preserve"> <value>to preview the file that's currently selected in File Explorer.</value> </data> <data name="MWB_PCNameLabel.PlaceholderText" xml:space="preserve"> <value>Device name</value> </data> <data name="MWB_SecurityKeyLabel.PlaceholderText" xml:space="preserve"> <value>Security key</value> </data> <data name="Hosts_Encoding.Description" xml:space="preserve"> <value>Choose the encoding of the hosts file</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Hosts_Encoding.Header" xml:space="preserve"> <value>Encoding</value> </data> <data name="Hosts_Encoding_Utf8.Content" xml:space="preserve"> <value>UTF-8</value> </data> <data name="Hosts_Encoding_Utf8Bom.Content" xml:space="preserve"> <value>UTF-8 with BOM</value> </data> <data name="MouseUtils_MouseHighlighter_AlwaysColor.Header" xml:space="preserve"> <value>Always highlight color</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsAutoHide.Content" xml:space="preserve"> <value>Automatically hide crosshairs when the mouse pointer is hidden</value> </data> <data name="MouseUtils_AutoActivate.Content" xml:space="preserve"> <value>Automatically activate on utility startup</value> </data> <data name="Run_FindMorePlugins.Text" xml:space="preserve"> <value>Find more plugins</value> </data> <data name="Run_PluginUseFindMorePlugins.Content" xml:space="preserve"> <value>Find more plugins</value> </data> <data name="Run_SomePluginsAreGpoManaged.Title" xml:space="preserve"> <value>The system administrator is managing the enabled state of some plugins.</value> </data> <data name="AlwaysOnTop_FrameOpacity.Header" xml:space="preserve"> <value>Opacity (%)</value> </data> <data name="MouseUtils_FindMyMouse_ActivationCustomizedShortcut.Content" xml:space="preserve"> <value>Custom shortcut</value> </data> <data name="MouseUtils_FindMyMouse_ActivationDoubleRightControlPress.Content" xml:space="preserve"> <value>Press Right Control twice</value> <comment>Right control is the physical key on the keyboard.</comment> </data> <data name="MouseUtils_FindMyMouse_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to turn on or off this mode</value> </data> <data name="MouseUtils_FindMyMouse_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="SettingsWindow_AdminTitle" xml:space="preserve"> <value>Administrator: PowerToys Settings</value> <comment>Title of the settings window when running as administrator</comment> </data> <data name="DashboardTitle.Text" xml:space="preserve"> <value>Dashboard</value> </data> <data name="Shell_Dashboard.Content" xml:space="preserve"> <value>Dashboard</value> </data> <data name="GPO_IsSettingForcedText.Text" xml:space="preserve"> <value>This setting is enforced by your System Administrator.</value> </data> <data name="DisabledModules.Text" xml:space="preserve"> <value>Disabled modules</value> </data> <data name="EnabledModules.Text" xml:space="preserve"> <value>Enabled modules</value> </data> <data name="Peek_Preview_GroupSettings.Header" xml:space="preserve"> <value>Preview</value> </data> <data name="Peek_SourceCode_Header.Description" xml:space="preserve"> <value>.cpp, .py, .json, .xml, .csproj, ...</value> </data> <data name="Peek_SourceCode_Header.Header" xml:space="preserve"> <value>Source code files (Monaco)</value> </data> <data name="Peek_SourceCode_TryFormat.Description" xml:space="preserve"> <value>Applies to json and xml. Files remain unchanged.</value> </data> <data name="Peek_SourceCode_TryFormat.Header" xml:space="preserve"> <value>Try to format the source for preview</value> </data> <data name="Peek_SourceCode_WrapText.Content" xml:space="preserve"> <value>Wrap text</value> </data> </root>
<?xml version="1.0" encoding="utf-8"?> <root> <!-- Microsoft ResX Schema Version 2.0 The primary goals of this format is to allow a simple XML format that is mostly human readable. The generation and parsing of the various data types are done through the TypeConverter classes associated with the data types. Example: ... ado.net/XML headers & schema ... <resheader name="resmimetype">text/microsoft-resx</resheader> <resheader name="version">2.0</resheader> <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader> <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader> <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data> <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data> <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64"> <value>[base64 mime encoded serialized .NET Framework object]</value> </data> <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value> <comment>This is a comment</comment> </data> There are any number of "resheader" rows that contain simple name/value pairs. Each data row contains a name, and value. The row also contains a type or mimetype. Type corresponds to a .NET class that support text/value conversion through the TypeConverter architecture. Classes that don't support this are serialized and stored with the mimetype set. The mimetype is used for serialized objects, and tells the ResXResourceReader how to depersist the object. This is currently not extensible. For a given mimetype the value must be set accordingly: Note - application/x-microsoft.net.object.binary.base64 is the format that the ResXResourceWriter will generate, however the reader can read any of the formats listed below. mimetype: application/x-microsoft.net.object.binary.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.soap.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Soap.SoapFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.bytearray.base64 value : The object must be serialized into a byte array : using a System.ComponentModel.TypeConverter : and then encoded with base64 encoding. --> <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> <xsd:import namespace="http://www.w3.org/XML/1998/namespace" /> <xsd:element name="root" msdata:IsDataSet="true"> <xsd:complexType> <xsd:choice maxOccurs="unbounded"> <xsd:element name="metadata"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" /> </xsd:sequence> <xsd:attribute name="name" use="required" type="xsd:string" /> <xsd:attribute name="type" type="xsd:string" /> <xsd:attribute name="mimetype" type="xsd:string" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="assembly"> <xsd:complexType> <xsd:attribute name="alias" type="xsd:string" /> <xsd:attribute name="name" type="xsd:string" /> </xsd:complexType> </xsd:element> <xsd:element name="data"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" /> <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="resheader"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" /> </xsd:complexType> </xsd:element> </xsd:choice> </xsd:complexType> </xsd:element> </xsd:schema> <resheader name="resmimetype"> <value>text/microsoft-resx</value> </resheader> <resheader name="version"> <value>2.0</value> </resheader> <resheader name="reader"> <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <resheader name="writer"> <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <data name="Attribution_Rooler.Text" xml:space="preserve"> <value>Inspired by Rooler</value> <comment>Rooler is a name of the tool.</comment> </data> <data name="Shell_VideoConference.Content" xml:space="preserve"> <value>Video Conference Mute</value> <comment>Navigation view item name for Video Conference</comment> </data> <data name="Shell_MeasureTool.Content" xml:space="preserve"> <value>Screen Ruler</value> <comment>Product name: Navigation view item name for Screen Ruler</comment> </data> <data name="MeasureTool.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="MeasureTool.ModuleDescription" xml:space="preserve"> <value>Screen Ruler is a quick and easy way to measure pixels on your screen.</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool.ModuleTitle" xml:space="preserve"> <value>Screen Ruler</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool_ActivationSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="MeasureTool_Settings.Header" xml:space="preserve"> <value>Behavior</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MeasureTool_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to bring up the command bar</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool_DefaultMeasureStyle.Header" xml:space="preserve"> <value>Default measure style</value> </data> <data name="MeasureTool_DefaultMeasureStyle.Description" xml:space="preserve"> <value>The utility will start having the selected style activated</value> </data> <data name="MeasureTool_DefaultMeasureStyle_None.Content" xml:space="preserve"> <value>None</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Bounds.Content" xml:space="preserve"> <value>Bounds</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Spacing.Content" xml:space="preserve"> <value>Spacing</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Horizontal_Spacing.Content" xml:space="preserve"> <value>Horizontal spacing</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Vertical_Spacing.Content" xml:space="preserve"> <value>Vertical spacing</value> </data> <data name="MeasureTool_UnitsOfMeasure.Header" xml:space="preserve"> <value>Units of measurement</value> </data> <data name="MeasureTool_UnitsOfMeasure_Pixels.Content" xml:space="preserve"> <value>Pixels</value> </data> <data name="MeasureTool_UnitsOfMeasure_Inches.Content" xml:space="preserve"> <value>Inches</value> </data> <data name="MeasureTool_UnitsOfMeasure_Centimeters.Content" xml:space="preserve"> <value>Centimeters</value> </data> <data name="MeasureTool_PixelTolerance.Header" xml:space="preserve"> <value>Pixel tolerance for edge detection</value> </data> <data name="MeasureTool_MeasureCrossColor.Header" xml:space="preserve"> <value>Line color</value> </data> <data name="MeasureTool_ContinuousCapture.Header" xml:space="preserve"> <value>Capture screen continuously during measuring</value> </data> <data name="MeasureTool_ContinuousCapture.Description" xml:space="preserve"> <value>Refresh screen contexts in real-time instead of making a screenshot once</value> </data> <data name="MeasureTool_PerColorChannelEdgeDetection.Header" xml:space="preserve"> <value>Per color channel edge detection</value> </data> <data name="MeasureTool_PerColorChannelEdgeDetection.Description" xml:space="preserve"> <value>If enabled, test that all color channels are within a tolerance distance from each other. Otherwise, check that the sum of all color channels differences is smaller than the tolerance.</value> </data> <data name="MeasureTool_DrawFeetOnCross.Header" xml:space="preserve"> <value>Draw feet on cross</value> </data> <data name="MeasureTool_DrawFeetOnCross.Description" xml:space="preserve"> <value>Adds feet to the end of cross lines</value> </data> <data name="MeasureTool_EnableMeasureTool.Header" xml:space="preserve"> <value>Enable Screen Ruler</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MouseWithoutBorders_ActivationSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="MouseWithoutBorders_DeviceLayoutSettings.Header" xml:space="preserve"> <value>Device layout</value> </data> <data name="MouseWithoutBorders_DeviceLayoutSettings.Description" xml:space="preserve"> <value>Drag and drop a machine to rearrange the order.</value> </data> <data name="MouseWithoutBorders_CannotDragDropAsAdmin.Title" xml:space="preserve"> <value>It is not possible to use drag and drop while running PowerToys elevated. As a workaround, please restart PowerToys without elevation to edit the device layout.</value> </data> <data name="MouseWithoutBorders_KeySettings.Header" xml:space="preserve"> <value>Encryption key</value> </data> <data name="MouseWithoutBorders_SecurityKey.Header" xml:space="preserve"> <value>Security key</value> </data> <data name="MouseWithoutBorders_SecurityKey.Description" xml:space="preserve"> <value>The key must be auto generated in one machine by clicking on New Key, then typed in other machines</value> </data> <data name="MouseWithoutBorders_NewKey.Content" xml:space="preserve"> <value>New key</value> </data> <data name="MouseWithoutBorders_CopyMachineName.Text" xml:space="preserve"> <value>Copy to clipboard</value> </data> <data name="MouseWithoutBorders_ReconnectButton.Text" xml:space="preserve"> <value>Refresh connections</value> </data> <data name="MouseWithoutBorders_ReconnectTooltip.Text" xml:space="preserve"> <value>Reestablishes connections with other devices if you are experiencing issues.</value> </data> <data name="MouseWithoutBorders_ThisMachineNameLabel.Header" xml:space="preserve"> <value>Host name of this device</value> </data> <data name="MouseWithoutBorders_Connect.Content" xml:space="preserve"> <value>Connect</value> </data> <data name="MouseWithoutBorders_UninstallService.Header" xml:space="preserve"> <value>Uninstall service</value> </data> <data name="MouseWithoutBorders_UninstallService.Description" xml:space="preserve"> <value>Removes the service from the computer. Needs to run as administrator.</value> </data> <data name="MouseWithoutBorders_Settings.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="MouseWithoutBorders_TroubleShooting.Header" xml:space="preserve"> <value>Troubleshooting</value> </data> <data name="MouseWithoutBorders_AddFirewallRuleButtonControl.Header" xml:space="preserve"> <value>Add a firewall rule for Mouse Without Borders</value> <comment>"Mouse Without Borders" is a product name</comment> </data> <data name="MouseWithoutBorders_AddFirewallRuleButtonControl.Description" xml:space="preserve"> <value>Adding a firewall rule might help solve connection issues.</value> </data> <data name="MouseWithoutBorders_RunAsAdminText.Title" xml:space="preserve"> <value>You need to run as administrator to modify this setting.</value> </data> <data name="MouseWithoutBorders_ServiceUserUninstallWarning.Title" xml:space="preserve"> <value>If PowerToys is installed as a user, uninstalling/upgrading may require the Mouse Without Borders service to be removed manually later.</value> </data> <data name="MouseWithoutBorders_ServiceSettings.Header" xml:space="preserve"> <value>Service</value> </data> <data name="MouseWithoutBorders_Toggle_Enable.Header" xml:space="preserve"> <value>Enable Mouse Without Borders</value> </data> <data name="MouseWithoutBorders.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="MouseWithoutBorders.ModuleDescription" xml:space="preserve"> <value>Mouse Without Borders is a quick and easy way to move your cursor across multiple devices.</value> <comment>"Mouse Without Borders" is the name of the utility</comment> </data> <data name="MouseWithoutBorders.ModuleTitle" xml:space="preserve"> <value>Mouse Without Borders</value> <comment>"Mouse Without Borders" is the name of the utility</comment> </data> <data name="MouseWithoutBorders_UseService.Header" xml:space="preserve"> <value>Use Service</value> </data> <data name="MouseWithoutBorders_UseService.Description" xml:space="preserve"> <value>Runs in service mode, that allows MWB to control remote machines when they're locked. Also allows control of system and administrator applications.</value> </data> <data name="MouseWithoutBorders_MatrixOneRow.Header" xml:space="preserve"> <value>Devices in a single row</value> </data> <data name="MouseWithoutBorders_MatrixOneRow.Description" xml:space="preserve"> <value>Sets whether the devices are aligned on a single row. A two by two matrix is considered otherwise.</value> </data> <data name="MouseWithoutBorders_WrapMouse.Header" xml:space="preserve"> <value>Wrap mouse</value> </data> <data name="MouseWithoutBorders_WrapMouse.Description" xml:space="preserve"> <value>Move control back to the first machine when mouse moves past the last one.</value> </data> <data name="MouseWithoutBorders_ShareClipboard.Header" xml:space="preserve"> <value>Share clipboard</value> </data> <data name="MouseWithoutBorders_TransferFile.Header" xml:space="preserve"> <value>Transfer file</value> </data> <data name="MouseWithoutBorders_HideMouseAtScreenEdge.Header" xml:space="preserve"> <value>Hide mouse at the screen edge</value> </data> <data name="MouseWithoutBorders_DrawMouseCursor.Header" xml:space="preserve"> <value>Draw mouse cursor</value> </data> <data name="MouseWithoutBorders_ValidateRemoteMachineIP.Header" xml:space="preserve"> <value>Validate remote machine IP</value> </data> <data name="MouseWithoutBorders_SameSubnetOnly.Header" xml:space="preserve"> <value>Same subnet only</value> </data> <data name="MouseWithoutBorders_BlockScreenSaverOnOtherMachines.Header" xml:space="preserve"> <value>Block screen saver on other machines</value> </data> <data name="MouseWithoutBorders_MoveMouseRelatively.Header" xml:space="preserve"> <value>Move mouse relatively</value> </data> <data name="MouseWithoutBorders_BlockMouseAtScreenCorners.Header" xml:space="preserve"> <value>Block mouse at screen corners</value> </data> <data name="MouseWithoutBorders_ShowClipboardAndNetworkStatusMessages.Header" xml:space="preserve"> <value>Show clipboard and network status messages</value> </data> <data name="MouseWithoutBorders_ShowOriginalUI.Header" xml:space="preserve"> <value>Show the original Mouse Without Borders UI</value> </data> <data name="MouseWithoutBorders_ShowOriginalUI.Description" xml:space="preserve"> <value>This is accessible from the system tray and requires a restart.</value> </data> <data name="MouseWithoutBorders_ShareClipboard.Description" xml:space="preserve"> <value>If share clipboard stops working, Ctrl+Alt+Del then Esc may solve the problem.</value> </data> <data name="MouseWithoutBorders_TransferFile.Description" xml:space="preserve"> <value>If a file (&lt;100MB) is copied, it will be transferred to the remote machine clipboard.</value> </data> <data name="MouseWithoutBorders_HideMouseAtScreenEdge.Description" xml:space="preserve"> <value>Hide the mouse cursor at the top edge of the screen when switching to other machine. This option also steals the focus from any full-screen app to ensure the keyboard input is redirected.</value> </data> <data name="MouseWithoutBorders_DrawMouseCursor.Description" xml:space="preserve"> <value>Mouse cursor may not be visible in Windows 10 and later versions of Windows when there is no physical mouse attached.</value> </data> <data name="MouseWithoutBorders_ValidateRemoteMachineIP.Description" xml:space="preserve"> <value>Reverse DNS lookup to validate machine IP Address.</value> </data> <data name="MouseWithoutBorders_SameSubnetOnly.Description" xml:space="preserve"> <value>Only connect to machines in the same intranet NNN.NNN.*.* (only works when both machines have IPv4 enabled)</value> </data> <data name="MouseWithoutBorders_IPAddressMapping_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: MyLaptop 192.168.0.24</value> <comment>Don't translate MyLaptop</comment> </data> <data name="MouseWithoutBorders_IPAddressMapping.Header" xml:space="preserve"> <value>IP address mapping</value> </data> <data name="MouseWithoutBorders_IPAddressMapping.Description" xml:space="preserve"> <value>Resolve machine's IP address using manually entered mappings below.</value> </data> <data name="MouseWithoutBorders_BlockScreenSaverOnOtherMachines.Description" xml:space="preserve"> <value>Prevent screen saver from starting on other machines when user is actively working on this machine.</value> </data> <data name="MouseWithoutBorders_MoveMouseRelatively.Description" xml:space="preserve"> <value>Use this option when remote machine's monitor settings are different, or remote machine has multiple monitors.</value> </data> <data name="MouseWithoutBorders_BlockMouseAtScreenCorners.Description" xml:space="preserve"> <value>To avoid accident machine-switch at screen corners.</value> </data> <data name="MouseWithoutBorders_ShowClipboardAndNetworkStatusMessages.Description" xml:space="preserve"> <value>Show clipboard activities and network status in system tray notifications</value> </data> <data name="MouseWithoutBorders_KeyboardShortcuts_Group.Header" xml:space="preserve"> <value>Keyboard shortcuts</value> <comment>keyboard is the hardware peripheral</comment> </data> <data name="MouseWithoutBorders_AdvancedSettings_Group.Header" xml:space="preserve"> <value>Advanced Settings</value> </data> <data name="MouseWithoutBorders_EasyMouseOption.Header" xml:space="preserve"> <value>Easy Mouse: move between machines by moving the mouse pointer to the screen edges.</value> </data> <data name="MouseWithoutBorders_EasyMouseOption.Description" xml:space="preserve"> <value>Can also be set to move only when pressing Shift or Ctrl.</value> <comment>Shift and Ctrl are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_EasyMouseOption_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_EasyMouseOption_Enabled.Content" xml:space="preserve"> <value>Enabled</value> </data> <data name="MouseWithoutBorders_EasyMouseOption_Ctrl.Content" xml:space="preserve"> <value>Ctrl</value> <comment>This is the Ctrl keyboard key</comment> </data> <data name="MouseWithoutBorders_EasyMouseOption_Shift.Content" xml:space="preserve"> <value>Shift</value> <comment>This is the Shift keyboard key</comment> </data> <data name="MouseWithoutBorders_LockMachinesShortcut.Header" xml:space="preserve"> <value>Shortcut to lock all machines.</value> </data> <data name="MouseWithoutBorders_LockMachinesShortcut.Description" xml:space="preserve"> <value>Hit this hotkey twice to lock all machines. Note: Only the machines which have the same shortcut configured will be locked.</value> </data> <data name="MouseWithoutBorders_ToggleEasyMouseShortcut.Header" xml:space="preserve"> <value>Shortcut to toggle Easy Mouse.</value> <comment>Ctrl and Alt are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_ToggleEasyMouseShortcut.Description" xml:space="preserve"> <value>Only works if EasyMouse is set to Enabled or Disabled.</value> </data> <data name="MouseWithoutBorders_ToggleEasyMouseShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut.Header" xml:space="preserve"> <value>Shortcut to switch between machines. Ctrl+Alt+:</value> <comment>Ctrl and Alt are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut.Description" xml:space="preserve"> <value>Click on Ctrl+Alt+ the chosen option to switch between machines.</value> <comment>Ctrl and Alt are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut_F1.Content" xml:space="preserve"> <value>F1, F2, F3, F4</value> <comment>Don't localize. These are keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut_1.Content" xml:space="preserve"> <value>1, 2, 3, 4</value> <comment>Don't localize. These are keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_LockMachinesShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_ReconnectShortcut.Header" xml:space="preserve"> <value>Shortcut to try reconnecting</value> </data> <data name="MouseWithoutBorders_ReconnectShortcut.Description" xml:space="preserve"> <value>Just in case the connection is lost for any reason.</value> </data> <data name="MouseWithoutBorders_ReconnectShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut.Header" xml:space="preserve"> <value>Shortcut to switch to multiple machine mode.</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut.Description" xml:space="preserve"> <value>Allows controlling all computers at once.</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut_Ctrl3.Content" xml:space="preserve"> <value>Ctrl three times</value> <comment>This is the Ctrl keyboard key</comment> </data> <data name="VideoConference_Enable.Header" xml:space="preserve"> <value>Enable Video Conference Mute</value> </data> <data name="VideoConference.ModuleDescription" xml:space="preserve"> <value>Video Conference Mute is a quick and easy way to do a global "mute" of both your microphone and webcam. Disabling this module or closing PowerToys will unmute the microphone and camera.</value> </data> <data name="VideoConference_CameraAndMicrophoneMuteHotkeyControl_Header.Header" xml:space="preserve"> <value>Mute camera &amp; microphone</value> </data> <data name="VideoConference_MicrophoneMuteHotkeyControl_Header.Header" xml:space="preserve"> <value>Mute microphone</value> </data> <data name="VideoConference_MicrophonePushToTalkHotkeyControl_Header.Header" xml:space="preserve"> <value>Push to talk</value> </data> <data name="VideoConference_CameraMuteHotkeyControl_Header.Header" xml:space="preserve"> <value>Mute camera</value> </data> <data name="VideoConference_SelectedCamera.Header" xml:space="preserve"> <value>Selected camera</value> </data> <data name="VideoConference_SelectedMicrophone.Header" xml:space="preserve"> <value>Selected microphone</value> </data> <data name="VideoConference_PushToReverse.Header" xml:space="preserve"> <value>Push to reverse</value> </data> <data name="VideoConference_PushToReverse.Description" xml:space="preserve"> <value>If enabled, allows both push to talk and push to mute, depending on microphone state</value> </data> <data name="VideoConference_CameraOverlayImagePathHeader.Header" xml:space="preserve"> <value>Image displayed when camera is muted</value> </data> <data name="VideoConference_ToolbarPosition.Header" xml:space="preserve"> <value>Toolbar position</value> </data> <data name="VideoConference_ToolbarPosition_TopCenter.Content" xml:space="preserve"> <value>Top center</value> </data> <data name="VideoConference_ToolbarPosition_TopLeftCorner.Content" xml:space="preserve"> <value>Top left corner</value> </data> <data name="VideoConference_ToolbarPosition_TopRightCorner.Content" xml:space="preserve"> <value>Top right corner</value> </data> <data name="VideoConference_ToolbarPosition_BottomLeftCorner.Content" xml:space="preserve"> <value>Bottom left corner</value> </data> <data name="VideoConference_ToolbarPosition_BottomCenter.Content" xml:space="preserve"> <value>Bottom center</value> </data> <data name="VideoConference_ToolbarPosition_BottomRightCorner.Content" xml:space="preserve"> <value>Bottom right corner</value> </data> <data name="VideoConference_ToolbarMonitor.Header" xml:space="preserve"> <value>Show toolbar on</value> </data> <data name="VideoConference_ToolbarMonitor_Main.Content" xml:space="preserve"> <value>Main monitor</value> </data> <data name="VideoConference_ToolbarMonitor_UnderCursor.Content" xml:space="preserve"> <value>Monitor under cursor</value> </data> <data name="VideoConference_ToolbarMonitor_ActiveWindow.Content" xml:space="preserve"> <value>Active window monitor</value> </data> <data name="VideoConference_ToolbarMonitor_All.Content" xml:space="preserve"> <value>All monitors</value> </data> <data name="VideoConference_ToolbarHide.Header" xml:space="preserve"> <value>Hide toolbar</value> </data> <data name="VideoConference_ToolbarHideMuted.Content" xml:space="preserve"> <value>When both camera and microphone are muted</value> </data> <data name="VideoConference_ToolbarHideNever.Content" xml:space="preserve"> <value>Never</value> </data> <data name="VideoConference_ToolbarHideUnmuted.Content" xml:space="preserve"> <value>When both camera and microphone are unmuted</value> </data> <data name="VideoConference_ToolbarHideTimeout.Content" xml:space="preserve"> <value>After timeout</value> </data> <data name="VideoConference.ModuleTitle" xml:space="preserve"> <value>Video Conference Mute</value> </data> <data name="VideoConference_Camera.Header" xml:space="preserve"> <value>Camera</value> </data> <data name="VideoConference_Camera.Description" xml:space="preserve"> <value>To use this feature, make sure to select PowerToys VideoConference Mute as your camera source in your apps.</value> </data> <data name="VideoConference_Microphone.Header" xml:space="preserve"> <value>Microphone</value> </data> <data name="VideoConference_Toolbar.Header" xml:space="preserve"> <value>Toolbar</value> </data> <data name="VideoConference_Behavior.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="VideoConference_StartupAction.Header" xml:space="preserve"> <value>Startup action</value> </data> <data name="VideoConference_StartupActionNothing.Content" xml:space="preserve"> <value>Nothing</value> </data> <data name="VideoConference_StartupActionUnmute.Content" xml:space="preserve"> <value>Unmute</value> </data> <data name="VideoConference_StartupActionMute.Content" xml:space="preserve"> <value>Mute</value> </data> <data name="VideoConference_Shortcuts.Header" xml:space="preserve"> <value>Shortcuts</value> </data> <data name="VideoConference_CameraOverlayImageAlt.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Camera overlay image preview</value> </data> <data name="VideoConference_CameraOverlayImageBrowse.Content" xml:space="preserve"> <value>Browse</value> </data> <data name="VideoConference_CameraOverlayImageClear.Content" xml:space="preserve"> <value>Clear</value> </data> <data name="Shell_General.Content" xml:space="preserve"> <value>General</value> <comment>Navigation view item name for General</comment> </data> <data name="Shell_Awake.Content" xml:space="preserve"> <value>Awake</value> <comment>Product name: Navigation view item name for Awake</comment> </data> <data name="Shell_PowerLauncher.Content" xml:space="preserve"> <value>PowerToys Run</value> <comment>Product name: Navigation view item name for PowerToys Run</comment> </data> <data name="Shell_PowerRename.Content" xml:space="preserve"> <value>PowerRename</value> <comment>Product name: Navigation view item name for PowerRename</comment> </data> <data name="Shell_ShortcutGuide.Content" xml:space="preserve"> <value>Shortcut Guide</value> <comment>Product name: Navigation view item name for Shortcut Guide</comment> </data> <data name="Shell_PowerPreview.Content" xml:space="preserve"> <value>File Explorer add-ons</value> <comment>Product name: Navigation view item name for File Explorer. Please use File Explorer as in the context of File Explorer in Windows</comment> </data> <data name="Shell_FancyZones.Content" xml:space="preserve"> <value>FancyZones</value> <comment>Product name: Navigation view item name for FancyZones</comment> </data> <data name="Shell_ImageResizer.Content" xml:space="preserve"> <value>Image Resizer</value> <comment>Product name: Navigation view item name for Image Resizer</comment> </data> <data name="Shell_ColorPicker.Content" xml:space="preserve"> <value>Color Picker</value> <comment>Product name: Navigation view item name for Color Picker</comment> </data> <data name="Shell_KeyboardManager.Content" xml:space="preserve"> <value>Keyboard Manager</value> <comment>Product name: Navigation view item name for Keyboard Manager</comment> </data> <data name="Shell_MouseWithoutBorders.Content" xml:space="preserve"> <value>Mouse Without Borders</value> <comment>Product name: Navigation view item name for Mouse Without Borders</comment> </data> <data name="Shell_MouseUtilities.Content" xml:space="preserve"> <value>Mouse utilities</value> <comment>Product name: Navigation view item name for Mouse utilities</comment> </data> <data name="Shell_NavigationMenu_Announce_Collapse" xml:space="preserve"> <value>Navigation closed</value> <comment>Accessibility announcement when the navigation pane collapses</comment> </data> <data name="Shell_NavigationMenu_Announce_Open" xml:space="preserve"> <value>Navigation opened</value> <comment>Accessibility announcement when the navigation pane opens</comment> </data> <data name="KeyboardManager_ConfigHeader.Text" xml:space="preserve"> <value>Current configuration</value> <comment>Keyboard Manager current configuration header</comment> </data> <data name="KeyboardManager.ModuleDescription" xml:space="preserve"> <value>Reconfigure your keyboard by remapping keys and shortcuts</value> <comment>Keyboard Manager page description</comment> </data> <data name="KeyboardManager_EnableToggle.Header" xml:space="preserve"> <value>Enable Keyboard Manager</value> <comment>Keyboard Manager enable toggle header. Do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="KeyboardManager_ProfileDescription.Text" xml:space="preserve"> <value>Select the profile to display the active key remap and shortcuts</value> <comment>Keyboard Manager configuration dropdown description</comment> </data> <data name="KeyboardManager_RemapKeyboardButton.Header" xml:space="preserve"> <value>Remap a key</value> <comment>Keyboard Manager remap keyboard button content</comment> </data> <data name="KeyboardManager_Keys.Header" xml:space="preserve"> <value>Keys</value> <comment>Keyboard Manager remap keyboard header</comment> </data> <data name="KeyboardManager_RemapShortcutsButton.Header" xml:space="preserve"> <value>Remap a shortcut</value> <comment>Keyboard Manager remap shortcuts button</comment> </data> <data name="KeyboardManager_Shortcuts.Header" xml:space="preserve"> <value>Shortcuts</value> <comment>Keyboard Manager remap keyboard header</comment> </data> <data name="KeyboardManager_All_Apps_Description" xml:space="preserve"> <value>All Apps</value> <comment>Should be the same as EditShortcuts_AllApps from keyboard manager editor</comment> </data> <data name="Shortcuts.Header" xml:space="preserve"> <value>Shortcuts</value> </data> <data name="Shortcut.Header" xml:space="preserve"> <value>Shortcut</value> </data> <data name="RemapKeysList.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Current Key Remappings</value> </data> <data name="RemapShortcutsList.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Current Shortcut Remappings</value> </data> <data name="KeyboardManager_RemappedKeysListItem.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Key Remapping</value> <comment>key as in keyboard key</comment> </data> <data name="KeyboardManager_RemappedShortcutsListItem.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Shortcut Remapping</value> </data> <data name="KeyboardManager_RemappedTo.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Remapped to</value> </data> <data name="KeyboardManager_ShortcutRemappedTo.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Remapped to</value> </data> <data name="KeyboardManager_TargetApp.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>For Target Application</value> <comment>What computer application would this be for</comment> </data> <data name="KeyboardManager_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Keyboard Manager</value> <comment>do not loc, product name</comment> </data> <data name="ColorPicker.ModuleDescription" xml:space="preserve"> <value>Quick and simple system-wide color picker.</value> </data> <data name="ColorPicker_EnableColorPicker.Header" xml:space="preserve"> <value>Enable Color Picker</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="ColorPicker_ChangeCursor.Content" xml:space="preserve"> <value>Change cursor when picking a color</value> </data> <data name="PowerLauncher.ModuleDescription" xml:space="preserve"> <value>A quick launcher that has additional capabilities without sacrificing performance.</value> </data> <data name="PowerLauncher_EnablePowerLauncher.Header" xml:space="preserve"> <value>Enable PowerToys Run</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="PowerLauncher_SearchResults.Header" xml:space="preserve"> <value>Search &amp; results</value> </data> <data name="PowerLauncher_SearchResultPreference.Header" xml:space="preserve"> <value>Search result preference</value> </data> <data name="PowerLauncher_UsePinyin.Header" xml:space="preserve"> <value>Use Pinyin</value> </data> <data name="PowerLauncher_UsePinyin.Description" xml:space="preserve"> <value>Experimental: Use Pinyin on the search query. May not work for every plugin.</value> </data> <data name="PowerLauncher_SearchResultPreference_MostRecentlyUsed" xml:space="preserve"> <value>Most recently used</value> </data> <data name="PowerLauncher_SearchResultPreference_AlphabeticalOrder" xml:space="preserve"> <value>Alphabetical order</value> </data> <data name="PowerLauncher_SearchResultPreference_RunningProcessesOpenApplications" xml:space="preserve"> <value>Running processes/open applications</value> </data> <data name="PowerLauncher_SearchTypePreference.Header" xml:space="preserve"> <value>Search type preference</value> </data> <data name="PowerLauncher_SearchTypePreference_ApplicationName" xml:space="preserve"> <value>Application name</value> </data> <data name="PowerLauncher_SearchTypePreference_StringInApplication" xml:space="preserve"> <value>A string that is contained in the application</value> </data> <data name="PowerLauncher_SearchTypePreference_ExecutableName" xml:space="preserve"> <value>Executable name</value> </data> <data name="PowerLauncher_MaximumNumberOfResults.Header" xml:space="preserve"> <value>Number of results shown before scrolling</value> </data> <data name="PowerLauncher_OpenPowerLauncher.Header" xml:space="preserve"> <value>Open PowerToys Run</value> </data> <data name="PowerLauncher_OpenFileLocation.Header" xml:space="preserve"> <value>Open file location</value> </data> <data name="PowerLauncher_CopyPathLocation.Header" xml:space="preserve"> <value>Copy path location</value> </data> <data name="PowerLauncher_OpenConsole.Header" xml:space="preserve"> <value>Open console</value> <comment>console refers to Windows command prompt</comment> </data> <data name="PowerLauncher_OverrideWinRKey.Content" xml:space="preserve"> <value>Override Win+R shortcut</value> </data> <data name="PowerLauncher_OverrideWinSKey.Content" xml:space="preserve"> <value>Override Win+S shortcut</value> </data> <data name="PowerLauncher_IgnoreHotkeysInFullScreen.Content" xml:space="preserve"> <value>Ignore shortcuts in fullscreen mode</value> </data> <data name="PowerLauncher_UseCentralizedKeyboardHook.Header" xml:space="preserve"> <value>Use centralized keyboard hook</value> </data> <data name="PowerLauncher_UseCentralizedKeyboardHook.Description" xml:space="preserve"> <value>Try this if there are issues with the shortcut (PowerToys Run might not get focus when triggered from an elevated window)</value> </data> <data name="PowerLauncher_ClearInputOnLaunch.Content" xml:space="preserve"> <value>Clear the previous query on launch</value> </data> <data name="PowerLauncher_TabSelectsContextButtons.Header" xml:space="preserve"> <value>Tab through context buttons</value> </data> <data name="PowerLauncher_TabSelectsContextButtons.Description" xml:space="preserve"> <value>Pressing tab will first select through the available context buttons of the current selection before moving onto the next result</value> </data> <data name="PowerLauncher_GenerateThumbnailsFromFiles.Header" xml:space="preserve"> <value>Generate thumbnails from files</value> </data> <data name="PowerLauncher_GenerateThumbnailsFromFiles.Description" xml:space="preserve"> <value>Results will try to generate thumbnails for files. Disabling this setting may increase stability and speed</value> </data> <data name="PowerLauncher_SearchQueryResultsWithDelay.Header" xml:space="preserve"> <value>Input Smoothing</value> <comment>This is about adding a delay to wait for more input before executing a search</comment> </data> <data name="PowerLauncher_SearchQueryResultsWithDelay.Description" xml:space="preserve"> <value>Wait for more input before searching. This reduces interface jumpiness and system load.</value> </data> <data name="PowerLauncher_FastSearchInputDelayMs.Header" xml:space="preserve"> <value>Immediate plugins</value> </data> <data name="PowerLauncher_FastSearchInputDelayMs.Description" xml:space="preserve"> <value>Affects the plugins that make the UI wait for their results by this amount. Recommended: 30-50 ms.</value> </data> <data name="PowerLauncher_SlowSearchInputDelayMs.Header" xml:space="preserve"> <value>Background execution plugins</value> </data> <data name="PowerLauncher_SlowSearchInputDelayMs.Description" xml:space="preserve"> <value>Affects the plugins that execute in the background by this amount. Recommended: 100-150 ms.</value> </data> <data name="PowerLauncher_SearchInputDelayMs.Header" xml:space="preserve"> <value>Fast plugin throttle (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="KeyboardManager_KeysMappingLayoutRightHeader.Text" xml:space="preserve"> <value>To:</value> <comment>Keyboard Manager mapping keys view right header</comment> </data> <data name="Appearance_GroupSettings.Text" xml:space="preserve"> <value>Appearance</value> </data> <data name="Fancyzones_ImageHyperlinkToDocs.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>FancyZones windows</value> <comment>do not loc the Product name</comment> </data> <data name="FancyZones.ModuleDescription" xml:space="preserve"> <value>Create window layouts to help make multi-tasking easy.</value> <comment>windows refers to application windows</comment> </data> <data name="FancyZones_DisplayOrWorkAreaChangeMoveWindowsCheckBoxControl.Content" xml:space="preserve"> <value>Keep windows in their zones when the screen resolution or work area changes</value> <comment>windows refers to application windows</comment> </data> <data name="FancyZones_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable FancyZones</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="FancyZones_ExcludeApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="FancyZones_ExcludeApps.Description" xml:space="preserve"> <value>Excludes an application from snapping to zones and will only react to Windows Snap - add one application name per line</value> </data> <data name="FancyZones_HighlightOpacity.Header" xml:space="preserve"> <value>Opacity (%)</value> </data> <data name="FancyZones_HotkeyEditorControl.Header" xml:space="preserve"> <value>Open layout editor</value> <comment>Shortcut to launch the FancyZones layout editor application</comment> </data> <data name="FancyZones_WindowSwitching_GroupSettings.Header" xml:space="preserve"> <value>Switch between windows in the current zone</value> </data> <data name="FancyZones_HotkeyNextTabControl.Header" xml:space="preserve"> <value>Next window</value> </data> <data name="FancyZones_HotkeyPrevTabControl.Header" xml:space="preserve"> <value>Previous window</value> </data> <data name="SettingsPage_SetShortcut.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Shortcut setting</value> </data> <data name="SettingsPage_SetShortcut_Glyph.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Information Symbol</value> </data> <data name="FancyZones_LaunchEditorButtonControl.Header" xml:space="preserve"> <value>Launch layout editor</value> <comment>launches the FancyZones layout editor application</comment> </data> <data name="FancyZones_LaunchEditorButtonControl.Description" xml:space="preserve"> <value>Set and manage your layouts</value> <comment>launches the FancyZones layout editor application</comment> </data> <data name="FancyZones_MakeDraggedWindowTransparentCheckBoxControl.Content" xml:space="preserve"> <value>Make dragged window transparent</value> </data> <data name="FancyZones_MouseDragCheckBoxControl_Header.Content" xml:space="preserve"> <value>Use a non-primary mouse button to toggle zone activation</value> </data> <data name="FancyZones_MouseMiddleClickSpanningMultipleZonesCheckBoxControl_Header.Content" xml:space="preserve"> <value>Use middle-click mouse button to toggle multiple zones spanning</value> </data> <data name="FancyZones_MoveWindowsAcrossAllMonitorsCheckBoxControl.Content" xml:space="preserve"> <value>Move windows between zones across all monitors</value> </data> <data name="FancyZones_OverrideSnapHotkeys.Header" xml:space="preserve"> <value>Override Windows Snap</value> </data> <data name="FancyZones_OverrideSnapHotkeys.Description" xml:space="preserve"> <value>This overrides the Windows Snap shortcut (Win + arrow) to move windows between zones</value> </data> <data name="FancyZones_ShiftDragCheckBoxControl_Header.Content" xml:space="preserve"> <value>Hold Shift key to activate zones while dragging a window</value> </data> <data name="FancyZones_ActivationNoShiftDrag" xml:space="preserve"> <value>Drag windows to activate zones</value> </data> <data name="FancyZones_ShowZonesOnAllMonitorsCheckBoxControl.Content" xml:space="preserve"> <value>Show zones on all monitors while dragging a window</value> </data> <data name="FancyZones_AppLastZoneMoveWindows.Content" xml:space="preserve"> <value>Move newly created windows to their last known zone</value> <comment>windows refers to application windows</comment> </data> <data name="FancyZones_OpenWindowOnActiveMonitor.Content" xml:space="preserve"> <value>Move newly created windows to the current active monitor (Experimental)</value> </data> <data name="FancyZones_UseCursorPosEditorStartupScreen.Header" xml:space="preserve"> <value>Launch editor on the display</value> </data> <data name="FancyZones_UseCursorPosEditorStartupScreen.Description" xml:space="preserve"> <value>When using multiple displays</value> </data> <data name="FancyZones_LaunchPositionMouse.Content" xml:space="preserve"> <value>Where the mouse pointer is</value> </data> <data name="FancyZones_LaunchPositionScreen.Content" xml:space="preserve"> <value>With active focus</value> </data> <data name="FancyZones_ZoneBehavior_GroupSettings.Header" xml:space="preserve"> <value>Zone behavior</value> </data> <data name="FancyZones_ZoneBehavior_GroupSettings.Description" xml:space="preserve"> <value>Manage how zones behave when using FancyZones</value> </data> <data name="FancyZones_Zones.Header" xml:space="preserve"> <value>Zones</value> </data> <data name="FancyZones_ZoneHighlightColor.Header" xml:space="preserve"> <value>Highlight color</value> </data> <data name="FancyZones_ZoneSetChangeMoveWindows.Content" xml:space="preserve"> <value>During zone layout changes, windows assigned to a zone will match new size/positions</value> </data> <data name="AttributionTitle.Text" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="General.ModuleTitle" xml:space="preserve"> <value>General</value> </data> <data name="GeneralPage_CheckForUpdates.Content" xml:space="preserve"> <value>Check for updates</value> </data> <data name="General_SettingsBackupAndRestoreLocationText.Header" xml:space="preserve"> <value>Location</value> </data> <data name="General_SettingsBackupAndRestore_ButtonBackup.Content" xml:space="preserve"> <value>Backup</value> </data> <data name="General_SettingsBackupInfo_FileNameHeader.Text" xml:space="preserve"> <value>File name:</value> </data> <data name="General_SettingsBackupAndRestore_LinkRefresh.Text" xml:space="preserve"> <value>Refresh</value> </data> <data name="General_SettingsBackupAndRestore_ButtonRestore.Content" xml:space="preserve"> <value>Restore</value> </data> <data name="General_SettingsBackupAndRestore_ButtonSelectLocation.Text" xml:space="preserve"> <value>Select folder</value> </data> <data name="GeneralPage_UpdateNow.Content" xml:space="preserve"> <value>Update now</value> </data> <data name="GeneralPage_PrivacyStatement_URL.Text" xml:space="preserve"> <value>Privacy statement</value> </data> <data name="GeneralPage_ReportAbug.Text" xml:space="preserve"> <value>Report a bug</value> <comment>Report an issue inside powertoys</comment> </data> <data name="GeneralPage_RequestAFeature_URL.Text" xml:space="preserve"> <value>Request a feature</value> <comment>Tell our team what we should build</comment> </data> <data name="GeneralPage_RestartAsAdmin_Button.Content" xml:space="preserve"> <value>Restart PowerToys as administrator</value> <comment>running PowerToys as a higher level user, account is typically referred to as an admin / administrator</comment> </data> <data name="GeneralPage_RunAtStartUp.Header" xml:space="preserve"> <value>Run at startup</value> </data> <data name="GeneralPage_RunAtStartUp.Description" xml:space="preserve"> <value>PowerToys will launch automatically</value> </data> <data name="PowerRename.ModuleDescription" xml:space="preserve"> <value>A Windows Shell extension for more advanced bulk renaming using search &amp; replace or regular expressions.</value> </data> <data name="PowerRename_ShellIntegration.Header" xml:space="preserve"> <value>Shell integration</value> <comment>This refers to directly integrating in with Windows</comment> </data> <data name="PowerRename_Toggle_Enable.Header" xml:space="preserve"> <value>Enable PowerRename</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="RadioButtons_Name_Theme.Text" xml:space="preserve"> <value>Settings theme</value> </data> <data name="PowerRename_Toggle_HideIcon.Content" xml:space="preserve"> <value>Hide icon in context menu</value> </data> <data name="PowerRename_Toggle_ContextMenu.Header" xml:space="preserve"> <value>Show PowerRename in</value> </data> <data name="PowerRename_Toggle_StandardContextMenu.Content" xml:space="preserve"> <value>Default and extended context menu</value> </data> <data name="PowerRename_Toggle_ExtendedContextMenu.Content" xml:space="preserve"> <value>Extended context menu only</value> </data> <data name="ExtendedContextMenuInfo.Title" xml:space="preserve"> <value>Press Shift + right-click on files to open the extended context menu</value> </data> <data name="PowerRename_Toggle_MaxDispListNum.Header" xml:space="preserve"> <value>Maximum number of items</value> </data> <data name="PowerRename_Toggle_RestoreFlagsOnLaunch.Header" xml:space="preserve"> <value>Show recently used strings</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_MD.Header" xml:space="preserve"> <value>Markdown</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_MD.Description" xml:space="preserve"> <value>.md, .markdown, .mdown, .mkdn, .mkd, .mdwn, .mdtxt, .mdtext</value> <comment>File extensions, should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_Monaco.Header" xml:space="preserve"> <value>Source code files (Monaco)</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_Monaco.Description" xml:space="preserve"> <value>.cpp, .py, .json, .xml, .csproj, ...</value> <comment>File extensions should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_SVG.Header" xml:space="preserve"> <value>Scalable Vector Graphics</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_SVG.Description" xml:space="preserve"> <value>.svg</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_Preview_SVG_Color_Mode.Header" xml:space="preserve"> <value>Color mode</value> </data> <data name="FileExplorerPreview_Preview_SVG_Color_Mode_Default.Content" xml:space="preserve"> <value>Windows default</value> </data> <data name="FileExplorerPreview_Preview_SVG_Color_Solid_Color.Content" xml:space="preserve"> <value>Solid color</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade.Content" xml:space="preserve"> <value>Checkered pattern</value> </data> <data name="FileExplorerPreview_Preview_SVG_Background_Color.Header" xml:space="preserve"> <value>Color</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_Mode.Header" xml:space="preserve"> <value>Checkered shade</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_1.Content" xml:space="preserve"> <value>Light</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_2.Content" xml:space="preserve"> <value>Medium</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_3.Content" xml:space="preserve"> <value>Dark</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_PDF.Header" xml:space="preserve"> <value>Portable Document Format</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_PDF.Description" xml:space="preserve"> <value>.pdf</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_SVG.Header" xml:space="preserve"> <value>Scalable Vector Graphics</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_SVG.Description" xml:space="preserve"> <value>.svg</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_STL.Header" xml:space="preserve"> <value>Stereolithography</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_STL.Description" xml:space="preserve"> <value>.stl</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_Color_Thumbnail_STL.Header" xml:space="preserve"> <value>Color</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_QOI.Header" xml:space="preserve"> <value>Quite Ok Image</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_QOI.Description" xml:space="preserve"> <value>.qoi</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_QOI.Header" xml:space="preserve"> <value>Quite OK Image</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_QOI.Description" xml:space="preserve"> <value>.qoi</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_PDF.Header" xml:space="preserve"> <value>Portable Document Format</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_PDF.Description" xml:space="preserve"> <value>.pdf</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview.ModuleDescription" xml:space="preserve"> <value>These settings allow you to manage your Windows File Explorer custom preview handlers.</value> </data> <data name="PowerRename_AutoCompleteHeader.Header" xml:space="preserve"> <value>Auto-complete</value> </data> <data name="OpenSource_Notice.Text" xml:space="preserve"> <value>Open-source notice</value> </data> <data name="PowerRename_Toggle_AutoComplete.Header" xml:space="preserve"> <value>Enable auto-complete for the search &amp; replace fields</value> </data> <data name="FancyZones_BorderColor.Header" xml:space="preserve"> <value>Border color</value> </data> <data name="FancyZones_InActiveColor.Header" xml:space="preserve"> <value>Inactive color</value> </data> <data name="ShortcutGuide.ModuleDescription" xml:space="preserve"> <value>Shows a help overlay with Windows shortcuts.</value> </data> <data name="ShortcutGuide_PressTimeForGlobalWindowsShortcuts.Header" xml:space="preserve"> <value>Press duration before showing global Windows shortcuts (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="ShortcutGuide_ActivationMethod.Header" xml:space="preserve"> <value>Activation method</value> </data> <data name="ShortcutGuide_ActivationMethod.Description" xml:space="preserve"> <value>Use a shortcut or press the Windows key for some time to activate</value> </data> <data name="Radio_ShortcutGuide_ActivationMethod_CustomizedShortcut.Content" xml:space="preserve"> <value>Custom shortcut</value> </data> <data name="Radio_ShortcutGuide_ActivationMethod_LongPressWindowsKey.Content" xml:space="preserve"> <value>Hold down Windows key</value> </data> <data name="ShortcutGuide_PressWinKeyWarning.Title" xml:space="preserve"> <value>In some edge cases Shortcut Guide might not function correctly when using this activation method</value> </data> <data name="Appearance_Behavior.Header" xml:space="preserve"> <value>Appearance &amp; behavior</value> </data> <data name="General_SettingsBackupAndRestoreTitle.Header" xml:space="preserve"> <value>Backup &amp; restore</value> </data> <data name="General_SettingsBackupAndRestore.Header" xml:space="preserve"> <value>Backup and restore your settings</value> </data> <data name="General_SettingsBackupAndRestore.Description" xml:space="preserve"> <value>PowerToys will restart automatically if needed</value> </data> <data name="ShortcutGuide_Enable.Header" xml:space="preserve"> <value>Enable Shortcut Guide</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="ShortcutGuide_OverlayOpacity.Header" xml:space="preserve"> <value>Background opacity (%)</value> </data> <data name="ShortcutGuide_DisabledApps.Header" xml:space="preserve"> <value>Exclude apps</value> </data> <data name="ShortcutGuide_DisabledApps.Description" xml:space="preserve"> <value>Turns off Shortcut Guide when these applications have focus - add one application name per line</value> </data> <data name="ShortcutGuide_DisabledApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> <comment>Don't translate outlook.exe</comment> </data> <data name="ImageResizer_CustomSizes.Header" xml:space="preserve"> <value>Image sizes</value> </data> <data name="ImageResizer_Presets.Header" xml:space="preserve"> <value>Presets</value> </data> <data name="ImageResizer_Presets.Description" xml:space="preserve"> <value>Manage preset sizes that can be used in the editor</value> </data> <data name="ImageResizer_FilenameFormatHeader.Description" xml:space="preserve"> <value>This format is used as the filename for resized images</value> </data> <data name="ImageResizer.ModuleDescription" xml:space="preserve"> <value>Lets you resize images by right-clicking.</value> </data> <data name="ImageResizer_EnableToggle.Header" xml:space="preserve"> <value>Enable Image Resizer</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="ImagesSizesListView.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Image Size</value> </data> <data name="ImageResizer_Configurations.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Configurations</value> </data> <data name="ImageResizer_Name.Header" xml:space="preserve"> <value>Name</value> </data> <data name="ImageResizer_Fit.Header" xml:space="preserve"> <value>Fit</value> </data> <data name="ImageResizer_Width.Header" xml:space="preserve"> <value>Width</value> </data> <data name="ImageResizer_Height.Header" xml:space="preserve"> <value>Height</value> </data> <data name="ImageResizer_Size.Header" xml:space="preserve"> <value>Unit</value> </data> <data name="RemoveButton.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Remove</value> <comment>Removes a user defined setting group for Image Resizer</comment> </data> <data name="RemoveItem.Text" xml:space="preserve"> <value>Delete</value> </data> <data name="ImageResizer_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Image Resizer</value> </data> <data name="ImageResizer_AddSizeButton.Content" xml:space="preserve"> <value>Add new size</value> </data> <data name="ImageResizer_SaveSizeButton.Label" xml:space="preserve"> <value>Save sizes</value> </data> <data name="ImageResizer_Encoding.Header" xml:space="preserve"> <value>JPEG quality level (%)</value> </data> <data name="ImageResizer_PNGInterlacing.Header" xml:space="preserve"> <value>PNG interlacing</value> </data> <data name="ImageResizer_TIFFCompression.Header" xml:space="preserve"> <value>TIFF compression</value> </data> <data name="File.Header" xml:space="preserve"> <value>File</value> <comment>as in a computer file</comment> </data> <data name="Default.Content" xml:space="preserve"> <value>Default</value> </data> <data name="ImageResizer_ENCODER_TIFF_CCITT3.Content" xml:space="preserve"> <value>CCITT3</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_CCITT4.Content" xml:space="preserve"> <value>CCITT4</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_Default.Content" xml:space="preserve"> <value>Default</value> </data> <data name="ImageResizer_ENCODER_TIFF_LZW.Content" xml:space="preserve"> <value>LZW</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_None.Content" xml:space="preserve"> <value>None</value> </data> <data name="ImageResizer_ENCODER_TIFF_RLE.Content" xml:space="preserve"> <value>RLE</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_Zip.Content" xml:space="preserve"> <value>Zip</value> <comment>do not loc</comment> </data> <data name="ImageResizer_FallbackEncoder_BMP.Content" xml:space="preserve"> <value>BMP encoder</value> </data> <data name="ImageResizer_FallbackEncoder_GIF.Content" xml:space="preserve"> <value>GIF encoder</value> </data> <data name="ImageResizer_FallbackEncoder_JPEG.Content" xml:space="preserve"> <value>JPEG encoder</value> </data> <data name="ImageResizer_FallbackEncoder_PNG.Content" xml:space="preserve"> <value>PNG encoder</value> </data> <data name="ImageResizer_FallbackEncoder_TIFF.Content" xml:space="preserve"> <value>TIFF encoder</value> </data> <data name="ImageResizer_FallbackEncoder_WMPhoto.Content" xml:space="preserve"> <value>WMPhoto encoder</value> </data> <data name="ImageResizer_Sizes_Fit_Fill.Content" xml:space="preserve"> <value>Fill</value> <comment>Refers to filling an image into a certain size. It could overflow</comment> </data> <data name="ImageResizer_Sizes_Fit_Fill_ThirdPersonSingular.Text" xml:space="preserve"> <value>Fill</value> <comment>Refers to filling an image into a certain size. It could overflow</comment> </data> <data name="ImageResizer_Sizes_Fit_Fit.Content" xml:space="preserve"> <value>Fit</value> <comment>Refers to fitting an image into a certain size. It won't overflow</comment> </data> <data name="ImageResizer_Sizes_Fit_Stretch.Content" xml:space="preserve"> <value>Stretch</value> <comment>Refers to stretching an image into a certain size. Won't overflow but could distort.</comment> </data> <data name="ImageResizer_Sizes_Units_CM.Content" xml:space="preserve"> <value>Centimeters</value> </data> <data name="ImageResizer_Sizes_Units_Inches.Content" xml:space="preserve"> <value>Inches</value> </data> <data name="ImageResizer_Sizes_Units_Percent.Content" xml:space="preserve"> <value>Percent</value> </data> <data name="ImageResizer_Sizes_Units_Pixels.Content" xml:space="preserve"> <value>Pixels</value> </data> <data name="Off.Content" xml:space="preserve"> <value>Off</value> </data> <data name="On.Content" xml:space="preserve"> <value>On</value> </data> <data name="GeneralPage_ToggleSwitch_AlwaysRunElevated_Link.Content" xml:space="preserve"> <value>Learn more about administrator mode</value> </data> <data name="GeneralPage_ToggleSwitch_AutoDownloadUpdates.Header" xml:space="preserve"> <value>Download updates automatically</value> </data> <data name="GeneralPage_ToggleSwitch_AutoDownloadUpdates.Description" xml:space="preserve"> <value>Except on metered connections</value> </data> <data name="GeneralPage_ToggleSwitch_RunningAsAdminNote.Text" xml:space="preserve"> <value>Currently running as administrator</value> </data> <data name="GeneralSettings_AlwaysRunAsAdminText.Header" xml:space="preserve"> <value>Always run as administrator</value> </data> <data name="GeneralSettings_AlwaysRunAsAdminText.Description" xml:space="preserve"> <value>You need to run as administrator to use this setting</value> </data> <data name="GeneralSettings_RunningAsUserText" xml:space="preserve"> <value>Running as user</value> </data> <data name="GeneralSettings_RunningAsAdminText" xml:space="preserve"> <value>Running as administrator</value> </data> <data name="FancyZones.ModuleTitle" xml:space="preserve"> <value>FancyZones</value> </data> <data name="FileExplorerPreview.ModuleTitle" xml:space="preserve"> <value>File Explorer</value> </data> <data name="FileExplorerPreview_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>File Explorer</value> <comment>Use same translation as Windows does for File Explorer</comment> </data> <data name="ImageResizer.ModuleTitle" xml:space="preserve"> <value>Image Resizer</value> </data> <data name="KeyboardManager.ModuleTitle" xml:space="preserve"> <value>Keyboard Manager</value> </data> <data name="ColorPicker.ModuleTitle" xml:space="preserve"> <value>Color Picker</value> </data> <data name="PowerLauncher.ModuleTitle" xml:space="preserve"> <value>PowerToys Run</value> </data> <data name="PowerToys_Run_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>PowerToys Run</value> </data> <data name="PowerRename.ModuleTitle" xml:space="preserve"> <value>PowerRename</value> <comment>do not loc the product name</comment> </data> <data name="PowerRename_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>PowerRename</value> <comment>do not loc</comment> </data> <data name="ShortcutGuide.ModuleTitle" xml:space="preserve"> <value>Shortcut Guide</value> </data> <data name="Shortcut_Guide_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Shortcut Guide</value> </data> <data name="General_Repository.Text" xml:space="preserve"> <value>GitHub repository</value> </data> <data name="General_Version.Header" xml:space="preserve"> <value>Version</value> </data> <data name="General_VersionLastChecked.Text" xml:space="preserve"> <value>Last checked: </value> </data> <data name="General_SettingsBackupInfo_DateHeader.Text" xml:space="preserve"> <value>Created at:</value> </data> <data name="General_SettingsBackupAndRestoreStatusInfo.Header" xml:space="preserve"> <value>Backup information</value> </data> <data name="General_SettingsBackupInfo_SourceHeader.Text" xml:space="preserve"> <value>Source machine:</value> </data> <data name="General_SettingsBackupInfo_StatusHeader.Text" xml:space="preserve"> <value>Status:</value> </data> <data name="General_Version.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Version</value> </data> <data name="Admin_mode.Header" xml:space="preserve"> <value>Administrator mode</value> </data> <data name="FancyZones_RestoreSize.Content" xml:space="preserve"> <value>Restore the original size of windows when unsnapping</value> </data> <data name="ImageResizer_FallBackEncoderText.Header" xml:space="preserve"> <value>Fallback encoder</value> </data> <data name="ImageResizer_FileFormatDescription.Text" xml:space="preserve"> <value>The following parameters can be used:</value> </data> <data name="ImageResizer_FilenameFormatHeader.Header" xml:space="preserve"> <value>Filename format</value> </data> <data name="ImageResizer_FileModifiedDate.Header" xml:space="preserve"> <value>File modified timestamp</value> </data> <data name="ImageResizer_FileModifiedDate.Description" xml:space="preserve"> <value>Used as the 'modified timestamp' in the file properties</value> </data> <data name="ImageResizer_UseOriginalDate.Content" xml:space="preserve"> <value>Original file timestamp</value> </data> <data name="ImageResizer_UseResizeDate.Content" xml:space="preserve"> <value>Timestamp of resize action</value> </data> <data name="Encoding.Header" xml:space="preserve"> <value>Encoding</value> </data> <data name="KeyboardManager_RemapKeyboardButton.Description" xml:space="preserve"> <value>Remap keys to other keys or shortcuts</value> </data> <data name="KeyboardManager_RemapShortcutsButton.Description" xml:space="preserve"> <value>Remap shortcuts to other shortcuts or keys for all or specific applications</value> </data> <data name="General.ModuleDescription" xml:space="preserve"> <value>Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. Made with 💗 by Microsoft and the PowerToys community.</value> <comment>Windows refers to the OS</comment> </data> <data name="FancyZones_SpanZonesAcrossMonitors.Header" xml:space="preserve"> <value>Allow zones to span across monitors</value> </data> <data name="ImageResizer_Formatting_ActualHeight.Text" xml:space="preserve"> <value>Actual height</value> </data> <data name="ImageResizer_Formatting_ActualWidth.Text" xml:space="preserve"> <value>Actual width</value> </data> <data name="ImageResizer_Formatting_Filename.Text" xml:space="preserve"> <value>Original filename</value> </data> <data name="ImageResizer_Formatting_SelectedHeight.Text" xml:space="preserve"> <value>Selected height</value> </data> <data name="ImageResizer_Formatting_SelectedWidth.Text" xml:space="preserve"> <value>Selected width</value> </data> <data name="ImageResizer_Formatting_Sizename.Text" xml:space="preserve"> <value>Size name</value> </data> <data name="FancyZones_MoveWindowsBasedOnPositionCheckBoxControl.Content" xml:space="preserve"> <value>Move windows based on their position</value> <comment>Windows refers to application windows</comment> </data> <data name="GeneralSettings_NewVersionIsAvailable" xml:space="preserve"> <value>New update available</value> </data> <data name="GeneralSettings_VersionIsLatest" xml:space="preserve"> <value>PowerToys is up to date.</value> </data> <data name="FileExplorerPreview_IconThumbnail_GroupSettings.Header" xml:space="preserve"> <value>Thumbnail icon Preview</value> </data> <data name="FileExplorerPreview_IconThumbnail_GroupSettings.Description" xml:space="preserve"> <value>Select the file types for which thumbnail previews must be rendered.</value> </data> <data name="FileExplorerPreview_PreviewPane.Header" xml:space="preserve"> <value>Preview Pane</value> </data> <data name="FileExplorerPreview_PreviewPane.Description" xml:space="preserve"> <value>Select the file types which must be rendered in the Preview Pane. Ensure that Preview Pane is open by toggling the view with Alt + P in File Explorer.</value> <comment>Preview Pane and File Explorer are app/feature names in Windows. 'Alt + P' is a shortcut</comment> </data> <data name="FileExplorerPreview_RunAsAdminRequired.Title" xml:space="preserve"> <value>You need to run as administrator to modify these settings.</value> </data> <data name="FileExplorerPreview_RebootRequired.Title" xml:space="preserve"> <value>A reboot may be required for changes to these settings to take effect</value> </data> <data name="FileExplorerPreview_PreviewHandlerOutlookIncompatibility.Title" xml:space="preserve"> <value>Enabling the preview handlers will override other preview handlers already installed - there have been reports of incompatibility between Outlook and the PDF Preview Handler.</value> <comment>Outlook is the name of a Microsoft product</comment> </data> <data name="FileExplorerPreview_ThumbnailsMightNotAppearOnRemoteFolders.Title" xml:space="preserve"> <value>Thumbnails might not appear on paths managed by cloud storage solutions like OneDrive, since these solutions may get their thumbnails from the cloud instead of generating them locally.</value> <comment>OneDrive is the name of a Microsoft product</comment> </data> <data name="FancyZones_ExcludeApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> <comment>Don't translate outlook.exe</comment> </data> <data name="ImageResizer_FilenameFormatPlaceholder.PlaceholderText" xml:space="preserve"> <value>Example: %1 (%2)</value> </data> <data name="ImageResizer_FilenameParameters.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Filename parameters</value> </data> <data name="Radio_Theme_Dark.Content" xml:space="preserve"> <value>Dark</value> <comment>Dark refers to color, not weight</comment> </data> <data name="Radio_Theme_Light.Content" xml:space="preserve"> <value>Light</value> <comment>Light refers to color, not weight</comment> </data> <data name="Radio_Theme_Default.Content" xml:space="preserve"> <value>Windows default</value> <comment>Windows refers to the Operating system</comment> </data> <data name="Windows_Color_Settings.Content" xml:space="preserve"> <value>Windows color settings</value> <comment>Windows refers to the Operating system</comment> </data> <data name="ColorPicker_CopiedColorRepresentation.Header" xml:space="preserve"> <value>Default color format</value> </data> <data name="ColorPickerFirst.Content" xml:space="preserve"> <value>Pick a color and open editor</value> </data> <data name="EditorFirst.Content" xml:space="preserve"> <value>Open editor</value> </data> <data name="ColorPickerOnly.Content" xml:space="preserve"> <value>Only pick a color</value> </data> <data name="ColorPicker_ActivationAction.Header" xml:space="preserve"> <value>Activation behavior</value> </data> <data name="ColorFormats.Header" xml:space="preserve"> <value>Picker behavior</value> </data> <data name="ColorPicker_CopiedColorRepresentation.Description" xml:space="preserve"> <value>This format will be copied to your clipboard</value> </data> <data name="KBM_KeysCannotBeRemapped.Text" xml:space="preserve"> <value>Learn more about remapping limitations</value> <comment>This is a link that will discuss what is and is not possible for Keyboard manager to remap</comment> </data> <data name="FancyZones_Editor_GroupSettings.Header" xml:space="preserve"> <value>Editor</value> <comment>refers to the FancyZones editor</comment> </data> <data name="FancyZones_WindowBehavior_GroupSettings.Header" xml:space="preserve"> <value>Window behavior</value> </data> <data name="FancyZones_WindowBehavior_GroupSettings.Description" xml:space="preserve"> <value>Manage how windows behave when using FancyZones</value> </data> <data name="FancyZones_Windows.Header" xml:space="preserve"> <value>Windows</value> <comment>Do translate: refers to a set of application windows, not the product name</comment> </data> <data name="PowerRename_BehaviorHeader.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="PowerRename_Toggle_UseBoostLib.Header" xml:space="preserve"> <value>Use Boost library</value> <comment>Boost is a product name, should not be translated</comment> </data> <data name="PowerRename_Toggle_UseBoostLib.Description" xml:space="preserve"> <value>Provides extended features but may use different regex syntax</value> <comment>Boost is a product name, should not be translated</comment> </data> <data name="MadeWithOssLove.Text" xml:space="preserve"> <value>Made with 💗 by Microsoft and the PowerToys community.</value> </data> <data name="ColorPicker_ColorFormats.Header" xml:space="preserve"> <value>Color formats</value> </data> <data name="ColorPicker_ColorFormats.Description" xml:space="preserve"> <value>Configure the color formats (edit, delete, hide, reorder them)</value> </data> <data name="MoveUp.Text" xml:space="preserve"> <value>Move up</value> </data> <data name="MoveDown.Text" xml:space="preserve"> <value>Move down</value> </data> <data name="ColorPickerAddNewFormat.Content" xml:space="preserve"> <value>Add new format</value> </data> <data name="NewColorFormat.Header" xml:space="preserve"> <value>Format</value> </data> <data name="NewColorName.Header" xml:space="preserve"> <value>Name</value> </data> <data name="AddCustomColorFormat" xml:space="preserve"> <value>Add custom color format</value> </data> <data name="ColorFormatSave" xml:space="preserve"> <value>Save</value> </data> <data name="EditCustomColorFormat" xml:space="preserve"> <value>Edit custom color format</value> </data> <data name="ColorFormatUpdate" xml:space="preserve"> <value>Update</value> </data> <data name="CustomColorFormatDefaultName" xml:space="preserve"> <value>My Format</value> </data> <data name="ColorFormatDialog.SecondaryButtonText" xml:space="preserve"> <value>Cancel</value> </data> <data name="ColorFormatEditorHelpline1.Text" xml:space="preserve"> <value>The following parameters can be used:</value> </data> <data name="Help_red" xml:space="preserve"> <value>red</value> </data> <data name="Help_green" xml:space="preserve"> <value>green</value> </data> <data name="Help_blue" xml:space="preserve"> <value>blue</value> </data> <data name="Help_alpha" xml:space="preserve"> <value>alpha</value> </data> <data name="Help_cyan" xml:space="preserve"> <value>cyan</value> </data> <data name="Help_magenta" xml:space="preserve"> <value>magenta</value> </data> <data name="Help_yellow" xml:space="preserve"> <value>yellow</value> </data> <data name="Help_black_key" xml:space="preserve"> <value>black key</value> </data> <data name="Help_hue" xml:space="preserve"> <value>hue</value> </data> <data name="Help_hueNat" xml:space="preserve"> <value>hue (natural)</value> </data> <data name="Help_saturationI" xml:space="preserve"> <value>saturation (HSI)</value> </data> <data name="Help_saturationL" xml:space="preserve"> <value>saturation (HSL)</value> </data> <data name="Help_saturationB" xml:space="preserve"> <value>saturation (HSB)</value> </data> <data name="Help_brightness" xml:space="preserve"> <value>brightness</value> </data> <data name="Help_intensity" xml:space="preserve"> <value>intensity</value> </data> <data name="Help_lightnessNat" xml:space="preserve"> <value>lightness (nat)</value> </data> <data name="Help_lightnessCIE" xml:space="preserve"> <value>lightness (CIE)</value> </data> <data name="Help_value" xml:space="preserve"> <value>value</value> </data> <data name="Help_whiteness" xml:space="preserve"> <value>whiteness</value> </data> <data name="Help_blackness" xml:space="preserve"> <value>blackness</value> </data> <data name="Help_chromaticityA" xml:space="preserve"> <value>chromaticityA</value> </data> <data name="Help_chromaticityB" xml:space="preserve"> <value>chromaticityB</value> </data> <data name="Help_X_value" xml:space="preserve"> <value>X value</value> </data> <data name="Help_Y_value" xml:space="preserve"> <value>Y value</value> </data> <data name="Help_Z_value" xml:space="preserve"> <value>Z value</value> </data> <data name="Help_decimal_value_RGB" xml:space="preserve"> <value>decimal value (RGB)</value> </data> <data name="Help_decimal_value_BGR" xml:space="preserve"> <value>decimal value (BGR)</value> </data> <data name="Help_color_name" xml:space="preserve"> <value>color name</value> </data> <data name="ColorFormatEditorHelpline2.Text" xml:space="preserve"> <value>The red, green, blue and alpha values can be formatted to the following formats:</value> </data> <data name="Help_byte" xml:space="preserve"> <value>byte value (default)</value> </data> <data name="Help_hexL1" xml:space="preserve"> <value>hex lowercase one digit</value> </data> <data name="Help_hexU1" xml:space="preserve"> <value>hex uppercase one digit</value> </data> <data name="Help_hexL2" xml:space="preserve"> <value>hex lowercase two digits</value> </data> <data name="Help_hexU2" xml:space="preserve"> <value>hex uppercase two digits</value> </data> <data name="Help_floatWith" xml:space="preserve"> <value>float with leading zero</value> </data> <data name="Help_floatWithout" xml:space="preserve"> <value>float without leading zero</value> </data> <data name="ColorFormatEditorHelpline3.Text" xml:space="preserve"> <value>Example: %ReX means red value in hex uppercase two digits format.</value> </data> <data name="ColorPicker_ShowColorName.Header" xml:space="preserve"> <value>Show color name</value> </data> <data name="ColorPicker_ShowColorName.Description" xml:space="preserve"> <value>This will show the name of the color when picking a color</value> </data> <data name="ImageResizer_DefaultSize_Large" xml:space="preserve"> <value>Large</value> <comment>The size of the image</comment> </data> <data name="ImageResizer_DefaultSize_Medium" xml:space="preserve"> <value>Medium</value> <comment>The size of the image</comment> </data> <data name="ImageResizer_DefaultSize_Phone" xml:space="preserve"> <value>Phone</value> <comment>The size of the image referring to a Mobile Phone typical image size</comment> </data> <data name="ImageResizer_DefaultSize_Small" xml:space="preserve"> <value>Small</value> <comment>The size of the image</comment> </data> <data name="FancyZones_MoveWindowBasedOnRelativePosition_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Windows key + Up, down, left or right arrow key to move windows based on relative position</value> </data> <data name="FancyZones_MoveWindowLeftRightBasedOnZoneIndex_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Windows key + Left or right arrow keys to move windows based on zone index</value> </data> <data name="FancyZones_MoveWindowBasedOnRelativePosition_Description.Text" xml:space="preserve"> <value>Windows key +    or </value> <comment>Do not loc the icons (hex numbers)</comment> </data> <data name="FancyZones_MoveWindowLeftRightBasedOnZoneIndex_Description.Text" xml:space="preserve"> <value>Windows key +  or </value> <comment>Do not loc the icons (hex numbers)</comment> </data> <data name="FancyZones_MoveWindowBasedOnRelativePosition.Text" xml:space="preserve"> <value>Relative position</value> </data> <data name="FancyZones_MoveWindow.Header" xml:space="preserve"> <value>Move windows based on</value> </data> <data name="FancyZones_MoveWindowLeftRightBasedOnZoneIndex.Text" xml:space="preserve"> <value>Zone index</value> </data> <data name="ColorPicker_Editor.Header" xml:space="preserve"> <value>Color formats</value> </data> <data name="FancyZones_OverlappingZonesClosestCenter.Content" xml:space="preserve"> <value>Activate the zone whose center is closest to the cursor</value> </data> <data name="FancyZones_OverlappingZonesLargest.Content" xml:space="preserve"> <value>Activate the largest zone by area</value> </data> <data name="FancyZones_OverlappingZonesPositional.Content" xml:space="preserve"> <value>Split the overlapped area into multiple activation targets</value> </data> <data name="FancyZones_OverlappingZonesSmallest.Content" xml:space="preserve"> <value>Activate the smallest zone by area</value> </data> <data name="FancyZones_OverlappingZones.Header" xml:space="preserve"> <value>When multiple zones overlap</value> </data> <data name="PowerLauncher_Plugins.Header" xml:space="preserve"> <value>Plugins</value> </data> <data name="PowerLauncher_ActionKeyword.Header" xml:space="preserve"> <value>Direct activation command</value> </data> <data name="PowerLauncher_AuthoredBy.Text" xml:space="preserve"> <value>Authored by</value> <comment>example: Authored by Microsoft</comment> </data> <data name="PowerLauncher_IncludeInGlobalResultTitle.Text" xml:space="preserve"> <value>Include in global result</value> </data> <data name="PowerLauncher_IncludeInGlobalResultDescription.Text" xml:space="preserve"> <value>Show results on queries without direct activation command</value> </data> <data name="PowerLauncher_EnablePluginToggle.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Enable plugin</value> </data> <data name="PowerLauncher_EnablePluginToggle.OnContent" xml:space="preserve"> <value>On</value> </data> <data name="PowerLauncher_EnablePluginToggle.OffContent" xml:space="preserve"> <value>Off</value> </data> <data name="Run_AdditionalOptions.Text" xml:space="preserve"> <value>Additional options</value> </data> <data name="Run_NotAccessibleWarning.Title" xml:space="preserve"> <value>Please define an activation command or allow this plugin to be used in the global results.</value> </data> <data name="Run_AllPluginsDisabled.Title" xml:space="preserve"> <value>PowerToys Run can't provide any results without plugins</value> </data> <data name="Run_AllPluginsDisabled.Message" xml:space="preserve"> <value>Enable at least one plugin to get started</value> </data> <data name="Run_PluginUse.Header" xml:space="preserve"> <value>Plugins</value> </data> <data name="Run_PluginUseDescription.Text" xml:space="preserve"> <value>Include or remove plugins from the global results, change the direct activation phrase and configure additional options</value> </data> <data name="Run_PositionAppearance_GroupSettings.Header" xml:space="preserve"> <value>Position &amp; appearance</value> </data> <data name="Run_PositionHeader.Header" xml:space="preserve"> <value>Preferred monitor position</value> <comment>as in Show PowerToys Run on primary monitor</comment> </data> <data name="Run_PositionHeader.Description" xml:space="preserve"> <value>If multiple monitors are in use, PowerToys Run can be launched on the desired monitor</value> <comment>as in Show PowerToys Run on primary monitor</comment> </data> <data name="Run_Radio_Position_Cursor.Content" xml:space="preserve"> <value>Monitor with mouse cursor</value> </data> <data name="Run_Radio_Position_Focus.Content" xml:space="preserve"> <value>Monitor with focused window</value> </data> <data name="Run_Radio_Position_Primary_Monitor.Content" xml:space="preserve"> <value>Primary monitor</value> </data> <data name="Run_PluginsLoading.Text" xml:space="preserve"> <value>Plugins are loading...</value> </data> <data name="ColorPicker_ButtonDown.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Move the color down</value> </data> <data name="ColorPicker_ButtonUp.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Move the color up</value> </data> <data name="FancyZones_FlashZonesOnQuickSwitch.Content" xml:space="preserve"> <value>Flash zones when switching layout</value> </data> <data name="FancyZones_Layouts.Header" xml:space="preserve"> <value>Layouts</value> </data> <data name="FancyZones_QuickLayoutSwitch.Header" xml:space="preserve"> <value>Enable quick layout switch</value> </data> <data name="FancyZones_QuickLayoutSwitch.Description" xml:space="preserve"> <value>Layout-specific shortcuts can be configured in the editor</value> </data> <data name="FancyZones_QuickLayoutSwitch_GroupSettings.Text" xml:space="preserve"> <value>Quick layout switch</value> </data> <data name="Activation_Shortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="Activation_Shortcut.Description" xml:space="preserve"> <value>Customize the shortcut to activate this module</value> </data> <data name="Oobe_GetStarted.Text" xml:space="preserve"> <value>Let's get started!</value> </data> <data name="Oobe_PowerToysDescription.Text" xml:space="preserve"> <value>Welcome to PowerToys! These overviews will help you quickly learn the basics of all our utilities.</value> </data> <data name="Oobe_GettingStarted.Text" xml:space="preserve"> <value>Getting started</value> </data> <data name="Oobe_Launch.Text" xml:space="preserve"> <value>Launch</value> </data> <data name="Launch_ColorPicker.Content" xml:space="preserve"> <value>Launch Color Picker</value> </data> <data name="Oobe_LearnMore.Text" xml:space="preserve"> <value>Learn more about</value> </data> <data name="Oobe_ColorPicker.Description" xml:space="preserve"> <value>Color Picker is a system-wide color selection tool for Windows that enables you to pick colors from any currently running application and automatically copies it in a configurable format to your clipboard.</value> </data> <data name="Oobe_FancyZones.Description" xml:space="preserve"> <value>FancyZones is a window manager that makes it easy to create complex window layouts and quickly position windows into those layouts.</value> </data> <data name="Oobe_FileLocksmith.Description" xml:space="preserve"> <value>File Locksmith lists which processes are using the selected files or directories and allows closing those processes.</value> </data> <data name="Oobe_FileExplorer.Description" xml:space="preserve"> <value>PowerToys introduces add-ons to the Windows File Explorer that will enable files like Markdown (.md), PDF (.pdf), SVG (.svg), STL (.stl), G-code (.gcode) and developer files to be viewed in the preview pane. It introduces File Explorer thumbnail support for a number of these file types as well.</value> </data> <data name="Oobe_ImageResizer.Description" xml:space="preserve"> <value>Image Resizer is a Windows shell extension for simple bulk image-resizing.</value> </data> <data name="Oobe_KBM.Description" xml:space="preserve"> <value>Keyboard Manager allows you to customize the keyboard to be more productive by remapping keys and creating your own keyboard shortcuts.</value> </data> <data name="Oobe_MouseWithoutBorders.Description" xml:space="preserve"> <value>Mouse Without Borders enables using the mouse pointer, keyboard, clipboard and drag and drop between machines in the same local network.</value> </data> <data name="Oobe_PowerRename.Description" xml:space="preserve"> <value>PowerRename enables you to perform simple bulk renaming, searching and replacing file names.</value> </data> <data name="Oobe_Run.Description" xml:space="preserve"> <value>PowerToys Run is a quick launcher for power users that contains some additional features without sacrificing performance.</value> </data> <data name="Oobe_MeasureTool.Description" xml:space="preserve"> <value>Screen Ruler is a quick and easy way to measure pixels on your screen.</value> </data> <data name="Oobe_ShortcutGuide.Description" xml:space="preserve"> <value>Shortcut Guide presents the user with a listing of available shortcuts for the current state of the desktop.</value> </data> <data name="Oobe_VideoConference.Description" xml:space="preserve"> <value>Video Conference Mute allows users to quickly mute the microphone and turn off the camera while on a conference call with a single keystroke, regardless of what application has focus on your computer.</value> </data> <data name="Oobe_MouseUtils.Description" xml:space="preserve"> <value>A collection of utilities to enhance your mouse.</value> <comment>Mouse as in the hardware peripheral</comment> </data> <data name="Oobe_Overview.Description" xml:space="preserve"> <value>Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. Take a moment to preview the various utilities listed or view our comprehensive documentation.</value> </data> <data name="Oobe_Overview_DescriptionLinkText.Text" xml:space="preserve"> <value>Documentation on Microsoft Docs</value> </data> <data name="ReleaseNotes.Content" xml:space="preserve"> <value>Release notes</value> </data> <data name="Oobe_ColorPicker_HowToUse.Text" xml:space="preserve"> <value>to open Color Picker.</value> </data> <data name="Oobe_ColorPicker_TipsAndTricks.Text" xml:space="preserve"> <value>To select a color with more precision, **scroll the mouse wheel** to zoom in.</value> </data> <data name="Oobe_FancyZones_HowToUse.Text" xml:space="preserve"> <value>**Shift** + **drag the window** to snap a window to a zone, and release the window in the desired zone.</value> </data> <data name="Oobe_FancyZones_HowToUse_Shortcut.Text" xml:space="preserve"> <value>to open the FancyZones editor.</value> </data> <data name="Oobe_FancyZones_TipsAndTricks.Text" xml:space="preserve"> <value>Snap a window to multiple zones by holding the **Ctrl** key (while also holding **Shift**) when dragging a window.</value> </data> <data name="Oobe_FileLocksmith_HowToUse.Text" xml:space="preserve"> <value>In File Explorer, right-click one or more selected files and select **What's using this file?** from the context menu.</value> </data> <data name="Oobe_FileLocksmith_TipsAndTricks.Text" xml:space="preserve"> <value>Press the **Restart Elevated** button from the File Locksmith UI to also get information on elevated processes that might be using the files.</value> </data> <data name="Oobe_FileExplorer_HowToEnable.Text" xml:space="preserve"> <value>Select **View** which is located at the top of File Explorer, followed by **Show**, and then **Preview pane**. From there, simply click on one of the supported files in the File Explorer and observe the content on the preview pane!</value> </data> <data name="Oobe_HowToCreateMappings.Text" xml:space="preserve"> <value>How to create mappings</value> </data> <data name="Oobe_HowToEnable.Text" xml:space="preserve"> <value>How to enable</value> </data> <data name="Oobe_HowToLaunch.Text" xml:space="preserve"> <value>How to launch</value> </data> <data name="Oobe_HowToUse.Text" xml:space="preserve"> <value>How to use</value> </data> <data name="Oobe_ImageResizer_HowToLaunch.Text" xml:space="preserve"> <value>In File Explorer, right-click one or more image files and select **Resize pictures** from the context menu.</value> </data> <data name="Oobe_ImageResizer_TipsAndTricks.Text" xml:space="preserve"> <value>Want a custom size? You can add them in the PowerToys Settings!</value> </data> <data name="Oobe_KBM_HowToCreateMappings.Text" xml:space="preserve"> <value>Launch **PowerToys Settings**, navigate to the Keyboard Manager menu, and select either **Remap a key** or **Remap a shortcut**.</value> </data> <data name="Oobe_KBM_TipsAndTricks.Text" xml:space="preserve"> <value>Want to only have a shortcut work for a single application? Use the Target App field when creating the shortcut remapping.</value> </data> <data name="Oobe_MouseWithoutBorders_HowToUse.Text" xml:space="preserve"> <value>Use the Settings screen on each machine to connect to the other machines using the same key. If a connection is not working, it may be necessary to add an exception to the Windows Firewall.</value> </data> <data name="Oobe_MouseWithoutBorders_TipsAndTricks.Text" xml:space="preserve"> <value>Use the service option in Settings to install a service enabling Mouse Without Borders to function even in the lock screen.</value> </data> <data name="Oobe_PowerRename_HowToUse.Text" xml:space="preserve"> <value>In File Explorer, right-click one or more selected files and select **PowerRename** from the context menu.</value> </data> <data name="Oobe_PowerRename_TipsAndTricks.Text" xml:space="preserve"> <value>PowerRename supports searching for files using regular expressions to enable more advanced renaming functionalities.</value> </data> <data name="Oobe_Run_HowToLaunch.Text" xml:space="preserve"> <value>to open Run and just start typing.</value> </data> <data name="Oobe_Run_TipsAndTricks.Text" xml:space="preserve"> <value>PowerToys Run supports various action keys to funnel search queries for a specific subset of results. Typing `&lt;` searches for running processes only, `?` will search only for file, or `.` for installed applications! See PowerToys documentation for the complete set of 'Action Keys' available.</value> </data> <data name="Oobe_ShortcutGuide_HowToLaunch.Text" xml:space="preserve"> <value>to open Shortcut Guide, press it again to close or press **Esc**.</value> </data> <data name="Oobe_TipsAndTricks.Text" xml:space="preserve"> <value>Tips &amp; tricks</value> </data> <data name="Oobe_VideoConference_ToggleMicVid.Text" xml:space="preserve"> <value>to toggle both your microphone and video</value> </data> <data name="Oobe_VideoConference_ToggleMic.Text" xml:space="preserve"> <value>to toggle your microphone</value> </data> <data name="Oobe_VideoConference_PushToTalkMic.Text" xml:space="preserve"> <value>to toggle your microphone until key release</value> </data> <data name="Oobe_VideoConference_ToggleVid.Text" xml:space="preserve"> <value>to toggle your video</value> </data> <data name="Oobe_MeasureTool_Activation.Text" xml:space="preserve"> <value>to bring up the Screen Ruler command bar.</value> </data> <data name="Oobe_MeasureTool_HowToLaunch.Text" xml:space="preserve"> <value>The Bounds mode lets you select a specific area to measure. You can also shift-drag an area to persist in on screen. The various Spacing modes allows tracing similar pixels along horizontal and vertical axes with a customizable pixel tolerance threshold (use settings or mouse wheel to adjust it).</value> </data> <data name="Oobe_MeasureTool.Title" xml:space="preserve"> <value>Screen Ruler</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_ColorPicker.Title" xml:space="preserve"> <value>Color Picker</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_FancyZones.Title" xml:space="preserve"> <value>FancyZones</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_FileLocksmith.Title" xml:space="preserve"> <value>File Locksmith</value> </data> <data name="Oobe_ImageResizer.Title" xml:space="preserve"> <value>Image Resizer</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_KBM.Title" xml:space="preserve"> <value>Keyboard Manager</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_MouseWithoutBorders.Title" xml:space="preserve"> <value>Mouse Without Borders</value> <comment>Product name. Do not localize this string</comment> </data> <data name="Oobe_PowerRename.Title" xml:space="preserve"> <value>PowerRename</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_Run.Title" xml:space="preserve"> <value>PowerToys Run</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_ShortcutGuide.Title" xml:space="preserve"> <value>Shortcut Guide</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_VideoConference.Title" xml:space="preserve"> <value>Video Conference Mute</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_Overview.Title" xml:space="preserve"> <value>Welcome</value> </data> <data name="Oobe_WhatsNew.Text" xml:space="preserve"> <value>What's new</value> </data> <data name="Oobe_WhatsNew_LoadingError.Title" xml:space="preserve"> <value>Couldn't load the release notes.</value> </data> <data name="Oobe_WhatsNew_LoadingError.Message" xml:space="preserve"> <value>Please check your internet connection.</value> </data> <data name="Oobe_WhatsNew_ProxyAuthenticationWarning.Title" xml:space="preserve"> <value>Couldn't load the release notes.</value> </data> <data name="Oobe_WhatsNew_ProxyAuthenticationWarning.Message" xml:space="preserve"> <value>Your proxy server requires authentication.</value> </data> <data name="Oobe_WhatsNew_DetailedReleaseNotesLink.Text" xml:space="preserve"> <value>See more detailed release notes on GitHub</value> <comment>Don't loc "GitHub", it's the name of a product</comment> </data> <data name="OOBE_Settings.Content" xml:space="preserve"> <value>Open Settings</value> </data> <data name="Oobe_NavViewItem.Content" xml:space="preserve"> <value>Welcome to PowerToys</value> <comment>Don't loc "PowerToys"</comment> </data> <data name="WhatIsNew_NavViewItem.Content" xml:space="preserve"> <value>What's New</value> </data> <data name="Feedback_NavViewItem.Content" xml:space="preserve"> <value>Give feedback</value> </data> <data name="OobeWindow_Title" xml:space="preserve"> <value>Welcome to PowerToys</value> </data> <data name="OobeWindow_TitleTxt.Text" xml:space="preserve"> <value>Welcome to PowerToys</value> </data> <data name="SettingsWindow_Title" xml:space="preserve"> <value>PowerToys Settings</value> <comment>Title of the settings window when running as user</comment> </data> <data name="Awake.ModuleTitle" xml:space="preserve"> <value>Awake</value> </data> <data name="Awake.ModuleDescription" xml:space="preserve"> <value>A convenient way to keep your PC awake on-demand.</value> </data> <data name="Awake_EnableSettingsCard.Header" xml:space="preserve"> <value>Enable Awake</value> <comment>Awake is a product name, do not loc</comment> </data> <data name="Awake_NoKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep using the selected power plan</value> </data> <data name="Awake_IndefiniteKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep awake indefinitely</value> </data> <data name="Awake_TemporaryKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep awake for a time interval</value> </data> <data name="Awake_ExpirableKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep awake until expiration</value> </data> <data name="Awake_DisplaySettingsCard.Header" xml:space="preserve"> <value>Keep screen on</value> </data> <data name="Awake_DisplaySettingsCard.Description" xml:space="preserve"> <value>This setting is only available when keeping the PC awake</value> </data> <data name="Awake_ExpirationSettingsExpander.Description" xml:space="preserve"> <value>Keep custom awake state until a specific date and time</value> </data> <data name="Awake_ModeSettingsCard.Header" xml:space="preserve"> <value>Mode</value> </data> <data name="Awake_BehaviorSettingsGroup.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="Awake_IntervalHoursInput.Header" xml:space="preserve"> <value>Hours</value> </data> <data name="Awake_IntervalMinutesInput.Header" xml:space="preserve"> <value>Minutes</value> </data> <data name="Awake_ExpirationSettingsExpander_Date.Header" xml:space="preserve"> <value>End date</value> </data> <data name="Awake_ExpirationSettingsExpander_Time.Header" xml:space="preserve"> <value>End time</value> </data> <data name="Oobe_Awake.Title" xml:space="preserve"> <value>Awake</value> <comment>Module name, do not loc</comment> </data> <data name="Oobe_Awake.Description" xml:space="preserve"> <value>Awake is a Windows tool designed to keep your PC awake on-demand without having to manage its power settings. This behavior can be helpful when running time-consuming tasks while ensuring that your PC does not go to sleep or turn off its screens.</value> </data> <data name="Oobe_Awake_HowToUse.Text" xml:space="preserve"> <value>Open **PowerToys Settings** and enable Awake</value> </data> <data name="Oobe_Awake_TipsAndTricks.Text" xml:space="preserve"> <value>You can always change modes quickly by **right-clicking the Awake icon** in the system tray.</value> </data> <data name="General_FailedToDownloadTheNewVersion.Title" xml:space="preserve"> <value>An error occurred trying to install this update:</value> </data> <data name="General_InstallNow.Content" xml:space="preserve"> <value>Install now</value> </data> <data name="General_ReadMore.Text" xml:space="preserve"> <value>Read more</value> </data> <data name="General_NewVersionAvailable.Title" xml:space="preserve"> <value>An update is available:</value> </data> <data name="General_Downloading.Text" xml:space="preserve"> <value>Downloading...</value> </data> <data name="General_TryAgainToDownloadAndInstall.Content" xml:space="preserve"> <value>Try again to download and install</value> </data> <data name="General_CheckingForUpdates.Text" xml:space="preserve"> <value>Checking for updates...</value> </data> <data name="General_NewVersionReadyToInstall.Title" xml:space="preserve"> <value>An update is ready to install:</value> </data> <data name="General_UpToDate.Title" xml:space="preserve"> <value>PowerToys is up to date</value> </data> <data name="General_CantCheck.Title" xml:space="preserve"> <value>Network error. Please try again later</value> </data> <data name="General_DownloadAndInstall.Content" xml:space="preserve"> <value>Download &amp; install</value> </data> <data name="ImageResizer_Fit_Fill_ThirdPersonSingular" xml:space="preserve"> <value>Fills</value> </data> <data name="ImageResizer_Fit_Fit_ThirdPersonSingular" xml:space="preserve"> <value>Fits within</value> </data> <data name="ImageResizer_Fit_Stretch_ThirdPersonSingular" xml:space="preserve"> <value>Stretches to</value> </data> <data name="ImageResizer_Unit_Centimeter" xml:space="preserve"> <value>Centimeters</value> </data> <data name="ImageResizer_Unit_Inch" xml:space="preserve"> <value>Inches</value> </data> <data name="ImageResizer_Unit_Percent" xml:space="preserve"> <value>Percent</value> </data> <data name="ImageResizer_Unit_Pixel" xml:space="preserve"> <value>Pixels</value> </data> <data name="EditButton.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Edit</value> </data> <data name="ImageResizer_EditSize.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Edit size</value> </data> <data name="No" xml:space="preserve"> <value>No</value> <comment>Label of a cancel button</comment> </data> <data name="Delete_Dialog_Description" xml:space="preserve"> <value>Are you sure you want to delete this item?</value> </data> <data name="Yes" xml:space="preserve"> <value>Yes</value> <comment>Label of a confirmation button</comment> </data> <data name="SeeWhatsNew.Content" xml:space="preserve"> <value>See what's new</value> </data> <data name="Awake_ModeSettingsCard.Description" xml:space="preserve"> <value>Manage the state of your device when Awake is active</value> </data> <data name="ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="Enable_ColorFormat.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Enable colorformat</value> </data> <data name="More_Options_Button.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>More options</value> </data> <data name="More_Options_ButtonTooltip.Text" xml:space="preserve"> <value>More options</value> </data> <data name="To.Text" xml:space="preserve"> <value>to</value> <comment>as in: from x to y</comment> </data> <data name="LearnMore_Awake.Text" xml:space="preserve"> <value>Learn more about Awake</value> <comment>Awake is a product name, do not loc</comment> </data> <data name="SecondaryLink_Awake.Text" xml:space="preserve"> <value>Den Delimarsky's work on creating Awake</value> <comment>Awake is a product name, do not loc</comment> </data> <data name="LearnMore_ColorPicker.Text" xml:space="preserve"> <value>Learn more about Color Picker</value> <comment>Color Picker is a product name, do not loc</comment> </data> <data name="LearnMore_FancyZones.Text" xml:space="preserve"> <value>Learn more about FancyZones</value> <comment>FancyZones is a product name, do not loc</comment> </data> <data name="LearnMore_FileLocksmith.Text" xml:space="preserve"> <value>Learn more about File Locksmith</value> </data> <data name="LearnMore_ImageResizer.Text" xml:space="preserve"> <value>Learn more about Image Resizer</value> <comment>Image Resizer is a product name, do not loc</comment> </data> <data name="LearnMore_KBM.Text" xml:space="preserve"> <value>Learn more about Keyboard Manager</value> <comment>Keyboard Manager is a product name, do not loc</comment> </data> <data name="LearnMore_MouseUtils.Text" xml:space="preserve"> <value>Learn more about Mouse utilities</value> <comment>Mouse utilities is a product name, do not loc</comment> </data> <data name="LearnMore_PastePlain.Text" xml:space="preserve"> <value>Learn more about Paste as Plain Text</value> <comment> Paste as Plain Text is the name of the module. </comment> </data> <data name="LearnMore_MouseWithoutBorders.Text" xml:space="preserve"> <value>Learn more about Mouse Without Borders</value> <comment>Mouse Without Borders is the name of the module. </comment> </data> <data name="LearnMore_PowerPreview.Text" xml:space="preserve"> <value>Learn more about File Explorer add-ons</value> <comment>File Explorer is a product name, localize as Windows does</comment> </data> <data name="LearnMore_Peek.Text" xml:space="preserve"> <value>Learn more about Peek</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="LearnMore_PowerRename.Text" xml:space="preserve"> <value>Learn more about PowerRename</value> <comment>PowerRename is a product name, do not loc</comment> </data> <data name="LearnMore_Run.Text" xml:space="preserve"> <value>Learn more about PowerToys Run</value> <comment>PowerToys Run is a product name, do not loc</comment> </data> <data name="LearnMore_MeasureTool.Text" xml:space="preserve"> <value>Learn more about Screen Ruler</value> <comment>Screen Ruler is a product name, do not loc</comment> </data> <data name="LearnMore_ShortcutGuide.Text" xml:space="preserve"> <value>Learn more about Shortcut Guide</value> <comment>Shortcut Guide is a product name, do not loc</comment> </data> <data name="LearnMore_VCM.Text" xml:space="preserve"> <value>Learn more about Video Conference Mute</value> <comment>Video Conference Mute is a product name, do not loc</comment> </data> <data name="Oobe_FileExplorer.Title" xml:space="preserve"> <value>File Explorer add-ons</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_MouseUtils.Title" xml:space="preserve"> <value>Mouse utilities</value> <comment>Mouse as in the hardware peripheral</comment> </data> <data name="Oobe_MouseUtils_FindMyMouse.Text" xml:space="preserve"> <value>Find My Mouse</value> <comment>Mouse as in the hardware peripheral</comment> </data> <data name="Oobe_MouseUtils_FindMyMouse_Description.Text" xml:space="preserve"> <value>Focus the mouse pointer pressing the Ctrl key twice, using a custom shortcut or shaking the mouse.</value> <comment>Mouse as in the hardware peripheral. Key as in a keyboard key</comment> </data> <data name="Oobe_MouseUtils_MouseHighlighter.Text" xml:space="preserve"> <value>Mouse Highlighter</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MouseHighlighter_Description.Text" xml:space="preserve"> <value>Use a keyboard shortcut to highlight left and right mouse clicks.</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MousePointerCrosshairs.Text" xml:space="preserve"> <value>Mouse Pointer Crosshairs</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MousePointerCrosshairs_Description.Text" xml:space="preserve"> <value>Draw crosshairs centered around the mouse pointer.</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MouseJump.Text" xml:space="preserve"> <value>Mouse Jump</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MouseJump_Description.Text" xml:space="preserve"> <value>Jump the mouse pointer quickly to anywhere on your desktop.</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Launch_Run.Content" xml:space="preserve"> <value>Launch PowerToys Run</value> </data> <data name="Launch_ShortcutGuide.Content" xml:space="preserve"> <value>Launch Shortcut Guide</value> </data> <data name="ColorPicker_ColorFormat_ToggleSwitch.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Show format in editor</value> </data> <data name="GeneralPage_Documentation.Text" xml:space="preserve"> <value>Documentation</value> </data> <data name="PowerLauncher_SearchList.PlaceholderText" xml:space="preserve"> <value>Search this list</value> </data> <data name="PowerLauncher_SearchList.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Search this list</value> </data> <data name="Awake.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="ColorPicker.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="General.SecondaryLinksHeader" xml:space="preserve"> <value>Related information</value> </data> <data name="ImageResizer.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="MouseUtils.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="PowerLauncher.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="PowerRename.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="EditTooltip.Text" xml:space="preserve"> <value>Edit</value> </data> <data name="RemoveTooltip.Text" xml:space="preserve"> <value>Remove</value> </data> <data name="Activation_Shortcut_Cancel" xml:space="preserve"> <value>Cancel</value> </data> <data name="Activation_Shortcut_Description" xml:space="preserve"> <value>Press a combination of keys to change this shortcut</value> </data> <data name="Activation_Shortcut_With_Disable_Description" xml:space="preserve"> <value>Press a combination of keys to change this shortcut. Right-click to remove the key combination, thereby deactivating the shortcut.</value> </data> <data name="Activation_Shortcut_Reset" xml:space="preserve"> <value>Reset</value> </data> <data name="Activation_Shortcut_Save" xml:space="preserve"> <value>Save</value> </data> <data name="Activation_Shortcut_Title" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="InvalidShortcut.Title" xml:space="preserve"> <value>Invalid shortcut</value> </data> <data name="InvalidShortcutWarningLabel.Text" xml:space="preserve"> <value>Only shortcuts that start with **Windows key**, **Ctrl**, **Alt** or **Shift** are valid.</value> <comment>The ** sequences are used for text formatting of the key names. Don't remove them on translation.</comment> </data> <data name="WarningShortcutAltGr.Title" xml:space="preserve"> <value>Possible shortcut interference with Alt Gr</value> <comment>Alt Gr refers to the right alt key on some international keyboards</comment> </data> <data name="WarningShortcutAltGr.ToolTipService.ToolTip" xml:space="preserve"> <value>Shortcuts with **Ctrl** and **Alt** may remove functionality from some international keyboards, because **Ctrl** + **Alt** = **Alt Gr** in those keyboards.</value> <comment>The ** sequences are used for text formatting of the key names. Don't remove them on translation.</comment> </data> <data name="FancyZones_SpanZonesAcrossMonitors.Description" xml:space="preserve"> <value>All monitors must have the same DPI scaling and will be treated as one large combined rectangle which contains all monitors</value> </data> <data name="ImageResizer_DefaultSize_NewSizePrefix" xml:space="preserve"> <value>New size</value> <comment>First part of the default name of new sizes that can be added in PT's settings ui.</comment> </data> <data name="Awake_IntervalSettingsCard.Header" xml:space="preserve"> <value>Interval before returning to the previous awakeness state</value> </data> <data name="Awake_ExpirationSettingsExpander.Header" xml:space="preserve"> <value>End date and time</value> </data> <data name="MouseUtils.ModuleTitle" xml:space="preserve"> <value>Mouse utilities</value> </data> <data name="MouseUtils.ModuleDescription" xml:space="preserve"> <value>A collection of mouse utilities.</value> </data> <data name="MouseUtils_FindMyMouse.Header" xml:space="preserve"> <value>Find My Mouse</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_FindMyMouse.Description" xml:space="preserve"> <value>Find My Mouse highlights the position of the cursor when pressing the Ctrl key twice, using a custom shortcut or when shaking the mouse.</value> <comment>"Ctrl" is a keyboard key. "Find My Mouse" is the name of the utility</comment> </data> <data name="MouseUtils_Enable_FindMyMouse.Header" xml:space="preserve"> <value>Enable Find My Mouse</value> <comment>"Find My Mouse" is the name of the utility.</comment> </data> <data name="MouseUtils_FindMyMouse_ActivationMethod.Header" xml:space="preserve"> <value>Activation method</value> </data> <data name="MouseUtils_FindMyMouse_ActivationDoubleControlPress.Content" xml:space="preserve"> <value>Press Left Control twice</value> <comment>Left control is the physical key on the keyboard.</comment> </data> <data name="MouseUtils_FindMyMouse_ActivationShakeMouse.Content" xml:space="preserve"> <value>Shake mouse</value> <comment>Mouse is the hardware peripheral.</comment> </data> <data name="MouseUtils_FindMyMouse_ExcludedApps.Description" xml:space="preserve"> <value>Prevents module activation when an excluded application is the foreground application</value> </data> <data name="MouseUtils_FindMyMouse_ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="MouseUtils_FindMyMouse_ExcludedApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> </data> <data name="MouseUtils_Prevent_Activation_On_Game_Mode.Content" xml:space="preserve"> <value>Do not activate when Game Mode is on</value> <comment>"Game mode" is the Windows feature to prevent notification when playing a game.</comment> </data> <data name="MouseUtils_FindMyMouse_BackgroundColor.Header" xml:space="preserve"> <value>Background color</value> </data> <data name="MouseUtils_FindMyMouse_SpotlightColor.Header" xml:space="preserve"> <value>Spotlight color</value> </data> <data name="MouseUtils_FindMyMouse_OverlayOpacity.Header" xml:space="preserve"> <value>Overlay opacity (%)</value> </data> <data name="MouseUtils_FindMyMouse_SpotlightRadius.Header" xml:space="preserve"> <value>Spotlight radius (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_FindMyMouse_SpotlightInitialZoom.Header" xml:space="preserve"> <value>Spotlight initial zoom</value> </data> <data name="MouseUtils_FindMyMouse_SpotlightInitialZoom.Description" xml:space="preserve"> <value>Spotlight zoom factor at animation start</value> </data> <data name="MouseUtils_FindMyMouse_AnimationDurationMs.Header" xml:space="preserve"> <value>Animation duration (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_FindMyMouse_AnimationDurationMs.Description" xml:space="preserve"> <value>Time before the spotlight appears (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_FindMyMouse_AnimationDurationMs_Disabled.Message" xml:space="preserve"> <value>Animations are disabled by OS. See Settings &gt; Accessibility &gt; Visual effects</value> </data> <data name="MouseUtils_FindMyMouse_ShakingMinimumDistance.Header" xml:space="preserve"> <value>Shake minimum distance</value> </data> <data name="MouseUtils_FindMyMouse_ShakingMinimumDistance.Description" xml:space="preserve"> <value>The minimum distance for mouse shaking activation, for adjusting sensitivity</value> </data> <data name="MouseUtils_MouseHighlighter.Header" xml:space="preserve"> <value>Mouse Highlighter</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_MouseHighlighter.Description" xml:space="preserve"> <value>Mouse Highlighter mode will highlight mouse clicks.</value> <comment>"Mouse Highlighter" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_Enable_MouseHighlighter.Header" xml:space="preserve"> <value>Enable Mouse Highlighter</value> <comment>"Find My Mouse" is the name of the utility.</comment> </data> <data name="MouseUtils_MouseHighlighter_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MouseUtils_MouseHighlighter_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to turn on or off this mode</value> <comment>"Mouse Highlighter" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_MouseHighlighter_PrimaryButtonClickColor.Header" xml:space="preserve"> <value>Primary button highlight color</value> </data> <data name="MouseUtils_MouseHighlighter_SecondaryButtonClickColor.Header" xml:space="preserve"> <value>Secondary button highlight color</value> </data> <data name="MouseUtils_MouseHighlighter_HighlightRadius.Header" xml:space="preserve"> <value>Radius (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDelayMs.Header" xml:space="preserve"> <value>Fade delay (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDelayMs.Description" xml:space="preserve"> <value>Time before the highlight begins to fade (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDurationMs.Header" xml:space="preserve"> <value>Fade duration (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDurationMs.Description" xml:space="preserve"> <value>Duration of the disappear animation (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MousePointerCrosshairs.Header" xml:space="preserve"> <value>Mouse Pointer Crosshairs</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_MousePointerCrosshairs.Description" xml:space="preserve"> <value>Mouse Pointer Crosshairs draws crosshairs centered on the mouse pointer.</value> <comment>"Mouse Pointer Crosshairs" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_Enable_MousePointerCrosshairs.Header" xml:space="preserve"> <value>Enable Mouse Pointer Crosshairs</value> <comment>"Mouse Pointer Crosshairs" is the name of the utility.</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MouseUtils_MousePointerCrosshairs_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to show/hide the crosshairs</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsColor.Header" xml:space="preserve"> <value>Crosshairs color</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsOpacity.Header" xml:space="preserve"> <value>Crosshairs opacity (%)</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsRadius.Header" xml:space="preserve"> <value>Crosshairs center radius (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsThickness.Header" xml:space="preserve"> <value>Crosshairs thickness (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsBorderColor.Header" xml:space="preserve"> <value>Crosshairs border color</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsBorderSize.Header" xml:space="preserve"> <value>Crosshairs border size (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_IsCrosshairsFixedLengthEnabled.Header" xml:space="preserve"> <value>Fix crosshairs length</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsFixedLength.Header" xml:space="preserve"> <value>Crosshairs fixed length (px)</value> <comment>px = pixels</comment> </data> <data name="FancyZones_Radio_Custom_Colors.Content" xml:space="preserve"> <value>Custom colors</value> </data> <data name="FancyZones_Radio_Default_Theme.Content" xml:space="preserve"> <value>Windows default</value> </data> <data name="ColorModeHeader.Header" xml:space="preserve"> <value>App theme</value> </data> <data name="FancyZones_Zone_Appearance.Description" xml:space="preserve"> <value>Customize the way zones look</value> </data> <data name="FancyZones_Zone_Appearance.Header" xml:space="preserve"> <value>Zone appearance</value> </data> <data name="VideoConference_DeprecationWarning.Title" xml:space="preserve"> <value>VCM is moving into legacy mode (maintenance only).</value> </data> <data name="VideoConference_DeprecationWarningButton.Content" xml:space="preserve"> <value>Learn more</value> </data> <data name="LearnMore.Content" xml:space="preserve"> <value>Learn more</value> </data> <data name="VideoConference_RunAsAdminRequired.Title" xml:space="preserve"> <value>You need to run as administrator to modify these settings.</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_GCODE.Header" xml:space="preserve"> <value>Geometric Code</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_GCODE.Description" xml:space="preserve"> <value>Only .gcode files with embedded thumbnails are supported</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_GCODE.Header" xml:space="preserve"> <value>Geometric Code</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_GCODE.Description" xml:space="preserve"> <value>Only .gcode files with embedded thumbnails are supported</value> </data> <data name="FancyZones_NumberColor.Header" xml:space="preserve"> <value>Number color</value> </data> <data name="FancyZones_ShowZoneNumberCheckBoxControl.Content" xml:space="preserve"> <value>Show zone number</value> </data> <data name="ToggleSwitch.OffContent" xml:space="preserve"> <value>Off</value> <comment>The state of a ToggleSwitch when it's off</comment> </data> <data name="ToggleSwitch.OnContent" xml:space="preserve"> <value>On</value> <comment>The state of a ToggleSwitch when it's on</comment> </data> <data name="CropAndLock.ModuleDescription" xml:space="preserve"> <value>Crop And Lock allows you to crop a current application into a smaller window or just create a thumbnail. Focus the target window and press the shortcut to start cropping.</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="CropAndLock.ModuleTitle" xml:space="preserve"> <value>Crop And Lock </value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="CropAndLock_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="CropAndLock_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="Shell_CropAndLock.Content" xml:space="preserve"> <value>Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="LearnMore_CropAndLock.Text" xml:space="preserve"> <value>Learn more about Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="CropAndLock_ReparentActivation_Shortcut.Header" xml:space="preserve"> <value>Reparent shortcut</value> </data> <data name="CropAndLock_ReparentActivation_Shortcut.Description" xml:space="preserve"> <value>Shortcut to crop an application's window into a cropped window. This is experimental and can cause issues with some applications, since the cropped window will contain the original application window.</value> </data> <data name="CropAndLock_ThumbnailActivation_Shortcut.Header" xml:space="preserve"> <value>Thumbnail shortcut</value> </data> <data name="CropAndLock_ThumbnailActivation_Shortcut.Description" xml:space="preserve"> <value>Shortcut to crop and create a thumbnail of another window. The application isn't controllable through the thumbnail but it'll have less compatibility issues. </value> </data> <data name="CropAndLock.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="Oobe_CropAndLock.Title" xml:space="preserve"> <value>Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="Oobe_CropAndLock.Description" xml:space="preserve"> <value>Crop And Lock allows you to crop a current application into a smaller window or just create a thumbnail. Focus the target window and press the shortcut to start cropping.</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="Oobe_CropAndLock_HowToUse_Thumbnail.Text" xml:space="preserve"> <value>to crop and create a thumbnail of another window. The application isn't controllable through the thumbnail but it'll have less compatibility issues.</value> </data> <data name="Oobe_CropAndLock_HowToUse_Reparent.Text" xml:space="preserve"> <value>to crop an application's window into a cropped window. This is experimental and can cause issues with some applications, since the cropped window will contain the original application window.</value> </data> <data name="AlwaysOnTop.ModuleDescription" xml:space="preserve"> <value>Always On Top is a quick and easy way to pin windows on top.</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop.ModuleTitle" xml:space="preserve"> <value>Always On Top </value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="Peek_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="AlwaysOnTop_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_ExcludedApps.Description" xml:space="preserve"> <value>Excludes an application from pinning on top</value> </data> <data name="AlwaysOnTop_ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="AlwaysOnTop_ExcludedApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> </data> <data name="AlwaysOnTop_FrameColor.Header" xml:space="preserve"> <value>Color</value> </data> <data name="AlwaysOnTop_FrameEnabled.Header" xml:space="preserve"> <value>Show a border around the pinned window</value> </data> <data name="AlwaysOnTop_FrameThickness.Header" xml:space="preserve"> <value>Thickness (px)</value> <comment>px = pixels</comment> </data> <data name="AlwaysOnTop_Behavior_GroupSettings.Header" xml:space="preserve"> <value>Appearance &amp; behavior</value> </data> <data name="Shell_AlwaysOnTop.Content" xml:space="preserve"> <value>Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_GameMode.Content" xml:space="preserve"> <value>Do not activate when Game Mode is on</value> <comment>Game Mode is a Windows feature</comment> </data> <data name="AlwaysOnTop_SoundTitle.Header" xml:space="preserve"> <value>Sound</value> </data> <data name="AlwaysOnTop_Sound.Content" xml:space="preserve"> <value>Play a sound when pinning a window</value> </data> <data name="AlwaysOnTop_Behavior.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="LearnMore_AlwaysOnTop.Text" xml:space="preserve"> <value>Learn more about Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="AlwaysOnTop_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to pin or unpin an app window</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="Oobe_AlwaysOnTop.Title" xml:space="preserve"> <value>Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="Oobe_AlwaysOnTop.Description" xml:space="preserve"> <value>Always On Top improves your multitasking workflow by pinning an application window so it's always in front - even when focus changes to another window after that.</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="Oobe_AlwaysOnTop_HowToUse.Text" xml:space="preserve"> <value>to pin or unpin the selected window so it's always on top of all other windows.</value> </data> <data name="Oobe_AlwaysOnTop_TipsAndTricks.Text" xml:space="preserve"> <value>You can tweak the visual outline of the pinned windows in PowerToys settings.</value> </data> <data name="AlwaysOnTop_FrameColor_Mode.Header" xml:space="preserve"> <value>Color mode</value> </data> <data name="AlwaysOnTop_Radio_Custom_Color.Content" xml:space="preserve"> <value>Custom color</value> </data> <data name="AlwaysOnTop_Radio_Windows_Default.Content" xml:space="preserve"> <value>Windows default</value> </data> <data name="FileExplorerPreview.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Monaco_Wrap_Text.Content" xml:space="preserve"> <value>Wrap text</value> <comment>Feature on or off</comment> </data> <data name="FancyZones_AllowPopupWindowSnap.Description" xml:space="preserve"> <value>This setting can affect all popup windows including notifications</value> </data> <data name="FancyZones_AllowPopupWindowSnap.Header" xml:space="preserve"> <value>Allow popup windows snapping</value> </data> <data name="FancyZones_AllowChildWindowSnap.Content" xml:space="preserve"> <value>Allow child windows snapping</value> </data> <data name="Shell_WhatsNew.Content" xml:space="preserve"> <value>What's new</value> </data> <data name="Shell_Peek.Content" xml:space="preserve"> <value>Peek</value> <comment>Product name: Navigation view item name for Peek</comment> </data> <data name="Peek.ModuleTitle" xml:space="preserve"> <value>Peek</value> </data> <data name="Peek.ModuleDescription" xml:space="preserve"> <value>Peek is a quick and easy way to preview files. Select a file in File Explorer and press the shortcut to open the file preview.</value> </data> <data name="Peek_EnablePeek.Header" xml:space="preserve"> <value>Enable Peek</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="Peek_BehaviorHeader.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="Peek_AlwaysRunNotElevated.Header" xml:space="preserve"> <value>Always run not elevated, even when PowerToys is elevated</value> </data> <data name="Peek_AlwaysRunNotElevated.Description" xml:space="preserve"> <value>Tries to run Peek without elevated permissions, to fix access to network shares. You need to disable and re-enable Peek for changes to this value to take effect.</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="Peek_CloseAfterLosingFocus.Header" xml:space="preserve"> <value>Automatically close the Peek window after it loses focus</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="FancyZones_DisableRoundCornersOnWindowSnap.Content" xml:space="preserve"> <value>Disable round corners when window is snapped</value> </data> <data name="PowerLauncher_SearchQueryTuningEnabled.Description" xml:space="preserve"> <value>Fine tune results ordering</value> </data> <data name="PowerLauncher_SearchQueryTuningEnabled.Header" xml:space="preserve"> <value>Results order tuning</value> </data> <data name="PowerLauncher_SearchClickedItemWeight.Description" xml:space="preserve"> <value>Use a higher number to get selected results to rise faster. The default is 5, 0 to disable.</value> </data> <data name="PowerLauncher_SearchClickedItemWeight.Header" xml:space="preserve"> <value>Selected item weight</value> </data> <data name="PowerLauncher_WaitForSlowResults.Description" xml:space="preserve"> <value>Selecting this can help preselect the top, more relevant result, but at the risk of jumpiness</value> </data> <data name="PowerLauncher_WaitForSlowResults.Header" xml:space="preserve"> <value>Wait on slower plugin results before selecting top item in results</value> </data> <data name="PowerLauncher_PluginWeightBoost.Description" xml:space="preserve"> <value>Use a higher number to have this plugin's result show higher in the global results. Default is 0.</value> </data> <data name="PowerLauncher_PluginWeightBoost.Header" xml:space="preserve"> <value>Global sort order score modifier</value> </data> <data name="AlwaysOnTop_RoundCorners.Content" xml:space="preserve"> <value>Enable round corners</value> </data> <data name="LearnMore_QuickAccent.Text" xml:space="preserve"> <value>Learn more about Quick Accent</value> <comment>Quick Accent is a product name, do not loc</comment> </data> <data name="QuickAccent_EnableQuickAccent.Header" xml:space="preserve"> <value>Enable Quick Accent</value> </data> <data name="Shell_QuickAccent.Content" xml:space="preserve"> <value>Quick Accent</value> </data> <data name="QuickAccent.ModuleDescription" xml:space="preserve"> <value>Quick Accent is an alternative way to type accented characters, useful for when a keyboard doesn't support that specific accent. Activate by holding the key for the character you want to add an accent to, then press the activation key (space, left or right arrow keys) and an overlay to select accented characters will appear!</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent.ModuleTitle" xml:space="preserve"> <value>Quick Accent</value> </data> <data name="QuickAccent.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> </data> <data name="AlwaysOnTop_ShortDescription" xml:space="preserve"> <value>Pin a window</value> </data> <data name="Awake_ShortDescription" xml:space="preserve"> <value>Keep your PC awake</value> </data> <data name="ColorPicker_ShortDescription" xml:space="preserve"> <value>Pick a color</value> </data> <data name="CropAndLock_Thumbnail" xml:space="preserve"> <value>Thumbnail</value> </data> <data name="CropAndLock_Reparent" xml:space="preserve"> <value>Reparent</value> </data> <data name="FancyZones_OpenEditor" xml:space="preserve"> <value>Open editor</value> </data> <data name="FileLocksmith_ShortDescription" xml:space="preserve"> <value>Right-click on files or directories to show running processes</value> </data> <data name="FindMyMouse_ShortDescription" xml:space="preserve"> <value>Find the mouse</value> </data> <data name="ImageResizer_ShortDescription" xml:space="preserve"> <value>Resize images from right-click context menu</value> </data> <data name="MouseHighlighter_ShortDescription" xml:space="preserve"> <value>Highlight clicks</value> </data> <data name="MouseJump_ShortDescription" xml:space="preserve"> <value>Quickly move the mouse pointer</value> </data> <data name="MouseCrosshairs_ShortDescription" xml:space="preserve"> <value>Draw crosshairs centered on the mouse pointer</value> </data> <data name="MouseWithoutBorders_ShortDescription" xml:space="preserve"> <value>Move your cursor across multiple devices</value> </data> <data name="PastePlain_ShortDescription" xml:space="preserve"> <value>Paste clipboard content without formatting</value> </data> <data name="Peek_ShortDescription" xml:space="preserve"> <value>Quick and easy previewer</value> </data> <data name="PowerRename_ShortDescription" xml:space="preserve"> <value>Rename files and folders from right-click context menu</value> </data> <data name="Run_ShortDescription" xml:space="preserve"> <value>A quick launcher</value> </data> <data name="PowerAccent_ShortDescription" xml:space="preserve"> <value>An alternative way to type accented characters</value> </data> <data name="RegistryPreview_ShortDescription" xml:space="preserve"> <value>Visualize and edit Windows Registry files</value> </data> <data name="ScreenRuler_ShortDescription" xml:space="preserve"> <value>Measure pixels on your screen</value> </data> <data name="ShortcutGuide_ShortDescription" xml:space="preserve"> <value>Show a help overlay with Windows shortcuts</value> </data> <data name="PowerOcr_ShortDescription" xml:space="preserve"> <value>A convenient way to copy text from anywhere on screen</value> </data> <data name="Dashboard_Activation" xml:space="preserve"> <value>Activation</value> </data> <data name="DashboardKBMShowMappingsButton.Content" xml:space="preserve"> <value>Show remappings</value> </data> <data name="Oobe_QuickAccent.Description" xml:space="preserve"> <value>Quick Accent is an easy way to write letters with accents, like on a smartphone.</value> </data> <data name="Oobe_QuickAccent.Title" xml:space="preserve"> <value>Quick Accent</value> </data> <data name="Oobe_QuickAccent_HowToUse.Text" xml:space="preserve"> <value>Open **PowerToys Settings** and enable Quick Accent. While holding the key for the character you want to add an accent to, press the Activation Key and an overlay to select the accented character will appear.</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="QuickAccent_Activation_Shortcut.Header" xml:space="preserve"> <value>Activation key</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent_Activation_Shortcut.Description" xml:space="preserve"> <value>Press this key after holding down the target letter</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent_Activation_Key_Arrows.Content" xml:space="preserve"> <value>Left/Right Arrow</value> <comment>Left/Right arrow keyboard keys</comment> </data> <data name="QuickAccent_Activation_Key_Space.Content" xml:space="preserve"> <value>Space</value> <comment>Space is the space keyboard key</comment> </data> <data name="QuickAccent_Activation_Key_Either.Content" xml:space="preserve"> <value>Left, Right or Space</value> <comment>All are keys on a keyboard</comment> </data> <data name="QuickAccent_Toolbar.Header" xml:space="preserve"> <value>Toolbar</value> </data> <data name="QuickAccent_ToolbarPosition.Header" xml:space="preserve"> <value>Toolbar position</value> </data> <data name="QuickAccent_ToolbarPosition_TopCenter.Content" xml:space="preserve"> <value>Top center</value> </data> <data name="QuickAccent_ToolbarPosition_TopLeftCorner.Content" xml:space="preserve"> <value>Top left corner</value> </data> <data name="QuickAccent_ToolbarPosition_TopRightCorner.Content" xml:space="preserve"> <value>Top right corner</value> </data> <data name="QuickAccent_ToolbarPosition_BottomLeftCorner.Content" xml:space="preserve"> <value>Bottom left corner</value> </data> <data name="QuickAccent_ToolbarPosition_BottomCenter.Content" xml:space="preserve"> <value>Bottom center</value> </data> <data name="QuickAccent_ToolbarPosition_BottomRightCorner.Content" xml:space="preserve"> <value>Bottom right corner</value> </data> <data name="QuickAccent_ToolbarPosition_Center.Content" xml:space="preserve"> <value>Center</value> </data> <data name="QuickAccent_ToolbarPosition_Left.Content" xml:space="preserve"> <value>Left</value> </data> <data name="QuickAccent_ToolbarPosition_Right.Content" xml:space="preserve"> <value>Right</value> </data> <data name="QuickAccent_Behavior.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="QuickAccent_InputTimeMs.Header" xml:space="preserve"> <value>Input delay (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="QuickAccent_InputTimeMs.Description" xml:space="preserve"> <value>Hold the key down for this much time to make the accent menu appear (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="QuickAccent_ExcludedApps.Description" xml:space="preserve"> <value>Prevents module activation if a foreground application is excluded. Add one application name per line.</value> </data> <data name="QuickAccent_ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="QuickAccent_ExcludedApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: Teams.exe</value> </data> <data name="LearnMore_TextExtractor.Text" xml:space="preserve"> <value>Learn more about Text Extractor</value> </data> <data name="TextExtractor_Cancel" xml:space="preserve"> <value>cancel</value> </data> <data name="General_SettingsBackupAndRestore_NothingToBackup" xml:space="preserve"> <value>A new backup was not created because no settings have been changed since last backup.</value> </data> <data name="General_SettingsBackupAndRestore_NoBackupFound" xml:space="preserve"> <value>No backup found</value> </data> <data name="General_SettingsBackupAndRestore_FailedToParseTime" xml:space="preserve"> <value>Failed to parse time</value> </data> <data name="General_SettingsBackupAndRestore_UnknownBackupTime" xml:space="preserve"> <value>Unknown</value> </data> <data name="General_SettingsBackupAndRestore_UnknownBackupSource" xml:space="preserve"> <value>Unknown</value> </data> <data name="General_SettingsBackupAndRestore_ThisMachine" xml:space="preserve"> <value>This computer</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsMatch" xml:space="preserve"> <value>Current settings match</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsStatusAt" xml:space="preserve"> <value>at</value> <comment>E.g., Food was served 'at' noon.</comment> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsDiffer" xml:space="preserve"> <value>Current settings differ</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsNoChecked" xml:space="preserve"> <value>Checking...</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsUnknown" xml:space="preserve"> <value>Unknown</value> </data> <data name="General_SettingsBackupAndRestore_NeverRestored" xml:space="preserve"> <value>Never restored</value> </data> <data name="General_SettingsBackupAndRestore_NothingToRestore" xml:space="preserve"> <value>Nothing to restore.</value> </data> <data name="General_SettingsBackupAndRestore_NoSettingsFilesFound" xml:space="preserve"> <value>No settings files found.</value> </data> <data name="General_SettingsBackupAndRestore_BackupError" xml:space="preserve"> <value>There was an error. Try another backup location.</value> </data> <data name="General_SettingsBackupAndRestore_SettingsFormatError" xml:space="preserve"> <value>There was an error in the settings format. Please check the settings file:</value> </data> <data name="General_SettingsBackupAndRestore_BackupComplete" xml:space="preserve"> <value>Backup completed.</value> </data> <data name="General_SettingsBackupAndRestore_NoBackupSyncPath" xml:space="preserve"> <value>No backup location selected.</value> </data> <data name="General_SettingsBackupAndRestore_NoBackupsFound" xml:space="preserve"> <value>No backups found to restore.</value> </data> <data name="General_SettingsBackupAndRestore_InvalidBackupLocation" xml:space="preserve"> <value>Invalid backup location.</value> </data> <data name="TextExtractor.ModuleDescription" xml:space="preserve"> <value>Text Extractor is a convenient way to copy text from anywhere on screen</value> </data> <data name="TextExtractor.ModuleTitle" xml:space="preserve"> <value>Text Extractor</value> </data> <data name="TextExtractor_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Text Extractor</value> </data> <data name="TextExtractor_SupportedLanguages.Title" xml:space="preserve"> <value>Text Extractor can only recognize languages that have the OCR pack installed.</value> </data> <data name="TextExtractor_UseSnippingToolWarning.Title" xml:space="preserve"> <value>It is recommended to use the Snipping Tool instead of the TextExtractor module.</value> </data> <data name="TextExtractor_SupportedLanguages_Link.Content" xml:space="preserve"> <value>Learn more about supported languages</value> </data> <data name="Shell_TextExtractor.Content" xml:space="preserve"> <value>Text Extractor</value> </data> <data name="Launch_TextExtractor.Content" xml:space="preserve"> <value>Launch Text Extractor</value> </data> <data name="Oobe_TextExtractor.Title" xml:space="preserve"> <value>Text Extractor</value> </data> <data name="Oobe_TextExtractor_HowToUse.Text" xml:space="preserve"> <value>to open Text Extractor and then selecting a region to copy the text from.</value> </data> <data name="Oobe_TextExtractor_TipsAndTricks.Text" xml:space="preserve"> <value>Hold the shift key to move the selection region around.</value> </data> <data name="TextExtractor.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> </data> <data name="Oobe_TextExtractor.Description" xml:space="preserve"> <value>Text Extractor works like Snipping Tool, but copies the text out of the selected region using OCR and puts it on the clipboard.</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Monaco_Try_Format.Description" xml:space="preserve"> <value>Applies to json and xml. Files remain unchanged.</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Monaco_Try_Format.Header" xml:space="preserve"> <value>Try to format the source for preview</value> </data> <data name="Run_ConflictingKeywordInfo.Title" xml:space="preserve"> <value>Some characters and phrases may conflict with global queries of other plugins if you use them as activation command.</value> </data> <data name="Run_ConflictingKeywordInfo_Link.Content" xml:space="preserve"> <value>Learn more about conflicting activation commands</value> </data> <data name="MeasureTool_ContinuousCapture_Information.Title" xml:space="preserve"> <value>The continuous capture mode will consume more resources when in use. Also, measurements will be excluded from screenshots and screen capture.</value> <comment>pointer as in mouse pointer. Resources refer to things like CPU, GPU, RAM</comment> </data> <data name="QuickAccent_Description_Indicator.Header" xml:space="preserve"> <value>Show the Unicode code and name of the currently selected character</value> </data> <data name="QuickAccent_SortByUsageFrequency_Indicator.Header" xml:space="preserve"> <value>Sort characters by usage frequency</value> </data> <data name="QuickAccent_SortByUsageFrequency_Indicator.Description" xml:space="preserve"> <value>Track characters usage frequency and sort them accordingly</value> </data> <data name="QuickAccent_StartSelectionFromTheLeft_Indicator.Header" xml:space="preserve"> <value>Start selection from the left</value> </data> <data name="QuickAccent_StartSelectionFromTheLeft_Indicator.Description" xml:space="preserve"> <value>Start selection from the leftmost character for all activation keys, including left and right arrows</value> </data> <data name="QuickAccent_DisableFullscreen.Header" xml:space="preserve"> <value>Disable when Game Mode is On</value> </data> <data name="QuickAccent_Language.Header" xml:space="preserve"> <value>Characters</value> </data> <data name="QuickAccent_SelectedLanguage.Header" xml:space="preserve"> <value>Choose a character set</value> </data> <data name="QuickAccent_SelectedLanguage.Description" xml:space="preserve"> <value>Show only accented characters common to the selected set</value> </data> <data name="QuickAccent_SelectedLanguage_All.Content" xml:space="preserve"> <value>All available</value> </data> <data name="QuickAccent_SelectedLanguage_Catalan.Content" xml:space="preserve"> <value>Catalan</value> </data> <data name="QuickAccent_SelectedLanguage_Currency.Content" xml:space="preserve"> <value>Currency</value> </data> <data name="QuickAccent_SelectedLanguage_Croatian.Content" xml:space="preserve"> <value>Croatian</value> </data> <data name="QuickAccent_SelectedLanguage_Czech.Content" xml:space="preserve"> <value>Czech</value> </data> <data name="QuickAccent_SelectedLanguage_Danish.Content" xml:space="preserve"> <value>Danish</value> </data> <data name="QuickAccent_SelectedLanguage_Gaeilge.Content" xml:space="preserve"> <value>Gaeilge</value> <comment>Gaelic language spoken in Ireland</comment> </data> <data name="QuickAccent_SelectedLanguage_Gaidhlig.Content" xml:space="preserve"> <value>Gàidhlig</value> <comment>Scottish Gaelic</comment> </data> <data name="QuickAccent_SelectedLanguage_German.Content" xml:space="preserve"> <value>German</value> </data> <data name="QuickAccent_SelectedLanguage_Greek.Content" xml:space="preserve"> <value>Greek</value> </data> <data name="QuickAccent_SelectedLanguage_Hebrew.Content" xml:space="preserve"> <value>Hebrew</value> </data> <data name="QuickAccent_SelectedLanguage_French.Content" xml:space="preserve"> <value>French</value> </data> <data name="QuickAccent_SelectedLanguage_Finnish.Content" xml:space="preserve"> <value>Finnish</value> </data> <data name="QuickAccent_SelectedLanguage_Estonian.Content" xml:space="preserve"> <value>Estonian</value> </data> <data name="QuickAccent_SelectedLanguage_Lithuanian.Content" xml:space="preserve"> <value>Lithuanian</value> </data> <data name="QuickAccent_SelectedLanguage_Macedonian.Content" xml:space="preserve"> <value>Macedonian</value> </data> <data name="QuickAccent_SelectedLanguage_Maori.Content" xml:space="preserve"> <value>Maori</value> </data> <data name="QuickAccent_SelectedLanguage_Dutch.Content" xml:space="preserve"> <value>Dutch</value> </data> <data name="QuickAccent_SelectedLanguage_Norwegian.Content" xml:space="preserve"> <value>Norwegian</value> </data> <data name="QuickAccent_SelectedLanguage_Pinyin.Content" xml:space="preserve"> <value>Pinyin</value> </data> <data name="QuickAccent_SelectedLanguage_Polish.Content" xml:space="preserve"> <value>Polish</value> </data> <data name="QuickAccent_SelectedLanguage_Portuguese.Content" xml:space="preserve"> <value>Portuguese</value> </data> <data name="QuickAccent_SelectedLanguage_Slovak.Content" xml:space="preserve"> <value>Slovak</value> </data> <data name="QuickAccent_SelectedLanguage_Spanish.Content" xml:space="preserve"> <value>Spanish</value> </data> <data name="QuickAccent_SelectedLanguage_Swedish.Content" xml:space="preserve"> <value>Swedish</value> </data> <data name="QuickAccent_SelectedLanguage_Turkish.Content" xml:space="preserve"> <value>Turkish</value> </data> <data name="QuickAccent_SelectedLanguage_Icelandic.Content" xml:space="preserve"> <value>Icelandic</value> </data> <data name="QuickAccent_SelectedLanguage_Romanian.Content" xml:space="preserve"> <value>Romanian</value> </data> <data name="QuickAccent_SelectedLanguage_Serbian.Content" xml:space="preserve"> <value>Serbian</value> </data> <data name="QuickAccent_SelectedLanguage_Hungarian.Content" xml:space="preserve"> <value>Hungarian</value> </data> <data name="QuickAccent_SelectedLanguage_Italian.Content" xml:space="preserve"> <value>Italian</value> </data> <data name="QuickAccent_SelectedLanguage_Kurdish.Content" xml:space="preserve"> <value>Kurdish</value> </data> <data name="QuickAccent_SelectedLanguage_Welsh.Content" xml:space="preserve"> <value>Welsh</value> </data> <data name="Hosts.ModuleDescription" xml:space="preserve"> <value>Quick and simple utility for managing hosts file.</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Hosts.ModuleTitle" xml:space="preserve"> <value>Hosts File Editor</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Shell_Hosts.Content" xml:space="preserve"> <value>Hosts File Editor</value> <comment>Products name: Navigation view item name for Hosts File Editor</comment> </data> <data name="Hosts_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Hosts_Toggle_ShowStartupWarning.Header" xml:space="preserve"> <value>Show a warning at startup</value> </data> <data name="Hosts_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="Hosts_LaunchButtonControl.Description" xml:space="preserve"> <value>Manage your hosts file</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Hosts_LaunchButtonControl.Header" xml:space="preserve"> <value>Launch Host File Editor</value> <comment>"Host File Editor" is a product name</comment> </data> <data name="Hosts_LaunchButton_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Launch Host File Editor</value> <comment>"Host File Editor" is a product name</comment> </data> <data name="Hosts_AdditionalLinesPosition.Header" xml:space="preserve"> <value>Position of additional content</value> </data> <data name="Hosts_AdditionalLinesPosition_Bottom.Content" xml:space="preserve"> <value>Bottom</value> </data> <data name="Hosts_AdditionalLinesPosition_Top.Content" xml:space="preserve"> <value>Top</value> </data> <data name="Hosts_Behavior_GroupSettings.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="Launch_Hosts.Content" xml:space="preserve"> <value>Launch Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="LearnMore_Hosts.Text" xml:space="preserve"> <value>Learn more about Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Oobe_Hosts.Description" xml:space="preserve"> <value>Hosts File Editor is a quick and simple utility for managing hosts file.</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Oobe_Hosts.Title" xml:space="preserve"> <value>Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Hosts_Toggle_LaunchAdministrator.Description" xml:space="preserve"> <value>Needs to be launched as administrator in order to make changes to the hosts file</value> </data> <data name="Hosts_Toggle_LaunchAdministrator.Header" xml:space="preserve"> <value>Launch as administrator</value> </data> <data name="EnvironmentVariables.ModuleDescription" xml:space="preserve"> <value>A quick utility for managing environment variables.</value> </data> <data name="EnvironmentVariables.ModuleTitle" xml:space="preserve"> <value>Environment Variables</value> </data> <data name="Shell_EnvironmentVariables.Content" xml:space="preserve"> <value>Environment Variables</value> </data> <data name="EnvironmentVariables_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Environment Variables</value> </data> <data name="EnvironmentVariables_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="EnvironmentVariables_LaunchButtonControl.Description" xml:space="preserve"> <value>Manage your environment variables</value> </data> <data name="EnvironmentVariables_LaunchButtonControl.Header" xml:space="preserve"> <value>Launch Environment Variables</value> </data> <data name="EnvironmentVariables_LaunchButton_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Launch Environment Variables</value> </data> <data name="Launch_EnvironmentVariables.Content" xml:space="preserve"> <value>Launch Environment Variables</value> </data> <data name="LearnMore_EnvironmentVariables.Text" xml:space="preserve"> <value>Learn more about Environment Variables</value> </data> <data name="Oobe_EnvironmentVariables.Description" xml:space="preserve"> <value>Environment Variables is a quick utility for managing environment variables.</value> </data> <data name="Oobe_EnvironmentVariables.Title" xml:space="preserve"> <value>Environment Variables</value> </data> <data name="EnvironmentVariables_Toggle_LaunchAdministrator.Description" xml:space="preserve"> <value>Needs to be launched as administrator in order to make changes to the system environment variables</value> </data> <data name="EnvironmentVariables_Toggle_LaunchAdministrator.Header" xml:space="preserve"> <value>Launch as administrator</value> </data> <data name="ShortcutGuide_PressTimeForTaskbarIconShortcuts.Header" xml:space="preserve"> <value>Press duration before showing taskbar icon shortcuts (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="FileLocksmith.ModuleDescription" xml:space="preserve"> <value>A Windows shell extension to find out which processes are using the selected files and directories.</value> </data> <data name="FileLocksmith.ModuleTitle" xml:space="preserve"> <value>File Locksmith</value> </data> <data name="Shell_FileLocksmith.Content" xml:space="preserve"> <value>File Locksmith</value> <comment>Product name: Navigation view item name for FileLocksmith</comment> </data> <data name="FileLocksmith_Enable_FileLocksmith.Header" xml:space="preserve"> <value>Enable File Locksmith</value> <comment>File Locksmith is the name of the utility</comment> </data> <data name="FileLocksmith_Toggle_StandardContextMenu.Content" xml:space="preserve"> <value>Default and extended context menu</value> </data> <data name="FileLocksmith_Toggle_ExtendedContextMenu.Content" xml:space="preserve"> <value>Extended context menu only</value> </data> <data name="FileLocksmith_Toggle_ContextMenu.Header" xml:space="preserve"> <value>Show File Locksmith in</value> </data> <data name="FileLocksmith_ShellIntegration.Header" xml:space="preserve"> <value>Shell integration</value> <comment>This refers to directly integrating in with Windows</comment> </data> <data name="GPO_IsSettingForced.Title" xml:space="preserve"> <value>This setting is enforced by your System Administrator.</value> </data> <data name="Hosts_AdditionalLinesPosition.Description" xml:space="preserve"> <value>Additional content includes the file header and lines that can't parse</value> </data> <data name="TextExtractor_Languages.Header" xml:space="preserve"> <value>Preferred language</value> </data> <data name="Alternate_OOBE_AlwaysOnTop_Description.Text" xml:space="preserve"> <value>Pin a window so that:</value> </data> <data name="Alternate_OOBE_AlwaysOnTop_Title.Text" xml:space="preserve"> <value>Always On Top</value> </data> <data name="Alternate_OOBE_ColorPicker_Description.Text" xml:space="preserve"> <value>To pick a color:</value> </data> <data name="Alternate_OOBE_ColorPicker_Title.Text" xml:space="preserve"> <value>Color Picker</value> </data> <data name="Alternate_OOBE_Description.Text" xml:space="preserve"> <value>Here are a few shortcuts to get you started:</value> </data> <data name="Alternate_OOBE_FancyZones_Description.Text" xml:space="preserve"> <value>To open the FancyZones editor, press:</value> </data> <data name="Alternate_OOBE_FancyZones_Title.Text" xml:space="preserve"> <value>FancyZones</value> </data> <data name="Alternate_OOBE_Run_Description.Text" xml:space="preserve"> <value>Get access to your files and more:</value> </data> <data name="Alternate_OOBE_Run_Title.Text" xml:space="preserve"> <value>PowerToys Run</value> </data> <data name="General_Experimentation.Header" xml:space="preserve"> <value>Experimentation</value> </data> <data name="GeneralPage_EnableExperimentation.Description" xml:space="preserve"> <value>Note: Only Windows Insider builds may be selected for experimentation</value> </data> <data name="GeneralPage_EnableExperimentation.Header" xml:space="preserve"> <value>Allow experimentation with new features</value> </data> <data name="GPO_ExperimentationIsDisallowed.Title" xml:space="preserve"> <value>The system administrator has disabled experimentation.</value> </data> <data name="Shell_PastePlain.Content" xml:space="preserve"> <value>Paste As Plain Text</value> <comment>Product name: Navigation view item name for Paste as Plain Text</comment> </data> <data name="PastePlain.ModuleDescription" xml:space="preserve"> <value>Paste As Plain Text is a quick shortcut for pasting the text contents of your clipboard without formatting. Note: the formatted text in the clipboard is replaced with the unformatted text.</value> </data> <data name="PastePlain.ModuleTitle" xml:space="preserve"> <value>Paste As Plain Text</value> </data> <data name="PastePlain_Cancel" xml:space="preserve"> <value>cancel</value> </data> <data name="PastePlain_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Paste As Plain Text</value> </data> <data name="Oobe_PastePlain.Description" xml:space="preserve"> <value>Paste As Plain Text strips rich formatting from your clipboard data and pastes it as non-formatted text.</value> </data> <data name="Oobe_PastePlain.Title" xml:space="preserve"> <value>Paste As Plain Text</value> </data> <data name="Oobe_PastePlain_HowToUse.Text" xml:space="preserve"> <value>to paste your clipboard data as plain text. Note: this will replace the formatted text in your clipboard with the plain text.</value> </data> <data name="AllAppsTxt.Text" xml:space="preserve"> <value>All apps</value> </data> <data name="BackBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Back</value> </data> <data name="BackLabel.Text" xml:space="preserve"> <value>Back</value> </data> <data name="BugReportBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Bug report</value> </data> <data name="BugReportTooltip.Text" xml:space="preserve"> <value>Bug report</value> </data> <data name="DocsBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Documentation</value> </data> <data name="DocsTooltip.Text" xml:space="preserve"> <value>Documentation</value> </data> <data name="FZEditorString" xml:space="preserve"> <value>FancyZones Editor</value> <comment>Do not localize this string</comment> </data> <data name="MoreBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>More</value> </data> <data name="MoreLabel.Text" xml:space="preserve"> <value>More</value> </data> <data name="SettingsBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Settings</value> </data> <data name="SettingsTooltip.Text" xml:space="preserve"> <value>Settings</value> </data> <data name="ShortcutsTxt.Text" xml:space="preserve"> <value>Shortcuts</value> </data> <data name="UpdateAvailable.Title" xml:space="preserve"> <value>Update available</value> </data> <data name="FileExplorerPreview_Toggle_Monaco_Max_File_Size.Header" xml:space="preserve"> <value>Maximum file size to preview</value> <comment>Size refers to the disk space used by a file</comment> </data> <data name="FileExplorerPreview_Toggle_Monaco_Max_File_Size.Description" xml:space="preserve"> <value>The maximum size, in kilobytes, for files to be displayed. This is a safety mechanism to prevent loading large files into RAM.</value> <comment>"RAM" refers to random access memory; "size" refers to disk space; "bytes" refer to the measurement unit</comment> </data> <data name="RegistryPreview.ModuleDescription" xml:space="preserve"> <value>A quick little utility to visualize and edit complex Windows Registry files.</value> </data> <data name="RegistryPreview.ModuleTitle" xml:space="preserve"> <value>Registry Preview</value> </data> <data name="Shell_RegistryPreview.Content" xml:space="preserve"> <value>Registry Preview</value> <comment>Product name: Navigation view item name for Registry Preview</comment> </data> <data name="RegistryPreview_Enable_RegistryPreview.Header" xml:space="preserve"> <value>Enable Registry Preview</value> <comment>Registry Preview is the name of the utility</comment> </data> <data name="Oobe_RegistryPreview_HowToUse.Text" xml:space="preserve"> <value>In File Explorer, right-click a .REG file and select **Preview** from the context menu.</value> </data> <data name="Oobe_RegistryPreview_TipsAndTricks.Text" xml:space="preserve"> <value>You can preview or edit Registry files in File Explorer or by opening the app from the PowerToys launcher.</value> </data> <data name="Oobe_RegistryPreview.Description" xml:space="preserve"> <value>Registry Preview is a quick little utility to visualize and edit complex Windows Registry files.</value> </data> <data name="Oobe_RegistryPreview.Title" xml:space="preserve"> <value>Registry Preview</value> <comment>Do not localize this string</comment> </data> <data name="LearnMore_RegistryPreview.Text" xml:space="preserve"> <value>Learn more about Registry Preview</value> <comment>Registry Preview is a product name, do not loc</comment> </data> <data name="Launch_RegistryPreview.Content" xml:space="preserve"> <value>Launch Registry Preview</value> <comment>"Registry Preview" is the name of the utility</comment> </data> <data name="MouseUtils_MouseJump.Description" xml:space="preserve"> <value>Quickly move the mouse pointer long distances.</value> <comment>"Mouse Jump" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_MouseJump.Header" xml:space="preserve"> <value>Mouse Jump</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_MouseJump_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to turn on or off this mode</value> </data> <data name="MouseUtils_MouseJump_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MouseUtils_Enable_MouseJump.Header" xml:space="preserve"> <value>Enable Mouse Jump</value> <comment>"Mouse Jump" is the name of the utility.</comment> </data> <data name="GPO_AutoDownloadUpdatesIsDisabled.Title" xml:space="preserve"> <value>The system administrator has disabled the automatic download of updates.</value> </data> <data name="Hosts_Toggle_LoopbackDuplicates.Description" xml:space="preserve"> <value>127.0.0.1, ::1, ...</value> <comment>"127.0.0.1 and ::1" are well known loopback addresses, do not loc</comment> </data> <data name="Hosts_Toggle_LoopbackDuplicates.Header" xml:space="preserve"> <value>Consider loopback addresses as duplicates</value> </data> <data name="RegistryPreview_Launch_GroupSettings.Header" xml:space="preserve"> <value>Launch</value> </data> <data name="RegistryPreview_LaunchButton_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Launch Registry Preview</value> </data> <data name="RegistryPreview_LaunchButtonControl.Header" xml:space="preserve"> <value>Launch Registry Preview</value> </data> <data name="RegistryPreview_DefaultRegApp.Header" xml:space="preserve"> <value>Default app</value> </data> <data name="RegistryPreview_DefaultRegApp.Description" xml:space="preserve"> <value>Make Registry Preview default app for opening .reg files</value> <comment>Registry Preview is app name. Do not localize.</comment> </data> <data name="PastePlain_ShortcutWarning.Title" xml:space="preserve"> <value>Using this shortcut may prevent non-text paste actions (e.g. images, files) or built-in paste plain text actions in other applications from functioning.</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize.Header" xml:space="preserve"> <value>Thumbnail Size</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Description_Prefix.Text" xml:space="preserve"> <value>Constrain thumbnail image size to a maximum of</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Description_Suffix.Text" xml:space="preserve"> <value>pixels</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Edit_Height.Header" xml:space="preserve"> <value>Maximum height (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Edit_Width.Header" xml:space="preserve"> <value>Maximum width (px)</value> <comment>px = pixels</comment> </data> <data name="Oobe_Peek.Description" xml:space="preserve"> <value>A lightning fast file preview feature for Windows.</value> </data> <data name="Oobe_Peek.Title" xml:space="preserve"> <value>Peek</value> </data> <data name="Oobe_Peek_HowToUse.Text" xml:space="preserve"> <value>to preview the file that's currently selected in File Explorer.</value> </data> <data name="MWB_PCNameLabel.PlaceholderText" xml:space="preserve"> <value>Device name</value> </data> <data name="MWB_SecurityKeyLabel.PlaceholderText" xml:space="preserve"> <value>Security key</value> </data> <data name="Hosts_Encoding.Description" xml:space="preserve"> <value>Choose the encoding of the hosts file</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Hosts_Encoding.Header" xml:space="preserve"> <value>Encoding</value> </data> <data name="Hosts_Encoding_Utf8.Content" xml:space="preserve"> <value>UTF-8</value> </data> <data name="Hosts_Encoding_Utf8Bom.Content" xml:space="preserve"> <value>UTF-8 with BOM</value> </data> <data name="MouseUtils_MouseHighlighter_AlwaysColor.Header" xml:space="preserve"> <value>Always highlight color</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsAutoHide.Content" xml:space="preserve"> <value>Automatically hide crosshairs when the mouse pointer is hidden</value> </data> <data name="MouseUtils_AutoActivate.Content" xml:space="preserve"> <value>Automatically activate on utility startup</value> </data> <data name="Run_FindMorePlugins.Text" xml:space="preserve"> <value>Find more plugins</value> </data> <data name="Run_PluginUseFindMorePlugins.Content" xml:space="preserve"> <value>Find more plugins</value> </data> <data name="Run_SomePluginsAreGpoManaged.Title" xml:space="preserve"> <value>The system administrator is managing the enabled state of some plugins.</value> </data> <data name="AlwaysOnTop_FrameOpacity.Header" xml:space="preserve"> <value>Opacity (%)</value> </data> <data name="MouseUtils_FindMyMouse_ActivationCustomizedShortcut.Content" xml:space="preserve"> <value>Custom shortcut</value> </data> <data name="MouseUtils_FindMyMouse_ActivationDoubleRightControlPress.Content" xml:space="preserve"> <value>Press Right Control twice</value> <comment>Right control is the physical key on the keyboard.</comment> </data> <data name="MouseUtils_FindMyMouse_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to turn on or off this mode</value> </data> <data name="MouseUtils_FindMyMouse_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="SettingsWindow_AdminTitle" xml:space="preserve"> <value>Administrator: PowerToys Settings</value> <comment>Title of the settings window when running as administrator</comment> </data> <data name="DashboardTitle.Text" xml:space="preserve"> <value>Dashboard</value> </data> <data name="Shell_Dashboard.Content" xml:space="preserve"> <value>Dashboard</value> </data> <data name="GPO_IsSettingForcedText.Text" xml:space="preserve"> <value>This setting is enforced by your System Administrator.</value> </data> <data name="DisabledModules.Text" xml:space="preserve"> <value>Disabled modules</value> </data> <data name="EnabledModules.Text" xml:space="preserve"> <value>Enabled modules</value> </data> <data name="Peek_Preview_GroupSettings.Header" xml:space="preserve"> <value>Preview</value> </data> <data name="Peek_SourceCode_Header.Description" xml:space="preserve"> <value>.cpp, .py, .json, .xml, .csproj, ...</value> </data> <data name="Peek_SourceCode_Header.Header" xml:space="preserve"> <value>Source code files (Monaco)</value> </data> <data name="Peek_SourceCode_TryFormat.Description" xml:space="preserve"> <value>Applies to json and xml. Files remain unchanged.</value> </data> <data name="Peek_SourceCode_TryFormat.Header" xml:space="preserve"> <value>Try to format the source for preview</value> </data> <data name="Peek_SourceCode_WrapText.Content" xml:space="preserve"> <value>Wrap text</value> </data> </root>
iakrayna
949b9a61856e340a4367be54dc405b4d3574f280
1a8007ca0a5d420f6b6f9c832f4da266da86ca76
Should be "What's new"
crutkas
344
microsoft/PowerToys
29,028
Adds a link to the OOBE What's New Section in the ShellPage Navigation
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request Adds an "About this App" in the ShellPage that redirects to the What's New section of the OOBE Page. Links Issue 17611 <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [ ] **Closes:** #17611 - [ ] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected - [ ] **Tests:** Added/updated and all pass - [ ] **Localization:** All end user facing strings can be localized - [ ] **Dev docs:** Added/updated - [ ] **New binaries:** Added on the required places - [ ] [JSON for signing](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ESRPSigning_core.json) for new binaries - [ ] [WXS for installer](https://github.com/microsoft/PowerToys/blob/main/installer/PowerToysSetup/Product.wxs) for new binaries and localization folder - [ ] [YML for CI pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ci/templates/build-powertoys-steps.yml) for new test projects - [ ] [YML for signed pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/release.yml) - [ ] **Documentation updated:** If checked, please file a pull request on [our docs repo](https://github.com/MicrosoftDocs/windows-uwp/tree/docs/hub/powertoys) and link it here: #xxx <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed
null
2023-10-05 01:38:43+00:00
2023-11-21 19:19:12+00:00
src/settings-ui/Settings.UI/Strings/en-us/Resources.resw
<?xml version="1.0" encoding="utf-8"?> <root> <!-- Microsoft ResX Schema Version 2.0 The primary goals of this format is to allow a simple XML format that is mostly human readable. The generation and parsing of the various data types are done through the TypeConverter classes associated with the data types. Example: ... ado.net/XML headers & schema ... <resheader name="resmimetype">text/microsoft-resx</resheader> <resheader name="version">2.0</resheader> <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader> <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader> <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data> <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data> <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64"> <value>[base64 mime encoded serialized .NET Framework object]</value> </data> <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value> <comment>This is a comment</comment> </data> There are any number of "resheader" rows that contain simple name/value pairs. Each data row contains a name, and value. The row also contains a type or mimetype. Type corresponds to a .NET class that support text/value conversion through the TypeConverter architecture. Classes that don't support this are serialized and stored with the mimetype set. The mimetype is used for serialized objects, and tells the ResXResourceReader how to depersist the object. This is currently not extensible. For a given mimetype the value must be set accordingly: Note - application/x-microsoft.net.object.binary.base64 is the format that the ResXResourceWriter will generate, however the reader can read any of the formats listed below. mimetype: application/x-microsoft.net.object.binary.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.soap.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Soap.SoapFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.bytearray.base64 value : The object must be serialized into a byte array : using a System.ComponentModel.TypeConverter : and then encoded with base64 encoding. --> <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> <xsd:import namespace="http://www.w3.org/XML/1998/namespace" /> <xsd:element name="root" msdata:IsDataSet="true"> <xsd:complexType> <xsd:choice maxOccurs="unbounded"> <xsd:element name="metadata"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" /> </xsd:sequence> <xsd:attribute name="name" use="required" type="xsd:string" /> <xsd:attribute name="type" type="xsd:string" /> <xsd:attribute name="mimetype" type="xsd:string" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="assembly"> <xsd:complexType> <xsd:attribute name="alias" type="xsd:string" /> <xsd:attribute name="name" type="xsd:string" /> </xsd:complexType> </xsd:element> <xsd:element name="data"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" /> <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="resheader"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" /> </xsd:complexType> </xsd:element> </xsd:choice> </xsd:complexType> </xsd:element> </xsd:schema> <resheader name="resmimetype"> <value>text/microsoft-resx</value> </resheader> <resheader name="version"> <value>2.0</value> </resheader> <resheader name="reader"> <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <resheader name="writer"> <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <data name="Attribution_Rooler.Text" xml:space="preserve"> <value>Inspired by Rooler</value> <comment>Rooler is a name of the tool.</comment> </data> <data name="Shell_VideoConference.Content" xml:space="preserve"> <value>Video Conference Mute</value> <comment>Navigation view item name for Video Conference</comment> </data> <data name="Shell_MeasureTool.Content" xml:space="preserve"> <value>Screen Ruler</value> <comment>Product name: Navigation view item name for Screen Ruler</comment> </data> <data name="MeasureTool.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="MeasureTool.ModuleDescription" xml:space="preserve"> <value>Screen Ruler is a quick and easy way to measure pixels on your screen.</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool.ModuleTitle" xml:space="preserve"> <value>Screen Ruler</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool_ActivationSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="MeasureTool_Settings.Header" xml:space="preserve"> <value>Behavior</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MeasureTool_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to bring up the command bar</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool_DefaultMeasureStyle.Header" xml:space="preserve"> <value>Default measure style</value> </data> <data name="MeasureTool_DefaultMeasureStyle.Description" xml:space="preserve"> <value>The utility will start having the selected style activated</value> </data> <data name="MeasureTool_DefaultMeasureStyle_None.Content" xml:space="preserve"> <value>None</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Bounds.Content" xml:space="preserve"> <value>Bounds</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Spacing.Content" xml:space="preserve"> <value>Spacing</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Horizontal_Spacing.Content" xml:space="preserve"> <value>Horizontal spacing</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Vertical_Spacing.Content" xml:space="preserve"> <value>Vertical spacing</value> </data> <data name="MeasureTool_UnitsOfMeasure.Header" xml:space="preserve"> <value>Units of measurement</value> </data> <data name="MeasureTool_UnitsOfMeasure_Pixels.Content" xml:space="preserve"> <value>Pixels</value> </data> <data name="MeasureTool_UnitsOfMeasure_Inches.Content" xml:space="preserve"> <value>Inches</value> </data> <data name="MeasureTool_UnitsOfMeasure_Centimeters.Content" xml:space="preserve"> <value>Centimeters</value> </data> <data name="MeasureTool_PixelTolerance.Header" xml:space="preserve"> <value>Pixel tolerance for edge detection</value> </data> <data name="MeasureTool_MeasureCrossColor.Header" xml:space="preserve"> <value>Line color</value> </data> <data name="MeasureTool_ContinuousCapture.Header" xml:space="preserve"> <value>Capture screen continuously during measuring</value> </data> <data name="MeasureTool_ContinuousCapture.Description" xml:space="preserve"> <value>Refresh screen contexts in real-time instead of making a screenshot once</value> </data> <data name="MeasureTool_PerColorChannelEdgeDetection.Header" xml:space="preserve"> <value>Per color channel edge detection</value> </data> <data name="MeasureTool_PerColorChannelEdgeDetection.Description" xml:space="preserve"> <value>If enabled, test that all color channels are within a tolerance distance from each other. Otherwise, check that the sum of all color channels differences is smaller than the tolerance.</value> </data> <data name="MeasureTool_DrawFeetOnCross.Header" xml:space="preserve"> <value>Draw feet on cross</value> </data> <data name="MeasureTool_DrawFeetOnCross.Description" xml:space="preserve"> <value>Adds feet to the end of cross lines</value> </data> <data name="MeasureTool_EnableMeasureTool.Header" xml:space="preserve"> <value>Enable Screen Ruler</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MouseWithoutBorders_ActivationSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="MouseWithoutBorders_DeviceLayoutSettings.Header" xml:space="preserve"> <value>Device layout</value> </data> <data name="MouseWithoutBorders_DeviceLayoutSettings.Description" xml:space="preserve"> <value>Drag and drop a machine to rearrange the order.</value> </data> <data name="MouseWithoutBorders_CannotDragDropAsAdmin.Title" xml:space="preserve"> <value>It is not possible to use drag and drop while running PowerToys elevated. As a workaround, please restart PowerToys without elevation to edit the device layout.</value> </data> <data name="MouseWithoutBorders_KeySettings.Header" xml:space="preserve"> <value>Encryption key</value> </data> <data name="MouseWithoutBorders_SecurityKey.Header" xml:space="preserve"> <value>Security key</value> </data> <data name="MouseWithoutBorders_SecurityKey.Description" xml:space="preserve"> <value>The key must be auto generated in one machine by clicking on New Key, then typed in other machines</value> </data> <data name="MouseWithoutBorders_NewKey.Content" xml:space="preserve"> <value>New key</value> </data> <data name="MouseWithoutBorders_CopyMachineName.Text" xml:space="preserve"> <value>Copy to clipboard</value> </data> <data name="MouseWithoutBorders_ReconnectButton.Text" xml:space="preserve"> <value>Refresh connections</value> </data> <data name="MouseWithoutBorders_ReconnectTooltip.Text" xml:space="preserve"> <value>Reestablishes connections with other devices if you are experiencing issues.</value> </data> <data name="MouseWithoutBorders_ThisMachineNameLabel.Header" xml:space="preserve"> <value>Host name of this device</value> </data> <data name="MouseWithoutBorders_Connect.Content" xml:space="preserve"> <value>Connect</value> </data> <data name="MouseWithoutBorders_UninstallService.Header" xml:space="preserve"> <value>Uninstall service</value> </data> <data name="MouseWithoutBorders_UninstallService.Description" xml:space="preserve"> <value>Removes the service from the computer. Needs to run as administrator.</value> </data> <data name="MouseWithoutBorders_Settings.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="MouseWithoutBorders_TroubleShooting.Header" xml:space="preserve"> <value>Troubleshooting</value> </data> <data name="MouseWithoutBorders_AddFirewallRuleButtonControl.Header" xml:space="preserve"> <value>Add a firewall rule for Mouse Without Borders</value> <comment>"Mouse Without Borders" is a product name</comment> </data> <data name="MouseWithoutBorders_AddFirewallRuleButtonControl.Description" xml:space="preserve"> <value>Adding a firewall rule might help solve connection issues.</value> </data> <data name="MouseWithoutBorders_RunAsAdminText.Title" xml:space="preserve"> <value>You need to run as administrator to modify this setting.</value> </data> <data name="MouseWithoutBorders_ServiceUserUninstallWarning.Title" xml:space="preserve"> <value>If PowerToys is installed as a user, uninstalling/upgrading may require the Mouse Without Borders service to be removed manually later.</value> </data> <data name="MouseWithoutBorders_ServiceSettings.Header" xml:space="preserve"> <value>Service</value> </data> <data name="MouseWithoutBorders_Toggle_Enable.Header" xml:space="preserve"> <value>Enable Mouse Without Borders</value> </data> <data name="MouseWithoutBorders.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="MouseWithoutBorders.ModuleDescription" xml:space="preserve"> <value>Mouse Without Borders is a quick and easy way to move your cursor across multiple devices.</value> <comment>"Mouse Without Borders" is the name of the utility</comment> </data> <data name="MouseWithoutBorders.ModuleTitle" xml:space="preserve"> <value>Mouse Without Borders</value> <comment>"Mouse Without Borders" is the name of the utility</comment> </data> <data name="MouseWithoutBorders_UseService.Header" xml:space="preserve"> <value>Use Service</value> </data> <data name="MouseWithoutBorders_UseService.Description" xml:space="preserve"> <value>Runs in service mode, that allows MWB to control remote machines when they're locked. Also allows control of system and administrator applications.</value> </data> <data name="MouseWithoutBorders_MatrixOneRow.Header" xml:space="preserve"> <value>Devices in a single row</value> </data> <data name="MouseWithoutBorders_MatrixOneRow.Description" xml:space="preserve"> <value>Sets whether the devices are aligned on a single row. A two by two matrix is considered otherwise.</value> </data> <data name="MouseWithoutBorders_WrapMouse.Header" xml:space="preserve"> <value>Wrap mouse</value> </data> <data name="MouseWithoutBorders_WrapMouse.Description" xml:space="preserve"> <value>Move control back to the first machine when mouse moves past the last one.</value> </data> <data name="MouseWithoutBorders_ShareClipboard.Header" xml:space="preserve"> <value>Share clipboard</value> </data> <data name="MouseWithoutBorders_TransferFile.Header" xml:space="preserve"> <value>Transfer file</value> </data> <data name="MouseWithoutBorders_HideMouseAtScreenEdge.Header" xml:space="preserve"> <value>Hide mouse at the screen edge</value> </data> <data name="MouseWithoutBorders_DrawMouseCursor.Header" xml:space="preserve"> <value>Draw mouse cursor</value> </data> <data name="MouseWithoutBorders_ValidateRemoteMachineIP.Header" xml:space="preserve"> <value>Validate remote machine IP</value> </data> <data name="MouseWithoutBorders_SameSubnetOnly.Header" xml:space="preserve"> <value>Same subnet only</value> </data> <data name="MouseWithoutBorders_BlockScreenSaverOnOtherMachines.Header" xml:space="preserve"> <value>Block screen saver on other machines</value> </data> <data name="MouseWithoutBorders_MoveMouseRelatively.Header" xml:space="preserve"> <value>Move mouse relatively</value> </data> <data name="MouseWithoutBorders_BlockMouseAtScreenCorners.Header" xml:space="preserve"> <value>Block mouse at screen corners</value> </data> <data name="MouseWithoutBorders_ShowClipboardAndNetworkStatusMessages.Header" xml:space="preserve"> <value>Show clipboard and network status messages</value> </data> <data name="MouseWithoutBorders_ShowOriginalUI.Header" xml:space="preserve"> <value>Show the original Mouse Without Borders UI</value> </data> <data name="MouseWithoutBorders_ShowOriginalUI.Description" xml:space="preserve"> <value>This is accessible from the system tray and requires a restart.</value> </data> <data name="MouseWithoutBorders_ShareClipboard.Description" xml:space="preserve"> <value>If share clipboard stops working, Ctrl+Alt+Del then Esc may solve the problem.</value> </data> <data name="MouseWithoutBorders_TransferFile.Description" xml:space="preserve"> <value>If a file (&lt;100MB) is copied, it will be transferred to the remote machine clipboard.</value> </data> <data name="MouseWithoutBorders_HideMouseAtScreenEdge.Description" xml:space="preserve"> <value>Hide the mouse cursor at the top edge of the screen when switching to other machine. This option also steals the focus from any full-screen app to ensure the keyboard input is redirected.</value> </data> <data name="MouseWithoutBorders_DrawMouseCursor.Description" xml:space="preserve"> <value>Mouse cursor may not be visible in Windows 10 and later versions of Windows when there is no physical mouse attached.</value> </data> <data name="MouseWithoutBorders_ValidateRemoteMachineIP.Description" xml:space="preserve"> <value>Reverse DNS lookup to validate machine IP Address.</value> </data> <data name="MouseWithoutBorders_SameSubnetOnly.Description" xml:space="preserve"> <value>Only connect to machines in the same intranet NNN.NNN.*.* (only works when both machines have IPv4 enabled)</value> </data> <data name="MouseWithoutBorders_IPAddressMapping_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: MyLaptop 192.168.0.24</value> <comment>Don't translate MyLaptop</comment> </data> <data name="MouseWithoutBorders_IPAddressMapping.Header" xml:space="preserve"> <value>IP address mapping</value> </data> <data name="MouseWithoutBorders_IPAddressMapping.Description" xml:space="preserve"> <value>Resolve machine's IP address using manually entered mappings below.</value> </data> <data name="MouseWithoutBorders_BlockScreenSaverOnOtherMachines.Description" xml:space="preserve"> <value>Prevent screen saver from starting on other machines when user is actively working on this machine.</value> </data> <data name="MouseWithoutBorders_MoveMouseRelatively.Description" xml:space="preserve"> <value>Use this option when remote machine's monitor settings are different, or remote machine has multiple monitors.</value> </data> <data name="MouseWithoutBorders_BlockMouseAtScreenCorners.Description" xml:space="preserve"> <value>To avoid accident machine-switch at screen corners.</value> </data> <data name="MouseWithoutBorders_ShowClipboardAndNetworkStatusMessages.Description" xml:space="preserve"> <value>Show clipboard activities and network status in system tray notifications</value> </data> <data name="MouseWithoutBorders_KeyboardShortcuts_Group.Header" xml:space="preserve"> <value>Keyboard shortcuts</value> <comment>keyboard is the hardware peripheral</comment> </data> <data name="MouseWithoutBorders_AdvancedSettings_Group.Header" xml:space="preserve"> <value>Advanced Settings</value> </data> <data name="MouseWithoutBorders_EasyMouseOption.Header" xml:space="preserve"> <value>Easy Mouse: move between machines by moving the mouse pointer to the screen edges.</value> </data> <data name="MouseWithoutBorders_EasyMouseOption.Description" xml:space="preserve"> <value>Can also be set to move only when pressing Shift or Ctrl.</value> <comment>Shift and Ctrl are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_EasyMouseOption_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_EasyMouseOption_Enabled.Content" xml:space="preserve"> <value>Enabled</value> </data> <data name="MouseWithoutBorders_EasyMouseOption_Ctrl.Content" xml:space="preserve"> <value>Ctrl</value> <comment>This is the Ctrl keyboard key</comment> </data> <data name="MouseWithoutBorders_EasyMouseOption_Shift.Content" xml:space="preserve"> <value>Shift</value> <comment>This is the Shift keyboard key</comment> </data> <data name="MouseWithoutBorders_LockMachinesShortcut.Header" xml:space="preserve"> <value>Shortcut to lock all machines.</value> </data> <data name="MouseWithoutBorders_LockMachinesShortcut.Description" xml:space="preserve"> <value>Hit this hotkey twice to lock all machines. Note: Only the machines which have the same shortcut configured will be locked.</value> </data> <data name="MouseWithoutBorders_ToggleEasyMouseShortcut.Header" xml:space="preserve"> <value>Shortcut to toggle Easy Mouse.</value> <comment>Ctrl and Alt are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_ToggleEasyMouseShortcut.Description" xml:space="preserve"> <value>Only works if EasyMouse is set to Enabled or Disabled.</value> </data> <data name="MouseWithoutBorders_ToggleEasyMouseShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut.Header" xml:space="preserve"> <value>Shortcut to switch between machines. Ctrl+Alt+:</value> <comment>Ctrl and Alt are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut.Description" xml:space="preserve"> <value>Click on Ctrl+Alt+ the chosen option to switch between machines.</value> <comment>Ctrl and Alt are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut_F1.Content" xml:space="preserve"> <value>F1, F2, F3, F4</value> <comment>Don't localize. These are keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut_1.Content" xml:space="preserve"> <value>1, 2, 3, 4</value> <comment>Don't localize. These are keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_LockMachinesShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_ReconnectShortcut.Header" xml:space="preserve"> <value>Shortcut to try reconnecting</value> </data> <data name="MouseWithoutBorders_ReconnectShortcut.Description" xml:space="preserve"> <value>Just in case the connection is lost for any reason.</value> </data> <data name="MouseWithoutBorders_ReconnectShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut.Header" xml:space="preserve"> <value>Shortcut to switch to multiple machine mode.</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut.Description" xml:space="preserve"> <value>Allows controlling all computers at once.</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut_Ctrl3.Content" xml:space="preserve"> <value>Ctrl three times</value> <comment>This is the Ctrl keyboard key</comment> </data> <data name="VideoConference_Enable.Header" xml:space="preserve"> <value>Enable Video Conference Mute</value> </data> <data name="VideoConference.ModuleDescription" xml:space="preserve"> <value>Video Conference Mute is a quick and easy way to do a global "mute" of both your microphone and webcam. Disabling this module or closing PowerToys will unmute the microphone and camera.</value> </data> <data name="VideoConference_CameraAndMicrophoneMuteHotkeyControl_Header.Header" xml:space="preserve"> <value>Mute camera &amp; microphone</value> </data> <data name="VideoConference_MicrophoneMuteHotkeyControl_Header.Header" xml:space="preserve"> <value>Mute microphone</value> </data> <data name="VideoConference_MicrophonePushToTalkHotkeyControl_Header.Header" xml:space="preserve"> <value>Push to talk</value> </data> <data name="VideoConference_CameraMuteHotkeyControl_Header.Header" xml:space="preserve"> <value>Mute camera</value> </data> <data name="VideoConference_SelectedCamera.Header" xml:space="preserve"> <value>Selected camera</value> </data> <data name="VideoConference_SelectedMicrophone.Header" xml:space="preserve"> <value>Selected microphone</value> </data> <data name="VideoConference_PushToReverse.Header" xml:space="preserve"> <value>Push to reverse</value> </data> <data name="VideoConference_PushToReverse.Description" xml:space="preserve"> <value>If enabled, allows both push to talk and push to mute, depending on microphone state</value> </data> <data name="VideoConference_CameraOverlayImagePathHeader.Header" xml:space="preserve"> <value>Image displayed when camera is muted</value> </data> <data name="VideoConference_ToolbarPosition.Header" xml:space="preserve"> <value>Toolbar position</value> </data> <data name="VideoConference_ToolbarPosition_TopCenter.Content" xml:space="preserve"> <value>Top center</value> </data> <data name="VideoConference_ToolbarPosition_TopLeftCorner.Content" xml:space="preserve"> <value>Top left corner</value> </data> <data name="VideoConference_ToolbarPosition_TopRightCorner.Content" xml:space="preserve"> <value>Top right corner</value> </data> <data name="VideoConference_ToolbarPosition_BottomLeftCorner.Content" xml:space="preserve"> <value>Bottom left corner</value> </data> <data name="VideoConference_ToolbarPosition_BottomCenter.Content" xml:space="preserve"> <value>Bottom center</value> </data> <data name="VideoConference_ToolbarPosition_BottomRightCorner.Content" xml:space="preserve"> <value>Bottom right corner</value> </data> <data name="VideoConference_ToolbarMonitor.Header" xml:space="preserve"> <value>Show toolbar on</value> </data> <data name="VideoConference_ToolbarMonitor_Main.Content" xml:space="preserve"> <value>Main monitor</value> </data> <data name="VideoConference_ToolbarMonitor_UnderCursor.Content" xml:space="preserve"> <value>Monitor under cursor</value> </data> <data name="VideoConference_ToolbarMonitor_ActiveWindow.Content" xml:space="preserve"> <value>Active window monitor</value> </data> <data name="VideoConference_ToolbarMonitor_All.Content" xml:space="preserve"> <value>All monitors</value> </data> <data name="VideoConference_ToolbarHide.Header" xml:space="preserve"> <value>Hide toolbar</value> </data> <data name="VideoConference_ToolbarHideMuted.Content" xml:space="preserve"> <value>When both camera and microphone are muted</value> </data> <data name="VideoConference_ToolbarHideNever.Content" xml:space="preserve"> <value>Never</value> </data> <data name="VideoConference_ToolbarHideUnmuted.Content" xml:space="preserve"> <value>When both camera and microphone are unmuted</value> </data> <data name="VideoConference_ToolbarHideTimeout.Content" xml:space="preserve"> <value>After timeout</value> </data> <data name="VideoConference.ModuleTitle" xml:space="preserve"> <value>Video Conference Mute</value> </data> <data name="VideoConference_Camera.Header" xml:space="preserve"> <value>Camera</value> </data> <data name="VideoConference_Camera.Description" xml:space="preserve"> <value>To use this feature, make sure to select PowerToys VideoConference Mute as your camera source in your apps.</value> </data> <data name="VideoConference_Microphone.Header" xml:space="preserve"> <value>Microphone</value> </data> <data name="VideoConference_Toolbar.Header" xml:space="preserve"> <value>Toolbar</value> </data> <data name="VideoConference_Behavior.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="VideoConference_StartupAction.Header" xml:space="preserve"> <value>Startup action</value> </data> <data name="VideoConference_StartupActionNothing.Content" xml:space="preserve"> <value>Nothing</value> </data> <data name="VideoConference_StartupActionUnmute.Content" xml:space="preserve"> <value>Unmute</value> </data> <data name="VideoConference_StartupActionMute.Content" xml:space="preserve"> <value>Mute</value> </data> <data name="VideoConference_Shortcuts.Header" xml:space="preserve"> <value>Shortcuts</value> </data> <data name="VideoConference_CameraOverlayImageAlt.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Camera overlay image preview</value> </data> <data name="VideoConference_CameraOverlayImageBrowse.Content" xml:space="preserve"> <value>Browse</value> </data> <data name="VideoConference_CameraOverlayImageClear.Content" xml:space="preserve"> <value>Clear</value> </data> <data name="Shell_General.Content" xml:space="preserve"> <value>General</value> <comment>Navigation view item name for General</comment> </data> <data name="Shell_Awake.Content" xml:space="preserve"> <value>Awake</value> <comment>Product name: Navigation view item name for Awake</comment> </data> <data name="Shell_PowerLauncher.Content" xml:space="preserve"> <value>PowerToys Run</value> <comment>Product name: Navigation view item name for PowerToys Run</comment> </data> <data name="Shell_PowerRename.Content" xml:space="preserve"> <value>PowerRename</value> <comment>Product name: Navigation view item name for PowerRename</comment> </data> <data name="Shell_ShortcutGuide.Content" xml:space="preserve"> <value>Shortcut Guide</value> <comment>Product name: Navigation view item name for Shortcut Guide</comment> </data> <data name="Shell_PowerPreview.Content" xml:space="preserve"> <value>File Explorer add-ons</value> <comment>Product name: Navigation view item name for File Explorer. Please use File Explorer as in the context of File Explorer in Windows</comment> </data> <data name="Shell_FancyZones.Content" xml:space="preserve"> <value>FancyZones</value> <comment>Product name: Navigation view item name for FancyZones</comment> </data> <data name="Shell_ImageResizer.Content" xml:space="preserve"> <value>Image Resizer</value> <comment>Product name: Navigation view item name for Image Resizer</comment> </data> <data name="Shell_ColorPicker.Content" xml:space="preserve"> <value>Color Picker</value> <comment>Product name: Navigation view item name for Color Picker</comment> </data> <data name="Shell_KeyboardManager.Content" xml:space="preserve"> <value>Keyboard Manager</value> <comment>Product name: Navigation view item name for Keyboard Manager</comment> </data> <data name="Shell_MouseWithoutBorders.Content" xml:space="preserve"> <value>Mouse Without Borders</value> <comment>Product name: Navigation view item name for Mouse Without Borders</comment> </data> <data name="Shell_MouseUtilities.Content" xml:space="preserve"> <value>Mouse utilities</value> <comment>Product name: Navigation view item name for Mouse utilities</comment> </data> <data name="Shell_NavigationMenu_Announce_Collapse" xml:space="preserve"> <value>Navigation closed</value> <comment>Accessibility announcement when the navigation pane collapses</comment> </data> <data name="Shell_NavigationMenu_Announce_Open" xml:space="preserve"> <value>Navigation opened</value> <comment>Accessibility announcement when the navigation pane opens</comment> </data> <data name="KeyboardManager_ConfigHeader.Text" xml:space="preserve"> <value>Current configuration</value> <comment>Keyboard Manager current configuration header</comment> </data> <data name="KeyboardManager.ModuleDescription" xml:space="preserve"> <value>Reconfigure your keyboard by remapping keys and shortcuts</value> <comment>Keyboard Manager page description</comment> </data> <data name="KeyboardManager_EnableToggle.Header" xml:space="preserve"> <value>Enable Keyboard Manager</value> <comment>Keyboard Manager enable toggle header. Do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="KeyboardManager_ProfileDescription.Text" xml:space="preserve"> <value>Select the profile to display the active key remap and shortcuts</value> <comment>Keyboard Manager configuration dropdown description</comment> </data> <data name="KeyboardManager_RemapKeyboardButton.Header" xml:space="preserve"> <value>Remap a key</value> <comment>Keyboard Manager remap keyboard button content</comment> </data> <data name="KeyboardManager_Keys.Header" xml:space="preserve"> <value>Keys</value> <comment>Keyboard Manager remap keyboard header</comment> </data> <data name="KeyboardManager_RemapShortcutsButton.Header" xml:space="preserve"> <value>Remap a shortcut</value> <comment>Keyboard Manager remap shortcuts button</comment> </data> <data name="KeyboardManager_Shortcuts.Header" xml:space="preserve"> <value>Shortcuts</value> <comment>Keyboard Manager remap keyboard header</comment> </data> <data name="KeyboardManager_All_Apps_Description" xml:space="preserve"> <value>All Apps</value> <comment>Should be the same as EditShortcuts_AllApps from keyboard manager editor</comment> </data> <data name="Shortcuts.Header" xml:space="preserve"> <value>Shortcuts</value> </data> <data name="Shortcut.Header" xml:space="preserve"> <value>Shortcut</value> </data> <data name="RemapKeysList.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Current Key Remappings</value> </data> <data name="RemapShortcutsList.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Current Shortcut Remappings</value> </data> <data name="KeyboardManager_RemappedKeysListItem.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Key Remapping</value> <comment>key as in keyboard key</comment> </data> <data name="KeyboardManager_RemappedShortcutsListItem.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Shortcut Remapping</value> </data> <data name="KeyboardManager_RemappedTo.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Remapped to</value> </data> <data name="KeyboardManager_ShortcutRemappedTo.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Remapped to</value> </data> <data name="KeyboardManager_TargetApp.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>For Target Application</value> <comment>What computer application would this be for</comment> </data> <data name="KeyboardManager_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Keyboard Manager</value> <comment>do not loc, product name</comment> </data> <data name="ColorPicker.ModuleDescription" xml:space="preserve"> <value>Quick and simple system-wide color picker.</value> </data> <data name="ColorPicker_EnableColorPicker.Header" xml:space="preserve"> <value>Enable Color Picker</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="ColorPicker_ChangeCursor.Content" xml:space="preserve"> <value>Change cursor when picking a color</value> </data> <data name="PowerLauncher.ModuleDescription" xml:space="preserve"> <value>A quick launcher that has additional capabilities without sacrificing performance.</value> </data> <data name="PowerLauncher_EnablePowerLauncher.Header" xml:space="preserve"> <value>Enable PowerToys Run</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="PowerLauncher_SearchResults.Header" xml:space="preserve"> <value>Search &amp; results</value> </data> <data name="PowerLauncher_SearchResultPreference.Header" xml:space="preserve"> <value>Search result preference</value> </data> <data name="PowerLauncher_UsePinyin.Header" xml:space="preserve"> <value>Use Pinyin</value> </data> <data name="PowerLauncher_UsePinyin.Description" xml:space="preserve"> <value>Experimental: Use Pinyin on the search query. May not work for every plugin.</value> </data> <data name="PowerLauncher_SearchResultPreference_MostRecentlyUsed" xml:space="preserve"> <value>Most recently used</value> </data> <data name="PowerLauncher_SearchResultPreference_AlphabeticalOrder" xml:space="preserve"> <value>Alphabetical order</value> </data> <data name="PowerLauncher_SearchResultPreference_RunningProcessesOpenApplications" xml:space="preserve"> <value>Running processes/open applications</value> </data> <data name="PowerLauncher_SearchTypePreference.Header" xml:space="preserve"> <value>Search type preference</value> </data> <data name="PowerLauncher_SearchTypePreference_ApplicationName" xml:space="preserve"> <value>Application name</value> </data> <data name="PowerLauncher_SearchTypePreference_StringInApplication" xml:space="preserve"> <value>A string that is contained in the application</value> </data> <data name="PowerLauncher_SearchTypePreference_ExecutableName" xml:space="preserve"> <value>Executable name</value> </data> <data name="PowerLauncher_MaximumNumberOfResults.Header" xml:space="preserve"> <value>Number of results shown before scrolling</value> </data> <data name="PowerLauncher_OpenPowerLauncher.Header" xml:space="preserve"> <value>Open PowerToys Run</value> </data> <data name="PowerLauncher_OpenFileLocation.Header" xml:space="preserve"> <value>Open file location</value> </data> <data name="PowerLauncher_CopyPathLocation.Header" xml:space="preserve"> <value>Copy path location</value> </data> <data name="PowerLauncher_OpenConsole.Header" xml:space="preserve"> <value>Open console</value> <comment>console refers to Windows command prompt</comment> </data> <data name="PowerLauncher_OverrideWinRKey.Content" xml:space="preserve"> <value>Override Win+R shortcut</value> </data> <data name="PowerLauncher_OverrideWinSKey.Content" xml:space="preserve"> <value>Override Win+S shortcut</value> </data> <data name="PowerLauncher_IgnoreHotkeysInFullScreen.Content" xml:space="preserve"> <value>Ignore shortcuts in fullscreen mode</value> </data> <data name="PowerLauncher_UseCentralizedKeyboardHook.Header" xml:space="preserve"> <value>Use centralized keyboard hook</value> </data> <data name="PowerLauncher_UseCentralizedKeyboardHook.Description" xml:space="preserve"> <value>Try this if there are issues with the shortcut (PowerToys Run might not get focus when triggered from an elevated window)</value> </data> <data name="PowerLauncher_ClearInputOnLaunch.Content" xml:space="preserve"> <value>Clear the previous query on launch</value> </data> <data name="PowerLauncher_TabSelectsContextButtons.Header" xml:space="preserve"> <value>Tab through context buttons</value> </data> <data name="PowerLauncher_TabSelectsContextButtons.Description" xml:space="preserve"> <value>Pressing tab will first select through the available context buttons of the current selection before moving onto the next result</value> </data> <data name="PowerLauncher_GenerateThumbnailsFromFiles.Header" xml:space="preserve"> <value>Generate thumbnails from files</value> </data> <data name="PowerLauncher_GenerateThumbnailsFromFiles.Description" xml:space="preserve"> <value>Results will try to generate thumbnails for files. Disabling this setting may increase stability and speed</value> </data> <data name="PowerLauncher_SearchQueryResultsWithDelay.Header" xml:space="preserve"> <value>Input Smoothing</value> <comment>This is about adding a delay to wait for more input before executing a search</comment> </data> <data name="PowerLauncher_SearchQueryResultsWithDelay.Description" xml:space="preserve"> <value>Wait for more input before searching. This reduces interface jumpiness and system load.</value> </data> <data name="PowerLauncher_FastSearchInputDelayMs.Header" xml:space="preserve"> <value>Immediate plugins</value> </data> <data name="PowerLauncher_FastSearchInputDelayMs.Description" xml:space="preserve"> <value>Affects the plugins that make the UI wait for their results by this amount. Recommended: 30-50 ms.</value> </data> <data name="PowerLauncher_SlowSearchInputDelayMs.Header" xml:space="preserve"> <value>Background execution plugins</value> </data> <data name="PowerLauncher_SlowSearchInputDelayMs.Description" xml:space="preserve"> <value>Affects the plugins that execute in the background by this amount. Recommended: 100-150 ms.</value> </data> <data name="PowerLauncher_SearchInputDelayMs.Header" xml:space="preserve"> <value>Fast plugin throttle (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="KeyboardManager_KeysMappingLayoutRightHeader.Text" xml:space="preserve"> <value>To:</value> <comment>Keyboard Manager mapping keys view right header</comment> </data> <data name="Appearance_GroupSettings.Text" xml:space="preserve"> <value>Appearance</value> </data> <data name="Fancyzones_ImageHyperlinkToDocs.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>FancyZones windows</value> <comment>do not loc the Product name</comment> </data> <data name="FancyZones.ModuleDescription" xml:space="preserve"> <value>Create window layouts to help make multi-tasking easy.</value> <comment>windows refers to application windows</comment> </data> <data name="FancyZones_DisplayOrWorkAreaChangeMoveWindowsCheckBoxControl.Content" xml:space="preserve"> <value>Keep windows in their zones when the screen resolution or work area changes</value> <comment>windows refers to application windows</comment> </data> <data name="FancyZones_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable FancyZones</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="FancyZones_ExcludeApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="FancyZones_ExcludeApps.Description" xml:space="preserve"> <value>Excludes an application from snapping to zones and will only react to Windows Snap - add one application name per line</value> </data> <data name="FancyZones_HighlightOpacity.Header" xml:space="preserve"> <value>Opacity (%)</value> </data> <data name="FancyZones_HotkeyEditorControl.Header" xml:space="preserve"> <value>Open layout editor</value> <comment>Shortcut to launch the FancyZones layout editor application</comment> </data> <data name="FancyZones_WindowSwitching_GroupSettings.Header" xml:space="preserve"> <value>Switch between windows in the current zone</value> </data> <data name="FancyZones_HotkeyNextTabControl.Header" xml:space="preserve"> <value>Next window</value> </data> <data name="FancyZones_HotkeyPrevTabControl.Header" xml:space="preserve"> <value>Previous window</value> </data> <data name="SettingsPage_SetShortcut.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Shortcut setting</value> </data> <data name="SettingsPage_SetShortcut_Glyph.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Information Symbol</value> </data> <data name="FancyZones_LaunchEditorButtonControl.Header" xml:space="preserve"> <value>Launch layout editor</value> <comment>launches the FancyZones layout editor application</comment> </data> <data name="FancyZones_LaunchEditorButtonControl.Description" xml:space="preserve"> <value>Set and manage your layouts</value> <comment>launches the FancyZones layout editor application</comment> </data> <data name="FancyZones_MakeDraggedWindowTransparentCheckBoxControl.Content" xml:space="preserve"> <value>Make dragged window transparent</value> </data> <data name="FancyZones_MouseDragCheckBoxControl_Header.Content" xml:space="preserve"> <value>Use a non-primary mouse button to toggle zone activation</value> </data> <data name="FancyZones_MouseMiddleClickSpanningMultipleZonesCheckBoxControl_Header.Content" xml:space="preserve"> <value>Use middle-click mouse button to toggle multiple zones spanning</value> </data> <data name="FancyZones_MoveWindowsAcrossAllMonitorsCheckBoxControl.Content" xml:space="preserve"> <value>Move windows between zones across all monitors</value> </data> <data name="FancyZones_OverrideSnapHotkeys.Header" xml:space="preserve"> <value>Override Windows Snap</value> </data> <data name="FancyZones_OverrideSnapHotkeys.Description" xml:space="preserve"> <value>This overrides the Windows Snap shortcut (Win + arrow) to move windows between zones</value> </data> <data name="FancyZones_ShiftDragCheckBoxControl_Header.Content" xml:space="preserve"> <value>Hold Shift key to activate zones while dragging a window</value> </data> <data name="FancyZones_ActivationNoShiftDrag" xml:space="preserve"> <value>Drag windows to activate zones</value> </data> <data name="FancyZones_ShowZonesOnAllMonitorsCheckBoxControl.Content" xml:space="preserve"> <value>Show zones on all monitors while dragging a window</value> </data> <data name="FancyZones_AppLastZoneMoveWindows.Content" xml:space="preserve"> <value>Move newly created windows to their last known zone</value> <comment>windows refers to application windows</comment> </data> <data name="FancyZones_OpenWindowOnActiveMonitor.Content" xml:space="preserve"> <value>Move newly created windows to the current active monitor (Experimental)</value> </data> <data name="FancyZones_UseCursorPosEditorStartupScreen.Header" xml:space="preserve"> <value>Launch editor on the display</value> </data> <data name="FancyZones_UseCursorPosEditorStartupScreen.Description" xml:space="preserve"> <value>When using multiple displays</value> </data> <data name="FancyZones_LaunchPositionMouse.Content" xml:space="preserve"> <value>Where the mouse pointer is</value> </data> <data name="FancyZones_LaunchPositionScreen.Content" xml:space="preserve"> <value>With active focus</value> </data> <data name="FancyZones_ZoneBehavior_GroupSettings.Header" xml:space="preserve"> <value>Zone behavior</value> </data> <data name="FancyZones_ZoneBehavior_GroupSettings.Description" xml:space="preserve"> <value>Manage how zones behave when using FancyZones</value> </data> <data name="FancyZones_Zones.Header" xml:space="preserve"> <value>Zones</value> </data> <data name="FancyZones_ZoneHighlightColor.Header" xml:space="preserve"> <value>Highlight color</value> </data> <data name="FancyZones_ZoneSetChangeMoveWindows.Content" xml:space="preserve"> <value>During zone layout changes, windows assigned to a zone will match new size/positions</value> </data> <data name="AttributionTitle.Text" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="General.ModuleTitle" xml:space="preserve"> <value>General</value> </data> <data name="GeneralPage_CheckForUpdates.Content" xml:space="preserve"> <value>Check for updates</value> </data> <data name="General_SettingsBackupAndRestoreLocationText.Header" xml:space="preserve"> <value>Location</value> </data> <data name="General_SettingsBackupAndRestore_ButtonBackup.Content" xml:space="preserve"> <value>Backup</value> </data> <data name="General_SettingsBackupInfo_FileNameHeader.Text" xml:space="preserve"> <value>File name:</value> </data> <data name="General_SettingsBackupAndRestore_LinkRefresh.Text" xml:space="preserve"> <value>Refresh</value> </data> <data name="General_SettingsBackupAndRestore_ButtonRestore.Content" xml:space="preserve"> <value>Restore</value> </data> <data name="General_SettingsBackupAndRestore_ButtonSelectLocation.Text" xml:space="preserve"> <value>Select folder</value> </data> <data name="GeneralPage_UpdateNow.Content" xml:space="preserve"> <value>Update now</value> </data> <data name="GeneralPage_PrivacyStatement_URL.Text" xml:space="preserve"> <value>Privacy statement</value> </data> <data name="GeneralPage_ReportAbug.Text" xml:space="preserve"> <value>Report a bug</value> <comment>Report an issue inside powertoys</comment> </data> <data name="GeneralPage_RequestAFeature_URL.Text" xml:space="preserve"> <value>Request a feature</value> <comment>Tell our team what we should build</comment> </data> <data name="GeneralPage_RestartAsAdmin_Button.Content" xml:space="preserve"> <value>Restart PowerToys as administrator</value> <comment>running PowerToys as a higher level user, account is typically referred to as an admin / administrator</comment> </data> <data name="GeneralPage_RunAtStartUp.Header" xml:space="preserve"> <value>Run at startup</value> </data> <data name="GeneralPage_RunAtStartUp.Description" xml:space="preserve"> <value>PowerToys will launch automatically</value> </data> <data name="PowerRename.ModuleDescription" xml:space="preserve"> <value>A Windows Shell extension for more advanced bulk renaming using search &amp; replace or regular expressions.</value> </data> <data name="PowerRename_ShellIntegration.Header" xml:space="preserve"> <value>Shell integration</value> <comment>This refers to directly integrating in with Windows</comment> </data> <data name="PowerRename_Toggle_Enable.Header" xml:space="preserve"> <value>Enable PowerRename</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="RadioButtons_Name_Theme.Text" xml:space="preserve"> <value>Settings theme</value> </data> <data name="PowerRename_Toggle_HideIcon.Content" xml:space="preserve"> <value>Hide icon in context menu</value> </data> <data name="PowerRename_Toggle_ContextMenu.Header" xml:space="preserve"> <value>Show PowerRename in</value> </data> <data name="PowerRename_Toggle_StandardContextMenu.Content" xml:space="preserve"> <value>Default and extended context menu</value> </data> <data name="PowerRename_Toggle_ExtendedContextMenu.Content" xml:space="preserve"> <value>Extended context menu only</value> </data> <data name="ExtendedContextMenuInfo.Title" xml:space="preserve"> <value>Press Shift + right-click on files to open the extended context menu</value> </data> <data name="PowerRename_Toggle_MaxDispListNum.Header" xml:space="preserve"> <value>Maximum number of items</value> </data> <data name="PowerRename_Toggle_RestoreFlagsOnLaunch.Header" xml:space="preserve"> <value>Show recently used strings</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_MD.Header" xml:space="preserve"> <value>Markdown</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_MD.Description" xml:space="preserve"> <value>.md, .markdown, .mdown, .mkdn, .mkd, .mdwn, .mdtxt, .mdtext</value> <comment>File extensions, should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_Monaco.Header" xml:space="preserve"> <value>Source code files (Monaco)</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_Monaco.Description" xml:space="preserve"> <value>.cpp, .py, .json, .xml, .csproj, ...</value> <comment>File extensions should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_SVG.Header" xml:space="preserve"> <value>Scalable Vector Graphics</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_SVG.Description" xml:space="preserve"> <value>.svg</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_Preview_SVG_Color_Mode.Header" xml:space="preserve"> <value>Color mode</value> </data> <data name="FileExplorerPreview_Preview_SVG_Color_Mode_Default.Content" xml:space="preserve"> <value>Windows default</value> </data> <data name="FileExplorerPreview_Preview_SVG_Color_Solid_Color.Content" xml:space="preserve"> <value>Solid color</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade.Content" xml:space="preserve"> <value>Checkered pattern</value> </data> <data name="FileExplorerPreview_Preview_SVG_Background_Color.Header" xml:space="preserve"> <value>Color</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_Mode.Header" xml:space="preserve"> <value>Checkered shade</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_1.Content" xml:space="preserve"> <value>Light</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_2.Content" xml:space="preserve"> <value>Medium</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_3.Content" xml:space="preserve"> <value>Dark</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_PDF.Header" xml:space="preserve"> <value>Portable Document Format</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_PDF.Description" xml:space="preserve"> <value>.pdf</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_SVG.Header" xml:space="preserve"> <value>Scalable Vector Graphics</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_SVG.Description" xml:space="preserve"> <value>.svg</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_STL.Header" xml:space="preserve"> <value>Stereolithography</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_STL.Description" xml:space="preserve"> <value>.stl</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_Color_Thumbnail_STL.Header" xml:space="preserve"> <value>Color</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_QOI.Header" xml:space="preserve"> <value>Quite Ok Image</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_QOI.Description" xml:space="preserve"> <value>.qoi</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_QOI.Header" xml:space="preserve"> <value>Quite OK Image</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_QOI.Description" xml:space="preserve"> <value>.qoi</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_PDF.Header" xml:space="preserve"> <value>Portable Document Format</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_PDF.Description" xml:space="preserve"> <value>.pdf</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview.ModuleDescription" xml:space="preserve"> <value>These settings allow you to manage your Windows File Explorer custom preview handlers.</value> </data> <data name="PowerRename_AutoCompleteHeader.Header" xml:space="preserve"> <value>Auto-complete</value> </data> <data name="OpenSource_Notice.Text" xml:space="preserve"> <value>Open-source notice</value> </data> <data name="PowerRename_Toggle_AutoComplete.Header" xml:space="preserve"> <value>Enable auto-complete for the search &amp; replace fields</value> </data> <data name="FancyZones_BorderColor.Header" xml:space="preserve"> <value>Border color</value> </data> <data name="FancyZones_InActiveColor.Header" xml:space="preserve"> <value>Inactive color</value> </data> <data name="ShortcutGuide.ModuleDescription" xml:space="preserve"> <value>Shows a help overlay with Windows shortcuts.</value> </data> <data name="ShortcutGuide_PressTimeForGlobalWindowsShortcuts.Header" xml:space="preserve"> <value>Press duration before showing global Windows shortcuts (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="ShortcutGuide_ActivationMethod.Header" xml:space="preserve"> <value>Activation method</value> </data> <data name="ShortcutGuide_ActivationMethod.Description" xml:space="preserve"> <value>Use a shortcut or press the Windows key for some time to activate</value> </data> <data name="Radio_ShortcutGuide_ActivationMethod_CustomizedShortcut.Content" xml:space="preserve"> <value>Custom shortcut</value> </data> <data name="Radio_ShortcutGuide_ActivationMethod_LongPressWindowsKey.Content" xml:space="preserve"> <value>Hold down Windows key</value> </data> <data name="ShortcutGuide_PressWinKeyWarning.Title" xml:space="preserve"> <value>In some edge cases Shortcut Guide might not function correctly when using this activation method</value> </data> <data name="Appearance_Behavior.Header" xml:space="preserve"> <value>Appearance &amp; behavior</value> </data> <data name="General_SettingsBackupAndRestoreTitle.Header" xml:space="preserve"> <value>Backup &amp; restore</value> </data> <data name="General_SettingsBackupAndRestore.Header" xml:space="preserve"> <value>Backup and restore your settings</value> </data> <data name="General_SettingsBackupAndRestore.Description" xml:space="preserve"> <value>PowerToys will restart automatically if needed</value> </data> <data name="ShortcutGuide_Enable.Header" xml:space="preserve"> <value>Enable Shortcut Guide</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="ShortcutGuide_OverlayOpacity.Header" xml:space="preserve"> <value>Background opacity (%)</value> </data> <data name="ShortcutGuide_DisabledApps.Header" xml:space="preserve"> <value>Exclude apps</value> </data> <data name="ShortcutGuide_DisabledApps.Description" xml:space="preserve"> <value>Turns off Shortcut Guide when these applications have focus - add one application name per line</value> </data> <data name="ShortcutGuide_DisabledApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> <comment>Don't translate outlook.exe</comment> </data> <data name="ImageResizer_CustomSizes.Header" xml:space="preserve"> <value>Image sizes</value> </data> <data name="ImageResizer_Presets.Header" xml:space="preserve"> <value>Presets</value> </data> <data name="ImageResizer_Presets.Description" xml:space="preserve"> <value>Manage preset sizes that can be used in the editor</value> </data> <data name="ImageResizer_FilenameFormatHeader.Description" xml:space="preserve"> <value>This format is used as the filename for resized images</value> </data> <data name="ImageResizer.ModuleDescription" xml:space="preserve"> <value>Lets you resize images by right-clicking.</value> </data> <data name="ImageResizer_EnableToggle.Header" xml:space="preserve"> <value>Enable Image Resizer</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="ImagesSizesListView.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Image Size</value> </data> <data name="ImageResizer_Configurations.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Configurations</value> </data> <data name="ImageResizer_Name.Header" xml:space="preserve"> <value>Name</value> </data> <data name="ImageResizer_Fit.Header" xml:space="preserve"> <value>Fit</value> </data> <data name="ImageResizer_Width.Header" xml:space="preserve"> <value>Width</value> </data> <data name="ImageResizer_Height.Header" xml:space="preserve"> <value>Height</value> </data> <data name="ImageResizer_Size.Header" xml:space="preserve"> <value>Unit</value> </data> <data name="RemoveButton.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Remove</value> <comment>Removes a user defined setting group for Image Resizer</comment> </data> <data name="RemoveItem.Text" xml:space="preserve"> <value>Delete</value> </data> <data name="ImageResizer_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Image Resizer</value> </data> <data name="ImageResizer_AddSizeButton.Content" xml:space="preserve"> <value>Add new size</value> </data> <data name="ImageResizer_SaveSizeButton.Label" xml:space="preserve"> <value>Save sizes</value> </data> <data name="ImageResizer_Encoding.Header" xml:space="preserve"> <value>JPEG quality level (%)</value> </data> <data name="ImageResizer_PNGInterlacing.Header" xml:space="preserve"> <value>PNG interlacing</value> </data> <data name="ImageResizer_TIFFCompression.Header" xml:space="preserve"> <value>TIFF compression</value> </data> <data name="File.Header" xml:space="preserve"> <value>File</value> <comment>as in a computer file</comment> </data> <data name="Default.Content" xml:space="preserve"> <value>Default</value> </data> <data name="ImageResizer_ENCODER_TIFF_CCITT3.Content" xml:space="preserve"> <value>CCITT3</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_CCITT4.Content" xml:space="preserve"> <value>CCITT4</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_Default.Content" xml:space="preserve"> <value>Default</value> </data> <data name="ImageResizer_ENCODER_TIFF_LZW.Content" xml:space="preserve"> <value>LZW</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_None.Content" xml:space="preserve"> <value>None</value> </data> <data name="ImageResizer_ENCODER_TIFF_RLE.Content" xml:space="preserve"> <value>RLE</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_Zip.Content" xml:space="preserve"> <value>Zip</value> <comment>do not loc</comment> </data> <data name="ImageResizer_FallbackEncoder_BMP.Content" xml:space="preserve"> <value>BMP encoder</value> </data> <data name="ImageResizer_FallbackEncoder_GIF.Content" xml:space="preserve"> <value>GIF encoder</value> </data> <data name="ImageResizer_FallbackEncoder_JPEG.Content" xml:space="preserve"> <value>JPEG encoder</value> </data> <data name="ImageResizer_FallbackEncoder_PNG.Content" xml:space="preserve"> <value>PNG encoder</value> </data> <data name="ImageResizer_FallbackEncoder_TIFF.Content" xml:space="preserve"> <value>TIFF encoder</value> </data> <data name="ImageResizer_FallbackEncoder_WMPhoto.Content" xml:space="preserve"> <value>WMPhoto encoder</value> </data> <data name="ImageResizer_Sizes_Fit_Fill.Content" xml:space="preserve"> <value>Fill</value> <comment>Refers to filling an image into a certain size. It could overflow</comment> </data> <data name="ImageResizer_Sizes_Fit_Fill_ThirdPersonSingular.Text" xml:space="preserve"> <value>Fill</value> <comment>Refers to filling an image into a certain size. It could overflow</comment> </data> <data name="ImageResizer_Sizes_Fit_Fit.Content" xml:space="preserve"> <value>Fit</value> <comment>Refers to fitting an image into a certain size. It won't overflow</comment> </data> <data name="ImageResizer_Sizes_Fit_Stretch.Content" xml:space="preserve"> <value>Stretch</value> <comment>Refers to stretching an image into a certain size. Won't overflow but could distort.</comment> </data> <data name="ImageResizer_Sizes_Units_CM.Content" xml:space="preserve"> <value>Centimeters</value> </data> <data name="ImageResizer_Sizes_Units_Inches.Content" xml:space="preserve"> <value>Inches</value> </data> <data name="ImageResizer_Sizes_Units_Percent.Content" xml:space="preserve"> <value>Percent</value> </data> <data name="ImageResizer_Sizes_Units_Pixels.Content" xml:space="preserve"> <value>Pixels</value> </data> <data name="Off.Content" xml:space="preserve"> <value>Off</value> </data> <data name="On.Content" xml:space="preserve"> <value>On</value> </data> <data name="GeneralPage_ToggleSwitch_AlwaysRunElevated_Link.Content" xml:space="preserve"> <value>Learn more about administrator mode</value> </data> <data name="GeneralPage_ToggleSwitch_AutoDownloadUpdates.Header" xml:space="preserve"> <value>Download updates automatically</value> </data> <data name="GeneralPage_ToggleSwitch_AutoDownloadUpdates.Description" xml:space="preserve"> <value>Except on metered connections</value> </data> <data name="GeneralPage_ToggleSwitch_RunningAsAdminNote.Text" xml:space="preserve"> <value>Currently running as administrator</value> </data> <data name="GeneralSettings_AlwaysRunAsAdminText.Header" xml:space="preserve"> <value>Always run as administrator</value> </data> <data name="GeneralSettings_AlwaysRunAsAdminText.Description" xml:space="preserve"> <value>You need to run as administrator to use this setting</value> </data> <data name="GeneralSettings_RunningAsUserText" xml:space="preserve"> <value>Running as user</value> </data> <data name="GeneralSettings_RunningAsAdminText" xml:space="preserve"> <value>Running as administrator</value> </data> <data name="FancyZones.ModuleTitle" xml:space="preserve"> <value>FancyZones</value> </data> <data name="FileExplorerPreview.ModuleTitle" xml:space="preserve"> <value>File Explorer</value> </data> <data name="FileExplorerPreview_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>File Explorer</value> <comment>Use same translation as Windows does for File Explorer</comment> </data> <data name="ImageResizer.ModuleTitle" xml:space="preserve"> <value>Image Resizer</value> </data> <data name="KeyboardManager.ModuleTitle" xml:space="preserve"> <value>Keyboard Manager</value> </data> <data name="ColorPicker.ModuleTitle" xml:space="preserve"> <value>Color Picker</value> </data> <data name="PowerLauncher.ModuleTitle" xml:space="preserve"> <value>PowerToys Run</value> </data> <data name="PowerToys_Run_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>PowerToys Run</value> </data> <data name="PowerRename.ModuleTitle" xml:space="preserve"> <value>PowerRename</value> <comment>do not loc the product name</comment> </data> <data name="PowerRename_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>PowerRename</value> <comment>do not loc</comment> </data> <data name="ShortcutGuide.ModuleTitle" xml:space="preserve"> <value>Shortcut Guide</value> </data> <data name="Shortcut_Guide_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Shortcut Guide</value> </data> <data name="General_Repository.Text" xml:space="preserve"> <value>GitHub repository</value> </data> <data name="General_Version.Header" xml:space="preserve"> <value>Version</value> </data> <data name="General_VersionLastChecked.Text" xml:space="preserve"> <value>Last checked: </value> </data> <data name="General_SettingsBackupInfo_DateHeader.Text" xml:space="preserve"> <value>Created at:</value> </data> <data name="General_SettingsBackupAndRestoreStatusInfo.Header" xml:space="preserve"> <value>Backup information</value> </data> <data name="General_SettingsBackupInfo_SourceHeader.Text" xml:space="preserve"> <value>Source machine:</value> </data> <data name="General_SettingsBackupInfo_StatusHeader.Text" xml:space="preserve"> <value>Status:</value> </data> <data name="General_Version.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Version</value> </data> <data name="Admin_mode.Header" xml:space="preserve"> <value>Administrator mode</value> </data> <data name="FancyZones_RestoreSize.Content" xml:space="preserve"> <value>Restore the original size of windows when unsnapping</value> </data> <data name="ImageResizer_FallBackEncoderText.Header" xml:space="preserve"> <value>Fallback encoder</value> </data> <data name="ImageResizer_FileFormatDescription.Text" xml:space="preserve"> <value>The following parameters can be used:</value> </data> <data name="ImageResizer_FilenameFormatHeader.Header" xml:space="preserve"> <value>Filename format</value> </data> <data name="ImageResizer_FileModifiedDate.Header" xml:space="preserve"> <value>File modified timestamp</value> </data> <data name="ImageResizer_FileModifiedDate.Description" xml:space="preserve"> <value>Used as the 'modified timestamp' in the file properties</value> </data> <data name="ImageResizer_UseOriginalDate.Content" xml:space="preserve"> <value>Original file timestamp</value> </data> <data name="ImageResizer_UseResizeDate.Content" xml:space="preserve"> <value>Timestamp of resize action</value> </data> <data name="Encoding.Header" xml:space="preserve"> <value>Encoding</value> </data> <data name="KeyboardManager_RemapKeyboardButton.Description" xml:space="preserve"> <value>Remap keys to other keys or shortcuts</value> </data> <data name="KeyboardManager_RemapShortcutsButton.Description" xml:space="preserve"> <value>Remap shortcuts to other shortcuts or keys for all or specific applications</value> </data> <data name="General.ModuleDescription" xml:space="preserve"> <value>Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. Made with 💗 by Microsoft and the PowerToys community.</value> <comment>Windows refers to the OS</comment> </data> <data name="FancyZones_SpanZonesAcrossMonitors.Header" xml:space="preserve"> <value>Allow zones to span across monitors</value> </data> <data name="ImageResizer_Formatting_ActualHeight.Text" xml:space="preserve"> <value>Actual height</value> </data> <data name="ImageResizer_Formatting_ActualWidth.Text" xml:space="preserve"> <value>Actual width</value> </data> <data name="ImageResizer_Formatting_Filename.Text" xml:space="preserve"> <value>Original filename</value> </data> <data name="ImageResizer_Formatting_SelectedHeight.Text" xml:space="preserve"> <value>Selected height</value> </data> <data name="ImageResizer_Formatting_SelectedWidth.Text" xml:space="preserve"> <value>Selected width</value> </data> <data name="ImageResizer_Formatting_Sizename.Text" xml:space="preserve"> <value>Size name</value> </data> <data name="FancyZones_MoveWindowsBasedOnPositionCheckBoxControl.Content" xml:space="preserve"> <value>Move windows based on their position</value> <comment>Windows refers to application windows</comment> </data> <data name="GeneralSettings_NewVersionIsAvailable" xml:space="preserve"> <value>New update available</value> </data> <data name="GeneralSettings_VersionIsLatest" xml:space="preserve"> <value>PowerToys is up to date.</value> </data> <data name="FileExplorerPreview_IconThumbnail_GroupSettings.Header" xml:space="preserve"> <value>Thumbnail icon Preview</value> </data> <data name="FileExplorerPreview_IconThumbnail_GroupSettings.Description" xml:space="preserve"> <value>Select the file types for which thumbnail previews must be rendered.</value> </data> <data name="FileExplorerPreview_PreviewPane.Header" xml:space="preserve"> <value>Preview Pane</value> </data> <data name="FileExplorerPreview_PreviewPane.Description" xml:space="preserve"> <value>Select the file types which must be rendered in the Preview Pane. Ensure that Preview Pane is open by toggling the view with Alt + P in File Explorer.</value> <comment>Preview Pane and File Explorer are app/feature names in Windows. 'Alt + P' is a shortcut</comment> </data> <data name="FileExplorerPreview_RunAsAdminRequired.Title" xml:space="preserve"> <value>You need to run as administrator to modify these settings.</value> </data> <data name="FileExplorerPreview_RebootRequired.Title" xml:space="preserve"> <value>A reboot may be required for changes to these settings to take effect</value> </data> <data name="FileExplorerPreview_PreviewHandlerOutlookIncompatibility.Title" xml:space="preserve"> <value>Enabling the preview handlers will override other preview handlers already installed - there have been reports of incompatibility between Outlook and the PDF Preview Handler.</value> <comment>Outlook is the name of a Microsoft product</comment> </data> <data name="FileExplorerPreview_ThumbnailsMightNotAppearOnRemoteFolders.Title" xml:space="preserve"> <value>Thumbnails might not appear on paths managed by cloud storage solutions like OneDrive, since these solutions may get their thumbnails from the cloud instead of generating them locally.</value> <comment>OneDrive is the name of a Microsoft product</comment> </data> <data name="FancyZones_ExcludeApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> <comment>Don't translate outlook.exe</comment> </data> <data name="ImageResizer_FilenameFormatPlaceholder.PlaceholderText" xml:space="preserve"> <value>Example: %1 (%2)</value> </data> <data name="ImageResizer_FilenameParameters.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Filename parameters</value> </data> <data name="Radio_Theme_Dark.Content" xml:space="preserve"> <value>Dark</value> <comment>Dark refers to color, not weight</comment> </data> <data name="Radio_Theme_Light.Content" xml:space="preserve"> <value>Light</value> <comment>Light refers to color, not weight</comment> </data> <data name="Radio_Theme_Default.Content" xml:space="preserve"> <value>Windows default</value> <comment>Windows refers to the Operating system</comment> </data> <data name="Windows_Color_Settings.Content" xml:space="preserve"> <value>Windows color settings</value> <comment>Windows refers to the Operating system</comment> </data> <data name="ColorPicker_CopiedColorRepresentation.Header" xml:space="preserve"> <value>Default color format</value> </data> <data name="ColorPickerFirst.Content" xml:space="preserve"> <value>Pick a color and open editor</value> </data> <data name="EditorFirst.Content" xml:space="preserve"> <value>Open editor</value> </data> <data name="ColorPickerOnly.Content" xml:space="preserve"> <value>Only pick a color</value> </data> <data name="ColorPicker_ActivationAction.Header" xml:space="preserve"> <value>Activation behavior</value> </data> <data name="ColorFormats.Header" xml:space="preserve"> <value>Picker behavior</value> </data> <data name="ColorPicker_CopiedColorRepresentation.Description" xml:space="preserve"> <value>This format will be copied to your clipboard</value> </data> <data name="KBM_KeysCannotBeRemapped.Text" xml:space="preserve"> <value>Learn more about remapping limitations</value> <comment>This is a link that will discuss what is and is not possible for Keyboard manager to remap</comment> </data> <data name="FancyZones_Editor_GroupSettings.Header" xml:space="preserve"> <value>Editor</value> <comment>refers to the FancyZones editor</comment> </data> <data name="FancyZones_WindowBehavior_GroupSettings.Header" xml:space="preserve"> <value>Window behavior</value> </data> <data name="FancyZones_WindowBehavior_GroupSettings.Description" xml:space="preserve"> <value>Manage how windows behave when using FancyZones</value> </data> <data name="FancyZones_Windows.Header" xml:space="preserve"> <value>Windows</value> <comment>Do translate: refers to a set of application windows, not the product name</comment> </data> <data name="PowerRename_BehaviorHeader.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="PowerRename_Toggle_UseBoostLib.Header" xml:space="preserve"> <value>Use Boost library</value> <comment>Boost is a product name, should not be translated</comment> </data> <data name="PowerRename_Toggle_UseBoostLib.Description" xml:space="preserve"> <value>Provides extended features but may use different regex syntax</value> <comment>Boost is a product name, should not be translated</comment> </data> <data name="MadeWithOssLove.Text" xml:space="preserve"> <value>Made with 💗 by Microsoft and the PowerToys community.</value> </data> <data name="ColorPicker_ColorFormats.Header" xml:space="preserve"> <value>Color formats</value> </data> <data name="ColorPicker_ColorFormats.Description" xml:space="preserve"> <value>Configure the color formats (edit, delete, hide, reorder them)</value> </data> <data name="MoveUp.Text" xml:space="preserve"> <value>Move up</value> </data> <data name="MoveDown.Text" xml:space="preserve"> <value>Move down</value> </data> <data name="ColorPickerAddNewFormat.Content" xml:space="preserve"> <value>Add new format</value> </data> <data name="NewColorFormat.Header" xml:space="preserve"> <value>Format</value> </data> <data name="NewColorName.Header" xml:space="preserve"> <value>Name</value> </data> <data name="AddCustomColorFormat" xml:space="preserve"> <value>Add custom color format</value> </data> <data name="ColorFormatSave" xml:space="preserve"> <value>Save</value> </data> <data name="EditCustomColorFormat" xml:space="preserve"> <value>Edit custom color format</value> </data> <data name="ColorFormatUpdate" xml:space="preserve"> <value>Update</value> </data> <data name="CustomColorFormatDefaultName" xml:space="preserve"> <value>My Format</value> </data> <data name="ColorFormatDialog.SecondaryButtonText" xml:space="preserve"> <value>Cancel</value> </data> <data name="ColorFormatEditorHelpline1.Text" xml:space="preserve"> <value>The following parameters can be used:</value> </data> <data name="Help_red" xml:space="preserve"> <value>red</value> </data> <data name="Help_green" xml:space="preserve"> <value>green</value> </data> <data name="Help_blue" xml:space="preserve"> <value>blue</value> </data> <data name="Help_alpha" xml:space="preserve"> <value>alpha</value> </data> <data name="Help_cyan" xml:space="preserve"> <value>cyan</value> </data> <data name="Help_magenta" xml:space="preserve"> <value>magenta</value> </data> <data name="Help_yellow" xml:space="preserve"> <value>yellow</value> </data> <data name="Help_black_key" xml:space="preserve"> <value>black key</value> </data> <data name="Help_hue" xml:space="preserve"> <value>hue</value> </data> <data name="Help_hueNat" xml:space="preserve"> <value>hue (natural)</value> </data> <data name="Help_saturationI" xml:space="preserve"> <value>saturation (HSI)</value> </data> <data name="Help_saturationL" xml:space="preserve"> <value>saturation (HSL)</value> </data> <data name="Help_saturationB" xml:space="preserve"> <value>saturation (HSB)</value> </data> <data name="Help_brightness" xml:space="preserve"> <value>brightness</value> </data> <data name="Help_intensity" xml:space="preserve"> <value>intensity</value> </data> <data name="Help_lightnessNat" xml:space="preserve"> <value>lightness (nat)</value> </data> <data name="Help_lightnessCIE" xml:space="preserve"> <value>lightness (CIE)</value> </data> <data name="Help_value" xml:space="preserve"> <value>value</value> </data> <data name="Help_whiteness" xml:space="preserve"> <value>whiteness</value> </data> <data name="Help_blackness" xml:space="preserve"> <value>blackness</value> </data> <data name="Help_chromaticityA" xml:space="preserve"> <value>chromaticityA</value> </data> <data name="Help_chromaticityB" xml:space="preserve"> <value>chromaticityB</value> </data> <data name="Help_X_value" xml:space="preserve"> <value>X value</value> </data> <data name="Help_Y_value" xml:space="preserve"> <value>Y value</value> </data> <data name="Help_Z_value" xml:space="preserve"> <value>Z value</value> </data> <data name="Help_decimal_value_RGB" xml:space="preserve"> <value>decimal value (RGB)</value> </data> <data name="Help_decimal_value_BGR" xml:space="preserve"> <value>decimal value (BGR)</value> </data> <data name="Help_color_name" xml:space="preserve"> <value>color name</value> </data> <data name="ColorFormatEditorHelpline2.Text" xml:space="preserve"> <value>The red, green, blue and alpha values can be formatted to the following formats:</value> </data> <data name="Help_byte" xml:space="preserve"> <value>byte value (default)</value> </data> <data name="Help_hexL1" xml:space="preserve"> <value>hex lowercase one digit</value> </data> <data name="Help_hexU1" xml:space="preserve"> <value>hex uppercase one digit</value> </data> <data name="Help_hexL2" xml:space="preserve"> <value>hex lowercase two digits</value> </data> <data name="Help_hexU2" xml:space="preserve"> <value>hex uppercase two digits</value> </data> <data name="Help_floatWith" xml:space="preserve"> <value>float with leading zero</value> </data> <data name="Help_floatWithout" xml:space="preserve"> <value>float without leading zero</value> </data> <data name="ColorFormatEditorHelpline3.Text" xml:space="preserve"> <value>Example: %ReX means red value in hex uppercase two digits format.</value> </data> <data name="ColorPicker_ShowColorName.Header" xml:space="preserve"> <value>Show color name</value> </data> <data name="ColorPicker_ShowColorName.Description" xml:space="preserve"> <value>This will show the name of the color when picking a color</value> </data> <data name="ImageResizer_DefaultSize_Large" xml:space="preserve"> <value>Large</value> <comment>The size of the image</comment> </data> <data name="ImageResizer_DefaultSize_Medium" xml:space="preserve"> <value>Medium</value> <comment>The size of the image</comment> </data> <data name="ImageResizer_DefaultSize_Phone" xml:space="preserve"> <value>Phone</value> <comment>The size of the image referring to a Mobile Phone typical image size</comment> </data> <data name="ImageResizer_DefaultSize_Small" xml:space="preserve"> <value>Small</value> <comment>The size of the image</comment> </data> <data name="FancyZones_MoveWindowBasedOnRelativePosition_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Windows key + Up, down, left or right arrow key to move windows based on relative position</value> </data> <data name="FancyZones_MoveWindowLeftRightBasedOnZoneIndex_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Windows key + Left or right arrow keys to move windows based on zone index</value> </data> <data name="FancyZones_MoveWindowBasedOnRelativePosition_Description.Text" xml:space="preserve"> <value>Windows key +    or </value> <comment>Do not loc the icons (hex numbers)</comment> </data> <data name="FancyZones_MoveWindowLeftRightBasedOnZoneIndex_Description.Text" xml:space="preserve"> <value>Windows key +  or </value> <comment>Do not loc the icons (hex numbers)</comment> </data> <data name="FancyZones_MoveWindowBasedOnRelativePosition.Text" xml:space="preserve"> <value>Relative position</value> </data> <data name="FancyZones_MoveWindow.Header" xml:space="preserve"> <value>Move windows based on</value> </data> <data name="FancyZones_MoveWindowLeftRightBasedOnZoneIndex.Text" xml:space="preserve"> <value>Zone index</value> </data> <data name="ColorPicker_Editor.Header" xml:space="preserve"> <value>Color formats</value> </data> <data name="FancyZones_OverlappingZonesClosestCenter.Content" xml:space="preserve"> <value>Activate the zone whose center is closest to the cursor</value> </data> <data name="FancyZones_OverlappingZonesLargest.Content" xml:space="preserve"> <value>Activate the largest zone by area</value> </data> <data name="FancyZones_OverlappingZonesPositional.Content" xml:space="preserve"> <value>Split the overlapped area into multiple activation targets</value> </data> <data name="FancyZones_OverlappingZonesSmallest.Content" xml:space="preserve"> <value>Activate the smallest zone by area</value> </data> <data name="FancyZones_OverlappingZones.Header" xml:space="preserve"> <value>When multiple zones overlap</value> </data> <data name="PowerLauncher_Plugins.Header" xml:space="preserve"> <value>Plugins</value> </data> <data name="PowerLauncher_ActionKeyword.Header" xml:space="preserve"> <value>Direct activation command</value> </data> <data name="PowerLauncher_AuthoredBy.Text" xml:space="preserve"> <value>Authored by</value> <comment>example: Authored by Microsoft</comment> </data> <data name="PowerLauncher_IncludeInGlobalResultTitle.Text" xml:space="preserve"> <value>Include in global result</value> </data> <data name="PowerLauncher_IncludeInGlobalResultDescription.Text" xml:space="preserve"> <value>Show results on queries without direct activation command</value> </data> <data name="PowerLauncher_EnablePluginToggle.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Enable plugin</value> </data> <data name="PowerLauncher_EnablePluginToggle.OnContent" xml:space="preserve"> <value>On</value> </data> <data name="PowerLauncher_EnablePluginToggle.OffContent" xml:space="preserve"> <value>Off</value> </data> <data name="Run_AdditionalOptions.Text" xml:space="preserve"> <value>Additional options</value> </data> <data name="Run_NotAccessibleWarning.Title" xml:space="preserve"> <value>Please define an activation command or allow this plugin to be used in the global results.</value> </data> <data name="Run_AllPluginsDisabled.Title" xml:space="preserve"> <value>PowerToys Run can't provide any results without plugins</value> </data> <data name="Run_AllPluginsDisabled.Message" xml:space="preserve"> <value>Enable at least one plugin to get started</value> </data> <data name="Run_PluginUse.Header" xml:space="preserve"> <value>Plugins</value> </data> <data name="Run_PluginUseDescription.Text" xml:space="preserve"> <value>Include or remove plugins from the global results, change the direct activation phrase and configure additional options</value> </data> <data name="Run_PositionAppearance_GroupSettings.Header" xml:space="preserve"> <value>Position &amp; appearance</value> </data> <data name="Run_PositionHeader.Header" xml:space="preserve"> <value>Preferred monitor position</value> <comment>as in Show PowerToys Run on primary monitor</comment> </data> <data name="Run_PositionHeader.Description" xml:space="preserve"> <value>If multiple monitors are in use, PowerToys Run can be launched on the desired monitor</value> <comment>as in Show PowerToys Run on primary monitor</comment> </data> <data name="Run_Radio_Position_Cursor.Content" xml:space="preserve"> <value>Monitor with mouse cursor</value> </data> <data name="Run_Radio_Position_Focus.Content" xml:space="preserve"> <value>Monitor with focused window</value> </data> <data name="Run_Radio_Position_Primary_Monitor.Content" xml:space="preserve"> <value>Primary monitor</value> </data> <data name="Run_PluginsLoading.Text" xml:space="preserve"> <value>Plugins are loading...</value> </data> <data name="ColorPicker_ButtonDown.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Move the color down</value> </data> <data name="ColorPicker_ButtonUp.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Move the color up</value> </data> <data name="FancyZones_FlashZonesOnQuickSwitch.Content" xml:space="preserve"> <value>Flash zones when switching layout</value> </data> <data name="FancyZones_Layouts.Header" xml:space="preserve"> <value>Layouts</value> </data> <data name="FancyZones_QuickLayoutSwitch.Header" xml:space="preserve"> <value>Enable quick layout switch</value> </data> <data name="FancyZones_QuickLayoutSwitch.Description" xml:space="preserve"> <value>Layout-specific shortcuts can be configured in the editor</value> </data> <data name="FancyZones_QuickLayoutSwitch_GroupSettings.Text" xml:space="preserve"> <value>Quick layout switch</value> </data> <data name="Activation_Shortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="Activation_Shortcut.Description" xml:space="preserve"> <value>Customize the shortcut to activate this module</value> </data> <data name="Oobe_GetStarted.Text" xml:space="preserve"> <value>Let's get started!</value> </data> <data name="Oobe_PowerToysDescription.Text" xml:space="preserve"> <value>Welcome to PowerToys! These overviews will help you quickly learn the basics of all our utilities.</value> </data> <data name="Oobe_GettingStarted.Text" xml:space="preserve"> <value>Getting started</value> </data> <data name="Oobe_Launch.Text" xml:space="preserve"> <value>Launch</value> </data> <data name="Launch_ColorPicker.Content" xml:space="preserve"> <value>Launch Color Picker</value> </data> <data name="Oobe_LearnMore.Text" xml:space="preserve"> <value>Learn more about</value> </data> <data name="Oobe_ColorPicker.Description" xml:space="preserve"> <value>Color Picker is a system-wide color selection tool for Windows that enables you to pick colors from any currently running application and automatically copies it in a configurable format to your clipboard.</value> </data> <data name="Oobe_FancyZones.Description" xml:space="preserve"> <value>FancyZones is a window manager that makes it easy to create complex window layouts and quickly position windows into those layouts.</value> </data> <data name="Oobe_FileLocksmith.Description" xml:space="preserve"> <value>File Locksmith lists which processes are using the selected files or directories and allows closing those processes.</value> </data> <data name="Oobe_FileExplorer.Description" xml:space="preserve"> <value>PowerToys introduces add-ons to the Windows File Explorer that will enable files like Markdown (.md), PDF (.pdf), SVG (.svg), STL (.stl), G-code (.gcode) and developer files to be viewed in the preview pane. It introduces File Explorer thumbnail support for a number of these file types as well.</value> </data> <data name="Oobe_ImageResizer.Description" xml:space="preserve"> <value>Image Resizer is a Windows shell extension for simple bulk image-resizing.</value> </data> <data name="Oobe_KBM.Description" xml:space="preserve"> <value>Keyboard Manager allows you to customize the keyboard to be more productive by remapping keys and creating your own keyboard shortcuts.</value> </data> <data name="Oobe_MouseWithoutBorders.Description" xml:space="preserve"> <value>Mouse Without Borders enables using the mouse pointer, keyboard, clipboard and drag and drop between machines in the same local network.</value> </data> <data name="Oobe_PowerRename.Description" xml:space="preserve"> <value>PowerRename enables you to perform simple bulk renaming, searching and replacing file names.</value> </data> <data name="Oobe_Run.Description" xml:space="preserve"> <value>PowerToys Run is a quick launcher for power users that contains some additional features without sacrificing performance.</value> </data> <data name="Oobe_MeasureTool.Description" xml:space="preserve"> <value>Screen Ruler is a quick and easy way to measure pixels on your screen.</value> </data> <data name="Oobe_ShortcutGuide.Description" xml:space="preserve"> <value>Shortcut Guide presents the user with a listing of available shortcuts for the current state of the desktop.</value> </data> <data name="Oobe_VideoConference.Description" xml:space="preserve"> <value>Video Conference Mute allows users to quickly mute the microphone and turn off the camera while on a conference call with a single keystroke, regardless of what application has focus on your computer.</value> </data> <data name="Oobe_MouseUtils.Description" xml:space="preserve"> <value>A collection of utilities to enhance your mouse.</value> <comment>Mouse as in the hardware peripheral</comment> </data> <data name="Oobe_Overview.Description" xml:space="preserve"> <value>Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. Take a moment to preview the various utilities listed or view our comprehensive documentation.</value> </data> <data name="Oobe_Overview_DescriptionLinkText.Text" xml:space="preserve"> <value>Documentation on Microsoft Docs</value> </data> <data name="ReleaseNotes.Content" xml:space="preserve"> <value>Release notes</value> </data> <data name="Oobe_ColorPicker_HowToUse.Text" xml:space="preserve"> <value>to open Color Picker.</value> </data> <data name="Oobe_ColorPicker_TipsAndTricks.Text" xml:space="preserve"> <value>To select a color with more precision, **scroll the mouse wheel** to zoom in.</value> </data> <data name="Oobe_FancyZones_HowToUse.Text" xml:space="preserve"> <value>**Shift** + **drag the window** to snap a window to a zone, and release the window in the desired zone.</value> </data> <data name="Oobe_FancyZones_HowToUse_Shortcut.Text" xml:space="preserve"> <value>to open the FancyZones editor.</value> </data> <data name="Oobe_FancyZones_TipsAndTricks.Text" xml:space="preserve"> <value>Snap a window to multiple zones by holding the **Ctrl** key (while also holding **Shift**) when dragging a window.</value> </data> <data name="Oobe_FileLocksmith_HowToUse.Text" xml:space="preserve"> <value>In File Explorer, right-click one or more selected files and select **What's using this file?** from the context menu.</value> </data> <data name="Oobe_FileLocksmith_TipsAndTricks.Text" xml:space="preserve"> <value>Press the **Restart Elevated** button from the File Locksmith UI to also get information on elevated processes that might be using the files.</value> </data> <data name="Oobe_FileExplorer_HowToEnable.Text" xml:space="preserve"> <value>Select **View** which is located at the top of File Explorer, followed by **Show**, and then **Preview pane**. From there, simply click on one of the supported files in the File Explorer and observe the content on the preview pane!</value> </data> <data name="Oobe_HowToCreateMappings.Text" xml:space="preserve"> <value>How to create mappings</value> </data> <data name="Oobe_HowToEnable.Text" xml:space="preserve"> <value>How to enable</value> </data> <data name="Oobe_HowToLaunch.Text" xml:space="preserve"> <value>How to launch</value> </data> <data name="Oobe_HowToUse.Text" xml:space="preserve"> <value>How to use</value> </data> <data name="Oobe_ImageResizer_HowToLaunch.Text" xml:space="preserve"> <value>In File Explorer, right-click one or more image files and select **Resize pictures** from the context menu.</value> </data> <data name="Oobe_ImageResizer_TipsAndTricks.Text" xml:space="preserve"> <value>Want a custom size? You can add them in the PowerToys Settings!</value> </data> <data name="Oobe_KBM_HowToCreateMappings.Text" xml:space="preserve"> <value>Launch **PowerToys Settings**, navigate to the Keyboard Manager menu, and select either **Remap a key** or **Remap a shortcut**.</value> </data> <data name="Oobe_KBM_TipsAndTricks.Text" xml:space="preserve"> <value>Want to only have a shortcut work for a single application? Use the Target App field when creating the shortcut remapping.</value> </data> <data name="Oobe_MouseWithoutBorders_HowToUse.Text" xml:space="preserve"> <value>Use the Settings screen on each machine to connect to the other machines using the same key. If a connection is not working, it may be necessary to add an exception to the Windows Firewall.</value> </data> <data name="Oobe_MouseWithoutBorders_TipsAndTricks.Text" xml:space="preserve"> <value>Use the service option in Settings to install a service enabling Mouse Without Borders to function even in the lock screen.</value> </data> <data name="Oobe_PowerRename_HowToUse.Text" xml:space="preserve"> <value>In File Explorer, right-click one or more selected files and select **PowerRename** from the context menu.</value> </data> <data name="Oobe_PowerRename_TipsAndTricks.Text" xml:space="preserve"> <value>PowerRename supports searching for files using regular expressions to enable more advanced renaming functionalities.</value> </data> <data name="Oobe_Run_HowToLaunch.Text" xml:space="preserve"> <value>to open Run and just start typing.</value> </data> <data name="Oobe_Run_TipsAndTricks.Text" xml:space="preserve"> <value>PowerToys Run supports various action keys to funnel search queries for a specific subset of results. Typing `&lt;` searches for running processes only, `?` will search only for file, or `.` for installed applications! See PowerToys documentation for the complete set of 'Action Keys' available.</value> </data> <data name="Oobe_ShortcutGuide_HowToLaunch.Text" xml:space="preserve"> <value>to open Shortcut Guide, press it again to close or press **Esc**.</value> </data> <data name="Oobe_TipsAndTricks.Text" xml:space="preserve"> <value>Tips &amp; tricks</value> </data> <data name="Oobe_VideoConference_ToggleMicVid.Text" xml:space="preserve"> <value>to toggle both your microphone and video</value> </data> <data name="Oobe_VideoConference_ToggleMic.Text" xml:space="preserve"> <value>to toggle your microphone</value> </data> <data name="Oobe_VideoConference_PushToTalkMic.Text" xml:space="preserve"> <value>to toggle your microphone until key release</value> </data> <data name="Oobe_VideoConference_ToggleVid.Text" xml:space="preserve"> <value>to toggle your video</value> </data> <data name="Oobe_MeasureTool_Activation.Text" xml:space="preserve"> <value>to bring up the Screen Ruler command bar.</value> </data> <data name="Oobe_MeasureTool_HowToLaunch.Text" xml:space="preserve"> <value>The Bounds mode lets you select a specific area to measure. You can also shift-drag an area to persist in on screen. The various Spacing modes allows tracing similar pixels along horizontal and vertical axes with a customizable pixel tolerance threshold (use settings or mouse wheel to adjust it).</value> </data> <data name="Oobe_MeasureTool.Title" xml:space="preserve"> <value>Screen Ruler</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_ColorPicker.Title" xml:space="preserve"> <value>Color Picker</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_FancyZones.Title" xml:space="preserve"> <value>FancyZones</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_FileLocksmith.Title" xml:space="preserve"> <value>File Locksmith</value> </data> <data name="Oobe_ImageResizer.Title" xml:space="preserve"> <value>Image Resizer</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_KBM.Title" xml:space="preserve"> <value>Keyboard Manager</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_MouseWithoutBorders.Title" xml:space="preserve"> <value>Mouse Without Borders</value> <comment>Product name. Do not localize this string</comment> </data> <data name="Oobe_PowerRename.Title" xml:space="preserve"> <value>PowerRename</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_Run.Title" xml:space="preserve"> <value>PowerToys Run</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_ShortcutGuide.Title" xml:space="preserve"> <value>Shortcut Guide</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_VideoConference.Title" xml:space="preserve"> <value>Video Conference Mute</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_Overview.Title" xml:space="preserve"> <value>Welcome</value> </data> <data name="Oobe_WhatsNew.Text" xml:space="preserve"> <value>What's new</value> </data> <data name="Oobe_WhatsNew_LoadingError.Title" xml:space="preserve"> <value>Couldn't load the release notes.</value> </data> <data name="Oobe_WhatsNew_LoadingError.Message" xml:space="preserve"> <value>Please check your internet connection.</value> </data> <data name="Oobe_WhatsNew_ProxyAuthenticationWarning.Title" xml:space="preserve"> <value>Couldn't load the release notes.</value> </data> <data name="Oobe_WhatsNew_ProxyAuthenticationWarning.Message" xml:space="preserve"> <value>Your proxy server requires authentication.</value> </data> <data name="Oobe_WhatsNew_DetailedReleaseNotesLink.Text" xml:space="preserve"> <value>See more detailed release notes on GitHub</value> <comment>Don't loc "GitHub", it's the name of a product</comment> </data> <data name="OOBE_Settings.Content" xml:space="preserve"> <value>Open Settings</value> </data> <data name="Oobe_NavViewItem.Content" xml:space="preserve"> <value>Welcome to PowerToys</value> <comment>Don't loc "PowerToys"</comment> </data> <data name="Feedback_NavViewItem.Content" xml:space="preserve"> <value>Give feedback</value> </data> <data name="OobeWindow_Title" xml:space="preserve"> <value>Welcome to PowerToys</value> </data> <data name="OobeWindow_TitleTxt.Text" xml:space="preserve"> <value>Welcome to PowerToys</value> </data> <data name="SettingsWindow_Title" xml:space="preserve"> <value>PowerToys Settings</value> <comment>Title of the settings window when running as user</comment> </data> <data name="Awake.ModuleTitle" xml:space="preserve"> <value>Awake</value> </data> <data name="Awake.ModuleDescription" xml:space="preserve"> <value>A convenient way to keep your PC awake on-demand.</value> </data> <data name="Awake_EnableSettingsCard.Header" xml:space="preserve"> <value>Enable Awake</value> <comment>Awake is a product name, do not loc</comment> </data> <data name="Awake_NoKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep using the selected power plan</value> </data> <data name="Awake_IndefiniteKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep awake indefinitely</value> </data> <data name="Awake_TemporaryKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep awake for a time interval</value> </data> <data name="Awake_ExpirableKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep awake until expiration</value> </data> <data name="Awake_DisplaySettingsCard.Header" xml:space="preserve"> <value>Keep screen on</value> </data> <data name="Awake_DisplaySettingsCard.Description" xml:space="preserve"> <value>This setting is only available when keeping the PC awake</value> </data> <data name="Awake_ExpirationSettingsExpander.Description" xml:space="preserve"> <value>Keep custom awake state until a specific date and time</value> </data> <data name="Awake_ModeSettingsCard.Header" xml:space="preserve"> <value>Mode</value> </data> <data name="Awake_BehaviorSettingsGroup.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="Awake_IntervalHoursInput.Header" xml:space="preserve"> <value>Hours</value> </data> <data name="Awake_IntervalMinutesInput.Header" xml:space="preserve"> <value>Minutes</value> </data> <data name="Awake_ExpirationSettingsExpander_Date.Header" xml:space="preserve"> <value>End date</value> </data> <data name="Awake_ExpirationSettingsExpander_Time.Header" xml:space="preserve"> <value>End time</value> </data> <data name="Oobe_Awake.Title" xml:space="preserve"> <value>Awake</value> <comment>Module name, do not loc</comment> </data> <data name="Oobe_Awake.Description" xml:space="preserve"> <value>Awake is a Windows tool designed to keep your PC awake on-demand without having to manage its power settings. This behavior can be helpful when running time-consuming tasks while ensuring that your PC does not go to sleep or turn off its screens.</value> </data> <data name="Oobe_Awake_HowToUse.Text" xml:space="preserve"> <value>Open **PowerToys Settings** and enable Awake</value> </data> <data name="Oobe_Awake_TipsAndTricks.Text" xml:space="preserve"> <value>You can always change modes quickly by **right-clicking the Awake icon** in the system tray.</value> </data> <data name="General_FailedToDownloadTheNewVersion.Title" xml:space="preserve"> <value>An error occurred trying to install this update:</value> </data> <data name="General_InstallNow.Content" xml:space="preserve"> <value>Install now</value> </data> <data name="General_ReadMore.Text" xml:space="preserve"> <value>Read more</value> </data> <data name="General_NewVersionAvailable.Title" xml:space="preserve"> <value>An update is available:</value> </data> <data name="General_Downloading.Text" xml:space="preserve"> <value>Downloading...</value> </data> <data name="General_TryAgainToDownloadAndInstall.Content" xml:space="preserve"> <value>Try again to download and install</value> </data> <data name="General_CheckingForUpdates.Text" xml:space="preserve"> <value>Checking for updates...</value> </data> <data name="General_NewVersionReadyToInstall.Title" xml:space="preserve"> <value>An update is ready to install:</value> </data> <data name="General_UpToDate.Title" xml:space="preserve"> <value>PowerToys is up to date</value> </data> <data name="General_CantCheck.Title" xml:space="preserve"> <value>Network error. Please try again later</value> </data> <data name="General_DownloadAndInstall.Content" xml:space="preserve"> <value>Download &amp; install</value> </data> <data name="ImageResizer_Fit_Fill_ThirdPersonSingular" xml:space="preserve"> <value>Fills</value> </data> <data name="ImageResizer_Fit_Fit_ThirdPersonSingular" xml:space="preserve"> <value>Fits within</value> </data> <data name="ImageResizer_Fit_Stretch_ThirdPersonSingular" xml:space="preserve"> <value>Stretches to</value> </data> <data name="ImageResizer_Unit_Centimeter" xml:space="preserve"> <value>Centimeters</value> </data> <data name="ImageResizer_Unit_Inch" xml:space="preserve"> <value>Inches</value> </data> <data name="ImageResizer_Unit_Percent" xml:space="preserve"> <value>Percent</value> </data> <data name="ImageResizer_Unit_Pixel" xml:space="preserve"> <value>Pixels</value> </data> <data name="EditButton.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Edit</value> </data> <data name="ImageResizer_EditSize.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Edit size</value> </data> <data name="No" xml:space="preserve"> <value>No</value> <comment>Label of a cancel button</comment> </data> <data name="Delete_Dialog_Description" xml:space="preserve"> <value>Are you sure you want to delete this item?</value> </data> <data name="Yes" xml:space="preserve"> <value>Yes</value> <comment>Label of a confirmation button</comment> </data> <data name="SeeWhatsNew.Content" xml:space="preserve"> <value>See what's new</value> </data> <data name="Awake_ModeSettingsCard.Description" xml:space="preserve"> <value>Manage the state of your device when Awake is active</value> </data> <data name="ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="Enable_ColorFormat.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Enable colorformat</value> </data> <data name="More_Options_Button.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>More options</value> </data> <data name="More_Options_ButtonTooltip.Text" xml:space="preserve"> <value>More options</value> </data> <data name="To.Text" xml:space="preserve"> <value>to</value> <comment>as in: from x to y</comment> </data> <data name="LearnMore_Awake.Text" xml:space="preserve"> <value>Learn more about Awake</value> <comment>Awake is a product name, do not loc</comment> </data> <data name="SecondaryLink_Awake.Text" xml:space="preserve"> <value>Den Delimarsky's work on creating Awake</value> <comment>Awake is a product name, do not loc</comment> </data> <data name="LearnMore_ColorPicker.Text" xml:space="preserve"> <value>Learn more about Color Picker</value> <comment>Color Picker is a product name, do not loc</comment> </data> <data name="LearnMore_FancyZones.Text" xml:space="preserve"> <value>Learn more about FancyZones</value> <comment>FancyZones is a product name, do not loc</comment> </data> <data name="LearnMore_FileLocksmith.Text" xml:space="preserve"> <value>Learn more about File Locksmith</value> </data> <data name="LearnMore_ImageResizer.Text" xml:space="preserve"> <value>Learn more about Image Resizer</value> <comment>Image Resizer is a product name, do not loc</comment> </data> <data name="LearnMore_KBM.Text" xml:space="preserve"> <value>Learn more about Keyboard Manager</value> <comment>Keyboard Manager is a product name, do not loc</comment> </data> <data name="LearnMore_MouseUtils.Text" xml:space="preserve"> <value>Learn more about Mouse utilities</value> <comment>Mouse utilities is a product name, do not loc</comment> </data> <data name="LearnMore_PastePlain.Text" xml:space="preserve"> <value>Learn more about Paste as Plain Text</value> <comment> Paste as Plain Text is the name of the module. </comment> </data> <data name="LearnMore_MouseWithoutBorders.Text" xml:space="preserve"> <value>Learn more about Mouse Without Borders</value> <comment>Mouse Without Borders is the name of the module. </comment> </data> <data name="LearnMore_PowerPreview.Text" xml:space="preserve"> <value>Learn more about File Explorer add-ons</value> <comment>File Explorer is a product name, localize as Windows does</comment> </data> <data name="LearnMore_Peek.Text" xml:space="preserve"> <value>Learn more about Peek</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="LearnMore_PowerRename.Text" xml:space="preserve"> <value>Learn more about PowerRename</value> <comment>PowerRename is a product name, do not loc</comment> </data> <data name="LearnMore_Run.Text" xml:space="preserve"> <value>Learn more about PowerToys Run</value> <comment>PowerToys Run is a product name, do not loc</comment> </data> <data name="LearnMore_MeasureTool.Text" xml:space="preserve"> <value>Learn more about Screen Ruler</value> <comment>Screen Ruler is a product name, do not loc</comment> </data> <data name="LearnMore_ShortcutGuide.Text" xml:space="preserve"> <value>Learn more about Shortcut Guide</value> <comment>Shortcut Guide is a product name, do not loc</comment> </data> <data name="LearnMore_VCM.Text" xml:space="preserve"> <value>Learn more about Video Conference Mute</value> <comment>Video Conference Mute is a product name, do not loc</comment> </data> <data name="Oobe_FileExplorer.Title" xml:space="preserve"> <value>File Explorer add-ons</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_MouseUtils.Title" xml:space="preserve"> <value>Mouse utilities</value> <comment>Mouse as in the hardware peripheral</comment> </data> <data name="Oobe_MouseUtils_FindMyMouse.Text" xml:space="preserve"> <value>Find My Mouse</value> <comment>Mouse as in the hardware peripheral</comment> </data> <data name="Oobe_MouseUtils_FindMyMouse_Description.Text" xml:space="preserve"> <value>Focus the mouse pointer pressing the Ctrl key twice, using a custom shortcut or shaking the mouse.</value> <comment>Mouse as in the hardware peripheral. Key as in a keyboard key</comment> </data> <data name="Oobe_MouseUtils_MouseHighlighter.Text" xml:space="preserve"> <value>Mouse Highlighter</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MouseHighlighter_Description.Text" xml:space="preserve"> <value>Use a keyboard shortcut to highlight left and right mouse clicks.</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MousePointerCrosshairs.Text" xml:space="preserve"> <value>Mouse Pointer Crosshairs</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MousePointerCrosshairs_Description.Text" xml:space="preserve"> <value>Draw crosshairs centered around the mouse pointer.</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MouseJump.Text" xml:space="preserve"> <value>Mouse Jump</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MouseJump_Description.Text" xml:space="preserve"> <value>Jump the mouse pointer quickly to anywhere on your desktop.</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Launch_Run.Content" xml:space="preserve"> <value>Launch PowerToys Run</value> </data> <data name="Launch_ShortcutGuide.Content" xml:space="preserve"> <value>Launch Shortcut Guide</value> </data> <data name="ColorPicker_ColorFormat_ToggleSwitch.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Show format in editor</value> </data> <data name="GeneralPage_Documentation.Text" xml:space="preserve"> <value>Documentation</value> </data> <data name="PowerLauncher_SearchList.PlaceholderText" xml:space="preserve"> <value>Search this list</value> </data> <data name="PowerLauncher_SearchList.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Search this list</value> </data> <data name="Awake.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="ColorPicker.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="General.SecondaryLinksHeader" xml:space="preserve"> <value>Related information</value> </data> <data name="ImageResizer.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="MouseUtils.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="PowerLauncher.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="PowerRename.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="EditTooltip.Text" xml:space="preserve"> <value>Edit</value> </data> <data name="RemoveTooltip.Text" xml:space="preserve"> <value>Remove</value> </data> <data name="Activation_Shortcut_Cancel" xml:space="preserve"> <value>Cancel</value> </data> <data name="Activation_Shortcut_Description" xml:space="preserve"> <value>Press a combination of keys to change this shortcut</value> </data> <data name="Activation_Shortcut_With_Disable_Description" xml:space="preserve"> <value>Press a combination of keys to change this shortcut. Right-click to remove the key combination, thereby deactivating the shortcut.</value> </data> <data name="Activation_Shortcut_Reset" xml:space="preserve"> <value>Reset</value> </data> <data name="Activation_Shortcut_Save" xml:space="preserve"> <value>Save</value> </data> <data name="Activation_Shortcut_Title" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="InvalidShortcut.Title" xml:space="preserve"> <value>Invalid shortcut</value> </data> <data name="InvalidShortcutWarningLabel.Text" xml:space="preserve"> <value>Only shortcuts that start with **Windows key**, **Ctrl**, **Alt** or **Shift** are valid.</value> <comment>The ** sequences are used for text formatting of the key names. Don't remove them on translation.</comment> </data> <data name="WarningShortcutAltGr.Title" xml:space="preserve"> <value>Possible shortcut interference with Alt Gr</value> <comment>Alt Gr refers to the right alt key on some international keyboards</comment> </data> <data name="WarningShortcutAltGr.ToolTipService.ToolTip" xml:space="preserve"> <value>Shortcuts with **Ctrl** and **Alt** may remove functionality from some international keyboards, because **Ctrl** + **Alt** = **Alt Gr** in those keyboards.</value> <comment>The ** sequences are used for text formatting of the key names. Don't remove them on translation.</comment> </data> <data name="FancyZones_SpanZonesAcrossMonitors.Description" xml:space="preserve"> <value>All monitors must have the same DPI scaling and will be treated as one large combined rectangle which contains all monitors</value> </data> <data name="ImageResizer_DefaultSize_NewSizePrefix" xml:space="preserve"> <value>New size</value> <comment>First part of the default name of new sizes that can be added in PT's settings ui.</comment> </data> <data name="Awake_IntervalSettingsCard.Header" xml:space="preserve"> <value>Interval before returning to the previous awakeness state</value> </data> <data name="Awake_ExpirationSettingsExpander.Header" xml:space="preserve"> <value>End date and time</value> </data> <data name="MouseUtils.ModuleTitle" xml:space="preserve"> <value>Mouse utilities</value> </data> <data name="MouseUtils.ModuleDescription" xml:space="preserve"> <value>A collection of mouse utilities.</value> </data> <data name="MouseUtils_FindMyMouse.Header" xml:space="preserve"> <value>Find My Mouse</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_FindMyMouse.Description" xml:space="preserve"> <value>Find My Mouse highlights the position of the cursor when pressing the Ctrl key twice, using a custom shortcut or when shaking the mouse.</value> <comment>"Ctrl" is a keyboard key. "Find My Mouse" is the name of the utility</comment> </data> <data name="MouseUtils_Enable_FindMyMouse.Header" xml:space="preserve"> <value>Enable Find My Mouse</value> <comment>"Find My Mouse" is the name of the utility.</comment> </data> <data name="MouseUtils_FindMyMouse_ActivationMethod.Header" xml:space="preserve"> <value>Activation method</value> </data> <data name="MouseUtils_FindMyMouse_ActivationDoubleControlPress.Content" xml:space="preserve"> <value>Press Left Control twice</value> <comment>Left control is the physical key on the keyboard.</comment> </data> <data name="MouseUtils_FindMyMouse_ActivationShakeMouse.Content" xml:space="preserve"> <value>Shake mouse</value> <comment>Mouse is the hardware peripheral.</comment> </data> <data name="MouseUtils_FindMyMouse_ExcludedApps.Description" xml:space="preserve"> <value>Prevents module activation when an excluded application is the foreground application</value> </data> <data name="MouseUtils_FindMyMouse_ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="MouseUtils_FindMyMouse_ExcludedApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> </data> <data name="MouseUtils_Prevent_Activation_On_Game_Mode.Content" xml:space="preserve"> <value>Do not activate when Game Mode is on</value> <comment>"Game mode" is the Windows feature to prevent notification when playing a game.</comment> </data> <data name="MouseUtils_FindMyMouse_BackgroundColor.Header" xml:space="preserve"> <value>Background color</value> </data> <data name="MouseUtils_FindMyMouse_SpotlightColor.Header" xml:space="preserve"> <value>Spotlight color</value> </data> <data name="MouseUtils_FindMyMouse_OverlayOpacity.Header" xml:space="preserve"> <value>Overlay opacity (%)</value> </data> <data name="MouseUtils_FindMyMouse_SpotlightRadius.Header" xml:space="preserve"> <value>Spotlight radius (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_FindMyMouse_SpotlightInitialZoom.Header" xml:space="preserve"> <value>Spotlight initial zoom</value> </data> <data name="MouseUtils_FindMyMouse_SpotlightInitialZoom.Description" xml:space="preserve"> <value>Spotlight zoom factor at animation start</value> </data> <data name="MouseUtils_FindMyMouse_AnimationDurationMs.Header" xml:space="preserve"> <value>Animation duration (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_FindMyMouse_AnimationDurationMs.Description" xml:space="preserve"> <value>Time before the spotlight appears (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_FindMyMouse_AnimationDurationMs_Disabled.Message" xml:space="preserve"> <value>Animations are disabled by OS. See Settings &gt; Accessibility &gt; Visual effects</value> </data> <data name="MouseUtils_FindMyMouse_ShakingMinimumDistance.Header" xml:space="preserve"> <value>Shake minimum distance</value> </data> <data name="MouseUtils_FindMyMouse_ShakingMinimumDistance.Description" xml:space="preserve"> <value>The minimum distance for mouse shaking activation, for adjusting sensitivity</value> </data> <data name="MouseUtils_MouseHighlighter.Header" xml:space="preserve"> <value>Mouse Highlighter</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_MouseHighlighter.Description" xml:space="preserve"> <value>Mouse Highlighter mode will highlight mouse clicks.</value> <comment>"Mouse Highlighter" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_Enable_MouseHighlighter.Header" xml:space="preserve"> <value>Enable Mouse Highlighter</value> <comment>"Find My Mouse" is the name of the utility.</comment> </data> <data name="MouseUtils_MouseHighlighter_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MouseUtils_MouseHighlighter_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to turn on or off this mode</value> <comment>"Mouse Highlighter" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_MouseHighlighter_PrimaryButtonClickColor.Header" xml:space="preserve"> <value>Primary button highlight color</value> </data> <data name="MouseUtils_MouseHighlighter_SecondaryButtonClickColor.Header" xml:space="preserve"> <value>Secondary button highlight color</value> </data> <data name="MouseUtils_MouseHighlighter_HighlightRadius.Header" xml:space="preserve"> <value>Radius (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDelayMs.Header" xml:space="preserve"> <value>Fade delay (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDelayMs.Description" xml:space="preserve"> <value>Time before the highlight begins to fade (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDurationMs.Header" xml:space="preserve"> <value>Fade duration (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDurationMs.Description" xml:space="preserve"> <value>Duration of the disappear animation (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MousePointerCrosshairs.Header" xml:space="preserve"> <value>Mouse Pointer Crosshairs</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_MousePointerCrosshairs.Description" xml:space="preserve"> <value>Mouse Pointer Crosshairs draws crosshairs centered on the mouse pointer.</value> <comment>"Mouse Pointer Crosshairs" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_Enable_MousePointerCrosshairs.Header" xml:space="preserve"> <value>Enable Mouse Pointer Crosshairs</value> <comment>"Mouse Pointer Crosshairs" is the name of the utility.</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MouseUtils_MousePointerCrosshairs_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to show/hide the crosshairs</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsColor.Header" xml:space="preserve"> <value>Crosshairs color</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsOpacity.Header" xml:space="preserve"> <value>Crosshairs opacity (%)</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsRadius.Header" xml:space="preserve"> <value>Crosshairs center radius (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsThickness.Header" xml:space="preserve"> <value>Crosshairs thickness (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsBorderColor.Header" xml:space="preserve"> <value>Crosshairs border color</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsBorderSize.Header" xml:space="preserve"> <value>Crosshairs border size (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_IsCrosshairsFixedLengthEnabled.Header" xml:space="preserve"> <value>Fix crosshairs length</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsFixedLength.Header" xml:space="preserve"> <value>Crosshairs fixed length (px)</value> <comment>px = pixels</comment> </data> <data name="FancyZones_Radio_Custom_Colors.Content" xml:space="preserve"> <value>Custom colors</value> </data> <data name="FancyZones_Radio_Default_Theme.Content" xml:space="preserve"> <value>Windows default</value> </data> <data name="ColorModeHeader.Header" xml:space="preserve"> <value>App theme</value> </data> <data name="FancyZones_Zone_Appearance.Description" xml:space="preserve"> <value>Customize the way zones look</value> </data> <data name="FancyZones_Zone_Appearance.Header" xml:space="preserve"> <value>Zone appearance</value> </data> <data name="VideoConference_DeprecationWarning.Title" xml:space="preserve"> <value>VCM is moving into legacy mode (maintenance only).</value> </data> <data name="VideoConference_DeprecationWarningButton.Content" xml:space="preserve"> <value>Learn more</value> </data> <data name="LearnMore.Content" xml:space="preserve"> <value>Learn more</value> </data> <data name="VideoConference_RunAsAdminRequired.Title" xml:space="preserve"> <value>You need to run as administrator to modify these settings.</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_GCODE.Header" xml:space="preserve"> <value>Geometric Code</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_GCODE.Description" xml:space="preserve"> <value>Only .gcode files with embedded thumbnails are supported</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_GCODE.Header" xml:space="preserve"> <value>Geometric Code</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_GCODE.Description" xml:space="preserve"> <value>Only .gcode files with embedded thumbnails are supported</value> </data> <data name="FancyZones_NumberColor.Header" xml:space="preserve"> <value>Number color</value> </data> <data name="FancyZones_ShowZoneNumberCheckBoxControl.Content" xml:space="preserve"> <value>Show zone number</value> </data> <data name="ToggleSwitch.OffContent" xml:space="preserve"> <value>Off</value> <comment>The state of a ToggleSwitch when it's off</comment> </data> <data name="ToggleSwitch.OnContent" xml:space="preserve"> <value>On</value> <comment>The state of a ToggleSwitch when it's on</comment> </data> <data name="CropAndLock.ModuleDescription" xml:space="preserve"> <value>Crop And Lock allows you to crop a current application into a smaller window or just create a thumbnail. Focus the target window and press the shortcut to start cropping.</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="CropAndLock.ModuleTitle" xml:space="preserve"> <value>Crop And Lock </value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="CropAndLock_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="CropAndLock_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="Shell_CropAndLock.Content" xml:space="preserve"> <value>Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="LearnMore_CropAndLock.Text" xml:space="preserve"> <value>Learn more about Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="CropAndLock_ReparentActivation_Shortcut.Header" xml:space="preserve"> <value>Reparent shortcut</value> </data> <data name="CropAndLock_ReparentActivation_Shortcut.Description" xml:space="preserve"> <value>Shortcut to crop an application's window into a cropped window. This is experimental and can cause issues with some applications, since the cropped window will contain the original application window.</value> </data> <data name="CropAndLock_ThumbnailActivation_Shortcut.Header" xml:space="preserve"> <value>Thumbnail shortcut</value> </data> <data name="CropAndLock_ThumbnailActivation_Shortcut.Description" xml:space="preserve"> <value>Shortcut to crop and create a thumbnail of another window. The application isn't controllable through the thumbnail but it'll have less compatibility issues. </value> </data> <data name="CropAndLock.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="Oobe_CropAndLock.Title" xml:space="preserve"> <value>Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="Oobe_CropAndLock.Description" xml:space="preserve"> <value>Crop And Lock allows you to crop a current application into a smaller window or just create a thumbnail. Focus the target window and press the shortcut to start cropping.</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="Oobe_CropAndLock_HowToUse_Thumbnail.Text" xml:space="preserve"> <value>to crop and create a thumbnail of another window. The application isn't controllable through the thumbnail but it'll have less compatibility issues.</value> </data> <data name="Oobe_CropAndLock_HowToUse_Reparent.Text" xml:space="preserve"> <value>to crop an application's window into a cropped window. This is experimental and can cause issues with some applications, since the cropped window will contain the original application window.</value> </data> <data name="AlwaysOnTop.ModuleDescription" xml:space="preserve"> <value>Always On Top is a quick and easy way to pin windows on top.</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop.ModuleTitle" xml:space="preserve"> <value>Always On Top </value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="Peek_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="AlwaysOnTop_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_ExcludedApps.Description" xml:space="preserve"> <value>Excludes an application from pinning on top</value> </data> <data name="AlwaysOnTop_ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="AlwaysOnTop_ExcludedApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> </data> <data name="AlwaysOnTop_FrameColor.Header" xml:space="preserve"> <value>Color</value> </data> <data name="AlwaysOnTop_FrameEnabled.Header" xml:space="preserve"> <value>Show a border around the pinned window</value> </data> <data name="AlwaysOnTop_FrameThickness.Header" xml:space="preserve"> <value>Thickness (px)</value> <comment>px = pixels</comment> </data> <data name="AlwaysOnTop_Behavior_GroupSettings.Header" xml:space="preserve"> <value>Appearance &amp; behavior</value> </data> <data name="Shell_AlwaysOnTop.Content" xml:space="preserve"> <value>Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_GameMode.Content" xml:space="preserve"> <value>Do not activate when Game Mode is on</value> <comment>Game Mode is a Windows feature</comment> </data> <data name="AlwaysOnTop_SoundTitle.Header" xml:space="preserve"> <value>Sound</value> </data> <data name="AlwaysOnTop_Sound.Content" xml:space="preserve"> <value>Play a sound when pinning a window</value> </data> <data name="AlwaysOnTop_Behavior.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="LearnMore_AlwaysOnTop.Text" xml:space="preserve"> <value>Learn more about Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="AlwaysOnTop_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to pin or unpin an app window</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="Oobe_AlwaysOnTop.Title" xml:space="preserve"> <value>Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="Oobe_AlwaysOnTop.Description" xml:space="preserve"> <value>Always On Top improves your multitasking workflow by pinning an application window so it's always in front - even when focus changes to another window after that.</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="Oobe_AlwaysOnTop_HowToUse.Text" xml:space="preserve"> <value>to pin or unpin the selected window so it's always on top of all other windows.</value> </data> <data name="Oobe_AlwaysOnTop_TipsAndTricks.Text" xml:space="preserve"> <value>You can tweak the visual outline of the pinned windows in PowerToys settings.</value> </data> <data name="AlwaysOnTop_FrameColor_Mode.Header" xml:space="preserve"> <value>Color mode</value> </data> <data name="AlwaysOnTop_Radio_Custom_Color.Content" xml:space="preserve"> <value>Custom color</value> </data> <data name="AlwaysOnTop_Radio_Windows_Default.Content" xml:space="preserve"> <value>Windows default</value> </data> <data name="FileExplorerPreview.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Monaco_Wrap_Text.Content" xml:space="preserve"> <value>Wrap text</value> <comment>Feature on or off</comment> </data> <data name="FancyZones_AllowPopupWindowSnap.Description" xml:space="preserve"> <value>This setting can affect all popup windows including notifications</value> </data> <data name="FancyZones_AllowPopupWindowSnap.Header" xml:space="preserve"> <value>Allow popup windows snapping</value> </data> <data name="FancyZones_AllowChildWindowSnap.Content" xml:space="preserve"> <value>Allow child windows snapping</value> </data> <data name="Shell_WhatsNew.Content" xml:space="preserve"> <value>What's new</value> </data> <data name="Shell_Peek.Content" xml:space="preserve"> <value>Peek</value> <comment>Product name: Navigation view item name for Peek</comment> </data> <data name="Peek.ModuleTitle" xml:space="preserve"> <value>Peek</value> </data> <data name="Peek.ModuleDescription" xml:space="preserve"> <value>Peek is a quick and easy way to preview files. Select a file in File Explorer and press the shortcut to open the file preview.</value> </data> <data name="Peek_EnablePeek.Header" xml:space="preserve"> <value>Enable Peek</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="Peek_BehaviorHeader.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="Peek_AlwaysRunNotElevated.Header" xml:space="preserve"> <value>Always run not elevated, even when PowerToys is elevated</value> </data> <data name="Peek_AlwaysRunNotElevated.Description" xml:space="preserve"> <value>Tries to run Peek without elevated permissions, to fix access to network shares. You need to disable and re-enable Peek for changes to this value to take effect.</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="Peek_CloseAfterLosingFocus.Header" xml:space="preserve"> <value>Automatically close the Peek window after it loses focus</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="FancyZones_DisableRoundCornersOnWindowSnap.Content" xml:space="preserve"> <value>Disable round corners when window is snapped</value> </data> <data name="PowerLauncher_SearchQueryTuningEnabled.Description" xml:space="preserve"> <value>Fine tune results ordering</value> </data> <data name="PowerLauncher_SearchQueryTuningEnabled.Header" xml:space="preserve"> <value>Results order tuning</value> </data> <data name="PowerLauncher_SearchClickedItemWeight.Description" xml:space="preserve"> <value>Use a higher number to get selected results to rise faster. The default is 5, 0 to disable.</value> </data> <data name="PowerLauncher_SearchClickedItemWeight.Header" xml:space="preserve"> <value>Selected item weight</value> </data> <data name="PowerLauncher_WaitForSlowResults.Description" xml:space="preserve"> <value>Selecting this can help preselect the top, more relevant result, but at the risk of jumpiness</value> </data> <data name="PowerLauncher_WaitForSlowResults.Header" xml:space="preserve"> <value>Wait on slower plugin results before selecting top item in results</value> </data> <data name="PowerLauncher_PluginWeightBoost.Description" xml:space="preserve"> <value>Use a higher number to have this plugin's result show higher in the global results. Default is 0.</value> </data> <data name="PowerLauncher_PluginWeightBoost.Header" xml:space="preserve"> <value>Global sort order score modifier</value> </data> <data name="AlwaysOnTop_RoundCorners.Content" xml:space="preserve"> <value>Enable round corners</value> </data> <data name="LearnMore_QuickAccent.Text" xml:space="preserve"> <value>Learn more about Quick Accent</value> <comment>Quick Accent is a product name, do not loc</comment> </data> <data name="QuickAccent_EnableQuickAccent.Header" xml:space="preserve"> <value>Enable Quick Accent</value> </data> <data name="Shell_QuickAccent.Content" xml:space="preserve"> <value>Quick Accent</value> </data> <data name="QuickAccent.ModuleDescription" xml:space="preserve"> <value>Quick Accent is an alternative way to type accented characters, useful for when a keyboard doesn't support that specific accent. Activate by holding the key for the character you want to add an accent to, then press the activation key (space, left or right arrow keys) and an overlay to select accented characters will appear!</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent.ModuleTitle" xml:space="preserve"> <value>Quick Accent</value> </data> <data name="QuickAccent.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> </data> <data name="AlwaysOnTop_ShortDescription" xml:space="preserve"> <value>Pin a window</value> </data> <data name="Awake_ShortDescription" xml:space="preserve"> <value>Keep your PC awake</value> </data> <data name="ColorPicker_ShortDescription" xml:space="preserve"> <value>Pick a color</value> </data> <data name="CropAndLock_Thumbnail" xml:space="preserve"> <value>Thumbnail</value> </data> <data name="CropAndLock_Reparent" xml:space="preserve"> <value>Reparent</value> </data> <data name="FancyZones_OpenEditor" xml:space="preserve"> <value>Open editor</value> </data> <data name="FileLocksmith_ShortDescription" xml:space="preserve"> <value>Right-click on files or directories to show running processes</value> </data> <data name="FindMyMouse_ShortDescription" xml:space="preserve"> <value>Find the mouse</value> </data> <data name="ImageResizer_ShortDescription" xml:space="preserve"> <value>Resize images from right-click context menu</value> </data> <data name="MouseHighlighter_ShortDescription" xml:space="preserve"> <value>Highlight clicks</value> </data> <data name="MouseJump_ShortDescription" xml:space="preserve"> <value>Quickly move the mouse pointer</value> </data> <data name="MouseCrosshairs_ShortDescription" xml:space="preserve"> <value>Draw crosshairs centered on the mouse pointer</value> </data> <data name="MouseWithoutBorders_ShortDescription" xml:space="preserve"> <value>Move your cursor across multiple devices</value> </data> <data name="PastePlain_ShortDescription" xml:space="preserve"> <value>Paste clipboard content without formatting</value> </data> <data name="Peek_ShortDescription" xml:space="preserve"> <value>Quick and easy previewer</value> </data> <data name="PowerRename_ShortDescription" xml:space="preserve"> <value>Rename files and folders from right-click context menu</value> </data> <data name="Run_ShortDescription" xml:space="preserve"> <value>A quick launcher</value> </data> <data name="PowerAccent_ShortDescription" xml:space="preserve"> <value>An alternative way to type accented characters</value> </data> <data name="RegistryPreview_ShortDescription" xml:space="preserve"> <value>Visualize and edit Windows Registry files</value> </data> <data name="ScreenRuler_ShortDescription" xml:space="preserve"> <value>Measure pixels on your screen</value> </data> <data name="ShortcutGuide_ShortDescription" xml:space="preserve"> <value>Show a help overlay with Windows shortcuts</value> </data> <data name="PowerOcr_ShortDescription" xml:space="preserve"> <value>A convenient way to copy text from anywhere on screen</value> </data> <data name="Dashboard_Activation" xml:space="preserve"> <value>Activation</value> </data> <data name="DashboardKBMShowMappingsButton.Content" xml:space="preserve"> <value>Show remappings</value> </data> <data name="Oobe_QuickAccent.Description" xml:space="preserve"> <value>Quick Accent is an easy way to write letters with accents, like on a smartphone.</value> </data> <data name="Oobe_QuickAccent.Title" xml:space="preserve"> <value>Quick Accent</value> </data> <data name="Oobe_QuickAccent_HowToUse.Text" xml:space="preserve"> <value>Open **PowerToys Settings** and enable Quick Accent. While holding the key for the character you want to add an accent to, press the Activation Key and an overlay to select the accented character will appear.</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="QuickAccent_Activation_Shortcut.Header" xml:space="preserve"> <value>Activation key</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent_Activation_Shortcut.Description" xml:space="preserve"> <value>Press this key after holding down the target letter</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent_Activation_Key_Arrows.Content" xml:space="preserve"> <value>Left/Right Arrow</value> <comment>Left/Right arrow keyboard keys</comment> </data> <data name="QuickAccent_Activation_Key_Space.Content" xml:space="preserve"> <value>Space</value> <comment>Space is the space keyboard key</comment> </data> <data name="QuickAccent_Activation_Key_Either.Content" xml:space="preserve"> <value>Left, Right or Space</value> <comment>All are keys on a keyboard</comment> </data> <data name="QuickAccent_Toolbar.Header" xml:space="preserve"> <value>Toolbar</value> </data> <data name="QuickAccent_ToolbarPosition.Header" xml:space="preserve"> <value>Toolbar position</value> </data> <data name="QuickAccent_ToolbarPosition_TopCenter.Content" xml:space="preserve"> <value>Top center</value> </data> <data name="QuickAccent_ToolbarPosition_TopLeftCorner.Content" xml:space="preserve"> <value>Top left corner</value> </data> <data name="QuickAccent_ToolbarPosition_TopRightCorner.Content" xml:space="preserve"> <value>Top right corner</value> </data> <data name="QuickAccent_ToolbarPosition_BottomLeftCorner.Content" xml:space="preserve"> <value>Bottom left corner</value> </data> <data name="QuickAccent_ToolbarPosition_BottomCenter.Content" xml:space="preserve"> <value>Bottom center</value> </data> <data name="QuickAccent_ToolbarPosition_BottomRightCorner.Content" xml:space="preserve"> <value>Bottom right corner</value> </data> <data name="QuickAccent_ToolbarPosition_Center.Content" xml:space="preserve"> <value>Center</value> </data> <data name="QuickAccent_ToolbarPosition_Left.Content" xml:space="preserve"> <value>Left</value> </data> <data name="QuickAccent_ToolbarPosition_Right.Content" xml:space="preserve"> <value>Right</value> </data> <data name="QuickAccent_Behavior.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="QuickAccent_InputTimeMs.Header" xml:space="preserve"> <value>Input delay (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="QuickAccent_InputTimeMs.Description" xml:space="preserve"> <value>Hold the key down for this much time to make the accent menu appear (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="QuickAccent_ExcludedApps.Description" xml:space="preserve"> <value>Prevents module activation if a foreground application is excluded. Add one application name per line.</value> </data> <data name="QuickAccent_ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="QuickAccent_ExcludedApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: Teams.exe</value> </data> <data name="LearnMore_TextExtractor.Text" xml:space="preserve"> <value>Learn more about Text Extractor</value> </data> <data name="TextExtractor_Cancel" xml:space="preserve"> <value>cancel</value> </data> <data name="General_SettingsBackupAndRestore_NothingToBackup" xml:space="preserve"> <value>A new backup was not created because no settings have been changed since last backup.</value> </data> <data name="General_SettingsBackupAndRestore_NoBackupFound" xml:space="preserve"> <value>No backup found</value> </data> <data name="General_SettingsBackupAndRestore_FailedToParseTime" xml:space="preserve"> <value>Failed to parse time</value> </data> <data name="General_SettingsBackupAndRestore_UnknownBackupTime" xml:space="preserve"> <value>Unknown</value> </data> <data name="General_SettingsBackupAndRestore_UnknownBackupSource" xml:space="preserve"> <value>Unknown</value> </data> <data name="General_SettingsBackupAndRestore_ThisMachine" xml:space="preserve"> <value>This computer</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsMatch" xml:space="preserve"> <value>Current settings match</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsStatusAt" xml:space="preserve"> <value>at</value> <comment>E.g., Food was served 'at' noon.</comment> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsDiffer" xml:space="preserve"> <value>Current settings differ</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsNoChecked" xml:space="preserve"> <value>Checking...</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsUnknown" xml:space="preserve"> <value>Unknown</value> </data> <data name="General_SettingsBackupAndRestore_NeverRestored" xml:space="preserve"> <value>Never restored</value> </data> <data name="General_SettingsBackupAndRestore_NothingToRestore" xml:space="preserve"> <value>Nothing to restore.</value> </data> <data name="General_SettingsBackupAndRestore_NoSettingsFilesFound" xml:space="preserve"> <value>No settings files found.</value> </data> <data name="General_SettingsBackupAndRestore_BackupError" xml:space="preserve"> <value>There was an error. Try another backup location.</value> </data> <data name="General_SettingsBackupAndRestore_SettingsFormatError" xml:space="preserve"> <value>There was an error in the settings format. Please check the settings file:</value> </data> <data name="General_SettingsBackupAndRestore_BackupComplete" xml:space="preserve"> <value>Backup completed.</value> </data> <data name="General_SettingsBackupAndRestore_NoBackupSyncPath" xml:space="preserve"> <value>No backup location selected.</value> </data> <data name="General_SettingsBackupAndRestore_NoBackupsFound" xml:space="preserve"> <value>No backups found to restore.</value> </data> <data name="General_SettingsBackupAndRestore_InvalidBackupLocation" xml:space="preserve"> <value>Invalid backup location.</value> </data> <data name="TextExtractor.ModuleDescription" xml:space="preserve"> <value>Text Extractor is a convenient way to copy text from anywhere on screen</value> </data> <data name="TextExtractor.ModuleTitle" xml:space="preserve"> <value>Text Extractor</value> </data> <data name="TextExtractor_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Text Extractor</value> </data> <data name="TextExtractor_SupportedLanguages.Title" xml:space="preserve"> <value>Text Extractor can only recognize languages that have the OCR pack installed.</value> </data> <data name="TextExtractor_UseSnippingToolWarning.Title" xml:space="preserve"> <value>It is recommended to use the Snipping Tool instead of the TextExtractor module.</value> </data> <data name="TextExtractor_SupportedLanguages_Link.Content" xml:space="preserve"> <value>Learn more about supported languages</value> </data> <data name="Shell_TextExtractor.Content" xml:space="preserve"> <value>Text Extractor</value> </data> <data name="Launch_TextExtractor.Content" xml:space="preserve"> <value>Launch Text Extractor</value> </data> <data name="Oobe_TextExtractor.Title" xml:space="preserve"> <value>Text Extractor</value> </data> <data name="Oobe_TextExtractor_HowToUse.Text" xml:space="preserve"> <value>to open Text Extractor and then selecting a region to copy the text from.</value> </data> <data name="Oobe_TextExtractor_TipsAndTricks.Text" xml:space="preserve"> <value>Hold the shift key to move the selection region around.</value> </data> <data name="TextExtractor.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> </data> <data name="Oobe_TextExtractor.Description" xml:space="preserve"> <value>Text Extractor works like Snipping Tool, but copies the text out of the selected region using OCR and puts it on the clipboard.</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Monaco_Try_Format.Description" xml:space="preserve"> <value>Applies to json and xml. Files remain unchanged.</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Monaco_Try_Format.Header" xml:space="preserve"> <value>Try to format the source for preview</value> </data> <data name="Run_ConflictingKeywordInfo.Title" xml:space="preserve"> <value>Some characters and phrases may conflict with global queries of other plugins if you use them as activation command.</value> </data> <data name="Run_ConflictingKeywordInfo_Link.Content" xml:space="preserve"> <value>Learn more about conflicting activation commands</value> </data> <data name="MeasureTool_ContinuousCapture_Information.Title" xml:space="preserve"> <value>The continuous capture mode will consume more resources when in use. Also, measurements will be excluded from screenshots and screen capture.</value> <comment>pointer as in mouse pointer. Resources refer to things like CPU, GPU, RAM</comment> </data> <data name="QuickAccent_Description_Indicator.Header" xml:space="preserve"> <value>Show the Unicode code and name of the currently selected character</value> </data> <data name="QuickAccent_SortByUsageFrequency_Indicator.Header" xml:space="preserve"> <value>Sort characters by usage frequency</value> </data> <data name="QuickAccent_SortByUsageFrequency_Indicator.Description" xml:space="preserve"> <value>Track characters usage frequency and sort them accordingly</value> </data> <data name="QuickAccent_StartSelectionFromTheLeft_Indicator.Header" xml:space="preserve"> <value>Start selection from the left</value> </data> <data name="QuickAccent_StartSelectionFromTheLeft_Indicator.Description" xml:space="preserve"> <value>Start selection from the leftmost character for all activation keys, including left and right arrows</value> </data> <data name="QuickAccent_DisableFullscreen.Header" xml:space="preserve"> <value>Disable when Game Mode is On</value> </data> <data name="QuickAccent_Language.Header" xml:space="preserve"> <value>Characters</value> </data> <data name="QuickAccent_SelectedLanguage.Header" xml:space="preserve"> <value>Choose a character set</value> </data> <data name="QuickAccent_SelectedLanguage.Description" xml:space="preserve"> <value>Show only accented characters common to the selected set</value> </data> <data name="QuickAccent_SelectedLanguage_All.Content" xml:space="preserve"> <value>All available</value> </data> <data name="QuickAccent_SelectedLanguage_Catalan.Content" xml:space="preserve"> <value>Catalan</value> </data> <data name="QuickAccent_SelectedLanguage_Currency.Content" xml:space="preserve"> <value>Currency</value> </data> <data name="QuickAccent_SelectedLanguage_Croatian.Content" xml:space="preserve"> <value>Croatian</value> </data> <data name="QuickAccent_SelectedLanguage_Czech.Content" xml:space="preserve"> <value>Czech</value> </data> <data name="QuickAccent_SelectedLanguage_Danish.Content" xml:space="preserve"> <value>Danish</value> </data> <data name="QuickAccent_SelectedLanguage_Gaeilge.Content" xml:space="preserve"> <value>Gaeilge</value> <comment>Gaelic language spoken in Ireland</comment> </data> <data name="QuickAccent_SelectedLanguage_Gaidhlig.Content" xml:space="preserve"> <value>Gàidhlig</value> <comment>Scottish Gaelic</comment> </data> <data name="QuickAccent_SelectedLanguage_German.Content" xml:space="preserve"> <value>German</value> </data> <data name="QuickAccent_SelectedLanguage_Greek.Content" xml:space="preserve"> <value>Greek</value> </data> <data name="QuickAccent_SelectedLanguage_Hebrew.Content" xml:space="preserve"> <value>Hebrew</value> </data> <data name="QuickAccent_SelectedLanguage_French.Content" xml:space="preserve"> <value>French</value> </data> <data name="QuickAccent_SelectedLanguage_Finnish.Content" xml:space="preserve"> <value>Finnish</value> </data> <data name="QuickAccent_SelectedLanguage_Estonian.Content" xml:space="preserve"> <value>Estonian</value> </data> <data name="QuickAccent_SelectedLanguage_Lithuanian.Content" xml:space="preserve"> <value>Lithuanian</value> </data> <data name="QuickAccent_SelectedLanguage_Macedonian.Content" xml:space="preserve"> <value>Macedonian</value> </data> <data name="QuickAccent_SelectedLanguage_Maori.Content" xml:space="preserve"> <value>Maori</value> </data> <data name="QuickAccent_SelectedLanguage_Dutch.Content" xml:space="preserve"> <value>Dutch</value> </data> <data name="QuickAccent_SelectedLanguage_Norwegian.Content" xml:space="preserve"> <value>Norwegian</value> </data> <data name="QuickAccent_SelectedLanguage_Pinyin.Content" xml:space="preserve"> <value>Pinyin</value> </data> <data name="QuickAccent_SelectedLanguage_Polish.Content" xml:space="preserve"> <value>Polish</value> </data> <data name="QuickAccent_SelectedLanguage_Portuguese.Content" xml:space="preserve"> <value>Portuguese</value> </data> <data name="QuickAccent_SelectedLanguage_Slovak.Content" xml:space="preserve"> <value>Slovak</value> </data> <data name="QuickAccent_SelectedLanguage_Spanish.Content" xml:space="preserve"> <value>Spanish</value> </data> <data name="QuickAccent_SelectedLanguage_Swedish.Content" xml:space="preserve"> <value>Swedish</value> </data> <data name="QuickAccent_SelectedLanguage_Turkish.Content" xml:space="preserve"> <value>Turkish</value> </data> <data name="QuickAccent_SelectedLanguage_Icelandic.Content" xml:space="preserve"> <value>Icelandic</value> </data> <data name="QuickAccent_SelectedLanguage_Romanian.Content" xml:space="preserve"> <value>Romanian</value> </data> <data name="QuickAccent_SelectedLanguage_Serbian.Content" xml:space="preserve"> <value>Serbian</value> </data> <data name="QuickAccent_SelectedLanguage_Hungarian.Content" xml:space="preserve"> <value>Hungarian</value> </data> <data name="QuickAccent_SelectedLanguage_Italian.Content" xml:space="preserve"> <value>Italian</value> </data> <data name="QuickAccent_SelectedLanguage_Kurdish.Content" xml:space="preserve"> <value>Kurdish</value> </data> <data name="QuickAccent_SelectedLanguage_Welsh.Content" xml:space="preserve"> <value>Welsh</value> </data> <data name="Hosts.ModuleDescription" xml:space="preserve"> <value>Quick and simple utility for managing hosts file.</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Hosts.ModuleTitle" xml:space="preserve"> <value>Hosts File Editor</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Shell_Hosts.Content" xml:space="preserve"> <value>Hosts File Editor</value> <comment>Products name: Navigation view item name for Hosts File Editor</comment> </data> <data name="Hosts_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Hosts_Toggle_ShowStartupWarning.Header" xml:space="preserve"> <value>Show a warning at startup</value> </data> <data name="Hosts_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="Hosts_LaunchButtonControl.Description" xml:space="preserve"> <value>Manage your hosts file</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Hosts_LaunchButtonControl.Header" xml:space="preserve"> <value>Launch Host File Editor</value> <comment>"Host File Editor" is a product name</comment> </data> <data name="Hosts_LaunchButton_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Launch Host File Editor</value> <comment>"Host File Editor" is a product name</comment> </data> <data name="Hosts_AdditionalLinesPosition.Header" xml:space="preserve"> <value>Position of additional content</value> </data> <data name="Hosts_AdditionalLinesPosition_Bottom.Content" xml:space="preserve"> <value>Bottom</value> </data> <data name="Hosts_AdditionalLinesPosition_Top.Content" xml:space="preserve"> <value>Top</value> </data> <data name="Hosts_Behavior_GroupSettings.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="Launch_Hosts.Content" xml:space="preserve"> <value>Launch Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="LearnMore_Hosts.Text" xml:space="preserve"> <value>Learn more about Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Oobe_Hosts.Description" xml:space="preserve"> <value>Hosts File Editor is a quick and simple utility for managing hosts file.</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Oobe_Hosts.Title" xml:space="preserve"> <value>Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Hosts_Toggle_LaunchAdministrator.Description" xml:space="preserve"> <value>Needs to be launched as administrator in order to make changes to the hosts file</value> </data> <data name="Hosts_Toggle_LaunchAdministrator.Header" xml:space="preserve"> <value>Launch as administrator</value> </data> <data name="EnvironmentVariables.ModuleDescription" xml:space="preserve"> <value>A quick utility for managing environment variables.</value> </data> <data name="EnvironmentVariables.ModuleTitle" xml:space="preserve"> <value>Environment Variables</value> </data> <data name="Shell_EnvironmentVariables.Content" xml:space="preserve"> <value>Environment Variables</value> </data> <data name="EnvironmentVariables_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Environment Variables</value> </data> <data name="EnvironmentVariables_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="EnvironmentVariables_LaunchButtonControl.Description" xml:space="preserve"> <value>Manage your environment variables</value> </data> <data name="EnvironmentVariables_LaunchButtonControl.Header" xml:space="preserve"> <value>Launch Environment Variables</value> </data> <data name="EnvironmentVariables_LaunchButton_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Launch Environment Variables</value> </data> <data name="Launch_EnvironmentVariables.Content" xml:space="preserve"> <value>Launch Environment Variables</value> </data> <data name="LearnMore_EnvironmentVariables.Text" xml:space="preserve"> <value>Learn more about Environment Variables</value> </data> <data name="Oobe_EnvironmentVariables.Description" xml:space="preserve"> <value>Environment Variables is a quick utility for managing environment variables.</value> </data> <data name="Oobe_EnvironmentVariables.Title" xml:space="preserve"> <value>Environment Variables</value> </data> <data name="EnvironmentVariables_Toggle_LaunchAdministrator.Description" xml:space="preserve"> <value>Needs to be launched as administrator in order to make changes to the system environment variables</value> </data> <data name="EnvironmentVariables_Toggle_LaunchAdministrator.Header" xml:space="preserve"> <value>Launch as administrator</value> </data> <data name="ShortcutGuide_PressTimeForTaskbarIconShortcuts.Header" xml:space="preserve"> <value>Press duration before showing taskbar icon shortcuts (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="FileLocksmith.ModuleDescription" xml:space="preserve"> <value>A Windows shell extension to find out which processes are using the selected files and directories.</value> </data> <data name="FileLocksmith.ModuleTitle" xml:space="preserve"> <value>File Locksmith</value> </data> <data name="Shell_FileLocksmith.Content" xml:space="preserve"> <value>File Locksmith</value> <comment>Product name: Navigation view item name for FileLocksmith</comment> </data> <data name="FileLocksmith_Enable_FileLocksmith.Header" xml:space="preserve"> <value>Enable File Locksmith</value> <comment>File Locksmith is the name of the utility</comment> </data> <data name="FileLocksmith_Toggle_StandardContextMenu.Content" xml:space="preserve"> <value>Default and extended context menu</value> </data> <data name="FileLocksmith_Toggle_ExtendedContextMenu.Content" xml:space="preserve"> <value>Extended context menu only</value> </data> <data name="FileLocksmith_Toggle_ContextMenu.Header" xml:space="preserve"> <value>Show File Locksmith in</value> </data> <data name="FileLocksmith_ShellIntegration.Header" xml:space="preserve"> <value>Shell integration</value> <comment>This refers to directly integrating in with Windows</comment> </data> <data name="GPO_IsSettingForced.Title" xml:space="preserve"> <value>This setting is enforced by your System Administrator.</value> </data> <data name="Hosts_AdditionalLinesPosition.Description" xml:space="preserve"> <value>Additional content includes the file header and lines that can't parse</value> </data> <data name="TextExtractor_Languages.Header" xml:space="preserve"> <value>Preferred language</value> </data> <data name="Alternate_OOBE_AlwaysOnTop_Description.Text" xml:space="preserve"> <value>Pin a window so that:</value> </data> <data name="Alternate_OOBE_AlwaysOnTop_Title.Text" xml:space="preserve"> <value>Always On Top</value> </data> <data name="Alternate_OOBE_ColorPicker_Description.Text" xml:space="preserve"> <value>To pick a color:</value> </data> <data name="Alternate_OOBE_ColorPicker_Title.Text" xml:space="preserve"> <value>Color Picker</value> </data> <data name="Alternate_OOBE_Description.Text" xml:space="preserve"> <value>Here are a few shortcuts to get you started:</value> </data> <data name="Alternate_OOBE_FancyZones_Description.Text" xml:space="preserve"> <value>To open the FancyZones editor, press:</value> </data> <data name="Alternate_OOBE_FancyZones_Title.Text" xml:space="preserve"> <value>FancyZones</value> </data> <data name="Alternate_OOBE_Run_Description.Text" xml:space="preserve"> <value>Get access to your files and more:</value> </data> <data name="Alternate_OOBE_Run_Title.Text" xml:space="preserve"> <value>PowerToys Run</value> </data> <data name="General_Experimentation.Header" xml:space="preserve"> <value>Experimentation</value> </data> <data name="GeneralPage_EnableExperimentation.Description" xml:space="preserve"> <value>Note: Only Windows Insider builds may be selected for experimentation</value> </data> <data name="GeneralPage_EnableExperimentation.Header" xml:space="preserve"> <value>Allow experimentation with new features</value> </data> <data name="GPO_ExperimentationIsDisallowed.Title" xml:space="preserve"> <value>The system administrator has disabled experimentation.</value> </data> <data name="Shell_PastePlain.Content" xml:space="preserve"> <value>Paste As Plain Text</value> <comment>Product name: Navigation view item name for Paste as Plain Text</comment> </data> <data name="PastePlain.ModuleDescription" xml:space="preserve"> <value>Paste As Plain Text is a quick shortcut for pasting the text contents of your clipboard without formatting. Note: the formatted text in the clipboard is replaced with the unformatted text.</value> </data> <data name="PastePlain.ModuleTitle" xml:space="preserve"> <value>Paste As Plain Text</value> </data> <data name="PastePlain_Cancel" xml:space="preserve"> <value>cancel</value> </data> <data name="PastePlain_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Paste As Plain Text</value> </data> <data name="Oobe_PastePlain.Description" xml:space="preserve"> <value>Paste As Plain Text strips rich formatting from your clipboard data and pastes it as non-formatted text.</value> </data> <data name="Oobe_PastePlain.Title" xml:space="preserve"> <value>Paste As Plain Text</value> </data> <data name="Oobe_PastePlain_HowToUse.Text" xml:space="preserve"> <value>to paste your clipboard data as plain text. Note: this will replace the formatted text in your clipboard with the plain text.</value> </data> <data name="AllAppsTxt.Text" xml:space="preserve"> <value>All apps</value> </data> <data name="BackBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Back</value> </data> <data name="BackLabel.Text" xml:space="preserve"> <value>Back</value> </data> <data name="BugReportBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Bug report</value> </data> <data name="BugReportTooltip.Text" xml:space="preserve"> <value>Bug report</value> </data> <data name="DocsBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Documentation</value> </data> <data name="DocsTooltip.Text" xml:space="preserve"> <value>Documentation</value> </data> <data name="FZEditorString" xml:space="preserve"> <value>FancyZones Editor</value> <comment>Do not localize this string</comment> </data> <data name="MoreBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>More</value> </data> <data name="MoreLabel.Text" xml:space="preserve"> <value>More</value> </data> <data name="SettingsBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Settings</value> </data> <data name="SettingsTooltip.Text" xml:space="preserve"> <value>Settings</value> </data> <data name="ShortcutsTxt.Text" xml:space="preserve"> <value>Shortcuts</value> </data> <data name="UpdateAvailable.Title" xml:space="preserve"> <value>Update available</value> </data> <data name="FileExplorerPreview_Toggle_Monaco_Max_File_Size.Header" xml:space="preserve"> <value>Maximum file size to preview</value> <comment>Size refers to the disk space used by a file</comment> </data> <data name="FileExplorerPreview_Toggle_Monaco_Max_File_Size.Description" xml:space="preserve"> <value>The maximum size, in kilobytes, for files to be displayed. This is a safety mechanism to prevent loading large files into RAM.</value> <comment>"RAM" refers to random access memory; "size" refers to disk space; "bytes" refer to the measurement unit</comment> </data> <data name="RegistryPreview.ModuleDescription" xml:space="preserve"> <value>A quick little utility to visualize and edit complex Windows Registry files.</value> </data> <data name="RegistryPreview.ModuleTitle" xml:space="preserve"> <value>Registry Preview</value> </data> <data name="Shell_RegistryPreview.Content" xml:space="preserve"> <value>Registry Preview</value> <comment>Product name: Navigation view item name for Registry Preview</comment> </data> <data name="RegistryPreview_Enable_RegistryPreview.Header" xml:space="preserve"> <value>Enable Registry Preview</value> <comment>Registry Preview is the name of the utility</comment> </data> <data name="Oobe_RegistryPreview_HowToUse.Text" xml:space="preserve"> <value>In File Explorer, right-click a .REG file and select **Preview** from the context menu.</value> </data> <data name="Oobe_RegistryPreview_TipsAndTricks.Text" xml:space="preserve"> <value>You can preview or edit Registry files in File Explorer or by opening the app from the PowerToys launcher.</value> </data> <data name="Oobe_RegistryPreview.Description" xml:space="preserve"> <value>Registry Preview is a quick little utility to visualize and edit complex Windows Registry files.</value> </data> <data name="Oobe_RegistryPreview.Title" xml:space="preserve"> <value>Registry Preview</value> <comment>Do not localize this string</comment> </data> <data name="LearnMore_RegistryPreview.Text" xml:space="preserve"> <value>Learn more about Registry Preview</value> <comment>Registry Preview is a product name, do not loc</comment> </data> <data name="Launch_RegistryPreview.Content" xml:space="preserve"> <value>Launch Registry Preview</value> <comment>"Registry Preview" is the name of the utility</comment> </data> <data name="MouseUtils_MouseJump.Description" xml:space="preserve"> <value>Quickly move the mouse pointer long distances.</value> <comment>"Mouse Jump" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_MouseJump.Header" xml:space="preserve"> <value>Mouse Jump</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_MouseJump_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to turn on or off this mode</value> </data> <data name="MouseUtils_MouseJump_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MouseUtils_Enable_MouseJump.Header" xml:space="preserve"> <value>Enable Mouse Jump</value> <comment>"Mouse Jump" is the name of the utility.</comment> </data> <data name="GPO_AutoDownloadUpdatesIsDisabled.Title" xml:space="preserve"> <value>The system administrator has disabled the automatic download of updates.</value> </data> <data name="Hosts_Toggle_LoopbackDuplicates.Description" xml:space="preserve"> <value>127.0.0.1, ::1, ...</value> <comment>"127.0.0.1 and ::1" are well known loopback addresses, do not loc</comment> </data> <data name="Hosts_Toggle_LoopbackDuplicates.Header" xml:space="preserve"> <value>Consider loopback addresses as duplicates</value> </data> <data name="RegistryPreview_Launch_GroupSettings.Header" xml:space="preserve"> <value>Launch</value> </data> <data name="RegistryPreview_LaunchButton_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Launch Registry Preview</value> </data> <data name="RegistryPreview_LaunchButtonControl.Header" xml:space="preserve"> <value>Launch Registry Preview</value> </data> <data name="RegistryPreview_DefaultRegApp.Header" xml:space="preserve"> <value>Default app</value> </data> <data name="RegistryPreview_DefaultRegApp.Description" xml:space="preserve"> <value>Make Registry Preview default app for opening .reg files</value> <comment>Registry Preview is app name. Do not localize.</comment> </data> <data name="PastePlain_ShortcutWarning.Title" xml:space="preserve"> <value>Using this shortcut may prevent non-text paste actions (e.g. images, files) or built-in paste plain text actions in other applications from functioning.</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize.Header" xml:space="preserve"> <value>Thumbnail Size</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Description_Prefix.Text" xml:space="preserve"> <value>Constrain thumbnail image size to a maximum of</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Description_Suffix.Text" xml:space="preserve"> <value>pixels</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Edit_Height.Header" xml:space="preserve"> <value>Maximum height (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Edit_Width.Header" xml:space="preserve"> <value>Maximum width (px)</value> <comment>px = pixels</comment> </data> <data name="Oobe_Peek.Description" xml:space="preserve"> <value>A lightning fast file preview feature for Windows.</value> </data> <data name="Oobe_Peek.Title" xml:space="preserve"> <value>Peek</value> </data> <data name="Oobe_Peek_HowToUse.Text" xml:space="preserve"> <value>to preview the file that's currently selected in File Explorer.</value> </data> <data name="MWB_PCNameLabel.PlaceholderText" xml:space="preserve"> <value>Device name</value> </data> <data name="MWB_SecurityKeyLabel.PlaceholderText" xml:space="preserve"> <value>Security key</value> </data> <data name="Hosts_Encoding.Description" xml:space="preserve"> <value>Choose the encoding of the hosts file</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Hosts_Encoding.Header" xml:space="preserve"> <value>Encoding</value> </data> <data name="Hosts_Encoding_Utf8.Content" xml:space="preserve"> <value>UTF-8</value> </data> <data name="Hosts_Encoding_Utf8Bom.Content" xml:space="preserve"> <value>UTF-8 with BOM</value> </data> <data name="MouseUtils_MouseHighlighter_AlwaysColor.Header" xml:space="preserve"> <value>Always highlight color</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsAutoHide.Content" xml:space="preserve"> <value>Automatically hide crosshairs when the mouse pointer is hidden</value> </data> <data name="MouseUtils_AutoActivate.Content" xml:space="preserve"> <value>Automatically activate on utility startup</value> </data> <data name="Run_FindMorePlugins.Text" xml:space="preserve"> <value>Find more plugins</value> </data> <data name="Run_PluginUseFindMorePlugins.Content" xml:space="preserve"> <value>Find more plugins</value> </data> <data name="Run_SomePluginsAreGpoManaged.Title" xml:space="preserve"> <value>The system administrator is managing the enabled state of some plugins.</value> </data> <data name="AlwaysOnTop_FrameOpacity.Header" xml:space="preserve"> <value>Opacity (%)</value> </data> <data name="MouseUtils_FindMyMouse_ActivationCustomizedShortcut.Content" xml:space="preserve"> <value>Custom shortcut</value> </data> <data name="MouseUtils_FindMyMouse_ActivationDoubleRightControlPress.Content" xml:space="preserve"> <value>Press Right Control twice</value> <comment>Right control is the physical key on the keyboard.</comment> </data> <data name="MouseUtils_FindMyMouse_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to turn on or off this mode</value> </data> <data name="MouseUtils_FindMyMouse_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="SettingsWindow_AdminTitle" xml:space="preserve"> <value>Administrator: PowerToys Settings</value> <comment>Title of the settings window when running as administrator</comment> </data> <data name="DashboardTitle.Text" xml:space="preserve"> <value>Dashboard</value> </data> <data name="Shell_Dashboard.Content" xml:space="preserve"> <value>Dashboard</value> </data> <data name="GPO_IsSettingForcedText.Text" xml:space="preserve"> <value>This setting is enforced by your System Administrator.</value> </data> <data name="DisabledModules.Text" xml:space="preserve"> <value>Disabled modules</value> </data> <data name="EnabledModules.Text" xml:space="preserve"> <value>Enabled modules</value> </data> <data name="Peek_Preview_GroupSettings.Header" xml:space="preserve"> <value>Preview</value> </data> <data name="Peek_SourceCode_Header.Description" xml:space="preserve"> <value>.cpp, .py, .json, .xml, .csproj, ...</value> </data> <data name="Peek_SourceCode_Header.Header" xml:space="preserve"> <value>Source code files (Monaco)</value> </data> <data name="Peek_SourceCode_TryFormat.Description" xml:space="preserve"> <value>Applies to json and xml. Files remain unchanged.</value> </data> <data name="Peek_SourceCode_TryFormat.Header" xml:space="preserve"> <value>Try to format the source for preview</value> </data> <data name="Peek_SourceCode_WrapText.Content" xml:space="preserve"> <value>Wrap text</value> </data> </root>
<?xml version="1.0" encoding="utf-8"?> <root> <!-- Microsoft ResX Schema Version 2.0 The primary goals of this format is to allow a simple XML format that is mostly human readable. The generation and parsing of the various data types are done through the TypeConverter classes associated with the data types. Example: ... ado.net/XML headers & schema ... <resheader name="resmimetype">text/microsoft-resx</resheader> <resheader name="version">2.0</resheader> <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader> <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader> <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data> <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data> <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64"> <value>[base64 mime encoded serialized .NET Framework object]</value> </data> <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value> <comment>This is a comment</comment> </data> There are any number of "resheader" rows that contain simple name/value pairs. Each data row contains a name, and value. The row also contains a type or mimetype. Type corresponds to a .NET class that support text/value conversion through the TypeConverter architecture. Classes that don't support this are serialized and stored with the mimetype set. The mimetype is used for serialized objects, and tells the ResXResourceReader how to depersist the object. This is currently not extensible. For a given mimetype the value must be set accordingly: Note - application/x-microsoft.net.object.binary.base64 is the format that the ResXResourceWriter will generate, however the reader can read any of the formats listed below. mimetype: application/x-microsoft.net.object.binary.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.soap.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Soap.SoapFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.bytearray.base64 value : The object must be serialized into a byte array : using a System.ComponentModel.TypeConverter : and then encoded with base64 encoding. --> <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> <xsd:import namespace="http://www.w3.org/XML/1998/namespace" /> <xsd:element name="root" msdata:IsDataSet="true"> <xsd:complexType> <xsd:choice maxOccurs="unbounded"> <xsd:element name="metadata"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" /> </xsd:sequence> <xsd:attribute name="name" use="required" type="xsd:string" /> <xsd:attribute name="type" type="xsd:string" /> <xsd:attribute name="mimetype" type="xsd:string" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="assembly"> <xsd:complexType> <xsd:attribute name="alias" type="xsd:string" /> <xsd:attribute name="name" type="xsd:string" /> </xsd:complexType> </xsd:element> <xsd:element name="data"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" /> <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="resheader"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" /> </xsd:complexType> </xsd:element> </xsd:choice> </xsd:complexType> </xsd:element> </xsd:schema> <resheader name="resmimetype"> <value>text/microsoft-resx</value> </resheader> <resheader name="version"> <value>2.0</value> </resheader> <resheader name="reader"> <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <resheader name="writer"> <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <data name="Attribution_Rooler.Text" xml:space="preserve"> <value>Inspired by Rooler</value> <comment>Rooler is a name of the tool.</comment> </data> <data name="Shell_VideoConference.Content" xml:space="preserve"> <value>Video Conference Mute</value> <comment>Navigation view item name for Video Conference</comment> </data> <data name="Shell_MeasureTool.Content" xml:space="preserve"> <value>Screen Ruler</value> <comment>Product name: Navigation view item name for Screen Ruler</comment> </data> <data name="MeasureTool.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="MeasureTool.ModuleDescription" xml:space="preserve"> <value>Screen Ruler is a quick and easy way to measure pixels on your screen.</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool.ModuleTitle" xml:space="preserve"> <value>Screen Ruler</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool_ActivationSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="MeasureTool_Settings.Header" xml:space="preserve"> <value>Behavior</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MeasureTool_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to bring up the command bar</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool_DefaultMeasureStyle.Header" xml:space="preserve"> <value>Default measure style</value> </data> <data name="MeasureTool_DefaultMeasureStyle.Description" xml:space="preserve"> <value>The utility will start having the selected style activated</value> </data> <data name="MeasureTool_DefaultMeasureStyle_None.Content" xml:space="preserve"> <value>None</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Bounds.Content" xml:space="preserve"> <value>Bounds</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Spacing.Content" xml:space="preserve"> <value>Spacing</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Horizontal_Spacing.Content" xml:space="preserve"> <value>Horizontal spacing</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Vertical_Spacing.Content" xml:space="preserve"> <value>Vertical spacing</value> </data> <data name="MeasureTool_UnitsOfMeasure.Header" xml:space="preserve"> <value>Units of measurement</value> </data> <data name="MeasureTool_UnitsOfMeasure_Pixels.Content" xml:space="preserve"> <value>Pixels</value> </data> <data name="MeasureTool_UnitsOfMeasure_Inches.Content" xml:space="preserve"> <value>Inches</value> </data> <data name="MeasureTool_UnitsOfMeasure_Centimeters.Content" xml:space="preserve"> <value>Centimeters</value> </data> <data name="MeasureTool_PixelTolerance.Header" xml:space="preserve"> <value>Pixel tolerance for edge detection</value> </data> <data name="MeasureTool_MeasureCrossColor.Header" xml:space="preserve"> <value>Line color</value> </data> <data name="MeasureTool_ContinuousCapture.Header" xml:space="preserve"> <value>Capture screen continuously during measuring</value> </data> <data name="MeasureTool_ContinuousCapture.Description" xml:space="preserve"> <value>Refresh screen contexts in real-time instead of making a screenshot once</value> </data> <data name="MeasureTool_PerColorChannelEdgeDetection.Header" xml:space="preserve"> <value>Per color channel edge detection</value> </data> <data name="MeasureTool_PerColorChannelEdgeDetection.Description" xml:space="preserve"> <value>If enabled, test that all color channels are within a tolerance distance from each other. Otherwise, check that the sum of all color channels differences is smaller than the tolerance.</value> </data> <data name="MeasureTool_DrawFeetOnCross.Header" xml:space="preserve"> <value>Draw feet on cross</value> </data> <data name="MeasureTool_DrawFeetOnCross.Description" xml:space="preserve"> <value>Adds feet to the end of cross lines</value> </data> <data name="MeasureTool_EnableMeasureTool.Header" xml:space="preserve"> <value>Enable Screen Ruler</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MouseWithoutBorders_ActivationSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="MouseWithoutBorders_DeviceLayoutSettings.Header" xml:space="preserve"> <value>Device layout</value> </data> <data name="MouseWithoutBorders_DeviceLayoutSettings.Description" xml:space="preserve"> <value>Drag and drop a machine to rearrange the order.</value> </data> <data name="MouseWithoutBorders_CannotDragDropAsAdmin.Title" xml:space="preserve"> <value>It is not possible to use drag and drop while running PowerToys elevated. As a workaround, please restart PowerToys without elevation to edit the device layout.</value> </data> <data name="MouseWithoutBorders_KeySettings.Header" xml:space="preserve"> <value>Encryption key</value> </data> <data name="MouseWithoutBorders_SecurityKey.Header" xml:space="preserve"> <value>Security key</value> </data> <data name="MouseWithoutBorders_SecurityKey.Description" xml:space="preserve"> <value>The key must be auto generated in one machine by clicking on New Key, then typed in other machines</value> </data> <data name="MouseWithoutBorders_NewKey.Content" xml:space="preserve"> <value>New key</value> </data> <data name="MouseWithoutBorders_CopyMachineName.Text" xml:space="preserve"> <value>Copy to clipboard</value> </data> <data name="MouseWithoutBorders_ReconnectButton.Text" xml:space="preserve"> <value>Refresh connections</value> </data> <data name="MouseWithoutBorders_ReconnectTooltip.Text" xml:space="preserve"> <value>Reestablishes connections with other devices if you are experiencing issues.</value> </data> <data name="MouseWithoutBorders_ThisMachineNameLabel.Header" xml:space="preserve"> <value>Host name of this device</value> </data> <data name="MouseWithoutBorders_Connect.Content" xml:space="preserve"> <value>Connect</value> </data> <data name="MouseWithoutBorders_UninstallService.Header" xml:space="preserve"> <value>Uninstall service</value> </data> <data name="MouseWithoutBorders_UninstallService.Description" xml:space="preserve"> <value>Removes the service from the computer. Needs to run as administrator.</value> </data> <data name="MouseWithoutBorders_Settings.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="MouseWithoutBorders_TroubleShooting.Header" xml:space="preserve"> <value>Troubleshooting</value> </data> <data name="MouseWithoutBorders_AddFirewallRuleButtonControl.Header" xml:space="preserve"> <value>Add a firewall rule for Mouse Without Borders</value> <comment>"Mouse Without Borders" is a product name</comment> </data> <data name="MouseWithoutBorders_AddFirewallRuleButtonControl.Description" xml:space="preserve"> <value>Adding a firewall rule might help solve connection issues.</value> </data> <data name="MouseWithoutBorders_RunAsAdminText.Title" xml:space="preserve"> <value>You need to run as administrator to modify this setting.</value> </data> <data name="MouseWithoutBorders_ServiceUserUninstallWarning.Title" xml:space="preserve"> <value>If PowerToys is installed as a user, uninstalling/upgrading may require the Mouse Without Borders service to be removed manually later.</value> </data> <data name="MouseWithoutBorders_ServiceSettings.Header" xml:space="preserve"> <value>Service</value> </data> <data name="MouseWithoutBorders_Toggle_Enable.Header" xml:space="preserve"> <value>Enable Mouse Without Borders</value> </data> <data name="MouseWithoutBorders.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="MouseWithoutBorders.ModuleDescription" xml:space="preserve"> <value>Mouse Without Borders is a quick and easy way to move your cursor across multiple devices.</value> <comment>"Mouse Without Borders" is the name of the utility</comment> </data> <data name="MouseWithoutBorders.ModuleTitle" xml:space="preserve"> <value>Mouse Without Borders</value> <comment>"Mouse Without Borders" is the name of the utility</comment> </data> <data name="MouseWithoutBorders_UseService.Header" xml:space="preserve"> <value>Use Service</value> </data> <data name="MouseWithoutBorders_UseService.Description" xml:space="preserve"> <value>Runs in service mode, that allows MWB to control remote machines when they're locked. Also allows control of system and administrator applications.</value> </data> <data name="MouseWithoutBorders_MatrixOneRow.Header" xml:space="preserve"> <value>Devices in a single row</value> </data> <data name="MouseWithoutBorders_MatrixOneRow.Description" xml:space="preserve"> <value>Sets whether the devices are aligned on a single row. A two by two matrix is considered otherwise.</value> </data> <data name="MouseWithoutBorders_WrapMouse.Header" xml:space="preserve"> <value>Wrap mouse</value> </data> <data name="MouseWithoutBorders_WrapMouse.Description" xml:space="preserve"> <value>Move control back to the first machine when mouse moves past the last one.</value> </data> <data name="MouseWithoutBorders_ShareClipboard.Header" xml:space="preserve"> <value>Share clipboard</value> </data> <data name="MouseWithoutBorders_TransferFile.Header" xml:space="preserve"> <value>Transfer file</value> </data> <data name="MouseWithoutBorders_HideMouseAtScreenEdge.Header" xml:space="preserve"> <value>Hide mouse at the screen edge</value> </data> <data name="MouseWithoutBorders_DrawMouseCursor.Header" xml:space="preserve"> <value>Draw mouse cursor</value> </data> <data name="MouseWithoutBorders_ValidateRemoteMachineIP.Header" xml:space="preserve"> <value>Validate remote machine IP</value> </data> <data name="MouseWithoutBorders_SameSubnetOnly.Header" xml:space="preserve"> <value>Same subnet only</value> </data> <data name="MouseWithoutBorders_BlockScreenSaverOnOtherMachines.Header" xml:space="preserve"> <value>Block screen saver on other machines</value> </data> <data name="MouseWithoutBorders_MoveMouseRelatively.Header" xml:space="preserve"> <value>Move mouse relatively</value> </data> <data name="MouseWithoutBorders_BlockMouseAtScreenCorners.Header" xml:space="preserve"> <value>Block mouse at screen corners</value> </data> <data name="MouseWithoutBorders_ShowClipboardAndNetworkStatusMessages.Header" xml:space="preserve"> <value>Show clipboard and network status messages</value> </data> <data name="MouseWithoutBorders_ShowOriginalUI.Header" xml:space="preserve"> <value>Show the original Mouse Without Borders UI</value> </data> <data name="MouseWithoutBorders_ShowOriginalUI.Description" xml:space="preserve"> <value>This is accessible from the system tray and requires a restart.</value> </data> <data name="MouseWithoutBorders_ShareClipboard.Description" xml:space="preserve"> <value>If share clipboard stops working, Ctrl+Alt+Del then Esc may solve the problem.</value> </data> <data name="MouseWithoutBorders_TransferFile.Description" xml:space="preserve"> <value>If a file (&lt;100MB) is copied, it will be transferred to the remote machine clipboard.</value> </data> <data name="MouseWithoutBorders_HideMouseAtScreenEdge.Description" xml:space="preserve"> <value>Hide the mouse cursor at the top edge of the screen when switching to other machine. This option also steals the focus from any full-screen app to ensure the keyboard input is redirected.</value> </data> <data name="MouseWithoutBorders_DrawMouseCursor.Description" xml:space="preserve"> <value>Mouse cursor may not be visible in Windows 10 and later versions of Windows when there is no physical mouse attached.</value> </data> <data name="MouseWithoutBorders_ValidateRemoteMachineIP.Description" xml:space="preserve"> <value>Reverse DNS lookup to validate machine IP Address.</value> </data> <data name="MouseWithoutBorders_SameSubnetOnly.Description" xml:space="preserve"> <value>Only connect to machines in the same intranet NNN.NNN.*.* (only works when both machines have IPv4 enabled)</value> </data> <data name="MouseWithoutBorders_IPAddressMapping_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: MyLaptop 192.168.0.24</value> <comment>Don't translate MyLaptop</comment> </data> <data name="MouseWithoutBorders_IPAddressMapping.Header" xml:space="preserve"> <value>IP address mapping</value> </data> <data name="MouseWithoutBorders_IPAddressMapping.Description" xml:space="preserve"> <value>Resolve machine's IP address using manually entered mappings below.</value> </data> <data name="MouseWithoutBorders_BlockScreenSaverOnOtherMachines.Description" xml:space="preserve"> <value>Prevent screen saver from starting on other machines when user is actively working on this machine.</value> </data> <data name="MouseWithoutBorders_MoveMouseRelatively.Description" xml:space="preserve"> <value>Use this option when remote machine's monitor settings are different, or remote machine has multiple monitors.</value> </data> <data name="MouseWithoutBorders_BlockMouseAtScreenCorners.Description" xml:space="preserve"> <value>To avoid accident machine-switch at screen corners.</value> </data> <data name="MouseWithoutBorders_ShowClipboardAndNetworkStatusMessages.Description" xml:space="preserve"> <value>Show clipboard activities and network status in system tray notifications</value> </data> <data name="MouseWithoutBorders_KeyboardShortcuts_Group.Header" xml:space="preserve"> <value>Keyboard shortcuts</value> <comment>keyboard is the hardware peripheral</comment> </data> <data name="MouseWithoutBorders_AdvancedSettings_Group.Header" xml:space="preserve"> <value>Advanced Settings</value> </data> <data name="MouseWithoutBorders_EasyMouseOption.Header" xml:space="preserve"> <value>Easy Mouse: move between machines by moving the mouse pointer to the screen edges.</value> </data> <data name="MouseWithoutBorders_EasyMouseOption.Description" xml:space="preserve"> <value>Can also be set to move only when pressing Shift or Ctrl.</value> <comment>Shift and Ctrl are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_EasyMouseOption_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_EasyMouseOption_Enabled.Content" xml:space="preserve"> <value>Enabled</value> </data> <data name="MouseWithoutBorders_EasyMouseOption_Ctrl.Content" xml:space="preserve"> <value>Ctrl</value> <comment>This is the Ctrl keyboard key</comment> </data> <data name="MouseWithoutBorders_EasyMouseOption_Shift.Content" xml:space="preserve"> <value>Shift</value> <comment>This is the Shift keyboard key</comment> </data> <data name="MouseWithoutBorders_LockMachinesShortcut.Header" xml:space="preserve"> <value>Shortcut to lock all machines.</value> </data> <data name="MouseWithoutBorders_LockMachinesShortcut.Description" xml:space="preserve"> <value>Hit this hotkey twice to lock all machines. Note: Only the machines which have the same shortcut configured will be locked.</value> </data> <data name="MouseWithoutBorders_ToggleEasyMouseShortcut.Header" xml:space="preserve"> <value>Shortcut to toggle Easy Mouse.</value> <comment>Ctrl and Alt are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_ToggleEasyMouseShortcut.Description" xml:space="preserve"> <value>Only works if EasyMouse is set to Enabled or Disabled.</value> </data> <data name="MouseWithoutBorders_ToggleEasyMouseShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut.Header" xml:space="preserve"> <value>Shortcut to switch between machines. Ctrl+Alt+:</value> <comment>Ctrl and Alt are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut.Description" xml:space="preserve"> <value>Click on Ctrl+Alt+ the chosen option to switch between machines.</value> <comment>Ctrl and Alt are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut_F1.Content" xml:space="preserve"> <value>F1, F2, F3, F4</value> <comment>Don't localize. These are keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut_1.Content" xml:space="preserve"> <value>1, 2, 3, 4</value> <comment>Don't localize. These are keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_LockMachinesShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_ReconnectShortcut.Header" xml:space="preserve"> <value>Shortcut to try reconnecting</value> </data> <data name="MouseWithoutBorders_ReconnectShortcut.Description" xml:space="preserve"> <value>Just in case the connection is lost for any reason.</value> </data> <data name="MouseWithoutBorders_ReconnectShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut.Header" xml:space="preserve"> <value>Shortcut to switch to multiple machine mode.</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut.Description" xml:space="preserve"> <value>Allows controlling all computers at once.</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut_Ctrl3.Content" xml:space="preserve"> <value>Ctrl three times</value> <comment>This is the Ctrl keyboard key</comment> </data> <data name="VideoConference_Enable.Header" xml:space="preserve"> <value>Enable Video Conference Mute</value> </data> <data name="VideoConference.ModuleDescription" xml:space="preserve"> <value>Video Conference Mute is a quick and easy way to do a global "mute" of both your microphone and webcam. Disabling this module or closing PowerToys will unmute the microphone and camera.</value> </data> <data name="VideoConference_CameraAndMicrophoneMuteHotkeyControl_Header.Header" xml:space="preserve"> <value>Mute camera &amp; microphone</value> </data> <data name="VideoConference_MicrophoneMuteHotkeyControl_Header.Header" xml:space="preserve"> <value>Mute microphone</value> </data> <data name="VideoConference_MicrophonePushToTalkHotkeyControl_Header.Header" xml:space="preserve"> <value>Push to talk</value> </data> <data name="VideoConference_CameraMuteHotkeyControl_Header.Header" xml:space="preserve"> <value>Mute camera</value> </data> <data name="VideoConference_SelectedCamera.Header" xml:space="preserve"> <value>Selected camera</value> </data> <data name="VideoConference_SelectedMicrophone.Header" xml:space="preserve"> <value>Selected microphone</value> </data> <data name="VideoConference_PushToReverse.Header" xml:space="preserve"> <value>Push to reverse</value> </data> <data name="VideoConference_PushToReverse.Description" xml:space="preserve"> <value>If enabled, allows both push to talk and push to mute, depending on microphone state</value> </data> <data name="VideoConference_CameraOverlayImagePathHeader.Header" xml:space="preserve"> <value>Image displayed when camera is muted</value> </data> <data name="VideoConference_ToolbarPosition.Header" xml:space="preserve"> <value>Toolbar position</value> </data> <data name="VideoConference_ToolbarPosition_TopCenter.Content" xml:space="preserve"> <value>Top center</value> </data> <data name="VideoConference_ToolbarPosition_TopLeftCorner.Content" xml:space="preserve"> <value>Top left corner</value> </data> <data name="VideoConference_ToolbarPosition_TopRightCorner.Content" xml:space="preserve"> <value>Top right corner</value> </data> <data name="VideoConference_ToolbarPosition_BottomLeftCorner.Content" xml:space="preserve"> <value>Bottom left corner</value> </data> <data name="VideoConference_ToolbarPosition_BottomCenter.Content" xml:space="preserve"> <value>Bottom center</value> </data> <data name="VideoConference_ToolbarPosition_BottomRightCorner.Content" xml:space="preserve"> <value>Bottom right corner</value> </data> <data name="VideoConference_ToolbarMonitor.Header" xml:space="preserve"> <value>Show toolbar on</value> </data> <data name="VideoConference_ToolbarMonitor_Main.Content" xml:space="preserve"> <value>Main monitor</value> </data> <data name="VideoConference_ToolbarMonitor_UnderCursor.Content" xml:space="preserve"> <value>Monitor under cursor</value> </data> <data name="VideoConference_ToolbarMonitor_ActiveWindow.Content" xml:space="preserve"> <value>Active window monitor</value> </data> <data name="VideoConference_ToolbarMonitor_All.Content" xml:space="preserve"> <value>All monitors</value> </data> <data name="VideoConference_ToolbarHide.Header" xml:space="preserve"> <value>Hide toolbar</value> </data> <data name="VideoConference_ToolbarHideMuted.Content" xml:space="preserve"> <value>When both camera and microphone are muted</value> </data> <data name="VideoConference_ToolbarHideNever.Content" xml:space="preserve"> <value>Never</value> </data> <data name="VideoConference_ToolbarHideUnmuted.Content" xml:space="preserve"> <value>When both camera and microphone are unmuted</value> </data> <data name="VideoConference_ToolbarHideTimeout.Content" xml:space="preserve"> <value>After timeout</value> </data> <data name="VideoConference.ModuleTitle" xml:space="preserve"> <value>Video Conference Mute</value> </data> <data name="VideoConference_Camera.Header" xml:space="preserve"> <value>Camera</value> </data> <data name="VideoConference_Camera.Description" xml:space="preserve"> <value>To use this feature, make sure to select PowerToys VideoConference Mute as your camera source in your apps.</value> </data> <data name="VideoConference_Microphone.Header" xml:space="preserve"> <value>Microphone</value> </data> <data name="VideoConference_Toolbar.Header" xml:space="preserve"> <value>Toolbar</value> </data> <data name="VideoConference_Behavior.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="VideoConference_StartupAction.Header" xml:space="preserve"> <value>Startup action</value> </data> <data name="VideoConference_StartupActionNothing.Content" xml:space="preserve"> <value>Nothing</value> </data> <data name="VideoConference_StartupActionUnmute.Content" xml:space="preserve"> <value>Unmute</value> </data> <data name="VideoConference_StartupActionMute.Content" xml:space="preserve"> <value>Mute</value> </data> <data name="VideoConference_Shortcuts.Header" xml:space="preserve"> <value>Shortcuts</value> </data> <data name="VideoConference_CameraOverlayImageAlt.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Camera overlay image preview</value> </data> <data name="VideoConference_CameraOverlayImageBrowse.Content" xml:space="preserve"> <value>Browse</value> </data> <data name="VideoConference_CameraOverlayImageClear.Content" xml:space="preserve"> <value>Clear</value> </data> <data name="Shell_General.Content" xml:space="preserve"> <value>General</value> <comment>Navigation view item name for General</comment> </data> <data name="Shell_Awake.Content" xml:space="preserve"> <value>Awake</value> <comment>Product name: Navigation view item name for Awake</comment> </data> <data name="Shell_PowerLauncher.Content" xml:space="preserve"> <value>PowerToys Run</value> <comment>Product name: Navigation view item name for PowerToys Run</comment> </data> <data name="Shell_PowerRename.Content" xml:space="preserve"> <value>PowerRename</value> <comment>Product name: Navigation view item name for PowerRename</comment> </data> <data name="Shell_ShortcutGuide.Content" xml:space="preserve"> <value>Shortcut Guide</value> <comment>Product name: Navigation view item name for Shortcut Guide</comment> </data> <data name="Shell_PowerPreview.Content" xml:space="preserve"> <value>File Explorer add-ons</value> <comment>Product name: Navigation view item name for File Explorer. Please use File Explorer as in the context of File Explorer in Windows</comment> </data> <data name="Shell_FancyZones.Content" xml:space="preserve"> <value>FancyZones</value> <comment>Product name: Navigation view item name for FancyZones</comment> </data> <data name="Shell_ImageResizer.Content" xml:space="preserve"> <value>Image Resizer</value> <comment>Product name: Navigation view item name for Image Resizer</comment> </data> <data name="Shell_ColorPicker.Content" xml:space="preserve"> <value>Color Picker</value> <comment>Product name: Navigation view item name for Color Picker</comment> </data> <data name="Shell_KeyboardManager.Content" xml:space="preserve"> <value>Keyboard Manager</value> <comment>Product name: Navigation view item name for Keyboard Manager</comment> </data> <data name="Shell_MouseWithoutBorders.Content" xml:space="preserve"> <value>Mouse Without Borders</value> <comment>Product name: Navigation view item name for Mouse Without Borders</comment> </data> <data name="Shell_MouseUtilities.Content" xml:space="preserve"> <value>Mouse utilities</value> <comment>Product name: Navigation view item name for Mouse utilities</comment> </data> <data name="Shell_NavigationMenu_Announce_Collapse" xml:space="preserve"> <value>Navigation closed</value> <comment>Accessibility announcement when the navigation pane collapses</comment> </data> <data name="Shell_NavigationMenu_Announce_Open" xml:space="preserve"> <value>Navigation opened</value> <comment>Accessibility announcement when the navigation pane opens</comment> </data> <data name="KeyboardManager_ConfigHeader.Text" xml:space="preserve"> <value>Current configuration</value> <comment>Keyboard Manager current configuration header</comment> </data> <data name="KeyboardManager.ModuleDescription" xml:space="preserve"> <value>Reconfigure your keyboard by remapping keys and shortcuts</value> <comment>Keyboard Manager page description</comment> </data> <data name="KeyboardManager_EnableToggle.Header" xml:space="preserve"> <value>Enable Keyboard Manager</value> <comment>Keyboard Manager enable toggle header. Do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="KeyboardManager_ProfileDescription.Text" xml:space="preserve"> <value>Select the profile to display the active key remap and shortcuts</value> <comment>Keyboard Manager configuration dropdown description</comment> </data> <data name="KeyboardManager_RemapKeyboardButton.Header" xml:space="preserve"> <value>Remap a key</value> <comment>Keyboard Manager remap keyboard button content</comment> </data> <data name="KeyboardManager_Keys.Header" xml:space="preserve"> <value>Keys</value> <comment>Keyboard Manager remap keyboard header</comment> </data> <data name="KeyboardManager_RemapShortcutsButton.Header" xml:space="preserve"> <value>Remap a shortcut</value> <comment>Keyboard Manager remap shortcuts button</comment> </data> <data name="KeyboardManager_Shortcuts.Header" xml:space="preserve"> <value>Shortcuts</value> <comment>Keyboard Manager remap keyboard header</comment> </data> <data name="KeyboardManager_All_Apps_Description" xml:space="preserve"> <value>All Apps</value> <comment>Should be the same as EditShortcuts_AllApps from keyboard manager editor</comment> </data> <data name="Shortcuts.Header" xml:space="preserve"> <value>Shortcuts</value> </data> <data name="Shortcut.Header" xml:space="preserve"> <value>Shortcut</value> </data> <data name="RemapKeysList.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Current Key Remappings</value> </data> <data name="RemapShortcutsList.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Current Shortcut Remappings</value> </data> <data name="KeyboardManager_RemappedKeysListItem.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Key Remapping</value> <comment>key as in keyboard key</comment> </data> <data name="KeyboardManager_RemappedShortcutsListItem.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Shortcut Remapping</value> </data> <data name="KeyboardManager_RemappedTo.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Remapped to</value> </data> <data name="KeyboardManager_ShortcutRemappedTo.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Remapped to</value> </data> <data name="KeyboardManager_TargetApp.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>For Target Application</value> <comment>What computer application would this be for</comment> </data> <data name="KeyboardManager_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Keyboard Manager</value> <comment>do not loc, product name</comment> </data> <data name="ColorPicker.ModuleDescription" xml:space="preserve"> <value>Quick and simple system-wide color picker.</value> </data> <data name="ColorPicker_EnableColorPicker.Header" xml:space="preserve"> <value>Enable Color Picker</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="ColorPicker_ChangeCursor.Content" xml:space="preserve"> <value>Change cursor when picking a color</value> </data> <data name="PowerLauncher.ModuleDescription" xml:space="preserve"> <value>A quick launcher that has additional capabilities without sacrificing performance.</value> </data> <data name="PowerLauncher_EnablePowerLauncher.Header" xml:space="preserve"> <value>Enable PowerToys Run</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="PowerLauncher_SearchResults.Header" xml:space="preserve"> <value>Search &amp; results</value> </data> <data name="PowerLauncher_SearchResultPreference.Header" xml:space="preserve"> <value>Search result preference</value> </data> <data name="PowerLauncher_UsePinyin.Header" xml:space="preserve"> <value>Use Pinyin</value> </data> <data name="PowerLauncher_UsePinyin.Description" xml:space="preserve"> <value>Experimental: Use Pinyin on the search query. May not work for every plugin.</value> </data> <data name="PowerLauncher_SearchResultPreference_MostRecentlyUsed" xml:space="preserve"> <value>Most recently used</value> </data> <data name="PowerLauncher_SearchResultPreference_AlphabeticalOrder" xml:space="preserve"> <value>Alphabetical order</value> </data> <data name="PowerLauncher_SearchResultPreference_RunningProcessesOpenApplications" xml:space="preserve"> <value>Running processes/open applications</value> </data> <data name="PowerLauncher_SearchTypePreference.Header" xml:space="preserve"> <value>Search type preference</value> </data> <data name="PowerLauncher_SearchTypePreference_ApplicationName" xml:space="preserve"> <value>Application name</value> </data> <data name="PowerLauncher_SearchTypePreference_StringInApplication" xml:space="preserve"> <value>A string that is contained in the application</value> </data> <data name="PowerLauncher_SearchTypePreference_ExecutableName" xml:space="preserve"> <value>Executable name</value> </data> <data name="PowerLauncher_MaximumNumberOfResults.Header" xml:space="preserve"> <value>Number of results shown before scrolling</value> </data> <data name="PowerLauncher_OpenPowerLauncher.Header" xml:space="preserve"> <value>Open PowerToys Run</value> </data> <data name="PowerLauncher_OpenFileLocation.Header" xml:space="preserve"> <value>Open file location</value> </data> <data name="PowerLauncher_CopyPathLocation.Header" xml:space="preserve"> <value>Copy path location</value> </data> <data name="PowerLauncher_OpenConsole.Header" xml:space="preserve"> <value>Open console</value> <comment>console refers to Windows command prompt</comment> </data> <data name="PowerLauncher_OverrideWinRKey.Content" xml:space="preserve"> <value>Override Win+R shortcut</value> </data> <data name="PowerLauncher_OverrideWinSKey.Content" xml:space="preserve"> <value>Override Win+S shortcut</value> </data> <data name="PowerLauncher_IgnoreHotkeysInFullScreen.Content" xml:space="preserve"> <value>Ignore shortcuts in fullscreen mode</value> </data> <data name="PowerLauncher_UseCentralizedKeyboardHook.Header" xml:space="preserve"> <value>Use centralized keyboard hook</value> </data> <data name="PowerLauncher_UseCentralizedKeyboardHook.Description" xml:space="preserve"> <value>Try this if there are issues with the shortcut (PowerToys Run might not get focus when triggered from an elevated window)</value> </data> <data name="PowerLauncher_ClearInputOnLaunch.Content" xml:space="preserve"> <value>Clear the previous query on launch</value> </data> <data name="PowerLauncher_TabSelectsContextButtons.Header" xml:space="preserve"> <value>Tab through context buttons</value> </data> <data name="PowerLauncher_TabSelectsContextButtons.Description" xml:space="preserve"> <value>Pressing tab will first select through the available context buttons of the current selection before moving onto the next result</value> </data> <data name="PowerLauncher_GenerateThumbnailsFromFiles.Header" xml:space="preserve"> <value>Generate thumbnails from files</value> </data> <data name="PowerLauncher_GenerateThumbnailsFromFiles.Description" xml:space="preserve"> <value>Results will try to generate thumbnails for files. Disabling this setting may increase stability and speed</value> </data> <data name="PowerLauncher_SearchQueryResultsWithDelay.Header" xml:space="preserve"> <value>Input Smoothing</value> <comment>This is about adding a delay to wait for more input before executing a search</comment> </data> <data name="PowerLauncher_SearchQueryResultsWithDelay.Description" xml:space="preserve"> <value>Wait for more input before searching. This reduces interface jumpiness and system load.</value> </data> <data name="PowerLauncher_FastSearchInputDelayMs.Header" xml:space="preserve"> <value>Immediate plugins</value> </data> <data name="PowerLauncher_FastSearchInputDelayMs.Description" xml:space="preserve"> <value>Affects the plugins that make the UI wait for their results by this amount. Recommended: 30-50 ms.</value> </data> <data name="PowerLauncher_SlowSearchInputDelayMs.Header" xml:space="preserve"> <value>Background execution plugins</value> </data> <data name="PowerLauncher_SlowSearchInputDelayMs.Description" xml:space="preserve"> <value>Affects the plugins that execute in the background by this amount. Recommended: 100-150 ms.</value> </data> <data name="PowerLauncher_SearchInputDelayMs.Header" xml:space="preserve"> <value>Fast plugin throttle (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="KeyboardManager_KeysMappingLayoutRightHeader.Text" xml:space="preserve"> <value>To:</value> <comment>Keyboard Manager mapping keys view right header</comment> </data> <data name="Appearance_GroupSettings.Text" xml:space="preserve"> <value>Appearance</value> </data> <data name="Fancyzones_ImageHyperlinkToDocs.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>FancyZones windows</value> <comment>do not loc the Product name</comment> </data> <data name="FancyZones.ModuleDescription" xml:space="preserve"> <value>Create window layouts to help make multi-tasking easy.</value> <comment>windows refers to application windows</comment> </data> <data name="FancyZones_DisplayOrWorkAreaChangeMoveWindowsCheckBoxControl.Content" xml:space="preserve"> <value>Keep windows in their zones when the screen resolution or work area changes</value> <comment>windows refers to application windows</comment> </data> <data name="FancyZones_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable FancyZones</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="FancyZones_ExcludeApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="FancyZones_ExcludeApps.Description" xml:space="preserve"> <value>Excludes an application from snapping to zones and will only react to Windows Snap - add one application name per line</value> </data> <data name="FancyZones_HighlightOpacity.Header" xml:space="preserve"> <value>Opacity (%)</value> </data> <data name="FancyZones_HotkeyEditorControl.Header" xml:space="preserve"> <value>Open layout editor</value> <comment>Shortcut to launch the FancyZones layout editor application</comment> </data> <data name="FancyZones_WindowSwitching_GroupSettings.Header" xml:space="preserve"> <value>Switch between windows in the current zone</value> </data> <data name="FancyZones_HotkeyNextTabControl.Header" xml:space="preserve"> <value>Next window</value> </data> <data name="FancyZones_HotkeyPrevTabControl.Header" xml:space="preserve"> <value>Previous window</value> </data> <data name="SettingsPage_SetShortcut.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Shortcut setting</value> </data> <data name="SettingsPage_SetShortcut_Glyph.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Information Symbol</value> </data> <data name="FancyZones_LaunchEditorButtonControl.Header" xml:space="preserve"> <value>Launch layout editor</value> <comment>launches the FancyZones layout editor application</comment> </data> <data name="FancyZones_LaunchEditorButtonControl.Description" xml:space="preserve"> <value>Set and manage your layouts</value> <comment>launches the FancyZones layout editor application</comment> </data> <data name="FancyZones_MakeDraggedWindowTransparentCheckBoxControl.Content" xml:space="preserve"> <value>Make dragged window transparent</value> </data> <data name="FancyZones_MouseDragCheckBoxControl_Header.Content" xml:space="preserve"> <value>Use a non-primary mouse button to toggle zone activation</value> </data> <data name="FancyZones_MouseMiddleClickSpanningMultipleZonesCheckBoxControl_Header.Content" xml:space="preserve"> <value>Use middle-click mouse button to toggle multiple zones spanning</value> </data> <data name="FancyZones_MoveWindowsAcrossAllMonitorsCheckBoxControl.Content" xml:space="preserve"> <value>Move windows between zones across all monitors</value> </data> <data name="FancyZones_OverrideSnapHotkeys.Header" xml:space="preserve"> <value>Override Windows Snap</value> </data> <data name="FancyZones_OverrideSnapHotkeys.Description" xml:space="preserve"> <value>This overrides the Windows Snap shortcut (Win + arrow) to move windows between zones</value> </data> <data name="FancyZones_ShiftDragCheckBoxControl_Header.Content" xml:space="preserve"> <value>Hold Shift key to activate zones while dragging a window</value> </data> <data name="FancyZones_ActivationNoShiftDrag" xml:space="preserve"> <value>Drag windows to activate zones</value> </data> <data name="FancyZones_ShowZonesOnAllMonitorsCheckBoxControl.Content" xml:space="preserve"> <value>Show zones on all monitors while dragging a window</value> </data> <data name="FancyZones_AppLastZoneMoveWindows.Content" xml:space="preserve"> <value>Move newly created windows to their last known zone</value> <comment>windows refers to application windows</comment> </data> <data name="FancyZones_OpenWindowOnActiveMonitor.Content" xml:space="preserve"> <value>Move newly created windows to the current active monitor (Experimental)</value> </data> <data name="FancyZones_UseCursorPosEditorStartupScreen.Header" xml:space="preserve"> <value>Launch editor on the display</value> </data> <data name="FancyZones_UseCursorPosEditorStartupScreen.Description" xml:space="preserve"> <value>When using multiple displays</value> </data> <data name="FancyZones_LaunchPositionMouse.Content" xml:space="preserve"> <value>Where the mouse pointer is</value> </data> <data name="FancyZones_LaunchPositionScreen.Content" xml:space="preserve"> <value>With active focus</value> </data> <data name="FancyZones_ZoneBehavior_GroupSettings.Header" xml:space="preserve"> <value>Zone behavior</value> </data> <data name="FancyZones_ZoneBehavior_GroupSettings.Description" xml:space="preserve"> <value>Manage how zones behave when using FancyZones</value> </data> <data name="FancyZones_Zones.Header" xml:space="preserve"> <value>Zones</value> </data> <data name="FancyZones_ZoneHighlightColor.Header" xml:space="preserve"> <value>Highlight color</value> </data> <data name="FancyZones_ZoneSetChangeMoveWindows.Content" xml:space="preserve"> <value>During zone layout changes, windows assigned to a zone will match new size/positions</value> </data> <data name="AttributionTitle.Text" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="General.ModuleTitle" xml:space="preserve"> <value>General</value> </data> <data name="GeneralPage_CheckForUpdates.Content" xml:space="preserve"> <value>Check for updates</value> </data> <data name="General_SettingsBackupAndRestoreLocationText.Header" xml:space="preserve"> <value>Location</value> </data> <data name="General_SettingsBackupAndRestore_ButtonBackup.Content" xml:space="preserve"> <value>Backup</value> </data> <data name="General_SettingsBackupInfo_FileNameHeader.Text" xml:space="preserve"> <value>File name:</value> </data> <data name="General_SettingsBackupAndRestore_LinkRefresh.Text" xml:space="preserve"> <value>Refresh</value> </data> <data name="General_SettingsBackupAndRestore_ButtonRestore.Content" xml:space="preserve"> <value>Restore</value> </data> <data name="General_SettingsBackupAndRestore_ButtonSelectLocation.Text" xml:space="preserve"> <value>Select folder</value> </data> <data name="GeneralPage_UpdateNow.Content" xml:space="preserve"> <value>Update now</value> </data> <data name="GeneralPage_PrivacyStatement_URL.Text" xml:space="preserve"> <value>Privacy statement</value> </data> <data name="GeneralPage_ReportAbug.Text" xml:space="preserve"> <value>Report a bug</value> <comment>Report an issue inside powertoys</comment> </data> <data name="GeneralPage_RequestAFeature_URL.Text" xml:space="preserve"> <value>Request a feature</value> <comment>Tell our team what we should build</comment> </data> <data name="GeneralPage_RestartAsAdmin_Button.Content" xml:space="preserve"> <value>Restart PowerToys as administrator</value> <comment>running PowerToys as a higher level user, account is typically referred to as an admin / administrator</comment> </data> <data name="GeneralPage_RunAtStartUp.Header" xml:space="preserve"> <value>Run at startup</value> </data> <data name="GeneralPage_RunAtStartUp.Description" xml:space="preserve"> <value>PowerToys will launch automatically</value> </data> <data name="PowerRename.ModuleDescription" xml:space="preserve"> <value>A Windows Shell extension for more advanced bulk renaming using search &amp; replace or regular expressions.</value> </data> <data name="PowerRename_ShellIntegration.Header" xml:space="preserve"> <value>Shell integration</value> <comment>This refers to directly integrating in with Windows</comment> </data> <data name="PowerRename_Toggle_Enable.Header" xml:space="preserve"> <value>Enable PowerRename</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="RadioButtons_Name_Theme.Text" xml:space="preserve"> <value>Settings theme</value> </data> <data name="PowerRename_Toggle_HideIcon.Content" xml:space="preserve"> <value>Hide icon in context menu</value> </data> <data name="PowerRename_Toggle_ContextMenu.Header" xml:space="preserve"> <value>Show PowerRename in</value> </data> <data name="PowerRename_Toggle_StandardContextMenu.Content" xml:space="preserve"> <value>Default and extended context menu</value> </data> <data name="PowerRename_Toggle_ExtendedContextMenu.Content" xml:space="preserve"> <value>Extended context menu only</value> </data> <data name="ExtendedContextMenuInfo.Title" xml:space="preserve"> <value>Press Shift + right-click on files to open the extended context menu</value> </data> <data name="PowerRename_Toggle_MaxDispListNum.Header" xml:space="preserve"> <value>Maximum number of items</value> </data> <data name="PowerRename_Toggle_RestoreFlagsOnLaunch.Header" xml:space="preserve"> <value>Show recently used strings</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_MD.Header" xml:space="preserve"> <value>Markdown</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_MD.Description" xml:space="preserve"> <value>.md, .markdown, .mdown, .mkdn, .mkd, .mdwn, .mdtxt, .mdtext</value> <comment>File extensions, should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_Monaco.Header" xml:space="preserve"> <value>Source code files (Monaco)</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_Monaco.Description" xml:space="preserve"> <value>.cpp, .py, .json, .xml, .csproj, ...</value> <comment>File extensions should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_SVG.Header" xml:space="preserve"> <value>Scalable Vector Graphics</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_SVG.Description" xml:space="preserve"> <value>.svg</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_Preview_SVG_Color_Mode.Header" xml:space="preserve"> <value>Color mode</value> </data> <data name="FileExplorerPreview_Preview_SVG_Color_Mode_Default.Content" xml:space="preserve"> <value>Windows default</value> </data> <data name="FileExplorerPreview_Preview_SVG_Color_Solid_Color.Content" xml:space="preserve"> <value>Solid color</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade.Content" xml:space="preserve"> <value>Checkered pattern</value> </data> <data name="FileExplorerPreview_Preview_SVG_Background_Color.Header" xml:space="preserve"> <value>Color</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_Mode.Header" xml:space="preserve"> <value>Checkered shade</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_1.Content" xml:space="preserve"> <value>Light</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_2.Content" xml:space="preserve"> <value>Medium</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_3.Content" xml:space="preserve"> <value>Dark</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_PDF.Header" xml:space="preserve"> <value>Portable Document Format</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_PDF.Description" xml:space="preserve"> <value>.pdf</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_SVG.Header" xml:space="preserve"> <value>Scalable Vector Graphics</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_SVG.Description" xml:space="preserve"> <value>.svg</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_STL.Header" xml:space="preserve"> <value>Stereolithography</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_STL.Description" xml:space="preserve"> <value>.stl</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_Color_Thumbnail_STL.Header" xml:space="preserve"> <value>Color</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_QOI.Header" xml:space="preserve"> <value>Quite Ok Image</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_QOI.Description" xml:space="preserve"> <value>.qoi</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_QOI.Header" xml:space="preserve"> <value>Quite OK Image</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_QOI.Description" xml:space="preserve"> <value>.qoi</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_PDF.Header" xml:space="preserve"> <value>Portable Document Format</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_PDF.Description" xml:space="preserve"> <value>.pdf</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview.ModuleDescription" xml:space="preserve"> <value>These settings allow you to manage your Windows File Explorer custom preview handlers.</value> </data> <data name="PowerRename_AutoCompleteHeader.Header" xml:space="preserve"> <value>Auto-complete</value> </data> <data name="OpenSource_Notice.Text" xml:space="preserve"> <value>Open-source notice</value> </data> <data name="PowerRename_Toggle_AutoComplete.Header" xml:space="preserve"> <value>Enable auto-complete for the search &amp; replace fields</value> </data> <data name="FancyZones_BorderColor.Header" xml:space="preserve"> <value>Border color</value> </data> <data name="FancyZones_InActiveColor.Header" xml:space="preserve"> <value>Inactive color</value> </data> <data name="ShortcutGuide.ModuleDescription" xml:space="preserve"> <value>Shows a help overlay with Windows shortcuts.</value> </data> <data name="ShortcutGuide_PressTimeForGlobalWindowsShortcuts.Header" xml:space="preserve"> <value>Press duration before showing global Windows shortcuts (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="ShortcutGuide_ActivationMethod.Header" xml:space="preserve"> <value>Activation method</value> </data> <data name="ShortcutGuide_ActivationMethod.Description" xml:space="preserve"> <value>Use a shortcut or press the Windows key for some time to activate</value> </data> <data name="Radio_ShortcutGuide_ActivationMethod_CustomizedShortcut.Content" xml:space="preserve"> <value>Custom shortcut</value> </data> <data name="Radio_ShortcutGuide_ActivationMethod_LongPressWindowsKey.Content" xml:space="preserve"> <value>Hold down Windows key</value> </data> <data name="ShortcutGuide_PressWinKeyWarning.Title" xml:space="preserve"> <value>In some edge cases Shortcut Guide might not function correctly when using this activation method</value> </data> <data name="Appearance_Behavior.Header" xml:space="preserve"> <value>Appearance &amp; behavior</value> </data> <data name="General_SettingsBackupAndRestoreTitle.Header" xml:space="preserve"> <value>Backup &amp; restore</value> </data> <data name="General_SettingsBackupAndRestore.Header" xml:space="preserve"> <value>Backup and restore your settings</value> </data> <data name="General_SettingsBackupAndRestore.Description" xml:space="preserve"> <value>PowerToys will restart automatically if needed</value> </data> <data name="ShortcutGuide_Enable.Header" xml:space="preserve"> <value>Enable Shortcut Guide</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="ShortcutGuide_OverlayOpacity.Header" xml:space="preserve"> <value>Background opacity (%)</value> </data> <data name="ShortcutGuide_DisabledApps.Header" xml:space="preserve"> <value>Exclude apps</value> </data> <data name="ShortcutGuide_DisabledApps.Description" xml:space="preserve"> <value>Turns off Shortcut Guide when these applications have focus - add one application name per line</value> </data> <data name="ShortcutGuide_DisabledApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> <comment>Don't translate outlook.exe</comment> </data> <data name="ImageResizer_CustomSizes.Header" xml:space="preserve"> <value>Image sizes</value> </data> <data name="ImageResizer_Presets.Header" xml:space="preserve"> <value>Presets</value> </data> <data name="ImageResizer_Presets.Description" xml:space="preserve"> <value>Manage preset sizes that can be used in the editor</value> </data> <data name="ImageResizer_FilenameFormatHeader.Description" xml:space="preserve"> <value>This format is used as the filename for resized images</value> </data> <data name="ImageResizer.ModuleDescription" xml:space="preserve"> <value>Lets you resize images by right-clicking.</value> </data> <data name="ImageResizer_EnableToggle.Header" xml:space="preserve"> <value>Enable Image Resizer</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="ImagesSizesListView.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Image Size</value> </data> <data name="ImageResizer_Configurations.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Configurations</value> </data> <data name="ImageResizer_Name.Header" xml:space="preserve"> <value>Name</value> </data> <data name="ImageResizer_Fit.Header" xml:space="preserve"> <value>Fit</value> </data> <data name="ImageResizer_Width.Header" xml:space="preserve"> <value>Width</value> </data> <data name="ImageResizer_Height.Header" xml:space="preserve"> <value>Height</value> </data> <data name="ImageResizer_Size.Header" xml:space="preserve"> <value>Unit</value> </data> <data name="RemoveButton.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Remove</value> <comment>Removes a user defined setting group for Image Resizer</comment> </data> <data name="RemoveItem.Text" xml:space="preserve"> <value>Delete</value> </data> <data name="ImageResizer_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Image Resizer</value> </data> <data name="ImageResizer_AddSizeButton.Content" xml:space="preserve"> <value>Add new size</value> </data> <data name="ImageResizer_SaveSizeButton.Label" xml:space="preserve"> <value>Save sizes</value> </data> <data name="ImageResizer_Encoding.Header" xml:space="preserve"> <value>JPEG quality level (%)</value> </data> <data name="ImageResizer_PNGInterlacing.Header" xml:space="preserve"> <value>PNG interlacing</value> </data> <data name="ImageResizer_TIFFCompression.Header" xml:space="preserve"> <value>TIFF compression</value> </data> <data name="File.Header" xml:space="preserve"> <value>File</value> <comment>as in a computer file</comment> </data> <data name="Default.Content" xml:space="preserve"> <value>Default</value> </data> <data name="ImageResizer_ENCODER_TIFF_CCITT3.Content" xml:space="preserve"> <value>CCITT3</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_CCITT4.Content" xml:space="preserve"> <value>CCITT4</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_Default.Content" xml:space="preserve"> <value>Default</value> </data> <data name="ImageResizer_ENCODER_TIFF_LZW.Content" xml:space="preserve"> <value>LZW</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_None.Content" xml:space="preserve"> <value>None</value> </data> <data name="ImageResizer_ENCODER_TIFF_RLE.Content" xml:space="preserve"> <value>RLE</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_Zip.Content" xml:space="preserve"> <value>Zip</value> <comment>do not loc</comment> </data> <data name="ImageResizer_FallbackEncoder_BMP.Content" xml:space="preserve"> <value>BMP encoder</value> </data> <data name="ImageResizer_FallbackEncoder_GIF.Content" xml:space="preserve"> <value>GIF encoder</value> </data> <data name="ImageResizer_FallbackEncoder_JPEG.Content" xml:space="preserve"> <value>JPEG encoder</value> </data> <data name="ImageResizer_FallbackEncoder_PNG.Content" xml:space="preserve"> <value>PNG encoder</value> </data> <data name="ImageResizer_FallbackEncoder_TIFF.Content" xml:space="preserve"> <value>TIFF encoder</value> </data> <data name="ImageResizer_FallbackEncoder_WMPhoto.Content" xml:space="preserve"> <value>WMPhoto encoder</value> </data> <data name="ImageResizer_Sizes_Fit_Fill.Content" xml:space="preserve"> <value>Fill</value> <comment>Refers to filling an image into a certain size. It could overflow</comment> </data> <data name="ImageResizer_Sizes_Fit_Fill_ThirdPersonSingular.Text" xml:space="preserve"> <value>Fill</value> <comment>Refers to filling an image into a certain size. It could overflow</comment> </data> <data name="ImageResizer_Sizes_Fit_Fit.Content" xml:space="preserve"> <value>Fit</value> <comment>Refers to fitting an image into a certain size. It won't overflow</comment> </data> <data name="ImageResizer_Sizes_Fit_Stretch.Content" xml:space="preserve"> <value>Stretch</value> <comment>Refers to stretching an image into a certain size. Won't overflow but could distort.</comment> </data> <data name="ImageResizer_Sizes_Units_CM.Content" xml:space="preserve"> <value>Centimeters</value> </data> <data name="ImageResizer_Sizes_Units_Inches.Content" xml:space="preserve"> <value>Inches</value> </data> <data name="ImageResizer_Sizes_Units_Percent.Content" xml:space="preserve"> <value>Percent</value> </data> <data name="ImageResizer_Sizes_Units_Pixels.Content" xml:space="preserve"> <value>Pixels</value> </data> <data name="Off.Content" xml:space="preserve"> <value>Off</value> </data> <data name="On.Content" xml:space="preserve"> <value>On</value> </data> <data name="GeneralPage_ToggleSwitch_AlwaysRunElevated_Link.Content" xml:space="preserve"> <value>Learn more about administrator mode</value> </data> <data name="GeneralPage_ToggleSwitch_AutoDownloadUpdates.Header" xml:space="preserve"> <value>Download updates automatically</value> </data> <data name="GeneralPage_ToggleSwitch_AutoDownloadUpdates.Description" xml:space="preserve"> <value>Except on metered connections</value> </data> <data name="GeneralPage_ToggleSwitch_RunningAsAdminNote.Text" xml:space="preserve"> <value>Currently running as administrator</value> </data> <data name="GeneralSettings_AlwaysRunAsAdminText.Header" xml:space="preserve"> <value>Always run as administrator</value> </data> <data name="GeneralSettings_AlwaysRunAsAdminText.Description" xml:space="preserve"> <value>You need to run as administrator to use this setting</value> </data> <data name="GeneralSettings_RunningAsUserText" xml:space="preserve"> <value>Running as user</value> </data> <data name="GeneralSettings_RunningAsAdminText" xml:space="preserve"> <value>Running as administrator</value> </data> <data name="FancyZones.ModuleTitle" xml:space="preserve"> <value>FancyZones</value> </data> <data name="FileExplorerPreview.ModuleTitle" xml:space="preserve"> <value>File Explorer</value> </data> <data name="FileExplorerPreview_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>File Explorer</value> <comment>Use same translation as Windows does for File Explorer</comment> </data> <data name="ImageResizer.ModuleTitle" xml:space="preserve"> <value>Image Resizer</value> </data> <data name="KeyboardManager.ModuleTitle" xml:space="preserve"> <value>Keyboard Manager</value> </data> <data name="ColorPicker.ModuleTitle" xml:space="preserve"> <value>Color Picker</value> </data> <data name="PowerLauncher.ModuleTitle" xml:space="preserve"> <value>PowerToys Run</value> </data> <data name="PowerToys_Run_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>PowerToys Run</value> </data> <data name="PowerRename.ModuleTitle" xml:space="preserve"> <value>PowerRename</value> <comment>do not loc the product name</comment> </data> <data name="PowerRename_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>PowerRename</value> <comment>do not loc</comment> </data> <data name="ShortcutGuide.ModuleTitle" xml:space="preserve"> <value>Shortcut Guide</value> </data> <data name="Shortcut_Guide_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Shortcut Guide</value> </data> <data name="General_Repository.Text" xml:space="preserve"> <value>GitHub repository</value> </data> <data name="General_Version.Header" xml:space="preserve"> <value>Version</value> </data> <data name="General_VersionLastChecked.Text" xml:space="preserve"> <value>Last checked: </value> </data> <data name="General_SettingsBackupInfo_DateHeader.Text" xml:space="preserve"> <value>Created at:</value> </data> <data name="General_SettingsBackupAndRestoreStatusInfo.Header" xml:space="preserve"> <value>Backup information</value> </data> <data name="General_SettingsBackupInfo_SourceHeader.Text" xml:space="preserve"> <value>Source machine:</value> </data> <data name="General_SettingsBackupInfo_StatusHeader.Text" xml:space="preserve"> <value>Status:</value> </data> <data name="General_Version.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Version</value> </data> <data name="Admin_mode.Header" xml:space="preserve"> <value>Administrator mode</value> </data> <data name="FancyZones_RestoreSize.Content" xml:space="preserve"> <value>Restore the original size of windows when unsnapping</value> </data> <data name="ImageResizer_FallBackEncoderText.Header" xml:space="preserve"> <value>Fallback encoder</value> </data> <data name="ImageResizer_FileFormatDescription.Text" xml:space="preserve"> <value>The following parameters can be used:</value> </data> <data name="ImageResizer_FilenameFormatHeader.Header" xml:space="preserve"> <value>Filename format</value> </data> <data name="ImageResizer_FileModifiedDate.Header" xml:space="preserve"> <value>File modified timestamp</value> </data> <data name="ImageResizer_FileModifiedDate.Description" xml:space="preserve"> <value>Used as the 'modified timestamp' in the file properties</value> </data> <data name="ImageResizer_UseOriginalDate.Content" xml:space="preserve"> <value>Original file timestamp</value> </data> <data name="ImageResizer_UseResizeDate.Content" xml:space="preserve"> <value>Timestamp of resize action</value> </data> <data name="Encoding.Header" xml:space="preserve"> <value>Encoding</value> </data> <data name="KeyboardManager_RemapKeyboardButton.Description" xml:space="preserve"> <value>Remap keys to other keys or shortcuts</value> </data> <data name="KeyboardManager_RemapShortcutsButton.Description" xml:space="preserve"> <value>Remap shortcuts to other shortcuts or keys for all or specific applications</value> </data> <data name="General.ModuleDescription" xml:space="preserve"> <value>Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. Made with 💗 by Microsoft and the PowerToys community.</value> <comment>Windows refers to the OS</comment> </data> <data name="FancyZones_SpanZonesAcrossMonitors.Header" xml:space="preserve"> <value>Allow zones to span across monitors</value> </data> <data name="ImageResizer_Formatting_ActualHeight.Text" xml:space="preserve"> <value>Actual height</value> </data> <data name="ImageResizer_Formatting_ActualWidth.Text" xml:space="preserve"> <value>Actual width</value> </data> <data name="ImageResizer_Formatting_Filename.Text" xml:space="preserve"> <value>Original filename</value> </data> <data name="ImageResizer_Formatting_SelectedHeight.Text" xml:space="preserve"> <value>Selected height</value> </data> <data name="ImageResizer_Formatting_SelectedWidth.Text" xml:space="preserve"> <value>Selected width</value> </data> <data name="ImageResizer_Formatting_Sizename.Text" xml:space="preserve"> <value>Size name</value> </data> <data name="FancyZones_MoveWindowsBasedOnPositionCheckBoxControl.Content" xml:space="preserve"> <value>Move windows based on their position</value> <comment>Windows refers to application windows</comment> </data> <data name="GeneralSettings_NewVersionIsAvailable" xml:space="preserve"> <value>New update available</value> </data> <data name="GeneralSettings_VersionIsLatest" xml:space="preserve"> <value>PowerToys is up to date.</value> </data> <data name="FileExplorerPreview_IconThumbnail_GroupSettings.Header" xml:space="preserve"> <value>Thumbnail icon Preview</value> </data> <data name="FileExplorerPreview_IconThumbnail_GroupSettings.Description" xml:space="preserve"> <value>Select the file types for which thumbnail previews must be rendered.</value> </data> <data name="FileExplorerPreview_PreviewPane.Header" xml:space="preserve"> <value>Preview Pane</value> </data> <data name="FileExplorerPreview_PreviewPane.Description" xml:space="preserve"> <value>Select the file types which must be rendered in the Preview Pane. Ensure that Preview Pane is open by toggling the view with Alt + P in File Explorer.</value> <comment>Preview Pane and File Explorer are app/feature names in Windows. 'Alt + P' is a shortcut</comment> </data> <data name="FileExplorerPreview_RunAsAdminRequired.Title" xml:space="preserve"> <value>You need to run as administrator to modify these settings.</value> </data> <data name="FileExplorerPreview_RebootRequired.Title" xml:space="preserve"> <value>A reboot may be required for changes to these settings to take effect</value> </data> <data name="FileExplorerPreview_PreviewHandlerOutlookIncompatibility.Title" xml:space="preserve"> <value>Enabling the preview handlers will override other preview handlers already installed - there have been reports of incompatibility between Outlook and the PDF Preview Handler.</value> <comment>Outlook is the name of a Microsoft product</comment> </data> <data name="FileExplorerPreview_ThumbnailsMightNotAppearOnRemoteFolders.Title" xml:space="preserve"> <value>Thumbnails might not appear on paths managed by cloud storage solutions like OneDrive, since these solutions may get their thumbnails from the cloud instead of generating them locally.</value> <comment>OneDrive is the name of a Microsoft product</comment> </data> <data name="FancyZones_ExcludeApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> <comment>Don't translate outlook.exe</comment> </data> <data name="ImageResizer_FilenameFormatPlaceholder.PlaceholderText" xml:space="preserve"> <value>Example: %1 (%2)</value> </data> <data name="ImageResizer_FilenameParameters.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Filename parameters</value> </data> <data name="Radio_Theme_Dark.Content" xml:space="preserve"> <value>Dark</value> <comment>Dark refers to color, not weight</comment> </data> <data name="Radio_Theme_Light.Content" xml:space="preserve"> <value>Light</value> <comment>Light refers to color, not weight</comment> </data> <data name="Radio_Theme_Default.Content" xml:space="preserve"> <value>Windows default</value> <comment>Windows refers to the Operating system</comment> </data> <data name="Windows_Color_Settings.Content" xml:space="preserve"> <value>Windows color settings</value> <comment>Windows refers to the Operating system</comment> </data> <data name="ColorPicker_CopiedColorRepresentation.Header" xml:space="preserve"> <value>Default color format</value> </data> <data name="ColorPickerFirst.Content" xml:space="preserve"> <value>Pick a color and open editor</value> </data> <data name="EditorFirst.Content" xml:space="preserve"> <value>Open editor</value> </data> <data name="ColorPickerOnly.Content" xml:space="preserve"> <value>Only pick a color</value> </data> <data name="ColorPicker_ActivationAction.Header" xml:space="preserve"> <value>Activation behavior</value> </data> <data name="ColorFormats.Header" xml:space="preserve"> <value>Picker behavior</value> </data> <data name="ColorPicker_CopiedColorRepresentation.Description" xml:space="preserve"> <value>This format will be copied to your clipboard</value> </data> <data name="KBM_KeysCannotBeRemapped.Text" xml:space="preserve"> <value>Learn more about remapping limitations</value> <comment>This is a link that will discuss what is and is not possible for Keyboard manager to remap</comment> </data> <data name="FancyZones_Editor_GroupSettings.Header" xml:space="preserve"> <value>Editor</value> <comment>refers to the FancyZones editor</comment> </data> <data name="FancyZones_WindowBehavior_GroupSettings.Header" xml:space="preserve"> <value>Window behavior</value> </data> <data name="FancyZones_WindowBehavior_GroupSettings.Description" xml:space="preserve"> <value>Manage how windows behave when using FancyZones</value> </data> <data name="FancyZones_Windows.Header" xml:space="preserve"> <value>Windows</value> <comment>Do translate: refers to a set of application windows, not the product name</comment> </data> <data name="PowerRename_BehaviorHeader.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="PowerRename_Toggle_UseBoostLib.Header" xml:space="preserve"> <value>Use Boost library</value> <comment>Boost is a product name, should not be translated</comment> </data> <data name="PowerRename_Toggle_UseBoostLib.Description" xml:space="preserve"> <value>Provides extended features but may use different regex syntax</value> <comment>Boost is a product name, should not be translated</comment> </data> <data name="MadeWithOssLove.Text" xml:space="preserve"> <value>Made with 💗 by Microsoft and the PowerToys community.</value> </data> <data name="ColorPicker_ColorFormats.Header" xml:space="preserve"> <value>Color formats</value> </data> <data name="ColorPicker_ColorFormats.Description" xml:space="preserve"> <value>Configure the color formats (edit, delete, hide, reorder them)</value> </data> <data name="MoveUp.Text" xml:space="preserve"> <value>Move up</value> </data> <data name="MoveDown.Text" xml:space="preserve"> <value>Move down</value> </data> <data name="ColorPickerAddNewFormat.Content" xml:space="preserve"> <value>Add new format</value> </data> <data name="NewColorFormat.Header" xml:space="preserve"> <value>Format</value> </data> <data name="NewColorName.Header" xml:space="preserve"> <value>Name</value> </data> <data name="AddCustomColorFormat" xml:space="preserve"> <value>Add custom color format</value> </data> <data name="ColorFormatSave" xml:space="preserve"> <value>Save</value> </data> <data name="EditCustomColorFormat" xml:space="preserve"> <value>Edit custom color format</value> </data> <data name="ColorFormatUpdate" xml:space="preserve"> <value>Update</value> </data> <data name="CustomColorFormatDefaultName" xml:space="preserve"> <value>My Format</value> </data> <data name="ColorFormatDialog.SecondaryButtonText" xml:space="preserve"> <value>Cancel</value> </data> <data name="ColorFormatEditorHelpline1.Text" xml:space="preserve"> <value>The following parameters can be used:</value> </data> <data name="Help_red" xml:space="preserve"> <value>red</value> </data> <data name="Help_green" xml:space="preserve"> <value>green</value> </data> <data name="Help_blue" xml:space="preserve"> <value>blue</value> </data> <data name="Help_alpha" xml:space="preserve"> <value>alpha</value> </data> <data name="Help_cyan" xml:space="preserve"> <value>cyan</value> </data> <data name="Help_magenta" xml:space="preserve"> <value>magenta</value> </data> <data name="Help_yellow" xml:space="preserve"> <value>yellow</value> </data> <data name="Help_black_key" xml:space="preserve"> <value>black key</value> </data> <data name="Help_hue" xml:space="preserve"> <value>hue</value> </data> <data name="Help_hueNat" xml:space="preserve"> <value>hue (natural)</value> </data> <data name="Help_saturationI" xml:space="preserve"> <value>saturation (HSI)</value> </data> <data name="Help_saturationL" xml:space="preserve"> <value>saturation (HSL)</value> </data> <data name="Help_saturationB" xml:space="preserve"> <value>saturation (HSB)</value> </data> <data name="Help_brightness" xml:space="preserve"> <value>brightness</value> </data> <data name="Help_intensity" xml:space="preserve"> <value>intensity</value> </data> <data name="Help_lightnessNat" xml:space="preserve"> <value>lightness (nat)</value> </data> <data name="Help_lightnessCIE" xml:space="preserve"> <value>lightness (CIE)</value> </data> <data name="Help_value" xml:space="preserve"> <value>value</value> </data> <data name="Help_whiteness" xml:space="preserve"> <value>whiteness</value> </data> <data name="Help_blackness" xml:space="preserve"> <value>blackness</value> </data> <data name="Help_chromaticityA" xml:space="preserve"> <value>chromaticityA</value> </data> <data name="Help_chromaticityB" xml:space="preserve"> <value>chromaticityB</value> </data> <data name="Help_X_value" xml:space="preserve"> <value>X value</value> </data> <data name="Help_Y_value" xml:space="preserve"> <value>Y value</value> </data> <data name="Help_Z_value" xml:space="preserve"> <value>Z value</value> </data> <data name="Help_decimal_value_RGB" xml:space="preserve"> <value>decimal value (RGB)</value> </data> <data name="Help_decimal_value_BGR" xml:space="preserve"> <value>decimal value (BGR)</value> </data> <data name="Help_color_name" xml:space="preserve"> <value>color name</value> </data> <data name="ColorFormatEditorHelpline2.Text" xml:space="preserve"> <value>The red, green, blue and alpha values can be formatted to the following formats:</value> </data> <data name="Help_byte" xml:space="preserve"> <value>byte value (default)</value> </data> <data name="Help_hexL1" xml:space="preserve"> <value>hex lowercase one digit</value> </data> <data name="Help_hexU1" xml:space="preserve"> <value>hex uppercase one digit</value> </data> <data name="Help_hexL2" xml:space="preserve"> <value>hex lowercase two digits</value> </data> <data name="Help_hexU2" xml:space="preserve"> <value>hex uppercase two digits</value> </data> <data name="Help_floatWith" xml:space="preserve"> <value>float with leading zero</value> </data> <data name="Help_floatWithout" xml:space="preserve"> <value>float without leading zero</value> </data> <data name="ColorFormatEditorHelpline3.Text" xml:space="preserve"> <value>Example: %ReX means red value in hex uppercase two digits format.</value> </data> <data name="ColorPicker_ShowColorName.Header" xml:space="preserve"> <value>Show color name</value> </data> <data name="ColorPicker_ShowColorName.Description" xml:space="preserve"> <value>This will show the name of the color when picking a color</value> </data> <data name="ImageResizer_DefaultSize_Large" xml:space="preserve"> <value>Large</value> <comment>The size of the image</comment> </data> <data name="ImageResizer_DefaultSize_Medium" xml:space="preserve"> <value>Medium</value> <comment>The size of the image</comment> </data> <data name="ImageResizer_DefaultSize_Phone" xml:space="preserve"> <value>Phone</value> <comment>The size of the image referring to a Mobile Phone typical image size</comment> </data> <data name="ImageResizer_DefaultSize_Small" xml:space="preserve"> <value>Small</value> <comment>The size of the image</comment> </data> <data name="FancyZones_MoveWindowBasedOnRelativePosition_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Windows key + Up, down, left or right arrow key to move windows based on relative position</value> </data> <data name="FancyZones_MoveWindowLeftRightBasedOnZoneIndex_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Windows key + Left or right arrow keys to move windows based on zone index</value> </data> <data name="FancyZones_MoveWindowBasedOnRelativePosition_Description.Text" xml:space="preserve"> <value>Windows key +    or </value> <comment>Do not loc the icons (hex numbers)</comment> </data> <data name="FancyZones_MoveWindowLeftRightBasedOnZoneIndex_Description.Text" xml:space="preserve"> <value>Windows key +  or </value> <comment>Do not loc the icons (hex numbers)</comment> </data> <data name="FancyZones_MoveWindowBasedOnRelativePosition.Text" xml:space="preserve"> <value>Relative position</value> </data> <data name="FancyZones_MoveWindow.Header" xml:space="preserve"> <value>Move windows based on</value> </data> <data name="FancyZones_MoveWindowLeftRightBasedOnZoneIndex.Text" xml:space="preserve"> <value>Zone index</value> </data> <data name="ColorPicker_Editor.Header" xml:space="preserve"> <value>Color formats</value> </data> <data name="FancyZones_OverlappingZonesClosestCenter.Content" xml:space="preserve"> <value>Activate the zone whose center is closest to the cursor</value> </data> <data name="FancyZones_OverlappingZonesLargest.Content" xml:space="preserve"> <value>Activate the largest zone by area</value> </data> <data name="FancyZones_OverlappingZonesPositional.Content" xml:space="preserve"> <value>Split the overlapped area into multiple activation targets</value> </data> <data name="FancyZones_OverlappingZonesSmallest.Content" xml:space="preserve"> <value>Activate the smallest zone by area</value> </data> <data name="FancyZones_OverlappingZones.Header" xml:space="preserve"> <value>When multiple zones overlap</value> </data> <data name="PowerLauncher_Plugins.Header" xml:space="preserve"> <value>Plugins</value> </data> <data name="PowerLauncher_ActionKeyword.Header" xml:space="preserve"> <value>Direct activation command</value> </data> <data name="PowerLauncher_AuthoredBy.Text" xml:space="preserve"> <value>Authored by</value> <comment>example: Authored by Microsoft</comment> </data> <data name="PowerLauncher_IncludeInGlobalResultTitle.Text" xml:space="preserve"> <value>Include in global result</value> </data> <data name="PowerLauncher_IncludeInGlobalResultDescription.Text" xml:space="preserve"> <value>Show results on queries without direct activation command</value> </data> <data name="PowerLauncher_EnablePluginToggle.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Enable plugin</value> </data> <data name="PowerLauncher_EnablePluginToggle.OnContent" xml:space="preserve"> <value>On</value> </data> <data name="PowerLauncher_EnablePluginToggle.OffContent" xml:space="preserve"> <value>Off</value> </data> <data name="Run_AdditionalOptions.Text" xml:space="preserve"> <value>Additional options</value> </data> <data name="Run_NotAccessibleWarning.Title" xml:space="preserve"> <value>Please define an activation command or allow this plugin to be used in the global results.</value> </data> <data name="Run_AllPluginsDisabled.Title" xml:space="preserve"> <value>PowerToys Run can't provide any results without plugins</value> </data> <data name="Run_AllPluginsDisabled.Message" xml:space="preserve"> <value>Enable at least one plugin to get started</value> </data> <data name="Run_PluginUse.Header" xml:space="preserve"> <value>Plugins</value> </data> <data name="Run_PluginUseDescription.Text" xml:space="preserve"> <value>Include or remove plugins from the global results, change the direct activation phrase and configure additional options</value> </data> <data name="Run_PositionAppearance_GroupSettings.Header" xml:space="preserve"> <value>Position &amp; appearance</value> </data> <data name="Run_PositionHeader.Header" xml:space="preserve"> <value>Preferred monitor position</value> <comment>as in Show PowerToys Run on primary monitor</comment> </data> <data name="Run_PositionHeader.Description" xml:space="preserve"> <value>If multiple monitors are in use, PowerToys Run can be launched on the desired monitor</value> <comment>as in Show PowerToys Run on primary monitor</comment> </data> <data name="Run_Radio_Position_Cursor.Content" xml:space="preserve"> <value>Monitor with mouse cursor</value> </data> <data name="Run_Radio_Position_Focus.Content" xml:space="preserve"> <value>Monitor with focused window</value> </data> <data name="Run_Radio_Position_Primary_Monitor.Content" xml:space="preserve"> <value>Primary monitor</value> </data> <data name="Run_PluginsLoading.Text" xml:space="preserve"> <value>Plugins are loading...</value> </data> <data name="ColorPicker_ButtonDown.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Move the color down</value> </data> <data name="ColorPicker_ButtonUp.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Move the color up</value> </data> <data name="FancyZones_FlashZonesOnQuickSwitch.Content" xml:space="preserve"> <value>Flash zones when switching layout</value> </data> <data name="FancyZones_Layouts.Header" xml:space="preserve"> <value>Layouts</value> </data> <data name="FancyZones_QuickLayoutSwitch.Header" xml:space="preserve"> <value>Enable quick layout switch</value> </data> <data name="FancyZones_QuickLayoutSwitch.Description" xml:space="preserve"> <value>Layout-specific shortcuts can be configured in the editor</value> </data> <data name="FancyZones_QuickLayoutSwitch_GroupSettings.Text" xml:space="preserve"> <value>Quick layout switch</value> </data> <data name="Activation_Shortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="Activation_Shortcut.Description" xml:space="preserve"> <value>Customize the shortcut to activate this module</value> </data> <data name="Oobe_GetStarted.Text" xml:space="preserve"> <value>Let's get started!</value> </data> <data name="Oobe_PowerToysDescription.Text" xml:space="preserve"> <value>Welcome to PowerToys! These overviews will help you quickly learn the basics of all our utilities.</value> </data> <data name="Oobe_GettingStarted.Text" xml:space="preserve"> <value>Getting started</value> </data> <data name="Oobe_Launch.Text" xml:space="preserve"> <value>Launch</value> </data> <data name="Launch_ColorPicker.Content" xml:space="preserve"> <value>Launch Color Picker</value> </data> <data name="Oobe_LearnMore.Text" xml:space="preserve"> <value>Learn more about</value> </data> <data name="Oobe_ColorPicker.Description" xml:space="preserve"> <value>Color Picker is a system-wide color selection tool for Windows that enables you to pick colors from any currently running application and automatically copies it in a configurable format to your clipboard.</value> </data> <data name="Oobe_FancyZones.Description" xml:space="preserve"> <value>FancyZones is a window manager that makes it easy to create complex window layouts and quickly position windows into those layouts.</value> </data> <data name="Oobe_FileLocksmith.Description" xml:space="preserve"> <value>File Locksmith lists which processes are using the selected files or directories and allows closing those processes.</value> </data> <data name="Oobe_FileExplorer.Description" xml:space="preserve"> <value>PowerToys introduces add-ons to the Windows File Explorer that will enable files like Markdown (.md), PDF (.pdf), SVG (.svg), STL (.stl), G-code (.gcode) and developer files to be viewed in the preview pane. It introduces File Explorer thumbnail support for a number of these file types as well.</value> </data> <data name="Oobe_ImageResizer.Description" xml:space="preserve"> <value>Image Resizer is a Windows shell extension for simple bulk image-resizing.</value> </data> <data name="Oobe_KBM.Description" xml:space="preserve"> <value>Keyboard Manager allows you to customize the keyboard to be more productive by remapping keys and creating your own keyboard shortcuts.</value> </data> <data name="Oobe_MouseWithoutBorders.Description" xml:space="preserve"> <value>Mouse Without Borders enables using the mouse pointer, keyboard, clipboard and drag and drop between machines in the same local network.</value> </data> <data name="Oobe_PowerRename.Description" xml:space="preserve"> <value>PowerRename enables you to perform simple bulk renaming, searching and replacing file names.</value> </data> <data name="Oobe_Run.Description" xml:space="preserve"> <value>PowerToys Run is a quick launcher for power users that contains some additional features without sacrificing performance.</value> </data> <data name="Oobe_MeasureTool.Description" xml:space="preserve"> <value>Screen Ruler is a quick and easy way to measure pixels on your screen.</value> </data> <data name="Oobe_ShortcutGuide.Description" xml:space="preserve"> <value>Shortcut Guide presents the user with a listing of available shortcuts for the current state of the desktop.</value> </data> <data name="Oobe_VideoConference.Description" xml:space="preserve"> <value>Video Conference Mute allows users to quickly mute the microphone and turn off the camera while on a conference call with a single keystroke, regardless of what application has focus on your computer.</value> </data> <data name="Oobe_MouseUtils.Description" xml:space="preserve"> <value>A collection of utilities to enhance your mouse.</value> <comment>Mouse as in the hardware peripheral</comment> </data> <data name="Oobe_Overview.Description" xml:space="preserve"> <value>Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. Take a moment to preview the various utilities listed or view our comprehensive documentation.</value> </data> <data name="Oobe_Overview_DescriptionLinkText.Text" xml:space="preserve"> <value>Documentation on Microsoft Docs</value> </data> <data name="ReleaseNotes.Content" xml:space="preserve"> <value>Release notes</value> </data> <data name="Oobe_ColorPicker_HowToUse.Text" xml:space="preserve"> <value>to open Color Picker.</value> </data> <data name="Oobe_ColorPicker_TipsAndTricks.Text" xml:space="preserve"> <value>To select a color with more precision, **scroll the mouse wheel** to zoom in.</value> </data> <data name="Oobe_FancyZones_HowToUse.Text" xml:space="preserve"> <value>**Shift** + **drag the window** to snap a window to a zone, and release the window in the desired zone.</value> </data> <data name="Oobe_FancyZones_HowToUse_Shortcut.Text" xml:space="preserve"> <value>to open the FancyZones editor.</value> </data> <data name="Oobe_FancyZones_TipsAndTricks.Text" xml:space="preserve"> <value>Snap a window to multiple zones by holding the **Ctrl** key (while also holding **Shift**) when dragging a window.</value> </data> <data name="Oobe_FileLocksmith_HowToUse.Text" xml:space="preserve"> <value>In File Explorer, right-click one or more selected files and select **What's using this file?** from the context menu.</value> </data> <data name="Oobe_FileLocksmith_TipsAndTricks.Text" xml:space="preserve"> <value>Press the **Restart Elevated** button from the File Locksmith UI to also get information on elevated processes that might be using the files.</value> </data> <data name="Oobe_FileExplorer_HowToEnable.Text" xml:space="preserve"> <value>Select **View** which is located at the top of File Explorer, followed by **Show**, and then **Preview pane**. From there, simply click on one of the supported files in the File Explorer and observe the content on the preview pane!</value> </data> <data name="Oobe_HowToCreateMappings.Text" xml:space="preserve"> <value>How to create mappings</value> </data> <data name="Oobe_HowToEnable.Text" xml:space="preserve"> <value>How to enable</value> </data> <data name="Oobe_HowToLaunch.Text" xml:space="preserve"> <value>How to launch</value> </data> <data name="Oobe_HowToUse.Text" xml:space="preserve"> <value>How to use</value> </data> <data name="Oobe_ImageResizer_HowToLaunch.Text" xml:space="preserve"> <value>In File Explorer, right-click one or more image files and select **Resize pictures** from the context menu.</value> </data> <data name="Oobe_ImageResizer_TipsAndTricks.Text" xml:space="preserve"> <value>Want a custom size? You can add them in the PowerToys Settings!</value> </data> <data name="Oobe_KBM_HowToCreateMappings.Text" xml:space="preserve"> <value>Launch **PowerToys Settings**, navigate to the Keyboard Manager menu, and select either **Remap a key** or **Remap a shortcut**.</value> </data> <data name="Oobe_KBM_TipsAndTricks.Text" xml:space="preserve"> <value>Want to only have a shortcut work for a single application? Use the Target App field when creating the shortcut remapping.</value> </data> <data name="Oobe_MouseWithoutBorders_HowToUse.Text" xml:space="preserve"> <value>Use the Settings screen on each machine to connect to the other machines using the same key. If a connection is not working, it may be necessary to add an exception to the Windows Firewall.</value> </data> <data name="Oobe_MouseWithoutBorders_TipsAndTricks.Text" xml:space="preserve"> <value>Use the service option in Settings to install a service enabling Mouse Without Borders to function even in the lock screen.</value> </data> <data name="Oobe_PowerRename_HowToUse.Text" xml:space="preserve"> <value>In File Explorer, right-click one or more selected files and select **PowerRename** from the context menu.</value> </data> <data name="Oobe_PowerRename_TipsAndTricks.Text" xml:space="preserve"> <value>PowerRename supports searching for files using regular expressions to enable more advanced renaming functionalities.</value> </data> <data name="Oobe_Run_HowToLaunch.Text" xml:space="preserve"> <value>to open Run and just start typing.</value> </data> <data name="Oobe_Run_TipsAndTricks.Text" xml:space="preserve"> <value>PowerToys Run supports various action keys to funnel search queries for a specific subset of results. Typing `&lt;` searches for running processes only, `?` will search only for file, or `.` for installed applications! See PowerToys documentation for the complete set of 'Action Keys' available.</value> </data> <data name="Oobe_ShortcutGuide_HowToLaunch.Text" xml:space="preserve"> <value>to open Shortcut Guide, press it again to close or press **Esc**.</value> </data> <data name="Oobe_TipsAndTricks.Text" xml:space="preserve"> <value>Tips &amp; tricks</value> </data> <data name="Oobe_VideoConference_ToggleMicVid.Text" xml:space="preserve"> <value>to toggle both your microphone and video</value> </data> <data name="Oobe_VideoConference_ToggleMic.Text" xml:space="preserve"> <value>to toggle your microphone</value> </data> <data name="Oobe_VideoConference_PushToTalkMic.Text" xml:space="preserve"> <value>to toggle your microphone until key release</value> </data> <data name="Oobe_VideoConference_ToggleVid.Text" xml:space="preserve"> <value>to toggle your video</value> </data> <data name="Oobe_MeasureTool_Activation.Text" xml:space="preserve"> <value>to bring up the Screen Ruler command bar.</value> </data> <data name="Oobe_MeasureTool_HowToLaunch.Text" xml:space="preserve"> <value>The Bounds mode lets you select a specific area to measure. You can also shift-drag an area to persist in on screen. The various Spacing modes allows tracing similar pixels along horizontal and vertical axes with a customizable pixel tolerance threshold (use settings or mouse wheel to adjust it).</value> </data> <data name="Oobe_MeasureTool.Title" xml:space="preserve"> <value>Screen Ruler</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_ColorPicker.Title" xml:space="preserve"> <value>Color Picker</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_FancyZones.Title" xml:space="preserve"> <value>FancyZones</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_FileLocksmith.Title" xml:space="preserve"> <value>File Locksmith</value> </data> <data name="Oobe_ImageResizer.Title" xml:space="preserve"> <value>Image Resizer</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_KBM.Title" xml:space="preserve"> <value>Keyboard Manager</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_MouseWithoutBorders.Title" xml:space="preserve"> <value>Mouse Without Borders</value> <comment>Product name. Do not localize this string</comment> </data> <data name="Oobe_PowerRename.Title" xml:space="preserve"> <value>PowerRename</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_Run.Title" xml:space="preserve"> <value>PowerToys Run</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_ShortcutGuide.Title" xml:space="preserve"> <value>Shortcut Guide</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_VideoConference.Title" xml:space="preserve"> <value>Video Conference Mute</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_Overview.Title" xml:space="preserve"> <value>Welcome</value> </data> <data name="Oobe_WhatsNew.Text" xml:space="preserve"> <value>What's new</value> </data> <data name="Oobe_WhatsNew_LoadingError.Title" xml:space="preserve"> <value>Couldn't load the release notes.</value> </data> <data name="Oobe_WhatsNew_LoadingError.Message" xml:space="preserve"> <value>Please check your internet connection.</value> </data> <data name="Oobe_WhatsNew_ProxyAuthenticationWarning.Title" xml:space="preserve"> <value>Couldn't load the release notes.</value> </data> <data name="Oobe_WhatsNew_ProxyAuthenticationWarning.Message" xml:space="preserve"> <value>Your proxy server requires authentication.</value> </data> <data name="Oobe_WhatsNew_DetailedReleaseNotesLink.Text" xml:space="preserve"> <value>See more detailed release notes on GitHub</value> <comment>Don't loc "GitHub", it's the name of a product</comment> </data> <data name="OOBE_Settings.Content" xml:space="preserve"> <value>Open Settings</value> </data> <data name="Oobe_NavViewItem.Content" xml:space="preserve"> <value>Welcome to PowerToys</value> <comment>Don't loc "PowerToys"</comment> </data> <data name="WhatIsNew_NavViewItem.Content" xml:space="preserve"> <value>What's New</value> </data> <data name="Feedback_NavViewItem.Content" xml:space="preserve"> <value>Give feedback</value> </data> <data name="OobeWindow_Title" xml:space="preserve"> <value>Welcome to PowerToys</value> </data> <data name="OobeWindow_TitleTxt.Text" xml:space="preserve"> <value>Welcome to PowerToys</value> </data> <data name="SettingsWindow_Title" xml:space="preserve"> <value>PowerToys Settings</value> <comment>Title of the settings window when running as user</comment> </data> <data name="Awake.ModuleTitle" xml:space="preserve"> <value>Awake</value> </data> <data name="Awake.ModuleDescription" xml:space="preserve"> <value>A convenient way to keep your PC awake on-demand.</value> </data> <data name="Awake_EnableSettingsCard.Header" xml:space="preserve"> <value>Enable Awake</value> <comment>Awake is a product name, do not loc</comment> </data> <data name="Awake_NoKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep using the selected power plan</value> </data> <data name="Awake_IndefiniteKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep awake indefinitely</value> </data> <data name="Awake_TemporaryKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep awake for a time interval</value> </data> <data name="Awake_ExpirableKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep awake until expiration</value> </data> <data name="Awake_DisplaySettingsCard.Header" xml:space="preserve"> <value>Keep screen on</value> </data> <data name="Awake_DisplaySettingsCard.Description" xml:space="preserve"> <value>This setting is only available when keeping the PC awake</value> </data> <data name="Awake_ExpirationSettingsExpander.Description" xml:space="preserve"> <value>Keep custom awake state until a specific date and time</value> </data> <data name="Awake_ModeSettingsCard.Header" xml:space="preserve"> <value>Mode</value> </data> <data name="Awake_BehaviorSettingsGroup.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="Awake_IntervalHoursInput.Header" xml:space="preserve"> <value>Hours</value> </data> <data name="Awake_IntervalMinutesInput.Header" xml:space="preserve"> <value>Minutes</value> </data> <data name="Awake_ExpirationSettingsExpander_Date.Header" xml:space="preserve"> <value>End date</value> </data> <data name="Awake_ExpirationSettingsExpander_Time.Header" xml:space="preserve"> <value>End time</value> </data> <data name="Oobe_Awake.Title" xml:space="preserve"> <value>Awake</value> <comment>Module name, do not loc</comment> </data> <data name="Oobe_Awake.Description" xml:space="preserve"> <value>Awake is a Windows tool designed to keep your PC awake on-demand without having to manage its power settings. This behavior can be helpful when running time-consuming tasks while ensuring that your PC does not go to sleep or turn off its screens.</value> </data> <data name="Oobe_Awake_HowToUse.Text" xml:space="preserve"> <value>Open **PowerToys Settings** and enable Awake</value> </data> <data name="Oobe_Awake_TipsAndTricks.Text" xml:space="preserve"> <value>You can always change modes quickly by **right-clicking the Awake icon** in the system tray.</value> </data> <data name="General_FailedToDownloadTheNewVersion.Title" xml:space="preserve"> <value>An error occurred trying to install this update:</value> </data> <data name="General_InstallNow.Content" xml:space="preserve"> <value>Install now</value> </data> <data name="General_ReadMore.Text" xml:space="preserve"> <value>Read more</value> </data> <data name="General_NewVersionAvailable.Title" xml:space="preserve"> <value>An update is available:</value> </data> <data name="General_Downloading.Text" xml:space="preserve"> <value>Downloading...</value> </data> <data name="General_TryAgainToDownloadAndInstall.Content" xml:space="preserve"> <value>Try again to download and install</value> </data> <data name="General_CheckingForUpdates.Text" xml:space="preserve"> <value>Checking for updates...</value> </data> <data name="General_NewVersionReadyToInstall.Title" xml:space="preserve"> <value>An update is ready to install:</value> </data> <data name="General_UpToDate.Title" xml:space="preserve"> <value>PowerToys is up to date</value> </data> <data name="General_CantCheck.Title" xml:space="preserve"> <value>Network error. Please try again later</value> </data> <data name="General_DownloadAndInstall.Content" xml:space="preserve"> <value>Download &amp; install</value> </data> <data name="ImageResizer_Fit_Fill_ThirdPersonSingular" xml:space="preserve"> <value>Fills</value> </data> <data name="ImageResizer_Fit_Fit_ThirdPersonSingular" xml:space="preserve"> <value>Fits within</value> </data> <data name="ImageResizer_Fit_Stretch_ThirdPersonSingular" xml:space="preserve"> <value>Stretches to</value> </data> <data name="ImageResizer_Unit_Centimeter" xml:space="preserve"> <value>Centimeters</value> </data> <data name="ImageResizer_Unit_Inch" xml:space="preserve"> <value>Inches</value> </data> <data name="ImageResizer_Unit_Percent" xml:space="preserve"> <value>Percent</value> </data> <data name="ImageResizer_Unit_Pixel" xml:space="preserve"> <value>Pixels</value> </data> <data name="EditButton.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Edit</value> </data> <data name="ImageResizer_EditSize.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Edit size</value> </data> <data name="No" xml:space="preserve"> <value>No</value> <comment>Label of a cancel button</comment> </data> <data name="Delete_Dialog_Description" xml:space="preserve"> <value>Are you sure you want to delete this item?</value> </data> <data name="Yes" xml:space="preserve"> <value>Yes</value> <comment>Label of a confirmation button</comment> </data> <data name="SeeWhatsNew.Content" xml:space="preserve"> <value>See what's new</value> </data> <data name="Awake_ModeSettingsCard.Description" xml:space="preserve"> <value>Manage the state of your device when Awake is active</value> </data> <data name="ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="Enable_ColorFormat.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Enable colorformat</value> </data> <data name="More_Options_Button.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>More options</value> </data> <data name="More_Options_ButtonTooltip.Text" xml:space="preserve"> <value>More options</value> </data> <data name="To.Text" xml:space="preserve"> <value>to</value> <comment>as in: from x to y</comment> </data> <data name="LearnMore_Awake.Text" xml:space="preserve"> <value>Learn more about Awake</value> <comment>Awake is a product name, do not loc</comment> </data> <data name="SecondaryLink_Awake.Text" xml:space="preserve"> <value>Den Delimarsky's work on creating Awake</value> <comment>Awake is a product name, do not loc</comment> </data> <data name="LearnMore_ColorPicker.Text" xml:space="preserve"> <value>Learn more about Color Picker</value> <comment>Color Picker is a product name, do not loc</comment> </data> <data name="LearnMore_FancyZones.Text" xml:space="preserve"> <value>Learn more about FancyZones</value> <comment>FancyZones is a product name, do not loc</comment> </data> <data name="LearnMore_FileLocksmith.Text" xml:space="preserve"> <value>Learn more about File Locksmith</value> </data> <data name="LearnMore_ImageResizer.Text" xml:space="preserve"> <value>Learn more about Image Resizer</value> <comment>Image Resizer is a product name, do not loc</comment> </data> <data name="LearnMore_KBM.Text" xml:space="preserve"> <value>Learn more about Keyboard Manager</value> <comment>Keyboard Manager is a product name, do not loc</comment> </data> <data name="LearnMore_MouseUtils.Text" xml:space="preserve"> <value>Learn more about Mouse utilities</value> <comment>Mouse utilities is a product name, do not loc</comment> </data> <data name="LearnMore_PastePlain.Text" xml:space="preserve"> <value>Learn more about Paste as Plain Text</value> <comment> Paste as Plain Text is the name of the module. </comment> </data> <data name="LearnMore_MouseWithoutBorders.Text" xml:space="preserve"> <value>Learn more about Mouse Without Borders</value> <comment>Mouse Without Borders is the name of the module. </comment> </data> <data name="LearnMore_PowerPreview.Text" xml:space="preserve"> <value>Learn more about File Explorer add-ons</value> <comment>File Explorer is a product name, localize as Windows does</comment> </data> <data name="LearnMore_Peek.Text" xml:space="preserve"> <value>Learn more about Peek</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="LearnMore_PowerRename.Text" xml:space="preserve"> <value>Learn more about PowerRename</value> <comment>PowerRename is a product name, do not loc</comment> </data> <data name="LearnMore_Run.Text" xml:space="preserve"> <value>Learn more about PowerToys Run</value> <comment>PowerToys Run is a product name, do not loc</comment> </data> <data name="LearnMore_MeasureTool.Text" xml:space="preserve"> <value>Learn more about Screen Ruler</value> <comment>Screen Ruler is a product name, do not loc</comment> </data> <data name="LearnMore_ShortcutGuide.Text" xml:space="preserve"> <value>Learn more about Shortcut Guide</value> <comment>Shortcut Guide is a product name, do not loc</comment> </data> <data name="LearnMore_VCM.Text" xml:space="preserve"> <value>Learn more about Video Conference Mute</value> <comment>Video Conference Mute is a product name, do not loc</comment> </data> <data name="Oobe_FileExplorer.Title" xml:space="preserve"> <value>File Explorer add-ons</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_MouseUtils.Title" xml:space="preserve"> <value>Mouse utilities</value> <comment>Mouse as in the hardware peripheral</comment> </data> <data name="Oobe_MouseUtils_FindMyMouse.Text" xml:space="preserve"> <value>Find My Mouse</value> <comment>Mouse as in the hardware peripheral</comment> </data> <data name="Oobe_MouseUtils_FindMyMouse_Description.Text" xml:space="preserve"> <value>Focus the mouse pointer pressing the Ctrl key twice, using a custom shortcut or shaking the mouse.</value> <comment>Mouse as in the hardware peripheral. Key as in a keyboard key</comment> </data> <data name="Oobe_MouseUtils_MouseHighlighter.Text" xml:space="preserve"> <value>Mouse Highlighter</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MouseHighlighter_Description.Text" xml:space="preserve"> <value>Use a keyboard shortcut to highlight left and right mouse clicks.</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MousePointerCrosshairs.Text" xml:space="preserve"> <value>Mouse Pointer Crosshairs</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MousePointerCrosshairs_Description.Text" xml:space="preserve"> <value>Draw crosshairs centered around the mouse pointer.</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MouseJump.Text" xml:space="preserve"> <value>Mouse Jump</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MouseJump_Description.Text" xml:space="preserve"> <value>Jump the mouse pointer quickly to anywhere on your desktop.</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Launch_Run.Content" xml:space="preserve"> <value>Launch PowerToys Run</value> </data> <data name="Launch_ShortcutGuide.Content" xml:space="preserve"> <value>Launch Shortcut Guide</value> </data> <data name="ColorPicker_ColorFormat_ToggleSwitch.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Show format in editor</value> </data> <data name="GeneralPage_Documentation.Text" xml:space="preserve"> <value>Documentation</value> </data> <data name="PowerLauncher_SearchList.PlaceholderText" xml:space="preserve"> <value>Search this list</value> </data> <data name="PowerLauncher_SearchList.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Search this list</value> </data> <data name="Awake.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="ColorPicker.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="General.SecondaryLinksHeader" xml:space="preserve"> <value>Related information</value> </data> <data name="ImageResizer.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="MouseUtils.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="PowerLauncher.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="PowerRename.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="EditTooltip.Text" xml:space="preserve"> <value>Edit</value> </data> <data name="RemoveTooltip.Text" xml:space="preserve"> <value>Remove</value> </data> <data name="Activation_Shortcut_Cancel" xml:space="preserve"> <value>Cancel</value> </data> <data name="Activation_Shortcut_Description" xml:space="preserve"> <value>Press a combination of keys to change this shortcut</value> </data> <data name="Activation_Shortcut_With_Disable_Description" xml:space="preserve"> <value>Press a combination of keys to change this shortcut. Right-click to remove the key combination, thereby deactivating the shortcut.</value> </data> <data name="Activation_Shortcut_Reset" xml:space="preserve"> <value>Reset</value> </data> <data name="Activation_Shortcut_Save" xml:space="preserve"> <value>Save</value> </data> <data name="Activation_Shortcut_Title" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="InvalidShortcut.Title" xml:space="preserve"> <value>Invalid shortcut</value> </data> <data name="InvalidShortcutWarningLabel.Text" xml:space="preserve"> <value>Only shortcuts that start with **Windows key**, **Ctrl**, **Alt** or **Shift** are valid.</value> <comment>The ** sequences are used for text formatting of the key names. Don't remove them on translation.</comment> </data> <data name="WarningShortcutAltGr.Title" xml:space="preserve"> <value>Possible shortcut interference with Alt Gr</value> <comment>Alt Gr refers to the right alt key on some international keyboards</comment> </data> <data name="WarningShortcutAltGr.ToolTipService.ToolTip" xml:space="preserve"> <value>Shortcuts with **Ctrl** and **Alt** may remove functionality from some international keyboards, because **Ctrl** + **Alt** = **Alt Gr** in those keyboards.</value> <comment>The ** sequences are used for text formatting of the key names. Don't remove them on translation.</comment> </data> <data name="FancyZones_SpanZonesAcrossMonitors.Description" xml:space="preserve"> <value>All monitors must have the same DPI scaling and will be treated as one large combined rectangle which contains all monitors</value> </data> <data name="ImageResizer_DefaultSize_NewSizePrefix" xml:space="preserve"> <value>New size</value> <comment>First part of the default name of new sizes that can be added in PT's settings ui.</comment> </data> <data name="Awake_IntervalSettingsCard.Header" xml:space="preserve"> <value>Interval before returning to the previous awakeness state</value> </data> <data name="Awake_ExpirationSettingsExpander.Header" xml:space="preserve"> <value>End date and time</value> </data> <data name="MouseUtils.ModuleTitle" xml:space="preserve"> <value>Mouse utilities</value> </data> <data name="MouseUtils.ModuleDescription" xml:space="preserve"> <value>A collection of mouse utilities.</value> </data> <data name="MouseUtils_FindMyMouse.Header" xml:space="preserve"> <value>Find My Mouse</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_FindMyMouse.Description" xml:space="preserve"> <value>Find My Mouse highlights the position of the cursor when pressing the Ctrl key twice, using a custom shortcut or when shaking the mouse.</value> <comment>"Ctrl" is a keyboard key. "Find My Mouse" is the name of the utility</comment> </data> <data name="MouseUtils_Enable_FindMyMouse.Header" xml:space="preserve"> <value>Enable Find My Mouse</value> <comment>"Find My Mouse" is the name of the utility.</comment> </data> <data name="MouseUtils_FindMyMouse_ActivationMethod.Header" xml:space="preserve"> <value>Activation method</value> </data> <data name="MouseUtils_FindMyMouse_ActivationDoubleControlPress.Content" xml:space="preserve"> <value>Press Left Control twice</value> <comment>Left control is the physical key on the keyboard.</comment> </data> <data name="MouseUtils_FindMyMouse_ActivationShakeMouse.Content" xml:space="preserve"> <value>Shake mouse</value> <comment>Mouse is the hardware peripheral.</comment> </data> <data name="MouseUtils_FindMyMouse_ExcludedApps.Description" xml:space="preserve"> <value>Prevents module activation when an excluded application is the foreground application</value> </data> <data name="MouseUtils_FindMyMouse_ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="MouseUtils_FindMyMouse_ExcludedApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> </data> <data name="MouseUtils_Prevent_Activation_On_Game_Mode.Content" xml:space="preserve"> <value>Do not activate when Game Mode is on</value> <comment>"Game mode" is the Windows feature to prevent notification when playing a game.</comment> </data> <data name="MouseUtils_FindMyMouse_BackgroundColor.Header" xml:space="preserve"> <value>Background color</value> </data> <data name="MouseUtils_FindMyMouse_SpotlightColor.Header" xml:space="preserve"> <value>Spotlight color</value> </data> <data name="MouseUtils_FindMyMouse_OverlayOpacity.Header" xml:space="preserve"> <value>Overlay opacity (%)</value> </data> <data name="MouseUtils_FindMyMouse_SpotlightRadius.Header" xml:space="preserve"> <value>Spotlight radius (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_FindMyMouse_SpotlightInitialZoom.Header" xml:space="preserve"> <value>Spotlight initial zoom</value> </data> <data name="MouseUtils_FindMyMouse_SpotlightInitialZoom.Description" xml:space="preserve"> <value>Spotlight zoom factor at animation start</value> </data> <data name="MouseUtils_FindMyMouse_AnimationDurationMs.Header" xml:space="preserve"> <value>Animation duration (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_FindMyMouse_AnimationDurationMs.Description" xml:space="preserve"> <value>Time before the spotlight appears (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_FindMyMouse_AnimationDurationMs_Disabled.Message" xml:space="preserve"> <value>Animations are disabled by OS. See Settings &gt; Accessibility &gt; Visual effects</value> </data> <data name="MouseUtils_FindMyMouse_ShakingMinimumDistance.Header" xml:space="preserve"> <value>Shake minimum distance</value> </data> <data name="MouseUtils_FindMyMouse_ShakingMinimumDistance.Description" xml:space="preserve"> <value>The minimum distance for mouse shaking activation, for adjusting sensitivity</value> </data> <data name="MouseUtils_MouseHighlighter.Header" xml:space="preserve"> <value>Mouse Highlighter</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_MouseHighlighter.Description" xml:space="preserve"> <value>Mouse Highlighter mode will highlight mouse clicks.</value> <comment>"Mouse Highlighter" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_Enable_MouseHighlighter.Header" xml:space="preserve"> <value>Enable Mouse Highlighter</value> <comment>"Find My Mouse" is the name of the utility.</comment> </data> <data name="MouseUtils_MouseHighlighter_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MouseUtils_MouseHighlighter_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to turn on or off this mode</value> <comment>"Mouse Highlighter" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_MouseHighlighter_PrimaryButtonClickColor.Header" xml:space="preserve"> <value>Primary button highlight color</value> </data> <data name="MouseUtils_MouseHighlighter_SecondaryButtonClickColor.Header" xml:space="preserve"> <value>Secondary button highlight color</value> </data> <data name="MouseUtils_MouseHighlighter_HighlightRadius.Header" xml:space="preserve"> <value>Radius (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDelayMs.Header" xml:space="preserve"> <value>Fade delay (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDelayMs.Description" xml:space="preserve"> <value>Time before the highlight begins to fade (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDurationMs.Header" xml:space="preserve"> <value>Fade duration (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDurationMs.Description" xml:space="preserve"> <value>Duration of the disappear animation (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MousePointerCrosshairs.Header" xml:space="preserve"> <value>Mouse Pointer Crosshairs</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_MousePointerCrosshairs.Description" xml:space="preserve"> <value>Mouse Pointer Crosshairs draws crosshairs centered on the mouse pointer.</value> <comment>"Mouse Pointer Crosshairs" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_Enable_MousePointerCrosshairs.Header" xml:space="preserve"> <value>Enable Mouse Pointer Crosshairs</value> <comment>"Mouse Pointer Crosshairs" is the name of the utility.</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MouseUtils_MousePointerCrosshairs_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to show/hide the crosshairs</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsColor.Header" xml:space="preserve"> <value>Crosshairs color</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsOpacity.Header" xml:space="preserve"> <value>Crosshairs opacity (%)</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsRadius.Header" xml:space="preserve"> <value>Crosshairs center radius (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsThickness.Header" xml:space="preserve"> <value>Crosshairs thickness (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsBorderColor.Header" xml:space="preserve"> <value>Crosshairs border color</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsBorderSize.Header" xml:space="preserve"> <value>Crosshairs border size (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_IsCrosshairsFixedLengthEnabled.Header" xml:space="preserve"> <value>Fix crosshairs length</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsFixedLength.Header" xml:space="preserve"> <value>Crosshairs fixed length (px)</value> <comment>px = pixels</comment> </data> <data name="FancyZones_Radio_Custom_Colors.Content" xml:space="preserve"> <value>Custom colors</value> </data> <data name="FancyZones_Radio_Default_Theme.Content" xml:space="preserve"> <value>Windows default</value> </data> <data name="ColorModeHeader.Header" xml:space="preserve"> <value>App theme</value> </data> <data name="FancyZones_Zone_Appearance.Description" xml:space="preserve"> <value>Customize the way zones look</value> </data> <data name="FancyZones_Zone_Appearance.Header" xml:space="preserve"> <value>Zone appearance</value> </data> <data name="VideoConference_DeprecationWarning.Title" xml:space="preserve"> <value>VCM is moving into legacy mode (maintenance only).</value> </data> <data name="VideoConference_DeprecationWarningButton.Content" xml:space="preserve"> <value>Learn more</value> </data> <data name="LearnMore.Content" xml:space="preserve"> <value>Learn more</value> </data> <data name="VideoConference_RunAsAdminRequired.Title" xml:space="preserve"> <value>You need to run as administrator to modify these settings.</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_GCODE.Header" xml:space="preserve"> <value>Geometric Code</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_GCODE.Description" xml:space="preserve"> <value>Only .gcode files with embedded thumbnails are supported</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_GCODE.Header" xml:space="preserve"> <value>Geometric Code</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_GCODE.Description" xml:space="preserve"> <value>Only .gcode files with embedded thumbnails are supported</value> </data> <data name="FancyZones_NumberColor.Header" xml:space="preserve"> <value>Number color</value> </data> <data name="FancyZones_ShowZoneNumberCheckBoxControl.Content" xml:space="preserve"> <value>Show zone number</value> </data> <data name="ToggleSwitch.OffContent" xml:space="preserve"> <value>Off</value> <comment>The state of a ToggleSwitch when it's off</comment> </data> <data name="ToggleSwitch.OnContent" xml:space="preserve"> <value>On</value> <comment>The state of a ToggleSwitch when it's on</comment> </data> <data name="CropAndLock.ModuleDescription" xml:space="preserve"> <value>Crop And Lock allows you to crop a current application into a smaller window or just create a thumbnail. Focus the target window and press the shortcut to start cropping.</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="CropAndLock.ModuleTitle" xml:space="preserve"> <value>Crop And Lock </value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="CropAndLock_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="CropAndLock_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="Shell_CropAndLock.Content" xml:space="preserve"> <value>Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="LearnMore_CropAndLock.Text" xml:space="preserve"> <value>Learn more about Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="CropAndLock_ReparentActivation_Shortcut.Header" xml:space="preserve"> <value>Reparent shortcut</value> </data> <data name="CropAndLock_ReparentActivation_Shortcut.Description" xml:space="preserve"> <value>Shortcut to crop an application's window into a cropped window. This is experimental and can cause issues with some applications, since the cropped window will contain the original application window.</value> </data> <data name="CropAndLock_ThumbnailActivation_Shortcut.Header" xml:space="preserve"> <value>Thumbnail shortcut</value> </data> <data name="CropAndLock_ThumbnailActivation_Shortcut.Description" xml:space="preserve"> <value>Shortcut to crop and create a thumbnail of another window. The application isn't controllable through the thumbnail but it'll have less compatibility issues. </value> </data> <data name="CropAndLock.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="Oobe_CropAndLock.Title" xml:space="preserve"> <value>Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="Oobe_CropAndLock.Description" xml:space="preserve"> <value>Crop And Lock allows you to crop a current application into a smaller window or just create a thumbnail. Focus the target window and press the shortcut to start cropping.</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="Oobe_CropAndLock_HowToUse_Thumbnail.Text" xml:space="preserve"> <value>to crop and create a thumbnail of another window. The application isn't controllable through the thumbnail but it'll have less compatibility issues.</value> </data> <data name="Oobe_CropAndLock_HowToUse_Reparent.Text" xml:space="preserve"> <value>to crop an application's window into a cropped window. This is experimental and can cause issues with some applications, since the cropped window will contain the original application window.</value> </data> <data name="AlwaysOnTop.ModuleDescription" xml:space="preserve"> <value>Always On Top is a quick and easy way to pin windows on top.</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop.ModuleTitle" xml:space="preserve"> <value>Always On Top </value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="Peek_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="AlwaysOnTop_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_ExcludedApps.Description" xml:space="preserve"> <value>Excludes an application from pinning on top</value> </data> <data name="AlwaysOnTop_ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="AlwaysOnTop_ExcludedApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> </data> <data name="AlwaysOnTop_FrameColor.Header" xml:space="preserve"> <value>Color</value> </data> <data name="AlwaysOnTop_FrameEnabled.Header" xml:space="preserve"> <value>Show a border around the pinned window</value> </data> <data name="AlwaysOnTop_FrameThickness.Header" xml:space="preserve"> <value>Thickness (px)</value> <comment>px = pixels</comment> </data> <data name="AlwaysOnTop_Behavior_GroupSettings.Header" xml:space="preserve"> <value>Appearance &amp; behavior</value> </data> <data name="Shell_AlwaysOnTop.Content" xml:space="preserve"> <value>Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_GameMode.Content" xml:space="preserve"> <value>Do not activate when Game Mode is on</value> <comment>Game Mode is a Windows feature</comment> </data> <data name="AlwaysOnTop_SoundTitle.Header" xml:space="preserve"> <value>Sound</value> </data> <data name="AlwaysOnTop_Sound.Content" xml:space="preserve"> <value>Play a sound when pinning a window</value> </data> <data name="AlwaysOnTop_Behavior.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="LearnMore_AlwaysOnTop.Text" xml:space="preserve"> <value>Learn more about Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="AlwaysOnTop_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to pin or unpin an app window</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="Oobe_AlwaysOnTop.Title" xml:space="preserve"> <value>Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="Oobe_AlwaysOnTop.Description" xml:space="preserve"> <value>Always On Top improves your multitasking workflow by pinning an application window so it's always in front - even when focus changes to another window after that.</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="Oobe_AlwaysOnTop_HowToUse.Text" xml:space="preserve"> <value>to pin or unpin the selected window so it's always on top of all other windows.</value> </data> <data name="Oobe_AlwaysOnTop_TipsAndTricks.Text" xml:space="preserve"> <value>You can tweak the visual outline of the pinned windows in PowerToys settings.</value> </data> <data name="AlwaysOnTop_FrameColor_Mode.Header" xml:space="preserve"> <value>Color mode</value> </data> <data name="AlwaysOnTop_Radio_Custom_Color.Content" xml:space="preserve"> <value>Custom color</value> </data> <data name="AlwaysOnTop_Radio_Windows_Default.Content" xml:space="preserve"> <value>Windows default</value> </data> <data name="FileExplorerPreview.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Monaco_Wrap_Text.Content" xml:space="preserve"> <value>Wrap text</value> <comment>Feature on or off</comment> </data> <data name="FancyZones_AllowPopupWindowSnap.Description" xml:space="preserve"> <value>This setting can affect all popup windows including notifications</value> </data> <data name="FancyZones_AllowPopupWindowSnap.Header" xml:space="preserve"> <value>Allow popup windows snapping</value> </data> <data name="FancyZones_AllowChildWindowSnap.Content" xml:space="preserve"> <value>Allow child windows snapping</value> </data> <data name="Shell_WhatsNew.Content" xml:space="preserve"> <value>What's new</value> </data> <data name="Shell_Peek.Content" xml:space="preserve"> <value>Peek</value> <comment>Product name: Navigation view item name for Peek</comment> </data> <data name="Peek.ModuleTitle" xml:space="preserve"> <value>Peek</value> </data> <data name="Peek.ModuleDescription" xml:space="preserve"> <value>Peek is a quick and easy way to preview files. Select a file in File Explorer and press the shortcut to open the file preview.</value> </data> <data name="Peek_EnablePeek.Header" xml:space="preserve"> <value>Enable Peek</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="Peek_BehaviorHeader.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="Peek_AlwaysRunNotElevated.Header" xml:space="preserve"> <value>Always run not elevated, even when PowerToys is elevated</value> </data> <data name="Peek_AlwaysRunNotElevated.Description" xml:space="preserve"> <value>Tries to run Peek without elevated permissions, to fix access to network shares. You need to disable and re-enable Peek for changes to this value to take effect.</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="Peek_CloseAfterLosingFocus.Header" xml:space="preserve"> <value>Automatically close the Peek window after it loses focus</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="FancyZones_DisableRoundCornersOnWindowSnap.Content" xml:space="preserve"> <value>Disable round corners when window is snapped</value> </data> <data name="PowerLauncher_SearchQueryTuningEnabled.Description" xml:space="preserve"> <value>Fine tune results ordering</value> </data> <data name="PowerLauncher_SearchQueryTuningEnabled.Header" xml:space="preserve"> <value>Results order tuning</value> </data> <data name="PowerLauncher_SearchClickedItemWeight.Description" xml:space="preserve"> <value>Use a higher number to get selected results to rise faster. The default is 5, 0 to disable.</value> </data> <data name="PowerLauncher_SearchClickedItemWeight.Header" xml:space="preserve"> <value>Selected item weight</value> </data> <data name="PowerLauncher_WaitForSlowResults.Description" xml:space="preserve"> <value>Selecting this can help preselect the top, more relevant result, but at the risk of jumpiness</value> </data> <data name="PowerLauncher_WaitForSlowResults.Header" xml:space="preserve"> <value>Wait on slower plugin results before selecting top item in results</value> </data> <data name="PowerLauncher_PluginWeightBoost.Description" xml:space="preserve"> <value>Use a higher number to have this plugin's result show higher in the global results. Default is 0.</value> </data> <data name="PowerLauncher_PluginWeightBoost.Header" xml:space="preserve"> <value>Global sort order score modifier</value> </data> <data name="AlwaysOnTop_RoundCorners.Content" xml:space="preserve"> <value>Enable round corners</value> </data> <data name="LearnMore_QuickAccent.Text" xml:space="preserve"> <value>Learn more about Quick Accent</value> <comment>Quick Accent is a product name, do not loc</comment> </data> <data name="QuickAccent_EnableQuickAccent.Header" xml:space="preserve"> <value>Enable Quick Accent</value> </data> <data name="Shell_QuickAccent.Content" xml:space="preserve"> <value>Quick Accent</value> </data> <data name="QuickAccent.ModuleDescription" xml:space="preserve"> <value>Quick Accent is an alternative way to type accented characters, useful for when a keyboard doesn't support that specific accent. Activate by holding the key for the character you want to add an accent to, then press the activation key (space, left or right arrow keys) and an overlay to select accented characters will appear!</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent.ModuleTitle" xml:space="preserve"> <value>Quick Accent</value> </data> <data name="QuickAccent.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> </data> <data name="AlwaysOnTop_ShortDescription" xml:space="preserve"> <value>Pin a window</value> </data> <data name="Awake_ShortDescription" xml:space="preserve"> <value>Keep your PC awake</value> </data> <data name="ColorPicker_ShortDescription" xml:space="preserve"> <value>Pick a color</value> </data> <data name="CropAndLock_Thumbnail" xml:space="preserve"> <value>Thumbnail</value> </data> <data name="CropAndLock_Reparent" xml:space="preserve"> <value>Reparent</value> </data> <data name="FancyZones_OpenEditor" xml:space="preserve"> <value>Open editor</value> </data> <data name="FileLocksmith_ShortDescription" xml:space="preserve"> <value>Right-click on files or directories to show running processes</value> </data> <data name="FindMyMouse_ShortDescription" xml:space="preserve"> <value>Find the mouse</value> </data> <data name="ImageResizer_ShortDescription" xml:space="preserve"> <value>Resize images from right-click context menu</value> </data> <data name="MouseHighlighter_ShortDescription" xml:space="preserve"> <value>Highlight clicks</value> </data> <data name="MouseJump_ShortDescription" xml:space="preserve"> <value>Quickly move the mouse pointer</value> </data> <data name="MouseCrosshairs_ShortDescription" xml:space="preserve"> <value>Draw crosshairs centered on the mouse pointer</value> </data> <data name="MouseWithoutBorders_ShortDescription" xml:space="preserve"> <value>Move your cursor across multiple devices</value> </data> <data name="PastePlain_ShortDescription" xml:space="preserve"> <value>Paste clipboard content without formatting</value> </data> <data name="Peek_ShortDescription" xml:space="preserve"> <value>Quick and easy previewer</value> </data> <data name="PowerRename_ShortDescription" xml:space="preserve"> <value>Rename files and folders from right-click context menu</value> </data> <data name="Run_ShortDescription" xml:space="preserve"> <value>A quick launcher</value> </data> <data name="PowerAccent_ShortDescription" xml:space="preserve"> <value>An alternative way to type accented characters</value> </data> <data name="RegistryPreview_ShortDescription" xml:space="preserve"> <value>Visualize and edit Windows Registry files</value> </data> <data name="ScreenRuler_ShortDescription" xml:space="preserve"> <value>Measure pixels on your screen</value> </data> <data name="ShortcutGuide_ShortDescription" xml:space="preserve"> <value>Show a help overlay with Windows shortcuts</value> </data> <data name="PowerOcr_ShortDescription" xml:space="preserve"> <value>A convenient way to copy text from anywhere on screen</value> </data> <data name="Dashboard_Activation" xml:space="preserve"> <value>Activation</value> </data> <data name="DashboardKBMShowMappingsButton.Content" xml:space="preserve"> <value>Show remappings</value> </data> <data name="Oobe_QuickAccent.Description" xml:space="preserve"> <value>Quick Accent is an easy way to write letters with accents, like on a smartphone.</value> </data> <data name="Oobe_QuickAccent.Title" xml:space="preserve"> <value>Quick Accent</value> </data> <data name="Oobe_QuickAccent_HowToUse.Text" xml:space="preserve"> <value>Open **PowerToys Settings** and enable Quick Accent. While holding the key for the character you want to add an accent to, press the Activation Key and an overlay to select the accented character will appear.</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="QuickAccent_Activation_Shortcut.Header" xml:space="preserve"> <value>Activation key</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent_Activation_Shortcut.Description" xml:space="preserve"> <value>Press this key after holding down the target letter</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent_Activation_Key_Arrows.Content" xml:space="preserve"> <value>Left/Right Arrow</value> <comment>Left/Right arrow keyboard keys</comment> </data> <data name="QuickAccent_Activation_Key_Space.Content" xml:space="preserve"> <value>Space</value> <comment>Space is the space keyboard key</comment> </data> <data name="QuickAccent_Activation_Key_Either.Content" xml:space="preserve"> <value>Left, Right or Space</value> <comment>All are keys on a keyboard</comment> </data> <data name="QuickAccent_Toolbar.Header" xml:space="preserve"> <value>Toolbar</value> </data> <data name="QuickAccent_ToolbarPosition.Header" xml:space="preserve"> <value>Toolbar position</value> </data> <data name="QuickAccent_ToolbarPosition_TopCenter.Content" xml:space="preserve"> <value>Top center</value> </data> <data name="QuickAccent_ToolbarPosition_TopLeftCorner.Content" xml:space="preserve"> <value>Top left corner</value> </data> <data name="QuickAccent_ToolbarPosition_TopRightCorner.Content" xml:space="preserve"> <value>Top right corner</value> </data> <data name="QuickAccent_ToolbarPosition_BottomLeftCorner.Content" xml:space="preserve"> <value>Bottom left corner</value> </data> <data name="QuickAccent_ToolbarPosition_BottomCenter.Content" xml:space="preserve"> <value>Bottom center</value> </data> <data name="QuickAccent_ToolbarPosition_BottomRightCorner.Content" xml:space="preserve"> <value>Bottom right corner</value> </data> <data name="QuickAccent_ToolbarPosition_Center.Content" xml:space="preserve"> <value>Center</value> </data> <data name="QuickAccent_ToolbarPosition_Left.Content" xml:space="preserve"> <value>Left</value> </data> <data name="QuickAccent_ToolbarPosition_Right.Content" xml:space="preserve"> <value>Right</value> </data> <data name="QuickAccent_Behavior.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="QuickAccent_InputTimeMs.Header" xml:space="preserve"> <value>Input delay (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="QuickAccent_InputTimeMs.Description" xml:space="preserve"> <value>Hold the key down for this much time to make the accent menu appear (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="QuickAccent_ExcludedApps.Description" xml:space="preserve"> <value>Prevents module activation if a foreground application is excluded. Add one application name per line.</value> </data> <data name="QuickAccent_ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="QuickAccent_ExcludedApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: Teams.exe</value> </data> <data name="LearnMore_TextExtractor.Text" xml:space="preserve"> <value>Learn more about Text Extractor</value> </data> <data name="TextExtractor_Cancel" xml:space="preserve"> <value>cancel</value> </data> <data name="General_SettingsBackupAndRestore_NothingToBackup" xml:space="preserve"> <value>A new backup was not created because no settings have been changed since last backup.</value> </data> <data name="General_SettingsBackupAndRestore_NoBackupFound" xml:space="preserve"> <value>No backup found</value> </data> <data name="General_SettingsBackupAndRestore_FailedToParseTime" xml:space="preserve"> <value>Failed to parse time</value> </data> <data name="General_SettingsBackupAndRestore_UnknownBackupTime" xml:space="preserve"> <value>Unknown</value> </data> <data name="General_SettingsBackupAndRestore_UnknownBackupSource" xml:space="preserve"> <value>Unknown</value> </data> <data name="General_SettingsBackupAndRestore_ThisMachine" xml:space="preserve"> <value>This computer</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsMatch" xml:space="preserve"> <value>Current settings match</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsStatusAt" xml:space="preserve"> <value>at</value> <comment>E.g., Food was served 'at' noon.</comment> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsDiffer" xml:space="preserve"> <value>Current settings differ</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsNoChecked" xml:space="preserve"> <value>Checking...</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsUnknown" xml:space="preserve"> <value>Unknown</value> </data> <data name="General_SettingsBackupAndRestore_NeverRestored" xml:space="preserve"> <value>Never restored</value> </data> <data name="General_SettingsBackupAndRestore_NothingToRestore" xml:space="preserve"> <value>Nothing to restore.</value> </data> <data name="General_SettingsBackupAndRestore_NoSettingsFilesFound" xml:space="preserve"> <value>No settings files found.</value> </data> <data name="General_SettingsBackupAndRestore_BackupError" xml:space="preserve"> <value>There was an error. Try another backup location.</value> </data> <data name="General_SettingsBackupAndRestore_SettingsFormatError" xml:space="preserve"> <value>There was an error in the settings format. Please check the settings file:</value> </data> <data name="General_SettingsBackupAndRestore_BackupComplete" xml:space="preserve"> <value>Backup completed.</value> </data> <data name="General_SettingsBackupAndRestore_NoBackupSyncPath" xml:space="preserve"> <value>No backup location selected.</value> </data> <data name="General_SettingsBackupAndRestore_NoBackupsFound" xml:space="preserve"> <value>No backups found to restore.</value> </data> <data name="General_SettingsBackupAndRestore_InvalidBackupLocation" xml:space="preserve"> <value>Invalid backup location.</value> </data> <data name="TextExtractor.ModuleDescription" xml:space="preserve"> <value>Text Extractor is a convenient way to copy text from anywhere on screen</value> </data> <data name="TextExtractor.ModuleTitle" xml:space="preserve"> <value>Text Extractor</value> </data> <data name="TextExtractor_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Text Extractor</value> </data> <data name="TextExtractor_SupportedLanguages.Title" xml:space="preserve"> <value>Text Extractor can only recognize languages that have the OCR pack installed.</value> </data> <data name="TextExtractor_UseSnippingToolWarning.Title" xml:space="preserve"> <value>It is recommended to use the Snipping Tool instead of the TextExtractor module.</value> </data> <data name="TextExtractor_SupportedLanguages_Link.Content" xml:space="preserve"> <value>Learn more about supported languages</value> </data> <data name="Shell_TextExtractor.Content" xml:space="preserve"> <value>Text Extractor</value> </data> <data name="Launch_TextExtractor.Content" xml:space="preserve"> <value>Launch Text Extractor</value> </data> <data name="Oobe_TextExtractor.Title" xml:space="preserve"> <value>Text Extractor</value> </data> <data name="Oobe_TextExtractor_HowToUse.Text" xml:space="preserve"> <value>to open Text Extractor and then selecting a region to copy the text from.</value> </data> <data name="Oobe_TextExtractor_TipsAndTricks.Text" xml:space="preserve"> <value>Hold the shift key to move the selection region around.</value> </data> <data name="TextExtractor.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> </data> <data name="Oobe_TextExtractor.Description" xml:space="preserve"> <value>Text Extractor works like Snipping Tool, but copies the text out of the selected region using OCR and puts it on the clipboard.</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Monaco_Try_Format.Description" xml:space="preserve"> <value>Applies to json and xml. Files remain unchanged.</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Monaco_Try_Format.Header" xml:space="preserve"> <value>Try to format the source for preview</value> </data> <data name="Run_ConflictingKeywordInfo.Title" xml:space="preserve"> <value>Some characters and phrases may conflict with global queries of other plugins if you use them as activation command.</value> </data> <data name="Run_ConflictingKeywordInfo_Link.Content" xml:space="preserve"> <value>Learn more about conflicting activation commands</value> </data> <data name="MeasureTool_ContinuousCapture_Information.Title" xml:space="preserve"> <value>The continuous capture mode will consume more resources when in use. Also, measurements will be excluded from screenshots and screen capture.</value> <comment>pointer as in mouse pointer. Resources refer to things like CPU, GPU, RAM</comment> </data> <data name="QuickAccent_Description_Indicator.Header" xml:space="preserve"> <value>Show the Unicode code and name of the currently selected character</value> </data> <data name="QuickAccent_SortByUsageFrequency_Indicator.Header" xml:space="preserve"> <value>Sort characters by usage frequency</value> </data> <data name="QuickAccent_SortByUsageFrequency_Indicator.Description" xml:space="preserve"> <value>Track characters usage frequency and sort them accordingly</value> </data> <data name="QuickAccent_StartSelectionFromTheLeft_Indicator.Header" xml:space="preserve"> <value>Start selection from the left</value> </data> <data name="QuickAccent_StartSelectionFromTheLeft_Indicator.Description" xml:space="preserve"> <value>Start selection from the leftmost character for all activation keys, including left and right arrows</value> </data> <data name="QuickAccent_DisableFullscreen.Header" xml:space="preserve"> <value>Disable when Game Mode is On</value> </data> <data name="QuickAccent_Language.Header" xml:space="preserve"> <value>Characters</value> </data> <data name="QuickAccent_SelectedLanguage.Header" xml:space="preserve"> <value>Choose a character set</value> </data> <data name="QuickAccent_SelectedLanguage.Description" xml:space="preserve"> <value>Show only accented characters common to the selected set</value> </data> <data name="QuickAccent_SelectedLanguage_All.Content" xml:space="preserve"> <value>All available</value> </data> <data name="QuickAccent_SelectedLanguage_Catalan.Content" xml:space="preserve"> <value>Catalan</value> </data> <data name="QuickAccent_SelectedLanguage_Currency.Content" xml:space="preserve"> <value>Currency</value> </data> <data name="QuickAccent_SelectedLanguage_Croatian.Content" xml:space="preserve"> <value>Croatian</value> </data> <data name="QuickAccent_SelectedLanguage_Czech.Content" xml:space="preserve"> <value>Czech</value> </data> <data name="QuickAccent_SelectedLanguage_Danish.Content" xml:space="preserve"> <value>Danish</value> </data> <data name="QuickAccent_SelectedLanguage_Gaeilge.Content" xml:space="preserve"> <value>Gaeilge</value> <comment>Gaelic language spoken in Ireland</comment> </data> <data name="QuickAccent_SelectedLanguage_Gaidhlig.Content" xml:space="preserve"> <value>Gàidhlig</value> <comment>Scottish Gaelic</comment> </data> <data name="QuickAccent_SelectedLanguage_German.Content" xml:space="preserve"> <value>German</value> </data> <data name="QuickAccent_SelectedLanguage_Greek.Content" xml:space="preserve"> <value>Greek</value> </data> <data name="QuickAccent_SelectedLanguage_Hebrew.Content" xml:space="preserve"> <value>Hebrew</value> </data> <data name="QuickAccent_SelectedLanguage_French.Content" xml:space="preserve"> <value>French</value> </data> <data name="QuickAccent_SelectedLanguage_Finnish.Content" xml:space="preserve"> <value>Finnish</value> </data> <data name="QuickAccent_SelectedLanguage_Estonian.Content" xml:space="preserve"> <value>Estonian</value> </data> <data name="QuickAccent_SelectedLanguage_Lithuanian.Content" xml:space="preserve"> <value>Lithuanian</value> </data> <data name="QuickAccent_SelectedLanguage_Macedonian.Content" xml:space="preserve"> <value>Macedonian</value> </data> <data name="QuickAccent_SelectedLanguage_Maori.Content" xml:space="preserve"> <value>Maori</value> </data> <data name="QuickAccent_SelectedLanguage_Dutch.Content" xml:space="preserve"> <value>Dutch</value> </data> <data name="QuickAccent_SelectedLanguage_Norwegian.Content" xml:space="preserve"> <value>Norwegian</value> </data> <data name="QuickAccent_SelectedLanguage_Pinyin.Content" xml:space="preserve"> <value>Pinyin</value> </data> <data name="QuickAccent_SelectedLanguage_Polish.Content" xml:space="preserve"> <value>Polish</value> </data> <data name="QuickAccent_SelectedLanguage_Portuguese.Content" xml:space="preserve"> <value>Portuguese</value> </data> <data name="QuickAccent_SelectedLanguage_Slovak.Content" xml:space="preserve"> <value>Slovak</value> </data> <data name="QuickAccent_SelectedLanguage_Spanish.Content" xml:space="preserve"> <value>Spanish</value> </data> <data name="QuickAccent_SelectedLanguage_Swedish.Content" xml:space="preserve"> <value>Swedish</value> </data> <data name="QuickAccent_SelectedLanguage_Turkish.Content" xml:space="preserve"> <value>Turkish</value> </data> <data name="QuickAccent_SelectedLanguage_Icelandic.Content" xml:space="preserve"> <value>Icelandic</value> </data> <data name="QuickAccent_SelectedLanguage_Romanian.Content" xml:space="preserve"> <value>Romanian</value> </data> <data name="QuickAccent_SelectedLanguage_Serbian.Content" xml:space="preserve"> <value>Serbian</value> </data> <data name="QuickAccent_SelectedLanguage_Hungarian.Content" xml:space="preserve"> <value>Hungarian</value> </data> <data name="QuickAccent_SelectedLanguage_Italian.Content" xml:space="preserve"> <value>Italian</value> </data> <data name="QuickAccent_SelectedLanguage_Kurdish.Content" xml:space="preserve"> <value>Kurdish</value> </data> <data name="QuickAccent_SelectedLanguage_Welsh.Content" xml:space="preserve"> <value>Welsh</value> </data> <data name="Hosts.ModuleDescription" xml:space="preserve"> <value>Quick and simple utility for managing hosts file.</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Hosts.ModuleTitle" xml:space="preserve"> <value>Hosts File Editor</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Shell_Hosts.Content" xml:space="preserve"> <value>Hosts File Editor</value> <comment>Products name: Navigation view item name for Hosts File Editor</comment> </data> <data name="Hosts_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Hosts_Toggle_ShowStartupWarning.Header" xml:space="preserve"> <value>Show a warning at startup</value> </data> <data name="Hosts_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="Hosts_LaunchButtonControl.Description" xml:space="preserve"> <value>Manage your hosts file</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Hosts_LaunchButtonControl.Header" xml:space="preserve"> <value>Launch Host File Editor</value> <comment>"Host File Editor" is a product name</comment> </data> <data name="Hosts_LaunchButton_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Launch Host File Editor</value> <comment>"Host File Editor" is a product name</comment> </data> <data name="Hosts_AdditionalLinesPosition.Header" xml:space="preserve"> <value>Position of additional content</value> </data> <data name="Hosts_AdditionalLinesPosition_Bottom.Content" xml:space="preserve"> <value>Bottom</value> </data> <data name="Hosts_AdditionalLinesPosition_Top.Content" xml:space="preserve"> <value>Top</value> </data> <data name="Hosts_Behavior_GroupSettings.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="Launch_Hosts.Content" xml:space="preserve"> <value>Launch Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="LearnMore_Hosts.Text" xml:space="preserve"> <value>Learn more about Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Oobe_Hosts.Description" xml:space="preserve"> <value>Hosts File Editor is a quick and simple utility for managing hosts file.</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Oobe_Hosts.Title" xml:space="preserve"> <value>Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Hosts_Toggle_LaunchAdministrator.Description" xml:space="preserve"> <value>Needs to be launched as administrator in order to make changes to the hosts file</value> </data> <data name="Hosts_Toggle_LaunchAdministrator.Header" xml:space="preserve"> <value>Launch as administrator</value> </data> <data name="EnvironmentVariables.ModuleDescription" xml:space="preserve"> <value>A quick utility for managing environment variables.</value> </data> <data name="EnvironmentVariables.ModuleTitle" xml:space="preserve"> <value>Environment Variables</value> </data> <data name="Shell_EnvironmentVariables.Content" xml:space="preserve"> <value>Environment Variables</value> </data> <data name="EnvironmentVariables_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Environment Variables</value> </data> <data name="EnvironmentVariables_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="EnvironmentVariables_LaunchButtonControl.Description" xml:space="preserve"> <value>Manage your environment variables</value> </data> <data name="EnvironmentVariables_LaunchButtonControl.Header" xml:space="preserve"> <value>Launch Environment Variables</value> </data> <data name="EnvironmentVariables_LaunchButton_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Launch Environment Variables</value> </data> <data name="Launch_EnvironmentVariables.Content" xml:space="preserve"> <value>Launch Environment Variables</value> </data> <data name="LearnMore_EnvironmentVariables.Text" xml:space="preserve"> <value>Learn more about Environment Variables</value> </data> <data name="Oobe_EnvironmentVariables.Description" xml:space="preserve"> <value>Environment Variables is a quick utility for managing environment variables.</value> </data> <data name="Oobe_EnvironmentVariables.Title" xml:space="preserve"> <value>Environment Variables</value> </data> <data name="EnvironmentVariables_Toggle_LaunchAdministrator.Description" xml:space="preserve"> <value>Needs to be launched as administrator in order to make changes to the system environment variables</value> </data> <data name="EnvironmentVariables_Toggle_LaunchAdministrator.Header" xml:space="preserve"> <value>Launch as administrator</value> </data> <data name="ShortcutGuide_PressTimeForTaskbarIconShortcuts.Header" xml:space="preserve"> <value>Press duration before showing taskbar icon shortcuts (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="FileLocksmith.ModuleDescription" xml:space="preserve"> <value>A Windows shell extension to find out which processes are using the selected files and directories.</value> </data> <data name="FileLocksmith.ModuleTitle" xml:space="preserve"> <value>File Locksmith</value> </data> <data name="Shell_FileLocksmith.Content" xml:space="preserve"> <value>File Locksmith</value> <comment>Product name: Navigation view item name for FileLocksmith</comment> </data> <data name="FileLocksmith_Enable_FileLocksmith.Header" xml:space="preserve"> <value>Enable File Locksmith</value> <comment>File Locksmith is the name of the utility</comment> </data> <data name="FileLocksmith_Toggle_StandardContextMenu.Content" xml:space="preserve"> <value>Default and extended context menu</value> </data> <data name="FileLocksmith_Toggle_ExtendedContextMenu.Content" xml:space="preserve"> <value>Extended context menu only</value> </data> <data name="FileLocksmith_Toggle_ContextMenu.Header" xml:space="preserve"> <value>Show File Locksmith in</value> </data> <data name="FileLocksmith_ShellIntegration.Header" xml:space="preserve"> <value>Shell integration</value> <comment>This refers to directly integrating in with Windows</comment> </data> <data name="GPO_IsSettingForced.Title" xml:space="preserve"> <value>This setting is enforced by your System Administrator.</value> </data> <data name="Hosts_AdditionalLinesPosition.Description" xml:space="preserve"> <value>Additional content includes the file header and lines that can't parse</value> </data> <data name="TextExtractor_Languages.Header" xml:space="preserve"> <value>Preferred language</value> </data> <data name="Alternate_OOBE_AlwaysOnTop_Description.Text" xml:space="preserve"> <value>Pin a window so that:</value> </data> <data name="Alternate_OOBE_AlwaysOnTop_Title.Text" xml:space="preserve"> <value>Always On Top</value> </data> <data name="Alternate_OOBE_ColorPicker_Description.Text" xml:space="preserve"> <value>To pick a color:</value> </data> <data name="Alternate_OOBE_ColorPicker_Title.Text" xml:space="preserve"> <value>Color Picker</value> </data> <data name="Alternate_OOBE_Description.Text" xml:space="preserve"> <value>Here are a few shortcuts to get you started:</value> </data> <data name="Alternate_OOBE_FancyZones_Description.Text" xml:space="preserve"> <value>To open the FancyZones editor, press:</value> </data> <data name="Alternate_OOBE_FancyZones_Title.Text" xml:space="preserve"> <value>FancyZones</value> </data> <data name="Alternate_OOBE_Run_Description.Text" xml:space="preserve"> <value>Get access to your files and more:</value> </data> <data name="Alternate_OOBE_Run_Title.Text" xml:space="preserve"> <value>PowerToys Run</value> </data> <data name="General_Experimentation.Header" xml:space="preserve"> <value>Experimentation</value> </data> <data name="GeneralPage_EnableExperimentation.Description" xml:space="preserve"> <value>Note: Only Windows Insider builds may be selected for experimentation</value> </data> <data name="GeneralPage_EnableExperimentation.Header" xml:space="preserve"> <value>Allow experimentation with new features</value> </data> <data name="GPO_ExperimentationIsDisallowed.Title" xml:space="preserve"> <value>The system administrator has disabled experimentation.</value> </data> <data name="Shell_PastePlain.Content" xml:space="preserve"> <value>Paste As Plain Text</value> <comment>Product name: Navigation view item name for Paste as Plain Text</comment> </data> <data name="PastePlain.ModuleDescription" xml:space="preserve"> <value>Paste As Plain Text is a quick shortcut for pasting the text contents of your clipboard without formatting. Note: the formatted text in the clipboard is replaced with the unformatted text.</value> </data> <data name="PastePlain.ModuleTitle" xml:space="preserve"> <value>Paste As Plain Text</value> </data> <data name="PastePlain_Cancel" xml:space="preserve"> <value>cancel</value> </data> <data name="PastePlain_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Paste As Plain Text</value> </data> <data name="Oobe_PastePlain.Description" xml:space="preserve"> <value>Paste As Plain Text strips rich formatting from your clipboard data and pastes it as non-formatted text.</value> </data> <data name="Oobe_PastePlain.Title" xml:space="preserve"> <value>Paste As Plain Text</value> </data> <data name="Oobe_PastePlain_HowToUse.Text" xml:space="preserve"> <value>to paste your clipboard data as plain text. Note: this will replace the formatted text in your clipboard with the plain text.</value> </data> <data name="AllAppsTxt.Text" xml:space="preserve"> <value>All apps</value> </data> <data name="BackBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Back</value> </data> <data name="BackLabel.Text" xml:space="preserve"> <value>Back</value> </data> <data name="BugReportBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Bug report</value> </data> <data name="BugReportTooltip.Text" xml:space="preserve"> <value>Bug report</value> </data> <data name="DocsBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Documentation</value> </data> <data name="DocsTooltip.Text" xml:space="preserve"> <value>Documentation</value> </data> <data name="FZEditorString" xml:space="preserve"> <value>FancyZones Editor</value> <comment>Do not localize this string</comment> </data> <data name="MoreBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>More</value> </data> <data name="MoreLabel.Text" xml:space="preserve"> <value>More</value> </data> <data name="SettingsBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Settings</value> </data> <data name="SettingsTooltip.Text" xml:space="preserve"> <value>Settings</value> </data> <data name="ShortcutsTxt.Text" xml:space="preserve"> <value>Shortcuts</value> </data> <data name="UpdateAvailable.Title" xml:space="preserve"> <value>Update available</value> </data> <data name="FileExplorerPreview_Toggle_Monaco_Max_File_Size.Header" xml:space="preserve"> <value>Maximum file size to preview</value> <comment>Size refers to the disk space used by a file</comment> </data> <data name="FileExplorerPreview_Toggle_Monaco_Max_File_Size.Description" xml:space="preserve"> <value>The maximum size, in kilobytes, for files to be displayed. This is a safety mechanism to prevent loading large files into RAM.</value> <comment>"RAM" refers to random access memory; "size" refers to disk space; "bytes" refer to the measurement unit</comment> </data> <data name="RegistryPreview.ModuleDescription" xml:space="preserve"> <value>A quick little utility to visualize and edit complex Windows Registry files.</value> </data> <data name="RegistryPreview.ModuleTitle" xml:space="preserve"> <value>Registry Preview</value> </data> <data name="Shell_RegistryPreview.Content" xml:space="preserve"> <value>Registry Preview</value> <comment>Product name: Navigation view item name for Registry Preview</comment> </data> <data name="RegistryPreview_Enable_RegistryPreview.Header" xml:space="preserve"> <value>Enable Registry Preview</value> <comment>Registry Preview is the name of the utility</comment> </data> <data name="Oobe_RegistryPreview_HowToUse.Text" xml:space="preserve"> <value>In File Explorer, right-click a .REG file and select **Preview** from the context menu.</value> </data> <data name="Oobe_RegistryPreview_TipsAndTricks.Text" xml:space="preserve"> <value>You can preview or edit Registry files in File Explorer or by opening the app from the PowerToys launcher.</value> </data> <data name="Oobe_RegistryPreview.Description" xml:space="preserve"> <value>Registry Preview is a quick little utility to visualize and edit complex Windows Registry files.</value> </data> <data name="Oobe_RegistryPreview.Title" xml:space="preserve"> <value>Registry Preview</value> <comment>Do not localize this string</comment> </data> <data name="LearnMore_RegistryPreview.Text" xml:space="preserve"> <value>Learn more about Registry Preview</value> <comment>Registry Preview is a product name, do not loc</comment> </data> <data name="Launch_RegistryPreview.Content" xml:space="preserve"> <value>Launch Registry Preview</value> <comment>"Registry Preview" is the name of the utility</comment> </data> <data name="MouseUtils_MouseJump.Description" xml:space="preserve"> <value>Quickly move the mouse pointer long distances.</value> <comment>"Mouse Jump" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_MouseJump.Header" xml:space="preserve"> <value>Mouse Jump</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_MouseJump_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to turn on or off this mode</value> </data> <data name="MouseUtils_MouseJump_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MouseUtils_Enable_MouseJump.Header" xml:space="preserve"> <value>Enable Mouse Jump</value> <comment>"Mouse Jump" is the name of the utility.</comment> </data> <data name="GPO_AutoDownloadUpdatesIsDisabled.Title" xml:space="preserve"> <value>The system administrator has disabled the automatic download of updates.</value> </data> <data name="Hosts_Toggle_LoopbackDuplicates.Description" xml:space="preserve"> <value>127.0.0.1, ::1, ...</value> <comment>"127.0.0.1 and ::1" are well known loopback addresses, do not loc</comment> </data> <data name="Hosts_Toggle_LoopbackDuplicates.Header" xml:space="preserve"> <value>Consider loopback addresses as duplicates</value> </data> <data name="RegistryPreview_Launch_GroupSettings.Header" xml:space="preserve"> <value>Launch</value> </data> <data name="RegistryPreview_LaunchButton_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Launch Registry Preview</value> </data> <data name="RegistryPreview_LaunchButtonControl.Header" xml:space="preserve"> <value>Launch Registry Preview</value> </data> <data name="RegistryPreview_DefaultRegApp.Header" xml:space="preserve"> <value>Default app</value> </data> <data name="RegistryPreview_DefaultRegApp.Description" xml:space="preserve"> <value>Make Registry Preview default app for opening .reg files</value> <comment>Registry Preview is app name. Do not localize.</comment> </data> <data name="PastePlain_ShortcutWarning.Title" xml:space="preserve"> <value>Using this shortcut may prevent non-text paste actions (e.g. images, files) or built-in paste plain text actions in other applications from functioning.</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize.Header" xml:space="preserve"> <value>Thumbnail Size</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Description_Prefix.Text" xml:space="preserve"> <value>Constrain thumbnail image size to a maximum of</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Description_Suffix.Text" xml:space="preserve"> <value>pixels</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Edit_Height.Header" xml:space="preserve"> <value>Maximum height (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Edit_Width.Header" xml:space="preserve"> <value>Maximum width (px)</value> <comment>px = pixels</comment> </data> <data name="Oobe_Peek.Description" xml:space="preserve"> <value>A lightning fast file preview feature for Windows.</value> </data> <data name="Oobe_Peek.Title" xml:space="preserve"> <value>Peek</value> </data> <data name="Oobe_Peek_HowToUse.Text" xml:space="preserve"> <value>to preview the file that's currently selected in File Explorer.</value> </data> <data name="MWB_PCNameLabel.PlaceholderText" xml:space="preserve"> <value>Device name</value> </data> <data name="MWB_SecurityKeyLabel.PlaceholderText" xml:space="preserve"> <value>Security key</value> </data> <data name="Hosts_Encoding.Description" xml:space="preserve"> <value>Choose the encoding of the hosts file</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Hosts_Encoding.Header" xml:space="preserve"> <value>Encoding</value> </data> <data name="Hosts_Encoding_Utf8.Content" xml:space="preserve"> <value>UTF-8</value> </data> <data name="Hosts_Encoding_Utf8Bom.Content" xml:space="preserve"> <value>UTF-8 with BOM</value> </data> <data name="MouseUtils_MouseHighlighter_AlwaysColor.Header" xml:space="preserve"> <value>Always highlight color</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsAutoHide.Content" xml:space="preserve"> <value>Automatically hide crosshairs when the mouse pointer is hidden</value> </data> <data name="MouseUtils_AutoActivate.Content" xml:space="preserve"> <value>Automatically activate on utility startup</value> </data> <data name="Run_FindMorePlugins.Text" xml:space="preserve"> <value>Find more plugins</value> </data> <data name="Run_PluginUseFindMorePlugins.Content" xml:space="preserve"> <value>Find more plugins</value> </data> <data name="Run_SomePluginsAreGpoManaged.Title" xml:space="preserve"> <value>The system administrator is managing the enabled state of some plugins.</value> </data> <data name="AlwaysOnTop_FrameOpacity.Header" xml:space="preserve"> <value>Opacity (%)</value> </data> <data name="MouseUtils_FindMyMouse_ActivationCustomizedShortcut.Content" xml:space="preserve"> <value>Custom shortcut</value> </data> <data name="MouseUtils_FindMyMouse_ActivationDoubleRightControlPress.Content" xml:space="preserve"> <value>Press Right Control twice</value> <comment>Right control is the physical key on the keyboard.</comment> </data> <data name="MouseUtils_FindMyMouse_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to turn on or off this mode</value> </data> <data name="MouseUtils_FindMyMouse_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="SettingsWindow_AdminTitle" xml:space="preserve"> <value>Administrator: PowerToys Settings</value> <comment>Title of the settings window when running as administrator</comment> </data> <data name="DashboardTitle.Text" xml:space="preserve"> <value>Dashboard</value> </data> <data name="Shell_Dashboard.Content" xml:space="preserve"> <value>Dashboard</value> </data> <data name="GPO_IsSettingForcedText.Text" xml:space="preserve"> <value>This setting is enforced by your System Administrator.</value> </data> <data name="DisabledModules.Text" xml:space="preserve"> <value>Disabled modules</value> </data> <data name="EnabledModules.Text" xml:space="preserve"> <value>Enabled modules</value> </data> <data name="Peek_Preview_GroupSettings.Header" xml:space="preserve"> <value>Preview</value> </data> <data name="Peek_SourceCode_Header.Description" xml:space="preserve"> <value>.cpp, .py, .json, .xml, .csproj, ...</value> </data> <data name="Peek_SourceCode_Header.Header" xml:space="preserve"> <value>Source code files (Monaco)</value> </data> <data name="Peek_SourceCode_TryFormat.Description" xml:space="preserve"> <value>Applies to json and xml. Files remain unchanged.</value> </data> <data name="Peek_SourceCode_TryFormat.Header" xml:space="preserve"> <value>Try to format the source for preview</value> </data> <data name="Peek_SourceCode_WrapText.Content" xml:space="preserve"> <value>Wrap text</value> </data> </root>
iakrayna
949b9a61856e340a4367be54dc405b4d3574f280
1a8007ca0a5d420f6b6f9c832f4da266da86ca76
Fixed per recommendation
iakrayna
345
microsoft/PowerToys
29,023
[Settings] Adding a Dashboard Panel
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request Adding a new Dashboard panel to the settings app. It contains the active modules with a brief description, activation shortcut if present, launch button if reasonable and a quick link button to the module's settings page. The new dashboard panel contains a list of all the modules as well, where the user can toggle the modules' enabled/disabled state. ![Dashboard](https://github.com/microsoft/PowerToys/assets/9866362/a773ff5b-0321-4eb3-9c3d-b5b4df9a25f5) <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [X] **Closes:** #26816 - [ ] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected - [ ] **Tests:** Added/updated and all pass - [ ] **Localization:** All end user facing strings can be localized - [ ] **Dev docs:** Added/updated - [ ] **New binaries:** Added on the required places - [ ] [JSON for signing](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ESRPSigning_core.json) for new binaries - [ ] [WXS for installer](https://github.com/microsoft/PowerToys/blob/main/installer/PowerToysSetup/Product.wxs) for new binaries and localization folder - [ ] [YML for CI pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ci/templates/build-powertoys-steps.yml) for new test projects - [ ] [YML for signed pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/release.yml) - [ ] **Documentation updated:** If checked, please file a pull request on [our docs repo](https://github.com/MicrosoftDocs/windows-uwp/tree/docs/hub/powertoys) and link it here: #xxx <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed Tested locally
null
2023-10-04 18:35:54+00:00
2023-10-20 12:23:25+00:00
src/settings-ui/Settings.UI/PowerToys.Settings.csproj
<Project Sdk="Microsoft.NET.Sdk"> <Import Project="..\..\Version.props" /> <PropertyGroup> <OutputType>WinExe</OutputType> <TargetFramework>net7.0-windows10.0.20348.0</TargetFramework> <TargetPlatformMinVersion>10.0.19041.0</TargetPlatformMinVersion> <SupportedOSPlatformVersion>10.0.19041.0</SupportedOSPlatformVersion> <RootNamespace>Microsoft.PowerToys.Settings.UI</RootNamespace> <ApplicationManifest>app.manifest</ApplicationManifest> <RuntimeIdentifiers>win10-x64;win10-arm64</RuntimeIdentifiers> <UseWinUI>true</UseWinUI> <EnablePreviewMsixTooling>true</EnablePreviewMsixTooling> <WindowsPackageType>None</WindowsPackageType> <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath> <AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath> <ApplicationIcon>Assets\Settings\icon.ico</ApplicationIcon> <WindowsAppSDKSelfContained>true</WindowsAppSDKSelfContained> <!-- OutputPath looks like this because it has to be called both by settings and publish.cmd --> <OutputPath>..\..\..\$(Platform)\$(Configuration)\WinUI3Apps</OutputPath> <SelfContained>true</SelfContained> <!-- MRT from windows app sdk will search for a pri file with the same name of the module before defaulting to resources.pri --> <ProjectPriFileName>PowerToys.Settings.pri</ProjectPriFileName> </PropertyGroup> <ItemGroup> <Page Remove="SettingsXAML\App.xaml" /> </ItemGroup> <ItemGroup> <ApplicationDefinition Include="SettingsXAML\App.xaml" /> </ItemGroup> <!-- SelfContained=true requires RuntimeIdentifier to be set --> <PropertyGroup Condition="'$(Platform)'=='x64'"> <RuntimeIdentifier>win10-x64</RuntimeIdentifier> </PropertyGroup> <PropertyGroup Condition="'$(Platform)'=='ARM64'"> <RuntimeIdentifier>win10-arm64</RuntimeIdentifier> </PropertyGroup> <PropertyGroup Condition="'$(Configuration)'=='Debug'"> <NoWarn></NoWarn> <TreatWarningsAsErrors>True</TreatWarningsAsErrors> <WarningsNotAsErrors>CA1720</WarningsNotAsErrors> <Optimize>False</Optimize> <DebugType>full</DebugType> <DebugSymbols>true</DebugSymbols> <DefineConstants>DEBUG;TRACE</DefineConstants> </PropertyGroup> <PropertyGroup Condition="'$(Configuration)'=='Release'"> <NoWarn></NoWarn> <TreatWarningsAsErrors>True</TreatWarningsAsErrors> <WarningsNotAsErrors>CA1720</WarningsNotAsErrors> <Optimize>true</Optimize> </PropertyGroup> <!-- See https://learn.microsoft.com/windows/apps/develop/platform/csharp-winrt/net-projection-from-cppwinrt-component for more info --> <PropertyGroup> <CsWinRTIncludes>PowerToys.GPOWrapper</CsWinRTIncludes> <CsWinRTGeneratedFilesDir>$(OutDir)</CsWinRTGeneratedFilesDir> <ErrorOnDuplicatePublishOutputFiles>false</ErrorOnDuplicatePublishOutputFiles> </PropertyGroup> <!-- Needed for CommunityToolkit.Labs.WinUI.SettingsControls. --> <PropertyGroup> <RestoreAdditionalProjectSources>https://pkgs.dev.azure.com/dotnet/CommunityToolkit/_packaging/CommunityToolkit-Labs/nuget/v3/index.json</RestoreAdditionalProjectSources> </PropertyGroup> <ItemGroup> <Content Include="Assets\Settings\SplashScreen.scale-200.png" /> <Content Include="Assets\Settings\LockScreenLogo.scale-200.png" /> <Content Include="Assets\Settings\Square150x150Logo.scale-200.png" /> <Content Include="Assets\Settings\Square44x44Logo.scale-200.png" /> <Content Include="Assets\Settings\Square44x44Logo.targetsize-24_altform-unplated.png" /> <Content Include="Assets\Settings\StoreLogo.png" /> <Content Include="Assets\Settings\Wide310x150Logo.scale-200.png" /> </ItemGroup> <ItemGroup> <PackageReference Include="CommunityToolkit.WinUI.Controls.SettingsControls" /> <PackageReference Include="CommunityToolkit.WinUI.Controls.Primitives" /> <PackageReference Include="CommunityToolkit.WinUI.Animations" /> <PackageReference Include="CommunityToolkit.WinUI.Extensions" /> <PackageReference Include="CommunityToolkit.WinUI.Converters" /> <PackageReference Include="CommunityToolkit.WinUI.UI.Controls.Markdown" /> <PackageReference Include="Microsoft.Windows.CsWinRT" /> <PackageReference Include="WinUIEx" /> <PackageReference Include="Microsoft.WindowsAppSDK" /> <PackageReference Include="Microsoft.Windows.SDK.BuildTools" /> <PackageReference Include="Microsoft.Xaml.Behaviors.WinUI.Managed" /> <PackageReference Include="StreamJsonRpc" /> <!-- HACK: Microsoft.Extensions.Hosting is referenced, even if it is not used, to force dll versions to be the same as in other projects. Really only needed since the Experimentation APIs that are added in CI reference some net standard 2.0 assemblies. --> <PackageReference Include="Microsoft.Extensions.Hosting" /> <Manifest Include="$(ApplicationManifest)" /> </ItemGroup> <!-- Defining the "Msix" ProjectCapability here allows the Single-project MSIX Packaging Tools extension to be activated for this project even if the Windows App SDK Nuget package has not yet been restored --> <ItemGroup Condition="'$(DisableMsixProjectCapabilityAddedByProject)'!='true' and '$(EnablePreviewMsixTooling)'=='true'"> <ProjectCapability Include="Msix" /> </ItemGroup> <ItemGroup> <!-- HACK: Common.UI is referenced, even if it is not used, to force dll versions to be the same as in other projects that use it. It's still unclear why this is the case, but this is need for flattening the install directory. --> <ProjectReference Include="..\..\common\Common.UI\Common.UI.csproj" /> <ProjectReference Include="..\..\common\AllExperiments\AllExperiments.csproj" /> <ProjectReference Include="..\..\common\GPOWrapper\GPOWrapper.vcxproj" /> <ProjectReference Include="..\..\common\interop\PowerToys.Interop.vcxproj" /> <ProjectReference Include="..\..\common\ManagedCommon\ManagedCommon.csproj" /> <ProjectReference Include="..\..\common\ManagedTelemetry\Telemetry\ManagedTelemetry.csproj" /> <ProjectReference Include="..\Settings.UI.Library\Settings.UI.Library.csproj" /> </ItemGroup> <PropertyGroup> <!-- TODO: fix issues and reenable --> <!-- These are caused by streamjsonrpc dependency on Microsoft.VisualStudio.Threading.Analyzers --> <!-- We might want to add that to the project and fix the issues as well --> <NoWarn>VSTHRD002;VSTHRD110;VSTHRD100;VSTHRD200;VSTHRD101</NoWarn> </PropertyGroup> <ItemGroup> <None Update="Assets\Settings\icon.ico"> <CopyToOutputDirectory>Always</CopyToOutputDirectory> </None> </ItemGroup> </Project>
<Project Sdk="Microsoft.NET.Sdk"> <Import Project="..\..\Version.props" /> <PropertyGroup> <OutputType>WinExe</OutputType> <TargetFramework>net7.0-windows10.0.20348.0</TargetFramework> <TargetPlatformMinVersion>10.0.19041.0</TargetPlatformMinVersion> <SupportedOSPlatformVersion>10.0.19041.0</SupportedOSPlatformVersion> <RootNamespace>Microsoft.PowerToys.Settings.UI</RootNamespace> <ApplicationManifest>app.manifest</ApplicationManifest> <RuntimeIdentifiers>win10-x64;win10-arm64</RuntimeIdentifiers> <UseWinUI>true</UseWinUI> <EnablePreviewMsixTooling>true</EnablePreviewMsixTooling> <WindowsPackageType>None</WindowsPackageType> <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath> <AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath> <ApplicationIcon>Assets\Settings\icon.ico</ApplicationIcon> <WindowsAppSDKSelfContained>true</WindowsAppSDKSelfContained> <!-- OutputPath looks like this because it has to be called both by settings and publish.cmd --> <OutputPath>..\..\..\$(Platform)\$(Configuration)\WinUI3Apps</OutputPath> <SelfContained>true</SelfContained> <!-- MRT from windows app sdk will search for a pri file with the same name of the module before defaulting to resources.pri --> <ProjectPriFileName>PowerToys.Settings.pri</ProjectPriFileName> </PropertyGroup> <ItemGroup> <None Remove="SettingsXAML\Views\DashboardPage.xaml" /> </ItemGroup> <ItemGroup> <Page Remove="SettingsXAML\App.xaml" /> </ItemGroup> <ItemGroup> <ApplicationDefinition Include="SettingsXAML\App.xaml" /> </ItemGroup> <!-- SelfContained=true requires RuntimeIdentifier to be set --> <PropertyGroup Condition="'$(Platform)'=='x64'"> <RuntimeIdentifier>win10-x64</RuntimeIdentifier> </PropertyGroup> <PropertyGroup Condition="'$(Platform)'=='ARM64'"> <RuntimeIdentifier>win10-arm64</RuntimeIdentifier> </PropertyGroup> <PropertyGroup Condition="'$(Configuration)'=='Debug'"> <NoWarn></NoWarn> <TreatWarningsAsErrors>True</TreatWarningsAsErrors> <WarningsNotAsErrors>CA1720</WarningsNotAsErrors> <Optimize>False</Optimize> <DebugType>full</DebugType> <DebugSymbols>true</DebugSymbols> <DefineConstants>DEBUG;TRACE</DefineConstants> </PropertyGroup> <PropertyGroup Condition="'$(Configuration)'=='Release'"> <NoWarn></NoWarn> <TreatWarningsAsErrors>True</TreatWarningsAsErrors> <WarningsNotAsErrors>CA1720</WarningsNotAsErrors> <Optimize>true</Optimize> </PropertyGroup> <!-- See https://learn.microsoft.com/windows/apps/develop/platform/csharp-winrt/net-projection-from-cppwinrt-component for more info --> <PropertyGroup> <CsWinRTIncludes>PowerToys.GPOWrapper</CsWinRTIncludes> <CsWinRTGeneratedFilesDir>$(OutDir)</CsWinRTGeneratedFilesDir> <ErrorOnDuplicatePublishOutputFiles>false</ErrorOnDuplicatePublishOutputFiles> </PropertyGroup> <!-- Needed for CommunityToolkit.Labs.WinUI.SettingsControls. --> <PropertyGroup> <RestoreAdditionalProjectSources>https://pkgs.dev.azure.com/dotnet/CommunityToolkit/_packaging/CommunityToolkit-Labs/nuget/v3/index.json</RestoreAdditionalProjectSources> </PropertyGroup> <ItemGroup> <Content Include="Assets\Settings\SplashScreen.scale-200.png" /> <Content Include="Assets\Settings\LockScreenLogo.scale-200.png" /> <Content Include="Assets\Settings\Square150x150Logo.scale-200.png" /> <Content Include="Assets\Settings\Square44x44Logo.scale-200.png" /> <Content Include="Assets\Settings\Square44x44Logo.targetsize-24_altform-unplated.png" /> <Content Include="Assets\Settings\StoreLogo.png" /> <Content Include="Assets\Settings\Wide310x150Logo.scale-200.png" /> </ItemGroup> <ItemGroup> <PackageReference Include="CommunityToolkit.WinUI.Controls.SettingsControls" /> <PackageReference Include="CommunityToolkit.WinUI.Controls.Primitives" /> <PackageReference Include="CommunityToolkit.WinUI.Animations" /> <PackageReference Include="CommunityToolkit.WinUI.Extensions" /> <PackageReference Include="CommunityToolkit.WinUI.Converters" /> <PackageReference Include="CommunityToolkit.WinUI.UI.Controls.Markdown" /> <PackageReference Include="Microsoft.Windows.CsWinRT" /> <PackageReference Include="WinUIEx" /> <PackageReference Include="Microsoft.WindowsAppSDK" /> <PackageReference Include="Microsoft.Windows.SDK.BuildTools" /> <PackageReference Include="Microsoft.Xaml.Behaviors.WinUI.Managed" /> <PackageReference Include="StreamJsonRpc" /> <!-- HACK: Microsoft.Extensions.Hosting is referenced, even if it is not used, to force dll versions to be the same as in other projects. Really only needed since the Experimentation APIs that are added in CI reference some net standard 2.0 assemblies. --> <PackageReference Include="Microsoft.Extensions.Hosting" /> <Manifest Include="$(ApplicationManifest)" /> </ItemGroup> <!-- Defining the "Msix" ProjectCapability here allows the Single-project MSIX Packaging Tools extension to be activated for this project even if the Windows App SDK Nuget package has not yet been restored --> <ItemGroup Condition="'$(DisableMsixProjectCapabilityAddedByProject)'!='true' and '$(EnablePreviewMsixTooling)'=='true'"> <ProjectCapability Include="Msix" /> </ItemGroup> <ItemGroup> <!-- HACK: Common.UI is referenced, even if it is not used, to force dll versions to be the same as in other projects that use it. It's still unclear why this is the case, but this is need for flattening the install directory. --> <ProjectReference Include="..\..\common\Common.UI\Common.UI.csproj" /> <ProjectReference Include="..\..\common\AllExperiments\AllExperiments.csproj" /> <ProjectReference Include="..\..\common\GPOWrapper\GPOWrapper.vcxproj" /> <ProjectReference Include="..\..\common\interop\PowerToys.Interop.vcxproj" /> <ProjectReference Include="..\..\common\ManagedCommon\ManagedCommon.csproj" /> <ProjectReference Include="..\..\common\ManagedTelemetry\Telemetry\ManagedTelemetry.csproj" /> <ProjectReference Include="..\Settings.UI.Library\Settings.UI.Library.csproj" /> </ItemGroup> <PropertyGroup> <!-- TODO: fix issues and reenable --> <!-- These are caused by streamjsonrpc dependency on Microsoft.VisualStudio.Threading.Analyzers --> <!-- We might want to add that to the project and fix the issues as well --> <NoWarn>VSTHRD002;VSTHRD110;VSTHRD100;VSTHRD200;VSTHRD101</NoWarn> </PropertyGroup> <ItemGroup> <None Update="Assets\Settings\icon.ico"> <CopyToOutputDirectory>Always</CopyToOutputDirectory> </None> </ItemGroup> <ItemGroup> <Page Update="SettingsXAML\Views\DashboardPage.xaml"> <XamlRuntime>$(DefaultXamlRuntime)</XamlRuntime> </Page> </ItemGroup> </Project>
donlaci
8c22f0c48540793452b70d913b2a6a719c881a33
1f936df3ebce73b726ed11c9fa38fd477b4b0fbd
not needed
stefansjfw
346
microsoft/PowerToys
29,023
[Settings] Adding a Dashboard Panel
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request Adding a new Dashboard panel to the settings app. It contains the active modules with a brief description, activation shortcut if present, launch button if reasonable and a quick link button to the module's settings page. The new dashboard panel contains a list of all the modules as well, where the user can toggle the modules' enabled/disabled state. ![Dashboard](https://github.com/microsoft/PowerToys/assets/9866362/a773ff5b-0321-4eb3-9c3d-b5b4df9a25f5) <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [X] **Closes:** #26816 - [ ] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected - [ ] **Tests:** Added/updated and all pass - [ ] **Localization:** All end user facing strings can be localized - [ ] **Dev docs:** Added/updated - [ ] **New binaries:** Added on the required places - [ ] [JSON for signing](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ESRPSigning_core.json) for new binaries - [ ] [WXS for installer](https://github.com/microsoft/PowerToys/blob/main/installer/PowerToysSetup/Product.wxs) for new binaries and localization folder - [ ] [YML for CI pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ci/templates/build-powertoys-steps.yml) for new test projects - [ ] [YML for signed pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/release.yml) - [ ] **Documentation updated:** If checked, please file a pull request on [our docs repo](https://github.com/MicrosoftDocs/windows-uwp/tree/docs/hub/powertoys) and link it here: #xxx <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed Tested locally
null
2023-10-04 18:35:54+00:00
2023-10-20 12:23:25+00:00
src/settings-ui/Settings.UI/PowerToys.Settings.csproj
<Project Sdk="Microsoft.NET.Sdk"> <Import Project="..\..\Version.props" /> <PropertyGroup> <OutputType>WinExe</OutputType> <TargetFramework>net7.0-windows10.0.20348.0</TargetFramework> <TargetPlatformMinVersion>10.0.19041.0</TargetPlatformMinVersion> <SupportedOSPlatformVersion>10.0.19041.0</SupportedOSPlatformVersion> <RootNamespace>Microsoft.PowerToys.Settings.UI</RootNamespace> <ApplicationManifest>app.manifest</ApplicationManifest> <RuntimeIdentifiers>win10-x64;win10-arm64</RuntimeIdentifiers> <UseWinUI>true</UseWinUI> <EnablePreviewMsixTooling>true</EnablePreviewMsixTooling> <WindowsPackageType>None</WindowsPackageType> <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath> <AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath> <ApplicationIcon>Assets\Settings\icon.ico</ApplicationIcon> <WindowsAppSDKSelfContained>true</WindowsAppSDKSelfContained> <!-- OutputPath looks like this because it has to be called both by settings and publish.cmd --> <OutputPath>..\..\..\$(Platform)\$(Configuration)\WinUI3Apps</OutputPath> <SelfContained>true</SelfContained> <!-- MRT from windows app sdk will search for a pri file with the same name of the module before defaulting to resources.pri --> <ProjectPriFileName>PowerToys.Settings.pri</ProjectPriFileName> </PropertyGroup> <ItemGroup> <Page Remove="SettingsXAML\App.xaml" /> </ItemGroup> <ItemGroup> <ApplicationDefinition Include="SettingsXAML\App.xaml" /> </ItemGroup> <!-- SelfContained=true requires RuntimeIdentifier to be set --> <PropertyGroup Condition="'$(Platform)'=='x64'"> <RuntimeIdentifier>win10-x64</RuntimeIdentifier> </PropertyGroup> <PropertyGroup Condition="'$(Platform)'=='ARM64'"> <RuntimeIdentifier>win10-arm64</RuntimeIdentifier> </PropertyGroup> <PropertyGroup Condition="'$(Configuration)'=='Debug'"> <NoWarn></NoWarn> <TreatWarningsAsErrors>True</TreatWarningsAsErrors> <WarningsNotAsErrors>CA1720</WarningsNotAsErrors> <Optimize>False</Optimize> <DebugType>full</DebugType> <DebugSymbols>true</DebugSymbols> <DefineConstants>DEBUG;TRACE</DefineConstants> </PropertyGroup> <PropertyGroup Condition="'$(Configuration)'=='Release'"> <NoWarn></NoWarn> <TreatWarningsAsErrors>True</TreatWarningsAsErrors> <WarningsNotAsErrors>CA1720</WarningsNotAsErrors> <Optimize>true</Optimize> </PropertyGroup> <!-- See https://learn.microsoft.com/windows/apps/develop/platform/csharp-winrt/net-projection-from-cppwinrt-component for more info --> <PropertyGroup> <CsWinRTIncludes>PowerToys.GPOWrapper</CsWinRTIncludes> <CsWinRTGeneratedFilesDir>$(OutDir)</CsWinRTGeneratedFilesDir> <ErrorOnDuplicatePublishOutputFiles>false</ErrorOnDuplicatePublishOutputFiles> </PropertyGroup> <!-- Needed for CommunityToolkit.Labs.WinUI.SettingsControls. --> <PropertyGroup> <RestoreAdditionalProjectSources>https://pkgs.dev.azure.com/dotnet/CommunityToolkit/_packaging/CommunityToolkit-Labs/nuget/v3/index.json</RestoreAdditionalProjectSources> </PropertyGroup> <ItemGroup> <Content Include="Assets\Settings\SplashScreen.scale-200.png" /> <Content Include="Assets\Settings\LockScreenLogo.scale-200.png" /> <Content Include="Assets\Settings\Square150x150Logo.scale-200.png" /> <Content Include="Assets\Settings\Square44x44Logo.scale-200.png" /> <Content Include="Assets\Settings\Square44x44Logo.targetsize-24_altform-unplated.png" /> <Content Include="Assets\Settings\StoreLogo.png" /> <Content Include="Assets\Settings\Wide310x150Logo.scale-200.png" /> </ItemGroup> <ItemGroup> <PackageReference Include="CommunityToolkit.WinUI.Controls.SettingsControls" /> <PackageReference Include="CommunityToolkit.WinUI.Controls.Primitives" /> <PackageReference Include="CommunityToolkit.WinUI.Animations" /> <PackageReference Include="CommunityToolkit.WinUI.Extensions" /> <PackageReference Include="CommunityToolkit.WinUI.Converters" /> <PackageReference Include="CommunityToolkit.WinUI.UI.Controls.Markdown" /> <PackageReference Include="Microsoft.Windows.CsWinRT" /> <PackageReference Include="WinUIEx" /> <PackageReference Include="Microsoft.WindowsAppSDK" /> <PackageReference Include="Microsoft.Windows.SDK.BuildTools" /> <PackageReference Include="Microsoft.Xaml.Behaviors.WinUI.Managed" /> <PackageReference Include="StreamJsonRpc" /> <!-- HACK: Microsoft.Extensions.Hosting is referenced, even if it is not used, to force dll versions to be the same as in other projects. Really only needed since the Experimentation APIs that are added in CI reference some net standard 2.0 assemblies. --> <PackageReference Include="Microsoft.Extensions.Hosting" /> <Manifest Include="$(ApplicationManifest)" /> </ItemGroup> <!-- Defining the "Msix" ProjectCapability here allows the Single-project MSIX Packaging Tools extension to be activated for this project even if the Windows App SDK Nuget package has not yet been restored --> <ItemGroup Condition="'$(DisableMsixProjectCapabilityAddedByProject)'!='true' and '$(EnablePreviewMsixTooling)'=='true'"> <ProjectCapability Include="Msix" /> </ItemGroup> <ItemGroup> <!-- HACK: Common.UI is referenced, even if it is not used, to force dll versions to be the same as in other projects that use it. It's still unclear why this is the case, but this is need for flattening the install directory. --> <ProjectReference Include="..\..\common\Common.UI\Common.UI.csproj" /> <ProjectReference Include="..\..\common\AllExperiments\AllExperiments.csproj" /> <ProjectReference Include="..\..\common\GPOWrapper\GPOWrapper.vcxproj" /> <ProjectReference Include="..\..\common\interop\PowerToys.Interop.vcxproj" /> <ProjectReference Include="..\..\common\ManagedCommon\ManagedCommon.csproj" /> <ProjectReference Include="..\..\common\ManagedTelemetry\Telemetry\ManagedTelemetry.csproj" /> <ProjectReference Include="..\Settings.UI.Library\Settings.UI.Library.csproj" /> </ItemGroup> <PropertyGroup> <!-- TODO: fix issues and reenable --> <!-- These are caused by streamjsonrpc dependency on Microsoft.VisualStudio.Threading.Analyzers --> <!-- We might want to add that to the project and fix the issues as well --> <NoWarn>VSTHRD002;VSTHRD110;VSTHRD100;VSTHRD200;VSTHRD101</NoWarn> </PropertyGroup> <ItemGroup> <None Update="Assets\Settings\icon.ico"> <CopyToOutputDirectory>Always</CopyToOutputDirectory> </None> </ItemGroup> </Project>
<Project Sdk="Microsoft.NET.Sdk"> <Import Project="..\..\Version.props" /> <PropertyGroup> <OutputType>WinExe</OutputType> <TargetFramework>net7.0-windows10.0.20348.0</TargetFramework> <TargetPlatformMinVersion>10.0.19041.0</TargetPlatformMinVersion> <SupportedOSPlatformVersion>10.0.19041.0</SupportedOSPlatformVersion> <RootNamespace>Microsoft.PowerToys.Settings.UI</RootNamespace> <ApplicationManifest>app.manifest</ApplicationManifest> <RuntimeIdentifiers>win10-x64;win10-arm64</RuntimeIdentifiers> <UseWinUI>true</UseWinUI> <EnablePreviewMsixTooling>true</EnablePreviewMsixTooling> <WindowsPackageType>None</WindowsPackageType> <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath> <AppendRuntimeIdentifierToOutputPath>false</AppendRuntimeIdentifierToOutputPath> <ApplicationIcon>Assets\Settings\icon.ico</ApplicationIcon> <WindowsAppSDKSelfContained>true</WindowsAppSDKSelfContained> <!-- OutputPath looks like this because it has to be called both by settings and publish.cmd --> <OutputPath>..\..\..\$(Platform)\$(Configuration)\WinUI3Apps</OutputPath> <SelfContained>true</SelfContained> <!-- MRT from windows app sdk will search for a pri file with the same name of the module before defaulting to resources.pri --> <ProjectPriFileName>PowerToys.Settings.pri</ProjectPriFileName> </PropertyGroup> <ItemGroup> <None Remove="SettingsXAML\Views\DashboardPage.xaml" /> </ItemGroup> <ItemGroup> <Page Remove="SettingsXAML\App.xaml" /> </ItemGroup> <ItemGroup> <ApplicationDefinition Include="SettingsXAML\App.xaml" /> </ItemGroup> <!-- SelfContained=true requires RuntimeIdentifier to be set --> <PropertyGroup Condition="'$(Platform)'=='x64'"> <RuntimeIdentifier>win10-x64</RuntimeIdentifier> </PropertyGroup> <PropertyGroup Condition="'$(Platform)'=='ARM64'"> <RuntimeIdentifier>win10-arm64</RuntimeIdentifier> </PropertyGroup> <PropertyGroup Condition="'$(Configuration)'=='Debug'"> <NoWarn></NoWarn> <TreatWarningsAsErrors>True</TreatWarningsAsErrors> <WarningsNotAsErrors>CA1720</WarningsNotAsErrors> <Optimize>False</Optimize> <DebugType>full</DebugType> <DebugSymbols>true</DebugSymbols> <DefineConstants>DEBUG;TRACE</DefineConstants> </PropertyGroup> <PropertyGroup Condition="'$(Configuration)'=='Release'"> <NoWarn></NoWarn> <TreatWarningsAsErrors>True</TreatWarningsAsErrors> <WarningsNotAsErrors>CA1720</WarningsNotAsErrors> <Optimize>true</Optimize> </PropertyGroup> <!-- See https://learn.microsoft.com/windows/apps/develop/platform/csharp-winrt/net-projection-from-cppwinrt-component for more info --> <PropertyGroup> <CsWinRTIncludes>PowerToys.GPOWrapper</CsWinRTIncludes> <CsWinRTGeneratedFilesDir>$(OutDir)</CsWinRTGeneratedFilesDir> <ErrorOnDuplicatePublishOutputFiles>false</ErrorOnDuplicatePublishOutputFiles> </PropertyGroup> <!-- Needed for CommunityToolkit.Labs.WinUI.SettingsControls. --> <PropertyGroup> <RestoreAdditionalProjectSources>https://pkgs.dev.azure.com/dotnet/CommunityToolkit/_packaging/CommunityToolkit-Labs/nuget/v3/index.json</RestoreAdditionalProjectSources> </PropertyGroup> <ItemGroup> <Content Include="Assets\Settings\SplashScreen.scale-200.png" /> <Content Include="Assets\Settings\LockScreenLogo.scale-200.png" /> <Content Include="Assets\Settings\Square150x150Logo.scale-200.png" /> <Content Include="Assets\Settings\Square44x44Logo.scale-200.png" /> <Content Include="Assets\Settings\Square44x44Logo.targetsize-24_altform-unplated.png" /> <Content Include="Assets\Settings\StoreLogo.png" /> <Content Include="Assets\Settings\Wide310x150Logo.scale-200.png" /> </ItemGroup> <ItemGroup> <PackageReference Include="CommunityToolkit.WinUI.Controls.SettingsControls" /> <PackageReference Include="CommunityToolkit.WinUI.Controls.Primitives" /> <PackageReference Include="CommunityToolkit.WinUI.Animations" /> <PackageReference Include="CommunityToolkit.WinUI.Extensions" /> <PackageReference Include="CommunityToolkit.WinUI.Converters" /> <PackageReference Include="CommunityToolkit.WinUI.UI.Controls.Markdown" /> <PackageReference Include="Microsoft.Windows.CsWinRT" /> <PackageReference Include="WinUIEx" /> <PackageReference Include="Microsoft.WindowsAppSDK" /> <PackageReference Include="Microsoft.Windows.SDK.BuildTools" /> <PackageReference Include="Microsoft.Xaml.Behaviors.WinUI.Managed" /> <PackageReference Include="StreamJsonRpc" /> <!-- HACK: Microsoft.Extensions.Hosting is referenced, even if it is not used, to force dll versions to be the same as in other projects. Really only needed since the Experimentation APIs that are added in CI reference some net standard 2.0 assemblies. --> <PackageReference Include="Microsoft.Extensions.Hosting" /> <Manifest Include="$(ApplicationManifest)" /> </ItemGroup> <!-- Defining the "Msix" ProjectCapability here allows the Single-project MSIX Packaging Tools extension to be activated for this project even if the Windows App SDK Nuget package has not yet been restored --> <ItemGroup Condition="'$(DisableMsixProjectCapabilityAddedByProject)'!='true' and '$(EnablePreviewMsixTooling)'=='true'"> <ProjectCapability Include="Msix" /> </ItemGroup> <ItemGroup> <!-- HACK: Common.UI is referenced, even if it is not used, to force dll versions to be the same as in other projects that use it. It's still unclear why this is the case, but this is need for flattening the install directory. --> <ProjectReference Include="..\..\common\Common.UI\Common.UI.csproj" /> <ProjectReference Include="..\..\common\AllExperiments\AllExperiments.csproj" /> <ProjectReference Include="..\..\common\GPOWrapper\GPOWrapper.vcxproj" /> <ProjectReference Include="..\..\common\interop\PowerToys.Interop.vcxproj" /> <ProjectReference Include="..\..\common\ManagedCommon\ManagedCommon.csproj" /> <ProjectReference Include="..\..\common\ManagedTelemetry\Telemetry\ManagedTelemetry.csproj" /> <ProjectReference Include="..\Settings.UI.Library\Settings.UI.Library.csproj" /> </ItemGroup> <PropertyGroup> <!-- TODO: fix issues and reenable --> <!-- These are caused by streamjsonrpc dependency on Microsoft.VisualStudio.Threading.Analyzers --> <!-- We might want to add that to the project and fix the issues as well --> <NoWarn>VSTHRD002;VSTHRD110;VSTHRD100;VSTHRD200;VSTHRD101</NoWarn> </PropertyGroup> <ItemGroup> <None Update="Assets\Settings\icon.ico"> <CopyToOutputDirectory>Always</CopyToOutputDirectory> </None> </ItemGroup> <ItemGroup> <Page Update="SettingsXAML\Views\DashboardPage.xaml"> <XamlRuntime>$(DefaultXamlRuntime)</XamlRuntime> </Page> </ItemGroup> </Project>
donlaci
8c22f0c48540793452b70d913b2a6a719c881a33
1f936df3ebce73b726ed11c9fa38fd477b4b0fbd
not needed
stefansjfw
347
microsoft/PowerToys
29,023
[Settings] Adding a Dashboard Panel
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request Adding a new Dashboard panel to the settings app. It contains the active modules with a brief description, activation shortcut if present, launch button if reasonable and a quick link button to the module's settings page. The new dashboard panel contains a list of all the modules as well, where the user can toggle the modules' enabled/disabled state. ![Dashboard](https://github.com/microsoft/PowerToys/assets/9866362/a773ff5b-0321-4eb3-9c3d-b5b4df9a25f5) <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [X] **Closes:** #26816 - [ ] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected - [ ] **Tests:** Added/updated and all pass - [ ] **Localization:** All end user facing strings can be localized - [ ] **Dev docs:** Added/updated - [ ] **New binaries:** Added on the required places - [ ] [JSON for signing](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ESRPSigning_core.json) for new binaries - [ ] [WXS for installer](https://github.com/microsoft/PowerToys/blob/main/installer/PowerToysSetup/Product.wxs) for new binaries and localization folder - [ ] [YML for CI pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ci/templates/build-powertoys-steps.yml) for new test projects - [ ] [YML for signed pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/release.yml) - [ ] **Documentation updated:** If checked, please file a pull request on [our docs repo](https://github.com/MicrosoftDocs/windows-uwp/tree/docs/hub/powertoys) and link it here: #xxx <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed Tested locally
null
2023-10-04 18:35:54+00:00
2023-10-20 12:23:25+00:00
src/settings-ui/Settings.UI/SettingsXAML/Controls/KeyVisual/KeyVisual.xaml
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:local="using:Microsoft.PowerToys.Settings.UI.Controls"> <x:Double x:Key="DefaultIconSize">16</x:Double> <x:Double x:Key="SmallIconSize">12</x:Double> <Style x:Key="DefaultTextKeyVisualStyle" TargetType="local:KeyVisual"> <Setter Property="MinWidth" Value="56" /> <Setter Property="MinHeight" Value="48" /> <Setter Property="Background" Value="{ThemeResource AccentButtonBackground}" /> <Setter Property="Foreground" Value="{ThemeResource AccentButtonForeground}" /> <Setter Property="BorderBrush" Value="{ThemeResource AccentButtonBorderBrush}" /> <Setter Property="BorderThickness" Value="{ThemeResource ButtonBorderThemeThickness}" /> <Setter Property="Padding" Value="16,8,16,8" /> <Setter Property="FontWeight" Value="SemiBold" /> <Setter Property="HorizontalAlignment" Value="Center" /> <Setter Property="HorizontalContentAlignment" Value="Center" /> <Setter Property="FontSize" Value="18" /> <Setter Property="Template"> <Setter.Value> <ControlTemplate TargetType="local:KeyVisual"> <Grid> <Grid> <Rectangle x:Name="ContentHolder" Height="{TemplateBinding Height}" MinWidth="{TemplateBinding MinWidth}" Fill="{TemplateBinding Background}" RadiusX="4" RadiusY="4" Stroke="{TemplateBinding BorderBrush}" StrokeThickness="{TemplateBinding BorderThickness}" /> <ContentPresenter x:Name="KeyPresenter" Margin="{TemplateBinding Padding}" HorizontalAlignment="{TemplateBinding HorizontalContentAlignment}" VerticalAlignment="Center" Content="{TemplateBinding Content}" FontSize="{TemplateBinding FontSize}" FontWeight="{TemplateBinding FontWeight}" Foreground="{TemplateBinding Foreground}" /> </Grid> <VisualStateManager.VisualStateGroups> <VisualStateGroup x:Name="CommonStates"> <VisualState x:Name="Normal" /> <VisualState x:Name="Disabled"> <VisualState.Setters> <Setter Target="ContentHolder.Fill" Value="{ThemeResource AccentButtonBackgroundDisabled}" /> <Setter Target="KeyPresenter.Foreground" Value="{ThemeResource AccentButtonForegroundDisabled}" /> <Setter Target="ContentHolder.Stroke" Value="{ThemeResource AccentButtonBorderBrushDisabled}" /> <!--<Setter Target="ContentHolder.StrokeThickness" Value="{TemplateBinding BorderThickness}" />--> </VisualState.Setters> </VisualState> </VisualStateGroup> <VisualStateGroup x:Name="StateStates"> <VisualState x:Name="Default" /> <VisualState x:Name="Error"> <VisualState.Setters> <Setter Target="ContentHolder.Fill" Value="{ThemeResource InfoBarErrorSeverityBackgroundBrush}" /> <Setter Target="KeyPresenter.Foreground" Value="{ThemeResource InfoBarErrorSeverityIconBackground}" /> <Setter Target="ContentHolder.Stroke" Value="{ThemeResource InfoBarErrorSeverityIconBackground}" /> <Setter Target="ContentHolder.StrokeThickness" Value="2" /> </VisualState.Setters> </VisualState> </VisualStateGroup> </VisualStateManager.VisualStateGroups> </Grid> </ControlTemplate> </Setter.Value> </Setter> </Style> <Style x:Key="SmallTextKeyVisualStyle" BasedOn="{StaticResource DefaultTextKeyVisualStyle}" TargetType="local:KeyVisual"> <Setter Property="MinWidth" Value="40" /> <Setter Property="Height" Value="36" /> <Setter Property="FontWeight" Value="SemiBold" /> <Setter Property="Padding" Value="12,0,12,2" /> <Setter Property="FontSize" Value="14" /> <Setter Property="HorizontalContentAlignment" Value="Center" /> </Style> <Style x:Key="SmallOutlineTextKeyVisualStyle" BasedOn="{StaticResource DefaultTextKeyVisualStyle}" TargetType="local:KeyVisual"> <Setter Property="MinWidth" Value="40" /> <Setter Property="Background" Value="{ThemeResource ButtonBackground}" /> <Setter Property="Foreground" Value="{ThemeResource ButtonForeground}" /> <Setter Property="BorderBrush" Value="{ThemeResource ButtonBorderBrush}" /> <Setter Property="Height" Value="36" /> <Setter Property="FontWeight" Value="SemiBold" /> <Setter Property="Padding" Value="8,0,8,2" /> <Setter Property="FontSize" Value="13" /> <Setter Property="HorizontalContentAlignment" Value="Center" /> </Style> <Style x:Key="DefaultIconKeyVisualStyle" BasedOn="{StaticResource DefaultTextKeyVisualStyle}" TargetType="local:KeyVisual"> <Setter Property="MinWidth" Value="56" /> <Setter Property="MinHeight" Value="48" /> <Setter Property="FontFamily" Value="{ThemeResource SymbolThemeFontFamily}" /> <Setter Property="Padding" Value="16,8,16,8" /> <Setter Property="FontSize" Value="14" /> <Setter Property="HorizontalContentAlignment" Value="Center" /> </Style> <Style x:Key="SmallIconKeyVisualStyle" BasedOn="{StaticResource DefaultTextKeyVisualStyle}" TargetType="local:KeyVisual"> <Setter Property="MinWidth" Value="40" /> <Setter Property="Height" Value="36" /> <Setter Property="FontFamily" Value="{ThemeResource SymbolThemeFontFamily}" /> <Setter Property="FontWeight" Value="Normal" /> <Setter Property="Padding" Value="0" /> <Setter Property="FontSize" Value="10" /> <Setter Property="HorizontalContentAlignment" Value="Center" /> </Style> <Style x:Key="SmallOutlineIconKeyVisualStyle" BasedOn="{StaticResource DefaultTextKeyVisualStyle}" TargetType="local:KeyVisual"> <Setter Property="MinWidth" Value="40" /> <Setter Property="Background" Value="{ThemeResource ButtonBackground}" /> <Setter Property="Foreground" Value="{ThemeResource ButtonForeground}" /> <Setter Property="BorderBrush" Value="{ThemeResource ButtonBorderBrush}" /> <Setter Property="FontFamily" Value="{ThemeResource SymbolThemeFontFamily}" /> <Setter Property="Height" Value="36" /> <Setter Property="FontWeight" Value="SemiBold" /> <Setter Property="Padding" Value="0" /> <Setter Property="FontSize" Value="9" /> <Setter Property="HorizontalContentAlignment" Value="Center" /> </Style> </ResourceDictionary>
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:local="using:Microsoft.PowerToys.Settings.UI.Controls"> <x:Double x:Key="DefaultIconSize">16</x:Double> <x:Double x:Key="SmallIconSize">12</x:Double> <Style x:Key="DefaultTextKeyVisualStyle" TargetType="local:KeyVisual"> <Setter Property="MinWidth" Value="56" /> <Setter Property="MinHeight" Value="48" /> <Setter Property="Background" Value="{ThemeResource AccentButtonBackground}" /> <Setter Property="Foreground" Value="{ThemeResource AccentButtonForeground}" /> <Setter Property="BorderBrush" Value="{ThemeResource AccentButtonBorderBrush}" /> <Setter Property="BorderThickness" Value="{ThemeResource ButtonBorderThemeThickness}" /> <Setter Property="Padding" Value="16,8,16,8" /> <Setter Property="FontWeight" Value="SemiBold" /> <Setter Property="HorizontalAlignment" Value="Center" /> <Setter Property="HorizontalContentAlignment" Value="Center" /> <Setter Property="FontSize" Value="18" /> <Setter Property="Template"> <Setter.Value> <ControlTemplate TargetType="local:KeyVisual"> <Grid> <VisualStateManager.VisualStateGroups> <VisualStateGroup x:Name="CommonStates"> <VisualState x:Name="Normal" /> <VisualState x:Name="Disabled"> <VisualState.Setters> <Setter Target="ContentHolder.Fill" Value="{ThemeResource AccentButtonBackgroundDisabled}" /> <Setter Target="KeyPresenter.Foreground" Value="{ThemeResource AccentButtonForegroundDisabled}" /> <Setter Target="ContentHolder.Stroke" Value="{ThemeResource AccentButtonBorderBrushDisabled}" /> <!--<Setter Target="ContentHolder.StrokeThickness" Value="{TemplateBinding BorderThickness}" />--> </VisualState.Setters> </VisualState> </VisualStateGroup> <VisualStateGroup x:Name="StateStates"> <VisualState x:Name="Default" /> <VisualState x:Name="Error"> <VisualState.Setters> <Setter Target="ContentHolder.Fill" Value="{ThemeResource InfoBarErrorSeverityBackgroundBrush}" /> <Setter Target="KeyPresenter.Foreground" Value="{ThemeResource InfoBarErrorSeverityIconBackground}" /> <Setter Target="ContentHolder.Stroke" Value="{ThemeResource InfoBarErrorSeverityIconBackground}" /> <Setter Target="ContentHolder.StrokeThickness" Value="2" /> </VisualState.Setters> </VisualState> </VisualStateGroup> </VisualStateManager.VisualStateGroups> <Grid> <Rectangle x:Name="ContentHolder" Height="{TemplateBinding Height}" MinWidth="{TemplateBinding MinWidth}" Fill="{TemplateBinding Background}" RadiusX="4" RadiusY="4" Stroke="{TemplateBinding BorderBrush}" StrokeThickness="{TemplateBinding BorderThickness}" /> <ContentPresenter x:Name="KeyPresenter" Margin="{TemplateBinding Padding}" HorizontalAlignment="{TemplateBinding HorizontalContentAlignment}" VerticalAlignment="Center" Content="{TemplateBinding Content}" FontSize="{TemplateBinding FontSize}" FontWeight="{TemplateBinding FontWeight}" Foreground="{TemplateBinding Foreground}" /> </Grid> </Grid> </ControlTemplate> </Setter.Value> </Setter> </Style> <Style x:Key="SmallTextKeyVisualStyle" BasedOn="{StaticResource DefaultTextKeyVisualStyle}" TargetType="local:KeyVisual"> <Setter Property="MinWidth" Value="40" /> <Setter Property="Height" Value="36" /> <Setter Property="FontWeight" Value="SemiBold" /> <Setter Property="Padding" Value="12,0,12,2" /> <Setter Property="FontSize" Value="14" /> <Setter Property="HorizontalContentAlignment" Value="Center" /> </Style> <Style x:Key="SmallOutlineTextKeyVisualStyle" BasedOn="{StaticResource DefaultTextKeyVisualStyle}" TargetType="local:KeyVisual"> <Setter Property="MinWidth" Value="40" /> <Setter Property="Background" Value="{ThemeResource ButtonBackground}" /> <Setter Property="Foreground" Value="{ThemeResource ButtonForeground}" /> <Setter Property="BorderBrush" Value="{ThemeResource ButtonBorderBrush}" /> <Setter Property="Height" Value="36" /> <Setter Property="FontWeight" Value="SemiBold" /> <Setter Property="Padding" Value="8,0,8,2" /> <Setter Property="FontSize" Value="13" /> <Setter Property="HorizontalContentAlignment" Value="Center" /> </Style> <Style x:Key="DefaultIconKeyVisualStyle" BasedOn="{StaticResource DefaultTextKeyVisualStyle}" TargetType="local:KeyVisual"> <Setter Property="MinWidth" Value="56" /> <Setter Property="MinHeight" Value="48" /> <Setter Property="FontFamily" Value="{ThemeResource SymbolThemeFontFamily}" /> <Setter Property="Padding" Value="16,8,16,8" /> <Setter Property="FontSize" Value="14" /> <Setter Property="HorizontalContentAlignment" Value="Center" /> </Style> <Style x:Key="SmallIconKeyVisualStyle" BasedOn="{StaticResource DefaultTextKeyVisualStyle}" TargetType="local:KeyVisual"> <Setter Property="MinWidth" Value="40" /> <Setter Property="Height" Value="36" /> <Setter Property="FontFamily" Value="{ThemeResource SymbolThemeFontFamily}" /> <Setter Property="FontWeight" Value="Normal" /> <Setter Property="Padding" Value="0" /> <Setter Property="FontSize" Value="10" /> <Setter Property="HorizontalContentAlignment" Value="Center" /> </Style> <Style x:Key="SmallOutlineIconKeyVisualStyle" BasedOn="{StaticResource DefaultTextKeyVisualStyle}" TargetType="local:KeyVisual"> <Setter Property="MinWidth" Value="40" /> <Setter Property="Background" Value="{ThemeResource ButtonBackground}" /> <Setter Property="Foreground" Value="{ThemeResource ButtonForeground}" /> <Setter Property="BorderBrush" Value="{ThemeResource ButtonBorderBrush}" /> <Setter Property="FontFamily" Value="{ThemeResource SymbolThemeFontFamily}" /> <Setter Property="Height" Value="36" /> <Setter Property="FontWeight" Value="SemiBold" /> <Setter Property="Padding" Value="0" /> <Setter Property="FontSize" Value="9" /> <Setter Property="HorizontalContentAlignment" Value="Center" /> </Style> <Style x:Key="OnlyTextKeyVisualStyle" BasedOn="{StaticResource DefaultTextKeyVisualStyle}" TargetType="local:KeyVisual"> <Setter Property="MinHeight" Value="12" /> <Setter Property="MinWidth" Value="12" /> <Setter Property="Background" Value="Transparent" /> <Setter Property="Foreground" Value="{ThemeResource ButtonForeground}" /> <Setter Property="BorderBrush" Value="Transparent" /> <Setter Property="FontWeight" Value="Normal" /> <Setter Property="Padding" Value="0" /> <Setter Property="FontSize" Value="12" /> <Setter Property="HorizontalContentAlignment" Value="Center" /> </Style> <Style x:Key="OnlyIconKeyVisualStyle" BasedOn="{StaticResource DefaultTextKeyVisualStyle}" TargetType="local:KeyVisual"> <Setter Property="MinHeight" Value="10" /> <Setter Property="MinWidth" Value="10" /> <Setter Property="Background" Value="Transparent" /> <Setter Property="Foreground" Value="{ThemeResource ButtonForeground}" /> <Setter Property="BorderBrush" Value="Transparent" /> <Setter Property="FontFamily" Value="{ThemeResource SymbolThemeFontFamily}" /> <Setter Property="FontWeight" Value="Normal" /> <Setter Property="Padding" Value="0,0,0,3" /> <!--<Setter Property="FontSize" Value="9" />--> <Setter Property="HorizontalContentAlignment" Value="Center" /> </Style> </ResourceDictionary>
donlaci
8c22f0c48540793452b70d913b2a6a719c881a33
1f936df3ebce73b726ed11c9fa38fd477b4b0fbd
This-level grid can be removed, it has no value
Jay-o-Way
348
microsoft/PowerToys
29,023
[Settings] Adding a Dashboard Panel
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request Adding a new Dashboard panel to the settings app. It contains the active modules with a brief description, activation shortcut if present, launch button if reasonable and a quick link button to the module's settings page. The new dashboard panel contains a list of all the modules as well, where the user can toggle the modules' enabled/disabled state. ![Dashboard](https://github.com/microsoft/PowerToys/assets/9866362/a773ff5b-0321-4eb3-9c3d-b5b4df9a25f5) <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [X] **Closes:** #26816 - [ ] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected - [ ] **Tests:** Added/updated and all pass - [ ] **Localization:** All end user facing strings can be localized - [ ] **Dev docs:** Added/updated - [ ] **New binaries:** Added on the required places - [ ] [JSON for signing](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ESRPSigning_core.json) for new binaries - [ ] [WXS for installer](https://github.com/microsoft/PowerToys/blob/main/installer/PowerToysSetup/Product.wxs) for new binaries and localization folder - [ ] [YML for CI pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ci/templates/build-powertoys-steps.yml) for new test projects - [ ] [YML for signed pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/release.yml) - [ ] **Documentation updated:** If checked, please file a pull request on [our docs repo](https://github.com/MicrosoftDocs/windows-uwp/tree/docs/hub/powertoys) and link it here: #xxx <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed Tested locally
null
2023-10-04 18:35:54+00:00
2023-10-20 12:23:25+00:00
src/settings-ui/Settings.UI/SettingsXAML/Controls/KeyVisual/KeyVisual.xaml
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:local="using:Microsoft.PowerToys.Settings.UI.Controls"> <x:Double x:Key="DefaultIconSize">16</x:Double> <x:Double x:Key="SmallIconSize">12</x:Double> <Style x:Key="DefaultTextKeyVisualStyle" TargetType="local:KeyVisual"> <Setter Property="MinWidth" Value="56" /> <Setter Property="MinHeight" Value="48" /> <Setter Property="Background" Value="{ThemeResource AccentButtonBackground}" /> <Setter Property="Foreground" Value="{ThemeResource AccentButtonForeground}" /> <Setter Property="BorderBrush" Value="{ThemeResource AccentButtonBorderBrush}" /> <Setter Property="BorderThickness" Value="{ThemeResource ButtonBorderThemeThickness}" /> <Setter Property="Padding" Value="16,8,16,8" /> <Setter Property="FontWeight" Value="SemiBold" /> <Setter Property="HorizontalAlignment" Value="Center" /> <Setter Property="HorizontalContentAlignment" Value="Center" /> <Setter Property="FontSize" Value="18" /> <Setter Property="Template"> <Setter.Value> <ControlTemplate TargetType="local:KeyVisual"> <Grid> <Grid> <Rectangle x:Name="ContentHolder" Height="{TemplateBinding Height}" MinWidth="{TemplateBinding MinWidth}" Fill="{TemplateBinding Background}" RadiusX="4" RadiusY="4" Stroke="{TemplateBinding BorderBrush}" StrokeThickness="{TemplateBinding BorderThickness}" /> <ContentPresenter x:Name="KeyPresenter" Margin="{TemplateBinding Padding}" HorizontalAlignment="{TemplateBinding HorizontalContentAlignment}" VerticalAlignment="Center" Content="{TemplateBinding Content}" FontSize="{TemplateBinding FontSize}" FontWeight="{TemplateBinding FontWeight}" Foreground="{TemplateBinding Foreground}" /> </Grid> <VisualStateManager.VisualStateGroups> <VisualStateGroup x:Name="CommonStates"> <VisualState x:Name="Normal" /> <VisualState x:Name="Disabled"> <VisualState.Setters> <Setter Target="ContentHolder.Fill" Value="{ThemeResource AccentButtonBackgroundDisabled}" /> <Setter Target="KeyPresenter.Foreground" Value="{ThemeResource AccentButtonForegroundDisabled}" /> <Setter Target="ContentHolder.Stroke" Value="{ThemeResource AccentButtonBorderBrushDisabled}" /> <!--<Setter Target="ContentHolder.StrokeThickness" Value="{TemplateBinding BorderThickness}" />--> </VisualState.Setters> </VisualState> </VisualStateGroup> <VisualStateGroup x:Name="StateStates"> <VisualState x:Name="Default" /> <VisualState x:Name="Error"> <VisualState.Setters> <Setter Target="ContentHolder.Fill" Value="{ThemeResource InfoBarErrorSeverityBackgroundBrush}" /> <Setter Target="KeyPresenter.Foreground" Value="{ThemeResource InfoBarErrorSeverityIconBackground}" /> <Setter Target="ContentHolder.Stroke" Value="{ThemeResource InfoBarErrorSeverityIconBackground}" /> <Setter Target="ContentHolder.StrokeThickness" Value="2" /> </VisualState.Setters> </VisualState> </VisualStateGroup> </VisualStateManager.VisualStateGroups> </Grid> </ControlTemplate> </Setter.Value> </Setter> </Style> <Style x:Key="SmallTextKeyVisualStyle" BasedOn="{StaticResource DefaultTextKeyVisualStyle}" TargetType="local:KeyVisual"> <Setter Property="MinWidth" Value="40" /> <Setter Property="Height" Value="36" /> <Setter Property="FontWeight" Value="SemiBold" /> <Setter Property="Padding" Value="12,0,12,2" /> <Setter Property="FontSize" Value="14" /> <Setter Property="HorizontalContentAlignment" Value="Center" /> </Style> <Style x:Key="SmallOutlineTextKeyVisualStyle" BasedOn="{StaticResource DefaultTextKeyVisualStyle}" TargetType="local:KeyVisual"> <Setter Property="MinWidth" Value="40" /> <Setter Property="Background" Value="{ThemeResource ButtonBackground}" /> <Setter Property="Foreground" Value="{ThemeResource ButtonForeground}" /> <Setter Property="BorderBrush" Value="{ThemeResource ButtonBorderBrush}" /> <Setter Property="Height" Value="36" /> <Setter Property="FontWeight" Value="SemiBold" /> <Setter Property="Padding" Value="8,0,8,2" /> <Setter Property="FontSize" Value="13" /> <Setter Property="HorizontalContentAlignment" Value="Center" /> </Style> <Style x:Key="DefaultIconKeyVisualStyle" BasedOn="{StaticResource DefaultTextKeyVisualStyle}" TargetType="local:KeyVisual"> <Setter Property="MinWidth" Value="56" /> <Setter Property="MinHeight" Value="48" /> <Setter Property="FontFamily" Value="{ThemeResource SymbolThemeFontFamily}" /> <Setter Property="Padding" Value="16,8,16,8" /> <Setter Property="FontSize" Value="14" /> <Setter Property="HorizontalContentAlignment" Value="Center" /> </Style> <Style x:Key="SmallIconKeyVisualStyle" BasedOn="{StaticResource DefaultTextKeyVisualStyle}" TargetType="local:KeyVisual"> <Setter Property="MinWidth" Value="40" /> <Setter Property="Height" Value="36" /> <Setter Property="FontFamily" Value="{ThemeResource SymbolThemeFontFamily}" /> <Setter Property="FontWeight" Value="Normal" /> <Setter Property="Padding" Value="0" /> <Setter Property="FontSize" Value="10" /> <Setter Property="HorizontalContentAlignment" Value="Center" /> </Style> <Style x:Key="SmallOutlineIconKeyVisualStyle" BasedOn="{StaticResource DefaultTextKeyVisualStyle}" TargetType="local:KeyVisual"> <Setter Property="MinWidth" Value="40" /> <Setter Property="Background" Value="{ThemeResource ButtonBackground}" /> <Setter Property="Foreground" Value="{ThemeResource ButtonForeground}" /> <Setter Property="BorderBrush" Value="{ThemeResource ButtonBorderBrush}" /> <Setter Property="FontFamily" Value="{ThemeResource SymbolThemeFontFamily}" /> <Setter Property="Height" Value="36" /> <Setter Property="FontWeight" Value="SemiBold" /> <Setter Property="Padding" Value="0" /> <Setter Property="FontSize" Value="9" /> <Setter Property="HorizontalContentAlignment" Value="Center" /> </Style> </ResourceDictionary>
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:local="using:Microsoft.PowerToys.Settings.UI.Controls"> <x:Double x:Key="DefaultIconSize">16</x:Double> <x:Double x:Key="SmallIconSize">12</x:Double> <Style x:Key="DefaultTextKeyVisualStyle" TargetType="local:KeyVisual"> <Setter Property="MinWidth" Value="56" /> <Setter Property="MinHeight" Value="48" /> <Setter Property="Background" Value="{ThemeResource AccentButtonBackground}" /> <Setter Property="Foreground" Value="{ThemeResource AccentButtonForeground}" /> <Setter Property="BorderBrush" Value="{ThemeResource AccentButtonBorderBrush}" /> <Setter Property="BorderThickness" Value="{ThemeResource ButtonBorderThemeThickness}" /> <Setter Property="Padding" Value="16,8,16,8" /> <Setter Property="FontWeight" Value="SemiBold" /> <Setter Property="HorizontalAlignment" Value="Center" /> <Setter Property="HorizontalContentAlignment" Value="Center" /> <Setter Property="FontSize" Value="18" /> <Setter Property="Template"> <Setter.Value> <ControlTemplate TargetType="local:KeyVisual"> <Grid> <VisualStateManager.VisualStateGroups> <VisualStateGroup x:Name="CommonStates"> <VisualState x:Name="Normal" /> <VisualState x:Name="Disabled"> <VisualState.Setters> <Setter Target="ContentHolder.Fill" Value="{ThemeResource AccentButtonBackgroundDisabled}" /> <Setter Target="KeyPresenter.Foreground" Value="{ThemeResource AccentButtonForegroundDisabled}" /> <Setter Target="ContentHolder.Stroke" Value="{ThemeResource AccentButtonBorderBrushDisabled}" /> <!--<Setter Target="ContentHolder.StrokeThickness" Value="{TemplateBinding BorderThickness}" />--> </VisualState.Setters> </VisualState> </VisualStateGroup> <VisualStateGroup x:Name="StateStates"> <VisualState x:Name="Default" /> <VisualState x:Name="Error"> <VisualState.Setters> <Setter Target="ContentHolder.Fill" Value="{ThemeResource InfoBarErrorSeverityBackgroundBrush}" /> <Setter Target="KeyPresenter.Foreground" Value="{ThemeResource InfoBarErrorSeverityIconBackground}" /> <Setter Target="ContentHolder.Stroke" Value="{ThemeResource InfoBarErrorSeverityIconBackground}" /> <Setter Target="ContentHolder.StrokeThickness" Value="2" /> </VisualState.Setters> </VisualState> </VisualStateGroup> </VisualStateManager.VisualStateGroups> <Grid> <Rectangle x:Name="ContentHolder" Height="{TemplateBinding Height}" MinWidth="{TemplateBinding MinWidth}" Fill="{TemplateBinding Background}" RadiusX="4" RadiusY="4" Stroke="{TemplateBinding BorderBrush}" StrokeThickness="{TemplateBinding BorderThickness}" /> <ContentPresenter x:Name="KeyPresenter" Margin="{TemplateBinding Padding}" HorizontalAlignment="{TemplateBinding HorizontalContentAlignment}" VerticalAlignment="Center" Content="{TemplateBinding Content}" FontSize="{TemplateBinding FontSize}" FontWeight="{TemplateBinding FontWeight}" Foreground="{TemplateBinding Foreground}" /> </Grid> </Grid> </ControlTemplate> </Setter.Value> </Setter> </Style> <Style x:Key="SmallTextKeyVisualStyle" BasedOn="{StaticResource DefaultTextKeyVisualStyle}" TargetType="local:KeyVisual"> <Setter Property="MinWidth" Value="40" /> <Setter Property="Height" Value="36" /> <Setter Property="FontWeight" Value="SemiBold" /> <Setter Property="Padding" Value="12,0,12,2" /> <Setter Property="FontSize" Value="14" /> <Setter Property="HorizontalContentAlignment" Value="Center" /> </Style> <Style x:Key="SmallOutlineTextKeyVisualStyle" BasedOn="{StaticResource DefaultTextKeyVisualStyle}" TargetType="local:KeyVisual"> <Setter Property="MinWidth" Value="40" /> <Setter Property="Background" Value="{ThemeResource ButtonBackground}" /> <Setter Property="Foreground" Value="{ThemeResource ButtonForeground}" /> <Setter Property="BorderBrush" Value="{ThemeResource ButtonBorderBrush}" /> <Setter Property="Height" Value="36" /> <Setter Property="FontWeight" Value="SemiBold" /> <Setter Property="Padding" Value="8,0,8,2" /> <Setter Property="FontSize" Value="13" /> <Setter Property="HorizontalContentAlignment" Value="Center" /> </Style> <Style x:Key="DefaultIconKeyVisualStyle" BasedOn="{StaticResource DefaultTextKeyVisualStyle}" TargetType="local:KeyVisual"> <Setter Property="MinWidth" Value="56" /> <Setter Property="MinHeight" Value="48" /> <Setter Property="FontFamily" Value="{ThemeResource SymbolThemeFontFamily}" /> <Setter Property="Padding" Value="16,8,16,8" /> <Setter Property="FontSize" Value="14" /> <Setter Property="HorizontalContentAlignment" Value="Center" /> </Style> <Style x:Key="SmallIconKeyVisualStyle" BasedOn="{StaticResource DefaultTextKeyVisualStyle}" TargetType="local:KeyVisual"> <Setter Property="MinWidth" Value="40" /> <Setter Property="Height" Value="36" /> <Setter Property="FontFamily" Value="{ThemeResource SymbolThemeFontFamily}" /> <Setter Property="FontWeight" Value="Normal" /> <Setter Property="Padding" Value="0" /> <Setter Property="FontSize" Value="10" /> <Setter Property="HorizontalContentAlignment" Value="Center" /> </Style> <Style x:Key="SmallOutlineIconKeyVisualStyle" BasedOn="{StaticResource DefaultTextKeyVisualStyle}" TargetType="local:KeyVisual"> <Setter Property="MinWidth" Value="40" /> <Setter Property="Background" Value="{ThemeResource ButtonBackground}" /> <Setter Property="Foreground" Value="{ThemeResource ButtonForeground}" /> <Setter Property="BorderBrush" Value="{ThemeResource ButtonBorderBrush}" /> <Setter Property="FontFamily" Value="{ThemeResource SymbolThemeFontFamily}" /> <Setter Property="Height" Value="36" /> <Setter Property="FontWeight" Value="SemiBold" /> <Setter Property="Padding" Value="0" /> <Setter Property="FontSize" Value="9" /> <Setter Property="HorizontalContentAlignment" Value="Center" /> </Style> <Style x:Key="OnlyTextKeyVisualStyle" BasedOn="{StaticResource DefaultTextKeyVisualStyle}" TargetType="local:KeyVisual"> <Setter Property="MinHeight" Value="12" /> <Setter Property="MinWidth" Value="12" /> <Setter Property="Background" Value="Transparent" /> <Setter Property="Foreground" Value="{ThemeResource ButtonForeground}" /> <Setter Property="BorderBrush" Value="Transparent" /> <Setter Property="FontWeight" Value="Normal" /> <Setter Property="Padding" Value="0" /> <Setter Property="FontSize" Value="12" /> <Setter Property="HorizontalContentAlignment" Value="Center" /> </Style> <Style x:Key="OnlyIconKeyVisualStyle" BasedOn="{StaticResource DefaultTextKeyVisualStyle}" TargetType="local:KeyVisual"> <Setter Property="MinHeight" Value="10" /> <Setter Property="MinWidth" Value="10" /> <Setter Property="Background" Value="Transparent" /> <Setter Property="Foreground" Value="{ThemeResource ButtonForeground}" /> <Setter Property="BorderBrush" Value="Transparent" /> <Setter Property="FontFamily" Value="{ThemeResource SymbolThemeFontFamily}" /> <Setter Property="FontWeight" Value="Normal" /> <Setter Property="Padding" Value="0,0,0,3" /> <!--<Setter Property="FontSize" Value="9" />--> <Setter Property="HorizontalContentAlignment" Value="Center" /> </Style> </ResourceDictionary>
donlaci
8c22f0c48540793452b70d913b2a6a719c881a33
1f936df3ebce73b726ed11c9fa38fd477b4b0fbd
The Grid is needed for the <VisualStateManager.VisualStateGroups>, which is not attachable to ControlTemplate. But thanks!
donlaci
349
microsoft/PowerToys
29,023
[Settings] Adding a Dashboard Panel
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request Adding a new Dashboard panel to the settings app. It contains the active modules with a brief description, activation shortcut if present, launch button if reasonable and a quick link button to the module's settings page. The new dashboard panel contains a list of all the modules as well, where the user can toggle the modules' enabled/disabled state. ![Dashboard](https://github.com/microsoft/PowerToys/assets/9866362/a773ff5b-0321-4eb3-9c3d-b5b4df9a25f5) <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [X] **Closes:** #26816 - [ ] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected - [ ] **Tests:** Added/updated and all pass - [ ] **Localization:** All end user facing strings can be localized - [ ] **Dev docs:** Added/updated - [ ] **New binaries:** Added on the required places - [ ] [JSON for signing](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ESRPSigning_core.json) for new binaries - [ ] [WXS for installer](https://github.com/microsoft/PowerToys/blob/main/installer/PowerToysSetup/Product.wxs) for new binaries and localization folder - [ ] [YML for CI pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ci/templates/build-powertoys-steps.yml) for new test projects - [ ] [YML for signed pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/release.yml) - [ ] **Documentation updated:** If checked, please file a pull request on [our docs repo](https://github.com/MicrosoftDocs/windows-uwp/tree/docs/hub/powertoys) and link it here: #xxx <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed Tested locally
null
2023-10-04 18:35:54+00:00
2023-10-20 12:23:25+00:00
src/settings-ui/Settings.UI/Strings/en-us/Resources.resw
<?xml version="1.0" encoding="utf-8"?> <root> <!-- Microsoft ResX Schema Version 2.0 The primary goals of this format is to allow a simple XML format that is mostly human readable. The generation and parsing of the various data types are done through the TypeConverter classes associated with the data types. Example: ... ado.net/XML headers & schema ... <resheader name="resmimetype">text/microsoft-resx</resheader> <resheader name="version">2.0</resheader> <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader> <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader> <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data> <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data> <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64"> <value>[base64 mime encoded serialized .NET Framework object]</value> </data> <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value> <comment>This is a comment</comment> </data> There are any number of "resheader" rows that contain simple name/value pairs. Each data row contains a name, and value. The row also contains a type or mimetype. Type corresponds to a .NET class that support text/value conversion through the TypeConverter architecture. Classes that don't support this are serialized and stored with the mimetype set. The mimetype is used for serialized objects, and tells the ResXResourceReader how to depersist the object. This is currently not extensible. For a given mimetype the value must be set accordingly: Note - application/x-microsoft.net.object.binary.base64 is the format that the ResXResourceWriter will generate, however the reader can read any of the formats listed below. mimetype: application/x-microsoft.net.object.binary.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.soap.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Soap.SoapFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.bytearray.base64 value : The object must be serialized into a byte array : using a System.ComponentModel.TypeConverter : and then encoded with base64 encoding. --> <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> <xsd:import namespace="http://www.w3.org/XML/1998/namespace" /> <xsd:element name="root" msdata:IsDataSet="true"> <xsd:complexType> <xsd:choice maxOccurs="unbounded"> <xsd:element name="metadata"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" /> </xsd:sequence> <xsd:attribute name="name" use="required" type="xsd:string" /> <xsd:attribute name="type" type="xsd:string" /> <xsd:attribute name="mimetype" type="xsd:string" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="assembly"> <xsd:complexType> <xsd:attribute name="alias" type="xsd:string" /> <xsd:attribute name="name" type="xsd:string" /> </xsd:complexType> </xsd:element> <xsd:element name="data"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" /> <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="resheader"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" /> </xsd:complexType> </xsd:element> </xsd:choice> </xsd:complexType> </xsd:element> </xsd:schema> <resheader name="resmimetype"> <value>text/microsoft-resx</value> </resheader> <resheader name="version"> <value>2.0</value> </resheader> <resheader name="reader"> <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <resheader name="writer"> <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <data name="Attribution_Rooler.Text" xml:space="preserve"> <value>Inspired by Rooler</value> <comment>Rooler is a name of the tool.</comment> </data> <data name="Shell_VideoConference.Content" xml:space="preserve"> <value>Video Conference Mute</value> <comment>Navigation view item name for Video Conference</comment> </data> <data name="Shell_MeasureTool.Content" xml:space="preserve"> <value>Screen Ruler</value> <comment>Product name: Navigation view item name for Screen Ruler</comment> </data> <data name="MeasureTool.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="MeasureTool.ModuleDescription" xml:space="preserve"> <value>Screen Ruler is a quick and easy way to measure pixels on your screen.</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool.ModuleTitle" xml:space="preserve"> <value>Screen Ruler</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool_ActivationSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="MeasureTool_Settings.Header" xml:space="preserve"> <value>Behavior</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MeasureTool_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to bring up the command bar</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool_DefaultMeasureStyle.Header" xml:space="preserve"> <value>Default measure style</value> </data> <data name="MeasureTool_DefaultMeasureStyle.Description" xml:space="preserve"> <value>The utility will start having the selected style activated</value> </data> <data name="MeasureTool_DefaultMeasureStyle_None.Content" xml:space="preserve"> <value>None</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Bounds.Content" xml:space="preserve"> <value>Bounds</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Spacing.Content" xml:space="preserve"> <value>Spacing</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Horizontal_Spacing.Content" xml:space="preserve"> <value>Horizontal spacing</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Vertical_Spacing.Content" xml:space="preserve"> <value>Vertical spacing</value> </data> <data name="MeasureTool_UnitsOfMeasure.Header" xml:space="preserve"> <value>Units of measurement</value> </data> <data name="MeasureTool_UnitsOfMeasure_Pixels.Content" xml:space="preserve"> <value>Pixels</value> </data> <data name="MeasureTool_UnitsOfMeasure_Inches.Content" xml:space="preserve"> <value>Inches</value> </data> <data name="MeasureTool_UnitsOfMeasure_Centimeters.Content" xml:space="preserve"> <value>Centimeters</value> </data> <data name="MeasureTool_PixelTolerance.Header" xml:space="preserve"> <value>Pixel tolerance for edge detection</value> </data> <data name="MeasureTool_MeasureCrossColor.Header" xml:space="preserve"> <value>Line color</value> </data> <data name="MeasureTool_ContinuousCapture.Header" xml:space="preserve"> <value>Capture screen continuously during measuring</value> </data> <data name="MeasureTool_ContinuousCapture.Description" xml:space="preserve"> <value>Refresh screen contexts in real-time instead of making a screenshot once</value> </data> <data name="MeasureTool_PerColorChannelEdgeDetection.Header" xml:space="preserve"> <value>Per color channel edge detection</value> </data> <data name="MeasureTool_PerColorChannelEdgeDetection.Description" xml:space="preserve"> <value>If enabled, test that all color channels are within a tolerance distance from each other. Otherwise, check that the sum of all color channels differences is smaller than the tolerance.</value> </data> <data name="MeasureTool_DrawFeetOnCross.Header" xml:space="preserve"> <value>Draw feet on cross</value> </data> <data name="MeasureTool_DrawFeetOnCross.Description" xml:space="preserve"> <value>Adds feet to the end of cross lines</value> </data> <data name="MeasureTool_EnableMeasureTool.Header" xml:space="preserve"> <value>Enable Screen Ruler</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MouseWithoutBorders_ActivationSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="MouseWithoutBorders_DeviceLayoutSettings.Header" xml:space="preserve"> <value>Device layout</value> </data> <data name="MouseWithoutBorders_DeviceLayoutSettings.Description" xml:space="preserve"> <value>Drag and drop a machine to rearrange the order.</value> </data> <data name="MouseWithoutBorders_CannotDragDropAsAdmin.Title" xml:space="preserve"> <value>It is not possible to use drag and drop while running PowerToys elevated. As a workaround, please restart PowerToys without elevation to edit the device layout.</value> </data> <data name="MouseWithoutBorders_KeySettings.Header" xml:space="preserve"> <value>Encryption key</value> </data> <data name="MouseWithoutBorders_SecurityKey.Header" xml:space="preserve"> <value>Security key</value> </data> <data name="MouseWithoutBorders_SecurityKey.Description" xml:space="preserve"> <value>The key must be auto generated in one machine by clicking on New Key, then typed in other machines</value> </data> <data name="MouseWithoutBorders_NewKey.Content" xml:space="preserve"> <value>New key</value> </data> <data name="MouseWithoutBorders_CopyMachineName.Text" xml:space="preserve"> <value>Copy to clipboard</value> </data> <data name="MouseWithoutBorders_ReconnectButton.Text" xml:space="preserve"> <value>Refresh connections</value> </data> <data name="MouseWithoutBorders_ReconnectTooltip.Text" xml:space="preserve"> <value>Reestablishes connections with other devices if you are experiencing issues.</value> </data> <data name="MouseWithoutBorders_ThisMachineNameLabel.Header" xml:space="preserve"> <value>Host name of this device</value> </data> <data name="MouseWithoutBorders_Connect.Content" xml:space="preserve"> <value>Connect</value> </data> <data name="MouseWithoutBorders_UninstallService.Header" xml:space="preserve"> <value>Uninstall service</value> </data> <data name="MouseWithoutBorders_UninstallService.Description" xml:space="preserve"> <value>Removes the service from the computer. Needs to run as administrator.</value> </data> <data name="MouseWithoutBorders_Settings.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="MouseWithoutBorders_TroubleShooting.Header" xml:space="preserve"> <value>Troubleshooting</value> </data> <data name="MouseWithoutBorders_AddFirewallRuleButtonControl.Header" xml:space="preserve"> <value>Add a firewall rule for Mouse Without Borders</value> <comment>"Mouse Without Borders" is a product name</comment> </data> <data name="MouseWithoutBorders_AddFirewallRuleButtonControl.Description" xml:space="preserve"> <value>Adding a firewall rule might help solve connection issues.</value> </data> <data name="MouseWithoutBorders_RunAsAdminText.Title" xml:space="preserve"> <value>You need to run as administrator to modify this setting.</value> </data> <data name="MouseWithoutBorders_ServiceUserUninstallWarning.Title" xml:space="preserve"> <value>If PowerToys is installed as a user, uninstalling/upgrading may require the Mouse Without Borders service to be removed manually later.</value> </data> <data name="MouseWithoutBorders_ServiceSettings.Header" xml:space="preserve"> <value>Service</value> </data> <data name="MouseWithoutBorders_Toggle_Enable.Header" xml:space="preserve"> <value>Enable Mouse Without Borders</value> </data> <data name="MouseWithoutBorders.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="MouseWithoutBorders.ModuleDescription" xml:space="preserve"> <value>Mouse Without Borders is a quick and easy way to move your cursor across multiple devices.</value> <comment>"Mouse Without Borders" is the name of the utility</comment> </data> <data name="MouseWithoutBorders.ModuleTitle" xml:space="preserve"> <value>Mouse Without Borders</value> <comment>"Mouse Without Borders" is the name of the utility</comment> </data> <data name="MouseWithoutBorders_UseService.Header" xml:space="preserve"> <value>Use Service</value> </data> <data name="MouseWithoutBorders_UseService.Description" xml:space="preserve"> <value>Runs in service mode, that allows MWB to control remote machines when they're locked. Also allows control of system and administrator applications.</value> </data> <data name="MouseWithoutBorders_MatrixOneRow.Header" xml:space="preserve"> <value>Devices in a single row</value> </data> <data name="MouseWithoutBorders_MatrixOneRow.Description" xml:space="preserve"> <value>Sets whether the devices are aligned on a single row. A two by two matrix is considered otherwise.</value> </data> <data name="MouseWithoutBorders_WrapMouse.Header" xml:space="preserve"> <value>Wrap mouse</value> </data> <data name="MouseWithoutBorders_WrapMouse.Description" xml:space="preserve"> <value>Move control back to the first machine when mouse moves past the last one.</value> </data> <data name="MouseWithoutBorders_ShareClipboard.Header" xml:space="preserve"> <value>Share clipboard</value> </data> <data name="MouseWithoutBorders_TransferFile.Header" xml:space="preserve"> <value>Transfer file</value> </data> <data name="MouseWithoutBorders_HideMouseAtScreenEdge.Header" xml:space="preserve"> <value>Hide mouse at the screen edge</value> </data> <data name="MouseWithoutBorders_DrawMouseCursor.Header" xml:space="preserve"> <value>Draw mouse cursor</value> </data> <data name="MouseWithoutBorders_ValidateRemoteMachineIP.Header" xml:space="preserve"> <value>Validate remote machine IP</value> </data> <data name="MouseWithoutBorders_SameSubnetOnly.Header" xml:space="preserve"> <value>Same subnet only</value> </data> <data name="MouseWithoutBorders_BlockScreenSaverOnOtherMachines.Header" xml:space="preserve"> <value>Block screen saver on other machines</value> </data> <data name="MouseWithoutBorders_MoveMouseRelatively.Header" xml:space="preserve"> <value>Move mouse relatively</value> </data> <data name="MouseWithoutBorders_BlockMouseAtScreenCorners.Header" xml:space="preserve"> <value>Block mouse at screen corners</value> </data> <data name="MouseWithoutBorders_ShowClipboardAndNetworkStatusMessages.Header" xml:space="preserve"> <value>Show clipboard and network status messages</value> </data> <data name="MouseWithoutBorders_ShowOriginalUI.Header" xml:space="preserve"> <value>Show the original Mouse Without Borders UI</value> </data> <data name="MouseWithoutBorders_ShowOriginalUI.Description" xml:space="preserve"> <value>This is accessible from the system tray and requires a restart.</value> </data> <data name="MouseWithoutBorders_ShareClipboard.Description" xml:space="preserve"> <value>If share clipboard stops working, Ctrl+Alt+Del then Esc may solve the problem.</value> </data> <data name="MouseWithoutBorders_TransferFile.Description" xml:space="preserve"> <value>If a file (&lt;100MB) is copied, it will be transferred to the remote machine clipboard.</value> </data> <data name="MouseWithoutBorders_HideMouseAtScreenEdge.Description" xml:space="preserve"> <value>Hide the mouse cursor at the top edge of the screen when switching to other machine. This option also steals the focus from any full-screen app to ensure the keyboard input is redirected.</value> </data> <data name="MouseWithoutBorders_DrawMouseCursor.Description" xml:space="preserve"> <value>Mouse cursor may not be visible in Windows 10 and later versions of Windows when there is no physical mouse attached.</value> </data> <data name="MouseWithoutBorders_ValidateRemoteMachineIP.Description" xml:space="preserve"> <value>Reverse DNS lookup to validate machine IP Address.</value> </data> <data name="MouseWithoutBorders_SameSubnetOnly.Description" xml:space="preserve"> <value>Only connect to machines in the same intranet NNN.NNN.*.* (only works when both machines have IPv4 enabled)</value> </data> <data name="MouseWithoutBorders_IPAddressMapping_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: MyLaptop 192.168.0.24</value> <comment>Don't translate MyLaptop</comment> </data> <data name="MouseWithoutBorders_IPAddressMapping.Header" xml:space="preserve"> <value>IP address mapping</value> </data> <data name="MouseWithoutBorders_IPAddressMapping.Description" xml:space="preserve"> <value>Resolve machine's IP address using manually entered mappings below.</value> </data> <data name="MouseWithoutBorders_BlockScreenSaverOnOtherMachines.Description" xml:space="preserve"> <value>Prevent screen saver from starting on other machines when user is actively working on this machine.</value> </data> <data name="MouseWithoutBorders_MoveMouseRelatively.Description" xml:space="preserve"> <value>Use this option when remote machine's monitor settings are different, or remote machine has multiple monitors.</value> </data> <data name="MouseWithoutBorders_BlockMouseAtScreenCorners.Description" xml:space="preserve"> <value>To avoid accident machine-switch at screen corners.</value> </data> <data name="MouseWithoutBorders_ShowClipboardAndNetworkStatusMessages.Description" xml:space="preserve"> <value>Show clipboard activities and network status in system tray notifications</value> </data> <data name="MouseWithoutBorders_KeyboardShortcuts_Group.Header" xml:space="preserve"> <value>Keyboard shortcuts</value> <comment>keyboard is the hardware peripheral</comment> </data> <data name="MouseWithoutBorders_AdvancedSettings_Group.Header" xml:space="preserve"> <value>Advanced Settings</value> </data> <data name="MouseWithoutBorders_EasyMouseOption.Header" xml:space="preserve"> <value>Easy Mouse: move between machines by moving the mouse pointer to the screen edges.</value> </data> <data name="MouseWithoutBorders_EasyMouseOption.Description" xml:space="preserve"> <value>Can also be set to move only when pressing Shift or Ctrl.</value> <comment>Shift and Ctrl are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_EasyMouseOption_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_EasyMouseOption_Enabled.Content" xml:space="preserve"> <value>Enabled</value> </data> <data name="MouseWithoutBorders_EasyMouseOption_Ctrl.Content" xml:space="preserve"> <value>Ctrl</value> <comment>This is the Ctrl keyboard key</comment> </data> <data name="MouseWithoutBorders_EasyMouseOption_Shift.Content" xml:space="preserve"> <value>Shift</value> <comment>This is the Shift keyboard key</comment> </data> <data name="MouseWithoutBorders_LockMachinesShortcut.Header" xml:space="preserve"> <value>Shortcut to lock all machines.</value> </data> <data name="MouseWithoutBorders_LockMachinesShortcut.Description" xml:space="preserve"> <value>Hit this hotkey twice to lock all machines. Note: Only the machines which have the same shortcut configured will be locked.</value> </data> <data name="MouseWithoutBorders_ToggleEasyMouseShortcut.Header" xml:space="preserve"> <value>Shortcut to toggle Easy Mouse.</value> <comment>Ctrl and Alt are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_ToggleEasyMouseShortcut.Description" xml:space="preserve"> <value>Only works if EasyMouse is set to Enabled or Disabled.</value> </data> <data name="MouseWithoutBorders_ToggleEasyMouseShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut.Header" xml:space="preserve"> <value>Shortcut to switch between machines. Ctrl+Alt+:</value> <comment>Ctrl and Alt are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut.Description" xml:space="preserve"> <value>Click on Ctrl+Alt+ the chosen option to switch between machines.</value> <comment>Ctrl and Alt are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut_F1.Content" xml:space="preserve"> <value>F1, F2, F3, F4</value> <comment>Don't localize. These are keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut_1.Content" xml:space="preserve"> <value>1, 2, 3, 4</value> <comment>Don't localize. These are keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_LockMachinesShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_ReconnectShortcut.Header" xml:space="preserve"> <value>Shortcut to try reconnecting</value> </data> <data name="MouseWithoutBorders_ReconnectShortcut.Description" xml:space="preserve"> <value>Just in case the connection is lost for any reason.</value> </data> <data name="MouseWithoutBorders_ReconnectShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut.Header" xml:space="preserve"> <value>Shortcut to switch to multiple machine mode.</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut.Description" xml:space="preserve"> <value>Allows controlling all computers at once.</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut_Ctrl3.Content" xml:space="preserve"> <value>Ctrl three times</value> <comment>This is the Ctrl keyboard key</comment> </data> <data name="VideoConference_Enable.Header" xml:space="preserve"> <value>Enable Video Conference Mute</value> </data> <data name="VideoConference.ModuleDescription" xml:space="preserve"> <value>Video Conference Mute is a quick and easy way to do a global "mute" of both your microphone and webcam. Disabling this module or closing PowerToys will unmute the microphone and camera.</value> </data> <data name="VideoConference_CameraAndMicrophoneMuteHotkeyControl_Header.Header" xml:space="preserve"> <value>Mute camera &amp; microphone</value> </data> <data name="VideoConference_MicrophoneMuteHotkeyControl_Header.Header" xml:space="preserve"> <value>Mute microphone</value> </data> <data name="VideoConference_MicrophonePushToTalkHotkeyControl_Header.Header" xml:space="preserve"> <value>Push to talk</value> </data> <data name="VideoConference_CameraMuteHotkeyControl_Header.Header" xml:space="preserve"> <value>Mute camera</value> </data> <data name="VideoConference_SelectedCamera.Header" xml:space="preserve"> <value>Selected camera</value> </data> <data name="VideoConference_SelectedMicrophone.Header" xml:space="preserve"> <value>Selected microphone</value> </data> <data name="VideoConference_PushToReverse.Header" xml:space="preserve"> <value>Push to reverse</value> </data> <data name="VideoConference_PushToReverse.Description" xml:space="preserve"> <value>If enabled, allows both push to talk and push to mute, depending on microphone state</value> </data> <data name="VideoConference_CameraOverlayImagePathHeader.Header" xml:space="preserve"> <value>Image displayed when camera is muted</value> </data> <data name="VideoConference_ToolbarPosition.Header" xml:space="preserve"> <value>Toolbar position</value> </data> <data name="VideoConference_ToolbarPosition_TopCenter.Content" xml:space="preserve"> <value>Top center</value> </data> <data name="VideoConference_ToolbarPosition_TopLeftCorner.Content" xml:space="preserve"> <value>Top left corner</value> </data> <data name="VideoConference_ToolbarPosition_TopRightCorner.Content" xml:space="preserve"> <value>Top right corner</value> </data> <data name="VideoConference_ToolbarPosition_BottomLeftCorner.Content" xml:space="preserve"> <value>Bottom left corner</value> </data> <data name="VideoConference_ToolbarPosition_BottomCenter.Content" xml:space="preserve"> <value>Bottom center</value> </data> <data name="VideoConference_ToolbarPosition_BottomRightCorner.Content" xml:space="preserve"> <value>Bottom right corner</value> </data> <data name="VideoConference_ToolbarMonitor.Header" xml:space="preserve"> <value>Show toolbar on</value> </data> <data name="VideoConference_ToolbarMonitor_Main.Content" xml:space="preserve"> <value>Main monitor</value> </data> <data name="VideoConference_ToolbarMonitor_UnderCursor.Content" xml:space="preserve"> <value>Monitor under cursor</value> </data> <data name="VideoConference_ToolbarMonitor_ActiveWindow.Content" xml:space="preserve"> <value>Active window monitor</value> </data> <data name="VideoConference_ToolbarMonitor_All.Content" xml:space="preserve"> <value>All monitors</value> </data> <data name="VideoConference_ToolbarHide.Header" xml:space="preserve"> <value>Hide toolbar</value> </data> <data name="VideoConference_ToolbarHideMuted.Content" xml:space="preserve"> <value>When both camera and microphone are muted</value> </data> <data name="VideoConference_ToolbarHideNever.Content" xml:space="preserve"> <value>Never</value> </data> <data name="VideoConference_ToolbarHideUnmuted.Content" xml:space="preserve"> <value>When both camera and microphone are unmuted</value> </data> <data name="VideoConference_ToolbarHideTimeout.Content" xml:space="preserve"> <value>After timeout</value> </data> <data name="VideoConference.ModuleTitle" xml:space="preserve"> <value>Video Conference Mute</value> </data> <data name="VideoConference_Camera.Header" xml:space="preserve"> <value>Camera</value> </data> <data name="VideoConference_Camera.Description" xml:space="preserve"> <value>To use this feature, make sure to select PowerToys VideoConference Mute as your camera source in your apps.</value> </data> <data name="VideoConference_Microphone.Header" xml:space="preserve"> <value>Microphone</value> </data> <data name="VideoConference_Toolbar.Header" xml:space="preserve"> <value>Toolbar</value> </data> <data name="VideoConference_Behavior.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="VideoConference_StartupAction.Header" xml:space="preserve"> <value>Startup action</value> </data> <data name="VideoConference_StartupActionNothing.Content" xml:space="preserve"> <value>Nothing</value> </data> <data name="VideoConference_StartupActionUnmute.Content" xml:space="preserve"> <value>Unmute</value> </data> <data name="VideoConference_StartupActionMute.Content" xml:space="preserve"> <value>Mute</value> </data> <data name="VideoConference_Shortcuts.Header" xml:space="preserve"> <value>Shortcuts</value> </data> <data name="VideoConference_CameraOverlayImageAlt.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Camera overlay image preview</value> </data> <data name="VideoConference_CameraOverlayImageBrowse.Content" xml:space="preserve"> <value>Browse</value> </data> <data name="VideoConference_CameraOverlayImageClear.Content" xml:space="preserve"> <value>Clear</value> </data> <data name="Shell_General.Content" xml:space="preserve"> <value>General</value> <comment>Navigation view item name for General</comment> </data> <data name="Shell_Awake.Content" xml:space="preserve"> <value>Awake</value> <comment>Product name: Navigation view item name for Awake</comment> </data> <data name="Shell_PowerLauncher.Content" xml:space="preserve"> <value>PowerToys Run</value> <comment>Product name: Navigation view item name for PowerToys Run</comment> </data> <data name="Shell_PowerRename.Content" xml:space="preserve"> <value>PowerRename</value> <comment>Product name: Navigation view item name for PowerRename</comment> </data> <data name="Shell_ShortcutGuide.Content" xml:space="preserve"> <value>Shortcut Guide</value> <comment>Product name: Navigation view item name for Shortcut Guide</comment> </data> <data name="Shell_PowerPreview.Content" xml:space="preserve"> <value>File Explorer add-ons</value> <comment>Product name: Navigation view item name for File Explorer. Please use File Explorer as in the context of File Explorer in Windows</comment> </data> <data name="Shell_FancyZones.Content" xml:space="preserve"> <value>FancyZones</value> <comment>Product name: Navigation view item name for FancyZones</comment> </data> <data name="Shell_ImageResizer.Content" xml:space="preserve"> <value>Image Resizer</value> <comment>Product name: Navigation view item name for Image Resizer</comment> </data> <data name="Shell_ColorPicker.Content" xml:space="preserve"> <value>Color Picker</value> <comment>Product name: Navigation view item name for Color Picker</comment> </data> <data name="Shell_KeyboardManager.Content" xml:space="preserve"> <value>Keyboard Manager</value> <comment>Product name: Navigation view item name for Keyboard Manager</comment> </data> <data name="Shell_MouseWithoutBorders.Content" xml:space="preserve"> <value>Mouse Without Borders</value> <comment>Product name: Navigation view item name for Mouse Without Borders</comment> </data> <data name="Shell_MouseUtilities.Content" xml:space="preserve"> <value>Mouse utilities</value> <comment>Product name: Navigation view item name for Mouse utilities</comment> </data> <data name="Shell_NavigationMenu_Announce_Collapse" xml:space="preserve"> <value>Navigation closed</value> <comment>Accessibility announcement when the navigation pane collapses</comment> </data> <data name="Shell_NavigationMenu_Announce_Open" xml:space="preserve"> <value>Navigation opened</value> <comment>Accessibility announcement when the navigation pane opens</comment> </data> <data name="KeyboardManager_ConfigHeader.Text" xml:space="preserve"> <value>Current configuration</value> <comment>Keyboard Manager current configuration header</comment> </data> <data name="KeyboardManager.ModuleDescription" xml:space="preserve"> <value>Reconfigure your keyboard by remapping keys and shortcuts</value> <comment>Keyboard Manager page description</comment> </data> <data name="KeyboardManager_EnableToggle.Header" xml:space="preserve"> <value>Enable Keyboard Manager</value> <comment>Keyboard Manager enable toggle header. Do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="KeyboardManager_ProfileDescription.Text" xml:space="preserve"> <value>Select the profile to display the active key remap and shortcuts</value> <comment>Keyboard Manager configuration dropdown description</comment> </data> <data name="KeyboardManager_RemapKeyboardButton.Header" xml:space="preserve"> <value>Remap a key</value> <comment>Keyboard Manager remap keyboard button content</comment> </data> <data name="KeyboardManager_Keys.Header" xml:space="preserve"> <value>Keys</value> <comment>Keyboard Manager remap keyboard header</comment> </data> <data name="KeyboardManager_RemapShortcutsButton.Header" xml:space="preserve"> <value>Remap a shortcut</value> <comment>Keyboard Manager remap shortcuts button</comment> </data> <data name="KeyboardManager_Shortcuts.Header" xml:space="preserve"> <value>Shortcuts</value> <comment>Keyboard Manager remap keyboard header</comment> </data> <data name="KeyboardManager_All_Apps_Description" xml:space="preserve"> <value>All Apps</value> <comment>Should be the same as EditShortcuts_AllApps from keyboard manager editor</comment> </data> <data name="Shortcuts.Header" xml:space="preserve"> <value>Shortcuts</value> </data> <data name="Shortcut.Header" xml:space="preserve"> <value>Shortcut</value> </data> <data name="RemapKeysList.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Current Key Remappings</value> </data> <data name="RemapShortcutsList.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Current Shortcut Remappings</value> </data> <data name="KeyboardManager_RemappedKeysListItem.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Key Remapping</value> <comment>key as in keyboard key</comment> </data> <data name="KeyboardManager_RemappedShortcutsListItem.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Shortcut Remapping</value> </data> <data name="KeyboardManager_RemappedTo.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Remapped to</value> </data> <data name="KeyboardManager_ShortcutRemappedTo.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Remapped to</value> </data> <data name="KeyboardManager_TargetApp.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>For Target Application</value> <comment>What computer application would this be for</comment> </data> <data name="KeyboardManager_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Keyboard Manager</value> <comment>do not loc, product name</comment> </data> <data name="ColorPicker.ModuleDescription" xml:space="preserve"> <value>Quick and simple system-wide color picker.</value> </data> <data name="ColorPicker_EnableColorPicker.Header" xml:space="preserve"> <value>Enable Color Picker</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="ColorPicker_ChangeCursor.Content" xml:space="preserve"> <value>Change cursor when picking a color</value> </data> <data name="PowerLauncher.ModuleDescription" xml:space="preserve"> <value>A quick launcher that has additional capabilities without sacrificing performance.</value> </data> <data name="PowerLauncher_EnablePowerLauncher.Header" xml:space="preserve"> <value>Enable PowerToys Run</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="PowerLauncher_SearchResults.Header" xml:space="preserve"> <value>Search &amp; results</value> </data> <data name="PowerLauncher_SearchResultPreference.Header" xml:space="preserve"> <value>Search result preference</value> </data> <data name="PowerLauncher_UsePinyin.Header" xml:space="preserve"> <value>Use Pinyin</value> </data> <data name="PowerLauncher_UsePinyin.Description" xml:space="preserve"> <value>Experimental: Use Pinyin on the search query. May not work for every plugin.</value> </data> <data name="PowerLauncher_SearchResultPreference_MostRecentlyUsed" xml:space="preserve"> <value>Most recently used</value> </data> <data name="PowerLauncher_SearchResultPreference_AlphabeticalOrder" xml:space="preserve"> <value>Alphabetical order</value> </data> <data name="PowerLauncher_SearchResultPreference_RunningProcessesOpenApplications" xml:space="preserve"> <value>Running processes/open applications</value> </data> <data name="PowerLauncher_SearchTypePreference.Header" xml:space="preserve"> <value>Search type preference</value> </data> <data name="PowerLauncher_SearchTypePreference_ApplicationName" xml:space="preserve"> <value>Application name</value> </data> <data name="PowerLauncher_SearchTypePreference_StringInApplication" xml:space="preserve"> <value>A string that is contained in the application</value> </data> <data name="PowerLauncher_SearchTypePreference_ExecutableName" xml:space="preserve"> <value>Executable name</value> </data> <data name="PowerLauncher_MaximumNumberOfResults.Header" xml:space="preserve"> <value>Number of results shown before scrolling</value> </data> <data name="PowerLauncher_OpenPowerLauncher.Header" xml:space="preserve"> <value>Open PowerToys Run</value> </data> <data name="PowerLauncher_OpenFileLocation.Header" xml:space="preserve"> <value>Open file location</value> </data> <data name="PowerLauncher_CopyPathLocation.Header" xml:space="preserve"> <value>Copy path location</value> </data> <data name="PowerLauncher_OpenConsole.Header" xml:space="preserve"> <value>Open console</value> <comment>console refers to Windows command prompt</comment> </data> <data name="PowerLauncher_OverrideWinRKey.Content" xml:space="preserve"> <value>Override Win+R shortcut</value> </data> <data name="PowerLauncher_OverrideWinSKey.Content" xml:space="preserve"> <value>Override Win+S shortcut</value> </data> <data name="PowerLauncher_IgnoreHotkeysInFullScreen.Content" xml:space="preserve"> <value>Ignore shortcuts in fullscreen mode</value> </data> <data name="PowerLauncher_UseCentralizedKeyboardHook.Header" xml:space="preserve"> <value>Use centralized keyboard hook</value> </data> <data name="PowerLauncher_UseCentralizedKeyboardHook.Description" xml:space="preserve"> <value>Try this if there are issues with the shortcut (PowerToys Run might not get focus when triggered from an elevated window)</value> </data> <data name="PowerLauncher_ClearInputOnLaunch.Content" xml:space="preserve"> <value>Clear the previous query on launch</value> </data> <data name="PowerLauncher_TabSelectsContextButtons.Header" xml:space="preserve"> <value>Tab through context buttons</value> </data> <data name="PowerLauncher_TabSelectsContextButtons.Description" xml:space="preserve"> <value>Pressing tab will first select through the available context buttons of the current selection before moving onto the next result</value> </data> <data name="PowerLauncher_GenerateThumbnailsFromFiles.Header" xml:space="preserve"> <value>Generate thumbnails from files</value> </data> <data name="PowerLauncher_GenerateThumbnailsFromFiles.Description" xml:space="preserve"> <value>Results will try to generate thumbnails for files. Disabling this setting may increase stability and speed</value> </data> <data name="PowerLauncher_SearchQueryResultsWithDelay.Header" xml:space="preserve"> <value>Input Smoothing</value> <comment>This is about adding a delay to wait for more input before executing a search</comment> </data> <data name="PowerLauncher_SearchQueryResultsWithDelay.Description" xml:space="preserve"> <value>Wait for more input before searching. This reduces interface jumpiness and system load.</value> </data> <data name="PowerLauncher_FastSearchInputDelayMs.Header" xml:space="preserve"> <value>Immediate plugins</value> </data> <data name="PowerLauncher_FastSearchInputDelayMs.Description" xml:space="preserve"> <value>Affects the plugins that make the UI wait for their results by this amount. Recommended: 30-50 ms.</value> </data> <data name="PowerLauncher_SlowSearchInputDelayMs.Header" xml:space="preserve"> <value>Background execution plugins</value> </data> <data name="PowerLauncher_SlowSearchInputDelayMs.Description" xml:space="preserve"> <value>Affects the plugins that execute in the background by this amount. Recommended: 100-150 ms.</value> </data> <data name="PowerLauncher_SearchInputDelayMs.Header" xml:space="preserve"> <value>Fast plugin throttle (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="KeyboardManager_KeysMappingLayoutRightHeader.Text" xml:space="preserve"> <value>To:</value> <comment>Keyboard Manager mapping keys view right header</comment> </data> <data name="Appearance_GroupSettings.Text" xml:space="preserve"> <value>Appearance</value> </data> <data name="Fancyzones_ImageHyperlinkToDocs.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>FancyZones windows</value> <comment>do not loc the Product name</comment> </data> <data name="FancyZones.ModuleDescription" xml:space="preserve"> <value>Create window layouts to help make multi-tasking easy.</value> <comment>windows refers to application windows</comment> </data> <data name="FancyZones_DisplayOrWorkAreaChangeMoveWindowsCheckBoxControl.Content" xml:space="preserve"> <value>Keep windows in their zones when the screen resolution or work area changes</value> <comment>windows refers to application windows</comment> </data> <data name="FancyZones_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable FancyZones</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="FancyZones_ExcludeApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="FancyZones_ExcludeApps.Description" xml:space="preserve"> <value>Excludes an application from snapping to zones and will only react to Windows Snap - add one application name per line</value> </data> <data name="FancyZones_HighlightOpacity.Header" xml:space="preserve"> <value>Opacity (%)</value> </data> <data name="FancyZones_HotkeyEditorControl.Header" xml:space="preserve"> <value>Open layout editor</value> <comment>Shortcut to launch the FancyZones layout editor application</comment> </data> <data name="FancyZones_WindowSwitching_GroupSettings.Header" xml:space="preserve"> <value>Switch between windows in the current zone</value> </data> <data name="FancyZones_HotkeyNextTabControl.Header" xml:space="preserve"> <value>Next window</value> </data> <data name="FancyZones_HotkeyPrevTabControl.Header" xml:space="preserve"> <value>Previous window</value> </data> <data name="SettingsPage_SetShortcut.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Shortcut setting</value> </data> <data name="SettingsPage_SetShortcut_Glyph.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Information Symbol</value> </data> <data name="FancyZones_LaunchEditorButtonControl.Header" xml:space="preserve"> <value>Launch layout editor</value> <comment>launches the FancyZones layout editor application</comment> </data> <data name="FancyZones_LaunchEditorButtonControl.Description" xml:space="preserve"> <value>Set and manage your layouts</value> <comment>launches the FancyZones layout editor application</comment> </data> <data name="FancyZones_MakeDraggedWindowTransparentCheckBoxControl.Content" xml:space="preserve"> <value>Make dragged window transparent</value> </data> <data name="FancyZones_MouseDragCheckBoxControl_Header.Content" xml:space="preserve"> <value>Use a non-primary mouse button to toggle zone activation</value> </data> <data name="FancyZones_MouseMiddleClickSpanningMultipleZonesCheckBoxControl_Header.Content" xml:space="preserve"> <value>Use middle-click mouse button to toggle multiple zones spanning</value> </data> <data name="FancyZones_MoveWindowsAcrossAllMonitorsCheckBoxControl.Content" xml:space="preserve"> <value>Move windows between zones across all monitors</value> </data> <data name="FancyZones_OverrideSnapHotkeys.Header" xml:space="preserve"> <value>Override Windows Snap</value> </data> <data name="FancyZones_OverrideSnapHotkeys.Description" xml:space="preserve"> <value>This overrides the Windows Snap shortcut (Win + arrow) to move windows between zones</value> </data> <data name="FancyZones_ShiftDragCheckBoxControl_Header.Content" xml:space="preserve"> <value>Hold Shift key to activate zones while dragging</value> </data> <data name="FancyZones_ShowZonesOnAllMonitorsCheckBoxControl.Content" xml:space="preserve"> <value>Show zones on all monitors while dragging a window</value> </data> <data name="FancyZones_AppLastZoneMoveWindows.Content" xml:space="preserve"> <value>Move newly created windows to their last known zone</value> <comment>windows refers to application windows</comment> </data> <data name="FancyZones_OpenWindowOnActiveMonitor.Content" xml:space="preserve"> <value>Move newly created windows to the current active monitor (Experimental)</value> </data> <data name="FancyZones_UseCursorPosEditorStartupScreen.Header" xml:space="preserve"> <value>Launch editor on the display</value> </data> <data name="FancyZones_UseCursorPosEditorStartupScreen.Description" xml:space="preserve"> <value>When using multiple displays</value> </data> <data name="FancyZones_LaunchPositionMouse.Content" xml:space="preserve"> <value>Where the mouse pointer is</value> </data> <data name="FancyZones_LaunchPositionScreen.Content" xml:space="preserve"> <value>With active focus</value> </data> <data name="FancyZones_ZoneBehavior_GroupSettings.Header" xml:space="preserve"> <value>Zone behavior</value> </data> <data name="FancyZones_ZoneBehavior_GroupSettings.Description" xml:space="preserve"> <value>Manage how zones behave when using FancyZones</value> </data> <data name="FancyZones_Zones.Header" xml:space="preserve"> <value>Zones</value> </data> <data name="FancyZones_ZoneHighlightColor.Header" xml:space="preserve"> <value>Highlight color</value> </data> <data name="FancyZones_ZoneSetChangeMoveWindows.Content" xml:space="preserve"> <value>During zone layout changes, windows assigned to a zone will match new size/positions</value> </data> <data name="AttributionTitle.Text" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="General.ModuleTitle" xml:space="preserve"> <value>General</value> </data> <data name="GeneralPage_CheckForUpdates.Content" xml:space="preserve"> <value>Check for updates</value> </data> <data name="General_SettingsBackupAndRestoreLocationText.Header" xml:space="preserve"> <value>Location</value> </data> <data name="General_SettingsBackupAndRestore_ButtonBackup.Content" xml:space="preserve"> <value>Backup</value> </data> <data name="General_SettingsBackupInfo_FileNameHeader.Text" xml:space="preserve"> <value>File name:</value> </data> <data name="General_SettingsBackupAndRestore_LinkRefresh.Text" xml:space="preserve"> <value>Refresh</value> </data> <data name="General_SettingsBackupAndRestore_ButtonRestore.Content" xml:space="preserve"> <value>Restore</value> </data> <data name="General_SettingsBackupAndRestore_ButtonSelectLocation.Text" xml:space="preserve"> <value>Select folder</value> </data> <data name="GeneralPage_UpdateNow.Content" xml:space="preserve"> <value>Update now</value> </data> <data name="GeneralPage_PrivacyStatement_URL.Text" xml:space="preserve"> <value>Privacy statement</value> </data> <data name="GeneralPage_ReportAbug.Text" xml:space="preserve"> <value>Report a bug</value> <comment>Report an issue inside powertoys</comment> </data> <data name="GeneralPage_RequestAFeature_URL.Text" xml:space="preserve"> <value>Request a feature</value> <comment>Tell our team what we should build</comment> </data> <data name="GeneralPage_RestartAsAdmin_Button.Content" xml:space="preserve"> <value>Restart PowerToys as administrator</value> <comment>running PowerToys as a higher level user, account is typically referred to as an admin / administrator</comment> </data> <data name="GeneralPage_RunAtStartUp.Header" xml:space="preserve"> <value>Run at startup</value> </data> <data name="GeneralPage_RunAtStartUp.Description" xml:space="preserve"> <value>PowerToys will launch automatically</value> </data> <data name="PowerRename.ModuleDescription" xml:space="preserve"> <value>A Windows Shell extension for more advanced bulk renaming using search &amp; replace or regular expressions.</value> </data> <data name="PowerRename_ShellIntegration.Header" xml:space="preserve"> <value>Shell integration</value> <comment>This refers to directly integrating in with Windows</comment> </data> <data name="PowerRename_Toggle_Enable.Header" xml:space="preserve"> <value>Enable PowerRename</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="RadioButtons_Name_Theme.Text" xml:space="preserve"> <value>Settings theme</value> </data> <data name="PowerRename_Toggle_HideIcon.Content" xml:space="preserve"> <value>Hide icon in context menu</value> </data> <data name="PowerRename_Toggle_ContextMenu.Header" xml:space="preserve"> <value>Show PowerRename in</value> </data> <data name="PowerRename_Toggle_StandardContextMenu.Content" xml:space="preserve"> <value>Default and extended context menu</value> </data> <data name="PowerRename_Toggle_ExtendedContextMenu.Content" xml:space="preserve"> <value>Extended context menu only</value> </data> <data name="ExtendedContextMenuInfo.Title" xml:space="preserve"> <value>Press Shift + right-click on files to open the extended context menu</value> </data> <data name="PowerRename_Toggle_MaxDispListNum.Header" xml:space="preserve"> <value>Maximum number of items</value> </data> <data name="PowerRename_Toggle_RestoreFlagsOnLaunch.Header" xml:space="preserve"> <value>Show recently used strings</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_MD.Header" xml:space="preserve"> <value>Markdown</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_MD.Description" xml:space="preserve"> <value>.md, .markdown, .mdown, .mkdn, .mkd, .mdwn, .mdtxt, .mdtext</value> <comment>File extensions, should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_Monaco.Header" xml:space="preserve"> <value>Source code files (Monaco)</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_Monaco.Description" xml:space="preserve"> <value>.cpp, .py, .json, .xml, .csproj, ...</value> <comment>File extensions should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_SVG.Header" xml:space="preserve"> <value>Scalable Vector Graphics</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_SVG.Description" xml:space="preserve"> <value>.svg</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_Preview_SVG_Color_Mode.Header" xml:space="preserve"> <value>Color mode</value> </data> <data name="FileExplorerPreview_Preview_SVG_Color_Mode_Default.Content" xml:space="preserve"> <value>Windows default</value> </data> <data name="FileExplorerPreview_Preview_SVG_Color_Solid_Color.Content" xml:space="preserve"> <value>Solid color</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade.Content" xml:space="preserve"> <value>Checkered pattern</value> </data> <data name="FileExplorerPreview_Preview_SVG_Background_Color.Header" xml:space="preserve"> <value>Color</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_Mode.Header" xml:space="preserve"> <value>Checkered shade</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_1.Content" xml:space="preserve"> <value>Light</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_2.Content" xml:space="preserve"> <value>Medium</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_3.Content" xml:space="preserve"> <value>Dark</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_PDF.Header" xml:space="preserve"> <value>Portable Document Format</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_PDF.Description" xml:space="preserve"> <value>.pdf</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_SVG.Header" xml:space="preserve"> <value>Scalable Vector Graphics</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_SVG.Description" xml:space="preserve"> <value>.svg</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_STL.Header" xml:space="preserve"> <value>Stereolithography</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_STL.Description" xml:space="preserve"> <value>.stl</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_Color_Thumbnail_STL.Header" xml:space="preserve"> <value>Color</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_PDF.Header" xml:space="preserve"> <value>Portable Document Format</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_PDF.Description" xml:space="preserve"> <value>.pdf</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview.ModuleDescription" xml:space="preserve"> <value>These settings allow you to manage your Windows File Explorer custom preview handlers.</value> </data> <data name="PowerRename_AutoCompleteHeader.Header" xml:space="preserve"> <value>Auto-complete</value> </data> <data name="OpenSource_Notice.Text" xml:space="preserve"> <value>Open-source notice</value> </data> <data name="PowerRename_Toggle_AutoComplete.Header" xml:space="preserve"> <value>Enable auto-complete for the search &amp; replace fields</value> </data> <data name="FancyZones_BorderColor.Header" xml:space="preserve"> <value>Border color</value> </data> <data name="FancyZones_InActiveColor.Header" xml:space="preserve"> <value>Inactive color</value> </data> <data name="ShortcutGuide.ModuleDescription" xml:space="preserve"> <value>Shows a help overlay with Windows shortcuts.</value> </data> <data name="ShortcutGuide_PressTimeForGlobalWindowsShortcuts.Header" xml:space="preserve"> <value>Press duration before showing global Windows shortcuts (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="ShortcutGuide_ActivationMethod.Header" xml:space="preserve"> <value>Activation method</value> </data> <data name="ShortcutGuide_ActivationMethod.Description" xml:space="preserve"> <value>Use a shortcut or press the Windows key for some time to activate</value> </data> <data name="Radio_ShortcutGuide_ActivationMethod_CustomizedShortcut.Content" xml:space="preserve"> <value>Custom shortcut</value> </data> <data name="Radio_ShortcutGuide_ActivationMethod_LongPressWindowsKey.Content" xml:space="preserve"> <value>Hold down Windows key</value> </data> <data name="ShortcutGuide_PressWinKeyWarning.Title" xml:space="preserve"> <value>In some edge cases Shortcut Guide might not function correctly when using this activation method</value> </data> <data name="Appearance_Behavior.Header" xml:space="preserve"> <value>Appearance &amp; behavior</value> </data> <data name="General_SettingsBackupAndRestoreTitle.Header" xml:space="preserve"> <value>Backup &amp; restore</value> </data> <data name="General_SettingsBackupAndRestore.Header" xml:space="preserve"> <value>Backup and restore your settings</value> </data> <data name="General_SettingsBackupAndRestore.Description" xml:space="preserve"> <value>PowerToys will restart automatically if needed</value> </data> <data name="ShortcutGuide_Enable.Header" xml:space="preserve"> <value>Enable Shortcut Guide</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="ShortcutGuide_OverlayOpacity.Header" xml:space="preserve"> <value>Background opacity (%)</value> </data> <data name="ShortcutGuide_DisabledApps.Header" xml:space="preserve"> <value>Exclude apps</value> </data> <data name="ShortcutGuide_DisabledApps.Description" xml:space="preserve"> <value>Turns off Shortcut Guide when these applications have focus - add one application name per line</value> </data> <data name="ShortcutGuide_DisabledApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> <comment>Don't translate outlook.exe</comment> </data> <data name="ImageResizer_CustomSizes.Header" xml:space="preserve"> <value>Image sizes</value> </data> <data name="ImageResizer_Presets.Header" xml:space="preserve"> <value>Presets</value> </data> <data name="ImageResizer_Presets.Description" xml:space="preserve"> <value>Manage preset sizes that can be used in the editor</value> </data> <data name="ImageResizer_FilenameFormatHeader.Description" xml:space="preserve"> <value>This format is used as the filename for resized images</value> </data> <data name="ImageResizer.ModuleDescription" xml:space="preserve"> <value>Lets you resize images by right-clicking.</value> </data> <data name="ImageResizer_EnableToggle.Header" xml:space="preserve"> <value>Enable Image Resizer</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="ImagesSizesListView.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Image Size</value> </data> <data name="ImageResizer_Configurations.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Configurations</value> </data> <data name="ImageResizer_Name.Header" xml:space="preserve"> <value>Name</value> </data> <data name="ImageResizer_Fit.Header" xml:space="preserve"> <value>Fit</value> </data> <data name="ImageResizer_Width.Header" xml:space="preserve"> <value>Width</value> </data> <data name="ImageResizer_Height.Header" xml:space="preserve"> <value>Height</value> </data> <data name="ImageResizer_Size.Header" xml:space="preserve"> <value>Unit</value> </data> <data name="RemoveButton.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Remove</value> <comment>Removes a user defined setting group for Image Resizer</comment> </data> <data name="RemoveItem.Text" xml:space="preserve"> <value>Delete</value> </data> <data name="ImageResizer_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Image Resizer</value> </data> <data name="ImageResizer_AddSizeButton.Content" xml:space="preserve"> <value>Add new size</value> </data> <data name="ImageResizer_SaveSizeButton.Label" xml:space="preserve"> <value>Save sizes</value> </data> <data name="ImageResizer_Encoding.Header" xml:space="preserve"> <value>JPEG quality level (%)</value> </data> <data name="ImageResizer_PNGInterlacing.Header" xml:space="preserve"> <value>PNG interlacing</value> </data> <data name="ImageResizer_TIFFCompression.Header" xml:space="preserve"> <value>TIFF compression</value> </data> <data name="File.Header" xml:space="preserve"> <value>File</value> <comment>as in a computer file</comment> </data> <data name="Default.Content" xml:space="preserve"> <value>Default</value> </data> <data name="ImageResizer_ENCODER_TIFF_CCITT3.Content" xml:space="preserve"> <value>CCITT3</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_CCITT4.Content" xml:space="preserve"> <value>CCITT4</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_Default.Content" xml:space="preserve"> <value>Default</value> </data> <data name="ImageResizer_ENCODER_TIFF_LZW.Content" xml:space="preserve"> <value>LZW</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_None.Content" xml:space="preserve"> <value>None</value> </data> <data name="ImageResizer_ENCODER_TIFF_RLE.Content" xml:space="preserve"> <value>RLE</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_Zip.Content" xml:space="preserve"> <value>Zip</value> <comment>do not loc</comment> </data> <data name="ImageResizer_FallbackEncoder_BMP.Content" xml:space="preserve"> <value>BMP encoder</value> </data> <data name="ImageResizer_FallbackEncoder_GIF.Content" xml:space="preserve"> <value>GIF encoder</value> </data> <data name="ImageResizer_FallbackEncoder_JPEG.Content" xml:space="preserve"> <value>JPEG encoder</value> </data> <data name="ImageResizer_FallbackEncoder_PNG.Content" xml:space="preserve"> <value>PNG encoder</value> </data> <data name="ImageResizer_FallbackEncoder_TIFF.Content" xml:space="preserve"> <value>TIFF encoder</value> </data> <data name="ImageResizer_FallbackEncoder_WMPhoto.Content" xml:space="preserve"> <value>WMPhoto encoder</value> </data> <data name="ImageResizer_Sizes_Fit_Fill.Content" xml:space="preserve"> <value>Fill</value> <comment>Refers to filling an image into a certain size. It could overflow</comment> </data> <data name="ImageResizer_Sizes_Fit_Fill_ThirdPersonSingular.Text" xml:space="preserve"> <value>Fill</value> <comment>Refers to filling an image into a certain size. It could overflow</comment> </data> <data name="ImageResizer_Sizes_Fit_Fit.Content" xml:space="preserve"> <value>Fit</value> <comment>Refers to fitting an image into a certain size. It won't overflow</comment> </data> <data name="ImageResizer_Sizes_Fit_Stretch.Content" xml:space="preserve"> <value>Stretch</value> <comment>Refers to stretching an image into a certain size. Won't overflow but could distort.</comment> </data> <data name="ImageResizer_Sizes_Units_CM.Content" xml:space="preserve"> <value>Centimeters</value> </data> <data name="ImageResizer_Sizes_Units_Inches.Content" xml:space="preserve"> <value>Inches</value> </data> <data name="ImageResizer_Sizes_Units_Percent.Content" xml:space="preserve"> <value>Percent</value> </data> <data name="ImageResizer_Sizes_Units_Pixels.Content" xml:space="preserve"> <value>Pixels</value> </data> <data name="Off.Content" xml:space="preserve"> <value>Off</value> </data> <data name="On.Content" xml:space="preserve"> <value>On</value> </data> <data name="GeneralPage_ToggleSwitch_AlwaysRunElevated_Link.Content" xml:space="preserve"> <value>Learn more about administrator mode</value> </data> <data name="GeneralPage_ToggleSwitch_AutoDownloadUpdates.Header" xml:space="preserve"> <value>Download updates automatically</value> </data> <data name="GeneralPage_ToggleSwitch_AutoDownloadUpdates.Description" xml:space="preserve"> <value>Except on metered connections</value> </data> <data name="GeneralPage_ToggleSwitch_RunningAsAdminNote.Text" xml:space="preserve"> <value>Currently running as administrator</value> </data> <data name="GeneralSettings_AlwaysRunAsAdminText.Header" xml:space="preserve"> <value>Always run as administrator</value> </data> <data name="GeneralSettings_AlwaysRunAsAdminText.Description" xml:space="preserve"> <value>You need to run as administrator to use this setting</value> </data> <data name="GeneralSettings_RunningAsUserText" xml:space="preserve"> <value>Running as user</value> </data> <data name="GeneralSettings_RunningAsAdminText" xml:space="preserve"> <value>Running as administrator</value> </data> <data name="FancyZones.ModuleTitle" xml:space="preserve"> <value>FancyZones</value> </data> <data name="FileExplorerPreview.ModuleTitle" xml:space="preserve"> <value>File Explorer</value> </data> <data name="FileExplorerPreview_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>File Explorer</value> <comment>Use same translation as Windows does for File Explorer</comment> </data> <data name="ImageResizer.ModuleTitle" xml:space="preserve"> <value>Image Resizer</value> </data> <data name="KeyboardManager.ModuleTitle" xml:space="preserve"> <value>Keyboard Manager</value> </data> <data name="ColorPicker.ModuleTitle" xml:space="preserve"> <value>Color Picker</value> </data> <data name="PowerLauncher.ModuleTitle" xml:space="preserve"> <value>PowerToys Run</value> </data> <data name="PowerToys_Run_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>PowerToys Run</value> </data> <data name="PowerRename.ModuleTitle" xml:space="preserve"> <value>PowerRename</value> <comment>do not loc the product name</comment> </data> <data name="PowerRename_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>PowerRename</value> <comment>do not loc</comment> </data> <data name="ShortcutGuide.ModuleTitle" xml:space="preserve"> <value>Shortcut Guide</value> </data> <data name="Shortcut_Guide_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Shortcut Guide</value> </data> <data name="General_Repository.Text" xml:space="preserve"> <value>GitHub repository</value> </data> <data name="General_Version.Header" xml:space="preserve"> <value>Version</value> </data> <data name="General_VersionLastChecked.Text" xml:space="preserve"> <value>Last checked: </value> </data> <data name="General_SettingsBackupInfo_DateHeader.Text" xml:space="preserve"> <value>Created at:</value> </data> <data name="General_SettingsBackupAndRestoreStatusInfo.Header" xml:space="preserve"> <value>Backup information</value> </data> <data name="General_SettingsBackupInfo_SourceHeader.Text" xml:space="preserve"> <value>Source machine:</value> </data> <data name="General_SettingsBackupInfo_StatusHeader.Text" xml:space="preserve"> <value>Status:</value> </data> <data name="General_Version.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Version</value> </data> <data name="Admin_mode.Header" xml:space="preserve"> <value>Administrator mode</value> </data> <data name="FancyZones_RestoreSize.Content" xml:space="preserve"> <value>Restore the original size of windows when unsnapping</value> </data> <data name="ImageResizer_FallBackEncoderText.Header" xml:space="preserve"> <value>Fallback encoder</value> </data> <data name="ImageResizer_FileFormatDescription.Text" xml:space="preserve"> <value>The following parameters can be used:</value> </data> <data name="ImageResizer_FilenameFormatHeader.Header" xml:space="preserve"> <value>Filename format</value> </data> <data name="ImageResizer_FileModifiedDate.Header" xml:space="preserve"> <value>File modified timestamp</value> </data> <data name="ImageResizer_FileModifiedDate.Description" xml:space="preserve"> <value>Used as the 'modified timestamp' in the file properties</value> </data> <data name="ImageResizer_UseOriginalDate.Content" xml:space="preserve"> <value>Original file timestamp</value> </data> <data name="ImageResizer_UseResizeDate.Content" xml:space="preserve"> <value>Timestamp of resize action</value> </data> <data name="Encoding.Header" xml:space="preserve"> <value>Encoding</value> </data> <data name="KeyboardManager_RemapKeyboardButton.Description" xml:space="preserve"> <value>Remap keys to other keys or shortcuts</value> </data> <data name="KeyboardManager_RemapShortcutsButton.Description" xml:space="preserve"> <value>Remap shortcuts to other shortcuts or keys for all or specific applications</value> </data> <data name="General.ModuleDescription" xml:space="preserve"> <value>Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. Made with 💗 by Microsoft and the PowerToys community.</value> <comment>Windows refers to the OS</comment> </data> <data name="FancyZones_SpanZonesAcrossMonitors.Header" xml:space="preserve"> <value>Allow zones to span across monitors</value> </data> <data name="ImageResizer_Formatting_ActualHeight.Text" xml:space="preserve"> <value>Actual height</value> </data> <data name="ImageResizer_Formatting_ActualWidth.Text" xml:space="preserve"> <value>Actual width</value> </data> <data name="ImageResizer_Formatting_Filename.Text" xml:space="preserve"> <value>Original filename</value> </data> <data name="ImageResizer_Formatting_SelectedHeight.Text" xml:space="preserve"> <value>Selected height</value> </data> <data name="ImageResizer_Formatting_SelectedWidth.Text" xml:space="preserve"> <value>Selected width</value> </data> <data name="ImageResizer_Formatting_Sizename.Text" xml:space="preserve"> <value>Size name</value> </data> <data name="FancyZones_MoveWindowsBasedOnPositionCheckBoxControl.Content" xml:space="preserve"> <value>Move windows based on their position</value> <comment>Windows refers to application windows</comment> </data> <data name="GeneralSettings_NewVersionIsAvailable" xml:space="preserve"> <value>New update available</value> </data> <data name="GeneralSettings_VersionIsLatest" xml:space="preserve"> <value>PowerToys is up to date.</value> </data> <data name="FileExplorerPreview_IconThumbnail_GroupSettings.Header" xml:space="preserve"> <value>Thumbnail icon Preview</value> </data> <data name="FileExplorerPreview_IconThumbnail_GroupSettings.Description" xml:space="preserve"> <value>Select the file types for which thumbnail previews must be rendered.</value> </data> <data name="FileExplorerPreview_PreviewPane.Header" xml:space="preserve"> <value>Preview Pane</value> </data> <data name="FileExplorerPreview_PreviewPane.Description" xml:space="preserve"> <value>Select the file types which must be rendered in the Preview Pane. Ensure that Preview Pane is open by toggling the view with Alt + P in File Explorer.</value> <comment>Preview Pane and File Explorer are app/feature names in Windows. 'Alt + P' is a shortcut</comment> </data> <data name="FileExplorerPreview_RunAsAdminRequired.Title" xml:space="preserve"> <value>You need to run as administrator to modify these settings.</value> </data> <data name="FileExplorerPreview_RebootRequired.Title" xml:space="preserve"> <value>A reboot may be required for changes to these settings to take effect</value> </data> <data name="FileExplorerPreview_PreviewHandlerOutlookIncompatibility.Title" xml:space="preserve"> <value>Enabling the preview handlers will override other preview handlers already installed - there have been reports of incompatibility between Outlook and the PDF Preview Handler.</value> <comment>Outlook is the name of a Microsoft product</comment> </data> <data name="FileExplorerPreview_ThumbnailsMightNotAppearOnRemoteFolders.Title" xml:space="preserve"> <value>Thumbnails might not appear on paths managed by cloud storage solutions like OneDrive, since these solutions may get their thumbnails from the cloud instead of generating them locally.</value> <comment>OneDrive is the name of a Microsoft product</comment> </data> <data name="FancyZones_ExcludeApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> <comment>Don't translate outlook.exe</comment> </data> <data name="ImageResizer_FilenameFormatPlaceholder.PlaceholderText" xml:space="preserve"> <value>Example: %1 (%2)</value> </data> <data name="ImageResizer_FilenameParameters.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Filename parameters</value> </data> <data name="Radio_Theme_Dark.Content" xml:space="preserve"> <value>Dark</value> <comment>Dark refers to color, not weight</comment> </data> <data name="Radio_Theme_Light.Content" xml:space="preserve"> <value>Light</value> <comment>Light refers to color, not weight</comment> </data> <data name="Radio_Theme_Default.Content" xml:space="preserve"> <value>Windows default</value> <comment>Windows refers to the Operating system</comment> </data> <data name="Windows_Color_Settings.Content" xml:space="preserve"> <value>Windows color settings</value> <comment>Windows refers to the Operating system</comment> </data> <data name="ColorPicker_CopiedColorRepresentation.Header" xml:space="preserve"> <value>Default color format</value> </data> <data name="ColorPickerFirst.Content" xml:space="preserve"> <value>Pick a color and open editor</value> </data> <data name="EditorFirst.Content" xml:space="preserve"> <value>Open editor</value> </data> <data name="ColorPickerOnly.Content" xml:space="preserve"> <value>Only pick a color</value> </data> <data name="ColorPicker_ActivationAction.Header" xml:space="preserve"> <value>Activation behavior</value> </data> <data name="ColorFormats.Header" xml:space="preserve"> <value>Picker behavior</value> </data> <data name="ColorPicker_CopiedColorRepresentation.Description" xml:space="preserve"> <value>This format will be copied to your clipboard</value> </data> <data name="KBM_KeysCannotBeRemapped.Text" xml:space="preserve"> <value>Learn more about remapping limitations</value> <comment>This is a link that will discuss what is and is not possible for Keyboard manager to remap</comment> </data> <data name="FancyZones_Editor_GroupSettings.Header" xml:space="preserve"> <value>Editor</value> <comment>refers to the FancyZone editor</comment> </data> <data name="FancyZones_WindowBehavior_GroupSettings.Header" xml:space="preserve"> <value>Window behavior</value> </data> <data name="FancyZones_WindowBehavior_GroupSettings.Description" xml:space="preserve"> <value>Manage how windows behave when using FancyZones</value> </data> <data name="FancyZones_Windows.Header" xml:space="preserve"> <value>Windows</value> <comment>Do translate: refers to a set of application windows, not the product name</comment> </data> <data name="PowerRename_BehaviorHeader.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="PowerRename_Toggle_UseBoostLib.Header" xml:space="preserve"> <value>Use Boost library</value> <comment>Boost is a product name, should not be translated</comment> </data> <data name="PowerRename_Toggle_UseBoostLib.Description" xml:space="preserve"> <value>Provides extended features but may use different regex syntax</value> <comment>Boost is a product name, should not be translated</comment> </data> <data name="MadeWithOssLove.Text" xml:space="preserve"> <value>Made with 💗 by Microsoft and the PowerToys community.</value> </data> <data name="ColorPicker_ColorFormats.Header" xml:space="preserve"> <value>Color formats</value> </data> <data name="ColorPicker_ColorFormats.Description" xml:space="preserve"> <value>Configure the color formats (edit, delete, hide, reorder them)</value> </data> <data name="MoveUp.Text" xml:space="preserve"> <value>Move up</value> </data> <data name="MoveDown.Text" xml:space="preserve"> <value>Move down</value> </data> <data name="ColorPickerAddNewFormat.Content" xml:space="preserve"> <value>Add new format</value> </data> <data name="NewColorFormat.Header" xml:space="preserve"> <value>Format</value> </data> <data name="NewColorName.Header" xml:space="preserve"> <value>Name</value> </data> <data name="AddCustomColorFormat" xml:space="preserve"> <value>Add custom color format</value> </data> <data name="ColorFormatSave" xml:space="preserve"> <value>Save</value> </data> <data name="EditCustomColorFormat" xml:space="preserve"> <value>Edit custom color format</value> </data> <data name="ColorFormatUpdate" xml:space="preserve"> <value>Update</value> </data> <data name="CustomColorFormatDefaultName" xml:space="preserve"> <value>My Format</value> </data> <data name="ColorFormatDialog.SecondaryButtonText" xml:space="preserve"> <value>Cancel</value> </data> <data name="ColorFormatEditorHelpline1.Text" xml:space="preserve"> <value>The following parameters can be used:</value> </data> <data name="Help_red" xml:space="preserve"> <value>red</value> </data> <data name="Help_green" xml:space="preserve"> <value>green</value> </data> <data name="Help_blue" xml:space="preserve"> <value>blue</value> </data> <data name="Help_alpha" xml:space="preserve"> <value>alpha</value> </data> <data name="Help_cyan" xml:space="preserve"> <value>cyan</value> </data> <data name="Help_magenta" xml:space="preserve"> <value>magenta</value> </data> <data name="Help_yellow" xml:space="preserve"> <value>yellow</value> </data> <data name="Help_black_key" xml:space="preserve"> <value>black key</value> </data> <data name="Help_hue" xml:space="preserve"> <value>hue</value> </data> <data name="Help_hueNat" xml:space="preserve"> <value>hue (natural)</value> </data> <data name="Help_saturationI" xml:space="preserve"> <value>saturation (HSI)</value> </data> <data name="Help_saturationL" xml:space="preserve"> <value>saturation (HSL)</value> </data> <data name="Help_saturationB" xml:space="preserve"> <value>saturation (HSB)</value> </data> <data name="Help_brightness" xml:space="preserve"> <value>brightness</value> </data> <data name="Help_intensity" xml:space="preserve"> <value>intensity</value> </data> <data name="Help_lightnessNat" xml:space="preserve"> <value>lightness (nat)</value> </data> <data name="Help_lightnessCIE" xml:space="preserve"> <value>lightness (CIE)</value> </data> <data name="Help_value" xml:space="preserve"> <value>value</value> </data> <data name="Help_whiteness" xml:space="preserve"> <value>whiteness</value> </data> <data name="Help_blackness" xml:space="preserve"> <value>blackness</value> </data> <data name="Help_chromaticityA" xml:space="preserve"> <value>chromaticityA</value> </data> <data name="Help_chromaticityB" xml:space="preserve"> <value>chromaticityB</value> </data> <data name="Help_X_value" xml:space="preserve"> <value>X value</value> </data> <data name="Help_Y_value" xml:space="preserve"> <value>Y value</value> </data> <data name="Help_Z_value" xml:space="preserve"> <value>Z value</value> </data> <data name="Help_decimal_value_RGB" xml:space="preserve"> <value>decimal value (RGB)</value> </data> <data name="Help_decimal_value_BGR" xml:space="preserve"> <value>decimal value (BGR)</value> </data> <data name="Help_color_name" xml:space="preserve"> <value>color name</value> </data> <data name="ColorFormatEditorHelpline2.Text" xml:space="preserve"> <value>The red, green, blue and alpha values can be formatted to the following formats:</value> </data> <data name="Help_byte" xml:space="preserve"> <value>byte value (default)</value> </data> <data name="Help_hexL1" xml:space="preserve"> <value>hex lowercase one digit</value> </data> <data name="Help_hexU1" xml:space="preserve"> <value>hex uppercase one digit</value> </data> <data name="Help_hexL2" xml:space="preserve"> <value>hex lowercase two digits</value> </data> <data name="Help_hexU2" xml:space="preserve"> <value>hex uppercase two digits</value> </data> <data name="Help_floatWith" xml:space="preserve"> <value>float with leading zero</value> </data> <data name="Help_floatWithout" xml:space="preserve"> <value>float without leading zero</value> </data> <data name="ColorFormatEditorHelpline3.Text" xml:space="preserve"> <value>Example: %ReX means red value in hex uppercase two digits format.</value> </data> <data name="ColorPicker_ShowColorName.Header" xml:space="preserve"> <value>Show color name</value> </data> <data name="ColorPicker_ShowColorName.Description" xml:space="preserve"> <value>This will show the name of the color when picking a color</value> </data> <data name="ImageResizer_DefaultSize_Large" xml:space="preserve"> <value>Large</value> <comment>The size of the image</comment> </data> <data name="ImageResizer_DefaultSize_Medium" xml:space="preserve"> <value>Medium</value> <comment>The size of the image</comment> </data> <data name="ImageResizer_DefaultSize_Phone" xml:space="preserve"> <value>Phone</value> <comment>The size of the image referring to a Mobile Phone typical image size</comment> </data> <data name="ImageResizer_DefaultSize_Small" xml:space="preserve"> <value>Small</value> <comment>The size of the image</comment> </data> <data name="FancyZones_MoveWindowBasedOnRelativePosition_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Windows key + Up, down, left or right arrow key to move windows based on relative position</value> </data> <data name="FancyZones_MoveWindowLeftRightBasedOnZoneIndex_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Windows key + Left or right arrow keys to move windows based on zone index</value> </data> <data name="FancyZones_MoveWindowBasedOnRelativePosition_Description.Text" xml:space="preserve"> <value>Windows key +    or </value> <comment>Do not loc the icons (hex numbers)</comment> </data> <data name="FancyZones_MoveWindowLeftRightBasedOnZoneIndex_Description.Text" xml:space="preserve"> <value>Windows key +  or </value> <comment>Do not loc the icons (hex numbers)</comment> </data> <data name="FancyZones_MoveWindowBasedOnRelativePosition.Text" xml:space="preserve"> <value>Relative position</value> </data> <data name="FancyZones_MoveWindow.Header" xml:space="preserve"> <value>Move windows based on</value> </data> <data name="FancyZones_MoveWindowLeftRightBasedOnZoneIndex.Text" xml:space="preserve"> <value>Zone index</value> </data> <data name="ColorPicker_Editor.Header" xml:space="preserve"> <value>Color formats</value> </data> <data name="FancyZones_OverlappingZonesClosestCenter.Content" xml:space="preserve"> <value>Activate the zone whose center is closest to the cursor</value> </data> <data name="FancyZones_OverlappingZonesLargest.Content" xml:space="preserve"> <value>Activate the largest zone by area</value> </data> <data name="FancyZones_OverlappingZonesPositional.Content" xml:space="preserve"> <value>Split the overlapped area into multiple activation targets</value> </data> <data name="FancyZones_OverlappingZonesSmallest.Content" xml:space="preserve"> <value>Activate the smallest zone by area</value> </data> <data name="FancyZones_OverlappingZones.Header" xml:space="preserve"> <value>When multiple zones overlap</value> </data> <data name="PowerLauncher_Plugins.Header" xml:space="preserve"> <value>Plugins</value> </data> <data name="PowerLauncher_ActionKeyword.Header" xml:space="preserve"> <value>Direct activation command</value> </data> <data name="PowerLauncher_AuthoredBy.Text" xml:space="preserve"> <value>Authored by</value> <comment>example: Authored by Microsoft</comment> </data> <data name="PowerLauncher_IncludeInGlobalResultTitle.Text" xml:space="preserve"> <value>Include in global result</value> </data> <data name="PowerLauncher_IncludeInGlobalResultDescription.Text" xml:space="preserve"> <value>Show results on queries without direct activation command</value> </data> <data name="PowerLauncher_EnablePluginToggle.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Enable plugin</value> </data> <data name="PowerLauncher_EnablePluginToggle.OnContent" xml:space="preserve"> <value>On</value> </data> <data name="PowerLauncher_EnablePluginToggle.OffContent" xml:space="preserve"> <value>Off</value> </data> <data name="Run_AdditionalOptions.Text" xml:space="preserve"> <value>Additional options</value> </data> <data name="Run_NotAccessibleWarning.Title" xml:space="preserve"> <value>Please define an activation command or allow this plugin to be used in the global results.</value> </data> <data name="Run_AllPluginsDisabled.Title" xml:space="preserve"> <value>PowerToys Run can't provide any results without plugins</value> </data> <data name="Run_AllPluginsDisabled.Message" xml:space="preserve"> <value>Enable at least one plugin to get started</value> </data> <data name="Run_PluginUse.Header" xml:space="preserve"> <value>Plugins</value> </data> <data name="Run_PluginUseDescription.Text" xml:space="preserve"> <value>Include or remove plugins from the global results, change the direct activation phrase and configure additional options</value> </data> <data name="Run_PositionAppearance_GroupSettings.Header" xml:space="preserve"> <value>Position &amp; appearance</value> </data> <data name="Run_PositionHeader.Header" xml:space="preserve"> <value>Preferred monitor position</value> <comment>as in Show PowerToys Run on primary monitor</comment> </data> <data name="Run_PositionHeader.Description" xml:space="preserve"> <value>If multiple monitors are in use, PowerToys Run can be launched on the desired monitor</value> <comment>as in Show PowerToys Run on primary monitor</comment> </data> <data name="Run_Radio_Position_Cursor.Content" xml:space="preserve"> <value>Monitor with mouse cursor</value> </data> <data name="Run_Radio_Position_Focus.Content" xml:space="preserve"> <value>Monitor with focused window</value> </data> <data name="Run_Radio_Position_Primary_Monitor.Content" xml:space="preserve"> <value>Primary monitor</value> </data> <data name="Run_PluginsLoading.Text" xml:space="preserve"> <value>Plugins are loading...</value> </data> <data name="ColorPicker_ButtonDown.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Move the color down</value> </data> <data name="ColorPicker_ButtonUp.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Move the color up</value> </data> <data name="FancyZones_FlashZonesOnQuickSwitch.Content" xml:space="preserve"> <value>Flash zones when switching layout</value> </data> <data name="FancyZones_Layouts.Header" xml:space="preserve"> <value>Layouts</value> </data> <data name="FancyZones_QuickLayoutSwitch.Header" xml:space="preserve"> <value>Enable quick layout switch</value> </data> <data name="FancyZones_QuickLayoutSwitch.Description" xml:space="preserve"> <value>Layout-specific shortcuts can be configured in the editor</value> </data> <data name="FancyZones_QuickLayoutSwitch_GroupSettings.Text" xml:space="preserve"> <value>Quick layout switch</value> </data> <data name="Activation_Shortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="Activation_Shortcut.Description" xml:space="preserve"> <value>Customize the shortcut to activate this module</value> </data> <data name="Oobe_GetStarted.Text" xml:space="preserve"> <value>Let's get started!</value> </data> <data name="Oobe_PowerToysDescription.Text" xml:space="preserve"> <value>Welcome to PowerToys! These overviews will help you quickly learn the basics of all our utilities.</value> </data> <data name="Oobe_GettingStarted.Text" xml:space="preserve"> <value>Getting started</value> </data> <data name="Oobe_Launch.Text" xml:space="preserve"> <value>Launch</value> </data> <data name="Launch_ColorPicker.Content" xml:space="preserve"> <value>Launch Color Picker</value> </data> <data name="Oobe_LearnMore.Text" xml:space="preserve"> <value>Learn more about</value> </data> <data name="Oobe_ColorPicker.Description" xml:space="preserve"> <value>Color Picker is a system-wide color selection tool for Windows that enables you to pick colors from any currently running application and automatically copies it in a configurable format to your clipboard.</value> </data> <data name="Oobe_FancyZones.Description" xml:space="preserve"> <value>FancyZones is a window manager that makes it easy to create complex window layouts and quickly position windows into those layouts.</value> </data> <data name="Oobe_FileLocksmith.Description" xml:space="preserve"> <value>File Locksmith lists which processes are using the selected files or directories and allows closing those processes.</value> </data> <data name="Oobe_FileExplorer.Description" xml:space="preserve"> <value>PowerToys introduces add-ons to the Windows File Explorer that will enable files like Markdown (.md), PDF (.pdf), SVG (.svg), STL (.stl), G-code (.gcode) and developer files to be viewed in the preview pane. It introduces File Explorer thumbnail support for a number of these file types as well.</value> </data> <data name="Oobe_ImageResizer.Description" xml:space="preserve"> <value>Image Resizer is a Windows shell extension for simple bulk image-resizing.</value> </data> <data name="Oobe_KBM.Description" xml:space="preserve"> <value>Keyboard Manager allows you to customize the keyboard to be more productive by remapping keys and creating your own keyboard shortcuts.</value> </data> <data name="Oobe_MouseWithoutBorders.Description" xml:space="preserve"> <value>Mouse Without Borders enables using the mouse pointer, keyboard, clipboard and drag and drop between machines in the same local network.</value> </data> <data name="Oobe_PowerRename.Description" xml:space="preserve"> <value>PowerRename enables you to perform simple bulk renaming, searching and replacing file names.</value> </data> <data name="Oobe_Run.Description" xml:space="preserve"> <value>PowerToys Run is a quick launcher for power users that contains some additional features without sacrificing performance.</value> </data> <data name="Oobe_MeasureTool.Description" xml:space="preserve"> <value>Screen Ruler is a quick and easy way to measure pixels on your screen.</value> </data> <data name="Oobe_ShortcutGuide.Description" xml:space="preserve"> <value>Shortcut Guide presents the user with a listing of available shortcuts for the current state of the desktop.</value> </data> <data name="Oobe_VideoConference.Description" xml:space="preserve"> <value>Video Conference Mute allows users to quickly mute the microphone and turn off the camera while on a conference call with a single keystroke, regardless of what application has focus on your computer.</value> </data> <data name="Oobe_MouseUtils.Description" xml:space="preserve"> <value>A collection of utilities to enhance your mouse.</value> <comment>Mouse as in the hardware peripheral</comment> </data> <data name="Oobe_Overview.Description" xml:space="preserve"> <value>Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. Take a moment to preview the various utilities listed or view our comprehensive documentation.</value> </data> <data name="Oobe_Overview_DescriptionLinkText.Text" xml:space="preserve"> <value>Documentation on Microsoft Docs</value> </data> <data name="ReleaseNotes.Content" xml:space="preserve"> <value>Release notes</value> </data> <data name="Oobe_ColorPicker_HowToUse.Text" xml:space="preserve"> <value>to open Color Picker.</value> </data> <data name="Oobe_ColorPicker_TipsAndTricks.Text" xml:space="preserve"> <value>To select a color with more precision, **scroll the mouse wheel** to zoom in.</value> </data> <data name="Oobe_FancyZones_HowToUse.Text" xml:space="preserve"> <value>**Shift** + **drag the window** to snap a window to a zone, and release the window in the desired zone.</value> </data> <data name="Oobe_FancyZones_HowToUse_Shortcut.Text" xml:space="preserve"> <value>to open the FancyZones editor.</value> </data> <data name="Oobe_FancyZones_TipsAndTricks.Text" xml:space="preserve"> <value>Snap a window to multiple zones by holding the **Ctrl** key (while also holding **Shift**) when dragging a window.</value> </data> <data name="Oobe_FileLocksmith_HowToUse.Text" xml:space="preserve"> <value>In File Explorer, right-click one or more selected files and select **What's using this file?** from the context menu.</value> </data> <data name="Oobe_FileLocksmith_TipsAndTricks.Text" xml:space="preserve"> <value>Press the **Restart Elevated** button from the File Locksmith UI to also get information on elevated processes that might be using the files.</value> </data> <data name="Oobe_FileExplorer_HowToEnable.Text" xml:space="preserve"> <value>Select **View** which is located at the top of File Explorer, followed by **Show**, and then **Preview pane**. From there, simply click on one of the supported files in the File Explorer and observe the content on the preview pane!</value> </data> <data name="Oobe_HowToCreateMappings.Text" xml:space="preserve"> <value>How to create mappings</value> </data> <data name="Oobe_HowToEnable.Text" xml:space="preserve"> <value>How to enable</value> </data> <data name="Oobe_HowToLaunch.Text" xml:space="preserve"> <value>How to launch</value> </data> <data name="Oobe_HowToUse.Text" xml:space="preserve"> <value>How to use</value> </data> <data name="Oobe_ImageResizer_HowToLaunch.Text" xml:space="preserve"> <value>In File Explorer, right-click one or more image files and select **Resize pictures** from the context menu.</value> </data> <data name="Oobe_ImageResizer_TipsAndTricks.Text" xml:space="preserve"> <value>Want a custom size? You can add them in the PowerToys Settings!</value> </data> <data name="Oobe_KBM_HowToCreateMappings.Text" xml:space="preserve"> <value>Launch **PowerToys Settings**, navigate to the Keyboard Manager menu, and select either **Remap a key** or **Remap a shortcut**.</value> </data> <data name="Oobe_KBM_TipsAndTricks.Text" xml:space="preserve"> <value>Want to only have a shortcut work for a single application? Use the Target App field when creating the shortcut remapping.</value> </data> <data name="Oobe_MouseWithoutBorders_HowToUse.Text" xml:space="preserve"> <value>Use the Settings screen on each machine to connect to the other machines using the same key. If a connection is not working, it may be necessary to add an exception to the Windows Firewall.</value> </data> <data name="Oobe_MouseWithoutBorders_TipsAndTricks.Text" xml:space="preserve"> <value>Use the service option in Settings to install a service enabling Mouse Without Borders to function even in the lock screen.</value> </data> <data name="Oobe_PowerRename_HowToUse.Text" xml:space="preserve"> <value>In File Explorer, right-click one or more selected files and select **PowerRename** from the context menu.</value> </data> <data name="Oobe_PowerRename_TipsAndTricks.Text" xml:space="preserve"> <value>PowerRename supports searching for files using regular expressions to enable more advanced renaming functionalities.</value> </data> <data name="Oobe_Run_HowToLaunch.Text" xml:space="preserve"> <value>to open Run and just start typing.</value> </data> <data name="Oobe_Run_TipsAndTricks.Text" xml:space="preserve"> <value>PowerToys Run supports various action keys to funnel search queries for a specific subset of results. Typing `&lt;` searches for running processes only, `?` will search only for file, or `.` for installed applications! See PowerToys documentation for the complete set of 'Action Keys' available.</value> </data> <data name="Oobe_ShortcutGuide_HowToLaunch.Text" xml:space="preserve"> <value>to open Shortcut Guide, press it again to close or press **Esc**.</value> </data> <data name="Oobe_TipsAndTricks.Text" xml:space="preserve"> <value>Tips &amp; tricks</value> </data> <data name="Oobe_VideoConference_ToggleMicVid.Text" xml:space="preserve"> <value>to toggle both your microphone and video</value> </data> <data name="Oobe_VideoConference_ToggleMic.Text" xml:space="preserve"> <value>to toggle your microphone</value> </data> <data name="Oobe_VideoConference_PushToTalkMic.Text" xml:space="preserve"> <value>to toggle your microphone until key release</value> </data> <data name="Oobe_VideoConference_ToggleVid.Text" xml:space="preserve"> <value>to toggle your video</value> </data> <data name="Oobe_MeasureTool_Activation.Text" xml:space="preserve"> <value>to bring up the Screen Ruler command bar.</value> </data> <data name="Oobe_MeasureTool_HowToLaunch.Text" xml:space="preserve"> <value>The Bounds mode lets you select a specific area to measure. You can also shift-drag an area to persist in on screen. The various Spacing modes allows tracing similar pixels along horizontal and vertical axes with a customizable pixel tolerance threshold (use settings or mouse wheel to adjust it).</value> </data> <data name="Oobe_MeasureTool.Title" xml:space="preserve"> <value>Screen Ruler</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_ColorPicker.Title" xml:space="preserve"> <value>Color Picker</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_FancyZones.Title" xml:space="preserve"> <value>FancyZones</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_FileLocksmith.Title" xml:space="preserve"> <value>File Locksmith</value> </data> <data name="Oobe_ImageResizer.Title" xml:space="preserve"> <value>Image Resizer</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_KBM.Title" xml:space="preserve"> <value>Keyboard Manager</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_MouseWithoutBorders.Title" xml:space="preserve"> <value>Mouse Without Borders</value> <comment>Product name. Do not localize this string</comment> </data> <data name="Oobe_PowerRename.Title" xml:space="preserve"> <value>PowerRename</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_Run.Title" xml:space="preserve"> <value>PowerToys Run</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_ShortcutGuide.Title" xml:space="preserve"> <value>Shortcut Guide</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_VideoConference.Title" xml:space="preserve"> <value>Video Conference Mute</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_Overview.Title" xml:space="preserve"> <value>Welcome</value> </data> <data name="Oobe_WhatsNew.Text" xml:space="preserve"> <value>What's new</value> </data> <data name="Oobe_WhatsNew_LoadingError.Title" xml:space="preserve"> <value>Couldn't load the release notes.</value> </data> <data name="Oobe_WhatsNew_LoadingError.Message" xml:space="preserve"> <value>Please check your internet connection.</value> </data> <data name="Oobe_WhatsNew_ProxyAuthenticationWarning.Title" xml:space="preserve"> <value>Couldn't load the release notes.</value> </data> <data name="Oobe_WhatsNew_ProxyAuthenticationWarning.Message" xml:space="preserve"> <value>Your proxy server requires authentication.</value> </data> <data name="Oobe_WhatsNew_DetailedReleaseNotesLink.Text" xml:space="preserve"> <value>See more detailed release notes on GitHub</value> <comment>Don't loc "GitHub", it's the name of a product</comment> </data> <data name="OOBE_Settings.Content" xml:space="preserve"> <value>Open Settings</value> </data> <data name="Oobe_NavViewItem.Content" xml:space="preserve"> <value>Welcome to PowerToys</value> <comment>Don't loc "PowerToys"</comment> </data> <data name="Feedback_NavViewItem.Content" xml:space="preserve"> <value>Give feedback</value> </data> <data name="OobeWindow_Title" xml:space="preserve"> <value>Welcome to PowerToys</value> </data> <data name="OobeWindow_TitleTxt.Text" xml:space="preserve"> <value>Welcome to PowerToys</value> </data> <data name="SettingsWindow_Title" xml:space="preserve"> <value>PowerToys Settings</value> <comment>Title of the settings window when running as user</comment> </data> <data name="Awake.ModuleTitle" xml:space="preserve"> <value>Awake</value> </data> <data name="Awake.ModuleDescription" xml:space="preserve"> <value>A convenient way to keep your PC awake on-demand.</value> </data> <data name="Awake_EnableSettingsCard.Header" xml:space="preserve"> <value>Enable Awake</value> <comment>Awake is a product name, do not loc</comment> </data> <data name="Awake_NoKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep using the selected power plan</value> </data> <data name="Awake_IndefiniteKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep awake indefinitely</value> </data> <data name="Awake_TemporaryKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep awake for a time interval</value> </data> <data name="Awake_ExpirableKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep awake until expiration</value> </data> <data name="Awake_DisplaySettingsCard.Header" xml:space="preserve"> <value>Keep screen on</value> </data> <data name="Awake_DisplaySettingsCard.Description" xml:space="preserve"> <value>This setting is only available when keeping the PC awake</value> </data> <data name="Awake_ExpirationSettingsExpander.Description" xml:space="preserve"> <value>Keep custom awake state until a specific date and time</value> </data> <data name="Awake_ModeSettingsCard.Header" xml:space="preserve"> <value>Mode</value> </data> <data name="Awake_BehaviorSettingsGroup.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="Awake_IntervalHoursInput.Header" xml:space="preserve"> <value>Hours</value> </data> <data name="Awake_IntervalMinutesInput.Header" xml:space="preserve"> <value>Minutes</value> </data> <data name="Awake_ExpirationSettingsExpander_Date.Header" xml:space="preserve"> <value>End date</value> </data> <data name="Awake_ExpirationSettingsExpander_Time.Header" xml:space="preserve"> <value>End time</value> </data> <data name="Oobe_Awake.Title" xml:space="preserve"> <value>Awake</value> <comment>Module name, do not loc</comment> </data> <data name="Oobe_Awake.Description" xml:space="preserve"> <value>Awake is a Windows tool designed to keep your PC awake on-demand without having to manage its power settings. This behavior can be helpful when running time-consuming tasks while ensuring that your PC does not go to sleep or turn off its screens.</value> </data> <data name="Oobe_Awake_HowToUse.Text" xml:space="preserve"> <value>Open **PowerToys Settings** and enable Awake</value> </data> <data name="Oobe_Awake_TipsAndTricks.Text" xml:space="preserve"> <value>You can always change modes quickly by **right-clicking the Awake icon** in the system tray.</value> </data> <data name="General_FailedToDownloadTheNewVersion.Title" xml:space="preserve"> <value>An error occurred trying to install this update:</value> </data> <data name="General_InstallNow.Content" xml:space="preserve"> <value>Install now</value> </data> <data name="General_ReadMore.Text" xml:space="preserve"> <value>Read more</value> </data> <data name="General_NewVersionAvailable.Title" xml:space="preserve"> <value>An update is available:</value> </data> <data name="General_Downloading.Text" xml:space="preserve"> <value>Downloading...</value> </data> <data name="General_TryAgainToDownloadAndInstall.Content" xml:space="preserve"> <value>Try again to download and install</value> </data> <data name="General_CheckingForUpdates.Text" xml:space="preserve"> <value>Checking for updates...</value> </data> <data name="General_NewVersionReadyToInstall.Title" xml:space="preserve"> <value>An update is ready to install:</value> </data> <data name="General_UpToDate.Title" xml:space="preserve"> <value>PowerToys is up to date</value> </data> <data name="General_CantCheck.Title" xml:space="preserve"> <value>Network error. Please try again later</value> </data> <data name="General_DownloadAndInstall.Content" xml:space="preserve"> <value>Download &amp; install</value> </data> <data name="ImageResizer_Fit_Fill_ThirdPersonSingular" xml:space="preserve"> <value>Fills</value> </data> <data name="ImageResizer_Fit_Fit_ThirdPersonSingular" xml:space="preserve"> <value>Fits within</value> </data> <data name="ImageResizer_Fit_Stretch_ThirdPersonSingular" xml:space="preserve"> <value>Stretches to</value> </data> <data name="ImageResizer_Unit_Centimeter" xml:space="preserve"> <value>Centimeters</value> </data> <data name="ImageResizer_Unit_Inch" xml:space="preserve"> <value>Inches</value> </data> <data name="ImageResizer_Unit_Percent" xml:space="preserve"> <value>Percent</value> </data> <data name="ImageResizer_Unit_Pixel" xml:space="preserve"> <value>Pixels</value> </data> <data name="EditButton.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Edit</value> </data> <data name="ImageResizer_EditSize.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Edit size</value> </data> <data name="No" xml:space="preserve"> <value>No</value> <comment>Label of a cancel button</comment> </data> <data name="Delete_Dialog_Description" xml:space="preserve"> <value>Are you sure you want to delete this item?</value> </data> <data name="Yes" xml:space="preserve"> <value>Yes</value> <comment>Label of a confirmation button</comment> </data> <data name="SeeWhatsNew.Content" xml:space="preserve"> <value>See what's new</value> </data> <data name="Awake_ModeSettingsCard.Description" xml:space="preserve"> <value>Manage the state of your device when Awake is active</value> </data> <data name="ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="Enable_ColorFormat.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Enable colorformat</value> </data> <data name="More_Options_Button.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>More options</value> </data> <data name="More_Options_ButtonTooltip.Text" xml:space="preserve"> <value>More options</value> </data> <data name="To.Text" xml:space="preserve"> <value>to</value> <comment>as in: from x to y</comment> </data> <data name="LearnMore_Awake.Text" xml:space="preserve"> <value>Learn more about Awake</value> <comment>Awake is a product name, do not loc</comment> </data> <data name="LearnMore_ColorPicker.Text" xml:space="preserve"> <value>Learn more about Color Picker</value> <comment>Color Picker is a product name, do not loc</comment> </data> <data name="LearnMore_FancyZones.Text" xml:space="preserve"> <value>Learn more about FancyZones</value> <comment>FancyZones is a product name, do not loc</comment> </data> <data name="LearnMore_FileLocksmith.Text" xml:space="preserve"> <value>Learn more about File Locksmith</value> </data> <data name="LearnMore_ImageResizer.Text" xml:space="preserve"> <value>Learn more about Image Resizer</value> <comment>Image Resizer is a product name, do not loc</comment> </data> <data name="LearnMore_KBM.Text" xml:space="preserve"> <value>Learn more about Keyboard Manager</value> <comment>Keyboard Manager is a product name, do not loc</comment> </data> <data name="LearnMore_MouseUtils.Text" xml:space="preserve"> <value>Learn more about Mouse utilities</value> <comment>Mouse utilities is a product name, do not loc</comment> </data> <data name="LearnMore_PastePlain.Text" xml:space="preserve"> <value>Learn more about Paste as Plain Text</value> <comment> Paste as Plain Text is the name of the module. </comment> </data> <data name="LearnMore_MouseWithoutBorders.Text" xml:space="preserve"> <value>Learn more about Mouse Without Borders</value> <comment>Mouse Without Borders is the name of the module. </comment> </data> <data name="LearnMore_PowerPreview.Text" xml:space="preserve"> <value>Learn more about File Explorer add-ons</value> <comment>File Explorer is a product name, localize as Windows does</comment> </data> <data name="LearnMore_Peek.Text" xml:space="preserve"> <value>Learn more about Peek</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="LearnMore_PowerRename.Text" xml:space="preserve"> <value>Learn more about PowerRename</value> <comment>PowerRename is a product name, do not loc</comment> </data> <data name="LearnMore_Run.Text" xml:space="preserve"> <value>Learn more about PowerToys Run</value> <comment>PowerToys Run is a product name, do not loc</comment> </data> <data name="LearnMore_MeasureTool.Text" xml:space="preserve"> <value>Learn more about Screen Ruler</value> <comment>Screen Ruler is a product name, do not loc</comment> </data> <data name="LearnMore_ShortcutGuide.Text" xml:space="preserve"> <value>Learn more about Shortcut Guide</value> <comment>Shortcut Guide is a product name, do not loc</comment> </data> <data name="LearnMore_VCM.Text" xml:space="preserve"> <value>Learn more about Video Conference Mute</value> <comment>Video Conference Mute is a product name, do not loc</comment> </data> <data name="Oobe_FileExplorer.Title" xml:space="preserve"> <value>File Explorer add-ons</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_MouseUtils.Title" xml:space="preserve"> <value>Mouse utilities</value> <comment>Mouse as in the hardware peripheral</comment> </data> <data name="Oobe_MouseUtils_FindMyMouse.Text" xml:space="preserve"> <value>Find My Mouse</value> <comment>Mouse as in the hardware peripheral</comment> </data> <data name="Oobe_MouseUtils_FindMyMouse_Description.Text" xml:space="preserve"> <value>Focus the mouse pointer pressing the Ctrl key twice, using a custom shortcut or shaking the mouse.</value> <comment>Mouse as in the hardware peripheral. Key as in a keyboard key</comment> </data> <data name="Oobe_MouseUtils_MouseHighlighter.Text" xml:space="preserve"> <value>Mouse Highlighter</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MouseHighlighter_Description.Text" xml:space="preserve"> <value>Use a keyboard shortcut to highlight left and right mouse clicks.</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MousePointerCrosshairs.Text" xml:space="preserve"> <value>Mouse Pointer Crosshairs</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MousePointerCrosshairs_Description.Text" xml:space="preserve"> <value>Draw crosshairs centered around the mouse pointer.</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MouseJump.Text" xml:space="preserve"> <value>Mouse Jump</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MouseJump_Description.Text" xml:space="preserve"> <value>Jump the mouse pointer quickly to anywhere on your desktop.</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Launch_Run.Content" xml:space="preserve"> <value>Launch PowerToys Run</value> </data> <data name="Launch_ShortcutGuide.Content" xml:space="preserve"> <value>Launch Shortcut Guide</value> </data> <data name="ColorPicker_ColorFormat_ToggleSwitch.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Show format in editor</value> </data> <data name="GeneralPage_Documentation.Text" xml:space="preserve"> <value>Documentation</value> </data> <data name="PowerLauncher_SearchList.PlaceholderText" xml:space="preserve"> <value>Search this list</value> </data> <data name="PowerLauncher_SearchList.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Search this list</value> </data> <data name="Awake.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="ColorPicker.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="General.SecondaryLinksHeader" xml:space="preserve"> <value>Related information</value> </data> <data name="ImageResizer.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="MouseUtils.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="PowerLauncher.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="PowerRename.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="EditTooltip.Text" xml:space="preserve"> <value>Edit</value> </data> <data name="RemoveTooltip.Text" xml:space="preserve"> <value>Remove</value> </data> <data name="Activation_Shortcut_Cancel" xml:space="preserve"> <value>Cancel</value> </data> <data name="Activation_Shortcut_Description" xml:space="preserve"> <value>Press a combination of keys to change this shortcut</value> </data> <data name="Activation_Shortcut_With_Disable_Description" xml:space="preserve"> <value>Press a combination of keys to change this shortcut. Right-click to remove the key combination, thereby deactivating the shortcut.</value> </data> <data name="Activation_Shortcut_Reset" xml:space="preserve"> <value>Reset</value> </data> <data name="Activation_Shortcut_Save" xml:space="preserve"> <value>Save</value> </data> <data name="Activation_Shortcut_Title" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="InvalidShortcut.Title" xml:space="preserve"> <value>Invalid shortcut</value> </data> <data name="InvalidShortcutWarningLabel.Text" xml:space="preserve"> <value>Only shortcuts that start with **Windows key**, **Ctrl**, **Alt** or **Shift** are valid.</value> <comment>The ** sequences are used for text formatting of the key names. Don't remove them on translation.</comment> </data> <data name="FancyZones_SpanZonesAcrossMonitors.Description" xml:space="preserve"> <value>All monitors must have the same DPI scaling and will be treated as one large combined rectangle which contains all monitors</value> </data> <data name="ImageResizer_DefaultSize_NewSizePrefix" xml:space="preserve"> <value>New size</value> <comment>First part of the default name of new sizes that can be added in PT's settings ui.</comment> </data> <data name="Awake_IntervalSettingsCard.Header" xml:space="preserve"> <value>Interval before returning to the previous awakeness state</value> </data> <data name="Awake_ExpirationSettingsExpander.Header" xml:space="preserve"> <value>End date and time</value> </data> <data name="MouseUtils.ModuleTitle" xml:space="preserve"> <value>Mouse utilities</value> </data> <data name="MouseUtils.ModuleDescription" xml:space="preserve"> <value>A collection of mouse utilities.</value> </data> <data name="MouseUtils_FindMyMouse.Header" xml:space="preserve"> <value>Find My Mouse</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_FindMyMouse.Description" xml:space="preserve"> <value>Find My Mouse highlights the position of the cursor when pressing the Ctrl key twice, using a custom shortcut or when shaking the mouse.</value> <comment>"Ctrl" is a keyboard key. "Find My Mouse" is the name of the utility</comment> </data> <data name="MouseUtils_Enable_FindMyMouse.Header" xml:space="preserve"> <value>Enable Find My Mouse</value> <comment>"Find My Mouse" is the name of the utility.</comment> </data> <data name="MouseUtils_FindMyMouse_ActivationMethod.Header" xml:space="preserve"> <value>Activation method</value> </data> <data name="MouseUtils_FindMyMouse_ActivationDoubleControlPress.Content" xml:space="preserve"> <value>Press Left Control twice</value> <comment>Left control is the physical key on the keyboard.</comment> </data> <data name="MouseUtils_FindMyMouse_ActivationShakeMouse.Content" xml:space="preserve"> <value>Shake mouse</value> <comment>Mouse is the hardware peripheral.</comment> </data> <data name="MouseUtils_FindMyMouse_ExcludedApps.Description" xml:space="preserve"> <value>Prevents module activation when an excluded application is the foreground application</value> </data> <data name="MouseUtils_FindMyMouse_ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="MouseUtils_FindMyMouse_ExcludedApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> </data> <data name="MouseUtils_Prevent_Activation_On_Game_Mode.Content" xml:space="preserve"> <value>Do not activate when Game Mode is on</value> <comment>"Game mode" is the Windows feature to prevent notification when playing a game.</comment> </data> <data name="MouseUtils_FindMyMouse_BackgroundColor.Header" xml:space="preserve"> <value>Background color</value> </data> <data name="MouseUtils_FindMyMouse_SpotlightColor.Header" xml:space="preserve"> <value>Spotlight color</value> </data> <data name="MouseUtils_FindMyMouse_OverlayOpacity.Header" xml:space="preserve"> <value>Overlay opacity (%)</value> </data> <data name="MouseUtils_FindMyMouse_SpotlightRadius.Header" xml:space="preserve"> <value>Spotlight radius (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_FindMyMouse_SpotlightInitialZoom.Header" xml:space="preserve"> <value>Spotlight initial zoom</value> </data> <data name="MouseUtils_FindMyMouse_SpotlightInitialZoom.Description" xml:space="preserve"> <value>Spotlight zoom factor at animation start</value> </data> <data name="MouseUtils_FindMyMouse_AnimationDurationMs.Header" xml:space="preserve"> <value>Animation duration (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_FindMyMouse_AnimationDurationMs.Description" xml:space="preserve"> <value>Time before the spotlight appears (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_FindMyMouse_AnimationDurationMs_Disabled.Message" xml:space="preserve"> <value>Animations are disabled by OS. See Settings &gt; Accessibility &gt; Visual effects</value> </data> <data name="MouseUtils_FindMyMouse_ShakingMinimumDistance.Header" xml:space="preserve"> <value>Shake minimum distance</value> </data> <data name="MouseUtils_FindMyMouse_ShakingMinimumDistance.Description" xml:space="preserve"> <value>The minimum distance for mouse shaking activation, for adjusting sensitivity</value> </data> <data name="MouseUtils_MouseHighlighter.Header" xml:space="preserve"> <value>Mouse Highlighter</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_MouseHighlighter.Description" xml:space="preserve"> <value>Mouse Highlighter mode will highlight mouse clicks.</value> <comment>"Mouse Highlighter" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_Enable_MouseHighlighter.Header" xml:space="preserve"> <value>Enable Mouse Highlighter</value> <comment>"Find My Mouse" is the name of the utility.</comment> </data> <data name="MouseUtils_MouseHighlighter_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MouseUtils_MouseHighlighter_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to turn on or off this mode</value> <comment>"Mouse Highlighter" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_MouseHighlighter_PrimaryButtonClickColor.Header" xml:space="preserve"> <value>Primary button highlight color</value> </data> <data name="MouseUtils_MouseHighlighter_SecondaryButtonClickColor.Header" xml:space="preserve"> <value>Secondary button highlight color</value> </data> <data name="MouseUtils_MouseHighlighter_HighlightRadius.Header" xml:space="preserve"> <value>Radius (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDelayMs.Header" xml:space="preserve"> <value>Fade delay (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDelayMs.Description" xml:space="preserve"> <value>Time before the highlight begins to fade (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDurationMs.Header" xml:space="preserve"> <value>Fade duration (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDurationMs.Description" xml:space="preserve"> <value>Duration of the disappear animation (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MousePointerCrosshairs.Header" xml:space="preserve"> <value>Mouse Pointer Crosshairs</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_MousePointerCrosshairs.Description" xml:space="preserve"> <value>Mouse Pointer Crosshairs draws crosshairs centered on the mouse pointer.</value> <comment>"Mouse Pointer Crosshairs" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_Enable_MousePointerCrosshairs.Header" xml:space="preserve"> <value>Enable Mouse Pointer Crosshairs</value> <comment>"Mouse Pointer Crosshairs" is the name of the utility.</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MouseUtils_MousePointerCrosshairs_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to show/hide the crosshairs</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsColor.Header" xml:space="preserve"> <value>Crosshairs color</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsOpacity.Header" xml:space="preserve"> <value>Crosshairs opacity (%)</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsRadius.Header" xml:space="preserve"> <value>Crosshairs center radius (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsThickness.Header" xml:space="preserve"> <value>Crosshairs thickness (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsBorderColor.Header" xml:space="preserve"> <value>Crosshairs border color</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsBorderSize.Header" xml:space="preserve"> <value>Crosshairs border size (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_IsCrosshairsFixedLengthEnabled.Header" xml:space="preserve"> <value>Fix crosshairs length</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsFixedLength.Header" xml:space="preserve"> <value>Crosshairs fixed length (px)</value> <comment>px = pixels</comment> </data> <data name="FancyZones_Radio_Custom_Colors.Content" xml:space="preserve"> <value>Custom colors</value> </data> <data name="FancyZones_Radio_Default_Theme.Content" xml:space="preserve"> <value>Windows default</value> </data> <data name="ColorModeHeader.Header" xml:space="preserve"> <value>App theme</value> </data> <data name="FancyZones_Zone_Appearance.Description" xml:space="preserve"> <value>Customize the way zones look</value> </data> <data name="FancyZones_Zone_Appearance.Header" xml:space="preserve"> <value>Zone appearance</value> </data> <data name="VideoConference_DeprecationWarning.Title" xml:space="preserve"> <value>VCM is moving into legacy mode (maintenance only).</value> </data> <data name="VideoConference_DeprecationWarningButton.Content" xml:space="preserve"> <value>Learn more</value> </data> <data name="VideoConference_RunAsAdminRequired.Title" xml:space="preserve"> <value>You need to run as administrator to modify these settings.</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_GCODE.Header" xml:space="preserve"> <value>Geometric Code</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_GCODE.Description" xml:space="preserve"> <value>Only .gcode files with embedded thumbnails are supported</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_GCODE.Header" xml:space="preserve"> <value>Geometric Code</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_GCODE.Description" xml:space="preserve"> <value>Only .gcode files with embedded thumbnails are supported</value> </data> <data name="FancyZones_NumberColor.Header" xml:space="preserve"> <value>Number color</value> </data> <data name="FancyZones_ShowZoneNumberCheckBoxControl.Content" xml:space="preserve"> <value>Show zone number</value> </data> <data name="ToggleSwitch.OffContent" xml:space="preserve"> <value>Off</value> <comment>The state of a ToggleSwitch when it's off</comment> </data> <data name="ToggleSwitch.OnContent" xml:space="preserve"> <value>On</value> <comment>The state of a ToggleSwitch when it's on</comment> </data> <data name="CropAndLock.ModuleDescription" xml:space="preserve"> <value>Crop And Lock allows you to crop a current application into a smaller window or just create a thumbnail. Focus the target window and press the shortcut to start cropping.</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="CropAndLock.ModuleTitle" xml:space="preserve"> <value>Crop And Lock </value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="CropAndLock_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="CropAndLock_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="Shell_CropAndLock.Content" xml:space="preserve"> <value>Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="LearnMore_CropAndLock.Text" xml:space="preserve"> <value>Learn more about Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="CropAndLock_ReparentActivation_Shortcut.Header" xml:space="preserve"> <value>Reparent shortcut</value> </data> <data name="CropAndLock_ReparentActivation_Shortcut.Description" xml:space="preserve"> <value>Shortcut to crop an application's window into a cropped window. This is experimental and can cause issues with some applications, since the cropped window will contain the original application window.</value> </data> <data name="CropAndLock_ThumbnailActivation_Shortcut.Header" xml:space="preserve"> <value>Thumbnail shortcut</value> </data> <data name="CropAndLock_ThumbnailActivation_Shortcut.Description" xml:space="preserve"> <value>Shortcut to crop and create a thumbnail of another window. The application isn't controllable through the thumbnail but it'll have less compatibility issues. </value> </data> <data name="CropAndLock.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="Oobe_CropAndLock.Title" xml:space="preserve"> <value>Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="Oobe_CropAndLock.Description" xml:space="preserve"> <value>Crop And Lock allows you to crop a current application into a smaller window or just create a thumbnail. Focus the target window and press the shortcut to start cropping.</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="Oobe_CropAndLock_HowToUse_Thumbnail.Text" xml:space="preserve"> <value>to crop and create a thumbnail of another window. The application isn't controllable through the thumbnail but it'll have less compatibility issues.</value> </data> <data name="Oobe_CropAndLock_HowToUse_Reparent.Text" xml:space="preserve"> <value>to crop an application's window into a cropped window. This is experimental and can cause issues with some applications, since the cropped window will contain the original application window.</value> </data> <data name="AlwaysOnTop.ModuleDescription" xml:space="preserve"> <value>Always On Top is a quick and easy way to pin windows on top.</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop.ModuleTitle" xml:space="preserve"> <value>Always On Top </value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="Peek_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="AlwaysOnTop_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_ExcludedApps.Description" xml:space="preserve"> <value>Excludes an application from pinning on top</value> </data> <data name="AlwaysOnTop_ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="AlwaysOnTop_ExcludedApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> </data> <data name="AlwaysOnTop_FrameColor.Header" xml:space="preserve"> <value>Color</value> </data> <data name="AlwaysOnTop_FrameEnabled.Header" xml:space="preserve"> <value>Show a border around the pinned window</value> </data> <data name="AlwaysOnTop_FrameThickness.Header" xml:space="preserve"> <value>Thickness (px)</value> <comment>px = pixels</comment> </data> <data name="AlwaysOnTop_Behavior_GroupSettings.Header" xml:space="preserve"> <value>Appearance &amp; behavior</value> </data> <data name="Shell_AlwaysOnTop.Content" xml:space="preserve"> <value>Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_GameMode.Content" xml:space="preserve"> <value>Do not activate when Game Mode is on</value> <comment>Game Mode is a Windows feature</comment> </data> <data name="AlwaysOnTop_SoundTitle.Header" xml:space="preserve"> <value>Sound</value> </data> <data name="AlwaysOnTop_Sound.Content" xml:space="preserve"> <value>Play a sound when pinning a window</value> </data> <data name="AlwaysOnTop_Behavior.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="LearnMore_AlwaysOnTop.Text" xml:space="preserve"> <value>Learn more about Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="AlwaysOnTop_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to pin or unpin an app window</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="Oobe_AlwaysOnTop.Title" xml:space="preserve"> <value>Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="Oobe_AlwaysOnTop.Description" xml:space="preserve"> <value>Always On Top improves your multitasking workflow by pinning an application window so it's always in front - even when focus changes to another window after that.</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="Oobe_AlwaysOnTop_HowToUse.Text" xml:space="preserve"> <value>to pin or unpin the selected window so it's always on top of all other windows.</value> </data> <data name="Oobe_AlwaysOnTop_TipsAndTricks.Text" xml:space="preserve"> <value>You can tweak the visual outline of the pinned windows in PowerToys settings.</value> </data> <data name="AlwaysOnTop_FrameColor_Mode.Header" xml:space="preserve"> <value>Color mode</value> </data> <data name="AlwaysOnTop_Radio_Custom_Color.Content" xml:space="preserve"> <value>Custom color</value> </data> <data name="AlwaysOnTop_Radio_Windows_Default.Content" xml:space="preserve"> <value>Windows default</value> </data> <data name="FileExplorerPreview.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Monaco_Wrap_Text.Content" xml:space="preserve"> <value>Wrap text</value> <comment>Feature on or off</comment> </data> <data name="FancyZones_AllowPopupWindowSnap.Description" xml:space="preserve"> <value>This setting can affect all popup windows including notifications</value> </data> <data name="FancyZones_AllowPopupWindowSnap.Header" xml:space="preserve"> <value>Allow popup windows snapping</value> </data> <data name="FancyZones_AllowChildWindowSnap.Content" xml:space="preserve"> <value>Allow child windows snapping</value> </data> <data name="Shell_WhatsNew.Content" xml:space="preserve"> <value>What's new</value> </data> <data name="Shell_Peek.Content" xml:space="preserve"> <value>Peek</value> <comment>Product name: Navigation view item name for Peek</comment> </data> <data name="Peek.ModuleTitle" xml:space="preserve"> <value>Peek</value> </data> <data name="Peek.ModuleDescription" xml:space="preserve"> <value>Peek is a quick and easy way to preview files. Select a file in File Explorer and press the shortcut to open the file preview.</value> </data> <data name="Peek_EnablePeek.Header" xml:space="preserve"> <value>Enable Peek</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="Peek_BehaviorHeader.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="Peek_AlwaysRunNotElevated.Header" xml:space="preserve"> <value>Always run not elevated, even when PowerToys is elevated</value> </data> <data name="Peek_AlwaysRunNotElevated.Description" xml:space="preserve"> <value>Tries to run Peek without elevated permissions, to fix access to network shares. You need to disable and re-enable Peek for changes to this value to take effect.</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="Peek_CloseAfterLosingFocus.Header" xml:space="preserve"> <value>Automatically close the Peek window after it loses focus</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="FancyZones_DisableRoundCornersOnWindowSnap.Content" xml:space="preserve"> <value>Disable round corners when window is snapped</value> </data> <data name="PowerLauncher_SearchQueryTuningEnabled.Description" xml:space="preserve"> <value>Fine tune results ordering</value> </data> <data name="PowerLauncher_SearchQueryTuningEnabled.Header" xml:space="preserve"> <value>Results order tuning</value> </data> <data name="PowerLauncher_SearchClickedItemWeight.Description" xml:space="preserve"> <value>Use a higher number to get selected results to rise faster. The default is 5, 0 to disable.</value> </data> <data name="PowerLauncher_SearchClickedItemWeight.Header" xml:space="preserve"> <value>Selected item weight</value> </data> <data name="PowerLauncher_WaitForSlowResults.Description" xml:space="preserve"> <value>Selecting this can help preselect the top, more relevant result, but at the risk of jumpiness</value> </data> <data name="PowerLauncher_WaitForSlowResults.Header" xml:space="preserve"> <value>Wait on slower plugin results before selecting top item in results</value> </data> <data name="PowerLauncher_PluginWeightBoost.Description" xml:space="preserve"> <value>Use a higher number to have this plugin's result show higher in the global results. Default is 0.</value> </data> <data name="PowerLauncher_PluginWeightBoost.Header" xml:space="preserve"> <value>Global sort order score modifier</value> </data> <data name="AlwaysOnTop_RoundCorners.Content" xml:space="preserve"> <value>Enable round corners</value> </data> <data name="LearnMore_QuickAccent.Text" xml:space="preserve"> <value>Learn more about Quick Accent</value> <comment>Quick Accent is a product name, do not loc</comment> </data> <data name="QuickAccent_EnableQuickAccent.Header" xml:space="preserve"> <value>Enable Quick Accent</value> </data> <data name="Shell_QuickAccent.Content" xml:space="preserve"> <value>Quick Accent</value> </data> <data name="QuickAccent.ModuleDescription" xml:space="preserve"> <value>Quick Accent is an alternative way to type accented characters, useful for when a keyboard doesn't support that specific accent. Activate by holding the key for the character you want to add an accent to, then press the activation key (space, left or right arrow keys) and an overlay to select accented characters will appear!</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent.ModuleTitle" xml:space="preserve"> <value>Quick Accent</value> </data> <data name="QuickAccent.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> </data> <data name="Oobe_QuickAccent.Description" xml:space="preserve"> <value>Quick Accent is an easy way to write letters with accents, like on a smartphone.</value> </data> <data name="Oobe_QuickAccent.Title" xml:space="preserve"> <value>Quick Accent</value> </data> <data name="Oobe_QuickAccent_HowToUse.Text" xml:space="preserve"> <value>Open **PowerToys Settings** and enable Quick Accent. While holding the key for the character you want to add an accent to, press the Activation Key and an overlay to select the accented character will appear.</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="QuickAccent_Activation_Shortcut.Header" xml:space="preserve"> <value>Activation key</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent_Activation_Shortcut.Description" xml:space="preserve"> <value>Press this key after holding down the target letter</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent_Activation_Key_Arrows.Content" xml:space="preserve"> <value>Left/Right Arrow</value> <comment>Left/Right arrow keyboard keys</comment> </data> <data name="QuickAccent_Activation_Key_Space.Content" xml:space="preserve"> <value>Space</value> <comment>Space is the space keyboard key</comment> </data> <data name="QuickAccent_Activation_Key_Either.Content" xml:space="preserve"> <value>Left, Right or Space</value> <comment>All are keys on a keyboard</comment> </data> <data name="QuickAccent_Toolbar.Header" xml:space="preserve"> <value>Toolbar</value> </data> <data name="QuickAccent_ToolbarPosition.Header" xml:space="preserve"> <value>Toolbar position</value> </data> <data name="QuickAccent_ToolbarPosition_TopCenter.Content" xml:space="preserve"> <value>Top center</value> </data> <data name="QuickAccent_ToolbarPosition_TopLeftCorner.Content" xml:space="preserve"> <value>Top left corner</value> </data> <data name="QuickAccent_ToolbarPosition_TopRightCorner.Content" xml:space="preserve"> <value>Top right corner</value> </data> <data name="QuickAccent_ToolbarPosition_BottomLeftCorner.Content" xml:space="preserve"> <value>Bottom left corner</value> </data> <data name="QuickAccent_ToolbarPosition_BottomCenter.Content" xml:space="preserve"> <value>Bottom center</value> </data> <data name="QuickAccent_ToolbarPosition_BottomRightCorner.Content" xml:space="preserve"> <value>Bottom right corner</value> </data> <data name="QuickAccent_ToolbarPosition_Center.Content" xml:space="preserve"> <value>Center</value> </data> <data name="QuickAccent_ToolbarPosition_Left.Content" xml:space="preserve"> <value>Left</value> </data> <data name="QuickAccent_ToolbarPosition_Right.Content" xml:space="preserve"> <value>Right</value> </data> <data name="QuickAccent_Behavior.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="QuickAccent_InputTimeMs.Header" xml:space="preserve"> <value>Input delay (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="QuickAccent_InputTimeMs.Description" xml:space="preserve"> <value>Hold the key down for this much time to make the accent menu appear (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="QuickAccent_ExcludedApps.Description" xml:space="preserve"> <value>Prevents module activation if a foreground application is excluded. Add one application name per line.</value> </data> <data name="QuickAccent_ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="QuickAccent_ExcludedApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: Teams.exe</value> </data> <data name="LearnMore_TextExtractor.Text" xml:space="preserve"> <value>Learn more about Text Extractor</value> </data> <data name="TextExtractor_Cancel" xml:space="preserve"> <value>cancel</value> </data> <data name="General_SettingsBackupAndRestore_NothingToBackup" xml:space="preserve"> <value>A new backup was not created because no settings have been changed since last backup.</value> </data> <data name="General_SettingsBackupAndRestore_NoBackupFound" xml:space="preserve"> <value>No backup found</value> </data> <data name="General_SettingsBackupAndRestore_FailedToParseTime" xml:space="preserve"> <value>Failed to parse time</value> </data> <data name="General_SettingsBackupAndRestore_UnknownBackupTime" xml:space="preserve"> <value>Unknown</value> </data> <data name="General_SettingsBackupAndRestore_UnknownBackupSource" xml:space="preserve"> <value>Unknown</value> </data> <data name="General_SettingsBackupAndRestore_ThisMachine" xml:space="preserve"> <value>This computer</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsMatch" xml:space="preserve"> <value>Current settings match</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsStatusAt" xml:space="preserve"> <value>at</value> <comment>E.g., Food was served 'at' noon.</comment> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsDiffer" xml:space="preserve"> <value>Current settings differ</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsNoChecked" xml:space="preserve"> <value>Checking...</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsUnknown" xml:space="preserve"> <value>Unknown</value> </data> <data name="General_SettingsBackupAndRestore_NeverRestored" xml:space="preserve"> <value>Never restored</value> </data> <data name="General_SettingsBackupAndRestore_NothingToRestore" xml:space="preserve"> <value>Nothing to restore.</value> </data> <data name="General_SettingsBackupAndRestore_NoSettingsFilesFound" xml:space="preserve"> <value>No settings files found.</value> </data> <data name="General_SettingsBackupAndRestore_BackupError" xml:space="preserve"> <value>There was an error. Try another backup location.</value> </data> <data name="General_SettingsBackupAndRestore_SettingsFormatError" xml:space="preserve"> <value>There was an error in the settings format. Please check the settings file:</value> </data> <data name="General_SettingsBackupAndRestore_BackupComplete" xml:space="preserve"> <value>Backup completed.</value> </data> <data name="General_SettingsBackupAndRestore_NoBackupSyncPath" xml:space="preserve"> <value>No backup location selected.</value> </data> <data name="General_SettingsBackupAndRestore_NoBackupsFound" xml:space="preserve"> <value>No backups found to restore.</value> </data> <data name="General_SettingsBackupAndRestore_InvalidBackupLocation" xml:space="preserve"> <value>Invalid backup location.</value> </data> <data name="TextExtractor.ModuleDescription" xml:space="preserve"> <value>Text Extractor is a convenient way to copy text from anywhere on screen</value> </data> <data name="TextExtractor.ModuleTitle" xml:space="preserve"> <value>Text Extractor</value> </data> <data name="TextExtractor_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Text Extractor</value> </data> <data name="TextExtractor_SupportedLanguages.Title" xml:space="preserve"> <value>Text Extractor can only recognize languages that have the OCR pack installed.</value> </data> <data name="TextExtractor_SupportedLanguages_Link.Content" xml:space="preserve"> <value>Learn more about supported languages</value> </data> <data name="Shell_TextExtractor.Content" xml:space="preserve"> <value>Text Extractor</value> </data> <data name="Launch_TextExtractor.Content" xml:space="preserve"> <value>Launch Text Extractor</value> </data> <data name="Oobe_TextExtractor.Title" xml:space="preserve"> <value>Text Extractor</value> </data> <data name="Oobe_TextExtractor_HowToUse.Text" xml:space="preserve"> <value>to open Text Extractor and then selecting a region to copy the text from.</value> </data> <data name="Oobe_TextExtractor_TipsAndTricks.Text" xml:space="preserve"> <value>Hold the shift key to move the selection region around.</value> </data> <data name="TextExtractor.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> </data> <data name="Oobe_TextExtractor.Description" xml:space="preserve"> <value>Text Extractor works like Snipping Tool, but copies the text out of the selected region using OCR and puts it on the clipboard.</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Monaco_Try_Format.Description" xml:space="preserve"> <value>Applies to json and xml. Files remain unchanged.</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Monaco_Try_Format.Header" xml:space="preserve"> <value>Try to format the source for preview</value> </data> <data name="Run_ConflictingKeywordInfo.Title" xml:space="preserve"> <value>Some characters and phrases may conflict with global queries of other plugins if you use them as activation command.</value> </data> <data name="Run_ConflictingKeywordInfo_Link.Content" xml:space="preserve"> <value>Learn more about conflicting activation commands</value> </data> <data name="MeasureTool_ContinuousCapture_Information.Title" xml:space="preserve"> <value>The continuous capture mode will consume more resources when in use. Also, measurements will be excluded from screenshots and screen capture.</value> <comment>pointer as in mouse pointer. Resources refer to things like CPU, GPU, RAM</comment> </data> <data name="QuickAccent_Description_Indicator.Header" xml:space="preserve"> <value>Show the Unicode code and name of the currently selected character</value> </data> <data name="QuickAccent_SortByUsageFrequency_Indicator.Header" xml:space="preserve"> <value>Sort characters by usage frequency</value> </data> <data name="QuickAccent_SortByUsageFrequency_Indicator.Description" xml:space="preserve"> <value>Track characters usage frequency and sort them accordingly</value> </data> <data name="QuickAccent_StartSelectionFromTheLeft_Indicator.Header" xml:space="preserve"> <value>Start selection from the left</value> </data> <data name="QuickAccent_StartSelectionFromTheLeft_Indicator.Description" xml:space="preserve"> <value>Start selection from the leftmost character for all activation keys, including left and right arrows</value> </data> <data name="QuickAccent_DisableFullscreen.Header" xml:space="preserve"> <value>Disable when Game Mode is On</value> </data> <data name="QuickAccent_Language.Header" xml:space="preserve"> <value>Characters</value> </data> <data name="QuickAccent_SelectedLanguage.Header" xml:space="preserve"> <value>Choose a character set</value> </data> <data name="QuickAccent_SelectedLanguage.Description" xml:space="preserve"> <value>Show only accented characters common to the selected set</value> </data> <data name="QuickAccent_SelectedLanguage_All.Content" xml:space="preserve"> <value>All available</value> </data> <data name="QuickAccent_SelectedLanguage_Catalan.Content" xml:space="preserve"> <value>Catalan</value> </data> <data name="QuickAccent_SelectedLanguage_Currency.Content" xml:space="preserve"> <value>Currency</value> </data> <data name="QuickAccent_SelectedLanguage_Croatian.Content" xml:space="preserve"> <value>Croatian</value> </data> <data name="QuickAccent_SelectedLanguage_Czech.Content" xml:space="preserve"> <value>Czech</value> </data> <data name="QuickAccent_SelectedLanguage_Gaeilge.Content" xml:space="preserve"> <value>Gaeilge</value> <comment>Gaelic language spoken in Ireland</comment> </data> <data name="QuickAccent_SelectedLanguage_Gaidhlig.Content" xml:space="preserve"> <value>Gàidhlig</value> <comment>Scottish Gaelic</comment> </data> <data name="QuickAccent_SelectedLanguage_German.Content" xml:space="preserve"> <value>German</value> </data> <data name="QuickAccent_SelectedLanguage_Hebrew.Content" xml:space="preserve"> <value>Hebrew</value> </data> <data name="QuickAccent_SelectedLanguage_French.Content" xml:space="preserve"> <value>French</value> </data> <data name="QuickAccent_SelectedLanguage_Estonian.Content" xml:space="preserve"> <value>Estonian</value> </data> <data name="QuickAccent_SelectedLanguage_Lithuanian.Content" xml:space="preserve"> <value>Lithuanian</value> </data> <data name="QuickAccent_SelectedLanguage_Macedonian.Content" xml:space="preserve"> <value>Macedonian</value> </data> <data name="QuickAccent_SelectedLanguage_Maori.Content" xml:space="preserve"> <value>Maori</value> </data> <data name="QuickAccent_SelectedLanguage_Dutch.Content" xml:space="preserve"> <value>Dutch</value> </data> <data name="QuickAccent_SelectedLanguage_Norwegian.Content" xml:space="preserve"> <value>Norwegian</value> </data> <data name="QuickAccent_SelectedLanguage_Pinyin.Content" xml:space="preserve"> <value>Pinyin</value> </data> <data name="QuickAccent_SelectedLanguage_Polish.Content" xml:space="preserve"> <value>Polish</value> </data> <data name="QuickAccent_SelectedLanguage_Portuguese.Content" xml:space="preserve"> <value>Portuguese</value> </data> <data name="QuickAccent_SelectedLanguage_Slovakian.Content" xml:space="preserve"> <value>Slovakian</value> </data> <data name="QuickAccent_SelectedLanguage_Spanish.Content" xml:space="preserve"> <value>Spanish</value> </data> <data name="QuickAccent_SelectedLanguage_Swedish.Content" xml:space="preserve"> <value>Swedish</value> </data> <data name="QuickAccent_SelectedLanguage_Turkish.Content" xml:space="preserve"> <value>Turkish</value> </data> <data name="QuickAccent_SelectedLanguage_Icelandic.Content" xml:space="preserve"> <value>Icelandic</value> </data> <data name="QuickAccent_SelectedLanguage_Romanian.Content" xml:space="preserve"> <value>Romanian</value> </data> <data name="QuickAccent_SelectedLanguage_Serbian.Content" xml:space="preserve"> <value>Serbian</value> </data> <data name="QuickAccent_SelectedLanguage_Hungarian.Content" xml:space="preserve"> <value>Hungarian</value> </data> <data name="QuickAccent_SelectedLanguage_Italian.Content" xml:space="preserve"> <value>Italian</value> </data> <data name="QuickAccent_SelectedLanguage_Kurdish.Content" xml:space="preserve"> <value>Kurdish</value> </data> <data name="QuickAccent_SelectedLanguage_Welsh.Content" xml:space="preserve"> <value>Welsh</value> </data> <data name="Hosts.ModuleDescription" xml:space="preserve"> <value>Quick and simple utility for managing hosts file.</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Hosts.ModuleTitle" xml:space="preserve"> <value>Hosts File Editor</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Shell_Hosts.Content" xml:space="preserve"> <value>Hosts File Editor</value> <comment>Products name: Navigation view item name for Hosts File Editor</comment> </data> <data name="Hosts_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Hosts_Toggle_ShowStartupWarning.Header" xml:space="preserve"> <value>Show a warning at startup</value> </data> <data name="Hosts_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="Hosts_LaunchButtonControl.Description" xml:space="preserve"> <value>Manage your hosts file</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Hosts_LaunchButtonControl.Header" xml:space="preserve"> <value>Launch Host File Editor</value> <comment>"Host File Editor" is a product name</comment> </data> <data name="Hosts_LaunchButton_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Launch Host File Editor</value> <comment>"Host File Editor" is a product name</comment> </data> <data name="Hosts_AdditionalLinesPosition.Header" xml:space="preserve"> <value>Position of additional content</value> </data> <data name="Hosts_AdditionalLinesPosition_Bottom.Content" xml:space="preserve"> <value>Bottom</value> </data> <data name="Hosts_AdditionalLinesPosition_Top.Content" xml:space="preserve"> <value>Top</value> </data> <data name="Hosts_Behavior_GroupSettings.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="Launch_Hosts.Content" xml:space="preserve"> <value>Launch Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="LearnMore_Hosts.Text" xml:space="preserve"> <value>Learn more about Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Oobe_Hosts.Description" xml:space="preserve"> <value>Hosts File Editor is a quick and simple utility for managing hosts file.</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Oobe_Hosts.Title" xml:space="preserve"> <value>Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Hosts_Toggle_LaunchAdministrator.Description" xml:space="preserve"> <value>Needs to be launched as administrator in order to make changes to the hosts file</value> </data> <data name="Hosts_Toggle_LaunchAdministrator.Header" xml:space="preserve"> <value>Launch as administrator</value> </data> <data name="ShortcutGuide_PressTimeForTaskbarIconShortcuts.Header" xml:space="preserve"> <value>Press duration before showing taskbar icon shortcuts (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="FileLocksmith.ModuleDescription" xml:space="preserve"> <value>A Windows shell extension to find out which processes are using the selected files and directories.</value> </data> <data name="FileLocksmith.ModuleTitle" xml:space="preserve"> <value>File Locksmith</value> </data> <data name="Shell_FileLocksmith.Content" xml:space="preserve"> <value>File Locksmith</value> <comment>Product name: Navigation view item name for FileLocksmith</comment> </data> <data name="FileLocksmith_Enable_FileLocksmith.Header" xml:space="preserve"> <value>Enable File Locksmith</value> <comment>File Locksmith is the name of the utility</comment> </data> <data name="FileLocksmith_Toggle_StandardContextMenu.Content" xml:space="preserve"> <value>Default and extended context menu</value> </data> <data name="FileLocksmith_Toggle_ExtendedContextMenu.Content" xml:space="preserve"> <value>Extended context menu only</value> </data> <data name="FileLocksmith_Toggle_ContextMenu.Header" xml:space="preserve"> <value>Show File Locksmith in</value> </data> <data name="FileLocksmith_ShellIntegration.Header" xml:space="preserve"> <value>Shell integration</value> <comment>This refers to directly integrating in with Windows</comment> </data> <data name="GPO_IsSettingForced.Title" xml:space="preserve"> <value>The system administrator is forcing this setting.</value> </data> <data name="Hosts_AdditionalLinesPosition.Description" xml:space="preserve"> <value>Additional content includes the file header and lines that can't parse</value> </data> <data name="TextExtractor_Languages.Header" xml:space="preserve"> <value>Preferred language</value> </data> <data name="Alternate_OOBE_AlwaysOnTop_Description.Text" xml:space="preserve"> <value>Pin a window so that:</value> </data> <data name="Alternate_OOBE_AlwaysOnTop_Title.Text" xml:space="preserve"> <value>Always On Top</value> </data> <data name="Alternate_OOBE_ColorPicker_Description.Text" xml:space="preserve"> <value>To pick a color:</value> </data> <data name="Alternate_OOBE_ColorPicker_Title.Text" xml:space="preserve"> <value>Color Picker</value> </data> <data name="Alternate_OOBE_Description.Text" xml:space="preserve"> <value>Here are a few shortcuts to get you started:</value> </data> <data name="Alternate_OOBE_FancyZones_Description.Text" xml:space="preserve"> <value>To open the FancyZones editor, press:</value> </data> <data name="Alternate_OOBE_FancyZones_Title.Text" xml:space="preserve"> <value>FancyZones</value> </data> <data name="Alternate_OOBE_Run_Description.Text" xml:space="preserve"> <value>Get access to your files and more:</value> </data> <data name="Alternate_OOBE_Run_Title.Text" xml:space="preserve"> <value>PowerToys Run</value> </data> <data name="General_Experimentation.Header" xml:space="preserve"> <value>Experimentation</value> </data> <data name="GeneralPage_EnableExperimentation.Description" xml:space="preserve"> <value>Note: Only Windows Insider builds may be selected for experimentation</value> </data> <data name="GeneralPage_EnableExperimentation.Header" xml:space="preserve"> <value>Allow experimentation with new features</value> </data> <data name="GPO_ExperimentationIsDisallowed.Title" xml:space="preserve"> <value>The system administrator has disabled experimentation.</value> </data> <data name="Shell_PastePlain.Content" xml:space="preserve"> <value>Paste As Plain Text</value> <comment>Product name: Navigation view item name for Paste as Plain Text</comment> </data> <data name="PastePlain.ModuleDescription" xml:space="preserve"> <value>Paste As Plain Text is a quick shortcut for pasting the text contents of your clipboard without formatting. Note: the formatted text in the clipboard is replaced with the unformatted text.</value> </data> <data name="PastePlain.ModuleTitle" xml:space="preserve"> <value>Paste As Plain Text</value> </data> <data name="PastePlain_Cancel" xml:space="preserve"> <value>cancel</value> </data> <data name="PastePlain_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Paste As Plain Text</value> </data> <data name="Oobe_PastePlain.Description" xml:space="preserve"> <value>Paste As Plain Text strips rich formatting from your clipboard data and pastes it as non-formatted text.</value> </data> <data name="Oobe_PastePlain.Title" xml:space="preserve"> <value>Paste As Plain Text</value> </data> <data name="Oobe_PastePlain_HowToUse.Text" xml:space="preserve"> <value>to paste your clipboard data as plain text. Note: this will replace the formatted text in your clipboard with the plain text.</value> </data> <data name="AllAppsTxt.Text" xml:space="preserve"> <value>All apps</value> </data> <data name="BackBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Back</value> </data> <data name="BackLabel.Text" xml:space="preserve"> <value>Back</value> </data> <data name="BugReportBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Bug report</value> </data> <data name="BugReportTooltip.Text" xml:space="preserve"> <value>Bug report</value> </data> <data name="DocsBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Documentation</value> </data> <data name="DocsTooltip.Text" xml:space="preserve"> <value>Documentation</value> </data> <data name="FZEditorString" xml:space="preserve"> <value>FancyZones Editor</value> <comment>Do not localize this string</comment> </data> <data name="MoreBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>More</value> </data> <data name="MoreLabel.Text" xml:space="preserve"> <value>More</value> </data> <data name="SettingsBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Settings</value> </data> <data name="SettingsTooltip.Text" xml:space="preserve"> <value>Settings</value> </data> <data name="ShortcutsTxt.Text" xml:space="preserve"> <value>Shortcuts</value> </data> <data name="UpdateAvailable.Title" xml:space="preserve"> <value>Update available</value> </data> <data name="FileExplorerPreview_Toggle_Monaco_Max_File_Size.Header" xml:space="preserve"> <value>Maximum file size to preview</value> <comment>Size refers to the disk space used by a file</comment> </data> <data name="FileExplorerPreview_Toggle_Monaco_Max_File_Size.Description" xml:space="preserve"> <value>The maximum size, in kilobytes, for files to be displayed. This is a safety mechanism to prevent loading large files into RAM.</value> <comment>"RAM" refers to random access memory; "size" refers to disk space; "bytes" refer to the measurement unit</comment> </data> <data name="RegistryPreview.ModuleDescription" xml:space="preserve"> <value>A quick little utility to visualize and edit complex Windows Registry files.</value> </data> <data name="RegistryPreview.ModuleTitle" xml:space="preserve"> <value>Registry Preview</value> </data> <data name="Shell_RegistryPreview.Content" xml:space="preserve"> <value>Registry Preview</value> <comment>Product name: Navigation view item name for Registry Preview</comment> </data> <data name="RegistryPreview_Enable_RegistryPreview.Header" xml:space="preserve"> <value>Enable Registry Preview</value> <comment>Registry Preview is the name of the utility</comment> </data> <data name="Oobe_RegistryPreview_HowToUse.Text" xml:space="preserve"> <value>In File Explorer, right-click a .REG file and select **Preview** from the context menu.</value> </data> <data name="Oobe_RegistryPreview_TipsAndTricks.Text" xml:space="preserve"> <value>You can preview or edit Registry files in File Explorer or by opening the app from the PowerToys launcher.</value> </data> <data name="Oobe_RegistryPreview.Description" xml:space="preserve"> <value>Registry Preview is a quick little utility to visualize and edit complex Windows Registry files.</value> </data> <data name="Oobe_RegistryPreview.Title" xml:space="preserve"> <value>Registry Preview</value> <comment>Do not localize this string</comment> </data> <data name="LearnMore_RegistryPreview.Text" xml:space="preserve"> <value>Learn more about Registry Preview</value> <comment>Registry Preview is a product name, do not loc</comment> </data> <data name="Launch_RegistryPreview.Content" xml:space="preserve"> <value>Launch Registry Preview</value> <comment>"Registry Preview" is the name of the utility</comment> </data> <data name="MouseUtils_MouseJump.Description" xml:space="preserve"> <value>Quickly move the mouse pointer long distances.</value> <comment>"Mouse Jump" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_MouseJump.Header" xml:space="preserve"> <value>Mouse Jump</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_MouseJump_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to turn on or off this mode</value> </data> <data name="MouseUtils_MouseJump_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MouseUtils_Enable_MouseJump.Header" xml:space="preserve"> <value>Enable Mouse Jump</value> <comment>"Mouse Jump" is the name of the utility.</comment> </data> <data name="GPO_AutoDownloadUpdatesIsDisabled.Title" xml:space="preserve"> <value>The system administrator has disabled the automatic download of updates.</value> </data> <data name="Hosts_Toggle_LoopbackDuplicates.Description" xml:space="preserve"> <value>127.0.0.1, ::1, ...</value> <comment>"127.0.0.1 and ::1" are well known loopback addresses, do not loc</comment> </data> <data name="Hosts_Toggle_LoopbackDuplicates.Header" xml:space="preserve"> <value>Consider loopback addresses as duplicates</value> </data> <data name="RegistryPreview_Launch_GroupSettings.Header" xml:space="preserve"> <value>Launch</value> </data> <data name="RegistryPreview_LaunchButton_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Launch Registry Preview</value> </data> <data name="RegistryPreview_LaunchButtonControl.Header" xml:space="preserve"> <value>Launch Registry Preview</value> </data> <data name="RegistryPreview_DefaultRegApp.Header" xml:space="preserve"> <value>Default app</value> </data> <data name="RegistryPreview_DefaultRegApp.Description" xml:space="preserve"> <value>Make Registry Preview default app for opening .reg files</value> <comment>Registry Preview is app name. Do not localize.</comment> </data> <data name="PastePlain_ShortcutWarning.Title" xml:space="preserve"> <value>Using this shortcut may prevent non-text paste actions (e.g. images, files) or built-in paste plain text actions in other applications from functioning.</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize.Header" xml:space="preserve"> <value>Thumbnail Size</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Description_Prefix.Text" xml:space="preserve"> <value>Constrain thumbnail image size to a maximum of</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Description_Suffix.Text" xml:space="preserve"> <value>pixels</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Edit_Height.Header" xml:space="preserve"> <value>Maximum height (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Edit_Width.Header" xml:space="preserve"> <value>Maximum width (px)</value> <comment>px = pixels</comment> </data> <data name="Oobe_Peek.Description" xml:space="preserve"> <value>A lightning fast file preview feature for Windows.</value> </data> <data name="Oobe_Peek.Title" xml:space="preserve"> <value>Peek</value> </data> <data name="Oobe_Peek_HowToUse.Text" xml:space="preserve"> <value>to preview the file that's currently selected in File Explorer.</value> </data> <data name="MWB_PCNameLabel.PlaceholderText" xml:space="preserve"> <value>Device name</value> </data> <data name="MWB_SecurityKeyLabel.PlaceholderText" xml:space="preserve"> <value>Security key</value> </data> <data name="Hosts_Encoding.Description" xml:space="preserve"> <value>Choose the encoding of the hosts file</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Hosts_Encoding.Header" xml:space="preserve"> <value>Encoding</value> </data> <data name="Hosts_Encoding_Utf8.Content" xml:space="preserve"> <value>UTF-8</value> </data> <data name="Hosts_Encoding_Utf8Bom.Content" xml:space="preserve"> <value>UTF-8 with BOM</value> </data> <data name="MouseUtils_MouseHighlighter_AlwaysColor.Header" xml:space="preserve"> <value>Always highlight color</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsAutoHide.Content" xml:space="preserve"> <value>Automatically hide crosshairs when the mouse pointer is hidden</value> </data> <data name="MouseUtils_AutoActivate.Content" xml:space="preserve"> <value>Automatically activate on utility startup</value> </data> <data name="Run_FindMorePlugins.Text" xml:space="preserve"> <value>Find more plugins</value> </data> <data name="Run_PluginUseFindMorePlugins.Content" xml:space="preserve"> <value>Find more plugins</value> </data> <data name="Run_SomePluginsAreGpoManaged.Title" xml:space="preserve"> <value>The system administrator is managing the enabled state of some plugins.</value> </data> <data name="AlwaysOnTop_FrameOpacity.Header" xml:space="preserve"> <value>Opacity (%)</value> </data> <data name="MouseUtils_FindMyMouse_ActivationCustomizedShortcut.Content" xml:space="preserve"> <value>Custom shortcut</value> </data> <data name="MouseUtils_FindMyMouse_ActivationDoubleRightControlPress.Content" xml:space="preserve"> <value>Press Right Control twice</value> <comment>Right control is the physical key on the keyboard.</comment> </data> <data name="MouseUtils_FindMyMouse_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to turn on or off this mode</value> </data> <data name="MouseUtils_FindMyMouse_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="SettingsWindow_AdminTitle" xml:space="preserve"> <value>Administrator: PowerToys Settings</value> <comment>Title of the settings window when running as administrator</comment> </data> </root>
<?xml version="1.0" encoding="utf-8"?> <root> <!-- Microsoft ResX Schema Version 2.0 The primary goals of this format is to allow a simple XML format that is mostly human readable. The generation and parsing of the various data types are done through the TypeConverter classes associated with the data types. Example: ... ado.net/XML headers & schema ... <resheader name="resmimetype">text/microsoft-resx</resheader> <resheader name="version">2.0</resheader> <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader> <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader> <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data> <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data> <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64"> <value>[base64 mime encoded serialized .NET Framework object]</value> </data> <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value> <comment>This is a comment</comment> </data> There are any number of "resheader" rows that contain simple name/value pairs. Each data row contains a name, and value. The row also contains a type or mimetype. Type corresponds to a .NET class that support text/value conversion through the TypeConverter architecture. Classes that don't support this are serialized and stored with the mimetype set. The mimetype is used for serialized objects, and tells the ResXResourceReader how to depersist the object. This is currently not extensible. For a given mimetype the value must be set accordingly: Note - application/x-microsoft.net.object.binary.base64 is the format that the ResXResourceWriter will generate, however the reader can read any of the formats listed below. mimetype: application/x-microsoft.net.object.binary.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.soap.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Soap.SoapFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.bytearray.base64 value : The object must be serialized into a byte array : using a System.ComponentModel.TypeConverter : and then encoded with base64 encoding. --> <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> <xsd:import namespace="http://www.w3.org/XML/1998/namespace" /> <xsd:element name="root" msdata:IsDataSet="true"> <xsd:complexType> <xsd:choice maxOccurs="unbounded"> <xsd:element name="metadata"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" /> </xsd:sequence> <xsd:attribute name="name" use="required" type="xsd:string" /> <xsd:attribute name="type" type="xsd:string" /> <xsd:attribute name="mimetype" type="xsd:string" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="assembly"> <xsd:complexType> <xsd:attribute name="alias" type="xsd:string" /> <xsd:attribute name="name" type="xsd:string" /> </xsd:complexType> </xsd:element> <xsd:element name="data"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" /> <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="resheader"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" /> </xsd:complexType> </xsd:element> </xsd:choice> </xsd:complexType> </xsd:element> </xsd:schema> <resheader name="resmimetype"> <value>text/microsoft-resx</value> </resheader> <resheader name="version"> <value>2.0</value> </resheader> <resheader name="reader"> <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <resheader name="writer"> <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <data name="Attribution_Rooler.Text" xml:space="preserve"> <value>Inspired by Rooler</value> <comment>Rooler is a name of the tool.</comment> </data> <data name="Shell_VideoConference.Content" xml:space="preserve"> <value>Video Conference Mute</value> <comment>Navigation view item name for Video Conference</comment> </data> <data name="Shell_MeasureTool.Content" xml:space="preserve"> <value>Screen Ruler</value> <comment>Product name: Navigation view item name for Screen Ruler</comment> </data> <data name="MeasureTool.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="MeasureTool.ModuleDescription" xml:space="preserve"> <value>Screen Ruler is a quick and easy way to measure pixels on your screen.</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool.ModuleTitle" xml:space="preserve"> <value>Screen Ruler</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool_ActivationSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="MeasureTool_Settings.Header" xml:space="preserve"> <value>Behavior</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MeasureTool_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to bring up the command bar</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool_DefaultMeasureStyle.Header" xml:space="preserve"> <value>Default measure style</value> </data> <data name="MeasureTool_DefaultMeasureStyle.Description" xml:space="preserve"> <value>The utility will start having the selected style activated</value> </data> <data name="MeasureTool_DefaultMeasureStyle_None.Content" xml:space="preserve"> <value>None</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Bounds.Content" xml:space="preserve"> <value>Bounds</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Spacing.Content" xml:space="preserve"> <value>Spacing</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Horizontal_Spacing.Content" xml:space="preserve"> <value>Horizontal spacing</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Vertical_Spacing.Content" xml:space="preserve"> <value>Vertical spacing</value> </data> <data name="MeasureTool_UnitsOfMeasure.Header" xml:space="preserve"> <value>Units of measurement</value> </data> <data name="MeasureTool_UnitsOfMeasure_Pixels.Content" xml:space="preserve"> <value>Pixels</value> </data> <data name="MeasureTool_UnitsOfMeasure_Inches.Content" xml:space="preserve"> <value>Inches</value> </data> <data name="MeasureTool_UnitsOfMeasure_Centimeters.Content" xml:space="preserve"> <value>Centimeters</value> </data> <data name="MeasureTool_PixelTolerance.Header" xml:space="preserve"> <value>Pixel tolerance for edge detection</value> </data> <data name="MeasureTool_MeasureCrossColor.Header" xml:space="preserve"> <value>Line color</value> </data> <data name="MeasureTool_ContinuousCapture.Header" xml:space="preserve"> <value>Capture screen continuously during measuring</value> </data> <data name="MeasureTool_ContinuousCapture.Description" xml:space="preserve"> <value>Refresh screen contexts in real-time instead of making a screenshot once</value> </data> <data name="MeasureTool_PerColorChannelEdgeDetection.Header" xml:space="preserve"> <value>Per color channel edge detection</value> </data> <data name="MeasureTool_PerColorChannelEdgeDetection.Description" xml:space="preserve"> <value>If enabled, test that all color channels are within a tolerance distance from each other. Otherwise, check that the sum of all color channels differences is smaller than the tolerance.</value> </data> <data name="MeasureTool_DrawFeetOnCross.Header" xml:space="preserve"> <value>Draw feet on cross</value> </data> <data name="MeasureTool_DrawFeetOnCross.Description" xml:space="preserve"> <value>Adds feet to the end of cross lines</value> </data> <data name="MeasureTool_EnableMeasureTool.Header" xml:space="preserve"> <value>Enable Screen Ruler</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MouseWithoutBorders_ActivationSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="MouseWithoutBorders_DeviceLayoutSettings.Header" xml:space="preserve"> <value>Device layout</value> </data> <data name="MouseWithoutBorders_DeviceLayoutSettings.Description" xml:space="preserve"> <value>Drag and drop a machine to rearrange the order.</value> </data> <data name="MouseWithoutBorders_CannotDragDropAsAdmin.Title" xml:space="preserve"> <value>It is not possible to use drag and drop while running PowerToys elevated. As a workaround, please restart PowerToys without elevation to edit the device layout.</value> </data> <data name="MouseWithoutBorders_KeySettings.Header" xml:space="preserve"> <value>Encryption key</value> </data> <data name="MouseWithoutBorders_SecurityKey.Header" xml:space="preserve"> <value>Security key</value> </data> <data name="MouseWithoutBorders_SecurityKey.Description" xml:space="preserve"> <value>The key must be auto generated in one machine by clicking on New Key, then typed in other machines</value> </data> <data name="MouseWithoutBorders_NewKey.Content" xml:space="preserve"> <value>New key</value> </data> <data name="MouseWithoutBorders_CopyMachineName.Text" xml:space="preserve"> <value>Copy to clipboard</value> </data> <data name="MouseWithoutBorders_ReconnectButton.Text" xml:space="preserve"> <value>Refresh connections</value> </data> <data name="MouseWithoutBorders_ReconnectTooltip.Text" xml:space="preserve"> <value>Reestablishes connections with other devices if you are experiencing issues.</value> </data> <data name="MouseWithoutBorders_ThisMachineNameLabel.Header" xml:space="preserve"> <value>Host name of this device</value> </data> <data name="MouseWithoutBorders_Connect.Content" xml:space="preserve"> <value>Connect</value> </data> <data name="MouseWithoutBorders_UninstallService.Header" xml:space="preserve"> <value>Uninstall service</value> </data> <data name="MouseWithoutBorders_UninstallService.Description" xml:space="preserve"> <value>Removes the service from the computer. Needs to run as administrator.</value> </data> <data name="MouseWithoutBorders_Settings.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="MouseWithoutBorders_TroubleShooting.Header" xml:space="preserve"> <value>Troubleshooting</value> </data> <data name="MouseWithoutBorders_AddFirewallRuleButtonControl.Header" xml:space="preserve"> <value>Add a firewall rule for Mouse Without Borders</value> <comment>"Mouse Without Borders" is a product name</comment> </data> <data name="MouseWithoutBorders_AddFirewallRuleButtonControl.Description" xml:space="preserve"> <value>Adding a firewall rule might help solve connection issues.</value> </data> <data name="MouseWithoutBorders_RunAsAdminText.Title" xml:space="preserve"> <value>You need to run as administrator to modify this setting.</value> </data> <data name="MouseWithoutBorders_ServiceUserUninstallWarning.Title" xml:space="preserve"> <value>If PowerToys is installed as a user, uninstalling/upgrading may require the Mouse Without Borders service to be removed manually later.</value> </data> <data name="MouseWithoutBorders_ServiceSettings.Header" xml:space="preserve"> <value>Service</value> </data> <data name="MouseWithoutBorders_Toggle_Enable.Header" xml:space="preserve"> <value>Enable Mouse Without Borders</value> </data> <data name="MouseWithoutBorders.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="MouseWithoutBorders.ModuleDescription" xml:space="preserve"> <value>Mouse Without Borders is a quick and easy way to move your cursor across multiple devices.</value> <comment>"Mouse Without Borders" is the name of the utility</comment> </data> <data name="MouseWithoutBorders.ModuleTitle" xml:space="preserve"> <value>Mouse Without Borders</value> <comment>"Mouse Without Borders" is the name of the utility</comment> </data> <data name="MouseWithoutBorders_UseService.Header" xml:space="preserve"> <value>Use Service</value> </data> <data name="MouseWithoutBorders_UseService.Description" xml:space="preserve"> <value>Runs in service mode, that allows MWB to control remote machines when they're locked. Also allows control of system and administrator applications.</value> </data> <data name="MouseWithoutBorders_MatrixOneRow.Header" xml:space="preserve"> <value>Devices in a single row</value> </data> <data name="MouseWithoutBorders_MatrixOneRow.Description" xml:space="preserve"> <value>Sets whether the devices are aligned on a single row. A two by two matrix is considered otherwise.</value> </data> <data name="MouseWithoutBorders_WrapMouse.Header" xml:space="preserve"> <value>Wrap mouse</value> </data> <data name="MouseWithoutBorders_WrapMouse.Description" xml:space="preserve"> <value>Move control back to the first machine when mouse moves past the last one.</value> </data> <data name="MouseWithoutBorders_ShareClipboard.Header" xml:space="preserve"> <value>Share clipboard</value> </data> <data name="MouseWithoutBorders_TransferFile.Header" xml:space="preserve"> <value>Transfer file</value> </data> <data name="MouseWithoutBorders_HideMouseAtScreenEdge.Header" xml:space="preserve"> <value>Hide mouse at the screen edge</value> </data> <data name="MouseWithoutBorders_DrawMouseCursor.Header" xml:space="preserve"> <value>Draw mouse cursor</value> </data> <data name="MouseWithoutBorders_ValidateRemoteMachineIP.Header" xml:space="preserve"> <value>Validate remote machine IP</value> </data> <data name="MouseWithoutBorders_SameSubnetOnly.Header" xml:space="preserve"> <value>Same subnet only</value> </data> <data name="MouseWithoutBorders_BlockScreenSaverOnOtherMachines.Header" xml:space="preserve"> <value>Block screen saver on other machines</value> </data> <data name="MouseWithoutBorders_MoveMouseRelatively.Header" xml:space="preserve"> <value>Move mouse relatively</value> </data> <data name="MouseWithoutBorders_BlockMouseAtScreenCorners.Header" xml:space="preserve"> <value>Block mouse at screen corners</value> </data> <data name="MouseWithoutBorders_ShowClipboardAndNetworkStatusMessages.Header" xml:space="preserve"> <value>Show clipboard and network status messages</value> </data> <data name="MouseWithoutBorders_ShowOriginalUI.Header" xml:space="preserve"> <value>Show the original Mouse Without Borders UI</value> </data> <data name="MouseWithoutBorders_ShowOriginalUI.Description" xml:space="preserve"> <value>This is accessible from the system tray and requires a restart.</value> </data> <data name="MouseWithoutBorders_ShareClipboard.Description" xml:space="preserve"> <value>If share clipboard stops working, Ctrl+Alt+Del then Esc may solve the problem.</value> </data> <data name="MouseWithoutBorders_TransferFile.Description" xml:space="preserve"> <value>If a file (&lt;100MB) is copied, it will be transferred to the remote machine clipboard.</value> </data> <data name="MouseWithoutBorders_HideMouseAtScreenEdge.Description" xml:space="preserve"> <value>Hide the mouse cursor at the top edge of the screen when switching to other machine. This option also steals the focus from any full-screen app to ensure the keyboard input is redirected.</value> </data> <data name="MouseWithoutBorders_DrawMouseCursor.Description" xml:space="preserve"> <value>Mouse cursor may not be visible in Windows 10 and later versions of Windows when there is no physical mouse attached.</value> </data> <data name="MouseWithoutBorders_ValidateRemoteMachineIP.Description" xml:space="preserve"> <value>Reverse DNS lookup to validate machine IP Address.</value> </data> <data name="MouseWithoutBorders_SameSubnetOnly.Description" xml:space="preserve"> <value>Only connect to machines in the same intranet NNN.NNN.*.* (only works when both machines have IPv4 enabled)</value> </data> <data name="MouseWithoutBorders_IPAddressMapping_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: MyLaptop 192.168.0.24</value> <comment>Don't translate MyLaptop</comment> </data> <data name="MouseWithoutBorders_IPAddressMapping.Header" xml:space="preserve"> <value>IP address mapping</value> </data> <data name="MouseWithoutBorders_IPAddressMapping.Description" xml:space="preserve"> <value>Resolve machine's IP address using manually entered mappings below.</value> </data> <data name="MouseWithoutBorders_BlockScreenSaverOnOtherMachines.Description" xml:space="preserve"> <value>Prevent screen saver from starting on other machines when user is actively working on this machine.</value> </data> <data name="MouseWithoutBorders_MoveMouseRelatively.Description" xml:space="preserve"> <value>Use this option when remote machine's monitor settings are different, or remote machine has multiple monitors.</value> </data> <data name="MouseWithoutBorders_BlockMouseAtScreenCorners.Description" xml:space="preserve"> <value>To avoid accident machine-switch at screen corners.</value> </data> <data name="MouseWithoutBorders_ShowClipboardAndNetworkStatusMessages.Description" xml:space="preserve"> <value>Show clipboard activities and network status in system tray notifications</value> </data> <data name="MouseWithoutBorders_KeyboardShortcuts_Group.Header" xml:space="preserve"> <value>Keyboard shortcuts</value> <comment>keyboard is the hardware peripheral</comment> </data> <data name="MouseWithoutBorders_AdvancedSettings_Group.Header" xml:space="preserve"> <value>Advanced Settings</value> </data> <data name="MouseWithoutBorders_EasyMouseOption.Header" xml:space="preserve"> <value>Easy Mouse: move between machines by moving the mouse pointer to the screen edges.</value> </data> <data name="MouseWithoutBorders_EasyMouseOption.Description" xml:space="preserve"> <value>Can also be set to move only when pressing Shift or Ctrl.</value> <comment>Shift and Ctrl are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_EasyMouseOption_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_EasyMouseOption_Enabled.Content" xml:space="preserve"> <value>Enabled</value> </data> <data name="MouseWithoutBorders_EasyMouseOption_Ctrl.Content" xml:space="preserve"> <value>Ctrl</value> <comment>This is the Ctrl keyboard key</comment> </data> <data name="MouseWithoutBorders_EasyMouseOption_Shift.Content" xml:space="preserve"> <value>Shift</value> <comment>This is the Shift keyboard key</comment> </data> <data name="MouseWithoutBorders_LockMachinesShortcut.Header" xml:space="preserve"> <value>Shortcut to lock all machines.</value> </data> <data name="MouseWithoutBorders_LockMachinesShortcut.Description" xml:space="preserve"> <value>Hit this hotkey twice to lock all machines. Note: Only the machines which have the same shortcut configured will be locked.</value> </data> <data name="MouseWithoutBorders_ToggleEasyMouseShortcut.Header" xml:space="preserve"> <value>Shortcut to toggle Easy Mouse.</value> <comment>Ctrl and Alt are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_ToggleEasyMouseShortcut.Description" xml:space="preserve"> <value>Only works if EasyMouse is set to Enabled or Disabled.</value> </data> <data name="MouseWithoutBorders_ToggleEasyMouseShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut.Header" xml:space="preserve"> <value>Shortcut to switch between machines. Ctrl+Alt+:</value> <comment>Ctrl and Alt are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut.Description" xml:space="preserve"> <value>Click on Ctrl+Alt+ the chosen option to switch between machines.</value> <comment>Ctrl and Alt are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut_F1.Content" xml:space="preserve"> <value>F1, F2, F3, F4</value> <comment>Don't localize. These are keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut_1.Content" xml:space="preserve"> <value>1, 2, 3, 4</value> <comment>Don't localize. These are keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_LockMachinesShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_ReconnectShortcut.Header" xml:space="preserve"> <value>Shortcut to try reconnecting</value> </data> <data name="MouseWithoutBorders_ReconnectShortcut.Description" xml:space="preserve"> <value>Just in case the connection is lost for any reason.</value> </data> <data name="MouseWithoutBorders_ReconnectShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut.Header" xml:space="preserve"> <value>Shortcut to switch to multiple machine mode.</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut.Description" xml:space="preserve"> <value>Allows controlling all computers at once.</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut_Ctrl3.Content" xml:space="preserve"> <value>Ctrl three times</value> <comment>This is the Ctrl keyboard key</comment> </data> <data name="VideoConference_Enable.Header" xml:space="preserve"> <value>Enable Video Conference Mute</value> </data> <data name="VideoConference.ModuleDescription" xml:space="preserve"> <value>Video Conference Mute is a quick and easy way to do a global "mute" of both your microphone and webcam. Disabling this module or closing PowerToys will unmute the microphone and camera.</value> </data> <data name="VideoConference_CameraAndMicrophoneMuteHotkeyControl_Header.Header" xml:space="preserve"> <value>Mute camera &amp; microphone</value> </data> <data name="VideoConference_MicrophoneMuteHotkeyControl_Header.Header" xml:space="preserve"> <value>Mute microphone</value> </data> <data name="VideoConference_MicrophonePushToTalkHotkeyControl_Header.Header" xml:space="preserve"> <value>Push to talk</value> </data> <data name="VideoConference_CameraMuteHotkeyControl_Header.Header" xml:space="preserve"> <value>Mute camera</value> </data> <data name="VideoConference_SelectedCamera.Header" xml:space="preserve"> <value>Selected camera</value> </data> <data name="VideoConference_SelectedMicrophone.Header" xml:space="preserve"> <value>Selected microphone</value> </data> <data name="VideoConference_PushToReverse.Header" xml:space="preserve"> <value>Push to reverse</value> </data> <data name="VideoConference_PushToReverse.Description" xml:space="preserve"> <value>If enabled, allows both push to talk and push to mute, depending on microphone state</value> </data> <data name="VideoConference_CameraOverlayImagePathHeader.Header" xml:space="preserve"> <value>Image displayed when camera is muted</value> </data> <data name="VideoConference_ToolbarPosition.Header" xml:space="preserve"> <value>Toolbar position</value> </data> <data name="VideoConference_ToolbarPosition_TopCenter.Content" xml:space="preserve"> <value>Top center</value> </data> <data name="VideoConference_ToolbarPosition_TopLeftCorner.Content" xml:space="preserve"> <value>Top left corner</value> </data> <data name="VideoConference_ToolbarPosition_TopRightCorner.Content" xml:space="preserve"> <value>Top right corner</value> </data> <data name="VideoConference_ToolbarPosition_BottomLeftCorner.Content" xml:space="preserve"> <value>Bottom left corner</value> </data> <data name="VideoConference_ToolbarPosition_BottomCenter.Content" xml:space="preserve"> <value>Bottom center</value> </data> <data name="VideoConference_ToolbarPosition_BottomRightCorner.Content" xml:space="preserve"> <value>Bottom right corner</value> </data> <data name="VideoConference_ToolbarMonitor.Header" xml:space="preserve"> <value>Show toolbar on</value> </data> <data name="VideoConference_ToolbarMonitor_Main.Content" xml:space="preserve"> <value>Main monitor</value> </data> <data name="VideoConference_ToolbarMonitor_UnderCursor.Content" xml:space="preserve"> <value>Monitor under cursor</value> </data> <data name="VideoConference_ToolbarMonitor_ActiveWindow.Content" xml:space="preserve"> <value>Active window monitor</value> </data> <data name="VideoConference_ToolbarMonitor_All.Content" xml:space="preserve"> <value>All monitors</value> </data> <data name="VideoConference_ToolbarHide.Header" xml:space="preserve"> <value>Hide toolbar</value> </data> <data name="VideoConference_ToolbarHideMuted.Content" xml:space="preserve"> <value>When both camera and microphone are muted</value> </data> <data name="VideoConference_ToolbarHideNever.Content" xml:space="preserve"> <value>Never</value> </data> <data name="VideoConference_ToolbarHideUnmuted.Content" xml:space="preserve"> <value>When both camera and microphone are unmuted</value> </data> <data name="VideoConference_ToolbarHideTimeout.Content" xml:space="preserve"> <value>After timeout</value> </data> <data name="VideoConference.ModuleTitle" xml:space="preserve"> <value>Video Conference Mute</value> </data> <data name="VideoConference_Camera.Header" xml:space="preserve"> <value>Camera</value> </data> <data name="VideoConference_Camera.Description" xml:space="preserve"> <value>To use this feature, make sure to select PowerToys VideoConference Mute as your camera source in your apps.</value> </data> <data name="VideoConference_Microphone.Header" xml:space="preserve"> <value>Microphone</value> </data> <data name="VideoConference_Toolbar.Header" xml:space="preserve"> <value>Toolbar</value> </data> <data name="VideoConference_Behavior.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="VideoConference_StartupAction.Header" xml:space="preserve"> <value>Startup action</value> </data> <data name="VideoConference_StartupActionNothing.Content" xml:space="preserve"> <value>Nothing</value> </data> <data name="VideoConference_StartupActionUnmute.Content" xml:space="preserve"> <value>Unmute</value> </data> <data name="VideoConference_StartupActionMute.Content" xml:space="preserve"> <value>Mute</value> </data> <data name="VideoConference_Shortcuts.Header" xml:space="preserve"> <value>Shortcuts</value> </data> <data name="VideoConference_CameraOverlayImageAlt.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Camera overlay image preview</value> </data> <data name="VideoConference_CameraOverlayImageBrowse.Content" xml:space="preserve"> <value>Browse</value> </data> <data name="VideoConference_CameraOverlayImageClear.Content" xml:space="preserve"> <value>Clear</value> </data> <data name="Shell_General.Content" xml:space="preserve"> <value>General</value> <comment>Navigation view item name for General</comment> </data> <data name="Shell_Awake.Content" xml:space="preserve"> <value>Awake</value> <comment>Product name: Navigation view item name for Awake</comment> </data> <data name="Shell_PowerLauncher.Content" xml:space="preserve"> <value>PowerToys Run</value> <comment>Product name: Navigation view item name for PowerToys Run</comment> </data> <data name="Shell_PowerRename.Content" xml:space="preserve"> <value>PowerRename</value> <comment>Product name: Navigation view item name for PowerRename</comment> </data> <data name="Shell_ShortcutGuide.Content" xml:space="preserve"> <value>Shortcut Guide</value> <comment>Product name: Navigation view item name for Shortcut Guide</comment> </data> <data name="Shell_PowerPreview.Content" xml:space="preserve"> <value>File Explorer add-ons</value> <comment>Product name: Navigation view item name for File Explorer. Please use File Explorer as in the context of File Explorer in Windows</comment> </data> <data name="Shell_FancyZones.Content" xml:space="preserve"> <value>FancyZones</value> <comment>Product name: Navigation view item name for FancyZones</comment> </data> <data name="Shell_ImageResizer.Content" xml:space="preserve"> <value>Image Resizer</value> <comment>Product name: Navigation view item name for Image Resizer</comment> </data> <data name="Shell_ColorPicker.Content" xml:space="preserve"> <value>Color Picker</value> <comment>Product name: Navigation view item name for Color Picker</comment> </data> <data name="Shell_KeyboardManager.Content" xml:space="preserve"> <value>Keyboard Manager</value> <comment>Product name: Navigation view item name for Keyboard Manager</comment> </data> <data name="Shell_MouseWithoutBorders.Content" xml:space="preserve"> <value>Mouse Without Borders</value> <comment>Product name: Navigation view item name for Mouse Without Borders</comment> </data> <data name="Shell_MouseUtilities.Content" xml:space="preserve"> <value>Mouse utilities</value> <comment>Product name: Navigation view item name for Mouse utilities</comment> </data> <data name="Shell_NavigationMenu_Announce_Collapse" xml:space="preserve"> <value>Navigation closed</value> <comment>Accessibility announcement when the navigation pane collapses</comment> </data> <data name="Shell_NavigationMenu_Announce_Open" xml:space="preserve"> <value>Navigation opened</value> <comment>Accessibility announcement when the navigation pane opens</comment> </data> <data name="KeyboardManager_ConfigHeader.Text" xml:space="preserve"> <value>Current configuration</value> <comment>Keyboard Manager current configuration header</comment> </data> <data name="KeyboardManager.ModuleDescription" xml:space="preserve"> <value>Reconfigure your keyboard by remapping keys and shortcuts</value> <comment>Keyboard Manager page description</comment> </data> <data name="KeyboardManager_EnableToggle.Header" xml:space="preserve"> <value>Enable Keyboard Manager</value> <comment>Keyboard Manager enable toggle header. Do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="KeyboardManager_ProfileDescription.Text" xml:space="preserve"> <value>Select the profile to display the active key remap and shortcuts</value> <comment>Keyboard Manager configuration dropdown description</comment> </data> <data name="KeyboardManager_RemapKeyboardButton.Header" xml:space="preserve"> <value>Remap a key</value> <comment>Keyboard Manager remap keyboard button content</comment> </data> <data name="KeyboardManager_Keys.Header" xml:space="preserve"> <value>Keys</value> <comment>Keyboard Manager remap keyboard header</comment> </data> <data name="KeyboardManager_RemapShortcutsButton.Header" xml:space="preserve"> <value>Remap a shortcut</value> <comment>Keyboard Manager remap shortcuts button</comment> </data> <data name="KeyboardManager_Shortcuts.Header" xml:space="preserve"> <value>Shortcuts</value> <comment>Keyboard Manager remap keyboard header</comment> </data> <data name="KeyboardManager_All_Apps_Description" xml:space="preserve"> <value>All Apps</value> <comment>Should be the same as EditShortcuts_AllApps from keyboard manager editor</comment> </data> <data name="Shortcuts.Header" xml:space="preserve"> <value>Shortcuts</value> </data> <data name="Shortcut.Header" xml:space="preserve"> <value>Shortcut</value> </data> <data name="RemapKeysList.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Current Key Remappings</value> </data> <data name="RemapShortcutsList.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Current Shortcut Remappings</value> </data> <data name="KeyboardManager_RemappedKeysListItem.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Key Remapping</value> <comment>key as in keyboard key</comment> </data> <data name="KeyboardManager_RemappedShortcutsListItem.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Shortcut Remapping</value> </data> <data name="KeyboardManager_RemappedTo.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Remapped to</value> </data> <data name="KeyboardManager_ShortcutRemappedTo.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Remapped to</value> </data> <data name="KeyboardManager_TargetApp.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>For Target Application</value> <comment>What computer application would this be for</comment> </data> <data name="KeyboardManager_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Keyboard Manager</value> <comment>do not loc, product name</comment> </data> <data name="ColorPicker.ModuleDescription" xml:space="preserve"> <value>Quick and simple system-wide color picker.</value> </data> <data name="ColorPicker_EnableColorPicker.Header" xml:space="preserve"> <value>Enable Color Picker</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="ColorPicker_ChangeCursor.Content" xml:space="preserve"> <value>Change cursor when picking a color</value> </data> <data name="PowerLauncher.ModuleDescription" xml:space="preserve"> <value>A quick launcher that has additional capabilities without sacrificing performance.</value> </data> <data name="PowerLauncher_EnablePowerLauncher.Header" xml:space="preserve"> <value>Enable PowerToys Run</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="PowerLauncher_SearchResults.Header" xml:space="preserve"> <value>Search &amp; results</value> </data> <data name="PowerLauncher_SearchResultPreference.Header" xml:space="preserve"> <value>Search result preference</value> </data> <data name="PowerLauncher_UsePinyin.Header" xml:space="preserve"> <value>Use Pinyin</value> </data> <data name="PowerLauncher_UsePinyin.Description" xml:space="preserve"> <value>Experimental: Use Pinyin on the search query. May not work for every plugin.</value> </data> <data name="PowerLauncher_SearchResultPreference_MostRecentlyUsed" xml:space="preserve"> <value>Most recently used</value> </data> <data name="PowerLauncher_SearchResultPreference_AlphabeticalOrder" xml:space="preserve"> <value>Alphabetical order</value> </data> <data name="PowerLauncher_SearchResultPreference_RunningProcessesOpenApplications" xml:space="preserve"> <value>Running processes/open applications</value> </data> <data name="PowerLauncher_SearchTypePreference.Header" xml:space="preserve"> <value>Search type preference</value> </data> <data name="PowerLauncher_SearchTypePreference_ApplicationName" xml:space="preserve"> <value>Application name</value> </data> <data name="PowerLauncher_SearchTypePreference_StringInApplication" xml:space="preserve"> <value>A string that is contained in the application</value> </data> <data name="PowerLauncher_SearchTypePreference_ExecutableName" xml:space="preserve"> <value>Executable name</value> </data> <data name="PowerLauncher_MaximumNumberOfResults.Header" xml:space="preserve"> <value>Number of results shown before scrolling</value> </data> <data name="PowerLauncher_OpenPowerLauncher.Header" xml:space="preserve"> <value>Open PowerToys Run</value> </data> <data name="PowerLauncher_OpenFileLocation.Header" xml:space="preserve"> <value>Open file location</value> </data> <data name="PowerLauncher_CopyPathLocation.Header" xml:space="preserve"> <value>Copy path location</value> </data> <data name="PowerLauncher_OpenConsole.Header" xml:space="preserve"> <value>Open console</value> <comment>console refers to Windows command prompt</comment> </data> <data name="PowerLauncher_OverrideWinRKey.Content" xml:space="preserve"> <value>Override Win+R shortcut</value> </data> <data name="PowerLauncher_OverrideWinSKey.Content" xml:space="preserve"> <value>Override Win+S shortcut</value> </data> <data name="PowerLauncher_IgnoreHotkeysInFullScreen.Content" xml:space="preserve"> <value>Ignore shortcuts in fullscreen mode</value> </data> <data name="PowerLauncher_UseCentralizedKeyboardHook.Header" xml:space="preserve"> <value>Use centralized keyboard hook</value> </data> <data name="PowerLauncher_UseCentralizedKeyboardHook.Description" xml:space="preserve"> <value>Try this if there are issues with the shortcut (PowerToys Run might not get focus when triggered from an elevated window)</value> </data> <data name="PowerLauncher_ClearInputOnLaunch.Content" xml:space="preserve"> <value>Clear the previous query on launch</value> </data> <data name="PowerLauncher_TabSelectsContextButtons.Header" xml:space="preserve"> <value>Tab through context buttons</value> </data> <data name="PowerLauncher_TabSelectsContextButtons.Description" xml:space="preserve"> <value>Pressing tab will first select through the available context buttons of the current selection before moving onto the next result</value> </data> <data name="PowerLauncher_GenerateThumbnailsFromFiles.Header" xml:space="preserve"> <value>Generate thumbnails from files</value> </data> <data name="PowerLauncher_GenerateThumbnailsFromFiles.Description" xml:space="preserve"> <value>Results will try to generate thumbnails for files. Disabling this setting may increase stability and speed</value> </data> <data name="PowerLauncher_SearchQueryResultsWithDelay.Header" xml:space="preserve"> <value>Input Smoothing</value> <comment>This is about adding a delay to wait for more input before executing a search</comment> </data> <data name="PowerLauncher_SearchQueryResultsWithDelay.Description" xml:space="preserve"> <value>Wait for more input before searching. This reduces interface jumpiness and system load.</value> </data> <data name="PowerLauncher_FastSearchInputDelayMs.Header" xml:space="preserve"> <value>Immediate plugins</value> </data> <data name="PowerLauncher_FastSearchInputDelayMs.Description" xml:space="preserve"> <value>Affects the plugins that make the UI wait for their results by this amount. Recommended: 30-50 ms.</value> </data> <data name="PowerLauncher_SlowSearchInputDelayMs.Header" xml:space="preserve"> <value>Background execution plugins</value> </data> <data name="PowerLauncher_SlowSearchInputDelayMs.Description" xml:space="preserve"> <value>Affects the plugins that execute in the background by this amount. Recommended: 100-150 ms.</value> </data> <data name="PowerLauncher_SearchInputDelayMs.Header" xml:space="preserve"> <value>Fast plugin throttle (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="KeyboardManager_KeysMappingLayoutRightHeader.Text" xml:space="preserve"> <value>To:</value> <comment>Keyboard Manager mapping keys view right header</comment> </data> <data name="Appearance_GroupSettings.Text" xml:space="preserve"> <value>Appearance</value> </data> <data name="Fancyzones_ImageHyperlinkToDocs.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>FancyZones windows</value> <comment>do not loc the Product name</comment> </data> <data name="FancyZones.ModuleDescription" xml:space="preserve"> <value>Create window layouts to help make multi-tasking easy.</value> <comment>windows refers to application windows</comment> </data> <data name="FancyZones_DisplayOrWorkAreaChangeMoveWindowsCheckBoxControl.Content" xml:space="preserve"> <value>Keep windows in their zones when the screen resolution or work area changes</value> <comment>windows refers to application windows</comment> </data> <data name="FancyZones_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable FancyZones</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="FancyZones_ExcludeApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="FancyZones_ExcludeApps.Description" xml:space="preserve"> <value>Excludes an application from snapping to zones and will only react to Windows Snap - add one application name per line</value> </data> <data name="FancyZones_HighlightOpacity.Header" xml:space="preserve"> <value>Opacity (%)</value> </data> <data name="FancyZones_HotkeyEditorControl.Header" xml:space="preserve"> <value>Open layout editor</value> <comment>Shortcut to launch the FancyZones layout editor application</comment> </data> <data name="FancyZones_WindowSwitching_GroupSettings.Header" xml:space="preserve"> <value>Switch between windows in the current zone</value> </data> <data name="FancyZones_HotkeyNextTabControl.Header" xml:space="preserve"> <value>Next window</value> </data> <data name="FancyZones_HotkeyPrevTabControl.Header" xml:space="preserve"> <value>Previous window</value> </data> <data name="SettingsPage_SetShortcut.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Shortcut setting</value> </data> <data name="SettingsPage_SetShortcut_Glyph.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Information Symbol</value> </data> <data name="FancyZones_LaunchEditorButtonControl.Header" xml:space="preserve"> <value>Launch layout editor</value> <comment>launches the FancyZones layout editor application</comment> </data> <data name="FancyZones_LaunchEditorButtonControl.Description" xml:space="preserve"> <value>Set and manage your layouts</value> <comment>launches the FancyZones layout editor application</comment> </data> <data name="FancyZones_MakeDraggedWindowTransparentCheckBoxControl.Content" xml:space="preserve"> <value>Make dragged window transparent</value> </data> <data name="FancyZones_MouseDragCheckBoxControl_Header.Content" xml:space="preserve"> <value>Use a non-primary mouse button to toggle zone activation</value> </data> <data name="FancyZones_MouseMiddleClickSpanningMultipleZonesCheckBoxControl_Header.Content" xml:space="preserve"> <value>Use middle-click mouse button to toggle multiple zones spanning</value> </data> <data name="FancyZones_MoveWindowsAcrossAllMonitorsCheckBoxControl.Content" xml:space="preserve"> <value>Move windows between zones across all monitors</value> </data> <data name="FancyZones_OverrideSnapHotkeys.Header" xml:space="preserve"> <value>Override Windows Snap</value> </data> <data name="FancyZones_OverrideSnapHotkeys.Description" xml:space="preserve"> <value>This overrides the Windows Snap shortcut (Win + arrow) to move windows between zones</value> </data> <data name="FancyZones_ShiftDragCheckBoxControl_Header.Content" xml:space="preserve"> <value>Hold Shift key to activate zones while dragging a window</value> </data> <data name="FancyZones_ActivationNoShiftDrag" xml:space="preserve"> <value>Drag windows to activate zones</value> </data> <data name="FancyZones_ShowZonesOnAllMonitorsCheckBoxControl.Content" xml:space="preserve"> <value>Show zones on all monitors while dragging a window</value> </data> <data name="FancyZones_AppLastZoneMoveWindows.Content" xml:space="preserve"> <value>Move newly created windows to their last known zone</value> <comment>windows refers to application windows</comment> </data> <data name="FancyZones_OpenWindowOnActiveMonitor.Content" xml:space="preserve"> <value>Move newly created windows to the current active monitor (Experimental)</value> </data> <data name="FancyZones_UseCursorPosEditorStartupScreen.Header" xml:space="preserve"> <value>Launch editor on the display</value> </data> <data name="FancyZones_UseCursorPosEditorStartupScreen.Description" xml:space="preserve"> <value>When using multiple displays</value> </data> <data name="FancyZones_LaunchPositionMouse.Content" xml:space="preserve"> <value>Where the mouse pointer is</value> </data> <data name="FancyZones_LaunchPositionScreen.Content" xml:space="preserve"> <value>With active focus</value> </data> <data name="FancyZones_ZoneBehavior_GroupSettings.Header" xml:space="preserve"> <value>Zone behavior</value> </data> <data name="FancyZones_ZoneBehavior_GroupSettings.Description" xml:space="preserve"> <value>Manage how zones behave when using FancyZones</value> </data> <data name="FancyZones_Zones.Header" xml:space="preserve"> <value>Zones</value> </data> <data name="FancyZones_ZoneHighlightColor.Header" xml:space="preserve"> <value>Highlight color</value> </data> <data name="FancyZones_ZoneSetChangeMoveWindows.Content" xml:space="preserve"> <value>During zone layout changes, windows assigned to a zone will match new size/positions</value> </data> <data name="AttributionTitle.Text" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="General.ModuleTitle" xml:space="preserve"> <value>General</value> </data> <data name="GeneralPage_CheckForUpdates.Content" xml:space="preserve"> <value>Check for updates</value> </data> <data name="General_SettingsBackupAndRestoreLocationText.Header" xml:space="preserve"> <value>Location</value> </data> <data name="General_SettingsBackupAndRestore_ButtonBackup.Content" xml:space="preserve"> <value>Backup</value> </data> <data name="General_SettingsBackupInfo_FileNameHeader.Text" xml:space="preserve"> <value>File name:</value> </data> <data name="General_SettingsBackupAndRestore_LinkRefresh.Text" xml:space="preserve"> <value>Refresh</value> </data> <data name="General_SettingsBackupAndRestore_ButtonRestore.Content" xml:space="preserve"> <value>Restore</value> </data> <data name="General_SettingsBackupAndRestore_ButtonSelectLocation.Text" xml:space="preserve"> <value>Select folder</value> </data> <data name="GeneralPage_UpdateNow.Content" xml:space="preserve"> <value>Update now</value> </data> <data name="GeneralPage_PrivacyStatement_URL.Text" xml:space="preserve"> <value>Privacy statement</value> </data> <data name="GeneralPage_ReportAbug.Text" xml:space="preserve"> <value>Report a bug</value> <comment>Report an issue inside powertoys</comment> </data> <data name="GeneralPage_RequestAFeature_URL.Text" xml:space="preserve"> <value>Request a feature</value> <comment>Tell our team what we should build</comment> </data> <data name="GeneralPage_RestartAsAdmin_Button.Content" xml:space="preserve"> <value>Restart PowerToys as administrator</value> <comment>running PowerToys as a higher level user, account is typically referred to as an admin / administrator</comment> </data> <data name="GeneralPage_RunAtStartUp.Header" xml:space="preserve"> <value>Run at startup</value> </data> <data name="GeneralPage_RunAtStartUp.Description" xml:space="preserve"> <value>PowerToys will launch automatically</value> </data> <data name="PowerRename.ModuleDescription" xml:space="preserve"> <value>A Windows Shell extension for more advanced bulk renaming using search &amp; replace or regular expressions.</value> </data> <data name="PowerRename_ShellIntegration.Header" xml:space="preserve"> <value>Shell integration</value> <comment>This refers to directly integrating in with Windows</comment> </data> <data name="PowerRename_Toggle_Enable.Header" xml:space="preserve"> <value>Enable PowerRename</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="RadioButtons_Name_Theme.Text" xml:space="preserve"> <value>Settings theme</value> </data> <data name="PowerRename_Toggle_HideIcon.Content" xml:space="preserve"> <value>Hide icon in context menu</value> </data> <data name="PowerRename_Toggle_ContextMenu.Header" xml:space="preserve"> <value>Show PowerRename in</value> </data> <data name="PowerRename_Toggle_StandardContextMenu.Content" xml:space="preserve"> <value>Default and extended context menu</value> </data> <data name="PowerRename_Toggle_ExtendedContextMenu.Content" xml:space="preserve"> <value>Extended context menu only</value> </data> <data name="ExtendedContextMenuInfo.Title" xml:space="preserve"> <value>Press Shift + right-click on files to open the extended context menu</value> </data> <data name="PowerRename_Toggle_MaxDispListNum.Header" xml:space="preserve"> <value>Maximum number of items</value> </data> <data name="PowerRename_Toggle_RestoreFlagsOnLaunch.Header" xml:space="preserve"> <value>Show recently used strings</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_MD.Header" xml:space="preserve"> <value>Markdown</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_MD.Description" xml:space="preserve"> <value>.md, .markdown, .mdown, .mkdn, .mkd, .mdwn, .mdtxt, .mdtext</value> <comment>File extensions, should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_Monaco.Header" xml:space="preserve"> <value>Source code files (Monaco)</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_Monaco.Description" xml:space="preserve"> <value>.cpp, .py, .json, .xml, .csproj, ...</value> <comment>File extensions should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_SVG.Header" xml:space="preserve"> <value>Scalable Vector Graphics</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_SVG.Description" xml:space="preserve"> <value>.svg</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_Preview_SVG_Color_Mode.Header" xml:space="preserve"> <value>Color mode</value> </data> <data name="FileExplorerPreview_Preview_SVG_Color_Mode_Default.Content" xml:space="preserve"> <value>Windows default</value> </data> <data name="FileExplorerPreview_Preview_SVG_Color_Solid_Color.Content" xml:space="preserve"> <value>Solid color</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade.Content" xml:space="preserve"> <value>Checkered pattern</value> </data> <data name="FileExplorerPreview_Preview_SVG_Background_Color.Header" xml:space="preserve"> <value>Color</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_Mode.Header" xml:space="preserve"> <value>Checkered shade</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_1.Content" xml:space="preserve"> <value>Light</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_2.Content" xml:space="preserve"> <value>Medium</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_3.Content" xml:space="preserve"> <value>Dark</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_PDF.Header" xml:space="preserve"> <value>Portable Document Format</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_PDF.Description" xml:space="preserve"> <value>.pdf</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_SVG.Header" xml:space="preserve"> <value>Scalable Vector Graphics</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_SVG.Description" xml:space="preserve"> <value>.svg</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_STL.Header" xml:space="preserve"> <value>Stereolithography</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_STL.Description" xml:space="preserve"> <value>.stl</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_Color_Thumbnail_STL.Header" xml:space="preserve"> <value>Color</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_PDF.Header" xml:space="preserve"> <value>Portable Document Format</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_PDF.Description" xml:space="preserve"> <value>.pdf</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview.ModuleDescription" xml:space="preserve"> <value>These settings allow you to manage your Windows File Explorer custom preview handlers.</value> </data> <data name="PowerRename_AutoCompleteHeader.Header" xml:space="preserve"> <value>Auto-complete</value> </data> <data name="OpenSource_Notice.Text" xml:space="preserve"> <value>Open-source notice</value> </data> <data name="PowerRename_Toggle_AutoComplete.Header" xml:space="preserve"> <value>Enable auto-complete for the search &amp; replace fields</value> </data> <data name="FancyZones_BorderColor.Header" xml:space="preserve"> <value>Border color</value> </data> <data name="FancyZones_InActiveColor.Header" xml:space="preserve"> <value>Inactive color</value> </data> <data name="ShortcutGuide.ModuleDescription" xml:space="preserve"> <value>Shows a help overlay with Windows shortcuts.</value> </data> <data name="ShortcutGuide_PressTimeForGlobalWindowsShortcuts.Header" xml:space="preserve"> <value>Press duration before showing global Windows shortcuts (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="ShortcutGuide_ActivationMethod.Header" xml:space="preserve"> <value>Activation method</value> </data> <data name="ShortcutGuide_ActivationMethod.Description" xml:space="preserve"> <value>Use a shortcut or press the Windows key for some time to activate</value> </data> <data name="Radio_ShortcutGuide_ActivationMethod_CustomizedShortcut.Content" xml:space="preserve"> <value>Custom shortcut</value> </data> <data name="Radio_ShortcutGuide_ActivationMethod_LongPressWindowsKey.Content" xml:space="preserve"> <value>Hold down Windows key</value> </data> <data name="ShortcutGuide_PressWinKeyWarning.Title" xml:space="preserve"> <value>In some edge cases Shortcut Guide might not function correctly when using this activation method</value> </data> <data name="Appearance_Behavior.Header" xml:space="preserve"> <value>Appearance &amp; behavior</value> </data> <data name="General_SettingsBackupAndRestoreTitle.Header" xml:space="preserve"> <value>Backup &amp; restore</value> </data> <data name="General_SettingsBackupAndRestore.Header" xml:space="preserve"> <value>Backup and restore your settings</value> </data> <data name="General_SettingsBackupAndRestore.Description" xml:space="preserve"> <value>PowerToys will restart automatically if needed</value> </data> <data name="ShortcutGuide_Enable.Header" xml:space="preserve"> <value>Enable Shortcut Guide</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="ShortcutGuide_OverlayOpacity.Header" xml:space="preserve"> <value>Background opacity (%)</value> </data> <data name="ShortcutGuide_DisabledApps.Header" xml:space="preserve"> <value>Exclude apps</value> </data> <data name="ShortcutGuide_DisabledApps.Description" xml:space="preserve"> <value>Turns off Shortcut Guide when these applications have focus - add one application name per line</value> </data> <data name="ShortcutGuide_DisabledApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> <comment>Don't translate outlook.exe</comment> </data> <data name="ImageResizer_CustomSizes.Header" xml:space="preserve"> <value>Image sizes</value> </data> <data name="ImageResizer_Presets.Header" xml:space="preserve"> <value>Presets</value> </data> <data name="ImageResizer_Presets.Description" xml:space="preserve"> <value>Manage preset sizes that can be used in the editor</value> </data> <data name="ImageResizer_FilenameFormatHeader.Description" xml:space="preserve"> <value>This format is used as the filename for resized images</value> </data> <data name="ImageResizer.ModuleDescription" xml:space="preserve"> <value>Lets you resize images by right-clicking.</value> </data> <data name="ImageResizer_EnableToggle.Header" xml:space="preserve"> <value>Enable Image Resizer</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="ImagesSizesListView.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Image Size</value> </data> <data name="ImageResizer_Configurations.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Configurations</value> </data> <data name="ImageResizer_Name.Header" xml:space="preserve"> <value>Name</value> </data> <data name="ImageResizer_Fit.Header" xml:space="preserve"> <value>Fit</value> </data> <data name="ImageResizer_Width.Header" xml:space="preserve"> <value>Width</value> </data> <data name="ImageResizer_Height.Header" xml:space="preserve"> <value>Height</value> </data> <data name="ImageResizer_Size.Header" xml:space="preserve"> <value>Unit</value> </data> <data name="RemoveButton.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Remove</value> <comment>Removes a user defined setting group for Image Resizer</comment> </data> <data name="RemoveItem.Text" xml:space="preserve"> <value>Delete</value> </data> <data name="ImageResizer_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Image Resizer</value> </data> <data name="ImageResizer_AddSizeButton.Content" xml:space="preserve"> <value>Add new size</value> </data> <data name="ImageResizer_SaveSizeButton.Label" xml:space="preserve"> <value>Save sizes</value> </data> <data name="ImageResizer_Encoding.Header" xml:space="preserve"> <value>JPEG quality level (%)</value> </data> <data name="ImageResizer_PNGInterlacing.Header" xml:space="preserve"> <value>PNG interlacing</value> </data> <data name="ImageResizer_TIFFCompression.Header" xml:space="preserve"> <value>TIFF compression</value> </data> <data name="File.Header" xml:space="preserve"> <value>File</value> <comment>as in a computer file</comment> </data> <data name="Default.Content" xml:space="preserve"> <value>Default</value> </data> <data name="ImageResizer_ENCODER_TIFF_CCITT3.Content" xml:space="preserve"> <value>CCITT3</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_CCITT4.Content" xml:space="preserve"> <value>CCITT4</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_Default.Content" xml:space="preserve"> <value>Default</value> </data> <data name="ImageResizer_ENCODER_TIFF_LZW.Content" xml:space="preserve"> <value>LZW</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_None.Content" xml:space="preserve"> <value>None</value> </data> <data name="ImageResizer_ENCODER_TIFF_RLE.Content" xml:space="preserve"> <value>RLE</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_Zip.Content" xml:space="preserve"> <value>Zip</value> <comment>do not loc</comment> </data> <data name="ImageResizer_FallbackEncoder_BMP.Content" xml:space="preserve"> <value>BMP encoder</value> </data> <data name="ImageResizer_FallbackEncoder_GIF.Content" xml:space="preserve"> <value>GIF encoder</value> </data> <data name="ImageResizer_FallbackEncoder_JPEG.Content" xml:space="preserve"> <value>JPEG encoder</value> </data> <data name="ImageResizer_FallbackEncoder_PNG.Content" xml:space="preserve"> <value>PNG encoder</value> </data> <data name="ImageResizer_FallbackEncoder_TIFF.Content" xml:space="preserve"> <value>TIFF encoder</value> </data> <data name="ImageResizer_FallbackEncoder_WMPhoto.Content" xml:space="preserve"> <value>WMPhoto encoder</value> </data> <data name="ImageResizer_Sizes_Fit_Fill.Content" xml:space="preserve"> <value>Fill</value> <comment>Refers to filling an image into a certain size. It could overflow</comment> </data> <data name="ImageResizer_Sizes_Fit_Fill_ThirdPersonSingular.Text" xml:space="preserve"> <value>Fill</value> <comment>Refers to filling an image into a certain size. It could overflow</comment> </data> <data name="ImageResizer_Sizes_Fit_Fit.Content" xml:space="preserve"> <value>Fit</value> <comment>Refers to fitting an image into a certain size. It won't overflow</comment> </data> <data name="ImageResizer_Sizes_Fit_Stretch.Content" xml:space="preserve"> <value>Stretch</value> <comment>Refers to stretching an image into a certain size. Won't overflow but could distort.</comment> </data> <data name="ImageResizer_Sizes_Units_CM.Content" xml:space="preserve"> <value>Centimeters</value> </data> <data name="ImageResizer_Sizes_Units_Inches.Content" xml:space="preserve"> <value>Inches</value> </data> <data name="ImageResizer_Sizes_Units_Percent.Content" xml:space="preserve"> <value>Percent</value> </data> <data name="ImageResizer_Sizes_Units_Pixels.Content" xml:space="preserve"> <value>Pixels</value> </data> <data name="Off.Content" xml:space="preserve"> <value>Off</value> </data> <data name="On.Content" xml:space="preserve"> <value>On</value> </data> <data name="GeneralPage_ToggleSwitch_AlwaysRunElevated_Link.Content" xml:space="preserve"> <value>Learn more about administrator mode</value> </data> <data name="GeneralPage_ToggleSwitch_AutoDownloadUpdates.Header" xml:space="preserve"> <value>Download updates automatically</value> </data> <data name="GeneralPage_ToggleSwitch_AutoDownloadUpdates.Description" xml:space="preserve"> <value>Except on metered connections</value> </data> <data name="GeneralPage_ToggleSwitch_RunningAsAdminNote.Text" xml:space="preserve"> <value>Currently running as administrator</value> </data> <data name="GeneralSettings_AlwaysRunAsAdminText.Header" xml:space="preserve"> <value>Always run as administrator</value> </data> <data name="GeneralSettings_AlwaysRunAsAdminText.Description" xml:space="preserve"> <value>You need to run as administrator to use this setting</value> </data> <data name="GeneralSettings_RunningAsUserText" xml:space="preserve"> <value>Running as user</value> </data> <data name="GeneralSettings_RunningAsAdminText" xml:space="preserve"> <value>Running as administrator</value> </data> <data name="FancyZones.ModuleTitle" xml:space="preserve"> <value>FancyZones</value> </data> <data name="FileExplorerPreview.ModuleTitle" xml:space="preserve"> <value>File Explorer</value> </data> <data name="FileExplorerPreview_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>File Explorer</value> <comment>Use same translation as Windows does for File Explorer</comment> </data> <data name="ImageResizer.ModuleTitle" xml:space="preserve"> <value>Image Resizer</value> </data> <data name="KeyboardManager.ModuleTitle" xml:space="preserve"> <value>Keyboard Manager</value> </data> <data name="ColorPicker.ModuleTitle" xml:space="preserve"> <value>Color Picker</value> </data> <data name="PowerLauncher.ModuleTitle" xml:space="preserve"> <value>PowerToys Run</value> </data> <data name="PowerToys_Run_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>PowerToys Run</value> </data> <data name="PowerRename.ModuleTitle" xml:space="preserve"> <value>PowerRename</value> <comment>do not loc the product name</comment> </data> <data name="PowerRename_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>PowerRename</value> <comment>do not loc</comment> </data> <data name="ShortcutGuide.ModuleTitle" xml:space="preserve"> <value>Shortcut Guide</value> </data> <data name="Shortcut_Guide_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Shortcut Guide</value> </data> <data name="General_Repository.Text" xml:space="preserve"> <value>GitHub repository</value> </data> <data name="General_Version.Header" xml:space="preserve"> <value>Version</value> </data> <data name="General_VersionLastChecked.Text" xml:space="preserve"> <value>Last checked: </value> </data> <data name="General_SettingsBackupInfo_DateHeader.Text" xml:space="preserve"> <value>Created at:</value> </data> <data name="General_SettingsBackupAndRestoreStatusInfo.Header" xml:space="preserve"> <value>Backup information</value> </data> <data name="General_SettingsBackupInfo_SourceHeader.Text" xml:space="preserve"> <value>Source machine:</value> </data> <data name="General_SettingsBackupInfo_StatusHeader.Text" xml:space="preserve"> <value>Status:</value> </data> <data name="General_Version.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Version</value> </data> <data name="Admin_mode.Header" xml:space="preserve"> <value>Administrator mode</value> </data> <data name="FancyZones_RestoreSize.Content" xml:space="preserve"> <value>Restore the original size of windows when unsnapping</value> </data> <data name="ImageResizer_FallBackEncoderText.Header" xml:space="preserve"> <value>Fallback encoder</value> </data> <data name="ImageResizer_FileFormatDescription.Text" xml:space="preserve"> <value>The following parameters can be used:</value> </data> <data name="ImageResizer_FilenameFormatHeader.Header" xml:space="preserve"> <value>Filename format</value> </data> <data name="ImageResizer_FileModifiedDate.Header" xml:space="preserve"> <value>File modified timestamp</value> </data> <data name="ImageResizer_FileModifiedDate.Description" xml:space="preserve"> <value>Used as the 'modified timestamp' in the file properties</value> </data> <data name="ImageResizer_UseOriginalDate.Content" xml:space="preserve"> <value>Original file timestamp</value> </data> <data name="ImageResizer_UseResizeDate.Content" xml:space="preserve"> <value>Timestamp of resize action</value> </data> <data name="Encoding.Header" xml:space="preserve"> <value>Encoding</value> </data> <data name="KeyboardManager_RemapKeyboardButton.Description" xml:space="preserve"> <value>Remap keys to other keys or shortcuts</value> </data> <data name="KeyboardManager_RemapShortcutsButton.Description" xml:space="preserve"> <value>Remap shortcuts to other shortcuts or keys for all or specific applications</value> </data> <data name="General.ModuleDescription" xml:space="preserve"> <value>Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. Made with 💗 by Microsoft and the PowerToys community.</value> <comment>Windows refers to the OS</comment> </data> <data name="FancyZones_SpanZonesAcrossMonitors.Header" xml:space="preserve"> <value>Allow zones to span across monitors</value> </data> <data name="ImageResizer_Formatting_ActualHeight.Text" xml:space="preserve"> <value>Actual height</value> </data> <data name="ImageResizer_Formatting_ActualWidth.Text" xml:space="preserve"> <value>Actual width</value> </data> <data name="ImageResizer_Formatting_Filename.Text" xml:space="preserve"> <value>Original filename</value> </data> <data name="ImageResizer_Formatting_SelectedHeight.Text" xml:space="preserve"> <value>Selected height</value> </data> <data name="ImageResizer_Formatting_SelectedWidth.Text" xml:space="preserve"> <value>Selected width</value> </data> <data name="ImageResizer_Formatting_Sizename.Text" xml:space="preserve"> <value>Size name</value> </data> <data name="FancyZones_MoveWindowsBasedOnPositionCheckBoxControl.Content" xml:space="preserve"> <value>Move windows based on their position</value> <comment>Windows refers to application windows</comment> </data> <data name="GeneralSettings_NewVersionIsAvailable" xml:space="preserve"> <value>New update available</value> </data> <data name="GeneralSettings_VersionIsLatest" xml:space="preserve"> <value>PowerToys is up to date.</value> </data> <data name="FileExplorerPreview_IconThumbnail_GroupSettings.Header" xml:space="preserve"> <value>Thumbnail icon Preview</value> </data> <data name="FileExplorerPreview_IconThumbnail_GroupSettings.Description" xml:space="preserve"> <value>Select the file types for which thumbnail previews must be rendered.</value> </data> <data name="FileExplorerPreview_PreviewPane.Header" xml:space="preserve"> <value>Preview Pane</value> </data> <data name="FileExplorerPreview_PreviewPane.Description" xml:space="preserve"> <value>Select the file types which must be rendered in the Preview Pane. Ensure that Preview Pane is open by toggling the view with Alt + P in File Explorer.</value> <comment>Preview Pane and File Explorer are app/feature names in Windows. 'Alt + P' is a shortcut</comment> </data> <data name="FileExplorerPreview_RunAsAdminRequired.Title" xml:space="preserve"> <value>You need to run as administrator to modify these settings.</value> </data> <data name="FileExplorerPreview_RebootRequired.Title" xml:space="preserve"> <value>A reboot may be required for changes to these settings to take effect</value> </data> <data name="FileExplorerPreview_PreviewHandlerOutlookIncompatibility.Title" xml:space="preserve"> <value>Enabling the preview handlers will override other preview handlers already installed - there have been reports of incompatibility between Outlook and the PDF Preview Handler.</value> <comment>Outlook is the name of a Microsoft product</comment> </data> <data name="FileExplorerPreview_ThumbnailsMightNotAppearOnRemoteFolders.Title" xml:space="preserve"> <value>Thumbnails might not appear on paths managed by cloud storage solutions like OneDrive, since these solutions may get their thumbnails from the cloud instead of generating them locally.</value> <comment>OneDrive is the name of a Microsoft product</comment> </data> <data name="FancyZones_ExcludeApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> <comment>Don't translate outlook.exe</comment> </data> <data name="ImageResizer_FilenameFormatPlaceholder.PlaceholderText" xml:space="preserve"> <value>Example: %1 (%2)</value> </data> <data name="ImageResizer_FilenameParameters.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Filename parameters</value> </data> <data name="Radio_Theme_Dark.Content" xml:space="preserve"> <value>Dark</value> <comment>Dark refers to color, not weight</comment> </data> <data name="Radio_Theme_Light.Content" xml:space="preserve"> <value>Light</value> <comment>Light refers to color, not weight</comment> </data> <data name="Radio_Theme_Default.Content" xml:space="preserve"> <value>Windows default</value> <comment>Windows refers to the Operating system</comment> </data> <data name="Windows_Color_Settings.Content" xml:space="preserve"> <value>Windows color settings</value> <comment>Windows refers to the Operating system</comment> </data> <data name="ColorPicker_CopiedColorRepresentation.Header" xml:space="preserve"> <value>Default color format</value> </data> <data name="ColorPickerFirst.Content" xml:space="preserve"> <value>Pick a color and open editor</value> </data> <data name="EditorFirst.Content" xml:space="preserve"> <value>Open editor</value> </data> <data name="ColorPickerOnly.Content" xml:space="preserve"> <value>Only pick a color</value> </data> <data name="ColorPicker_ActivationAction.Header" xml:space="preserve"> <value>Activation behavior</value> </data> <data name="ColorFormats.Header" xml:space="preserve"> <value>Picker behavior</value> </data> <data name="ColorPicker_CopiedColorRepresentation.Description" xml:space="preserve"> <value>This format will be copied to your clipboard</value> </data> <data name="KBM_KeysCannotBeRemapped.Text" xml:space="preserve"> <value>Learn more about remapping limitations</value> <comment>This is a link that will discuss what is and is not possible for Keyboard manager to remap</comment> </data> <data name="FancyZones_Editor_GroupSettings.Header" xml:space="preserve"> <value>Editor</value> <comment>refers to the FancyZone editor</comment> </data> <data name="FancyZones_WindowBehavior_GroupSettings.Header" xml:space="preserve"> <value>Window behavior</value> </data> <data name="FancyZones_WindowBehavior_GroupSettings.Description" xml:space="preserve"> <value>Manage how windows behave when using FancyZones</value> </data> <data name="FancyZones_Windows.Header" xml:space="preserve"> <value>Windows</value> <comment>Do translate: refers to a set of application windows, not the product name</comment> </data> <data name="PowerRename_BehaviorHeader.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="PowerRename_Toggle_UseBoostLib.Header" xml:space="preserve"> <value>Use Boost library</value> <comment>Boost is a product name, should not be translated</comment> </data> <data name="PowerRename_Toggle_UseBoostLib.Description" xml:space="preserve"> <value>Provides extended features but may use different regex syntax</value> <comment>Boost is a product name, should not be translated</comment> </data> <data name="MadeWithOssLove.Text" xml:space="preserve"> <value>Made with 💗 by Microsoft and the PowerToys community.</value> </data> <data name="ColorPicker_ColorFormats.Header" xml:space="preserve"> <value>Color formats</value> </data> <data name="ColorPicker_ColorFormats.Description" xml:space="preserve"> <value>Configure the color formats (edit, delete, hide, reorder them)</value> </data> <data name="MoveUp.Text" xml:space="preserve"> <value>Move up</value> </data> <data name="MoveDown.Text" xml:space="preserve"> <value>Move down</value> </data> <data name="ColorPickerAddNewFormat.Content" xml:space="preserve"> <value>Add new format</value> </data> <data name="NewColorFormat.Header" xml:space="preserve"> <value>Format</value> </data> <data name="NewColorName.Header" xml:space="preserve"> <value>Name</value> </data> <data name="AddCustomColorFormat" xml:space="preserve"> <value>Add custom color format</value> </data> <data name="ColorFormatSave" xml:space="preserve"> <value>Save</value> </data> <data name="EditCustomColorFormat" xml:space="preserve"> <value>Edit custom color format</value> </data> <data name="ColorFormatUpdate" xml:space="preserve"> <value>Update</value> </data> <data name="CustomColorFormatDefaultName" xml:space="preserve"> <value>My Format</value> </data> <data name="ColorFormatDialog.SecondaryButtonText" xml:space="preserve"> <value>Cancel</value> </data> <data name="ColorFormatEditorHelpline1.Text" xml:space="preserve"> <value>The following parameters can be used:</value> </data> <data name="Help_red" xml:space="preserve"> <value>red</value> </data> <data name="Help_green" xml:space="preserve"> <value>green</value> </data> <data name="Help_blue" xml:space="preserve"> <value>blue</value> </data> <data name="Help_alpha" xml:space="preserve"> <value>alpha</value> </data> <data name="Help_cyan" xml:space="preserve"> <value>cyan</value> </data> <data name="Help_magenta" xml:space="preserve"> <value>magenta</value> </data> <data name="Help_yellow" xml:space="preserve"> <value>yellow</value> </data> <data name="Help_black_key" xml:space="preserve"> <value>black key</value> </data> <data name="Help_hue" xml:space="preserve"> <value>hue</value> </data> <data name="Help_hueNat" xml:space="preserve"> <value>hue (natural)</value> </data> <data name="Help_saturationI" xml:space="preserve"> <value>saturation (HSI)</value> </data> <data name="Help_saturationL" xml:space="preserve"> <value>saturation (HSL)</value> </data> <data name="Help_saturationB" xml:space="preserve"> <value>saturation (HSB)</value> </data> <data name="Help_brightness" xml:space="preserve"> <value>brightness</value> </data> <data name="Help_intensity" xml:space="preserve"> <value>intensity</value> </data> <data name="Help_lightnessNat" xml:space="preserve"> <value>lightness (nat)</value> </data> <data name="Help_lightnessCIE" xml:space="preserve"> <value>lightness (CIE)</value> </data> <data name="Help_value" xml:space="preserve"> <value>value</value> </data> <data name="Help_whiteness" xml:space="preserve"> <value>whiteness</value> </data> <data name="Help_blackness" xml:space="preserve"> <value>blackness</value> </data> <data name="Help_chromaticityA" xml:space="preserve"> <value>chromaticityA</value> </data> <data name="Help_chromaticityB" xml:space="preserve"> <value>chromaticityB</value> </data> <data name="Help_X_value" xml:space="preserve"> <value>X value</value> </data> <data name="Help_Y_value" xml:space="preserve"> <value>Y value</value> </data> <data name="Help_Z_value" xml:space="preserve"> <value>Z value</value> </data> <data name="Help_decimal_value_RGB" xml:space="preserve"> <value>decimal value (RGB)</value> </data> <data name="Help_decimal_value_BGR" xml:space="preserve"> <value>decimal value (BGR)</value> </data> <data name="Help_color_name" xml:space="preserve"> <value>color name</value> </data> <data name="ColorFormatEditorHelpline2.Text" xml:space="preserve"> <value>The red, green, blue and alpha values can be formatted to the following formats:</value> </data> <data name="Help_byte" xml:space="preserve"> <value>byte value (default)</value> </data> <data name="Help_hexL1" xml:space="preserve"> <value>hex lowercase one digit</value> </data> <data name="Help_hexU1" xml:space="preserve"> <value>hex uppercase one digit</value> </data> <data name="Help_hexL2" xml:space="preserve"> <value>hex lowercase two digits</value> </data> <data name="Help_hexU2" xml:space="preserve"> <value>hex uppercase two digits</value> </data> <data name="Help_floatWith" xml:space="preserve"> <value>float with leading zero</value> </data> <data name="Help_floatWithout" xml:space="preserve"> <value>float without leading zero</value> </data> <data name="ColorFormatEditorHelpline3.Text" xml:space="preserve"> <value>Example: %ReX means red value in hex uppercase two digits format.</value> </data> <data name="ColorPicker_ShowColorName.Header" xml:space="preserve"> <value>Show color name</value> </data> <data name="ColorPicker_ShowColorName.Description" xml:space="preserve"> <value>This will show the name of the color when picking a color</value> </data> <data name="ImageResizer_DefaultSize_Large" xml:space="preserve"> <value>Large</value> <comment>The size of the image</comment> </data> <data name="ImageResizer_DefaultSize_Medium" xml:space="preserve"> <value>Medium</value> <comment>The size of the image</comment> </data> <data name="ImageResizer_DefaultSize_Phone" xml:space="preserve"> <value>Phone</value> <comment>The size of the image referring to a Mobile Phone typical image size</comment> </data> <data name="ImageResizer_DefaultSize_Small" xml:space="preserve"> <value>Small</value> <comment>The size of the image</comment> </data> <data name="FancyZones_MoveWindowBasedOnRelativePosition_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Windows key + Up, down, left or right arrow key to move windows based on relative position</value> </data> <data name="FancyZones_MoveWindowLeftRightBasedOnZoneIndex_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Windows key + Left or right arrow keys to move windows based on zone index</value> </data> <data name="FancyZones_MoveWindowBasedOnRelativePosition_Description.Text" xml:space="preserve"> <value>Windows key +    or </value> <comment>Do not loc the icons (hex numbers)</comment> </data> <data name="FancyZones_MoveWindowLeftRightBasedOnZoneIndex_Description.Text" xml:space="preserve"> <value>Windows key +  or </value> <comment>Do not loc the icons (hex numbers)</comment> </data> <data name="FancyZones_MoveWindowBasedOnRelativePosition.Text" xml:space="preserve"> <value>Relative position</value> </data> <data name="FancyZones_MoveWindow.Header" xml:space="preserve"> <value>Move windows based on</value> </data> <data name="FancyZones_MoveWindowLeftRightBasedOnZoneIndex.Text" xml:space="preserve"> <value>Zone index</value> </data> <data name="ColorPicker_Editor.Header" xml:space="preserve"> <value>Color formats</value> </data> <data name="FancyZones_OverlappingZonesClosestCenter.Content" xml:space="preserve"> <value>Activate the zone whose center is closest to the cursor</value> </data> <data name="FancyZones_OverlappingZonesLargest.Content" xml:space="preserve"> <value>Activate the largest zone by area</value> </data> <data name="FancyZones_OverlappingZonesPositional.Content" xml:space="preserve"> <value>Split the overlapped area into multiple activation targets</value> </data> <data name="FancyZones_OverlappingZonesSmallest.Content" xml:space="preserve"> <value>Activate the smallest zone by area</value> </data> <data name="FancyZones_OverlappingZones.Header" xml:space="preserve"> <value>When multiple zones overlap</value> </data> <data name="PowerLauncher_Plugins.Header" xml:space="preserve"> <value>Plugins</value> </data> <data name="PowerLauncher_ActionKeyword.Header" xml:space="preserve"> <value>Direct activation command</value> </data> <data name="PowerLauncher_AuthoredBy.Text" xml:space="preserve"> <value>Authored by</value> <comment>example: Authored by Microsoft</comment> </data> <data name="PowerLauncher_IncludeInGlobalResultTitle.Text" xml:space="preserve"> <value>Include in global result</value> </data> <data name="PowerLauncher_IncludeInGlobalResultDescription.Text" xml:space="preserve"> <value>Show results on queries without direct activation command</value> </data> <data name="PowerLauncher_EnablePluginToggle.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Enable plugin</value> </data> <data name="PowerLauncher_EnablePluginToggle.OnContent" xml:space="preserve"> <value>On</value> </data> <data name="PowerLauncher_EnablePluginToggle.OffContent" xml:space="preserve"> <value>Off</value> </data> <data name="Run_AdditionalOptions.Text" xml:space="preserve"> <value>Additional options</value> </data> <data name="Run_NotAccessibleWarning.Title" xml:space="preserve"> <value>Please define an activation command or allow this plugin to be used in the global results.</value> </data> <data name="Run_AllPluginsDisabled.Title" xml:space="preserve"> <value>PowerToys Run can't provide any results without plugins</value> </data> <data name="Run_AllPluginsDisabled.Message" xml:space="preserve"> <value>Enable at least one plugin to get started</value> </data> <data name="Run_PluginUse.Header" xml:space="preserve"> <value>Plugins</value> </data> <data name="Run_PluginUseDescription.Text" xml:space="preserve"> <value>Include or remove plugins from the global results, change the direct activation phrase and configure additional options</value> </data> <data name="Run_PositionAppearance_GroupSettings.Header" xml:space="preserve"> <value>Position &amp; appearance</value> </data> <data name="Run_PositionHeader.Header" xml:space="preserve"> <value>Preferred monitor position</value> <comment>as in Show PowerToys Run on primary monitor</comment> </data> <data name="Run_PositionHeader.Description" xml:space="preserve"> <value>If multiple monitors are in use, PowerToys Run can be launched on the desired monitor</value> <comment>as in Show PowerToys Run on primary monitor</comment> </data> <data name="Run_Radio_Position_Cursor.Content" xml:space="preserve"> <value>Monitor with mouse cursor</value> </data> <data name="Run_Radio_Position_Focus.Content" xml:space="preserve"> <value>Monitor with focused window</value> </data> <data name="Run_Radio_Position_Primary_Monitor.Content" xml:space="preserve"> <value>Primary monitor</value> </data> <data name="Run_PluginsLoading.Text" xml:space="preserve"> <value>Plugins are loading...</value> </data> <data name="ColorPicker_ButtonDown.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Move the color down</value> </data> <data name="ColorPicker_ButtonUp.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Move the color up</value> </data> <data name="FancyZones_FlashZonesOnQuickSwitch.Content" xml:space="preserve"> <value>Flash zones when switching layout</value> </data> <data name="FancyZones_Layouts.Header" xml:space="preserve"> <value>Layouts</value> </data> <data name="FancyZones_QuickLayoutSwitch.Header" xml:space="preserve"> <value>Enable quick layout switch</value> </data> <data name="FancyZones_QuickLayoutSwitch.Description" xml:space="preserve"> <value>Layout-specific shortcuts can be configured in the editor</value> </data> <data name="FancyZones_QuickLayoutSwitch_GroupSettings.Text" xml:space="preserve"> <value>Quick layout switch</value> </data> <data name="Activation_Shortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="Activation_Shortcut.Description" xml:space="preserve"> <value>Customize the shortcut to activate this module</value> </data> <data name="Oobe_GetStarted.Text" xml:space="preserve"> <value>Let's get started!</value> </data> <data name="Oobe_PowerToysDescription.Text" xml:space="preserve"> <value>Welcome to PowerToys! These overviews will help you quickly learn the basics of all our utilities.</value> </data> <data name="Oobe_GettingStarted.Text" xml:space="preserve"> <value>Getting started</value> </data> <data name="Oobe_Launch.Text" xml:space="preserve"> <value>Launch</value> </data> <data name="Launch_ColorPicker.Content" xml:space="preserve"> <value>Launch Color Picker</value> </data> <data name="Oobe_LearnMore.Text" xml:space="preserve"> <value>Learn more about</value> </data> <data name="Oobe_ColorPicker.Description" xml:space="preserve"> <value>Color Picker is a system-wide color selection tool for Windows that enables you to pick colors from any currently running application and automatically copies it in a configurable format to your clipboard.</value> </data> <data name="Oobe_FancyZones.Description" xml:space="preserve"> <value>FancyZones is a window manager that makes it easy to create complex window layouts and quickly position windows into those layouts.</value> </data> <data name="Oobe_FileLocksmith.Description" xml:space="preserve"> <value>File Locksmith lists which processes are using the selected files or directories and allows closing those processes.</value> </data> <data name="Oobe_FileExplorer.Description" xml:space="preserve"> <value>PowerToys introduces add-ons to the Windows File Explorer that will enable files like Markdown (.md), PDF (.pdf), SVG (.svg), STL (.stl), G-code (.gcode) and developer files to be viewed in the preview pane. It introduces File Explorer thumbnail support for a number of these file types as well.</value> </data> <data name="Oobe_ImageResizer.Description" xml:space="preserve"> <value>Image Resizer is a Windows shell extension for simple bulk image-resizing.</value> </data> <data name="Oobe_KBM.Description" xml:space="preserve"> <value>Keyboard Manager allows you to customize the keyboard to be more productive by remapping keys and creating your own keyboard shortcuts.</value> </data> <data name="Oobe_MouseWithoutBorders.Description" xml:space="preserve"> <value>Mouse Without Borders enables using the mouse pointer, keyboard, clipboard and drag and drop between machines in the same local network.</value> </data> <data name="Oobe_PowerRename.Description" xml:space="preserve"> <value>PowerRename enables you to perform simple bulk renaming, searching and replacing file names.</value> </data> <data name="Oobe_Run.Description" xml:space="preserve"> <value>PowerToys Run is a quick launcher for power users that contains some additional features without sacrificing performance.</value> </data> <data name="Oobe_MeasureTool.Description" xml:space="preserve"> <value>Screen Ruler is a quick and easy way to measure pixels on your screen.</value> </data> <data name="Oobe_ShortcutGuide.Description" xml:space="preserve"> <value>Shortcut Guide presents the user with a listing of available shortcuts for the current state of the desktop.</value> </data> <data name="Oobe_VideoConference.Description" xml:space="preserve"> <value>Video Conference Mute allows users to quickly mute the microphone and turn off the camera while on a conference call with a single keystroke, regardless of what application has focus on your computer.</value> </data> <data name="Oobe_MouseUtils.Description" xml:space="preserve"> <value>A collection of utilities to enhance your mouse.</value> <comment>Mouse as in the hardware peripheral</comment> </data> <data name="Oobe_Overview.Description" xml:space="preserve"> <value>Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. Take a moment to preview the various utilities listed or view our comprehensive documentation.</value> </data> <data name="Oobe_Overview_DescriptionLinkText.Text" xml:space="preserve"> <value>Documentation on Microsoft Docs</value> </data> <data name="ReleaseNotes.Content" xml:space="preserve"> <value>Release notes</value> </data> <data name="Oobe_ColorPicker_HowToUse.Text" xml:space="preserve"> <value>to open Color Picker.</value> </data> <data name="Oobe_ColorPicker_TipsAndTricks.Text" xml:space="preserve"> <value>To select a color with more precision, **scroll the mouse wheel** to zoom in.</value> </data> <data name="Oobe_FancyZones_HowToUse.Text" xml:space="preserve"> <value>**Shift** + **drag the window** to snap a window to a zone, and release the window in the desired zone.</value> </data> <data name="Oobe_FancyZones_HowToUse_Shortcut.Text" xml:space="preserve"> <value>to open the FancyZones editor.</value> </data> <data name="Oobe_FancyZones_TipsAndTricks.Text" xml:space="preserve"> <value>Snap a window to multiple zones by holding the **Ctrl** key (while also holding **Shift**) when dragging a window.</value> </data> <data name="Oobe_FileLocksmith_HowToUse.Text" xml:space="preserve"> <value>In File Explorer, right-click one or more selected files and select **What's using this file?** from the context menu.</value> </data> <data name="Oobe_FileLocksmith_TipsAndTricks.Text" xml:space="preserve"> <value>Press the **Restart Elevated** button from the File Locksmith UI to also get information on elevated processes that might be using the files.</value> </data> <data name="Oobe_FileExplorer_HowToEnable.Text" xml:space="preserve"> <value>Select **View** which is located at the top of File Explorer, followed by **Show**, and then **Preview pane**. From there, simply click on one of the supported files in the File Explorer and observe the content on the preview pane!</value> </data> <data name="Oobe_HowToCreateMappings.Text" xml:space="preserve"> <value>How to create mappings</value> </data> <data name="Oobe_HowToEnable.Text" xml:space="preserve"> <value>How to enable</value> </data> <data name="Oobe_HowToLaunch.Text" xml:space="preserve"> <value>How to launch</value> </data> <data name="Oobe_HowToUse.Text" xml:space="preserve"> <value>How to use</value> </data> <data name="Oobe_ImageResizer_HowToLaunch.Text" xml:space="preserve"> <value>In File Explorer, right-click one or more image files and select **Resize pictures** from the context menu.</value> </data> <data name="Oobe_ImageResizer_TipsAndTricks.Text" xml:space="preserve"> <value>Want a custom size? You can add them in the PowerToys Settings!</value> </data> <data name="Oobe_KBM_HowToCreateMappings.Text" xml:space="preserve"> <value>Launch **PowerToys Settings**, navigate to the Keyboard Manager menu, and select either **Remap a key** or **Remap a shortcut**.</value> </data> <data name="Oobe_KBM_TipsAndTricks.Text" xml:space="preserve"> <value>Want to only have a shortcut work for a single application? Use the Target App field when creating the shortcut remapping.</value> </data> <data name="Oobe_MouseWithoutBorders_HowToUse.Text" xml:space="preserve"> <value>Use the Settings screen on each machine to connect to the other machines using the same key. If a connection is not working, it may be necessary to add an exception to the Windows Firewall.</value> </data> <data name="Oobe_MouseWithoutBorders_TipsAndTricks.Text" xml:space="preserve"> <value>Use the service option in Settings to install a service enabling Mouse Without Borders to function even in the lock screen.</value> </data> <data name="Oobe_PowerRename_HowToUse.Text" xml:space="preserve"> <value>In File Explorer, right-click one or more selected files and select **PowerRename** from the context menu.</value> </data> <data name="Oobe_PowerRename_TipsAndTricks.Text" xml:space="preserve"> <value>PowerRename supports searching for files using regular expressions to enable more advanced renaming functionalities.</value> </data> <data name="Oobe_Run_HowToLaunch.Text" xml:space="preserve"> <value>to open Run and just start typing.</value> </data> <data name="Oobe_Run_TipsAndTricks.Text" xml:space="preserve"> <value>PowerToys Run supports various action keys to funnel search queries for a specific subset of results. Typing `&lt;` searches for running processes only, `?` will search only for file, or `.` for installed applications! See PowerToys documentation for the complete set of 'Action Keys' available.</value> </data> <data name="Oobe_ShortcutGuide_HowToLaunch.Text" xml:space="preserve"> <value>to open Shortcut Guide, press it again to close or press **Esc**.</value> </data> <data name="Oobe_TipsAndTricks.Text" xml:space="preserve"> <value>Tips &amp; tricks</value> </data> <data name="Oobe_VideoConference_ToggleMicVid.Text" xml:space="preserve"> <value>to toggle both your microphone and video</value> </data> <data name="Oobe_VideoConference_ToggleMic.Text" xml:space="preserve"> <value>to toggle your microphone</value> </data> <data name="Oobe_VideoConference_PushToTalkMic.Text" xml:space="preserve"> <value>to toggle your microphone until key release</value> </data> <data name="Oobe_VideoConference_ToggleVid.Text" xml:space="preserve"> <value>to toggle your video</value> </data> <data name="Oobe_MeasureTool_Activation.Text" xml:space="preserve"> <value>to bring up the Screen Ruler command bar.</value> </data> <data name="Oobe_MeasureTool_HowToLaunch.Text" xml:space="preserve"> <value>The Bounds mode lets you select a specific area to measure. You can also shift-drag an area to persist in on screen. The various Spacing modes allows tracing similar pixels along horizontal and vertical axes with a customizable pixel tolerance threshold (use settings or mouse wheel to adjust it).</value> </data> <data name="Oobe_MeasureTool.Title" xml:space="preserve"> <value>Screen Ruler</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_ColorPicker.Title" xml:space="preserve"> <value>Color Picker</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_FancyZones.Title" xml:space="preserve"> <value>FancyZones</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_FileLocksmith.Title" xml:space="preserve"> <value>File Locksmith</value> </data> <data name="Oobe_ImageResizer.Title" xml:space="preserve"> <value>Image Resizer</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_KBM.Title" xml:space="preserve"> <value>Keyboard Manager</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_MouseWithoutBorders.Title" xml:space="preserve"> <value>Mouse Without Borders</value> <comment>Product name. Do not localize this string</comment> </data> <data name="Oobe_PowerRename.Title" xml:space="preserve"> <value>PowerRename</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_Run.Title" xml:space="preserve"> <value>PowerToys Run</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_ShortcutGuide.Title" xml:space="preserve"> <value>Shortcut Guide</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_VideoConference.Title" xml:space="preserve"> <value>Video Conference Mute</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_Overview.Title" xml:space="preserve"> <value>Welcome</value> </data> <data name="Oobe_WhatsNew.Text" xml:space="preserve"> <value>What's new</value> </data> <data name="Oobe_WhatsNew_LoadingError.Title" xml:space="preserve"> <value>Couldn't load the release notes.</value> </data> <data name="Oobe_WhatsNew_LoadingError.Message" xml:space="preserve"> <value>Please check your internet connection.</value> </data> <data name="Oobe_WhatsNew_ProxyAuthenticationWarning.Title" xml:space="preserve"> <value>Couldn't load the release notes.</value> </data> <data name="Oobe_WhatsNew_ProxyAuthenticationWarning.Message" xml:space="preserve"> <value>Your proxy server requires authentication.</value> </data> <data name="Oobe_WhatsNew_DetailedReleaseNotesLink.Text" xml:space="preserve"> <value>See more detailed release notes on GitHub</value> <comment>Don't loc "GitHub", it's the name of a product</comment> </data> <data name="OOBE_Settings.Content" xml:space="preserve"> <value>Open Settings</value> </data> <data name="Oobe_NavViewItem.Content" xml:space="preserve"> <value>Welcome to PowerToys</value> <comment>Don't loc "PowerToys"</comment> </data> <data name="Feedback_NavViewItem.Content" xml:space="preserve"> <value>Give feedback</value> </data> <data name="OobeWindow_Title" xml:space="preserve"> <value>Welcome to PowerToys</value> </data> <data name="OobeWindow_TitleTxt.Text" xml:space="preserve"> <value>Welcome to PowerToys</value> </data> <data name="SettingsWindow_Title" xml:space="preserve"> <value>PowerToys Settings</value> <comment>Title of the settings window when running as user</comment> </data> <data name="Awake.ModuleTitle" xml:space="preserve"> <value>Awake</value> </data> <data name="Awake.ModuleDescription" xml:space="preserve"> <value>A convenient way to keep your PC awake on-demand.</value> </data> <data name="Awake_EnableSettingsCard.Header" xml:space="preserve"> <value>Enable Awake</value> <comment>Awake is a product name, do not loc</comment> </data> <data name="Awake_NoKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep using the selected power plan</value> </data> <data name="Awake_IndefiniteKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep awake indefinitely</value> </data> <data name="Awake_TemporaryKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep awake for a time interval</value> </data> <data name="Awake_ExpirableKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep awake until expiration</value> </data> <data name="Awake_DisplaySettingsCard.Header" xml:space="preserve"> <value>Keep screen on</value> </data> <data name="Awake_DisplaySettingsCard.Description" xml:space="preserve"> <value>This setting is only available when keeping the PC awake</value> </data> <data name="Awake_ExpirationSettingsExpander.Description" xml:space="preserve"> <value>Keep custom awake state until a specific date and time</value> </data> <data name="Awake_ModeSettingsCard.Header" xml:space="preserve"> <value>Mode</value> </data> <data name="Awake_BehaviorSettingsGroup.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="Awake_IntervalHoursInput.Header" xml:space="preserve"> <value>Hours</value> </data> <data name="Awake_IntervalMinutesInput.Header" xml:space="preserve"> <value>Minutes</value> </data> <data name="Awake_ExpirationSettingsExpander_Date.Header" xml:space="preserve"> <value>End date</value> </data> <data name="Awake_ExpirationSettingsExpander_Time.Header" xml:space="preserve"> <value>End time</value> </data> <data name="Oobe_Awake.Title" xml:space="preserve"> <value>Awake</value> <comment>Module name, do not loc</comment> </data> <data name="Oobe_Awake.Description" xml:space="preserve"> <value>Awake is a Windows tool designed to keep your PC awake on-demand without having to manage its power settings. This behavior can be helpful when running time-consuming tasks while ensuring that your PC does not go to sleep or turn off its screens.</value> </data> <data name="Oobe_Awake_HowToUse.Text" xml:space="preserve"> <value>Open **PowerToys Settings** and enable Awake</value> </data> <data name="Oobe_Awake_TipsAndTricks.Text" xml:space="preserve"> <value>You can always change modes quickly by **right-clicking the Awake icon** in the system tray.</value> </data> <data name="General_FailedToDownloadTheNewVersion.Title" xml:space="preserve"> <value>An error occurred trying to install this update:</value> </data> <data name="General_InstallNow.Content" xml:space="preserve"> <value>Install now</value> </data> <data name="General_ReadMore.Text" xml:space="preserve"> <value>Read more</value> </data> <data name="General_NewVersionAvailable.Title" xml:space="preserve"> <value>An update is available:</value> </data> <data name="General_Downloading.Text" xml:space="preserve"> <value>Downloading...</value> </data> <data name="General_TryAgainToDownloadAndInstall.Content" xml:space="preserve"> <value>Try again to download and install</value> </data> <data name="General_CheckingForUpdates.Text" xml:space="preserve"> <value>Checking for updates...</value> </data> <data name="General_NewVersionReadyToInstall.Title" xml:space="preserve"> <value>An update is ready to install:</value> </data> <data name="General_UpToDate.Title" xml:space="preserve"> <value>PowerToys is up to date</value> </data> <data name="General_CantCheck.Title" xml:space="preserve"> <value>Network error. Please try again later</value> </data> <data name="General_DownloadAndInstall.Content" xml:space="preserve"> <value>Download &amp; install</value> </data> <data name="ImageResizer_Fit_Fill_ThirdPersonSingular" xml:space="preserve"> <value>Fills</value> </data> <data name="ImageResizer_Fit_Fit_ThirdPersonSingular" xml:space="preserve"> <value>Fits within</value> </data> <data name="ImageResizer_Fit_Stretch_ThirdPersonSingular" xml:space="preserve"> <value>Stretches to</value> </data> <data name="ImageResizer_Unit_Centimeter" xml:space="preserve"> <value>Centimeters</value> </data> <data name="ImageResizer_Unit_Inch" xml:space="preserve"> <value>Inches</value> </data> <data name="ImageResizer_Unit_Percent" xml:space="preserve"> <value>Percent</value> </data> <data name="ImageResizer_Unit_Pixel" xml:space="preserve"> <value>Pixels</value> </data> <data name="EditButton.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Edit</value> </data> <data name="ImageResizer_EditSize.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Edit size</value> </data> <data name="No" xml:space="preserve"> <value>No</value> <comment>Label of a cancel button</comment> </data> <data name="Delete_Dialog_Description" xml:space="preserve"> <value>Are you sure you want to delete this item?</value> </data> <data name="Yes" xml:space="preserve"> <value>Yes</value> <comment>Label of a confirmation button</comment> </data> <data name="SeeWhatsNew.Content" xml:space="preserve"> <value>See what's new</value> </data> <data name="Awake_ModeSettingsCard.Description" xml:space="preserve"> <value>Manage the state of your device when Awake is active</value> </data> <data name="ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="Enable_ColorFormat.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Enable colorformat</value> </data> <data name="More_Options_Button.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>More options</value> </data> <data name="More_Options_ButtonTooltip.Text" xml:space="preserve"> <value>More options</value> </data> <data name="To.Text" xml:space="preserve"> <value>to</value> <comment>as in: from x to y</comment> </data> <data name="LearnMore_Awake.Text" xml:space="preserve"> <value>Learn more about Awake</value> <comment>Awake is a product name, do not loc</comment> </data> <data name="LearnMore_ColorPicker.Text" xml:space="preserve"> <value>Learn more about Color Picker</value> <comment>Color Picker is a product name, do not loc</comment> </data> <data name="LearnMore_FancyZones.Text" xml:space="preserve"> <value>Learn more about FancyZones</value> <comment>FancyZones is a product name, do not loc</comment> </data> <data name="LearnMore_FileLocksmith.Text" xml:space="preserve"> <value>Learn more about File Locksmith</value> </data> <data name="LearnMore_ImageResizer.Text" xml:space="preserve"> <value>Learn more about Image Resizer</value> <comment>Image Resizer is a product name, do not loc</comment> </data> <data name="LearnMore_KBM.Text" xml:space="preserve"> <value>Learn more about Keyboard Manager</value> <comment>Keyboard Manager is a product name, do not loc</comment> </data> <data name="LearnMore_MouseUtils.Text" xml:space="preserve"> <value>Learn more about Mouse utilities</value> <comment>Mouse utilities is a product name, do not loc</comment> </data> <data name="LearnMore_PastePlain.Text" xml:space="preserve"> <value>Learn more about Paste as Plain Text</value> <comment> Paste as Plain Text is the name of the module. </comment> </data> <data name="LearnMore_MouseWithoutBorders.Text" xml:space="preserve"> <value>Learn more about Mouse Without Borders</value> <comment>Mouse Without Borders is the name of the module. </comment> </data> <data name="LearnMore_PowerPreview.Text" xml:space="preserve"> <value>Learn more about File Explorer add-ons</value> <comment>File Explorer is a product name, localize as Windows does</comment> </data> <data name="LearnMore_Peek.Text" xml:space="preserve"> <value>Learn more about Peek</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="LearnMore_PowerRename.Text" xml:space="preserve"> <value>Learn more about PowerRename</value> <comment>PowerRename is a product name, do not loc</comment> </data> <data name="LearnMore_Run.Text" xml:space="preserve"> <value>Learn more about PowerToys Run</value> <comment>PowerToys Run is a product name, do not loc</comment> </data> <data name="LearnMore_MeasureTool.Text" xml:space="preserve"> <value>Learn more about Screen Ruler</value> <comment>Screen Ruler is a product name, do not loc</comment> </data> <data name="LearnMore_ShortcutGuide.Text" xml:space="preserve"> <value>Learn more about Shortcut Guide</value> <comment>Shortcut Guide is a product name, do not loc</comment> </data> <data name="LearnMore_VCM.Text" xml:space="preserve"> <value>Learn more about Video Conference Mute</value> <comment>Video Conference Mute is a product name, do not loc</comment> </data> <data name="Oobe_FileExplorer.Title" xml:space="preserve"> <value>File Explorer add-ons</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_MouseUtils.Title" xml:space="preserve"> <value>Mouse utilities</value> <comment>Mouse as in the hardware peripheral</comment> </data> <data name="Oobe_MouseUtils_FindMyMouse.Text" xml:space="preserve"> <value>Find My Mouse</value> <comment>Mouse as in the hardware peripheral</comment> </data> <data name="Oobe_MouseUtils_FindMyMouse_Description.Text" xml:space="preserve"> <value>Focus the mouse pointer pressing the Ctrl key twice, using a custom shortcut or shaking the mouse.</value> <comment>Mouse as in the hardware peripheral. Key as in a keyboard key</comment> </data> <data name="Oobe_MouseUtils_MouseHighlighter.Text" xml:space="preserve"> <value>Mouse Highlighter</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MouseHighlighter_Description.Text" xml:space="preserve"> <value>Use a keyboard shortcut to highlight left and right mouse clicks.</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MousePointerCrosshairs.Text" xml:space="preserve"> <value>Mouse Pointer Crosshairs</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MousePointerCrosshairs_Description.Text" xml:space="preserve"> <value>Draw crosshairs centered around the mouse pointer.</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MouseJump.Text" xml:space="preserve"> <value>Mouse Jump</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MouseJump_Description.Text" xml:space="preserve"> <value>Jump the mouse pointer quickly to anywhere on your desktop.</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Launch_Run.Content" xml:space="preserve"> <value>Launch PowerToys Run</value> </data> <data name="Launch_ShortcutGuide.Content" xml:space="preserve"> <value>Launch Shortcut Guide</value> </data> <data name="ColorPicker_ColorFormat_ToggleSwitch.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Show format in editor</value> </data> <data name="GeneralPage_Documentation.Text" xml:space="preserve"> <value>Documentation</value> </data> <data name="PowerLauncher_SearchList.PlaceholderText" xml:space="preserve"> <value>Search this list</value> </data> <data name="PowerLauncher_SearchList.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Search this list</value> </data> <data name="Awake.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="ColorPicker.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="General.SecondaryLinksHeader" xml:space="preserve"> <value>Related information</value> </data> <data name="ImageResizer.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="MouseUtils.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="PowerLauncher.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="PowerRename.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="EditTooltip.Text" xml:space="preserve"> <value>Edit</value> </data> <data name="RemoveTooltip.Text" xml:space="preserve"> <value>Remove</value> </data> <data name="Activation_Shortcut_Cancel" xml:space="preserve"> <value>Cancel</value> </data> <data name="Activation_Shortcut_Description" xml:space="preserve"> <value>Press a combination of keys to change this shortcut</value> </data> <data name="Activation_Shortcut_With_Disable_Description" xml:space="preserve"> <value>Press a combination of keys to change this shortcut. Right-click to remove the key combination, thereby deactivating the shortcut.</value> </data> <data name="Activation_Shortcut_Reset" xml:space="preserve"> <value>Reset</value> </data> <data name="Activation_Shortcut_Save" xml:space="preserve"> <value>Save</value> </data> <data name="Activation_Shortcut_Title" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="InvalidShortcut.Title" xml:space="preserve"> <value>Invalid shortcut</value> </data> <data name="InvalidShortcutWarningLabel.Text" xml:space="preserve"> <value>Only shortcuts that start with **Windows key**, **Ctrl**, **Alt** or **Shift** are valid.</value> <comment>The ** sequences are used for text formatting of the key names. Don't remove them on translation.</comment> </data> <data name="FancyZones_SpanZonesAcrossMonitors.Description" xml:space="preserve"> <value>All monitors must have the same DPI scaling and will be treated as one large combined rectangle which contains all monitors</value> </data> <data name="ImageResizer_DefaultSize_NewSizePrefix" xml:space="preserve"> <value>New size</value> <comment>First part of the default name of new sizes that can be added in PT's settings ui.</comment> </data> <data name="Awake_IntervalSettingsCard.Header" xml:space="preserve"> <value>Interval before returning to the previous awakeness state</value> </data> <data name="Awake_ExpirationSettingsExpander.Header" xml:space="preserve"> <value>End date and time</value> </data> <data name="MouseUtils.ModuleTitle" xml:space="preserve"> <value>Mouse utilities</value> </data> <data name="MouseUtils.ModuleDescription" xml:space="preserve"> <value>A collection of mouse utilities.</value> </data> <data name="MouseUtils_FindMyMouse.Header" xml:space="preserve"> <value>Find My Mouse</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_FindMyMouse.Description" xml:space="preserve"> <value>Find My Mouse highlights the position of the cursor when pressing the Ctrl key twice, using a custom shortcut or when shaking the mouse.</value> <comment>"Ctrl" is a keyboard key. "Find My Mouse" is the name of the utility</comment> </data> <data name="MouseUtils_Enable_FindMyMouse.Header" xml:space="preserve"> <value>Enable Find My Mouse</value> <comment>"Find My Mouse" is the name of the utility.</comment> </data> <data name="MouseUtils_FindMyMouse_ActivationMethod.Header" xml:space="preserve"> <value>Activation method</value> </data> <data name="MouseUtils_FindMyMouse_ActivationDoubleControlPress.Content" xml:space="preserve"> <value>Press Left Control twice</value> <comment>Left control is the physical key on the keyboard.</comment> </data> <data name="MouseUtils_FindMyMouse_ActivationShakeMouse.Content" xml:space="preserve"> <value>Shake mouse</value> <comment>Mouse is the hardware peripheral.</comment> </data> <data name="MouseUtils_FindMyMouse_ExcludedApps.Description" xml:space="preserve"> <value>Prevents module activation when an excluded application is the foreground application</value> </data> <data name="MouseUtils_FindMyMouse_ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="MouseUtils_FindMyMouse_ExcludedApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> </data> <data name="MouseUtils_Prevent_Activation_On_Game_Mode.Content" xml:space="preserve"> <value>Do not activate when Game Mode is on</value> <comment>"Game mode" is the Windows feature to prevent notification when playing a game.</comment> </data> <data name="MouseUtils_FindMyMouse_BackgroundColor.Header" xml:space="preserve"> <value>Background color</value> </data> <data name="MouseUtils_FindMyMouse_SpotlightColor.Header" xml:space="preserve"> <value>Spotlight color</value> </data> <data name="MouseUtils_FindMyMouse_OverlayOpacity.Header" xml:space="preserve"> <value>Overlay opacity (%)</value> </data> <data name="MouseUtils_FindMyMouse_SpotlightRadius.Header" xml:space="preserve"> <value>Spotlight radius (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_FindMyMouse_SpotlightInitialZoom.Header" xml:space="preserve"> <value>Spotlight initial zoom</value> </data> <data name="MouseUtils_FindMyMouse_SpotlightInitialZoom.Description" xml:space="preserve"> <value>Spotlight zoom factor at animation start</value> </data> <data name="MouseUtils_FindMyMouse_AnimationDurationMs.Header" xml:space="preserve"> <value>Animation duration (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_FindMyMouse_AnimationDurationMs.Description" xml:space="preserve"> <value>Time before the spotlight appears (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_FindMyMouse_AnimationDurationMs_Disabled.Message" xml:space="preserve"> <value>Animations are disabled by OS. See Settings &gt; Accessibility &gt; Visual effects</value> </data> <data name="MouseUtils_FindMyMouse_ShakingMinimumDistance.Header" xml:space="preserve"> <value>Shake minimum distance</value> </data> <data name="MouseUtils_FindMyMouse_ShakingMinimumDistance.Description" xml:space="preserve"> <value>The minimum distance for mouse shaking activation, for adjusting sensitivity</value> </data> <data name="MouseUtils_MouseHighlighter.Header" xml:space="preserve"> <value>Mouse Highlighter</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_MouseHighlighter.Description" xml:space="preserve"> <value>Mouse Highlighter mode will highlight mouse clicks.</value> <comment>"Mouse Highlighter" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_Enable_MouseHighlighter.Header" xml:space="preserve"> <value>Enable Mouse Highlighter</value> <comment>"Find My Mouse" is the name of the utility.</comment> </data> <data name="MouseUtils_MouseHighlighter_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MouseUtils_MouseHighlighter_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to turn on or off this mode</value> <comment>"Mouse Highlighter" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_MouseHighlighter_PrimaryButtonClickColor.Header" xml:space="preserve"> <value>Primary button highlight color</value> </data> <data name="MouseUtils_MouseHighlighter_SecondaryButtonClickColor.Header" xml:space="preserve"> <value>Secondary button highlight color</value> </data> <data name="MouseUtils_MouseHighlighter_HighlightRadius.Header" xml:space="preserve"> <value>Radius (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDelayMs.Header" xml:space="preserve"> <value>Fade delay (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDelayMs.Description" xml:space="preserve"> <value>Time before the highlight begins to fade (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDurationMs.Header" xml:space="preserve"> <value>Fade duration (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDurationMs.Description" xml:space="preserve"> <value>Duration of the disappear animation (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MousePointerCrosshairs.Header" xml:space="preserve"> <value>Mouse Pointer Crosshairs</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_MousePointerCrosshairs.Description" xml:space="preserve"> <value>Mouse Pointer Crosshairs draws crosshairs centered on the mouse pointer.</value> <comment>"Mouse Pointer Crosshairs" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_Enable_MousePointerCrosshairs.Header" xml:space="preserve"> <value>Enable Mouse Pointer Crosshairs</value> <comment>"Mouse Pointer Crosshairs" is the name of the utility.</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MouseUtils_MousePointerCrosshairs_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to show/hide the crosshairs</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsColor.Header" xml:space="preserve"> <value>Crosshairs color</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsOpacity.Header" xml:space="preserve"> <value>Crosshairs opacity (%)</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsRadius.Header" xml:space="preserve"> <value>Crosshairs center radius (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsThickness.Header" xml:space="preserve"> <value>Crosshairs thickness (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsBorderColor.Header" xml:space="preserve"> <value>Crosshairs border color</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsBorderSize.Header" xml:space="preserve"> <value>Crosshairs border size (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_IsCrosshairsFixedLengthEnabled.Header" xml:space="preserve"> <value>Fix crosshairs length</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsFixedLength.Header" xml:space="preserve"> <value>Crosshairs fixed length (px)</value> <comment>px = pixels</comment> </data> <data name="FancyZones_Radio_Custom_Colors.Content" xml:space="preserve"> <value>Custom colors</value> </data> <data name="FancyZones_Radio_Default_Theme.Content" xml:space="preserve"> <value>Windows default</value> </data> <data name="ColorModeHeader.Header" xml:space="preserve"> <value>App theme</value> </data> <data name="FancyZones_Zone_Appearance.Description" xml:space="preserve"> <value>Customize the way zones look</value> </data> <data name="FancyZones_Zone_Appearance.Header" xml:space="preserve"> <value>Zone appearance</value> </data> <data name="VideoConference_DeprecationWarning.Title" xml:space="preserve"> <value>VCM is moving into legacy mode (maintenance only).</value> </data> <data name="VideoConference_DeprecationWarningButton.Content" xml:space="preserve"> <value>Learn more</value> </data> <data name="LearnMore.Content" xml:space="preserve"> <value>Learn more</value> </data> <data name="VideoConference_RunAsAdminRequired.Title" xml:space="preserve"> <value>You need to run as administrator to modify these settings.</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_GCODE.Header" xml:space="preserve"> <value>Geometric Code</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_GCODE.Description" xml:space="preserve"> <value>Only .gcode files with embedded thumbnails are supported</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_GCODE.Header" xml:space="preserve"> <value>Geometric Code</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_GCODE.Description" xml:space="preserve"> <value>Only .gcode files with embedded thumbnails are supported</value> </data> <data name="FancyZones_NumberColor.Header" xml:space="preserve"> <value>Number color</value> </data> <data name="FancyZones_ShowZoneNumberCheckBoxControl.Content" xml:space="preserve"> <value>Show zone number</value> </data> <data name="ToggleSwitch.OffContent" xml:space="preserve"> <value>Off</value> <comment>The state of a ToggleSwitch when it's off</comment> </data> <data name="ToggleSwitch.OnContent" xml:space="preserve"> <value>On</value> <comment>The state of a ToggleSwitch when it's on</comment> </data> <data name="CropAndLock.ModuleDescription" xml:space="preserve"> <value>Crop And Lock allows you to crop a current application into a smaller window or just create a thumbnail. Focus the target window and press the shortcut to start cropping.</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="CropAndLock.ModuleTitle" xml:space="preserve"> <value>Crop And Lock </value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="CropAndLock_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="CropAndLock_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="Shell_CropAndLock.Content" xml:space="preserve"> <value>Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="LearnMore_CropAndLock.Text" xml:space="preserve"> <value>Learn more about Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="CropAndLock_ReparentActivation_Shortcut.Header" xml:space="preserve"> <value>Reparent shortcut</value> </data> <data name="CropAndLock_ReparentActivation_Shortcut.Description" xml:space="preserve"> <value>Shortcut to crop an application's window into a cropped window. This is experimental and can cause issues with some applications, since the cropped window will contain the original application window.</value> </data> <data name="CropAndLock_ThumbnailActivation_Shortcut.Header" xml:space="preserve"> <value>Thumbnail shortcut</value> </data> <data name="CropAndLock_ThumbnailActivation_Shortcut.Description" xml:space="preserve"> <value>Shortcut to crop and create a thumbnail of another window. The application isn't controllable through the thumbnail but it'll have less compatibility issues. </value> </data> <data name="CropAndLock.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="Oobe_CropAndLock.Title" xml:space="preserve"> <value>Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="Oobe_CropAndLock.Description" xml:space="preserve"> <value>Crop And Lock allows you to crop a current application into a smaller window or just create a thumbnail. Focus the target window and press the shortcut to start cropping.</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="Oobe_CropAndLock_HowToUse_Thumbnail.Text" xml:space="preserve"> <value>to crop and create a thumbnail of another window. The application isn't controllable through the thumbnail but it'll have less compatibility issues.</value> </data> <data name="Oobe_CropAndLock_HowToUse_Reparent.Text" xml:space="preserve"> <value>to crop an application's window into a cropped window. This is experimental and can cause issues with some applications, since the cropped window will contain the original application window.</value> </data> <data name="AlwaysOnTop.ModuleDescription" xml:space="preserve"> <value>Always On Top is a quick and easy way to pin windows on top.</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop.ModuleTitle" xml:space="preserve"> <value>Always On Top </value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="Peek_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="AlwaysOnTop_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_ExcludedApps.Description" xml:space="preserve"> <value>Excludes an application from pinning on top</value> </data> <data name="AlwaysOnTop_ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="AlwaysOnTop_ExcludedApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> </data> <data name="AlwaysOnTop_FrameColor.Header" xml:space="preserve"> <value>Color</value> </data> <data name="AlwaysOnTop_FrameEnabled.Header" xml:space="preserve"> <value>Show a border around the pinned window</value> </data> <data name="AlwaysOnTop_FrameThickness.Header" xml:space="preserve"> <value>Thickness (px)</value> <comment>px = pixels</comment> </data> <data name="AlwaysOnTop_Behavior_GroupSettings.Header" xml:space="preserve"> <value>Appearance &amp; behavior</value> </data> <data name="Shell_AlwaysOnTop.Content" xml:space="preserve"> <value>Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_GameMode.Content" xml:space="preserve"> <value>Do not activate when Game Mode is on</value> <comment>Game Mode is a Windows feature</comment> </data> <data name="AlwaysOnTop_SoundTitle.Header" xml:space="preserve"> <value>Sound</value> </data> <data name="AlwaysOnTop_Sound.Content" xml:space="preserve"> <value>Play a sound when pinning a window</value> </data> <data name="AlwaysOnTop_Behavior.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="LearnMore_AlwaysOnTop.Text" xml:space="preserve"> <value>Learn more about Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="AlwaysOnTop_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to pin or unpin an app window</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="Oobe_AlwaysOnTop.Title" xml:space="preserve"> <value>Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="Oobe_AlwaysOnTop.Description" xml:space="preserve"> <value>Always On Top improves your multitasking workflow by pinning an application window so it's always in front - even when focus changes to another window after that.</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="Oobe_AlwaysOnTop_HowToUse.Text" xml:space="preserve"> <value>to pin or unpin the selected window so it's always on top of all other windows.</value> </data> <data name="Oobe_AlwaysOnTop_TipsAndTricks.Text" xml:space="preserve"> <value>You can tweak the visual outline of the pinned windows in PowerToys settings.</value> </data> <data name="AlwaysOnTop_FrameColor_Mode.Header" xml:space="preserve"> <value>Color mode</value> </data> <data name="AlwaysOnTop_Radio_Custom_Color.Content" xml:space="preserve"> <value>Custom color</value> </data> <data name="AlwaysOnTop_Radio_Windows_Default.Content" xml:space="preserve"> <value>Windows default</value> </data> <data name="FileExplorerPreview.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Monaco_Wrap_Text.Content" xml:space="preserve"> <value>Wrap text</value> <comment>Feature on or off</comment> </data> <data name="FancyZones_AllowPopupWindowSnap.Description" xml:space="preserve"> <value>This setting can affect all popup windows including notifications</value> </data> <data name="FancyZones_AllowPopupWindowSnap.Header" xml:space="preserve"> <value>Allow popup windows snapping</value> </data> <data name="FancyZones_AllowChildWindowSnap.Content" xml:space="preserve"> <value>Allow child windows snapping</value> </data> <data name="Shell_WhatsNew.Content" xml:space="preserve"> <value>What's new</value> </data> <data name="Shell_Peek.Content" xml:space="preserve"> <value>Peek</value> <comment>Product name: Navigation view item name for Peek</comment> </data> <data name="Peek.ModuleTitle" xml:space="preserve"> <value>Peek</value> </data> <data name="Peek.ModuleDescription" xml:space="preserve"> <value>Peek is a quick and easy way to preview files. Select a file in File Explorer and press the shortcut to open the file preview.</value> </data> <data name="Peek_EnablePeek.Header" xml:space="preserve"> <value>Enable Peek</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="Peek_BehaviorHeader.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="Peek_AlwaysRunNotElevated.Header" xml:space="preserve"> <value>Always run not elevated, even when PowerToys is elevated</value> </data> <data name="Peek_AlwaysRunNotElevated.Description" xml:space="preserve"> <value>Tries to run Peek without elevated permissions, to fix access to network shares. You need to disable and re-enable Peek for changes to this value to take effect.</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="Peek_CloseAfterLosingFocus.Header" xml:space="preserve"> <value>Automatically close the Peek window after it loses focus</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="FancyZones_DisableRoundCornersOnWindowSnap.Content" xml:space="preserve"> <value>Disable round corners when window is snapped</value> </data> <data name="PowerLauncher_SearchQueryTuningEnabled.Description" xml:space="preserve"> <value>Fine tune results ordering</value> </data> <data name="PowerLauncher_SearchQueryTuningEnabled.Header" xml:space="preserve"> <value>Results order tuning</value> </data> <data name="PowerLauncher_SearchClickedItemWeight.Description" xml:space="preserve"> <value>Use a higher number to get selected results to rise faster. The default is 5, 0 to disable.</value> </data> <data name="PowerLauncher_SearchClickedItemWeight.Header" xml:space="preserve"> <value>Selected item weight</value> </data> <data name="PowerLauncher_WaitForSlowResults.Description" xml:space="preserve"> <value>Selecting this can help preselect the top, more relevant result, but at the risk of jumpiness</value> </data> <data name="PowerLauncher_WaitForSlowResults.Header" xml:space="preserve"> <value>Wait on slower plugin results before selecting top item in results</value> </data> <data name="PowerLauncher_PluginWeightBoost.Description" xml:space="preserve"> <value>Use a higher number to have this plugin's result show higher in the global results. Default is 0.</value> </data> <data name="PowerLauncher_PluginWeightBoost.Header" xml:space="preserve"> <value>Global sort order score modifier</value> </data> <data name="AlwaysOnTop_RoundCorners.Content" xml:space="preserve"> <value>Enable round corners</value> </data> <data name="LearnMore_QuickAccent.Text" xml:space="preserve"> <value>Learn more about Quick Accent</value> <comment>Quick Accent is a product name, do not loc</comment> </data> <data name="QuickAccent_EnableQuickAccent.Header" xml:space="preserve"> <value>Enable Quick Accent</value> </data> <data name="Shell_QuickAccent.Content" xml:space="preserve"> <value>Quick Accent</value> </data> <data name="QuickAccent.ModuleDescription" xml:space="preserve"> <value>Quick Accent is an alternative way to type accented characters, useful for when a keyboard doesn't support that specific accent. Activate by holding the key for the character you want to add an accent to, then press the activation key (space, left or right arrow keys) and an overlay to select accented characters will appear!</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent.ModuleTitle" xml:space="preserve"> <value>Quick Accent</value> </data> <data name="QuickAccent.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> </data> <data name="AlwaysOnTop_ShortDescription" xml:space="preserve"> <value>Pin a window</value> </data> <data name="Awake_ShortDescription" xml:space="preserve"> <value>Keep your PC awake</value> </data> <data name="ColorPicker_ShortDescription" xml:space="preserve"> <value>Pick a color</value> </data> <data name="CropAndLock_Thumbnail" xml:space="preserve"> <value>Thumbnail</value> </data> <data name="CropAndLock_Reparent" xml:space="preserve"> <value>Reparent</value> </data> <data name="FancyZones_OpenEditor" xml:space="preserve"> <value>Open editor</value> </data> <data name="FileLocksmith_ShortDescription" xml:space="preserve"> <value>Right-click on files or directories to show running processes</value> </data> <data name="FindMyMouse_ShortDescription" xml:space="preserve"> <value>Find the mouse</value> </data> <data name="ImageResizer_ShortDescription" xml:space="preserve"> <value>Select Image Resizer in the right-click context menu</value> </data> <data name="MouseHighlighter_ShortDescription" xml:space="preserve"> <value>Highlight clicks</value> </data> <data name="MouseJump_ShortDescription" xml:space="preserve"> <value>Quickly move the mouse pointer</value> </data> <data name="MouseCrosshairs_ShortDescription" xml:space="preserve"> <value>Draw crosshairs centered on the mouse pointer</value> </data> <data name="MouseWithoutBorders_ShortDescription" xml:space="preserve"> <value>Move your cursor across multiple devices</value> </data> <data name="PastePlain_ShortDescription" xml:space="preserve"> <value>Paste clipboard content without formatting</value> </data> <data name="Peek_ShortDescription" xml:space="preserve"> <value>Quick and easy previewer</value> </data> <data name="PowerRename_ShortDescription" xml:space="preserve"> <value>Select Power Rename in right-click context menu</value> </data> <data name="Run_ShortDescription" xml:space="preserve"> <value>A quick launcher</value> </data> <data name="PowerAccent_ShortDescription" xml:space="preserve"> <value>An alternative way to type accented characters</value> </data> <data name="RegistryPreview_ShortDescription" xml:space="preserve"> <value>Visualize and edit Windows Registry files</value> </data> <data name="ScreenRuler_ShortDescription" xml:space="preserve"> <value>Measure pixels on your screen</value> </data> <data name="ShortcutGuide_ShortDescription" xml:space="preserve"> <value>Show a help overlay with Windows shortcuts</value> </data> <data name="PowerOcr_ShortDescription" xml:space="preserve"> <value>A convenient way to copy text from anywhere on screen</value> </data> <data name="Dashboard_Activation" xml:space="preserve"> <value>Activation</value> </data> <data name="DashboardKBMShowMappingsButton.Content" xml:space="preserve"> <value>Show remappings</value> </data> <data name="Oobe_QuickAccent.Description" xml:space="preserve"> <value>Quick Accent is an easy way to write letters with accents, like on a smartphone.</value> </data> <data name="Oobe_QuickAccent.Title" xml:space="preserve"> <value>Quick Accent</value> </data> <data name="Oobe_QuickAccent_HowToUse.Text" xml:space="preserve"> <value>Open **PowerToys Settings** and enable Quick Accent. While holding the key for the character you want to add an accent to, press the Activation Key and an overlay to select the accented character will appear.</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="QuickAccent_Activation_Shortcut.Header" xml:space="preserve"> <value>Activation key</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent_Activation_Shortcut.Description" xml:space="preserve"> <value>Press this key after holding down the target letter</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent_Activation_Key_Arrows.Content" xml:space="preserve"> <value>Left/Right Arrow</value> <comment>Left/Right arrow keyboard keys</comment> </data> <data name="QuickAccent_Activation_Key_Space.Content" xml:space="preserve"> <value>Space</value> <comment>Space is the space keyboard key</comment> </data> <data name="QuickAccent_Activation_Key_Either.Content" xml:space="preserve"> <value>Left, Right or Space</value> <comment>All are keys on a keyboard</comment> </data> <data name="QuickAccent_Toolbar.Header" xml:space="preserve"> <value>Toolbar</value> </data> <data name="QuickAccent_ToolbarPosition.Header" xml:space="preserve"> <value>Toolbar position</value> </data> <data name="QuickAccent_ToolbarPosition_TopCenter.Content" xml:space="preserve"> <value>Top center</value> </data> <data name="QuickAccent_ToolbarPosition_TopLeftCorner.Content" xml:space="preserve"> <value>Top left corner</value> </data> <data name="QuickAccent_ToolbarPosition_TopRightCorner.Content" xml:space="preserve"> <value>Top right corner</value> </data> <data name="QuickAccent_ToolbarPosition_BottomLeftCorner.Content" xml:space="preserve"> <value>Bottom left corner</value> </data> <data name="QuickAccent_ToolbarPosition_BottomCenter.Content" xml:space="preserve"> <value>Bottom center</value> </data> <data name="QuickAccent_ToolbarPosition_BottomRightCorner.Content" xml:space="preserve"> <value>Bottom right corner</value> </data> <data name="QuickAccent_ToolbarPosition_Center.Content" xml:space="preserve"> <value>Center</value> </data> <data name="QuickAccent_ToolbarPosition_Left.Content" xml:space="preserve"> <value>Left</value> </data> <data name="QuickAccent_ToolbarPosition_Right.Content" xml:space="preserve"> <value>Right</value> </data> <data name="QuickAccent_Behavior.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="QuickAccent_InputTimeMs.Header" xml:space="preserve"> <value>Input delay (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="QuickAccent_InputTimeMs.Description" xml:space="preserve"> <value>Hold the key down for this much time to make the accent menu appear (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="QuickAccent_ExcludedApps.Description" xml:space="preserve"> <value>Prevents module activation if a foreground application is excluded. Add one application name per line.</value> </data> <data name="QuickAccent_ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="QuickAccent_ExcludedApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: Teams.exe</value> </data> <data name="LearnMore_TextExtractor.Text" xml:space="preserve"> <value>Learn more about Text Extractor</value> </data> <data name="TextExtractor_Cancel" xml:space="preserve"> <value>cancel</value> </data> <data name="General_SettingsBackupAndRestore_NothingToBackup" xml:space="preserve"> <value>A new backup was not created because no settings have been changed since last backup.</value> </data> <data name="General_SettingsBackupAndRestore_NoBackupFound" xml:space="preserve"> <value>No backup found</value> </data> <data name="General_SettingsBackupAndRestore_FailedToParseTime" xml:space="preserve"> <value>Failed to parse time</value> </data> <data name="General_SettingsBackupAndRestore_UnknownBackupTime" xml:space="preserve"> <value>Unknown</value> </data> <data name="General_SettingsBackupAndRestore_UnknownBackupSource" xml:space="preserve"> <value>Unknown</value> </data> <data name="General_SettingsBackupAndRestore_ThisMachine" xml:space="preserve"> <value>This computer</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsMatch" xml:space="preserve"> <value>Current settings match</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsStatusAt" xml:space="preserve"> <value>at</value> <comment>E.g., Food was served 'at' noon.</comment> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsDiffer" xml:space="preserve"> <value>Current settings differ</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsNoChecked" xml:space="preserve"> <value>Checking...</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsUnknown" xml:space="preserve"> <value>Unknown</value> </data> <data name="General_SettingsBackupAndRestore_NeverRestored" xml:space="preserve"> <value>Never restored</value> </data> <data name="General_SettingsBackupAndRestore_NothingToRestore" xml:space="preserve"> <value>Nothing to restore.</value> </data> <data name="General_SettingsBackupAndRestore_NoSettingsFilesFound" xml:space="preserve"> <value>No settings files found.</value> </data> <data name="General_SettingsBackupAndRestore_BackupError" xml:space="preserve"> <value>There was an error. Try another backup location.</value> </data> <data name="General_SettingsBackupAndRestore_SettingsFormatError" xml:space="preserve"> <value>There was an error in the settings format. Please check the settings file:</value> </data> <data name="General_SettingsBackupAndRestore_BackupComplete" xml:space="preserve"> <value>Backup completed.</value> </data> <data name="General_SettingsBackupAndRestore_NoBackupSyncPath" xml:space="preserve"> <value>No backup location selected.</value> </data> <data name="General_SettingsBackupAndRestore_NoBackupsFound" xml:space="preserve"> <value>No backups found to restore.</value> </data> <data name="General_SettingsBackupAndRestore_InvalidBackupLocation" xml:space="preserve"> <value>Invalid backup location.</value> </data> <data name="TextExtractor.ModuleDescription" xml:space="preserve"> <value>Text Extractor is a convenient way to copy text from anywhere on screen</value> </data> <data name="TextExtractor.ModuleTitle" xml:space="preserve"> <value>Text Extractor</value> </data> <data name="TextExtractor_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Text Extractor</value> </data> <data name="TextExtractor_SupportedLanguages.Title" xml:space="preserve"> <value>Text Extractor can only recognize languages that have the OCR pack installed.</value> </data> <data name="TextExtractor_SupportedLanguages_Link.Content" xml:space="preserve"> <value>Learn more about supported languages</value> </data> <data name="Shell_TextExtractor.Content" xml:space="preserve"> <value>Text Extractor</value> </data> <data name="Launch_TextExtractor.Content" xml:space="preserve"> <value>Launch Text Extractor</value> </data> <data name="Oobe_TextExtractor.Title" xml:space="preserve"> <value>Text Extractor</value> </data> <data name="Oobe_TextExtractor_HowToUse.Text" xml:space="preserve"> <value>to open Text Extractor and then selecting a region to copy the text from.</value> </data> <data name="Oobe_TextExtractor_TipsAndTricks.Text" xml:space="preserve"> <value>Hold the shift key to move the selection region around.</value> </data> <data name="TextExtractor.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> </data> <data name="Oobe_TextExtractor.Description" xml:space="preserve"> <value>Text Extractor works like Snipping Tool, but copies the text out of the selected region using OCR and puts it on the clipboard.</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Monaco_Try_Format.Description" xml:space="preserve"> <value>Applies to json and xml. Files remain unchanged.</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Monaco_Try_Format.Header" xml:space="preserve"> <value>Try to format the source for preview</value> </data> <data name="Run_ConflictingKeywordInfo.Title" xml:space="preserve"> <value>Some characters and phrases may conflict with global queries of other plugins if you use them as activation command.</value> </data> <data name="Run_ConflictingKeywordInfo_Link.Content" xml:space="preserve"> <value>Learn more about conflicting activation commands</value> </data> <data name="MeasureTool_ContinuousCapture_Information.Title" xml:space="preserve"> <value>The continuous capture mode will consume more resources when in use. Also, measurements will be excluded from screenshots and screen capture.</value> <comment>pointer as in mouse pointer. Resources refer to things like CPU, GPU, RAM</comment> </data> <data name="QuickAccent_Description_Indicator.Header" xml:space="preserve"> <value>Show the Unicode code and name of the currently selected character</value> </data> <data name="QuickAccent_SortByUsageFrequency_Indicator.Header" xml:space="preserve"> <value>Sort characters by usage frequency</value> </data> <data name="QuickAccent_SortByUsageFrequency_Indicator.Description" xml:space="preserve"> <value>Track characters usage frequency and sort them accordingly</value> </data> <data name="QuickAccent_StartSelectionFromTheLeft_Indicator.Header" xml:space="preserve"> <value>Start selection from the left</value> </data> <data name="QuickAccent_StartSelectionFromTheLeft_Indicator.Description" xml:space="preserve"> <value>Start selection from the leftmost character for all activation keys, including left and right arrows</value> </data> <data name="QuickAccent_DisableFullscreen.Header" xml:space="preserve"> <value>Disable when Game Mode is On</value> </data> <data name="QuickAccent_Language.Header" xml:space="preserve"> <value>Characters</value> </data> <data name="QuickAccent_SelectedLanguage.Header" xml:space="preserve"> <value>Choose a character set</value> </data> <data name="QuickAccent_SelectedLanguage.Description" xml:space="preserve"> <value>Show only accented characters common to the selected set</value> </data> <data name="QuickAccent_SelectedLanguage_All.Content" xml:space="preserve"> <value>All available</value> </data> <data name="QuickAccent_SelectedLanguage_Catalan.Content" xml:space="preserve"> <value>Catalan</value> </data> <data name="QuickAccent_SelectedLanguage_Currency.Content" xml:space="preserve"> <value>Currency</value> </data> <data name="QuickAccent_SelectedLanguage_Croatian.Content" xml:space="preserve"> <value>Croatian</value> </data> <data name="QuickAccent_SelectedLanguage_Czech.Content" xml:space="preserve"> <value>Czech</value> </data> <data name="QuickAccent_SelectedLanguage_Gaeilge.Content" xml:space="preserve"> <value>Gaeilge</value> <comment>Gaelic language spoken in Ireland</comment> </data> <data name="QuickAccent_SelectedLanguage_Gaidhlig.Content" xml:space="preserve"> <value>Gàidhlig</value> <comment>Scottish Gaelic</comment> </data> <data name="QuickAccent_SelectedLanguage_German.Content" xml:space="preserve"> <value>German</value> </data> <data name="QuickAccent_SelectedLanguage_Hebrew.Content" xml:space="preserve"> <value>Hebrew</value> </data> <data name="QuickAccent_SelectedLanguage_French.Content" xml:space="preserve"> <value>French</value> </data> <data name="QuickAccent_SelectedLanguage_Estonian.Content" xml:space="preserve"> <value>Estonian</value> </data> <data name="QuickAccent_SelectedLanguage_Lithuanian.Content" xml:space="preserve"> <value>Lithuanian</value> </data> <data name="QuickAccent_SelectedLanguage_Macedonian.Content" xml:space="preserve"> <value>Macedonian</value> </data> <data name="QuickAccent_SelectedLanguage_Maori.Content" xml:space="preserve"> <value>Maori</value> </data> <data name="QuickAccent_SelectedLanguage_Dutch.Content" xml:space="preserve"> <value>Dutch</value> </data> <data name="QuickAccent_SelectedLanguage_Norwegian.Content" xml:space="preserve"> <value>Norwegian</value> </data> <data name="QuickAccent_SelectedLanguage_Pinyin.Content" xml:space="preserve"> <value>Pinyin</value> </data> <data name="QuickAccent_SelectedLanguage_Polish.Content" xml:space="preserve"> <value>Polish</value> </data> <data name="QuickAccent_SelectedLanguage_Portuguese.Content" xml:space="preserve"> <value>Portuguese</value> </data> <data name="QuickAccent_SelectedLanguage_Slovakian.Content" xml:space="preserve"> <value>Slovakian</value> </data> <data name="QuickAccent_SelectedLanguage_Spanish.Content" xml:space="preserve"> <value>Spanish</value> </data> <data name="QuickAccent_SelectedLanguage_Swedish.Content" xml:space="preserve"> <value>Swedish</value> </data> <data name="QuickAccent_SelectedLanguage_Turkish.Content" xml:space="preserve"> <value>Turkish</value> </data> <data name="QuickAccent_SelectedLanguage_Icelandic.Content" xml:space="preserve"> <value>Icelandic</value> </data> <data name="QuickAccent_SelectedLanguage_Romanian.Content" xml:space="preserve"> <value>Romanian</value> </data> <data name="QuickAccent_SelectedLanguage_Serbian.Content" xml:space="preserve"> <value>Serbian</value> </data> <data name="QuickAccent_SelectedLanguage_Hungarian.Content" xml:space="preserve"> <value>Hungarian</value> </data> <data name="QuickAccent_SelectedLanguage_Italian.Content" xml:space="preserve"> <value>Italian</value> </data> <data name="QuickAccent_SelectedLanguage_Kurdish.Content" xml:space="preserve"> <value>Kurdish</value> </data> <data name="QuickAccent_SelectedLanguage_Welsh.Content" xml:space="preserve"> <value>Welsh</value> </data> <data name="Hosts.ModuleDescription" xml:space="preserve"> <value>Quick and simple utility for managing hosts file.</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Hosts.ModuleTitle" xml:space="preserve"> <value>Hosts File Editor</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Shell_Hosts.Content" xml:space="preserve"> <value>Hosts File Editor</value> <comment>Products name: Navigation view item name for Hosts File Editor</comment> </data> <data name="Hosts_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Hosts_Toggle_ShowStartupWarning.Header" xml:space="preserve"> <value>Show a warning at startup</value> </data> <data name="Hosts_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="Hosts_LaunchButtonControl.Description" xml:space="preserve"> <value>Manage your hosts file</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Hosts_LaunchButtonControl.Header" xml:space="preserve"> <value>Launch Host File Editor</value> <comment>"Host File Editor" is a product name</comment> </data> <data name="Hosts_LaunchButton_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Launch Host File Editor</value> <comment>"Host File Editor" is a product name</comment> </data> <data name="Hosts_AdditionalLinesPosition.Header" xml:space="preserve"> <value>Position of additional content</value> </data> <data name="Hosts_AdditionalLinesPosition_Bottom.Content" xml:space="preserve"> <value>Bottom</value> </data> <data name="Hosts_AdditionalLinesPosition_Top.Content" xml:space="preserve"> <value>Top</value> </data> <data name="Hosts_Behavior_GroupSettings.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="Launch_Hosts.Content" xml:space="preserve"> <value>Launch Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="LearnMore_Hosts.Text" xml:space="preserve"> <value>Learn more about Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Oobe_Hosts.Description" xml:space="preserve"> <value>Hosts File Editor is a quick and simple utility for managing hosts file.</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Oobe_Hosts.Title" xml:space="preserve"> <value>Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Hosts_Toggle_LaunchAdministrator.Description" xml:space="preserve"> <value>Needs to be launched as administrator in order to make changes to the hosts file</value> </data> <data name="Hosts_Toggle_LaunchAdministrator.Header" xml:space="preserve"> <value>Launch as administrator</value> </data> <data name="ShortcutGuide_PressTimeForTaskbarIconShortcuts.Header" xml:space="preserve"> <value>Press duration before showing taskbar icon shortcuts (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="FileLocksmith.ModuleDescription" xml:space="preserve"> <value>A Windows shell extension to find out which processes are using the selected files and directories.</value> </data> <data name="FileLocksmith.ModuleTitle" xml:space="preserve"> <value>File Locksmith</value> </data> <data name="Shell_FileLocksmith.Content" xml:space="preserve"> <value>File Locksmith</value> <comment>Product name: Navigation view item name for FileLocksmith</comment> </data> <data name="FileLocksmith_Enable_FileLocksmith.Header" xml:space="preserve"> <value>Enable File Locksmith</value> <comment>File Locksmith is the name of the utility</comment> </data> <data name="FileLocksmith_Toggle_StandardContextMenu.Content" xml:space="preserve"> <value>Default and extended context menu</value> </data> <data name="FileLocksmith_Toggle_ExtendedContextMenu.Content" xml:space="preserve"> <value>Extended context menu only</value> </data> <data name="FileLocksmith_Toggle_ContextMenu.Header" xml:space="preserve"> <value>Show File Locksmith in</value> </data> <data name="FileLocksmith_ShellIntegration.Header" xml:space="preserve"> <value>Shell integration</value> <comment>This refers to directly integrating in with Windows</comment> </data> <data name="GPO_IsSettingForced.Title" xml:space="preserve"> <value>This setting is enforced by your System Administrator.</value> </data> <data name="Hosts_AdditionalLinesPosition.Description" xml:space="preserve"> <value>Additional content includes the file header and lines that can't parse</value> </data> <data name="TextExtractor_Languages.Header" xml:space="preserve"> <value>Preferred language</value> </data> <data name="Alternate_OOBE_AlwaysOnTop_Description.Text" xml:space="preserve"> <value>Pin a window so that:</value> </data> <data name="Alternate_OOBE_AlwaysOnTop_Title.Text" xml:space="preserve"> <value>Always On Top</value> </data> <data name="Alternate_OOBE_ColorPicker_Description.Text" xml:space="preserve"> <value>To pick a color:</value> </data> <data name="Alternate_OOBE_ColorPicker_Title.Text" xml:space="preserve"> <value>Color Picker</value> </data> <data name="Alternate_OOBE_Description.Text" xml:space="preserve"> <value>Here are a few shortcuts to get you started:</value> </data> <data name="Alternate_OOBE_FancyZones_Description.Text" xml:space="preserve"> <value>To open the FancyZones editor, press:</value> </data> <data name="Alternate_OOBE_FancyZones_Title.Text" xml:space="preserve"> <value>FancyZones</value> </data> <data name="Alternate_OOBE_Run_Description.Text" xml:space="preserve"> <value>Get access to your files and more:</value> </data> <data name="Alternate_OOBE_Run_Title.Text" xml:space="preserve"> <value>PowerToys Run</value> </data> <data name="General_Experimentation.Header" xml:space="preserve"> <value>Experimentation</value> </data> <data name="GeneralPage_EnableExperimentation.Description" xml:space="preserve"> <value>Note: Only Windows Insider builds may be selected for experimentation</value> </data> <data name="GeneralPage_EnableExperimentation.Header" xml:space="preserve"> <value>Allow experimentation with new features</value> </data> <data name="GPO_ExperimentationIsDisallowed.Title" xml:space="preserve"> <value>The system administrator has disabled experimentation.</value> </data> <data name="Shell_PastePlain.Content" xml:space="preserve"> <value>Paste As Plain Text</value> <comment>Product name: Navigation view item name for Paste as Plain Text</comment> </data> <data name="PastePlain.ModuleDescription" xml:space="preserve"> <value>Paste As Plain Text is a quick shortcut for pasting the text contents of your clipboard without formatting. Note: the formatted text in the clipboard is replaced with the unformatted text.</value> </data> <data name="PastePlain.ModuleTitle" xml:space="preserve"> <value>Paste As Plain Text</value> </data> <data name="PastePlain_Cancel" xml:space="preserve"> <value>cancel</value> </data> <data name="PastePlain_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Paste As Plain Text</value> </data> <data name="Oobe_PastePlain.Description" xml:space="preserve"> <value>Paste As Plain Text strips rich formatting from your clipboard data and pastes it as non-formatted text.</value> </data> <data name="Oobe_PastePlain.Title" xml:space="preserve"> <value>Paste As Plain Text</value> </data> <data name="Oobe_PastePlain_HowToUse.Text" xml:space="preserve"> <value>to paste your clipboard data as plain text. Note: this will replace the formatted text in your clipboard with the plain text.</value> </data> <data name="AllAppsTxt.Text" xml:space="preserve"> <value>All apps</value> </data> <data name="BackBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Back</value> </data> <data name="BackLabel.Text" xml:space="preserve"> <value>Back</value> </data> <data name="BugReportBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Bug report</value> </data> <data name="BugReportTooltip.Text" xml:space="preserve"> <value>Bug report</value> </data> <data name="DocsBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Documentation</value> </data> <data name="DocsTooltip.Text" xml:space="preserve"> <value>Documentation</value> </data> <data name="FZEditorString" xml:space="preserve"> <value>FancyZones Editor</value> <comment>Do not localize this string</comment> </data> <data name="MoreBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>More</value> </data> <data name="MoreLabel.Text" xml:space="preserve"> <value>More</value> </data> <data name="SettingsBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Settings</value> </data> <data name="SettingsTooltip.Text" xml:space="preserve"> <value>Settings</value> </data> <data name="ShortcutsTxt.Text" xml:space="preserve"> <value>Shortcuts</value> </data> <data name="UpdateAvailable.Title" xml:space="preserve"> <value>Update available</value> </data> <data name="FileExplorerPreview_Toggle_Monaco_Max_File_Size.Header" xml:space="preserve"> <value>Maximum file size to preview</value> <comment>Size refers to the disk space used by a file</comment> </data> <data name="FileExplorerPreview_Toggle_Monaco_Max_File_Size.Description" xml:space="preserve"> <value>The maximum size, in kilobytes, for files to be displayed. This is a safety mechanism to prevent loading large files into RAM.</value> <comment>"RAM" refers to random access memory; "size" refers to disk space; "bytes" refer to the measurement unit</comment> </data> <data name="RegistryPreview.ModuleDescription" xml:space="preserve"> <value>A quick little utility to visualize and edit complex Windows Registry files.</value> </data> <data name="RegistryPreview.ModuleTitle" xml:space="preserve"> <value>Registry Preview</value> </data> <data name="Shell_RegistryPreview.Content" xml:space="preserve"> <value>Registry Preview</value> <comment>Product name: Navigation view item name for Registry Preview</comment> </data> <data name="RegistryPreview_Enable_RegistryPreview.Header" xml:space="preserve"> <value>Enable Registry Preview</value> <comment>Registry Preview is the name of the utility</comment> </data> <data name="Oobe_RegistryPreview_HowToUse.Text" xml:space="preserve"> <value>In File Explorer, right-click a .REG file and select **Preview** from the context menu.</value> </data> <data name="Oobe_RegistryPreview_TipsAndTricks.Text" xml:space="preserve"> <value>You can preview or edit Registry files in File Explorer or by opening the app from the PowerToys launcher.</value> </data> <data name="Oobe_RegistryPreview.Description" xml:space="preserve"> <value>Registry Preview is a quick little utility to visualize and edit complex Windows Registry files.</value> </data> <data name="Oobe_RegistryPreview.Title" xml:space="preserve"> <value>Registry Preview</value> <comment>Do not localize this string</comment> </data> <data name="LearnMore_RegistryPreview.Text" xml:space="preserve"> <value>Learn more about Registry Preview</value> <comment>Registry Preview is a product name, do not loc</comment> </data> <data name="Launch_RegistryPreview.Content" xml:space="preserve"> <value>Launch Registry Preview</value> <comment>"Registry Preview" is the name of the utility</comment> </data> <data name="MouseUtils_MouseJump.Description" xml:space="preserve"> <value>Quickly move the mouse pointer long distances.</value> <comment>"Mouse Jump" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_MouseJump.Header" xml:space="preserve"> <value>Mouse Jump</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_MouseJump_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to turn on or off this mode</value> </data> <data name="MouseUtils_MouseJump_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MouseUtils_Enable_MouseJump.Header" xml:space="preserve"> <value>Enable Mouse Jump</value> <comment>"Mouse Jump" is the name of the utility.</comment> </data> <data name="GPO_AutoDownloadUpdatesIsDisabled.Title" xml:space="preserve"> <value>The system administrator has disabled the automatic download of updates.</value> </data> <data name="Hosts_Toggle_LoopbackDuplicates.Description" xml:space="preserve"> <value>127.0.0.1, ::1, ...</value> <comment>"127.0.0.1 and ::1" are well known loopback addresses, do not loc</comment> </data> <data name="Hosts_Toggle_LoopbackDuplicates.Header" xml:space="preserve"> <value>Consider loopback addresses as duplicates</value> </data> <data name="RegistryPreview_Launch_GroupSettings.Header" xml:space="preserve"> <value>Launch</value> </data> <data name="RegistryPreview_LaunchButton_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Launch Registry Preview</value> </data> <data name="RegistryPreview_LaunchButtonControl.Header" xml:space="preserve"> <value>Launch Registry Preview</value> </data> <data name="RegistryPreview_DefaultRegApp.Header" xml:space="preserve"> <value>Default app</value> </data> <data name="RegistryPreview_DefaultRegApp.Description" xml:space="preserve"> <value>Make Registry Preview default app for opening .reg files</value> <comment>Registry Preview is app name. Do not localize.</comment> </data> <data name="PastePlain_ShortcutWarning.Title" xml:space="preserve"> <value>Using this shortcut may prevent non-text paste actions (e.g. images, files) or built-in paste plain text actions in other applications from functioning.</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize.Header" xml:space="preserve"> <value>Thumbnail Size</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Description_Prefix.Text" xml:space="preserve"> <value>Constrain thumbnail image size to a maximum of</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Description_Suffix.Text" xml:space="preserve"> <value>pixels</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Edit_Height.Header" xml:space="preserve"> <value>Maximum height (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Edit_Width.Header" xml:space="preserve"> <value>Maximum width (px)</value> <comment>px = pixels</comment> </data> <data name="Oobe_Peek.Description" xml:space="preserve"> <value>A lightning fast file preview feature for Windows.</value> </data> <data name="Oobe_Peek.Title" xml:space="preserve"> <value>Peek</value> </data> <data name="Oobe_Peek_HowToUse.Text" xml:space="preserve"> <value>to preview the file that's currently selected in File Explorer.</value> </data> <data name="MWB_PCNameLabel.PlaceholderText" xml:space="preserve"> <value>Device name</value> </data> <data name="MWB_SecurityKeyLabel.PlaceholderText" xml:space="preserve"> <value>Security key</value> </data> <data name="Hosts_Encoding.Description" xml:space="preserve"> <value>Choose the encoding of the hosts file</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Hosts_Encoding.Header" xml:space="preserve"> <value>Encoding</value> </data> <data name="Hosts_Encoding_Utf8.Content" xml:space="preserve"> <value>UTF-8</value> </data> <data name="Hosts_Encoding_Utf8Bom.Content" xml:space="preserve"> <value>UTF-8 with BOM</value> </data> <data name="MouseUtils_MouseHighlighter_AlwaysColor.Header" xml:space="preserve"> <value>Always highlight color</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsAutoHide.Content" xml:space="preserve"> <value>Automatically hide crosshairs when the mouse pointer is hidden</value> </data> <data name="MouseUtils_AutoActivate.Content" xml:space="preserve"> <value>Automatically activate on utility startup</value> </data> <data name="Run_FindMorePlugins.Text" xml:space="preserve"> <value>Find more plugins</value> </data> <data name="Run_PluginUseFindMorePlugins.Content" xml:space="preserve"> <value>Find more plugins</value> </data> <data name="Run_SomePluginsAreGpoManaged.Title" xml:space="preserve"> <value>The system administrator is managing the enabled state of some plugins.</value> </data> <data name="AlwaysOnTop_FrameOpacity.Header" xml:space="preserve"> <value>Opacity (%)</value> </data> <data name="MouseUtils_FindMyMouse_ActivationCustomizedShortcut.Content" xml:space="preserve"> <value>Custom shortcut</value> </data> <data name="MouseUtils_FindMyMouse_ActivationDoubleRightControlPress.Content" xml:space="preserve"> <value>Press Right Control twice</value> <comment>Right control is the physical key on the keyboard.</comment> </data> <data name="MouseUtils_FindMyMouse_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to turn on or off this mode</value> </data> <data name="MouseUtils_FindMyMouse_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="SettingsWindow_AdminTitle" xml:space="preserve"> <value>Administrator: PowerToys Settings</value> <comment>Title of the settings window when running as administrator</comment> </data> <data name="DashboardTitle.Text" xml:space="preserve"> <value>Dashboard</value> </data> <data name="Shell_Dashboard.Content" xml:space="preserve"> <value>Dashboard</value> </data> <data name="GPO_IsSettingForcedText.Text" xml:space="preserve"> <value>This setting is enforced by your System Administrator.</value> </data> <data name="DisabledModules.Text" xml:space="preserve"> <value>Disabled modules</value> </data> <data name="EnabledModules.Text" xml:space="preserve"> <value>Enabled modules</value> </data> </root>
donlaci
8c22f0c48540793452b70d913b2a6a719c881a33
1f936df3ebce73b726ed11c9fa38fd477b4b0fbd
Can't we reuse uid's? Or is that against the idea of a unique identifier?
Jay-o-Way
350
microsoft/PowerToys
29,023
[Settings] Adding a Dashboard Panel
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request Adding a new Dashboard panel to the settings app. It contains the active modules with a brief description, activation shortcut if present, launch button if reasonable and a quick link button to the module's settings page. The new dashboard panel contains a list of all the modules as well, where the user can toggle the modules' enabled/disabled state. ![Dashboard](https://github.com/microsoft/PowerToys/assets/9866362/a773ff5b-0321-4eb3-9c3d-b5b4df9a25f5) <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [X] **Closes:** #26816 - [ ] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected - [ ] **Tests:** Added/updated and all pass - [ ] **Localization:** All end user facing strings can be localized - [ ] **Dev docs:** Added/updated - [ ] **New binaries:** Added on the required places - [ ] [JSON for signing](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ESRPSigning_core.json) for new binaries - [ ] [WXS for installer](https://github.com/microsoft/PowerToys/blob/main/installer/PowerToysSetup/Product.wxs) for new binaries and localization folder - [ ] [YML for CI pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ci/templates/build-powertoys-steps.yml) for new test projects - [ ] [YML for signed pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/release.yml) - [ ] **Documentation updated:** If checked, please file a pull request on [our docs repo](https://github.com/MicrosoftDocs/windows-uwp/tree/docs/hub/powertoys) and link it here: #xxx <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed Tested locally
null
2023-10-04 18:35:54+00:00
2023-10-20 12:23:25+00:00
src/settings-ui/Settings.UI/Strings/en-us/Resources.resw
<?xml version="1.0" encoding="utf-8"?> <root> <!-- Microsoft ResX Schema Version 2.0 The primary goals of this format is to allow a simple XML format that is mostly human readable. The generation and parsing of the various data types are done through the TypeConverter classes associated with the data types. Example: ... ado.net/XML headers & schema ... <resheader name="resmimetype">text/microsoft-resx</resheader> <resheader name="version">2.0</resheader> <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader> <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader> <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data> <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data> <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64"> <value>[base64 mime encoded serialized .NET Framework object]</value> </data> <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value> <comment>This is a comment</comment> </data> There are any number of "resheader" rows that contain simple name/value pairs. Each data row contains a name, and value. The row also contains a type or mimetype. Type corresponds to a .NET class that support text/value conversion through the TypeConverter architecture. Classes that don't support this are serialized and stored with the mimetype set. The mimetype is used for serialized objects, and tells the ResXResourceReader how to depersist the object. This is currently not extensible. For a given mimetype the value must be set accordingly: Note - application/x-microsoft.net.object.binary.base64 is the format that the ResXResourceWriter will generate, however the reader can read any of the formats listed below. mimetype: application/x-microsoft.net.object.binary.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.soap.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Soap.SoapFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.bytearray.base64 value : The object must be serialized into a byte array : using a System.ComponentModel.TypeConverter : and then encoded with base64 encoding. --> <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> <xsd:import namespace="http://www.w3.org/XML/1998/namespace" /> <xsd:element name="root" msdata:IsDataSet="true"> <xsd:complexType> <xsd:choice maxOccurs="unbounded"> <xsd:element name="metadata"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" /> </xsd:sequence> <xsd:attribute name="name" use="required" type="xsd:string" /> <xsd:attribute name="type" type="xsd:string" /> <xsd:attribute name="mimetype" type="xsd:string" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="assembly"> <xsd:complexType> <xsd:attribute name="alias" type="xsd:string" /> <xsd:attribute name="name" type="xsd:string" /> </xsd:complexType> </xsd:element> <xsd:element name="data"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" /> <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="resheader"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" /> </xsd:complexType> </xsd:element> </xsd:choice> </xsd:complexType> </xsd:element> </xsd:schema> <resheader name="resmimetype"> <value>text/microsoft-resx</value> </resheader> <resheader name="version"> <value>2.0</value> </resheader> <resheader name="reader"> <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <resheader name="writer"> <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <data name="Attribution_Rooler.Text" xml:space="preserve"> <value>Inspired by Rooler</value> <comment>Rooler is a name of the tool.</comment> </data> <data name="Shell_VideoConference.Content" xml:space="preserve"> <value>Video Conference Mute</value> <comment>Navigation view item name for Video Conference</comment> </data> <data name="Shell_MeasureTool.Content" xml:space="preserve"> <value>Screen Ruler</value> <comment>Product name: Navigation view item name for Screen Ruler</comment> </data> <data name="MeasureTool.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="MeasureTool.ModuleDescription" xml:space="preserve"> <value>Screen Ruler is a quick and easy way to measure pixels on your screen.</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool.ModuleTitle" xml:space="preserve"> <value>Screen Ruler</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool_ActivationSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="MeasureTool_Settings.Header" xml:space="preserve"> <value>Behavior</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MeasureTool_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to bring up the command bar</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool_DefaultMeasureStyle.Header" xml:space="preserve"> <value>Default measure style</value> </data> <data name="MeasureTool_DefaultMeasureStyle.Description" xml:space="preserve"> <value>The utility will start having the selected style activated</value> </data> <data name="MeasureTool_DefaultMeasureStyle_None.Content" xml:space="preserve"> <value>None</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Bounds.Content" xml:space="preserve"> <value>Bounds</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Spacing.Content" xml:space="preserve"> <value>Spacing</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Horizontal_Spacing.Content" xml:space="preserve"> <value>Horizontal spacing</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Vertical_Spacing.Content" xml:space="preserve"> <value>Vertical spacing</value> </data> <data name="MeasureTool_UnitsOfMeasure.Header" xml:space="preserve"> <value>Units of measurement</value> </data> <data name="MeasureTool_UnitsOfMeasure_Pixels.Content" xml:space="preserve"> <value>Pixels</value> </data> <data name="MeasureTool_UnitsOfMeasure_Inches.Content" xml:space="preserve"> <value>Inches</value> </data> <data name="MeasureTool_UnitsOfMeasure_Centimeters.Content" xml:space="preserve"> <value>Centimeters</value> </data> <data name="MeasureTool_PixelTolerance.Header" xml:space="preserve"> <value>Pixel tolerance for edge detection</value> </data> <data name="MeasureTool_MeasureCrossColor.Header" xml:space="preserve"> <value>Line color</value> </data> <data name="MeasureTool_ContinuousCapture.Header" xml:space="preserve"> <value>Capture screen continuously during measuring</value> </data> <data name="MeasureTool_ContinuousCapture.Description" xml:space="preserve"> <value>Refresh screen contexts in real-time instead of making a screenshot once</value> </data> <data name="MeasureTool_PerColorChannelEdgeDetection.Header" xml:space="preserve"> <value>Per color channel edge detection</value> </data> <data name="MeasureTool_PerColorChannelEdgeDetection.Description" xml:space="preserve"> <value>If enabled, test that all color channels are within a tolerance distance from each other. Otherwise, check that the sum of all color channels differences is smaller than the tolerance.</value> </data> <data name="MeasureTool_DrawFeetOnCross.Header" xml:space="preserve"> <value>Draw feet on cross</value> </data> <data name="MeasureTool_DrawFeetOnCross.Description" xml:space="preserve"> <value>Adds feet to the end of cross lines</value> </data> <data name="MeasureTool_EnableMeasureTool.Header" xml:space="preserve"> <value>Enable Screen Ruler</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MouseWithoutBorders_ActivationSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="MouseWithoutBorders_DeviceLayoutSettings.Header" xml:space="preserve"> <value>Device layout</value> </data> <data name="MouseWithoutBorders_DeviceLayoutSettings.Description" xml:space="preserve"> <value>Drag and drop a machine to rearrange the order.</value> </data> <data name="MouseWithoutBorders_CannotDragDropAsAdmin.Title" xml:space="preserve"> <value>It is not possible to use drag and drop while running PowerToys elevated. As a workaround, please restart PowerToys without elevation to edit the device layout.</value> </data> <data name="MouseWithoutBorders_KeySettings.Header" xml:space="preserve"> <value>Encryption key</value> </data> <data name="MouseWithoutBorders_SecurityKey.Header" xml:space="preserve"> <value>Security key</value> </data> <data name="MouseWithoutBorders_SecurityKey.Description" xml:space="preserve"> <value>The key must be auto generated in one machine by clicking on New Key, then typed in other machines</value> </data> <data name="MouseWithoutBorders_NewKey.Content" xml:space="preserve"> <value>New key</value> </data> <data name="MouseWithoutBorders_CopyMachineName.Text" xml:space="preserve"> <value>Copy to clipboard</value> </data> <data name="MouseWithoutBorders_ReconnectButton.Text" xml:space="preserve"> <value>Refresh connections</value> </data> <data name="MouseWithoutBorders_ReconnectTooltip.Text" xml:space="preserve"> <value>Reestablishes connections with other devices if you are experiencing issues.</value> </data> <data name="MouseWithoutBorders_ThisMachineNameLabel.Header" xml:space="preserve"> <value>Host name of this device</value> </data> <data name="MouseWithoutBorders_Connect.Content" xml:space="preserve"> <value>Connect</value> </data> <data name="MouseWithoutBorders_UninstallService.Header" xml:space="preserve"> <value>Uninstall service</value> </data> <data name="MouseWithoutBorders_UninstallService.Description" xml:space="preserve"> <value>Removes the service from the computer. Needs to run as administrator.</value> </data> <data name="MouseWithoutBorders_Settings.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="MouseWithoutBorders_TroubleShooting.Header" xml:space="preserve"> <value>Troubleshooting</value> </data> <data name="MouseWithoutBorders_AddFirewallRuleButtonControl.Header" xml:space="preserve"> <value>Add a firewall rule for Mouse Without Borders</value> <comment>"Mouse Without Borders" is a product name</comment> </data> <data name="MouseWithoutBorders_AddFirewallRuleButtonControl.Description" xml:space="preserve"> <value>Adding a firewall rule might help solve connection issues.</value> </data> <data name="MouseWithoutBorders_RunAsAdminText.Title" xml:space="preserve"> <value>You need to run as administrator to modify this setting.</value> </data> <data name="MouseWithoutBorders_ServiceUserUninstallWarning.Title" xml:space="preserve"> <value>If PowerToys is installed as a user, uninstalling/upgrading may require the Mouse Without Borders service to be removed manually later.</value> </data> <data name="MouseWithoutBorders_ServiceSettings.Header" xml:space="preserve"> <value>Service</value> </data> <data name="MouseWithoutBorders_Toggle_Enable.Header" xml:space="preserve"> <value>Enable Mouse Without Borders</value> </data> <data name="MouseWithoutBorders.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="MouseWithoutBorders.ModuleDescription" xml:space="preserve"> <value>Mouse Without Borders is a quick and easy way to move your cursor across multiple devices.</value> <comment>"Mouse Without Borders" is the name of the utility</comment> </data> <data name="MouseWithoutBorders.ModuleTitle" xml:space="preserve"> <value>Mouse Without Borders</value> <comment>"Mouse Without Borders" is the name of the utility</comment> </data> <data name="MouseWithoutBorders_UseService.Header" xml:space="preserve"> <value>Use Service</value> </data> <data name="MouseWithoutBorders_UseService.Description" xml:space="preserve"> <value>Runs in service mode, that allows MWB to control remote machines when they're locked. Also allows control of system and administrator applications.</value> </data> <data name="MouseWithoutBorders_MatrixOneRow.Header" xml:space="preserve"> <value>Devices in a single row</value> </data> <data name="MouseWithoutBorders_MatrixOneRow.Description" xml:space="preserve"> <value>Sets whether the devices are aligned on a single row. A two by two matrix is considered otherwise.</value> </data> <data name="MouseWithoutBorders_WrapMouse.Header" xml:space="preserve"> <value>Wrap mouse</value> </data> <data name="MouseWithoutBorders_WrapMouse.Description" xml:space="preserve"> <value>Move control back to the first machine when mouse moves past the last one.</value> </data> <data name="MouseWithoutBorders_ShareClipboard.Header" xml:space="preserve"> <value>Share clipboard</value> </data> <data name="MouseWithoutBorders_TransferFile.Header" xml:space="preserve"> <value>Transfer file</value> </data> <data name="MouseWithoutBorders_HideMouseAtScreenEdge.Header" xml:space="preserve"> <value>Hide mouse at the screen edge</value> </data> <data name="MouseWithoutBorders_DrawMouseCursor.Header" xml:space="preserve"> <value>Draw mouse cursor</value> </data> <data name="MouseWithoutBorders_ValidateRemoteMachineIP.Header" xml:space="preserve"> <value>Validate remote machine IP</value> </data> <data name="MouseWithoutBorders_SameSubnetOnly.Header" xml:space="preserve"> <value>Same subnet only</value> </data> <data name="MouseWithoutBorders_BlockScreenSaverOnOtherMachines.Header" xml:space="preserve"> <value>Block screen saver on other machines</value> </data> <data name="MouseWithoutBorders_MoveMouseRelatively.Header" xml:space="preserve"> <value>Move mouse relatively</value> </data> <data name="MouseWithoutBorders_BlockMouseAtScreenCorners.Header" xml:space="preserve"> <value>Block mouse at screen corners</value> </data> <data name="MouseWithoutBorders_ShowClipboardAndNetworkStatusMessages.Header" xml:space="preserve"> <value>Show clipboard and network status messages</value> </data> <data name="MouseWithoutBorders_ShowOriginalUI.Header" xml:space="preserve"> <value>Show the original Mouse Without Borders UI</value> </data> <data name="MouseWithoutBorders_ShowOriginalUI.Description" xml:space="preserve"> <value>This is accessible from the system tray and requires a restart.</value> </data> <data name="MouseWithoutBorders_ShareClipboard.Description" xml:space="preserve"> <value>If share clipboard stops working, Ctrl+Alt+Del then Esc may solve the problem.</value> </data> <data name="MouseWithoutBorders_TransferFile.Description" xml:space="preserve"> <value>If a file (&lt;100MB) is copied, it will be transferred to the remote machine clipboard.</value> </data> <data name="MouseWithoutBorders_HideMouseAtScreenEdge.Description" xml:space="preserve"> <value>Hide the mouse cursor at the top edge of the screen when switching to other machine. This option also steals the focus from any full-screen app to ensure the keyboard input is redirected.</value> </data> <data name="MouseWithoutBorders_DrawMouseCursor.Description" xml:space="preserve"> <value>Mouse cursor may not be visible in Windows 10 and later versions of Windows when there is no physical mouse attached.</value> </data> <data name="MouseWithoutBorders_ValidateRemoteMachineIP.Description" xml:space="preserve"> <value>Reverse DNS lookup to validate machine IP Address.</value> </data> <data name="MouseWithoutBorders_SameSubnetOnly.Description" xml:space="preserve"> <value>Only connect to machines in the same intranet NNN.NNN.*.* (only works when both machines have IPv4 enabled)</value> </data> <data name="MouseWithoutBorders_IPAddressMapping_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: MyLaptop 192.168.0.24</value> <comment>Don't translate MyLaptop</comment> </data> <data name="MouseWithoutBorders_IPAddressMapping.Header" xml:space="preserve"> <value>IP address mapping</value> </data> <data name="MouseWithoutBorders_IPAddressMapping.Description" xml:space="preserve"> <value>Resolve machine's IP address using manually entered mappings below.</value> </data> <data name="MouseWithoutBorders_BlockScreenSaverOnOtherMachines.Description" xml:space="preserve"> <value>Prevent screen saver from starting on other machines when user is actively working on this machine.</value> </data> <data name="MouseWithoutBorders_MoveMouseRelatively.Description" xml:space="preserve"> <value>Use this option when remote machine's monitor settings are different, or remote machine has multiple monitors.</value> </data> <data name="MouseWithoutBorders_BlockMouseAtScreenCorners.Description" xml:space="preserve"> <value>To avoid accident machine-switch at screen corners.</value> </data> <data name="MouseWithoutBorders_ShowClipboardAndNetworkStatusMessages.Description" xml:space="preserve"> <value>Show clipboard activities and network status in system tray notifications</value> </data> <data name="MouseWithoutBorders_KeyboardShortcuts_Group.Header" xml:space="preserve"> <value>Keyboard shortcuts</value> <comment>keyboard is the hardware peripheral</comment> </data> <data name="MouseWithoutBorders_AdvancedSettings_Group.Header" xml:space="preserve"> <value>Advanced Settings</value> </data> <data name="MouseWithoutBorders_EasyMouseOption.Header" xml:space="preserve"> <value>Easy Mouse: move between machines by moving the mouse pointer to the screen edges.</value> </data> <data name="MouseWithoutBorders_EasyMouseOption.Description" xml:space="preserve"> <value>Can also be set to move only when pressing Shift or Ctrl.</value> <comment>Shift and Ctrl are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_EasyMouseOption_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_EasyMouseOption_Enabled.Content" xml:space="preserve"> <value>Enabled</value> </data> <data name="MouseWithoutBorders_EasyMouseOption_Ctrl.Content" xml:space="preserve"> <value>Ctrl</value> <comment>This is the Ctrl keyboard key</comment> </data> <data name="MouseWithoutBorders_EasyMouseOption_Shift.Content" xml:space="preserve"> <value>Shift</value> <comment>This is the Shift keyboard key</comment> </data> <data name="MouseWithoutBorders_LockMachinesShortcut.Header" xml:space="preserve"> <value>Shortcut to lock all machines.</value> </data> <data name="MouseWithoutBorders_LockMachinesShortcut.Description" xml:space="preserve"> <value>Hit this hotkey twice to lock all machines. Note: Only the machines which have the same shortcut configured will be locked.</value> </data> <data name="MouseWithoutBorders_ToggleEasyMouseShortcut.Header" xml:space="preserve"> <value>Shortcut to toggle Easy Mouse.</value> <comment>Ctrl and Alt are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_ToggleEasyMouseShortcut.Description" xml:space="preserve"> <value>Only works if EasyMouse is set to Enabled or Disabled.</value> </data> <data name="MouseWithoutBorders_ToggleEasyMouseShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut.Header" xml:space="preserve"> <value>Shortcut to switch between machines. Ctrl+Alt+:</value> <comment>Ctrl and Alt are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut.Description" xml:space="preserve"> <value>Click on Ctrl+Alt+ the chosen option to switch between machines.</value> <comment>Ctrl and Alt are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut_F1.Content" xml:space="preserve"> <value>F1, F2, F3, F4</value> <comment>Don't localize. These are keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut_1.Content" xml:space="preserve"> <value>1, 2, 3, 4</value> <comment>Don't localize. These are keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_LockMachinesShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_ReconnectShortcut.Header" xml:space="preserve"> <value>Shortcut to try reconnecting</value> </data> <data name="MouseWithoutBorders_ReconnectShortcut.Description" xml:space="preserve"> <value>Just in case the connection is lost for any reason.</value> </data> <data name="MouseWithoutBorders_ReconnectShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut.Header" xml:space="preserve"> <value>Shortcut to switch to multiple machine mode.</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut.Description" xml:space="preserve"> <value>Allows controlling all computers at once.</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut_Ctrl3.Content" xml:space="preserve"> <value>Ctrl three times</value> <comment>This is the Ctrl keyboard key</comment> </data> <data name="VideoConference_Enable.Header" xml:space="preserve"> <value>Enable Video Conference Mute</value> </data> <data name="VideoConference.ModuleDescription" xml:space="preserve"> <value>Video Conference Mute is a quick and easy way to do a global "mute" of both your microphone and webcam. Disabling this module or closing PowerToys will unmute the microphone and camera.</value> </data> <data name="VideoConference_CameraAndMicrophoneMuteHotkeyControl_Header.Header" xml:space="preserve"> <value>Mute camera &amp; microphone</value> </data> <data name="VideoConference_MicrophoneMuteHotkeyControl_Header.Header" xml:space="preserve"> <value>Mute microphone</value> </data> <data name="VideoConference_MicrophonePushToTalkHotkeyControl_Header.Header" xml:space="preserve"> <value>Push to talk</value> </data> <data name="VideoConference_CameraMuteHotkeyControl_Header.Header" xml:space="preserve"> <value>Mute camera</value> </data> <data name="VideoConference_SelectedCamera.Header" xml:space="preserve"> <value>Selected camera</value> </data> <data name="VideoConference_SelectedMicrophone.Header" xml:space="preserve"> <value>Selected microphone</value> </data> <data name="VideoConference_PushToReverse.Header" xml:space="preserve"> <value>Push to reverse</value> </data> <data name="VideoConference_PushToReverse.Description" xml:space="preserve"> <value>If enabled, allows both push to talk and push to mute, depending on microphone state</value> </data> <data name="VideoConference_CameraOverlayImagePathHeader.Header" xml:space="preserve"> <value>Image displayed when camera is muted</value> </data> <data name="VideoConference_ToolbarPosition.Header" xml:space="preserve"> <value>Toolbar position</value> </data> <data name="VideoConference_ToolbarPosition_TopCenter.Content" xml:space="preserve"> <value>Top center</value> </data> <data name="VideoConference_ToolbarPosition_TopLeftCorner.Content" xml:space="preserve"> <value>Top left corner</value> </data> <data name="VideoConference_ToolbarPosition_TopRightCorner.Content" xml:space="preserve"> <value>Top right corner</value> </data> <data name="VideoConference_ToolbarPosition_BottomLeftCorner.Content" xml:space="preserve"> <value>Bottom left corner</value> </data> <data name="VideoConference_ToolbarPosition_BottomCenter.Content" xml:space="preserve"> <value>Bottom center</value> </data> <data name="VideoConference_ToolbarPosition_BottomRightCorner.Content" xml:space="preserve"> <value>Bottom right corner</value> </data> <data name="VideoConference_ToolbarMonitor.Header" xml:space="preserve"> <value>Show toolbar on</value> </data> <data name="VideoConference_ToolbarMonitor_Main.Content" xml:space="preserve"> <value>Main monitor</value> </data> <data name="VideoConference_ToolbarMonitor_UnderCursor.Content" xml:space="preserve"> <value>Monitor under cursor</value> </data> <data name="VideoConference_ToolbarMonitor_ActiveWindow.Content" xml:space="preserve"> <value>Active window monitor</value> </data> <data name="VideoConference_ToolbarMonitor_All.Content" xml:space="preserve"> <value>All monitors</value> </data> <data name="VideoConference_ToolbarHide.Header" xml:space="preserve"> <value>Hide toolbar</value> </data> <data name="VideoConference_ToolbarHideMuted.Content" xml:space="preserve"> <value>When both camera and microphone are muted</value> </data> <data name="VideoConference_ToolbarHideNever.Content" xml:space="preserve"> <value>Never</value> </data> <data name="VideoConference_ToolbarHideUnmuted.Content" xml:space="preserve"> <value>When both camera and microphone are unmuted</value> </data> <data name="VideoConference_ToolbarHideTimeout.Content" xml:space="preserve"> <value>After timeout</value> </data> <data name="VideoConference.ModuleTitle" xml:space="preserve"> <value>Video Conference Mute</value> </data> <data name="VideoConference_Camera.Header" xml:space="preserve"> <value>Camera</value> </data> <data name="VideoConference_Camera.Description" xml:space="preserve"> <value>To use this feature, make sure to select PowerToys VideoConference Mute as your camera source in your apps.</value> </data> <data name="VideoConference_Microphone.Header" xml:space="preserve"> <value>Microphone</value> </data> <data name="VideoConference_Toolbar.Header" xml:space="preserve"> <value>Toolbar</value> </data> <data name="VideoConference_Behavior.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="VideoConference_StartupAction.Header" xml:space="preserve"> <value>Startup action</value> </data> <data name="VideoConference_StartupActionNothing.Content" xml:space="preserve"> <value>Nothing</value> </data> <data name="VideoConference_StartupActionUnmute.Content" xml:space="preserve"> <value>Unmute</value> </data> <data name="VideoConference_StartupActionMute.Content" xml:space="preserve"> <value>Mute</value> </data> <data name="VideoConference_Shortcuts.Header" xml:space="preserve"> <value>Shortcuts</value> </data> <data name="VideoConference_CameraOverlayImageAlt.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Camera overlay image preview</value> </data> <data name="VideoConference_CameraOverlayImageBrowse.Content" xml:space="preserve"> <value>Browse</value> </data> <data name="VideoConference_CameraOverlayImageClear.Content" xml:space="preserve"> <value>Clear</value> </data> <data name="Shell_General.Content" xml:space="preserve"> <value>General</value> <comment>Navigation view item name for General</comment> </data> <data name="Shell_Awake.Content" xml:space="preserve"> <value>Awake</value> <comment>Product name: Navigation view item name for Awake</comment> </data> <data name="Shell_PowerLauncher.Content" xml:space="preserve"> <value>PowerToys Run</value> <comment>Product name: Navigation view item name for PowerToys Run</comment> </data> <data name="Shell_PowerRename.Content" xml:space="preserve"> <value>PowerRename</value> <comment>Product name: Navigation view item name for PowerRename</comment> </data> <data name="Shell_ShortcutGuide.Content" xml:space="preserve"> <value>Shortcut Guide</value> <comment>Product name: Navigation view item name for Shortcut Guide</comment> </data> <data name="Shell_PowerPreview.Content" xml:space="preserve"> <value>File Explorer add-ons</value> <comment>Product name: Navigation view item name for File Explorer. Please use File Explorer as in the context of File Explorer in Windows</comment> </data> <data name="Shell_FancyZones.Content" xml:space="preserve"> <value>FancyZones</value> <comment>Product name: Navigation view item name for FancyZones</comment> </data> <data name="Shell_ImageResizer.Content" xml:space="preserve"> <value>Image Resizer</value> <comment>Product name: Navigation view item name for Image Resizer</comment> </data> <data name="Shell_ColorPicker.Content" xml:space="preserve"> <value>Color Picker</value> <comment>Product name: Navigation view item name for Color Picker</comment> </data> <data name="Shell_KeyboardManager.Content" xml:space="preserve"> <value>Keyboard Manager</value> <comment>Product name: Navigation view item name for Keyboard Manager</comment> </data> <data name="Shell_MouseWithoutBorders.Content" xml:space="preserve"> <value>Mouse Without Borders</value> <comment>Product name: Navigation view item name for Mouse Without Borders</comment> </data> <data name="Shell_MouseUtilities.Content" xml:space="preserve"> <value>Mouse utilities</value> <comment>Product name: Navigation view item name for Mouse utilities</comment> </data> <data name="Shell_NavigationMenu_Announce_Collapse" xml:space="preserve"> <value>Navigation closed</value> <comment>Accessibility announcement when the navigation pane collapses</comment> </data> <data name="Shell_NavigationMenu_Announce_Open" xml:space="preserve"> <value>Navigation opened</value> <comment>Accessibility announcement when the navigation pane opens</comment> </data> <data name="KeyboardManager_ConfigHeader.Text" xml:space="preserve"> <value>Current configuration</value> <comment>Keyboard Manager current configuration header</comment> </data> <data name="KeyboardManager.ModuleDescription" xml:space="preserve"> <value>Reconfigure your keyboard by remapping keys and shortcuts</value> <comment>Keyboard Manager page description</comment> </data> <data name="KeyboardManager_EnableToggle.Header" xml:space="preserve"> <value>Enable Keyboard Manager</value> <comment>Keyboard Manager enable toggle header. Do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="KeyboardManager_ProfileDescription.Text" xml:space="preserve"> <value>Select the profile to display the active key remap and shortcuts</value> <comment>Keyboard Manager configuration dropdown description</comment> </data> <data name="KeyboardManager_RemapKeyboardButton.Header" xml:space="preserve"> <value>Remap a key</value> <comment>Keyboard Manager remap keyboard button content</comment> </data> <data name="KeyboardManager_Keys.Header" xml:space="preserve"> <value>Keys</value> <comment>Keyboard Manager remap keyboard header</comment> </data> <data name="KeyboardManager_RemapShortcutsButton.Header" xml:space="preserve"> <value>Remap a shortcut</value> <comment>Keyboard Manager remap shortcuts button</comment> </data> <data name="KeyboardManager_Shortcuts.Header" xml:space="preserve"> <value>Shortcuts</value> <comment>Keyboard Manager remap keyboard header</comment> </data> <data name="KeyboardManager_All_Apps_Description" xml:space="preserve"> <value>All Apps</value> <comment>Should be the same as EditShortcuts_AllApps from keyboard manager editor</comment> </data> <data name="Shortcuts.Header" xml:space="preserve"> <value>Shortcuts</value> </data> <data name="Shortcut.Header" xml:space="preserve"> <value>Shortcut</value> </data> <data name="RemapKeysList.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Current Key Remappings</value> </data> <data name="RemapShortcutsList.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Current Shortcut Remappings</value> </data> <data name="KeyboardManager_RemappedKeysListItem.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Key Remapping</value> <comment>key as in keyboard key</comment> </data> <data name="KeyboardManager_RemappedShortcutsListItem.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Shortcut Remapping</value> </data> <data name="KeyboardManager_RemappedTo.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Remapped to</value> </data> <data name="KeyboardManager_ShortcutRemappedTo.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Remapped to</value> </data> <data name="KeyboardManager_TargetApp.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>For Target Application</value> <comment>What computer application would this be for</comment> </data> <data name="KeyboardManager_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Keyboard Manager</value> <comment>do not loc, product name</comment> </data> <data name="ColorPicker.ModuleDescription" xml:space="preserve"> <value>Quick and simple system-wide color picker.</value> </data> <data name="ColorPicker_EnableColorPicker.Header" xml:space="preserve"> <value>Enable Color Picker</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="ColorPicker_ChangeCursor.Content" xml:space="preserve"> <value>Change cursor when picking a color</value> </data> <data name="PowerLauncher.ModuleDescription" xml:space="preserve"> <value>A quick launcher that has additional capabilities without sacrificing performance.</value> </data> <data name="PowerLauncher_EnablePowerLauncher.Header" xml:space="preserve"> <value>Enable PowerToys Run</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="PowerLauncher_SearchResults.Header" xml:space="preserve"> <value>Search &amp; results</value> </data> <data name="PowerLauncher_SearchResultPreference.Header" xml:space="preserve"> <value>Search result preference</value> </data> <data name="PowerLauncher_UsePinyin.Header" xml:space="preserve"> <value>Use Pinyin</value> </data> <data name="PowerLauncher_UsePinyin.Description" xml:space="preserve"> <value>Experimental: Use Pinyin on the search query. May not work for every plugin.</value> </data> <data name="PowerLauncher_SearchResultPreference_MostRecentlyUsed" xml:space="preserve"> <value>Most recently used</value> </data> <data name="PowerLauncher_SearchResultPreference_AlphabeticalOrder" xml:space="preserve"> <value>Alphabetical order</value> </data> <data name="PowerLauncher_SearchResultPreference_RunningProcessesOpenApplications" xml:space="preserve"> <value>Running processes/open applications</value> </data> <data name="PowerLauncher_SearchTypePreference.Header" xml:space="preserve"> <value>Search type preference</value> </data> <data name="PowerLauncher_SearchTypePreference_ApplicationName" xml:space="preserve"> <value>Application name</value> </data> <data name="PowerLauncher_SearchTypePreference_StringInApplication" xml:space="preserve"> <value>A string that is contained in the application</value> </data> <data name="PowerLauncher_SearchTypePreference_ExecutableName" xml:space="preserve"> <value>Executable name</value> </data> <data name="PowerLauncher_MaximumNumberOfResults.Header" xml:space="preserve"> <value>Number of results shown before scrolling</value> </data> <data name="PowerLauncher_OpenPowerLauncher.Header" xml:space="preserve"> <value>Open PowerToys Run</value> </data> <data name="PowerLauncher_OpenFileLocation.Header" xml:space="preserve"> <value>Open file location</value> </data> <data name="PowerLauncher_CopyPathLocation.Header" xml:space="preserve"> <value>Copy path location</value> </data> <data name="PowerLauncher_OpenConsole.Header" xml:space="preserve"> <value>Open console</value> <comment>console refers to Windows command prompt</comment> </data> <data name="PowerLauncher_OverrideWinRKey.Content" xml:space="preserve"> <value>Override Win+R shortcut</value> </data> <data name="PowerLauncher_OverrideWinSKey.Content" xml:space="preserve"> <value>Override Win+S shortcut</value> </data> <data name="PowerLauncher_IgnoreHotkeysInFullScreen.Content" xml:space="preserve"> <value>Ignore shortcuts in fullscreen mode</value> </data> <data name="PowerLauncher_UseCentralizedKeyboardHook.Header" xml:space="preserve"> <value>Use centralized keyboard hook</value> </data> <data name="PowerLauncher_UseCentralizedKeyboardHook.Description" xml:space="preserve"> <value>Try this if there are issues with the shortcut (PowerToys Run might not get focus when triggered from an elevated window)</value> </data> <data name="PowerLauncher_ClearInputOnLaunch.Content" xml:space="preserve"> <value>Clear the previous query on launch</value> </data> <data name="PowerLauncher_TabSelectsContextButtons.Header" xml:space="preserve"> <value>Tab through context buttons</value> </data> <data name="PowerLauncher_TabSelectsContextButtons.Description" xml:space="preserve"> <value>Pressing tab will first select through the available context buttons of the current selection before moving onto the next result</value> </data> <data name="PowerLauncher_GenerateThumbnailsFromFiles.Header" xml:space="preserve"> <value>Generate thumbnails from files</value> </data> <data name="PowerLauncher_GenerateThumbnailsFromFiles.Description" xml:space="preserve"> <value>Results will try to generate thumbnails for files. Disabling this setting may increase stability and speed</value> </data> <data name="PowerLauncher_SearchQueryResultsWithDelay.Header" xml:space="preserve"> <value>Input Smoothing</value> <comment>This is about adding a delay to wait for more input before executing a search</comment> </data> <data name="PowerLauncher_SearchQueryResultsWithDelay.Description" xml:space="preserve"> <value>Wait for more input before searching. This reduces interface jumpiness and system load.</value> </data> <data name="PowerLauncher_FastSearchInputDelayMs.Header" xml:space="preserve"> <value>Immediate plugins</value> </data> <data name="PowerLauncher_FastSearchInputDelayMs.Description" xml:space="preserve"> <value>Affects the plugins that make the UI wait for their results by this amount. Recommended: 30-50 ms.</value> </data> <data name="PowerLauncher_SlowSearchInputDelayMs.Header" xml:space="preserve"> <value>Background execution plugins</value> </data> <data name="PowerLauncher_SlowSearchInputDelayMs.Description" xml:space="preserve"> <value>Affects the plugins that execute in the background by this amount. Recommended: 100-150 ms.</value> </data> <data name="PowerLauncher_SearchInputDelayMs.Header" xml:space="preserve"> <value>Fast plugin throttle (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="KeyboardManager_KeysMappingLayoutRightHeader.Text" xml:space="preserve"> <value>To:</value> <comment>Keyboard Manager mapping keys view right header</comment> </data> <data name="Appearance_GroupSettings.Text" xml:space="preserve"> <value>Appearance</value> </data> <data name="Fancyzones_ImageHyperlinkToDocs.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>FancyZones windows</value> <comment>do not loc the Product name</comment> </data> <data name="FancyZones.ModuleDescription" xml:space="preserve"> <value>Create window layouts to help make multi-tasking easy.</value> <comment>windows refers to application windows</comment> </data> <data name="FancyZones_DisplayOrWorkAreaChangeMoveWindowsCheckBoxControl.Content" xml:space="preserve"> <value>Keep windows in their zones when the screen resolution or work area changes</value> <comment>windows refers to application windows</comment> </data> <data name="FancyZones_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable FancyZones</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="FancyZones_ExcludeApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="FancyZones_ExcludeApps.Description" xml:space="preserve"> <value>Excludes an application from snapping to zones and will only react to Windows Snap - add one application name per line</value> </data> <data name="FancyZones_HighlightOpacity.Header" xml:space="preserve"> <value>Opacity (%)</value> </data> <data name="FancyZones_HotkeyEditorControl.Header" xml:space="preserve"> <value>Open layout editor</value> <comment>Shortcut to launch the FancyZones layout editor application</comment> </data> <data name="FancyZones_WindowSwitching_GroupSettings.Header" xml:space="preserve"> <value>Switch between windows in the current zone</value> </data> <data name="FancyZones_HotkeyNextTabControl.Header" xml:space="preserve"> <value>Next window</value> </data> <data name="FancyZones_HotkeyPrevTabControl.Header" xml:space="preserve"> <value>Previous window</value> </data> <data name="SettingsPage_SetShortcut.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Shortcut setting</value> </data> <data name="SettingsPage_SetShortcut_Glyph.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Information Symbol</value> </data> <data name="FancyZones_LaunchEditorButtonControl.Header" xml:space="preserve"> <value>Launch layout editor</value> <comment>launches the FancyZones layout editor application</comment> </data> <data name="FancyZones_LaunchEditorButtonControl.Description" xml:space="preserve"> <value>Set and manage your layouts</value> <comment>launches the FancyZones layout editor application</comment> </data> <data name="FancyZones_MakeDraggedWindowTransparentCheckBoxControl.Content" xml:space="preserve"> <value>Make dragged window transparent</value> </data> <data name="FancyZones_MouseDragCheckBoxControl_Header.Content" xml:space="preserve"> <value>Use a non-primary mouse button to toggle zone activation</value> </data> <data name="FancyZones_MouseMiddleClickSpanningMultipleZonesCheckBoxControl_Header.Content" xml:space="preserve"> <value>Use middle-click mouse button to toggle multiple zones spanning</value> </data> <data name="FancyZones_MoveWindowsAcrossAllMonitorsCheckBoxControl.Content" xml:space="preserve"> <value>Move windows between zones across all monitors</value> </data> <data name="FancyZones_OverrideSnapHotkeys.Header" xml:space="preserve"> <value>Override Windows Snap</value> </data> <data name="FancyZones_OverrideSnapHotkeys.Description" xml:space="preserve"> <value>This overrides the Windows Snap shortcut (Win + arrow) to move windows between zones</value> </data> <data name="FancyZones_ShiftDragCheckBoxControl_Header.Content" xml:space="preserve"> <value>Hold Shift key to activate zones while dragging</value> </data> <data name="FancyZones_ShowZonesOnAllMonitorsCheckBoxControl.Content" xml:space="preserve"> <value>Show zones on all monitors while dragging a window</value> </data> <data name="FancyZones_AppLastZoneMoveWindows.Content" xml:space="preserve"> <value>Move newly created windows to their last known zone</value> <comment>windows refers to application windows</comment> </data> <data name="FancyZones_OpenWindowOnActiveMonitor.Content" xml:space="preserve"> <value>Move newly created windows to the current active monitor (Experimental)</value> </data> <data name="FancyZones_UseCursorPosEditorStartupScreen.Header" xml:space="preserve"> <value>Launch editor on the display</value> </data> <data name="FancyZones_UseCursorPosEditorStartupScreen.Description" xml:space="preserve"> <value>When using multiple displays</value> </data> <data name="FancyZones_LaunchPositionMouse.Content" xml:space="preserve"> <value>Where the mouse pointer is</value> </data> <data name="FancyZones_LaunchPositionScreen.Content" xml:space="preserve"> <value>With active focus</value> </data> <data name="FancyZones_ZoneBehavior_GroupSettings.Header" xml:space="preserve"> <value>Zone behavior</value> </data> <data name="FancyZones_ZoneBehavior_GroupSettings.Description" xml:space="preserve"> <value>Manage how zones behave when using FancyZones</value> </data> <data name="FancyZones_Zones.Header" xml:space="preserve"> <value>Zones</value> </data> <data name="FancyZones_ZoneHighlightColor.Header" xml:space="preserve"> <value>Highlight color</value> </data> <data name="FancyZones_ZoneSetChangeMoveWindows.Content" xml:space="preserve"> <value>During zone layout changes, windows assigned to a zone will match new size/positions</value> </data> <data name="AttributionTitle.Text" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="General.ModuleTitle" xml:space="preserve"> <value>General</value> </data> <data name="GeneralPage_CheckForUpdates.Content" xml:space="preserve"> <value>Check for updates</value> </data> <data name="General_SettingsBackupAndRestoreLocationText.Header" xml:space="preserve"> <value>Location</value> </data> <data name="General_SettingsBackupAndRestore_ButtonBackup.Content" xml:space="preserve"> <value>Backup</value> </data> <data name="General_SettingsBackupInfo_FileNameHeader.Text" xml:space="preserve"> <value>File name:</value> </data> <data name="General_SettingsBackupAndRestore_LinkRefresh.Text" xml:space="preserve"> <value>Refresh</value> </data> <data name="General_SettingsBackupAndRestore_ButtonRestore.Content" xml:space="preserve"> <value>Restore</value> </data> <data name="General_SettingsBackupAndRestore_ButtonSelectLocation.Text" xml:space="preserve"> <value>Select folder</value> </data> <data name="GeneralPage_UpdateNow.Content" xml:space="preserve"> <value>Update now</value> </data> <data name="GeneralPage_PrivacyStatement_URL.Text" xml:space="preserve"> <value>Privacy statement</value> </data> <data name="GeneralPage_ReportAbug.Text" xml:space="preserve"> <value>Report a bug</value> <comment>Report an issue inside powertoys</comment> </data> <data name="GeneralPage_RequestAFeature_URL.Text" xml:space="preserve"> <value>Request a feature</value> <comment>Tell our team what we should build</comment> </data> <data name="GeneralPage_RestartAsAdmin_Button.Content" xml:space="preserve"> <value>Restart PowerToys as administrator</value> <comment>running PowerToys as a higher level user, account is typically referred to as an admin / administrator</comment> </data> <data name="GeneralPage_RunAtStartUp.Header" xml:space="preserve"> <value>Run at startup</value> </data> <data name="GeneralPage_RunAtStartUp.Description" xml:space="preserve"> <value>PowerToys will launch automatically</value> </data> <data name="PowerRename.ModuleDescription" xml:space="preserve"> <value>A Windows Shell extension for more advanced bulk renaming using search &amp; replace or regular expressions.</value> </data> <data name="PowerRename_ShellIntegration.Header" xml:space="preserve"> <value>Shell integration</value> <comment>This refers to directly integrating in with Windows</comment> </data> <data name="PowerRename_Toggle_Enable.Header" xml:space="preserve"> <value>Enable PowerRename</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="RadioButtons_Name_Theme.Text" xml:space="preserve"> <value>Settings theme</value> </data> <data name="PowerRename_Toggle_HideIcon.Content" xml:space="preserve"> <value>Hide icon in context menu</value> </data> <data name="PowerRename_Toggle_ContextMenu.Header" xml:space="preserve"> <value>Show PowerRename in</value> </data> <data name="PowerRename_Toggle_StandardContextMenu.Content" xml:space="preserve"> <value>Default and extended context menu</value> </data> <data name="PowerRename_Toggle_ExtendedContextMenu.Content" xml:space="preserve"> <value>Extended context menu only</value> </data> <data name="ExtendedContextMenuInfo.Title" xml:space="preserve"> <value>Press Shift + right-click on files to open the extended context menu</value> </data> <data name="PowerRename_Toggle_MaxDispListNum.Header" xml:space="preserve"> <value>Maximum number of items</value> </data> <data name="PowerRename_Toggle_RestoreFlagsOnLaunch.Header" xml:space="preserve"> <value>Show recently used strings</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_MD.Header" xml:space="preserve"> <value>Markdown</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_MD.Description" xml:space="preserve"> <value>.md, .markdown, .mdown, .mkdn, .mkd, .mdwn, .mdtxt, .mdtext</value> <comment>File extensions, should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_Monaco.Header" xml:space="preserve"> <value>Source code files (Monaco)</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_Monaco.Description" xml:space="preserve"> <value>.cpp, .py, .json, .xml, .csproj, ...</value> <comment>File extensions should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_SVG.Header" xml:space="preserve"> <value>Scalable Vector Graphics</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_SVG.Description" xml:space="preserve"> <value>.svg</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_Preview_SVG_Color_Mode.Header" xml:space="preserve"> <value>Color mode</value> </data> <data name="FileExplorerPreview_Preview_SVG_Color_Mode_Default.Content" xml:space="preserve"> <value>Windows default</value> </data> <data name="FileExplorerPreview_Preview_SVG_Color_Solid_Color.Content" xml:space="preserve"> <value>Solid color</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade.Content" xml:space="preserve"> <value>Checkered pattern</value> </data> <data name="FileExplorerPreview_Preview_SVG_Background_Color.Header" xml:space="preserve"> <value>Color</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_Mode.Header" xml:space="preserve"> <value>Checkered shade</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_1.Content" xml:space="preserve"> <value>Light</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_2.Content" xml:space="preserve"> <value>Medium</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_3.Content" xml:space="preserve"> <value>Dark</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_PDF.Header" xml:space="preserve"> <value>Portable Document Format</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_PDF.Description" xml:space="preserve"> <value>.pdf</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_SVG.Header" xml:space="preserve"> <value>Scalable Vector Graphics</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_SVG.Description" xml:space="preserve"> <value>.svg</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_STL.Header" xml:space="preserve"> <value>Stereolithography</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_STL.Description" xml:space="preserve"> <value>.stl</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_Color_Thumbnail_STL.Header" xml:space="preserve"> <value>Color</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_PDF.Header" xml:space="preserve"> <value>Portable Document Format</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_PDF.Description" xml:space="preserve"> <value>.pdf</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview.ModuleDescription" xml:space="preserve"> <value>These settings allow you to manage your Windows File Explorer custom preview handlers.</value> </data> <data name="PowerRename_AutoCompleteHeader.Header" xml:space="preserve"> <value>Auto-complete</value> </data> <data name="OpenSource_Notice.Text" xml:space="preserve"> <value>Open-source notice</value> </data> <data name="PowerRename_Toggle_AutoComplete.Header" xml:space="preserve"> <value>Enable auto-complete for the search &amp; replace fields</value> </data> <data name="FancyZones_BorderColor.Header" xml:space="preserve"> <value>Border color</value> </data> <data name="FancyZones_InActiveColor.Header" xml:space="preserve"> <value>Inactive color</value> </data> <data name="ShortcutGuide.ModuleDescription" xml:space="preserve"> <value>Shows a help overlay with Windows shortcuts.</value> </data> <data name="ShortcutGuide_PressTimeForGlobalWindowsShortcuts.Header" xml:space="preserve"> <value>Press duration before showing global Windows shortcuts (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="ShortcutGuide_ActivationMethod.Header" xml:space="preserve"> <value>Activation method</value> </data> <data name="ShortcutGuide_ActivationMethod.Description" xml:space="preserve"> <value>Use a shortcut or press the Windows key for some time to activate</value> </data> <data name="Radio_ShortcutGuide_ActivationMethod_CustomizedShortcut.Content" xml:space="preserve"> <value>Custom shortcut</value> </data> <data name="Radio_ShortcutGuide_ActivationMethod_LongPressWindowsKey.Content" xml:space="preserve"> <value>Hold down Windows key</value> </data> <data name="ShortcutGuide_PressWinKeyWarning.Title" xml:space="preserve"> <value>In some edge cases Shortcut Guide might not function correctly when using this activation method</value> </data> <data name="Appearance_Behavior.Header" xml:space="preserve"> <value>Appearance &amp; behavior</value> </data> <data name="General_SettingsBackupAndRestoreTitle.Header" xml:space="preserve"> <value>Backup &amp; restore</value> </data> <data name="General_SettingsBackupAndRestore.Header" xml:space="preserve"> <value>Backup and restore your settings</value> </data> <data name="General_SettingsBackupAndRestore.Description" xml:space="preserve"> <value>PowerToys will restart automatically if needed</value> </data> <data name="ShortcutGuide_Enable.Header" xml:space="preserve"> <value>Enable Shortcut Guide</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="ShortcutGuide_OverlayOpacity.Header" xml:space="preserve"> <value>Background opacity (%)</value> </data> <data name="ShortcutGuide_DisabledApps.Header" xml:space="preserve"> <value>Exclude apps</value> </data> <data name="ShortcutGuide_DisabledApps.Description" xml:space="preserve"> <value>Turns off Shortcut Guide when these applications have focus - add one application name per line</value> </data> <data name="ShortcutGuide_DisabledApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> <comment>Don't translate outlook.exe</comment> </data> <data name="ImageResizer_CustomSizes.Header" xml:space="preserve"> <value>Image sizes</value> </data> <data name="ImageResizer_Presets.Header" xml:space="preserve"> <value>Presets</value> </data> <data name="ImageResizer_Presets.Description" xml:space="preserve"> <value>Manage preset sizes that can be used in the editor</value> </data> <data name="ImageResizer_FilenameFormatHeader.Description" xml:space="preserve"> <value>This format is used as the filename for resized images</value> </data> <data name="ImageResizer.ModuleDescription" xml:space="preserve"> <value>Lets you resize images by right-clicking.</value> </data> <data name="ImageResizer_EnableToggle.Header" xml:space="preserve"> <value>Enable Image Resizer</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="ImagesSizesListView.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Image Size</value> </data> <data name="ImageResizer_Configurations.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Configurations</value> </data> <data name="ImageResizer_Name.Header" xml:space="preserve"> <value>Name</value> </data> <data name="ImageResizer_Fit.Header" xml:space="preserve"> <value>Fit</value> </data> <data name="ImageResizer_Width.Header" xml:space="preserve"> <value>Width</value> </data> <data name="ImageResizer_Height.Header" xml:space="preserve"> <value>Height</value> </data> <data name="ImageResizer_Size.Header" xml:space="preserve"> <value>Unit</value> </data> <data name="RemoveButton.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Remove</value> <comment>Removes a user defined setting group for Image Resizer</comment> </data> <data name="RemoveItem.Text" xml:space="preserve"> <value>Delete</value> </data> <data name="ImageResizer_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Image Resizer</value> </data> <data name="ImageResizer_AddSizeButton.Content" xml:space="preserve"> <value>Add new size</value> </data> <data name="ImageResizer_SaveSizeButton.Label" xml:space="preserve"> <value>Save sizes</value> </data> <data name="ImageResizer_Encoding.Header" xml:space="preserve"> <value>JPEG quality level (%)</value> </data> <data name="ImageResizer_PNGInterlacing.Header" xml:space="preserve"> <value>PNG interlacing</value> </data> <data name="ImageResizer_TIFFCompression.Header" xml:space="preserve"> <value>TIFF compression</value> </data> <data name="File.Header" xml:space="preserve"> <value>File</value> <comment>as in a computer file</comment> </data> <data name="Default.Content" xml:space="preserve"> <value>Default</value> </data> <data name="ImageResizer_ENCODER_TIFF_CCITT3.Content" xml:space="preserve"> <value>CCITT3</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_CCITT4.Content" xml:space="preserve"> <value>CCITT4</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_Default.Content" xml:space="preserve"> <value>Default</value> </data> <data name="ImageResizer_ENCODER_TIFF_LZW.Content" xml:space="preserve"> <value>LZW</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_None.Content" xml:space="preserve"> <value>None</value> </data> <data name="ImageResizer_ENCODER_TIFF_RLE.Content" xml:space="preserve"> <value>RLE</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_Zip.Content" xml:space="preserve"> <value>Zip</value> <comment>do not loc</comment> </data> <data name="ImageResizer_FallbackEncoder_BMP.Content" xml:space="preserve"> <value>BMP encoder</value> </data> <data name="ImageResizer_FallbackEncoder_GIF.Content" xml:space="preserve"> <value>GIF encoder</value> </data> <data name="ImageResizer_FallbackEncoder_JPEG.Content" xml:space="preserve"> <value>JPEG encoder</value> </data> <data name="ImageResizer_FallbackEncoder_PNG.Content" xml:space="preserve"> <value>PNG encoder</value> </data> <data name="ImageResizer_FallbackEncoder_TIFF.Content" xml:space="preserve"> <value>TIFF encoder</value> </data> <data name="ImageResizer_FallbackEncoder_WMPhoto.Content" xml:space="preserve"> <value>WMPhoto encoder</value> </data> <data name="ImageResizer_Sizes_Fit_Fill.Content" xml:space="preserve"> <value>Fill</value> <comment>Refers to filling an image into a certain size. It could overflow</comment> </data> <data name="ImageResizer_Sizes_Fit_Fill_ThirdPersonSingular.Text" xml:space="preserve"> <value>Fill</value> <comment>Refers to filling an image into a certain size. It could overflow</comment> </data> <data name="ImageResizer_Sizes_Fit_Fit.Content" xml:space="preserve"> <value>Fit</value> <comment>Refers to fitting an image into a certain size. It won't overflow</comment> </data> <data name="ImageResizer_Sizes_Fit_Stretch.Content" xml:space="preserve"> <value>Stretch</value> <comment>Refers to stretching an image into a certain size. Won't overflow but could distort.</comment> </data> <data name="ImageResizer_Sizes_Units_CM.Content" xml:space="preserve"> <value>Centimeters</value> </data> <data name="ImageResizer_Sizes_Units_Inches.Content" xml:space="preserve"> <value>Inches</value> </data> <data name="ImageResizer_Sizes_Units_Percent.Content" xml:space="preserve"> <value>Percent</value> </data> <data name="ImageResizer_Sizes_Units_Pixels.Content" xml:space="preserve"> <value>Pixels</value> </data> <data name="Off.Content" xml:space="preserve"> <value>Off</value> </data> <data name="On.Content" xml:space="preserve"> <value>On</value> </data> <data name="GeneralPage_ToggleSwitch_AlwaysRunElevated_Link.Content" xml:space="preserve"> <value>Learn more about administrator mode</value> </data> <data name="GeneralPage_ToggleSwitch_AutoDownloadUpdates.Header" xml:space="preserve"> <value>Download updates automatically</value> </data> <data name="GeneralPage_ToggleSwitch_AutoDownloadUpdates.Description" xml:space="preserve"> <value>Except on metered connections</value> </data> <data name="GeneralPage_ToggleSwitch_RunningAsAdminNote.Text" xml:space="preserve"> <value>Currently running as administrator</value> </data> <data name="GeneralSettings_AlwaysRunAsAdminText.Header" xml:space="preserve"> <value>Always run as administrator</value> </data> <data name="GeneralSettings_AlwaysRunAsAdminText.Description" xml:space="preserve"> <value>You need to run as administrator to use this setting</value> </data> <data name="GeneralSettings_RunningAsUserText" xml:space="preserve"> <value>Running as user</value> </data> <data name="GeneralSettings_RunningAsAdminText" xml:space="preserve"> <value>Running as administrator</value> </data> <data name="FancyZones.ModuleTitle" xml:space="preserve"> <value>FancyZones</value> </data> <data name="FileExplorerPreview.ModuleTitle" xml:space="preserve"> <value>File Explorer</value> </data> <data name="FileExplorerPreview_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>File Explorer</value> <comment>Use same translation as Windows does for File Explorer</comment> </data> <data name="ImageResizer.ModuleTitle" xml:space="preserve"> <value>Image Resizer</value> </data> <data name="KeyboardManager.ModuleTitle" xml:space="preserve"> <value>Keyboard Manager</value> </data> <data name="ColorPicker.ModuleTitle" xml:space="preserve"> <value>Color Picker</value> </data> <data name="PowerLauncher.ModuleTitle" xml:space="preserve"> <value>PowerToys Run</value> </data> <data name="PowerToys_Run_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>PowerToys Run</value> </data> <data name="PowerRename.ModuleTitle" xml:space="preserve"> <value>PowerRename</value> <comment>do not loc the product name</comment> </data> <data name="PowerRename_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>PowerRename</value> <comment>do not loc</comment> </data> <data name="ShortcutGuide.ModuleTitle" xml:space="preserve"> <value>Shortcut Guide</value> </data> <data name="Shortcut_Guide_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Shortcut Guide</value> </data> <data name="General_Repository.Text" xml:space="preserve"> <value>GitHub repository</value> </data> <data name="General_Version.Header" xml:space="preserve"> <value>Version</value> </data> <data name="General_VersionLastChecked.Text" xml:space="preserve"> <value>Last checked: </value> </data> <data name="General_SettingsBackupInfo_DateHeader.Text" xml:space="preserve"> <value>Created at:</value> </data> <data name="General_SettingsBackupAndRestoreStatusInfo.Header" xml:space="preserve"> <value>Backup information</value> </data> <data name="General_SettingsBackupInfo_SourceHeader.Text" xml:space="preserve"> <value>Source machine:</value> </data> <data name="General_SettingsBackupInfo_StatusHeader.Text" xml:space="preserve"> <value>Status:</value> </data> <data name="General_Version.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Version</value> </data> <data name="Admin_mode.Header" xml:space="preserve"> <value>Administrator mode</value> </data> <data name="FancyZones_RestoreSize.Content" xml:space="preserve"> <value>Restore the original size of windows when unsnapping</value> </data> <data name="ImageResizer_FallBackEncoderText.Header" xml:space="preserve"> <value>Fallback encoder</value> </data> <data name="ImageResizer_FileFormatDescription.Text" xml:space="preserve"> <value>The following parameters can be used:</value> </data> <data name="ImageResizer_FilenameFormatHeader.Header" xml:space="preserve"> <value>Filename format</value> </data> <data name="ImageResizer_FileModifiedDate.Header" xml:space="preserve"> <value>File modified timestamp</value> </data> <data name="ImageResizer_FileModifiedDate.Description" xml:space="preserve"> <value>Used as the 'modified timestamp' in the file properties</value> </data> <data name="ImageResizer_UseOriginalDate.Content" xml:space="preserve"> <value>Original file timestamp</value> </data> <data name="ImageResizer_UseResizeDate.Content" xml:space="preserve"> <value>Timestamp of resize action</value> </data> <data name="Encoding.Header" xml:space="preserve"> <value>Encoding</value> </data> <data name="KeyboardManager_RemapKeyboardButton.Description" xml:space="preserve"> <value>Remap keys to other keys or shortcuts</value> </data> <data name="KeyboardManager_RemapShortcutsButton.Description" xml:space="preserve"> <value>Remap shortcuts to other shortcuts or keys for all or specific applications</value> </data> <data name="General.ModuleDescription" xml:space="preserve"> <value>Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. Made with 💗 by Microsoft and the PowerToys community.</value> <comment>Windows refers to the OS</comment> </data> <data name="FancyZones_SpanZonesAcrossMonitors.Header" xml:space="preserve"> <value>Allow zones to span across monitors</value> </data> <data name="ImageResizer_Formatting_ActualHeight.Text" xml:space="preserve"> <value>Actual height</value> </data> <data name="ImageResizer_Formatting_ActualWidth.Text" xml:space="preserve"> <value>Actual width</value> </data> <data name="ImageResizer_Formatting_Filename.Text" xml:space="preserve"> <value>Original filename</value> </data> <data name="ImageResizer_Formatting_SelectedHeight.Text" xml:space="preserve"> <value>Selected height</value> </data> <data name="ImageResizer_Formatting_SelectedWidth.Text" xml:space="preserve"> <value>Selected width</value> </data> <data name="ImageResizer_Formatting_Sizename.Text" xml:space="preserve"> <value>Size name</value> </data> <data name="FancyZones_MoveWindowsBasedOnPositionCheckBoxControl.Content" xml:space="preserve"> <value>Move windows based on their position</value> <comment>Windows refers to application windows</comment> </data> <data name="GeneralSettings_NewVersionIsAvailable" xml:space="preserve"> <value>New update available</value> </data> <data name="GeneralSettings_VersionIsLatest" xml:space="preserve"> <value>PowerToys is up to date.</value> </data> <data name="FileExplorerPreview_IconThumbnail_GroupSettings.Header" xml:space="preserve"> <value>Thumbnail icon Preview</value> </data> <data name="FileExplorerPreview_IconThumbnail_GroupSettings.Description" xml:space="preserve"> <value>Select the file types for which thumbnail previews must be rendered.</value> </data> <data name="FileExplorerPreview_PreviewPane.Header" xml:space="preserve"> <value>Preview Pane</value> </data> <data name="FileExplorerPreview_PreviewPane.Description" xml:space="preserve"> <value>Select the file types which must be rendered in the Preview Pane. Ensure that Preview Pane is open by toggling the view with Alt + P in File Explorer.</value> <comment>Preview Pane and File Explorer are app/feature names in Windows. 'Alt + P' is a shortcut</comment> </data> <data name="FileExplorerPreview_RunAsAdminRequired.Title" xml:space="preserve"> <value>You need to run as administrator to modify these settings.</value> </data> <data name="FileExplorerPreview_RebootRequired.Title" xml:space="preserve"> <value>A reboot may be required for changes to these settings to take effect</value> </data> <data name="FileExplorerPreview_PreviewHandlerOutlookIncompatibility.Title" xml:space="preserve"> <value>Enabling the preview handlers will override other preview handlers already installed - there have been reports of incompatibility between Outlook and the PDF Preview Handler.</value> <comment>Outlook is the name of a Microsoft product</comment> </data> <data name="FileExplorerPreview_ThumbnailsMightNotAppearOnRemoteFolders.Title" xml:space="preserve"> <value>Thumbnails might not appear on paths managed by cloud storage solutions like OneDrive, since these solutions may get their thumbnails from the cloud instead of generating them locally.</value> <comment>OneDrive is the name of a Microsoft product</comment> </data> <data name="FancyZones_ExcludeApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> <comment>Don't translate outlook.exe</comment> </data> <data name="ImageResizer_FilenameFormatPlaceholder.PlaceholderText" xml:space="preserve"> <value>Example: %1 (%2)</value> </data> <data name="ImageResizer_FilenameParameters.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Filename parameters</value> </data> <data name="Radio_Theme_Dark.Content" xml:space="preserve"> <value>Dark</value> <comment>Dark refers to color, not weight</comment> </data> <data name="Radio_Theme_Light.Content" xml:space="preserve"> <value>Light</value> <comment>Light refers to color, not weight</comment> </data> <data name="Radio_Theme_Default.Content" xml:space="preserve"> <value>Windows default</value> <comment>Windows refers to the Operating system</comment> </data> <data name="Windows_Color_Settings.Content" xml:space="preserve"> <value>Windows color settings</value> <comment>Windows refers to the Operating system</comment> </data> <data name="ColorPicker_CopiedColorRepresentation.Header" xml:space="preserve"> <value>Default color format</value> </data> <data name="ColorPickerFirst.Content" xml:space="preserve"> <value>Pick a color and open editor</value> </data> <data name="EditorFirst.Content" xml:space="preserve"> <value>Open editor</value> </data> <data name="ColorPickerOnly.Content" xml:space="preserve"> <value>Only pick a color</value> </data> <data name="ColorPicker_ActivationAction.Header" xml:space="preserve"> <value>Activation behavior</value> </data> <data name="ColorFormats.Header" xml:space="preserve"> <value>Picker behavior</value> </data> <data name="ColorPicker_CopiedColorRepresentation.Description" xml:space="preserve"> <value>This format will be copied to your clipboard</value> </data> <data name="KBM_KeysCannotBeRemapped.Text" xml:space="preserve"> <value>Learn more about remapping limitations</value> <comment>This is a link that will discuss what is and is not possible for Keyboard manager to remap</comment> </data> <data name="FancyZones_Editor_GroupSettings.Header" xml:space="preserve"> <value>Editor</value> <comment>refers to the FancyZone editor</comment> </data> <data name="FancyZones_WindowBehavior_GroupSettings.Header" xml:space="preserve"> <value>Window behavior</value> </data> <data name="FancyZones_WindowBehavior_GroupSettings.Description" xml:space="preserve"> <value>Manage how windows behave when using FancyZones</value> </data> <data name="FancyZones_Windows.Header" xml:space="preserve"> <value>Windows</value> <comment>Do translate: refers to a set of application windows, not the product name</comment> </data> <data name="PowerRename_BehaviorHeader.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="PowerRename_Toggle_UseBoostLib.Header" xml:space="preserve"> <value>Use Boost library</value> <comment>Boost is a product name, should not be translated</comment> </data> <data name="PowerRename_Toggle_UseBoostLib.Description" xml:space="preserve"> <value>Provides extended features but may use different regex syntax</value> <comment>Boost is a product name, should not be translated</comment> </data> <data name="MadeWithOssLove.Text" xml:space="preserve"> <value>Made with 💗 by Microsoft and the PowerToys community.</value> </data> <data name="ColorPicker_ColorFormats.Header" xml:space="preserve"> <value>Color formats</value> </data> <data name="ColorPicker_ColorFormats.Description" xml:space="preserve"> <value>Configure the color formats (edit, delete, hide, reorder them)</value> </data> <data name="MoveUp.Text" xml:space="preserve"> <value>Move up</value> </data> <data name="MoveDown.Text" xml:space="preserve"> <value>Move down</value> </data> <data name="ColorPickerAddNewFormat.Content" xml:space="preserve"> <value>Add new format</value> </data> <data name="NewColorFormat.Header" xml:space="preserve"> <value>Format</value> </data> <data name="NewColorName.Header" xml:space="preserve"> <value>Name</value> </data> <data name="AddCustomColorFormat" xml:space="preserve"> <value>Add custom color format</value> </data> <data name="ColorFormatSave" xml:space="preserve"> <value>Save</value> </data> <data name="EditCustomColorFormat" xml:space="preserve"> <value>Edit custom color format</value> </data> <data name="ColorFormatUpdate" xml:space="preserve"> <value>Update</value> </data> <data name="CustomColorFormatDefaultName" xml:space="preserve"> <value>My Format</value> </data> <data name="ColorFormatDialog.SecondaryButtonText" xml:space="preserve"> <value>Cancel</value> </data> <data name="ColorFormatEditorHelpline1.Text" xml:space="preserve"> <value>The following parameters can be used:</value> </data> <data name="Help_red" xml:space="preserve"> <value>red</value> </data> <data name="Help_green" xml:space="preserve"> <value>green</value> </data> <data name="Help_blue" xml:space="preserve"> <value>blue</value> </data> <data name="Help_alpha" xml:space="preserve"> <value>alpha</value> </data> <data name="Help_cyan" xml:space="preserve"> <value>cyan</value> </data> <data name="Help_magenta" xml:space="preserve"> <value>magenta</value> </data> <data name="Help_yellow" xml:space="preserve"> <value>yellow</value> </data> <data name="Help_black_key" xml:space="preserve"> <value>black key</value> </data> <data name="Help_hue" xml:space="preserve"> <value>hue</value> </data> <data name="Help_hueNat" xml:space="preserve"> <value>hue (natural)</value> </data> <data name="Help_saturationI" xml:space="preserve"> <value>saturation (HSI)</value> </data> <data name="Help_saturationL" xml:space="preserve"> <value>saturation (HSL)</value> </data> <data name="Help_saturationB" xml:space="preserve"> <value>saturation (HSB)</value> </data> <data name="Help_brightness" xml:space="preserve"> <value>brightness</value> </data> <data name="Help_intensity" xml:space="preserve"> <value>intensity</value> </data> <data name="Help_lightnessNat" xml:space="preserve"> <value>lightness (nat)</value> </data> <data name="Help_lightnessCIE" xml:space="preserve"> <value>lightness (CIE)</value> </data> <data name="Help_value" xml:space="preserve"> <value>value</value> </data> <data name="Help_whiteness" xml:space="preserve"> <value>whiteness</value> </data> <data name="Help_blackness" xml:space="preserve"> <value>blackness</value> </data> <data name="Help_chromaticityA" xml:space="preserve"> <value>chromaticityA</value> </data> <data name="Help_chromaticityB" xml:space="preserve"> <value>chromaticityB</value> </data> <data name="Help_X_value" xml:space="preserve"> <value>X value</value> </data> <data name="Help_Y_value" xml:space="preserve"> <value>Y value</value> </data> <data name="Help_Z_value" xml:space="preserve"> <value>Z value</value> </data> <data name="Help_decimal_value_RGB" xml:space="preserve"> <value>decimal value (RGB)</value> </data> <data name="Help_decimal_value_BGR" xml:space="preserve"> <value>decimal value (BGR)</value> </data> <data name="Help_color_name" xml:space="preserve"> <value>color name</value> </data> <data name="ColorFormatEditorHelpline2.Text" xml:space="preserve"> <value>The red, green, blue and alpha values can be formatted to the following formats:</value> </data> <data name="Help_byte" xml:space="preserve"> <value>byte value (default)</value> </data> <data name="Help_hexL1" xml:space="preserve"> <value>hex lowercase one digit</value> </data> <data name="Help_hexU1" xml:space="preserve"> <value>hex uppercase one digit</value> </data> <data name="Help_hexL2" xml:space="preserve"> <value>hex lowercase two digits</value> </data> <data name="Help_hexU2" xml:space="preserve"> <value>hex uppercase two digits</value> </data> <data name="Help_floatWith" xml:space="preserve"> <value>float with leading zero</value> </data> <data name="Help_floatWithout" xml:space="preserve"> <value>float without leading zero</value> </data> <data name="ColorFormatEditorHelpline3.Text" xml:space="preserve"> <value>Example: %ReX means red value in hex uppercase two digits format.</value> </data> <data name="ColorPicker_ShowColorName.Header" xml:space="preserve"> <value>Show color name</value> </data> <data name="ColorPicker_ShowColorName.Description" xml:space="preserve"> <value>This will show the name of the color when picking a color</value> </data> <data name="ImageResizer_DefaultSize_Large" xml:space="preserve"> <value>Large</value> <comment>The size of the image</comment> </data> <data name="ImageResizer_DefaultSize_Medium" xml:space="preserve"> <value>Medium</value> <comment>The size of the image</comment> </data> <data name="ImageResizer_DefaultSize_Phone" xml:space="preserve"> <value>Phone</value> <comment>The size of the image referring to a Mobile Phone typical image size</comment> </data> <data name="ImageResizer_DefaultSize_Small" xml:space="preserve"> <value>Small</value> <comment>The size of the image</comment> </data> <data name="FancyZones_MoveWindowBasedOnRelativePosition_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Windows key + Up, down, left or right arrow key to move windows based on relative position</value> </data> <data name="FancyZones_MoveWindowLeftRightBasedOnZoneIndex_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Windows key + Left or right arrow keys to move windows based on zone index</value> </data> <data name="FancyZones_MoveWindowBasedOnRelativePosition_Description.Text" xml:space="preserve"> <value>Windows key +    or </value> <comment>Do not loc the icons (hex numbers)</comment> </data> <data name="FancyZones_MoveWindowLeftRightBasedOnZoneIndex_Description.Text" xml:space="preserve"> <value>Windows key +  or </value> <comment>Do not loc the icons (hex numbers)</comment> </data> <data name="FancyZones_MoveWindowBasedOnRelativePosition.Text" xml:space="preserve"> <value>Relative position</value> </data> <data name="FancyZones_MoveWindow.Header" xml:space="preserve"> <value>Move windows based on</value> </data> <data name="FancyZones_MoveWindowLeftRightBasedOnZoneIndex.Text" xml:space="preserve"> <value>Zone index</value> </data> <data name="ColorPicker_Editor.Header" xml:space="preserve"> <value>Color formats</value> </data> <data name="FancyZones_OverlappingZonesClosestCenter.Content" xml:space="preserve"> <value>Activate the zone whose center is closest to the cursor</value> </data> <data name="FancyZones_OverlappingZonesLargest.Content" xml:space="preserve"> <value>Activate the largest zone by area</value> </data> <data name="FancyZones_OverlappingZonesPositional.Content" xml:space="preserve"> <value>Split the overlapped area into multiple activation targets</value> </data> <data name="FancyZones_OverlappingZonesSmallest.Content" xml:space="preserve"> <value>Activate the smallest zone by area</value> </data> <data name="FancyZones_OverlappingZones.Header" xml:space="preserve"> <value>When multiple zones overlap</value> </data> <data name="PowerLauncher_Plugins.Header" xml:space="preserve"> <value>Plugins</value> </data> <data name="PowerLauncher_ActionKeyword.Header" xml:space="preserve"> <value>Direct activation command</value> </data> <data name="PowerLauncher_AuthoredBy.Text" xml:space="preserve"> <value>Authored by</value> <comment>example: Authored by Microsoft</comment> </data> <data name="PowerLauncher_IncludeInGlobalResultTitle.Text" xml:space="preserve"> <value>Include in global result</value> </data> <data name="PowerLauncher_IncludeInGlobalResultDescription.Text" xml:space="preserve"> <value>Show results on queries without direct activation command</value> </data> <data name="PowerLauncher_EnablePluginToggle.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Enable plugin</value> </data> <data name="PowerLauncher_EnablePluginToggle.OnContent" xml:space="preserve"> <value>On</value> </data> <data name="PowerLauncher_EnablePluginToggle.OffContent" xml:space="preserve"> <value>Off</value> </data> <data name="Run_AdditionalOptions.Text" xml:space="preserve"> <value>Additional options</value> </data> <data name="Run_NotAccessibleWarning.Title" xml:space="preserve"> <value>Please define an activation command or allow this plugin to be used in the global results.</value> </data> <data name="Run_AllPluginsDisabled.Title" xml:space="preserve"> <value>PowerToys Run can't provide any results without plugins</value> </data> <data name="Run_AllPluginsDisabled.Message" xml:space="preserve"> <value>Enable at least one plugin to get started</value> </data> <data name="Run_PluginUse.Header" xml:space="preserve"> <value>Plugins</value> </data> <data name="Run_PluginUseDescription.Text" xml:space="preserve"> <value>Include or remove plugins from the global results, change the direct activation phrase and configure additional options</value> </data> <data name="Run_PositionAppearance_GroupSettings.Header" xml:space="preserve"> <value>Position &amp; appearance</value> </data> <data name="Run_PositionHeader.Header" xml:space="preserve"> <value>Preferred monitor position</value> <comment>as in Show PowerToys Run on primary monitor</comment> </data> <data name="Run_PositionHeader.Description" xml:space="preserve"> <value>If multiple monitors are in use, PowerToys Run can be launched on the desired monitor</value> <comment>as in Show PowerToys Run on primary monitor</comment> </data> <data name="Run_Radio_Position_Cursor.Content" xml:space="preserve"> <value>Monitor with mouse cursor</value> </data> <data name="Run_Radio_Position_Focus.Content" xml:space="preserve"> <value>Monitor with focused window</value> </data> <data name="Run_Radio_Position_Primary_Monitor.Content" xml:space="preserve"> <value>Primary monitor</value> </data> <data name="Run_PluginsLoading.Text" xml:space="preserve"> <value>Plugins are loading...</value> </data> <data name="ColorPicker_ButtonDown.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Move the color down</value> </data> <data name="ColorPicker_ButtonUp.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Move the color up</value> </data> <data name="FancyZones_FlashZonesOnQuickSwitch.Content" xml:space="preserve"> <value>Flash zones when switching layout</value> </data> <data name="FancyZones_Layouts.Header" xml:space="preserve"> <value>Layouts</value> </data> <data name="FancyZones_QuickLayoutSwitch.Header" xml:space="preserve"> <value>Enable quick layout switch</value> </data> <data name="FancyZones_QuickLayoutSwitch.Description" xml:space="preserve"> <value>Layout-specific shortcuts can be configured in the editor</value> </data> <data name="FancyZones_QuickLayoutSwitch_GroupSettings.Text" xml:space="preserve"> <value>Quick layout switch</value> </data> <data name="Activation_Shortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="Activation_Shortcut.Description" xml:space="preserve"> <value>Customize the shortcut to activate this module</value> </data> <data name="Oobe_GetStarted.Text" xml:space="preserve"> <value>Let's get started!</value> </data> <data name="Oobe_PowerToysDescription.Text" xml:space="preserve"> <value>Welcome to PowerToys! These overviews will help you quickly learn the basics of all our utilities.</value> </data> <data name="Oobe_GettingStarted.Text" xml:space="preserve"> <value>Getting started</value> </data> <data name="Oobe_Launch.Text" xml:space="preserve"> <value>Launch</value> </data> <data name="Launch_ColorPicker.Content" xml:space="preserve"> <value>Launch Color Picker</value> </data> <data name="Oobe_LearnMore.Text" xml:space="preserve"> <value>Learn more about</value> </data> <data name="Oobe_ColorPicker.Description" xml:space="preserve"> <value>Color Picker is a system-wide color selection tool for Windows that enables you to pick colors from any currently running application and automatically copies it in a configurable format to your clipboard.</value> </data> <data name="Oobe_FancyZones.Description" xml:space="preserve"> <value>FancyZones is a window manager that makes it easy to create complex window layouts and quickly position windows into those layouts.</value> </data> <data name="Oobe_FileLocksmith.Description" xml:space="preserve"> <value>File Locksmith lists which processes are using the selected files or directories and allows closing those processes.</value> </data> <data name="Oobe_FileExplorer.Description" xml:space="preserve"> <value>PowerToys introduces add-ons to the Windows File Explorer that will enable files like Markdown (.md), PDF (.pdf), SVG (.svg), STL (.stl), G-code (.gcode) and developer files to be viewed in the preview pane. It introduces File Explorer thumbnail support for a number of these file types as well.</value> </data> <data name="Oobe_ImageResizer.Description" xml:space="preserve"> <value>Image Resizer is a Windows shell extension for simple bulk image-resizing.</value> </data> <data name="Oobe_KBM.Description" xml:space="preserve"> <value>Keyboard Manager allows you to customize the keyboard to be more productive by remapping keys and creating your own keyboard shortcuts.</value> </data> <data name="Oobe_MouseWithoutBorders.Description" xml:space="preserve"> <value>Mouse Without Borders enables using the mouse pointer, keyboard, clipboard and drag and drop between machines in the same local network.</value> </data> <data name="Oobe_PowerRename.Description" xml:space="preserve"> <value>PowerRename enables you to perform simple bulk renaming, searching and replacing file names.</value> </data> <data name="Oobe_Run.Description" xml:space="preserve"> <value>PowerToys Run is a quick launcher for power users that contains some additional features without sacrificing performance.</value> </data> <data name="Oobe_MeasureTool.Description" xml:space="preserve"> <value>Screen Ruler is a quick and easy way to measure pixels on your screen.</value> </data> <data name="Oobe_ShortcutGuide.Description" xml:space="preserve"> <value>Shortcut Guide presents the user with a listing of available shortcuts for the current state of the desktop.</value> </data> <data name="Oobe_VideoConference.Description" xml:space="preserve"> <value>Video Conference Mute allows users to quickly mute the microphone and turn off the camera while on a conference call with a single keystroke, regardless of what application has focus on your computer.</value> </data> <data name="Oobe_MouseUtils.Description" xml:space="preserve"> <value>A collection of utilities to enhance your mouse.</value> <comment>Mouse as in the hardware peripheral</comment> </data> <data name="Oobe_Overview.Description" xml:space="preserve"> <value>Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. Take a moment to preview the various utilities listed or view our comprehensive documentation.</value> </data> <data name="Oobe_Overview_DescriptionLinkText.Text" xml:space="preserve"> <value>Documentation on Microsoft Docs</value> </data> <data name="ReleaseNotes.Content" xml:space="preserve"> <value>Release notes</value> </data> <data name="Oobe_ColorPicker_HowToUse.Text" xml:space="preserve"> <value>to open Color Picker.</value> </data> <data name="Oobe_ColorPicker_TipsAndTricks.Text" xml:space="preserve"> <value>To select a color with more precision, **scroll the mouse wheel** to zoom in.</value> </data> <data name="Oobe_FancyZones_HowToUse.Text" xml:space="preserve"> <value>**Shift** + **drag the window** to snap a window to a zone, and release the window in the desired zone.</value> </data> <data name="Oobe_FancyZones_HowToUse_Shortcut.Text" xml:space="preserve"> <value>to open the FancyZones editor.</value> </data> <data name="Oobe_FancyZones_TipsAndTricks.Text" xml:space="preserve"> <value>Snap a window to multiple zones by holding the **Ctrl** key (while also holding **Shift**) when dragging a window.</value> </data> <data name="Oobe_FileLocksmith_HowToUse.Text" xml:space="preserve"> <value>In File Explorer, right-click one or more selected files and select **What's using this file?** from the context menu.</value> </data> <data name="Oobe_FileLocksmith_TipsAndTricks.Text" xml:space="preserve"> <value>Press the **Restart Elevated** button from the File Locksmith UI to also get information on elevated processes that might be using the files.</value> </data> <data name="Oobe_FileExplorer_HowToEnable.Text" xml:space="preserve"> <value>Select **View** which is located at the top of File Explorer, followed by **Show**, and then **Preview pane**. From there, simply click on one of the supported files in the File Explorer and observe the content on the preview pane!</value> </data> <data name="Oobe_HowToCreateMappings.Text" xml:space="preserve"> <value>How to create mappings</value> </data> <data name="Oobe_HowToEnable.Text" xml:space="preserve"> <value>How to enable</value> </data> <data name="Oobe_HowToLaunch.Text" xml:space="preserve"> <value>How to launch</value> </data> <data name="Oobe_HowToUse.Text" xml:space="preserve"> <value>How to use</value> </data> <data name="Oobe_ImageResizer_HowToLaunch.Text" xml:space="preserve"> <value>In File Explorer, right-click one or more image files and select **Resize pictures** from the context menu.</value> </data> <data name="Oobe_ImageResizer_TipsAndTricks.Text" xml:space="preserve"> <value>Want a custom size? You can add them in the PowerToys Settings!</value> </data> <data name="Oobe_KBM_HowToCreateMappings.Text" xml:space="preserve"> <value>Launch **PowerToys Settings**, navigate to the Keyboard Manager menu, and select either **Remap a key** or **Remap a shortcut**.</value> </data> <data name="Oobe_KBM_TipsAndTricks.Text" xml:space="preserve"> <value>Want to only have a shortcut work for a single application? Use the Target App field when creating the shortcut remapping.</value> </data> <data name="Oobe_MouseWithoutBorders_HowToUse.Text" xml:space="preserve"> <value>Use the Settings screen on each machine to connect to the other machines using the same key. If a connection is not working, it may be necessary to add an exception to the Windows Firewall.</value> </data> <data name="Oobe_MouseWithoutBorders_TipsAndTricks.Text" xml:space="preserve"> <value>Use the service option in Settings to install a service enabling Mouse Without Borders to function even in the lock screen.</value> </data> <data name="Oobe_PowerRename_HowToUse.Text" xml:space="preserve"> <value>In File Explorer, right-click one or more selected files and select **PowerRename** from the context menu.</value> </data> <data name="Oobe_PowerRename_TipsAndTricks.Text" xml:space="preserve"> <value>PowerRename supports searching for files using regular expressions to enable more advanced renaming functionalities.</value> </data> <data name="Oobe_Run_HowToLaunch.Text" xml:space="preserve"> <value>to open Run and just start typing.</value> </data> <data name="Oobe_Run_TipsAndTricks.Text" xml:space="preserve"> <value>PowerToys Run supports various action keys to funnel search queries for a specific subset of results. Typing `&lt;` searches for running processes only, `?` will search only for file, or `.` for installed applications! See PowerToys documentation for the complete set of 'Action Keys' available.</value> </data> <data name="Oobe_ShortcutGuide_HowToLaunch.Text" xml:space="preserve"> <value>to open Shortcut Guide, press it again to close or press **Esc**.</value> </data> <data name="Oobe_TipsAndTricks.Text" xml:space="preserve"> <value>Tips &amp; tricks</value> </data> <data name="Oobe_VideoConference_ToggleMicVid.Text" xml:space="preserve"> <value>to toggle both your microphone and video</value> </data> <data name="Oobe_VideoConference_ToggleMic.Text" xml:space="preserve"> <value>to toggle your microphone</value> </data> <data name="Oobe_VideoConference_PushToTalkMic.Text" xml:space="preserve"> <value>to toggle your microphone until key release</value> </data> <data name="Oobe_VideoConference_ToggleVid.Text" xml:space="preserve"> <value>to toggle your video</value> </data> <data name="Oobe_MeasureTool_Activation.Text" xml:space="preserve"> <value>to bring up the Screen Ruler command bar.</value> </data> <data name="Oobe_MeasureTool_HowToLaunch.Text" xml:space="preserve"> <value>The Bounds mode lets you select a specific area to measure. You can also shift-drag an area to persist in on screen. The various Spacing modes allows tracing similar pixels along horizontal and vertical axes with a customizable pixel tolerance threshold (use settings or mouse wheel to adjust it).</value> </data> <data name="Oobe_MeasureTool.Title" xml:space="preserve"> <value>Screen Ruler</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_ColorPicker.Title" xml:space="preserve"> <value>Color Picker</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_FancyZones.Title" xml:space="preserve"> <value>FancyZones</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_FileLocksmith.Title" xml:space="preserve"> <value>File Locksmith</value> </data> <data name="Oobe_ImageResizer.Title" xml:space="preserve"> <value>Image Resizer</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_KBM.Title" xml:space="preserve"> <value>Keyboard Manager</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_MouseWithoutBorders.Title" xml:space="preserve"> <value>Mouse Without Borders</value> <comment>Product name. Do not localize this string</comment> </data> <data name="Oobe_PowerRename.Title" xml:space="preserve"> <value>PowerRename</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_Run.Title" xml:space="preserve"> <value>PowerToys Run</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_ShortcutGuide.Title" xml:space="preserve"> <value>Shortcut Guide</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_VideoConference.Title" xml:space="preserve"> <value>Video Conference Mute</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_Overview.Title" xml:space="preserve"> <value>Welcome</value> </data> <data name="Oobe_WhatsNew.Text" xml:space="preserve"> <value>What's new</value> </data> <data name="Oobe_WhatsNew_LoadingError.Title" xml:space="preserve"> <value>Couldn't load the release notes.</value> </data> <data name="Oobe_WhatsNew_LoadingError.Message" xml:space="preserve"> <value>Please check your internet connection.</value> </data> <data name="Oobe_WhatsNew_ProxyAuthenticationWarning.Title" xml:space="preserve"> <value>Couldn't load the release notes.</value> </data> <data name="Oobe_WhatsNew_ProxyAuthenticationWarning.Message" xml:space="preserve"> <value>Your proxy server requires authentication.</value> </data> <data name="Oobe_WhatsNew_DetailedReleaseNotesLink.Text" xml:space="preserve"> <value>See more detailed release notes on GitHub</value> <comment>Don't loc "GitHub", it's the name of a product</comment> </data> <data name="OOBE_Settings.Content" xml:space="preserve"> <value>Open Settings</value> </data> <data name="Oobe_NavViewItem.Content" xml:space="preserve"> <value>Welcome to PowerToys</value> <comment>Don't loc "PowerToys"</comment> </data> <data name="Feedback_NavViewItem.Content" xml:space="preserve"> <value>Give feedback</value> </data> <data name="OobeWindow_Title" xml:space="preserve"> <value>Welcome to PowerToys</value> </data> <data name="OobeWindow_TitleTxt.Text" xml:space="preserve"> <value>Welcome to PowerToys</value> </data> <data name="SettingsWindow_Title" xml:space="preserve"> <value>PowerToys Settings</value> <comment>Title of the settings window when running as user</comment> </data> <data name="Awake.ModuleTitle" xml:space="preserve"> <value>Awake</value> </data> <data name="Awake.ModuleDescription" xml:space="preserve"> <value>A convenient way to keep your PC awake on-demand.</value> </data> <data name="Awake_EnableSettingsCard.Header" xml:space="preserve"> <value>Enable Awake</value> <comment>Awake is a product name, do not loc</comment> </data> <data name="Awake_NoKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep using the selected power plan</value> </data> <data name="Awake_IndefiniteKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep awake indefinitely</value> </data> <data name="Awake_TemporaryKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep awake for a time interval</value> </data> <data name="Awake_ExpirableKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep awake until expiration</value> </data> <data name="Awake_DisplaySettingsCard.Header" xml:space="preserve"> <value>Keep screen on</value> </data> <data name="Awake_DisplaySettingsCard.Description" xml:space="preserve"> <value>This setting is only available when keeping the PC awake</value> </data> <data name="Awake_ExpirationSettingsExpander.Description" xml:space="preserve"> <value>Keep custom awake state until a specific date and time</value> </data> <data name="Awake_ModeSettingsCard.Header" xml:space="preserve"> <value>Mode</value> </data> <data name="Awake_BehaviorSettingsGroup.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="Awake_IntervalHoursInput.Header" xml:space="preserve"> <value>Hours</value> </data> <data name="Awake_IntervalMinutesInput.Header" xml:space="preserve"> <value>Minutes</value> </data> <data name="Awake_ExpirationSettingsExpander_Date.Header" xml:space="preserve"> <value>End date</value> </data> <data name="Awake_ExpirationSettingsExpander_Time.Header" xml:space="preserve"> <value>End time</value> </data> <data name="Oobe_Awake.Title" xml:space="preserve"> <value>Awake</value> <comment>Module name, do not loc</comment> </data> <data name="Oobe_Awake.Description" xml:space="preserve"> <value>Awake is a Windows tool designed to keep your PC awake on-demand without having to manage its power settings. This behavior can be helpful when running time-consuming tasks while ensuring that your PC does not go to sleep or turn off its screens.</value> </data> <data name="Oobe_Awake_HowToUse.Text" xml:space="preserve"> <value>Open **PowerToys Settings** and enable Awake</value> </data> <data name="Oobe_Awake_TipsAndTricks.Text" xml:space="preserve"> <value>You can always change modes quickly by **right-clicking the Awake icon** in the system tray.</value> </data> <data name="General_FailedToDownloadTheNewVersion.Title" xml:space="preserve"> <value>An error occurred trying to install this update:</value> </data> <data name="General_InstallNow.Content" xml:space="preserve"> <value>Install now</value> </data> <data name="General_ReadMore.Text" xml:space="preserve"> <value>Read more</value> </data> <data name="General_NewVersionAvailable.Title" xml:space="preserve"> <value>An update is available:</value> </data> <data name="General_Downloading.Text" xml:space="preserve"> <value>Downloading...</value> </data> <data name="General_TryAgainToDownloadAndInstall.Content" xml:space="preserve"> <value>Try again to download and install</value> </data> <data name="General_CheckingForUpdates.Text" xml:space="preserve"> <value>Checking for updates...</value> </data> <data name="General_NewVersionReadyToInstall.Title" xml:space="preserve"> <value>An update is ready to install:</value> </data> <data name="General_UpToDate.Title" xml:space="preserve"> <value>PowerToys is up to date</value> </data> <data name="General_CantCheck.Title" xml:space="preserve"> <value>Network error. Please try again later</value> </data> <data name="General_DownloadAndInstall.Content" xml:space="preserve"> <value>Download &amp; install</value> </data> <data name="ImageResizer_Fit_Fill_ThirdPersonSingular" xml:space="preserve"> <value>Fills</value> </data> <data name="ImageResizer_Fit_Fit_ThirdPersonSingular" xml:space="preserve"> <value>Fits within</value> </data> <data name="ImageResizer_Fit_Stretch_ThirdPersonSingular" xml:space="preserve"> <value>Stretches to</value> </data> <data name="ImageResizer_Unit_Centimeter" xml:space="preserve"> <value>Centimeters</value> </data> <data name="ImageResizer_Unit_Inch" xml:space="preserve"> <value>Inches</value> </data> <data name="ImageResizer_Unit_Percent" xml:space="preserve"> <value>Percent</value> </data> <data name="ImageResizer_Unit_Pixel" xml:space="preserve"> <value>Pixels</value> </data> <data name="EditButton.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Edit</value> </data> <data name="ImageResizer_EditSize.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Edit size</value> </data> <data name="No" xml:space="preserve"> <value>No</value> <comment>Label of a cancel button</comment> </data> <data name="Delete_Dialog_Description" xml:space="preserve"> <value>Are you sure you want to delete this item?</value> </data> <data name="Yes" xml:space="preserve"> <value>Yes</value> <comment>Label of a confirmation button</comment> </data> <data name="SeeWhatsNew.Content" xml:space="preserve"> <value>See what's new</value> </data> <data name="Awake_ModeSettingsCard.Description" xml:space="preserve"> <value>Manage the state of your device when Awake is active</value> </data> <data name="ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="Enable_ColorFormat.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Enable colorformat</value> </data> <data name="More_Options_Button.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>More options</value> </data> <data name="More_Options_ButtonTooltip.Text" xml:space="preserve"> <value>More options</value> </data> <data name="To.Text" xml:space="preserve"> <value>to</value> <comment>as in: from x to y</comment> </data> <data name="LearnMore_Awake.Text" xml:space="preserve"> <value>Learn more about Awake</value> <comment>Awake is a product name, do not loc</comment> </data> <data name="LearnMore_ColorPicker.Text" xml:space="preserve"> <value>Learn more about Color Picker</value> <comment>Color Picker is a product name, do not loc</comment> </data> <data name="LearnMore_FancyZones.Text" xml:space="preserve"> <value>Learn more about FancyZones</value> <comment>FancyZones is a product name, do not loc</comment> </data> <data name="LearnMore_FileLocksmith.Text" xml:space="preserve"> <value>Learn more about File Locksmith</value> </data> <data name="LearnMore_ImageResizer.Text" xml:space="preserve"> <value>Learn more about Image Resizer</value> <comment>Image Resizer is a product name, do not loc</comment> </data> <data name="LearnMore_KBM.Text" xml:space="preserve"> <value>Learn more about Keyboard Manager</value> <comment>Keyboard Manager is a product name, do not loc</comment> </data> <data name="LearnMore_MouseUtils.Text" xml:space="preserve"> <value>Learn more about Mouse utilities</value> <comment>Mouse utilities is a product name, do not loc</comment> </data> <data name="LearnMore_PastePlain.Text" xml:space="preserve"> <value>Learn more about Paste as Plain Text</value> <comment> Paste as Plain Text is the name of the module. </comment> </data> <data name="LearnMore_MouseWithoutBorders.Text" xml:space="preserve"> <value>Learn more about Mouse Without Borders</value> <comment>Mouse Without Borders is the name of the module. </comment> </data> <data name="LearnMore_PowerPreview.Text" xml:space="preserve"> <value>Learn more about File Explorer add-ons</value> <comment>File Explorer is a product name, localize as Windows does</comment> </data> <data name="LearnMore_Peek.Text" xml:space="preserve"> <value>Learn more about Peek</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="LearnMore_PowerRename.Text" xml:space="preserve"> <value>Learn more about PowerRename</value> <comment>PowerRename is a product name, do not loc</comment> </data> <data name="LearnMore_Run.Text" xml:space="preserve"> <value>Learn more about PowerToys Run</value> <comment>PowerToys Run is a product name, do not loc</comment> </data> <data name="LearnMore_MeasureTool.Text" xml:space="preserve"> <value>Learn more about Screen Ruler</value> <comment>Screen Ruler is a product name, do not loc</comment> </data> <data name="LearnMore_ShortcutGuide.Text" xml:space="preserve"> <value>Learn more about Shortcut Guide</value> <comment>Shortcut Guide is a product name, do not loc</comment> </data> <data name="LearnMore_VCM.Text" xml:space="preserve"> <value>Learn more about Video Conference Mute</value> <comment>Video Conference Mute is a product name, do not loc</comment> </data> <data name="Oobe_FileExplorer.Title" xml:space="preserve"> <value>File Explorer add-ons</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_MouseUtils.Title" xml:space="preserve"> <value>Mouse utilities</value> <comment>Mouse as in the hardware peripheral</comment> </data> <data name="Oobe_MouseUtils_FindMyMouse.Text" xml:space="preserve"> <value>Find My Mouse</value> <comment>Mouse as in the hardware peripheral</comment> </data> <data name="Oobe_MouseUtils_FindMyMouse_Description.Text" xml:space="preserve"> <value>Focus the mouse pointer pressing the Ctrl key twice, using a custom shortcut or shaking the mouse.</value> <comment>Mouse as in the hardware peripheral. Key as in a keyboard key</comment> </data> <data name="Oobe_MouseUtils_MouseHighlighter.Text" xml:space="preserve"> <value>Mouse Highlighter</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MouseHighlighter_Description.Text" xml:space="preserve"> <value>Use a keyboard shortcut to highlight left and right mouse clicks.</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MousePointerCrosshairs.Text" xml:space="preserve"> <value>Mouse Pointer Crosshairs</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MousePointerCrosshairs_Description.Text" xml:space="preserve"> <value>Draw crosshairs centered around the mouse pointer.</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MouseJump.Text" xml:space="preserve"> <value>Mouse Jump</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MouseJump_Description.Text" xml:space="preserve"> <value>Jump the mouse pointer quickly to anywhere on your desktop.</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Launch_Run.Content" xml:space="preserve"> <value>Launch PowerToys Run</value> </data> <data name="Launch_ShortcutGuide.Content" xml:space="preserve"> <value>Launch Shortcut Guide</value> </data> <data name="ColorPicker_ColorFormat_ToggleSwitch.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Show format in editor</value> </data> <data name="GeneralPage_Documentation.Text" xml:space="preserve"> <value>Documentation</value> </data> <data name="PowerLauncher_SearchList.PlaceholderText" xml:space="preserve"> <value>Search this list</value> </data> <data name="PowerLauncher_SearchList.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Search this list</value> </data> <data name="Awake.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="ColorPicker.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="General.SecondaryLinksHeader" xml:space="preserve"> <value>Related information</value> </data> <data name="ImageResizer.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="MouseUtils.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="PowerLauncher.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="PowerRename.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="EditTooltip.Text" xml:space="preserve"> <value>Edit</value> </data> <data name="RemoveTooltip.Text" xml:space="preserve"> <value>Remove</value> </data> <data name="Activation_Shortcut_Cancel" xml:space="preserve"> <value>Cancel</value> </data> <data name="Activation_Shortcut_Description" xml:space="preserve"> <value>Press a combination of keys to change this shortcut</value> </data> <data name="Activation_Shortcut_With_Disable_Description" xml:space="preserve"> <value>Press a combination of keys to change this shortcut. Right-click to remove the key combination, thereby deactivating the shortcut.</value> </data> <data name="Activation_Shortcut_Reset" xml:space="preserve"> <value>Reset</value> </data> <data name="Activation_Shortcut_Save" xml:space="preserve"> <value>Save</value> </data> <data name="Activation_Shortcut_Title" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="InvalidShortcut.Title" xml:space="preserve"> <value>Invalid shortcut</value> </data> <data name="InvalidShortcutWarningLabel.Text" xml:space="preserve"> <value>Only shortcuts that start with **Windows key**, **Ctrl**, **Alt** or **Shift** are valid.</value> <comment>The ** sequences are used for text formatting of the key names. Don't remove them on translation.</comment> </data> <data name="FancyZones_SpanZonesAcrossMonitors.Description" xml:space="preserve"> <value>All monitors must have the same DPI scaling and will be treated as one large combined rectangle which contains all monitors</value> </data> <data name="ImageResizer_DefaultSize_NewSizePrefix" xml:space="preserve"> <value>New size</value> <comment>First part of the default name of new sizes that can be added in PT's settings ui.</comment> </data> <data name="Awake_IntervalSettingsCard.Header" xml:space="preserve"> <value>Interval before returning to the previous awakeness state</value> </data> <data name="Awake_ExpirationSettingsExpander.Header" xml:space="preserve"> <value>End date and time</value> </data> <data name="MouseUtils.ModuleTitle" xml:space="preserve"> <value>Mouse utilities</value> </data> <data name="MouseUtils.ModuleDescription" xml:space="preserve"> <value>A collection of mouse utilities.</value> </data> <data name="MouseUtils_FindMyMouse.Header" xml:space="preserve"> <value>Find My Mouse</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_FindMyMouse.Description" xml:space="preserve"> <value>Find My Mouse highlights the position of the cursor when pressing the Ctrl key twice, using a custom shortcut or when shaking the mouse.</value> <comment>"Ctrl" is a keyboard key. "Find My Mouse" is the name of the utility</comment> </data> <data name="MouseUtils_Enable_FindMyMouse.Header" xml:space="preserve"> <value>Enable Find My Mouse</value> <comment>"Find My Mouse" is the name of the utility.</comment> </data> <data name="MouseUtils_FindMyMouse_ActivationMethod.Header" xml:space="preserve"> <value>Activation method</value> </data> <data name="MouseUtils_FindMyMouse_ActivationDoubleControlPress.Content" xml:space="preserve"> <value>Press Left Control twice</value> <comment>Left control is the physical key on the keyboard.</comment> </data> <data name="MouseUtils_FindMyMouse_ActivationShakeMouse.Content" xml:space="preserve"> <value>Shake mouse</value> <comment>Mouse is the hardware peripheral.</comment> </data> <data name="MouseUtils_FindMyMouse_ExcludedApps.Description" xml:space="preserve"> <value>Prevents module activation when an excluded application is the foreground application</value> </data> <data name="MouseUtils_FindMyMouse_ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="MouseUtils_FindMyMouse_ExcludedApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> </data> <data name="MouseUtils_Prevent_Activation_On_Game_Mode.Content" xml:space="preserve"> <value>Do not activate when Game Mode is on</value> <comment>"Game mode" is the Windows feature to prevent notification when playing a game.</comment> </data> <data name="MouseUtils_FindMyMouse_BackgroundColor.Header" xml:space="preserve"> <value>Background color</value> </data> <data name="MouseUtils_FindMyMouse_SpotlightColor.Header" xml:space="preserve"> <value>Spotlight color</value> </data> <data name="MouseUtils_FindMyMouse_OverlayOpacity.Header" xml:space="preserve"> <value>Overlay opacity (%)</value> </data> <data name="MouseUtils_FindMyMouse_SpotlightRadius.Header" xml:space="preserve"> <value>Spotlight radius (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_FindMyMouse_SpotlightInitialZoom.Header" xml:space="preserve"> <value>Spotlight initial zoom</value> </data> <data name="MouseUtils_FindMyMouse_SpotlightInitialZoom.Description" xml:space="preserve"> <value>Spotlight zoom factor at animation start</value> </data> <data name="MouseUtils_FindMyMouse_AnimationDurationMs.Header" xml:space="preserve"> <value>Animation duration (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_FindMyMouse_AnimationDurationMs.Description" xml:space="preserve"> <value>Time before the spotlight appears (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_FindMyMouse_AnimationDurationMs_Disabled.Message" xml:space="preserve"> <value>Animations are disabled by OS. See Settings &gt; Accessibility &gt; Visual effects</value> </data> <data name="MouseUtils_FindMyMouse_ShakingMinimumDistance.Header" xml:space="preserve"> <value>Shake minimum distance</value> </data> <data name="MouseUtils_FindMyMouse_ShakingMinimumDistance.Description" xml:space="preserve"> <value>The minimum distance for mouse shaking activation, for adjusting sensitivity</value> </data> <data name="MouseUtils_MouseHighlighter.Header" xml:space="preserve"> <value>Mouse Highlighter</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_MouseHighlighter.Description" xml:space="preserve"> <value>Mouse Highlighter mode will highlight mouse clicks.</value> <comment>"Mouse Highlighter" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_Enable_MouseHighlighter.Header" xml:space="preserve"> <value>Enable Mouse Highlighter</value> <comment>"Find My Mouse" is the name of the utility.</comment> </data> <data name="MouseUtils_MouseHighlighter_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MouseUtils_MouseHighlighter_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to turn on or off this mode</value> <comment>"Mouse Highlighter" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_MouseHighlighter_PrimaryButtonClickColor.Header" xml:space="preserve"> <value>Primary button highlight color</value> </data> <data name="MouseUtils_MouseHighlighter_SecondaryButtonClickColor.Header" xml:space="preserve"> <value>Secondary button highlight color</value> </data> <data name="MouseUtils_MouseHighlighter_HighlightRadius.Header" xml:space="preserve"> <value>Radius (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDelayMs.Header" xml:space="preserve"> <value>Fade delay (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDelayMs.Description" xml:space="preserve"> <value>Time before the highlight begins to fade (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDurationMs.Header" xml:space="preserve"> <value>Fade duration (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDurationMs.Description" xml:space="preserve"> <value>Duration of the disappear animation (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MousePointerCrosshairs.Header" xml:space="preserve"> <value>Mouse Pointer Crosshairs</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_MousePointerCrosshairs.Description" xml:space="preserve"> <value>Mouse Pointer Crosshairs draws crosshairs centered on the mouse pointer.</value> <comment>"Mouse Pointer Crosshairs" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_Enable_MousePointerCrosshairs.Header" xml:space="preserve"> <value>Enable Mouse Pointer Crosshairs</value> <comment>"Mouse Pointer Crosshairs" is the name of the utility.</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MouseUtils_MousePointerCrosshairs_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to show/hide the crosshairs</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsColor.Header" xml:space="preserve"> <value>Crosshairs color</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsOpacity.Header" xml:space="preserve"> <value>Crosshairs opacity (%)</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsRadius.Header" xml:space="preserve"> <value>Crosshairs center radius (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsThickness.Header" xml:space="preserve"> <value>Crosshairs thickness (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsBorderColor.Header" xml:space="preserve"> <value>Crosshairs border color</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsBorderSize.Header" xml:space="preserve"> <value>Crosshairs border size (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_IsCrosshairsFixedLengthEnabled.Header" xml:space="preserve"> <value>Fix crosshairs length</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsFixedLength.Header" xml:space="preserve"> <value>Crosshairs fixed length (px)</value> <comment>px = pixels</comment> </data> <data name="FancyZones_Radio_Custom_Colors.Content" xml:space="preserve"> <value>Custom colors</value> </data> <data name="FancyZones_Radio_Default_Theme.Content" xml:space="preserve"> <value>Windows default</value> </data> <data name="ColorModeHeader.Header" xml:space="preserve"> <value>App theme</value> </data> <data name="FancyZones_Zone_Appearance.Description" xml:space="preserve"> <value>Customize the way zones look</value> </data> <data name="FancyZones_Zone_Appearance.Header" xml:space="preserve"> <value>Zone appearance</value> </data> <data name="VideoConference_DeprecationWarning.Title" xml:space="preserve"> <value>VCM is moving into legacy mode (maintenance only).</value> </data> <data name="VideoConference_DeprecationWarningButton.Content" xml:space="preserve"> <value>Learn more</value> </data> <data name="VideoConference_RunAsAdminRequired.Title" xml:space="preserve"> <value>You need to run as administrator to modify these settings.</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_GCODE.Header" xml:space="preserve"> <value>Geometric Code</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_GCODE.Description" xml:space="preserve"> <value>Only .gcode files with embedded thumbnails are supported</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_GCODE.Header" xml:space="preserve"> <value>Geometric Code</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_GCODE.Description" xml:space="preserve"> <value>Only .gcode files with embedded thumbnails are supported</value> </data> <data name="FancyZones_NumberColor.Header" xml:space="preserve"> <value>Number color</value> </data> <data name="FancyZones_ShowZoneNumberCheckBoxControl.Content" xml:space="preserve"> <value>Show zone number</value> </data> <data name="ToggleSwitch.OffContent" xml:space="preserve"> <value>Off</value> <comment>The state of a ToggleSwitch when it's off</comment> </data> <data name="ToggleSwitch.OnContent" xml:space="preserve"> <value>On</value> <comment>The state of a ToggleSwitch when it's on</comment> </data> <data name="CropAndLock.ModuleDescription" xml:space="preserve"> <value>Crop And Lock allows you to crop a current application into a smaller window or just create a thumbnail. Focus the target window and press the shortcut to start cropping.</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="CropAndLock.ModuleTitle" xml:space="preserve"> <value>Crop And Lock </value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="CropAndLock_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="CropAndLock_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="Shell_CropAndLock.Content" xml:space="preserve"> <value>Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="LearnMore_CropAndLock.Text" xml:space="preserve"> <value>Learn more about Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="CropAndLock_ReparentActivation_Shortcut.Header" xml:space="preserve"> <value>Reparent shortcut</value> </data> <data name="CropAndLock_ReparentActivation_Shortcut.Description" xml:space="preserve"> <value>Shortcut to crop an application's window into a cropped window. This is experimental and can cause issues with some applications, since the cropped window will contain the original application window.</value> </data> <data name="CropAndLock_ThumbnailActivation_Shortcut.Header" xml:space="preserve"> <value>Thumbnail shortcut</value> </data> <data name="CropAndLock_ThumbnailActivation_Shortcut.Description" xml:space="preserve"> <value>Shortcut to crop and create a thumbnail of another window. The application isn't controllable through the thumbnail but it'll have less compatibility issues. </value> </data> <data name="CropAndLock.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="Oobe_CropAndLock.Title" xml:space="preserve"> <value>Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="Oobe_CropAndLock.Description" xml:space="preserve"> <value>Crop And Lock allows you to crop a current application into a smaller window or just create a thumbnail. Focus the target window and press the shortcut to start cropping.</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="Oobe_CropAndLock_HowToUse_Thumbnail.Text" xml:space="preserve"> <value>to crop and create a thumbnail of another window. The application isn't controllable through the thumbnail but it'll have less compatibility issues.</value> </data> <data name="Oobe_CropAndLock_HowToUse_Reparent.Text" xml:space="preserve"> <value>to crop an application's window into a cropped window. This is experimental and can cause issues with some applications, since the cropped window will contain the original application window.</value> </data> <data name="AlwaysOnTop.ModuleDescription" xml:space="preserve"> <value>Always On Top is a quick and easy way to pin windows on top.</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop.ModuleTitle" xml:space="preserve"> <value>Always On Top </value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="Peek_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="AlwaysOnTop_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_ExcludedApps.Description" xml:space="preserve"> <value>Excludes an application from pinning on top</value> </data> <data name="AlwaysOnTop_ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="AlwaysOnTop_ExcludedApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> </data> <data name="AlwaysOnTop_FrameColor.Header" xml:space="preserve"> <value>Color</value> </data> <data name="AlwaysOnTop_FrameEnabled.Header" xml:space="preserve"> <value>Show a border around the pinned window</value> </data> <data name="AlwaysOnTop_FrameThickness.Header" xml:space="preserve"> <value>Thickness (px)</value> <comment>px = pixels</comment> </data> <data name="AlwaysOnTop_Behavior_GroupSettings.Header" xml:space="preserve"> <value>Appearance &amp; behavior</value> </data> <data name="Shell_AlwaysOnTop.Content" xml:space="preserve"> <value>Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_GameMode.Content" xml:space="preserve"> <value>Do not activate when Game Mode is on</value> <comment>Game Mode is a Windows feature</comment> </data> <data name="AlwaysOnTop_SoundTitle.Header" xml:space="preserve"> <value>Sound</value> </data> <data name="AlwaysOnTop_Sound.Content" xml:space="preserve"> <value>Play a sound when pinning a window</value> </data> <data name="AlwaysOnTop_Behavior.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="LearnMore_AlwaysOnTop.Text" xml:space="preserve"> <value>Learn more about Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="AlwaysOnTop_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to pin or unpin an app window</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="Oobe_AlwaysOnTop.Title" xml:space="preserve"> <value>Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="Oobe_AlwaysOnTop.Description" xml:space="preserve"> <value>Always On Top improves your multitasking workflow by pinning an application window so it's always in front - even when focus changes to another window after that.</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="Oobe_AlwaysOnTop_HowToUse.Text" xml:space="preserve"> <value>to pin or unpin the selected window so it's always on top of all other windows.</value> </data> <data name="Oobe_AlwaysOnTop_TipsAndTricks.Text" xml:space="preserve"> <value>You can tweak the visual outline of the pinned windows in PowerToys settings.</value> </data> <data name="AlwaysOnTop_FrameColor_Mode.Header" xml:space="preserve"> <value>Color mode</value> </data> <data name="AlwaysOnTop_Radio_Custom_Color.Content" xml:space="preserve"> <value>Custom color</value> </data> <data name="AlwaysOnTop_Radio_Windows_Default.Content" xml:space="preserve"> <value>Windows default</value> </data> <data name="FileExplorerPreview.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Monaco_Wrap_Text.Content" xml:space="preserve"> <value>Wrap text</value> <comment>Feature on or off</comment> </data> <data name="FancyZones_AllowPopupWindowSnap.Description" xml:space="preserve"> <value>This setting can affect all popup windows including notifications</value> </data> <data name="FancyZones_AllowPopupWindowSnap.Header" xml:space="preserve"> <value>Allow popup windows snapping</value> </data> <data name="FancyZones_AllowChildWindowSnap.Content" xml:space="preserve"> <value>Allow child windows snapping</value> </data> <data name="Shell_WhatsNew.Content" xml:space="preserve"> <value>What's new</value> </data> <data name="Shell_Peek.Content" xml:space="preserve"> <value>Peek</value> <comment>Product name: Navigation view item name for Peek</comment> </data> <data name="Peek.ModuleTitle" xml:space="preserve"> <value>Peek</value> </data> <data name="Peek.ModuleDescription" xml:space="preserve"> <value>Peek is a quick and easy way to preview files. Select a file in File Explorer and press the shortcut to open the file preview.</value> </data> <data name="Peek_EnablePeek.Header" xml:space="preserve"> <value>Enable Peek</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="Peek_BehaviorHeader.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="Peek_AlwaysRunNotElevated.Header" xml:space="preserve"> <value>Always run not elevated, even when PowerToys is elevated</value> </data> <data name="Peek_AlwaysRunNotElevated.Description" xml:space="preserve"> <value>Tries to run Peek without elevated permissions, to fix access to network shares. You need to disable and re-enable Peek for changes to this value to take effect.</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="Peek_CloseAfterLosingFocus.Header" xml:space="preserve"> <value>Automatically close the Peek window after it loses focus</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="FancyZones_DisableRoundCornersOnWindowSnap.Content" xml:space="preserve"> <value>Disable round corners when window is snapped</value> </data> <data name="PowerLauncher_SearchQueryTuningEnabled.Description" xml:space="preserve"> <value>Fine tune results ordering</value> </data> <data name="PowerLauncher_SearchQueryTuningEnabled.Header" xml:space="preserve"> <value>Results order tuning</value> </data> <data name="PowerLauncher_SearchClickedItemWeight.Description" xml:space="preserve"> <value>Use a higher number to get selected results to rise faster. The default is 5, 0 to disable.</value> </data> <data name="PowerLauncher_SearchClickedItemWeight.Header" xml:space="preserve"> <value>Selected item weight</value> </data> <data name="PowerLauncher_WaitForSlowResults.Description" xml:space="preserve"> <value>Selecting this can help preselect the top, more relevant result, but at the risk of jumpiness</value> </data> <data name="PowerLauncher_WaitForSlowResults.Header" xml:space="preserve"> <value>Wait on slower plugin results before selecting top item in results</value> </data> <data name="PowerLauncher_PluginWeightBoost.Description" xml:space="preserve"> <value>Use a higher number to have this plugin's result show higher in the global results. Default is 0.</value> </data> <data name="PowerLauncher_PluginWeightBoost.Header" xml:space="preserve"> <value>Global sort order score modifier</value> </data> <data name="AlwaysOnTop_RoundCorners.Content" xml:space="preserve"> <value>Enable round corners</value> </data> <data name="LearnMore_QuickAccent.Text" xml:space="preserve"> <value>Learn more about Quick Accent</value> <comment>Quick Accent is a product name, do not loc</comment> </data> <data name="QuickAccent_EnableQuickAccent.Header" xml:space="preserve"> <value>Enable Quick Accent</value> </data> <data name="Shell_QuickAccent.Content" xml:space="preserve"> <value>Quick Accent</value> </data> <data name="QuickAccent.ModuleDescription" xml:space="preserve"> <value>Quick Accent is an alternative way to type accented characters, useful for when a keyboard doesn't support that specific accent. Activate by holding the key for the character you want to add an accent to, then press the activation key (space, left or right arrow keys) and an overlay to select accented characters will appear!</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent.ModuleTitle" xml:space="preserve"> <value>Quick Accent</value> </data> <data name="QuickAccent.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> </data> <data name="Oobe_QuickAccent.Description" xml:space="preserve"> <value>Quick Accent is an easy way to write letters with accents, like on a smartphone.</value> </data> <data name="Oobe_QuickAccent.Title" xml:space="preserve"> <value>Quick Accent</value> </data> <data name="Oobe_QuickAccent_HowToUse.Text" xml:space="preserve"> <value>Open **PowerToys Settings** and enable Quick Accent. While holding the key for the character you want to add an accent to, press the Activation Key and an overlay to select the accented character will appear.</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="QuickAccent_Activation_Shortcut.Header" xml:space="preserve"> <value>Activation key</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent_Activation_Shortcut.Description" xml:space="preserve"> <value>Press this key after holding down the target letter</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent_Activation_Key_Arrows.Content" xml:space="preserve"> <value>Left/Right Arrow</value> <comment>Left/Right arrow keyboard keys</comment> </data> <data name="QuickAccent_Activation_Key_Space.Content" xml:space="preserve"> <value>Space</value> <comment>Space is the space keyboard key</comment> </data> <data name="QuickAccent_Activation_Key_Either.Content" xml:space="preserve"> <value>Left, Right or Space</value> <comment>All are keys on a keyboard</comment> </data> <data name="QuickAccent_Toolbar.Header" xml:space="preserve"> <value>Toolbar</value> </data> <data name="QuickAccent_ToolbarPosition.Header" xml:space="preserve"> <value>Toolbar position</value> </data> <data name="QuickAccent_ToolbarPosition_TopCenter.Content" xml:space="preserve"> <value>Top center</value> </data> <data name="QuickAccent_ToolbarPosition_TopLeftCorner.Content" xml:space="preserve"> <value>Top left corner</value> </data> <data name="QuickAccent_ToolbarPosition_TopRightCorner.Content" xml:space="preserve"> <value>Top right corner</value> </data> <data name="QuickAccent_ToolbarPosition_BottomLeftCorner.Content" xml:space="preserve"> <value>Bottom left corner</value> </data> <data name="QuickAccent_ToolbarPosition_BottomCenter.Content" xml:space="preserve"> <value>Bottom center</value> </data> <data name="QuickAccent_ToolbarPosition_BottomRightCorner.Content" xml:space="preserve"> <value>Bottom right corner</value> </data> <data name="QuickAccent_ToolbarPosition_Center.Content" xml:space="preserve"> <value>Center</value> </data> <data name="QuickAccent_ToolbarPosition_Left.Content" xml:space="preserve"> <value>Left</value> </data> <data name="QuickAccent_ToolbarPosition_Right.Content" xml:space="preserve"> <value>Right</value> </data> <data name="QuickAccent_Behavior.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="QuickAccent_InputTimeMs.Header" xml:space="preserve"> <value>Input delay (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="QuickAccent_InputTimeMs.Description" xml:space="preserve"> <value>Hold the key down for this much time to make the accent menu appear (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="QuickAccent_ExcludedApps.Description" xml:space="preserve"> <value>Prevents module activation if a foreground application is excluded. Add one application name per line.</value> </data> <data name="QuickAccent_ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="QuickAccent_ExcludedApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: Teams.exe</value> </data> <data name="LearnMore_TextExtractor.Text" xml:space="preserve"> <value>Learn more about Text Extractor</value> </data> <data name="TextExtractor_Cancel" xml:space="preserve"> <value>cancel</value> </data> <data name="General_SettingsBackupAndRestore_NothingToBackup" xml:space="preserve"> <value>A new backup was not created because no settings have been changed since last backup.</value> </data> <data name="General_SettingsBackupAndRestore_NoBackupFound" xml:space="preserve"> <value>No backup found</value> </data> <data name="General_SettingsBackupAndRestore_FailedToParseTime" xml:space="preserve"> <value>Failed to parse time</value> </data> <data name="General_SettingsBackupAndRestore_UnknownBackupTime" xml:space="preserve"> <value>Unknown</value> </data> <data name="General_SettingsBackupAndRestore_UnknownBackupSource" xml:space="preserve"> <value>Unknown</value> </data> <data name="General_SettingsBackupAndRestore_ThisMachine" xml:space="preserve"> <value>This computer</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsMatch" xml:space="preserve"> <value>Current settings match</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsStatusAt" xml:space="preserve"> <value>at</value> <comment>E.g., Food was served 'at' noon.</comment> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsDiffer" xml:space="preserve"> <value>Current settings differ</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsNoChecked" xml:space="preserve"> <value>Checking...</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsUnknown" xml:space="preserve"> <value>Unknown</value> </data> <data name="General_SettingsBackupAndRestore_NeverRestored" xml:space="preserve"> <value>Never restored</value> </data> <data name="General_SettingsBackupAndRestore_NothingToRestore" xml:space="preserve"> <value>Nothing to restore.</value> </data> <data name="General_SettingsBackupAndRestore_NoSettingsFilesFound" xml:space="preserve"> <value>No settings files found.</value> </data> <data name="General_SettingsBackupAndRestore_BackupError" xml:space="preserve"> <value>There was an error. Try another backup location.</value> </data> <data name="General_SettingsBackupAndRestore_SettingsFormatError" xml:space="preserve"> <value>There was an error in the settings format. Please check the settings file:</value> </data> <data name="General_SettingsBackupAndRestore_BackupComplete" xml:space="preserve"> <value>Backup completed.</value> </data> <data name="General_SettingsBackupAndRestore_NoBackupSyncPath" xml:space="preserve"> <value>No backup location selected.</value> </data> <data name="General_SettingsBackupAndRestore_NoBackupsFound" xml:space="preserve"> <value>No backups found to restore.</value> </data> <data name="General_SettingsBackupAndRestore_InvalidBackupLocation" xml:space="preserve"> <value>Invalid backup location.</value> </data> <data name="TextExtractor.ModuleDescription" xml:space="preserve"> <value>Text Extractor is a convenient way to copy text from anywhere on screen</value> </data> <data name="TextExtractor.ModuleTitle" xml:space="preserve"> <value>Text Extractor</value> </data> <data name="TextExtractor_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Text Extractor</value> </data> <data name="TextExtractor_SupportedLanguages.Title" xml:space="preserve"> <value>Text Extractor can only recognize languages that have the OCR pack installed.</value> </data> <data name="TextExtractor_SupportedLanguages_Link.Content" xml:space="preserve"> <value>Learn more about supported languages</value> </data> <data name="Shell_TextExtractor.Content" xml:space="preserve"> <value>Text Extractor</value> </data> <data name="Launch_TextExtractor.Content" xml:space="preserve"> <value>Launch Text Extractor</value> </data> <data name="Oobe_TextExtractor.Title" xml:space="preserve"> <value>Text Extractor</value> </data> <data name="Oobe_TextExtractor_HowToUse.Text" xml:space="preserve"> <value>to open Text Extractor and then selecting a region to copy the text from.</value> </data> <data name="Oobe_TextExtractor_TipsAndTricks.Text" xml:space="preserve"> <value>Hold the shift key to move the selection region around.</value> </data> <data name="TextExtractor.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> </data> <data name="Oobe_TextExtractor.Description" xml:space="preserve"> <value>Text Extractor works like Snipping Tool, but copies the text out of the selected region using OCR and puts it on the clipboard.</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Monaco_Try_Format.Description" xml:space="preserve"> <value>Applies to json and xml. Files remain unchanged.</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Monaco_Try_Format.Header" xml:space="preserve"> <value>Try to format the source for preview</value> </data> <data name="Run_ConflictingKeywordInfo.Title" xml:space="preserve"> <value>Some characters and phrases may conflict with global queries of other plugins if you use them as activation command.</value> </data> <data name="Run_ConflictingKeywordInfo_Link.Content" xml:space="preserve"> <value>Learn more about conflicting activation commands</value> </data> <data name="MeasureTool_ContinuousCapture_Information.Title" xml:space="preserve"> <value>The continuous capture mode will consume more resources when in use. Also, measurements will be excluded from screenshots and screen capture.</value> <comment>pointer as in mouse pointer. Resources refer to things like CPU, GPU, RAM</comment> </data> <data name="QuickAccent_Description_Indicator.Header" xml:space="preserve"> <value>Show the Unicode code and name of the currently selected character</value> </data> <data name="QuickAccent_SortByUsageFrequency_Indicator.Header" xml:space="preserve"> <value>Sort characters by usage frequency</value> </data> <data name="QuickAccent_SortByUsageFrequency_Indicator.Description" xml:space="preserve"> <value>Track characters usage frequency and sort them accordingly</value> </data> <data name="QuickAccent_StartSelectionFromTheLeft_Indicator.Header" xml:space="preserve"> <value>Start selection from the left</value> </data> <data name="QuickAccent_StartSelectionFromTheLeft_Indicator.Description" xml:space="preserve"> <value>Start selection from the leftmost character for all activation keys, including left and right arrows</value> </data> <data name="QuickAccent_DisableFullscreen.Header" xml:space="preserve"> <value>Disable when Game Mode is On</value> </data> <data name="QuickAccent_Language.Header" xml:space="preserve"> <value>Characters</value> </data> <data name="QuickAccent_SelectedLanguage.Header" xml:space="preserve"> <value>Choose a character set</value> </data> <data name="QuickAccent_SelectedLanguage.Description" xml:space="preserve"> <value>Show only accented characters common to the selected set</value> </data> <data name="QuickAccent_SelectedLanguage_All.Content" xml:space="preserve"> <value>All available</value> </data> <data name="QuickAccent_SelectedLanguage_Catalan.Content" xml:space="preserve"> <value>Catalan</value> </data> <data name="QuickAccent_SelectedLanguage_Currency.Content" xml:space="preserve"> <value>Currency</value> </data> <data name="QuickAccent_SelectedLanguage_Croatian.Content" xml:space="preserve"> <value>Croatian</value> </data> <data name="QuickAccent_SelectedLanguage_Czech.Content" xml:space="preserve"> <value>Czech</value> </data> <data name="QuickAccent_SelectedLanguage_Gaeilge.Content" xml:space="preserve"> <value>Gaeilge</value> <comment>Gaelic language spoken in Ireland</comment> </data> <data name="QuickAccent_SelectedLanguage_Gaidhlig.Content" xml:space="preserve"> <value>Gàidhlig</value> <comment>Scottish Gaelic</comment> </data> <data name="QuickAccent_SelectedLanguage_German.Content" xml:space="preserve"> <value>German</value> </data> <data name="QuickAccent_SelectedLanguage_Hebrew.Content" xml:space="preserve"> <value>Hebrew</value> </data> <data name="QuickAccent_SelectedLanguage_French.Content" xml:space="preserve"> <value>French</value> </data> <data name="QuickAccent_SelectedLanguage_Estonian.Content" xml:space="preserve"> <value>Estonian</value> </data> <data name="QuickAccent_SelectedLanguage_Lithuanian.Content" xml:space="preserve"> <value>Lithuanian</value> </data> <data name="QuickAccent_SelectedLanguage_Macedonian.Content" xml:space="preserve"> <value>Macedonian</value> </data> <data name="QuickAccent_SelectedLanguage_Maori.Content" xml:space="preserve"> <value>Maori</value> </data> <data name="QuickAccent_SelectedLanguage_Dutch.Content" xml:space="preserve"> <value>Dutch</value> </data> <data name="QuickAccent_SelectedLanguage_Norwegian.Content" xml:space="preserve"> <value>Norwegian</value> </data> <data name="QuickAccent_SelectedLanguage_Pinyin.Content" xml:space="preserve"> <value>Pinyin</value> </data> <data name="QuickAccent_SelectedLanguage_Polish.Content" xml:space="preserve"> <value>Polish</value> </data> <data name="QuickAccent_SelectedLanguage_Portuguese.Content" xml:space="preserve"> <value>Portuguese</value> </data> <data name="QuickAccent_SelectedLanguage_Slovakian.Content" xml:space="preserve"> <value>Slovakian</value> </data> <data name="QuickAccent_SelectedLanguage_Spanish.Content" xml:space="preserve"> <value>Spanish</value> </data> <data name="QuickAccent_SelectedLanguage_Swedish.Content" xml:space="preserve"> <value>Swedish</value> </data> <data name="QuickAccent_SelectedLanguage_Turkish.Content" xml:space="preserve"> <value>Turkish</value> </data> <data name="QuickAccent_SelectedLanguage_Icelandic.Content" xml:space="preserve"> <value>Icelandic</value> </data> <data name="QuickAccent_SelectedLanguage_Romanian.Content" xml:space="preserve"> <value>Romanian</value> </data> <data name="QuickAccent_SelectedLanguage_Serbian.Content" xml:space="preserve"> <value>Serbian</value> </data> <data name="QuickAccent_SelectedLanguage_Hungarian.Content" xml:space="preserve"> <value>Hungarian</value> </data> <data name="QuickAccent_SelectedLanguage_Italian.Content" xml:space="preserve"> <value>Italian</value> </data> <data name="QuickAccent_SelectedLanguage_Kurdish.Content" xml:space="preserve"> <value>Kurdish</value> </data> <data name="QuickAccent_SelectedLanguage_Welsh.Content" xml:space="preserve"> <value>Welsh</value> </data> <data name="Hosts.ModuleDescription" xml:space="preserve"> <value>Quick and simple utility for managing hosts file.</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Hosts.ModuleTitle" xml:space="preserve"> <value>Hosts File Editor</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Shell_Hosts.Content" xml:space="preserve"> <value>Hosts File Editor</value> <comment>Products name: Navigation view item name for Hosts File Editor</comment> </data> <data name="Hosts_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Hosts_Toggle_ShowStartupWarning.Header" xml:space="preserve"> <value>Show a warning at startup</value> </data> <data name="Hosts_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="Hosts_LaunchButtonControl.Description" xml:space="preserve"> <value>Manage your hosts file</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Hosts_LaunchButtonControl.Header" xml:space="preserve"> <value>Launch Host File Editor</value> <comment>"Host File Editor" is a product name</comment> </data> <data name="Hosts_LaunchButton_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Launch Host File Editor</value> <comment>"Host File Editor" is a product name</comment> </data> <data name="Hosts_AdditionalLinesPosition.Header" xml:space="preserve"> <value>Position of additional content</value> </data> <data name="Hosts_AdditionalLinesPosition_Bottom.Content" xml:space="preserve"> <value>Bottom</value> </data> <data name="Hosts_AdditionalLinesPosition_Top.Content" xml:space="preserve"> <value>Top</value> </data> <data name="Hosts_Behavior_GroupSettings.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="Launch_Hosts.Content" xml:space="preserve"> <value>Launch Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="LearnMore_Hosts.Text" xml:space="preserve"> <value>Learn more about Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Oobe_Hosts.Description" xml:space="preserve"> <value>Hosts File Editor is a quick and simple utility for managing hosts file.</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Oobe_Hosts.Title" xml:space="preserve"> <value>Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Hosts_Toggle_LaunchAdministrator.Description" xml:space="preserve"> <value>Needs to be launched as administrator in order to make changes to the hosts file</value> </data> <data name="Hosts_Toggle_LaunchAdministrator.Header" xml:space="preserve"> <value>Launch as administrator</value> </data> <data name="ShortcutGuide_PressTimeForTaskbarIconShortcuts.Header" xml:space="preserve"> <value>Press duration before showing taskbar icon shortcuts (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="FileLocksmith.ModuleDescription" xml:space="preserve"> <value>A Windows shell extension to find out which processes are using the selected files and directories.</value> </data> <data name="FileLocksmith.ModuleTitle" xml:space="preserve"> <value>File Locksmith</value> </data> <data name="Shell_FileLocksmith.Content" xml:space="preserve"> <value>File Locksmith</value> <comment>Product name: Navigation view item name for FileLocksmith</comment> </data> <data name="FileLocksmith_Enable_FileLocksmith.Header" xml:space="preserve"> <value>Enable File Locksmith</value> <comment>File Locksmith is the name of the utility</comment> </data> <data name="FileLocksmith_Toggle_StandardContextMenu.Content" xml:space="preserve"> <value>Default and extended context menu</value> </data> <data name="FileLocksmith_Toggle_ExtendedContextMenu.Content" xml:space="preserve"> <value>Extended context menu only</value> </data> <data name="FileLocksmith_Toggle_ContextMenu.Header" xml:space="preserve"> <value>Show File Locksmith in</value> </data> <data name="FileLocksmith_ShellIntegration.Header" xml:space="preserve"> <value>Shell integration</value> <comment>This refers to directly integrating in with Windows</comment> </data> <data name="GPO_IsSettingForced.Title" xml:space="preserve"> <value>The system administrator is forcing this setting.</value> </data> <data name="Hosts_AdditionalLinesPosition.Description" xml:space="preserve"> <value>Additional content includes the file header and lines that can't parse</value> </data> <data name="TextExtractor_Languages.Header" xml:space="preserve"> <value>Preferred language</value> </data> <data name="Alternate_OOBE_AlwaysOnTop_Description.Text" xml:space="preserve"> <value>Pin a window so that:</value> </data> <data name="Alternate_OOBE_AlwaysOnTop_Title.Text" xml:space="preserve"> <value>Always On Top</value> </data> <data name="Alternate_OOBE_ColorPicker_Description.Text" xml:space="preserve"> <value>To pick a color:</value> </data> <data name="Alternate_OOBE_ColorPicker_Title.Text" xml:space="preserve"> <value>Color Picker</value> </data> <data name="Alternate_OOBE_Description.Text" xml:space="preserve"> <value>Here are a few shortcuts to get you started:</value> </data> <data name="Alternate_OOBE_FancyZones_Description.Text" xml:space="preserve"> <value>To open the FancyZones editor, press:</value> </data> <data name="Alternate_OOBE_FancyZones_Title.Text" xml:space="preserve"> <value>FancyZones</value> </data> <data name="Alternate_OOBE_Run_Description.Text" xml:space="preserve"> <value>Get access to your files and more:</value> </data> <data name="Alternate_OOBE_Run_Title.Text" xml:space="preserve"> <value>PowerToys Run</value> </data> <data name="General_Experimentation.Header" xml:space="preserve"> <value>Experimentation</value> </data> <data name="GeneralPage_EnableExperimentation.Description" xml:space="preserve"> <value>Note: Only Windows Insider builds may be selected for experimentation</value> </data> <data name="GeneralPage_EnableExperimentation.Header" xml:space="preserve"> <value>Allow experimentation with new features</value> </data> <data name="GPO_ExperimentationIsDisallowed.Title" xml:space="preserve"> <value>The system administrator has disabled experimentation.</value> </data> <data name="Shell_PastePlain.Content" xml:space="preserve"> <value>Paste As Plain Text</value> <comment>Product name: Navigation view item name for Paste as Plain Text</comment> </data> <data name="PastePlain.ModuleDescription" xml:space="preserve"> <value>Paste As Plain Text is a quick shortcut for pasting the text contents of your clipboard without formatting. Note: the formatted text in the clipboard is replaced with the unformatted text.</value> </data> <data name="PastePlain.ModuleTitle" xml:space="preserve"> <value>Paste As Plain Text</value> </data> <data name="PastePlain_Cancel" xml:space="preserve"> <value>cancel</value> </data> <data name="PastePlain_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Paste As Plain Text</value> </data> <data name="Oobe_PastePlain.Description" xml:space="preserve"> <value>Paste As Plain Text strips rich formatting from your clipboard data and pastes it as non-formatted text.</value> </data> <data name="Oobe_PastePlain.Title" xml:space="preserve"> <value>Paste As Plain Text</value> </data> <data name="Oobe_PastePlain_HowToUse.Text" xml:space="preserve"> <value>to paste your clipboard data as plain text. Note: this will replace the formatted text in your clipboard with the plain text.</value> </data> <data name="AllAppsTxt.Text" xml:space="preserve"> <value>All apps</value> </data> <data name="BackBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Back</value> </data> <data name="BackLabel.Text" xml:space="preserve"> <value>Back</value> </data> <data name="BugReportBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Bug report</value> </data> <data name="BugReportTooltip.Text" xml:space="preserve"> <value>Bug report</value> </data> <data name="DocsBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Documentation</value> </data> <data name="DocsTooltip.Text" xml:space="preserve"> <value>Documentation</value> </data> <data name="FZEditorString" xml:space="preserve"> <value>FancyZones Editor</value> <comment>Do not localize this string</comment> </data> <data name="MoreBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>More</value> </data> <data name="MoreLabel.Text" xml:space="preserve"> <value>More</value> </data> <data name="SettingsBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Settings</value> </data> <data name="SettingsTooltip.Text" xml:space="preserve"> <value>Settings</value> </data> <data name="ShortcutsTxt.Text" xml:space="preserve"> <value>Shortcuts</value> </data> <data name="UpdateAvailable.Title" xml:space="preserve"> <value>Update available</value> </data> <data name="FileExplorerPreview_Toggle_Monaco_Max_File_Size.Header" xml:space="preserve"> <value>Maximum file size to preview</value> <comment>Size refers to the disk space used by a file</comment> </data> <data name="FileExplorerPreview_Toggle_Monaco_Max_File_Size.Description" xml:space="preserve"> <value>The maximum size, in kilobytes, for files to be displayed. This is a safety mechanism to prevent loading large files into RAM.</value> <comment>"RAM" refers to random access memory; "size" refers to disk space; "bytes" refer to the measurement unit</comment> </data> <data name="RegistryPreview.ModuleDescription" xml:space="preserve"> <value>A quick little utility to visualize and edit complex Windows Registry files.</value> </data> <data name="RegistryPreview.ModuleTitle" xml:space="preserve"> <value>Registry Preview</value> </data> <data name="Shell_RegistryPreview.Content" xml:space="preserve"> <value>Registry Preview</value> <comment>Product name: Navigation view item name for Registry Preview</comment> </data> <data name="RegistryPreview_Enable_RegistryPreview.Header" xml:space="preserve"> <value>Enable Registry Preview</value> <comment>Registry Preview is the name of the utility</comment> </data> <data name="Oobe_RegistryPreview_HowToUse.Text" xml:space="preserve"> <value>In File Explorer, right-click a .REG file and select **Preview** from the context menu.</value> </data> <data name="Oobe_RegistryPreview_TipsAndTricks.Text" xml:space="preserve"> <value>You can preview or edit Registry files in File Explorer or by opening the app from the PowerToys launcher.</value> </data> <data name="Oobe_RegistryPreview.Description" xml:space="preserve"> <value>Registry Preview is a quick little utility to visualize and edit complex Windows Registry files.</value> </data> <data name="Oobe_RegistryPreview.Title" xml:space="preserve"> <value>Registry Preview</value> <comment>Do not localize this string</comment> </data> <data name="LearnMore_RegistryPreview.Text" xml:space="preserve"> <value>Learn more about Registry Preview</value> <comment>Registry Preview is a product name, do not loc</comment> </data> <data name="Launch_RegistryPreview.Content" xml:space="preserve"> <value>Launch Registry Preview</value> <comment>"Registry Preview" is the name of the utility</comment> </data> <data name="MouseUtils_MouseJump.Description" xml:space="preserve"> <value>Quickly move the mouse pointer long distances.</value> <comment>"Mouse Jump" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_MouseJump.Header" xml:space="preserve"> <value>Mouse Jump</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_MouseJump_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to turn on or off this mode</value> </data> <data name="MouseUtils_MouseJump_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MouseUtils_Enable_MouseJump.Header" xml:space="preserve"> <value>Enable Mouse Jump</value> <comment>"Mouse Jump" is the name of the utility.</comment> </data> <data name="GPO_AutoDownloadUpdatesIsDisabled.Title" xml:space="preserve"> <value>The system administrator has disabled the automatic download of updates.</value> </data> <data name="Hosts_Toggle_LoopbackDuplicates.Description" xml:space="preserve"> <value>127.0.0.1, ::1, ...</value> <comment>"127.0.0.1 and ::1" are well known loopback addresses, do not loc</comment> </data> <data name="Hosts_Toggle_LoopbackDuplicates.Header" xml:space="preserve"> <value>Consider loopback addresses as duplicates</value> </data> <data name="RegistryPreview_Launch_GroupSettings.Header" xml:space="preserve"> <value>Launch</value> </data> <data name="RegistryPreview_LaunchButton_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Launch Registry Preview</value> </data> <data name="RegistryPreview_LaunchButtonControl.Header" xml:space="preserve"> <value>Launch Registry Preview</value> </data> <data name="RegistryPreview_DefaultRegApp.Header" xml:space="preserve"> <value>Default app</value> </data> <data name="RegistryPreview_DefaultRegApp.Description" xml:space="preserve"> <value>Make Registry Preview default app for opening .reg files</value> <comment>Registry Preview is app name. Do not localize.</comment> </data> <data name="PastePlain_ShortcutWarning.Title" xml:space="preserve"> <value>Using this shortcut may prevent non-text paste actions (e.g. images, files) or built-in paste plain text actions in other applications from functioning.</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize.Header" xml:space="preserve"> <value>Thumbnail Size</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Description_Prefix.Text" xml:space="preserve"> <value>Constrain thumbnail image size to a maximum of</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Description_Suffix.Text" xml:space="preserve"> <value>pixels</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Edit_Height.Header" xml:space="preserve"> <value>Maximum height (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Edit_Width.Header" xml:space="preserve"> <value>Maximum width (px)</value> <comment>px = pixels</comment> </data> <data name="Oobe_Peek.Description" xml:space="preserve"> <value>A lightning fast file preview feature for Windows.</value> </data> <data name="Oobe_Peek.Title" xml:space="preserve"> <value>Peek</value> </data> <data name="Oobe_Peek_HowToUse.Text" xml:space="preserve"> <value>to preview the file that's currently selected in File Explorer.</value> </data> <data name="MWB_PCNameLabel.PlaceholderText" xml:space="preserve"> <value>Device name</value> </data> <data name="MWB_SecurityKeyLabel.PlaceholderText" xml:space="preserve"> <value>Security key</value> </data> <data name="Hosts_Encoding.Description" xml:space="preserve"> <value>Choose the encoding of the hosts file</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Hosts_Encoding.Header" xml:space="preserve"> <value>Encoding</value> </data> <data name="Hosts_Encoding_Utf8.Content" xml:space="preserve"> <value>UTF-8</value> </data> <data name="Hosts_Encoding_Utf8Bom.Content" xml:space="preserve"> <value>UTF-8 with BOM</value> </data> <data name="MouseUtils_MouseHighlighter_AlwaysColor.Header" xml:space="preserve"> <value>Always highlight color</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsAutoHide.Content" xml:space="preserve"> <value>Automatically hide crosshairs when the mouse pointer is hidden</value> </data> <data name="MouseUtils_AutoActivate.Content" xml:space="preserve"> <value>Automatically activate on utility startup</value> </data> <data name="Run_FindMorePlugins.Text" xml:space="preserve"> <value>Find more plugins</value> </data> <data name="Run_PluginUseFindMorePlugins.Content" xml:space="preserve"> <value>Find more plugins</value> </data> <data name="Run_SomePluginsAreGpoManaged.Title" xml:space="preserve"> <value>The system administrator is managing the enabled state of some plugins.</value> </data> <data name="AlwaysOnTop_FrameOpacity.Header" xml:space="preserve"> <value>Opacity (%)</value> </data> <data name="MouseUtils_FindMyMouse_ActivationCustomizedShortcut.Content" xml:space="preserve"> <value>Custom shortcut</value> </data> <data name="MouseUtils_FindMyMouse_ActivationDoubleRightControlPress.Content" xml:space="preserve"> <value>Press Right Control twice</value> <comment>Right control is the physical key on the keyboard.</comment> </data> <data name="MouseUtils_FindMyMouse_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to turn on or off this mode</value> </data> <data name="MouseUtils_FindMyMouse_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="SettingsWindow_AdminTitle" xml:space="preserve"> <value>Administrator: PowerToys Settings</value> <comment>Title of the settings window when running as administrator</comment> </data> </root>
<?xml version="1.0" encoding="utf-8"?> <root> <!-- Microsoft ResX Schema Version 2.0 The primary goals of this format is to allow a simple XML format that is mostly human readable. The generation and parsing of the various data types are done through the TypeConverter classes associated with the data types. Example: ... ado.net/XML headers & schema ... <resheader name="resmimetype">text/microsoft-resx</resheader> <resheader name="version">2.0</resheader> <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader> <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader> <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data> <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data> <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64"> <value>[base64 mime encoded serialized .NET Framework object]</value> </data> <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value> <comment>This is a comment</comment> </data> There are any number of "resheader" rows that contain simple name/value pairs. Each data row contains a name, and value. The row also contains a type or mimetype. Type corresponds to a .NET class that support text/value conversion through the TypeConverter architecture. Classes that don't support this are serialized and stored with the mimetype set. The mimetype is used for serialized objects, and tells the ResXResourceReader how to depersist the object. This is currently not extensible. For a given mimetype the value must be set accordingly: Note - application/x-microsoft.net.object.binary.base64 is the format that the ResXResourceWriter will generate, however the reader can read any of the formats listed below. mimetype: application/x-microsoft.net.object.binary.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.soap.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Soap.SoapFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.bytearray.base64 value : The object must be serialized into a byte array : using a System.ComponentModel.TypeConverter : and then encoded with base64 encoding. --> <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> <xsd:import namespace="http://www.w3.org/XML/1998/namespace" /> <xsd:element name="root" msdata:IsDataSet="true"> <xsd:complexType> <xsd:choice maxOccurs="unbounded"> <xsd:element name="metadata"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" /> </xsd:sequence> <xsd:attribute name="name" use="required" type="xsd:string" /> <xsd:attribute name="type" type="xsd:string" /> <xsd:attribute name="mimetype" type="xsd:string" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="assembly"> <xsd:complexType> <xsd:attribute name="alias" type="xsd:string" /> <xsd:attribute name="name" type="xsd:string" /> </xsd:complexType> </xsd:element> <xsd:element name="data"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" /> <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="resheader"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" /> </xsd:complexType> </xsd:element> </xsd:choice> </xsd:complexType> </xsd:element> </xsd:schema> <resheader name="resmimetype"> <value>text/microsoft-resx</value> </resheader> <resheader name="version"> <value>2.0</value> </resheader> <resheader name="reader"> <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <resheader name="writer"> <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <data name="Attribution_Rooler.Text" xml:space="preserve"> <value>Inspired by Rooler</value> <comment>Rooler is a name of the tool.</comment> </data> <data name="Shell_VideoConference.Content" xml:space="preserve"> <value>Video Conference Mute</value> <comment>Navigation view item name for Video Conference</comment> </data> <data name="Shell_MeasureTool.Content" xml:space="preserve"> <value>Screen Ruler</value> <comment>Product name: Navigation view item name for Screen Ruler</comment> </data> <data name="MeasureTool.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="MeasureTool.ModuleDescription" xml:space="preserve"> <value>Screen Ruler is a quick and easy way to measure pixels on your screen.</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool.ModuleTitle" xml:space="preserve"> <value>Screen Ruler</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool_ActivationSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="MeasureTool_Settings.Header" xml:space="preserve"> <value>Behavior</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MeasureTool_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to bring up the command bar</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool_DefaultMeasureStyle.Header" xml:space="preserve"> <value>Default measure style</value> </data> <data name="MeasureTool_DefaultMeasureStyle.Description" xml:space="preserve"> <value>The utility will start having the selected style activated</value> </data> <data name="MeasureTool_DefaultMeasureStyle_None.Content" xml:space="preserve"> <value>None</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Bounds.Content" xml:space="preserve"> <value>Bounds</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Spacing.Content" xml:space="preserve"> <value>Spacing</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Horizontal_Spacing.Content" xml:space="preserve"> <value>Horizontal spacing</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Vertical_Spacing.Content" xml:space="preserve"> <value>Vertical spacing</value> </data> <data name="MeasureTool_UnitsOfMeasure.Header" xml:space="preserve"> <value>Units of measurement</value> </data> <data name="MeasureTool_UnitsOfMeasure_Pixels.Content" xml:space="preserve"> <value>Pixels</value> </data> <data name="MeasureTool_UnitsOfMeasure_Inches.Content" xml:space="preserve"> <value>Inches</value> </data> <data name="MeasureTool_UnitsOfMeasure_Centimeters.Content" xml:space="preserve"> <value>Centimeters</value> </data> <data name="MeasureTool_PixelTolerance.Header" xml:space="preserve"> <value>Pixel tolerance for edge detection</value> </data> <data name="MeasureTool_MeasureCrossColor.Header" xml:space="preserve"> <value>Line color</value> </data> <data name="MeasureTool_ContinuousCapture.Header" xml:space="preserve"> <value>Capture screen continuously during measuring</value> </data> <data name="MeasureTool_ContinuousCapture.Description" xml:space="preserve"> <value>Refresh screen contexts in real-time instead of making a screenshot once</value> </data> <data name="MeasureTool_PerColorChannelEdgeDetection.Header" xml:space="preserve"> <value>Per color channel edge detection</value> </data> <data name="MeasureTool_PerColorChannelEdgeDetection.Description" xml:space="preserve"> <value>If enabled, test that all color channels are within a tolerance distance from each other. Otherwise, check that the sum of all color channels differences is smaller than the tolerance.</value> </data> <data name="MeasureTool_DrawFeetOnCross.Header" xml:space="preserve"> <value>Draw feet on cross</value> </data> <data name="MeasureTool_DrawFeetOnCross.Description" xml:space="preserve"> <value>Adds feet to the end of cross lines</value> </data> <data name="MeasureTool_EnableMeasureTool.Header" xml:space="preserve"> <value>Enable Screen Ruler</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MouseWithoutBorders_ActivationSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="MouseWithoutBorders_DeviceLayoutSettings.Header" xml:space="preserve"> <value>Device layout</value> </data> <data name="MouseWithoutBorders_DeviceLayoutSettings.Description" xml:space="preserve"> <value>Drag and drop a machine to rearrange the order.</value> </data> <data name="MouseWithoutBorders_CannotDragDropAsAdmin.Title" xml:space="preserve"> <value>It is not possible to use drag and drop while running PowerToys elevated. As a workaround, please restart PowerToys without elevation to edit the device layout.</value> </data> <data name="MouseWithoutBorders_KeySettings.Header" xml:space="preserve"> <value>Encryption key</value> </data> <data name="MouseWithoutBorders_SecurityKey.Header" xml:space="preserve"> <value>Security key</value> </data> <data name="MouseWithoutBorders_SecurityKey.Description" xml:space="preserve"> <value>The key must be auto generated in one machine by clicking on New Key, then typed in other machines</value> </data> <data name="MouseWithoutBorders_NewKey.Content" xml:space="preserve"> <value>New key</value> </data> <data name="MouseWithoutBorders_CopyMachineName.Text" xml:space="preserve"> <value>Copy to clipboard</value> </data> <data name="MouseWithoutBorders_ReconnectButton.Text" xml:space="preserve"> <value>Refresh connections</value> </data> <data name="MouseWithoutBorders_ReconnectTooltip.Text" xml:space="preserve"> <value>Reestablishes connections with other devices if you are experiencing issues.</value> </data> <data name="MouseWithoutBorders_ThisMachineNameLabel.Header" xml:space="preserve"> <value>Host name of this device</value> </data> <data name="MouseWithoutBorders_Connect.Content" xml:space="preserve"> <value>Connect</value> </data> <data name="MouseWithoutBorders_UninstallService.Header" xml:space="preserve"> <value>Uninstall service</value> </data> <data name="MouseWithoutBorders_UninstallService.Description" xml:space="preserve"> <value>Removes the service from the computer. Needs to run as administrator.</value> </data> <data name="MouseWithoutBorders_Settings.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="MouseWithoutBorders_TroubleShooting.Header" xml:space="preserve"> <value>Troubleshooting</value> </data> <data name="MouseWithoutBorders_AddFirewallRuleButtonControl.Header" xml:space="preserve"> <value>Add a firewall rule for Mouse Without Borders</value> <comment>"Mouse Without Borders" is a product name</comment> </data> <data name="MouseWithoutBorders_AddFirewallRuleButtonControl.Description" xml:space="preserve"> <value>Adding a firewall rule might help solve connection issues.</value> </data> <data name="MouseWithoutBorders_RunAsAdminText.Title" xml:space="preserve"> <value>You need to run as administrator to modify this setting.</value> </data> <data name="MouseWithoutBorders_ServiceUserUninstallWarning.Title" xml:space="preserve"> <value>If PowerToys is installed as a user, uninstalling/upgrading may require the Mouse Without Borders service to be removed manually later.</value> </data> <data name="MouseWithoutBorders_ServiceSettings.Header" xml:space="preserve"> <value>Service</value> </data> <data name="MouseWithoutBorders_Toggle_Enable.Header" xml:space="preserve"> <value>Enable Mouse Without Borders</value> </data> <data name="MouseWithoutBorders.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="MouseWithoutBorders.ModuleDescription" xml:space="preserve"> <value>Mouse Without Borders is a quick and easy way to move your cursor across multiple devices.</value> <comment>"Mouse Without Borders" is the name of the utility</comment> </data> <data name="MouseWithoutBorders.ModuleTitle" xml:space="preserve"> <value>Mouse Without Borders</value> <comment>"Mouse Without Borders" is the name of the utility</comment> </data> <data name="MouseWithoutBorders_UseService.Header" xml:space="preserve"> <value>Use Service</value> </data> <data name="MouseWithoutBorders_UseService.Description" xml:space="preserve"> <value>Runs in service mode, that allows MWB to control remote machines when they're locked. Also allows control of system and administrator applications.</value> </data> <data name="MouseWithoutBorders_MatrixOneRow.Header" xml:space="preserve"> <value>Devices in a single row</value> </data> <data name="MouseWithoutBorders_MatrixOneRow.Description" xml:space="preserve"> <value>Sets whether the devices are aligned on a single row. A two by two matrix is considered otherwise.</value> </data> <data name="MouseWithoutBorders_WrapMouse.Header" xml:space="preserve"> <value>Wrap mouse</value> </data> <data name="MouseWithoutBorders_WrapMouse.Description" xml:space="preserve"> <value>Move control back to the first machine when mouse moves past the last one.</value> </data> <data name="MouseWithoutBorders_ShareClipboard.Header" xml:space="preserve"> <value>Share clipboard</value> </data> <data name="MouseWithoutBorders_TransferFile.Header" xml:space="preserve"> <value>Transfer file</value> </data> <data name="MouseWithoutBorders_HideMouseAtScreenEdge.Header" xml:space="preserve"> <value>Hide mouse at the screen edge</value> </data> <data name="MouseWithoutBorders_DrawMouseCursor.Header" xml:space="preserve"> <value>Draw mouse cursor</value> </data> <data name="MouseWithoutBorders_ValidateRemoteMachineIP.Header" xml:space="preserve"> <value>Validate remote machine IP</value> </data> <data name="MouseWithoutBorders_SameSubnetOnly.Header" xml:space="preserve"> <value>Same subnet only</value> </data> <data name="MouseWithoutBorders_BlockScreenSaverOnOtherMachines.Header" xml:space="preserve"> <value>Block screen saver on other machines</value> </data> <data name="MouseWithoutBorders_MoveMouseRelatively.Header" xml:space="preserve"> <value>Move mouse relatively</value> </data> <data name="MouseWithoutBorders_BlockMouseAtScreenCorners.Header" xml:space="preserve"> <value>Block mouse at screen corners</value> </data> <data name="MouseWithoutBorders_ShowClipboardAndNetworkStatusMessages.Header" xml:space="preserve"> <value>Show clipboard and network status messages</value> </data> <data name="MouseWithoutBorders_ShowOriginalUI.Header" xml:space="preserve"> <value>Show the original Mouse Without Borders UI</value> </data> <data name="MouseWithoutBorders_ShowOriginalUI.Description" xml:space="preserve"> <value>This is accessible from the system tray and requires a restart.</value> </data> <data name="MouseWithoutBorders_ShareClipboard.Description" xml:space="preserve"> <value>If share clipboard stops working, Ctrl+Alt+Del then Esc may solve the problem.</value> </data> <data name="MouseWithoutBorders_TransferFile.Description" xml:space="preserve"> <value>If a file (&lt;100MB) is copied, it will be transferred to the remote machine clipboard.</value> </data> <data name="MouseWithoutBorders_HideMouseAtScreenEdge.Description" xml:space="preserve"> <value>Hide the mouse cursor at the top edge of the screen when switching to other machine. This option also steals the focus from any full-screen app to ensure the keyboard input is redirected.</value> </data> <data name="MouseWithoutBorders_DrawMouseCursor.Description" xml:space="preserve"> <value>Mouse cursor may not be visible in Windows 10 and later versions of Windows when there is no physical mouse attached.</value> </data> <data name="MouseWithoutBorders_ValidateRemoteMachineIP.Description" xml:space="preserve"> <value>Reverse DNS lookup to validate machine IP Address.</value> </data> <data name="MouseWithoutBorders_SameSubnetOnly.Description" xml:space="preserve"> <value>Only connect to machines in the same intranet NNN.NNN.*.* (only works when both machines have IPv4 enabled)</value> </data> <data name="MouseWithoutBorders_IPAddressMapping_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: MyLaptop 192.168.0.24</value> <comment>Don't translate MyLaptop</comment> </data> <data name="MouseWithoutBorders_IPAddressMapping.Header" xml:space="preserve"> <value>IP address mapping</value> </data> <data name="MouseWithoutBorders_IPAddressMapping.Description" xml:space="preserve"> <value>Resolve machine's IP address using manually entered mappings below.</value> </data> <data name="MouseWithoutBorders_BlockScreenSaverOnOtherMachines.Description" xml:space="preserve"> <value>Prevent screen saver from starting on other machines when user is actively working on this machine.</value> </data> <data name="MouseWithoutBorders_MoveMouseRelatively.Description" xml:space="preserve"> <value>Use this option when remote machine's monitor settings are different, or remote machine has multiple monitors.</value> </data> <data name="MouseWithoutBorders_BlockMouseAtScreenCorners.Description" xml:space="preserve"> <value>To avoid accident machine-switch at screen corners.</value> </data> <data name="MouseWithoutBorders_ShowClipboardAndNetworkStatusMessages.Description" xml:space="preserve"> <value>Show clipboard activities and network status in system tray notifications</value> </data> <data name="MouseWithoutBorders_KeyboardShortcuts_Group.Header" xml:space="preserve"> <value>Keyboard shortcuts</value> <comment>keyboard is the hardware peripheral</comment> </data> <data name="MouseWithoutBorders_AdvancedSettings_Group.Header" xml:space="preserve"> <value>Advanced Settings</value> </data> <data name="MouseWithoutBorders_EasyMouseOption.Header" xml:space="preserve"> <value>Easy Mouse: move between machines by moving the mouse pointer to the screen edges.</value> </data> <data name="MouseWithoutBorders_EasyMouseOption.Description" xml:space="preserve"> <value>Can also be set to move only when pressing Shift or Ctrl.</value> <comment>Shift and Ctrl are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_EasyMouseOption_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_EasyMouseOption_Enabled.Content" xml:space="preserve"> <value>Enabled</value> </data> <data name="MouseWithoutBorders_EasyMouseOption_Ctrl.Content" xml:space="preserve"> <value>Ctrl</value> <comment>This is the Ctrl keyboard key</comment> </data> <data name="MouseWithoutBorders_EasyMouseOption_Shift.Content" xml:space="preserve"> <value>Shift</value> <comment>This is the Shift keyboard key</comment> </data> <data name="MouseWithoutBorders_LockMachinesShortcut.Header" xml:space="preserve"> <value>Shortcut to lock all machines.</value> </data> <data name="MouseWithoutBorders_LockMachinesShortcut.Description" xml:space="preserve"> <value>Hit this hotkey twice to lock all machines. Note: Only the machines which have the same shortcut configured will be locked.</value> </data> <data name="MouseWithoutBorders_ToggleEasyMouseShortcut.Header" xml:space="preserve"> <value>Shortcut to toggle Easy Mouse.</value> <comment>Ctrl and Alt are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_ToggleEasyMouseShortcut.Description" xml:space="preserve"> <value>Only works if EasyMouse is set to Enabled or Disabled.</value> </data> <data name="MouseWithoutBorders_ToggleEasyMouseShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut.Header" xml:space="preserve"> <value>Shortcut to switch between machines. Ctrl+Alt+:</value> <comment>Ctrl and Alt are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut.Description" xml:space="preserve"> <value>Click on Ctrl+Alt+ the chosen option to switch between machines.</value> <comment>Ctrl and Alt are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut_F1.Content" xml:space="preserve"> <value>F1, F2, F3, F4</value> <comment>Don't localize. These are keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut_1.Content" xml:space="preserve"> <value>1, 2, 3, 4</value> <comment>Don't localize. These are keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_LockMachinesShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_ReconnectShortcut.Header" xml:space="preserve"> <value>Shortcut to try reconnecting</value> </data> <data name="MouseWithoutBorders_ReconnectShortcut.Description" xml:space="preserve"> <value>Just in case the connection is lost for any reason.</value> </data> <data name="MouseWithoutBorders_ReconnectShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut.Header" xml:space="preserve"> <value>Shortcut to switch to multiple machine mode.</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut.Description" xml:space="preserve"> <value>Allows controlling all computers at once.</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut_Ctrl3.Content" xml:space="preserve"> <value>Ctrl three times</value> <comment>This is the Ctrl keyboard key</comment> </data> <data name="VideoConference_Enable.Header" xml:space="preserve"> <value>Enable Video Conference Mute</value> </data> <data name="VideoConference.ModuleDescription" xml:space="preserve"> <value>Video Conference Mute is a quick and easy way to do a global "mute" of both your microphone and webcam. Disabling this module or closing PowerToys will unmute the microphone and camera.</value> </data> <data name="VideoConference_CameraAndMicrophoneMuteHotkeyControl_Header.Header" xml:space="preserve"> <value>Mute camera &amp; microphone</value> </data> <data name="VideoConference_MicrophoneMuteHotkeyControl_Header.Header" xml:space="preserve"> <value>Mute microphone</value> </data> <data name="VideoConference_MicrophonePushToTalkHotkeyControl_Header.Header" xml:space="preserve"> <value>Push to talk</value> </data> <data name="VideoConference_CameraMuteHotkeyControl_Header.Header" xml:space="preserve"> <value>Mute camera</value> </data> <data name="VideoConference_SelectedCamera.Header" xml:space="preserve"> <value>Selected camera</value> </data> <data name="VideoConference_SelectedMicrophone.Header" xml:space="preserve"> <value>Selected microphone</value> </data> <data name="VideoConference_PushToReverse.Header" xml:space="preserve"> <value>Push to reverse</value> </data> <data name="VideoConference_PushToReverse.Description" xml:space="preserve"> <value>If enabled, allows both push to talk and push to mute, depending on microphone state</value> </data> <data name="VideoConference_CameraOverlayImagePathHeader.Header" xml:space="preserve"> <value>Image displayed when camera is muted</value> </data> <data name="VideoConference_ToolbarPosition.Header" xml:space="preserve"> <value>Toolbar position</value> </data> <data name="VideoConference_ToolbarPosition_TopCenter.Content" xml:space="preserve"> <value>Top center</value> </data> <data name="VideoConference_ToolbarPosition_TopLeftCorner.Content" xml:space="preserve"> <value>Top left corner</value> </data> <data name="VideoConference_ToolbarPosition_TopRightCorner.Content" xml:space="preserve"> <value>Top right corner</value> </data> <data name="VideoConference_ToolbarPosition_BottomLeftCorner.Content" xml:space="preserve"> <value>Bottom left corner</value> </data> <data name="VideoConference_ToolbarPosition_BottomCenter.Content" xml:space="preserve"> <value>Bottom center</value> </data> <data name="VideoConference_ToolbarPosition_BottomRightCorner.Content" xml:space="preserve"> <value>Bottom right corner</value> </data> <data name="VideoConference_ToolbarMonitor.Header" xml:space="preserve"> <value>Show toolbar on</value> </data> <data name="VideoConference_ToolbarMonitor_Main.Content" xml:space="preserve"> <value>Main monitor</value> </data> <data name="VideoConference_ToolbarMonitor_UnderCursor.Content" xml:space="preserve"> <value>Monitor under cursor</value> </data> <data name="VideoConference_ToolbarMonitor_ActiveWindow.Content" xml:space="preserve"> <value>Active window monitor</value> </data> <data name="VideoConference_ToolbarMonitor_All.Content" xml:space="preserve"> <value>All monitors</value> </data> <data name="VideoConference_ToolbarHide.Header" xml:space="preserve"> <value>Hide toolbar</value> </data> <data name="VideoConference_ToolbarHideMuted.Content" xml:space="preserve"> <value>When both camera and microphone are muted</value> </data> <data name="VideoConference_ToolbarHideNever.Content" xml:space="preserve"> <value>Never</value> </data> <data name="VideoConference_ToolbarHideUnmuted.Content" xml:space="preserve"> <value>When both camera and microphone are unmuted</value> </data> <data name="VideoConference_ToolbarHideTimeout.Content" xml:space="preserve"> <value>After timeout</value> </data> <data name="VideoConference.ModuleTitle" xml:space="preserve"> <value>Video Conference Mute</value> </data> <data name="VideoConference_Camera.Header" xml:space="preserve"> <value>Camera</value> </data> <data name="VideoConference_Camera.Description" xml:space="preserve"> <value>To use this feature, make sure to select PowerToys VideoConference Mute as your camera source in your apps.</value> </data> <data name="VideoConference_Microphone.Header" xml:space="preserve"> <value>Microphone</value> </data> <data name="VideoConference_Toolbar.Header" xml:space="preserve"> <value>Toolbar</value> </data> <data name="VideoConference_Behavior.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="VideoConference_StartupAction.Header" xml:space="preserve"> <value>Startup action</value> </data> <data name="VideoConference_StartupActionNothing.Content" xml:space="preserve"> <value>Nothing</value> </data> <data name="VideoConference_StartupActionUnmute.Content" xml:space="preserve"> <value>Unmute</value> </data> <data name="VideoConference_StartupActionMute.Content" xml:space="preserve"> <value>Mute</value> </data> <data name="VideoConference_Shortcuts.Header" xml:space="preserve"> <value>Shortcuts</value> </data> <data name="VideoConference_CameraOverlayImageAlt.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Camera overlay image preview</value> </data> <data name="VideoConference_CameraOverlayImageBrowse.Content" xml:space="preserve"> <value>Browse</value> </data> <data name="VideoConference_CameraOverlayImageClear.Content" xml:space="preserve"> <value>Clear</value> </data> <data name="Shell_General.Content" xml:space="preserve"> <value>General</value> <comment>Navigation view item name for General</comment> </data> <data name="Shell_Awake.Content" xml:space="preserve"> <value>Awake</value> <comment>Product name: Navigation view item name for Awake</comment> </data> <data name="Shell_PowerLauncher.Content" xml:space="preserve"> <value>PowerToys Run</value> <comment>Product name: Navigation view item name for PowerToys Run</comment> </data> <data name="Shell_PowerRename.Content" xml:space="preserve"> <value>PowerRename</value> <comment>Product name: Navigation view item name for PowerRename</comment> </data> <data name="Shell_ShortcutGuide.Content" xml:space="preserve"> <value>Shortcut Guide</value> <comment>Product name: Navigation view item name for Shortcut Guide</comment> </data> <data name="Shell_PowerPreview.Content" xml:space="preserve"> <value>File Explorer add-ons</value> <comment>Product name: Navigation view item name for File Explorer. Please use File Explorer as in the context of File Explorer in Windows</comment> </data> <data name="Shell_FancyZones.Content" xml:space="preserve"> <value>FancyZones</value> <comment>Product name: Navigation view item name for FancyZones</comment> </data> <data name="Shell_ImageResizer.Content" xml:space="preserve"> <value>Image Resizer</value> <comment>Product name: Navigation view item name for Image Resizer</comment> </data> <data name="Shell_ColorPicker.Content" xml:space="preserve"> <value>Color Picker</value> <comment>Product name: Navigation view item name for Color Picker</comment> </data> <data name="Shell_KeyboardManager.Content" xml:space="preserve"> <value>Keyboard Manager</value> <comment>Product name: Navigation view item name for Keyboard Manager</comment> </data> <data name="Shell_MouseWithoutBorders.Content" xml:space="preserve"> <value>Mouse Without Borders</value> <comment>Product name: Navigation view item name for Mouse Without Borders</comment> </data> <data name="Shell_MouseUtilities.Content" xml:space="preserve"> <value>Mouse utilities</value> <comment>Product name: Navigation view item name for Mouse utilities</comment> </data> <data name="Shell_NavigationMenu_Announce_Collapse" xml:space="preserve"> <value>Navigation closed</value> <comment>Accessibility announcement when the navigation pane collapses</comment> </data> <data name="Shell_NavigationMenu_Announce_Open" xml:space="preserve"> <value>Navigation opened</value> <comment>Accessibility announcement when the navigation pane opens</comment> </data> <data name="KeyboardManager_ConfigHeader.Text" xml:space="preserve"> <value>Current configuration</value> <comment>Keyboard Manager current configuration header</comment> </data> <data name="KeyboardManager.ModuleDescription" xml:space="preserve"> <value>Reconfigure your keyboard by remapping keys and shortcuts</value> <comment>Keyboard Manager page description</comment> </data> <data name="KeyboardManager_EnableToggle.Header" xml:space="preserve"> <value>Enable Keyboard Manager</value> <comment>Keyboard Manager enable toggle header. Do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="KeyboardManager_ProfileDescription.Text" xml:space="preserve"> <value>Select the profile to display the active key remap and shortcuts</value> <comment>Keyboard Manager configuration dropdown description</comment> </data> <data name="KeyboardManager_RemapKeyboardButton.Header" xml:space="preserve"> <value>Remap a key</value> <comment>Keyboard Manager remap keyboard button content</comment> </data> <data name="KeyboardManager_Keys.Header" xml:space="preserve"> <value>Keys</value> <comment>Keyboard Manager remap keyboard header</comment> </data> <data name="KeyboardManager_RemapShortcutsButton.Header" xml:space="preserve"> <value>Remap a shortcut</value> <comment>Keyboard Manager remap shortcuts button</comment> </data> <data name="KeyboardManager_Shortcuts.Header" xml:space="preserve"> <value>Shortcuts</value> <comment>Keyboard Manager remap keyboard header</comment> </data> <data name="KeyboardManager_All_Apps_Description" xml:space="preserve"> <value>All Apps</value> <comment>Should be the same as EditShortcuts_AllApps from keyboard manager editor</comment> </data> <data name="Shortcuts.Header" xml:space="preserve"> <value>Shortcuts</value> </data> <data name="Shortcut.Header" xml:space="preserve"> <value>Shortcut</value> </data> <data name="RemapKeysList.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Current Key Remappings</value> </data> <data name="RemapShortcutsList.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Current Shortcut Remappings</value> </data> <data name="KeyboardManager_RemappedKeysListItem.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Key Remapping</value> <comment>key as in keyboard key</comment> </data> <data name="KeyboardManager_RemappedShortcutsListItem.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Shortcut Remapping</value> </data> <data name="KeyboardManager_RemappedTo.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Remapped to</value> </data> <data name="KeyboardManager_ShortcutRemappedTo.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Remapped to</value> </data> <data name="KeyboardManager_TargetApp.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>For Target Application</value> <comment>What computer application would this be for</comment> </data> <data name="KeyboardManager_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Keyboard Manager</value> <comment>do not loc, product name</comment> </data> <data name="ColorPicker.ModuleDescription" xml:space="preserve"> <value>Quick and simple system-wide color picker.</value> </data> <data name="ColorPicker_EnableColorPicker.Header" xml:space="preserve"> <value>Enable Color Picker</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="ColorPicker_ChangeCursor.Content" xml:space="preserve"> <value>Change cursor when picking a color</value> </data> <data name="PowerLauncher.ModuleDescription" xml:space="preserve"> <value>A quick launcher that has additional capabilities without sacrificing performance.</value> </data> <data name="PowerLauncher_EnablePowerLauncher.Header" xml:space="preserve"> <value>Enable PowerToys Run</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="PowerLauncher_SearchResults.Header" xml:space="preserve"> <value>Search &amp; results</value> </data> <data name="PowerLauncher_SearchResultPreference.Header" xml:space="preserve"> <value>Search result preference</value> </data> <data name="PowerLauncher_UsePinyin.Header" xml:space="preserve"> <value>Use Pinyin</value> </data> <data name="PowerLauncher_UsePinyin.Description" xml:space="preserve"> <value>Experimental: Use Pinyin on the search query. May not work for every plugin.</value> </data> <data name="PowerLauncher_SearchResultPreference_MostRecentlyUsed" xml:space="preserve"> <value>Most recently used</value> </data> <data name="PowerLauncher_SearchResultPreference_AlphabeticalOrder" xml:space="preserve"> <value>Alphabetical order</value> </data> <data name="PowerLauncher_SearchResultPreference_RunningProcessesOpenApplications" xml:space="preserve"> <value>Running processes/open applications</value> </data> <data name="PowerLauncher_SearchTypePreference.Header" xml:space="preserve"> <value>Search type preference</value> </data> <data name="PowerLauncher_SearchTypePreference_ApplicationName" xml:space="preserve"> <value>Application name</value> </data> <data name="PowerLauncher_SearchTypePreference_StringInApplication" xml:space="preserve"> <value>A string that is contained in the application</value> </data> <data name="PowerLauncher_SearchTypePreference_ExecutableName" xml:space="preserve"> <value>Executable name</value> </data> <data name="PowerLauncher_MaximumNumberOfResults.Header" xml:space="preserve"> <value>Number of results shown before scrolling</value> </data> <data name="PowerLauncher_OpenPowerLauncher.Header" xml:space="preserve"> <value>Open PowerToys Run</value> </data> <data name="PowerLauncher_OpenFileLocation.Header" xml:space="preserve"> <value>Open file location</value> </data> <data name="PowerLauncher_CopyPathLocation.Header" xml:space="preserve"> <value>Copy path location</value> </data> <data name="PowerLauncher_OpenConsole.Header" xml:space="preserve"> <value>Open console</value> <comment>console refers to Windows command prompt</comment> </data> <data name="PowerLauncher_OverrideWinRKey.Content" xml:space="preserve"> <value>Override Win+R shortcut</value> </data> <data name="PowerLauncher_OverrideWinSKey.Content" xml:space="preserve"> <value>Override Win+S shortcut</value> </data> <data name="PowerLauncher_IgnoreHotkeysInFullScreen.Content" xml:space="preserve"> <value>Ignore shortcuts in fullscreen mode</value> </data> <data name="PowerLauncher_UseCentralizedKeyboardHook.Header" xml:space="preserve"> <value>Use centralized keyboard hook</value> </data> <data name="PowerLauncher_UseCentralizedKeyboardHook.Description" xml:space="preserve"> <value>Try this if there are issues with the shortcut (PowerToys Run might not get focus when triggered from an elevated window)</value> </data> <data name="PowerLauncher_ClearInputOnLaunch.Content" xml:space="preserve"> <value>Clear the previous query on launch</value> </data> <data name="PowerLauncher_TabSelectsContextButtons.Header" xml:space="preserve"> <value>Tab through context buttons</value> </data> <data name="PowerLauncher_TabSelectsContextButtons.Description" xml:space="preserve"> <value>Pressing tab will first select through the available context buttons of the current selection before moving onto the next result</value> </data> <data name="PowerLauncher_GenerateThumbnailsFromFiles.Header" xml:space="preserve"> <value>Generate thumbnails from files</value> </data> <data name="PowerLauncher_GenerateThumbnailsFromFiles.Description" xml:space="preserve"> <value>Results will try to generate thumbnails for files. Disabling this setting may increase stability and speed</value> </data> <data name="PowerLauncher_SearchQueryResultsWithDelay.Header" xml:space="preserve"> <value>Input Smoothing</value> <comment>This is about adding a delay to wait for more input before executing a search</comment> </data> <data name="PowerLauncher_SearchQueryResultsWithDelay.Description" xml:space="preserve"> <value>Wait for more input before searching. This reduces interface jumpiness and system load.</value> </data> <data name="PowerLauncher_FastSearchInputDelayMs.Header" xml:space="preserve"> <value>Immediate plugins</value> </data> <data name="PowerLauncher_FastSearchInputDelayMs.Description" xml:space="preserve"> <value>Affects the plugins that make the UI wait for their results by this amount. Recommended: 30-50 ms.</value> </data> <data name="PowerLauncher_SlowSearchInputDelayMs.Header" xml:space="preserve"> <value>Background execution plugins</value> </data> <data name="PowerLauncher_SlowSearchInputDelayMs.Description" xml:space="preserve"> <value>Affects the plugins that execute in the background by this amount. Recommended: 100-150 ms.</value> </data> <data name="PowerLauncher_SearchInputDelayMs.Header" xml:space="preserve"> <value>Fast plugin throttle (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="KeyboardManager_KeysMappingLayoutRightHeader.Text" xml:space="preserve"> <value>To:</value> <comment>Keyboard Manager mapping keys view right header</comment> </data> <data name="Appearance_GroupSettings.Text" xml:space="preserve"> <value>Appearance</value> </data> <data name="Fancyzones_ImageHyperlinkToDocs.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>FancyZones windows</value> <comment>do not loc the Product name</comment> </data> <data name="FancyZones.ModuleDescription" xml:space="preserve"> <value>Create window layouts to help make multi-tasking easy.</value> <comment>windows refers to application windows</comment> </data> <data name="FancyZones_DisplayOrWorkAreaChangeMoveWindowsCheckBoxControl.Content" xml:space="preserve"> <value>Keep windows in their zones when the screen resolution or work area changes</value> <comment>windows refers to application windows</comment> </data> <data name="FancyZones_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable FancyZones</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="FancyZones_ExcludeApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="FancyZones_ExcludeApps.Description" xml:space="preserve"> <value>Excludes an application from snapping to zones and will only react to Windows Snap - add one application name per line</value> </data> <data name="FancyZones_HighlightOpacity.Header" xml:space="preserve"> <value>Opacity (%)</value> </data> <data name="FancyZones_HotkeyEditorControl.Header" xml:space="preserve"> <value>Open layout editor</value> <comment>Shortcut to launch the FancyZones layout editor application</comment> </data> <data name="FancyZones_WindowSwitching_GroupSettings.Header" xml:space="preserve"> <value>Switch between windows in the current zone</value> </data> <data name="FancyZones_HotkeyNextTabControl.Header" xml:space="preserve"> <value>Next window</value> </data> <data name="FancyZones_HotkeyPrevTabControl.Header" xml:space="preserve"> <value>Previous window</value> </data> <data name="SettingsPage_SetShortcut.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Shortcut setting</value> </data> <data name="SettingsPage_SetShortcut_Glyph.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Information Symbol</value> </data> <data name="FancyZones_LaunchEditorButtonControl.Header" xml:space="preserve"> <value>Launch layout editor</value> <comment>launches the FancyZones layout editor application</comment> </data> <data name="FancyZones_LaunchEditorButtonControl.Description" xml:space="preserve"> <value>Set and manage your layouts</value> <comment>launches the FancyZones layout editor application</comment> </data> <data name="FancyZones_MakeDraggedWindowTransparentCheckBoxControl.Content" xml:space="preserve"> <value>Make dragged window transparent</value> </data> <data name="FancyZones_MouseDragCheckBoxControl_Header.Content" xml:space="preserve"> <value>Use a non-primary mouse button to toggle zone activation</value> </data> <data name="FancyZones_MouseMiddleClickSpanningMultipleZonesCheckBoxControl_Header.Content" xml:space="preserve"> <value>Use middle-click mouse button to toggle multiple zones spanning</value> </data> <data name="FancyZones_MoveWindowsAcrossAllMonitorsCheckBoxControl.Content" xml:space="preserve"> <value>Move windows between zones across all monitors</value> </data> <data name="FancyZones_OverrideSnapHotkeys.Header" xml:space="preserve"> <value>Override Windows Snap</value> </data> <data name="FancyZones_OverrideSnapHotkeys.Description" xml:space="preserve"> <value>This overrides the Windows Snap shortcut (Win + arrow) to move windows between zones</value> </data> <data name="FancyZones_ShiftDragCheckBoxControl_Header.Content" xml:space="preserve"> <value>Hold Shift key to activate zones while dragging a window</value> </data> <data name="FancyZones_ActivationNoShiftDrag" xml:space="preserve"> <value>Drag windows to activate zones</value> </data> <data name="FancyZones_ShowZonesOnAllMonitorsCheckBoxControl.Content" xml:space="preserve"> <value>Show zones on all monitors while dragging a window</value> </data> <data name="FancyZones_AppLastZoneMoveWindows.Content" xml:space="preserve"> <value>Move newly created windows to their last known zone</value> <comment>windows refers to application windows</comment> </data> <data name="FancyZones_OpenWindowOnActiveMonitor.Content" xml:space="preserve"> <value>Move newly created windows to the current active monitor (Experimental)</value> </data> <data name="FancyZones_UseCursorPosEditorStartupScreen.Header" xml:space="preserve"> <value>Launch editor on the display</value> </data> <data name="FancyZones_UseCursorPosEditorStartupScreen.Description" xml:space="preserve"> <value>When using multiple displays</value> </data> <data name="FancyZones_LaunchPositionMouse.Content" xml:space="preserve"> <value>Where the mouse pointer is</value> </data> <data name="FancyZones_LaunchPositionScreen.Content" xml:space="preserve"> <value>With active focus</value> </data> <data name="FancyZones_ZoneBehavior_GroupSettings.Header" xml:space="preserve"> <value>Zone behavior</value> </data> <data name="FancyZones_ZoneBehavior_GroupSettings.Description" xml:space="preserve"> <value>Manage how zones behave when using FancyZones</value> </data> <data name="FancyZones_Zones.Header" xml:space="preserve"> <value>Zones</value> </data> <data name="FancyZones_ZoneHighlightColor.Header" xml:space="preserve"> <value>Highlight color</value> </data> <data name="FancyZones_ZoneSetChangeMoveWindows.Content" xml:space="preserve"> <value>During zone layout changes, windows assigned to a zone will match new size/positions</value> </data> <data name="AttributionTitle.Text" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="General.ModuleTitle" xml:space="preserve"> <value>General</value> </data> <data name="GeneralPage_CheckForUpdates.Content" xml:space="preserve"> <value>Check for updates</value> </data> <data name="General_SettingsBackupAndRestoreLocationText.Header" xml:space="preserve"> <value>Location</value> </data> <data name="General_SettingsBackupAndRestore_ButtonBackup.Content" xml:space="preserve"> <value>Backup</value> </data> <data name="General_SettingsBackupInfo_FileNameHeader.Text" xml:space="preserve"> <value>File name:</value> </data> <data name="General_SettingsBackupAndRestore_LinkRefresh.Text" xml:space="preserve"> <value>Refresh</value> </data> <data name="General_SettingsBackupAndRestore_ButtonRestore.Content" xml:space="preserve"> <value>Restore</value> </data> <data name="General_SettingsBackupAndRestore_ButtonSelectLocation.Text" xml:space="preserve"> <value>Select folder</value> </data> <data name="GeneralPage_UpdateNow.Content" xml:space="preserve"> <value>Update now</value> </data> <data name="GeneralPage_PrivacyStatement_URL.Text" xml:space="preserve"> <value>Privacy statement</value> </data> <data name="GeneralPage_ReportAbug.Text" xml:space="preserve"> <value>Report a bug</value> <comment>Report an issue inside powertoys</comment> </data> <data name="GeneralPage_RequestAFeature_URL.Text" xml:space="preserve"> <value>Request a feature</value> <comment>Tell our team what we should build</comment> </data> <data name="GeneralPage_RestartAsAdmin_Button.Content" xml:space="preserve"> <value>Restart PowerToys as administrator</value> <comment>running PowerToys as a higher level user, account is typically referred to as an admin / administrator</comment> </data> <data name="GeneralPage_RunAtStartUp.Header" xml:space="preserve"> <value>Run at startup</value> </data> <data name="GeneralPage_RunAtStartUp.Description" xml:space="preserve"> <value>PowerToys will launch automatically</value> </data> <data name="PowerRename.ModuleDescription" xml:space="preserve"> <value>A Windows Shell extension for more advanced bulk renaming using search &amp; replace or regular expressions.</value> </data> <data name="PowerRename_ShellIntegration.Header" xml:space="preserve"> <value>Shell integration</value> <comment>This refers to directly integrating in with Windows</comment> </data> <data name="PowerRename_Toggle_Enable.Header" xml:space="preserve"> <value>Enable PowerRename</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="RadioButtons_Name_Theme.Text" xml:space="preserve"> <value>Settings theme</value> </data> <data name="PowerRename_Toggle_HideIcon.Content" xml:space="preserve"> <value>Hide icon in context menu</value> </data> <data name="PowerRename_Toggle_ContextMenu.Header" xml:space="preserve"> <value>Show PowerRename in</value> </data> <data name="PowerRename_Toggle_StandardContextMenu.Content" xml:space="preserve"> <value>Default and extended context menu</value> </data> <data name="PowerRename_Toggle_ExtendedContextMenu.Content" xml:space="preserve"> <value>Extended context menu only</value> </data> <data name="ExtendedContextMenuInfo.Title" xml:space="preserve"> <value>Press Shift + right-click on files to open the extended context menu</value> </data> <data name="PowerRename_Toggle_MaxDispListNum.Header" xml:space="preserve"> <value>Maximum number of items</value> </data> <data name="PowerRename_Toggle_RestoreFlagsOnLaunch.Header" xml:space="preserve"> <value>Show recently used strings</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_MD.Header" xml:space="preserve"> <value>Markdown</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_MD.Description" xml:space="preserve"> <value>.md, .markdown, .mdown, .mkdn, .mkd, .mdwn, .mdtxt, .mdtext</value> <comment>File extensions, should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_Monaco.Header" xml:space="preserve"> <value>Source code files (Monaco)</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_Monaco.Description" xml:space="preserve"> <value>.cpp, .py, .json, .xml, .csproj, ...</value> <comment>File extensions should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_SVG.Header" xml:space="preserve"> <value>Scalable Vector Graphics</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_SVG.Description" xml:space="preserve"> <value>.svg</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_Preview_SVG_Color_Mode.Header" xml:space="preserve"> <value>Color mode</value> </data> <data name="FileExplorerPreview_Preview_SVG_Color_Mode_Default.Content" xml:space="preserve"> <value>Windows default</value> </data> <data name="FileExplorerPreview_Preview_SVG_Color_Solid_Color.Content" xml:space="preserve"> <value>Solid color</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade.Content" xml:space="preserve"> <value>Checkered pattern</value> </data> <data name="FileExplorerPreview_Preview_SVG_Background_Color.Header" xml:space="preserve"> <value>Color</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_Mode.Header" xml:space="preserve"> <value>Checkered shade</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_1.Content" xml:space="preserve"> <value>Light</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_2.Content" xml:space="preserve"> <value>Medium</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_3.Content" xml:space="preserve"> <value>Dark</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_PDF.Header" xml:space="preserve"> <value>Portable Document Format</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_PDF.Description" xml:space="preserve"> <value>.pdf</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_SVG.Header" xml:space="preserve"> <value>Scalable Vector Graphics</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_SVG.Description" xml:space="preserve"> <value>.svg</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_STL.Header" xml:space="preserve"> <value>Stereolithography</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_STL.Description" xml:space="preserve"> <value>.stl</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_Color_Thumbnail_STL.Header" xml:space="preserve"> <value>Color</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_PDF.Header" xml:space="preserve"> <value>Portable Document Format</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_PDF.Description" xml:space="preserve"> <value>.pdf</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview.ModuleDescription" xml:space="preserve"> <value>These settings allow you to manage your Windows File Explorer custom preview handlers.</value> </data> <data name="PowerRename_AutoCompleteHeader.Header" xml:space="preserve"> <value>Auto-complete</value> </data> <data name="OpenSource_Notice.Text" xml:space="preserve"> <value>Open-source notice</value> </data> <data name="PowerRename_Toggle_AutoComplete.Header" xml:space="preserve"> <value>Enable auto-complete for the search &amp; replace fields</value> </data> <data name="FancyZones_BorderColor.Header" xml:space="preserve"> <value>Border color</value> </data> <data name="FancyZones_InActiveColor.Header" xml:space="preserve"> <value>Inactive color</value> </data> <data name="ShortcutGuide.ModuleDescription" xml:space="preserve"> <value>Shows a help overlay with Windows shortcuts.</value> </data> <data name="ShortcutGuide_PressTimeForGlobalWindowsShortcuts.Header" xml:space="preserve"> <value>Press duration before showing global Windows shortcuts (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="ShortcutGuide_ActivationMethod.Header" xml:space="preserve"> <value>Activation method</value> </data> <data name="ShortcutGuide_ActivationMethod.Description" xml:space="preserve"> <value>Use a shortcut or press the Windows key for some time to activate</value> </data> <data name="Radio_ShortcutGuide_ActivationMethod_CustomizedShortcut.Content" xml:space="preserve"> <value>Custom shortcut</value> </data> <data name="Radio_ShortcutGuide_ActivationMethod_LongPressWindowsKey.Content" xml:space="preserve"> <value>Hold down Windows key</value> </data> <data name="ShortcutGuide_PressWinKeyWarning.Title" xml:space="preserve"> <value>In some edge cases Shortcut Guide might not function correctly when using this activation method</value> </data> <data name="Appearance_Behavior.Header" xml:space="preserve"> <value>Appearance &amp; behavior</value> </data> <data name="General_SettingsBackupAndRestoreTitle.Header" xml:space="preserve"> <value>Backup &amp; restore</value> </data> <data name="General_SettingsBackupAndRestore.Header" xml:space="preserve"> <value>Backup and restore your settings</value> </data> <data name="General_SettingsBackupAndRestore.Description" xml:space="preserve"> <value>PowerToys will restart automatically if needed</value> </data> <data name="ShortcutGuide_Enable.Header" xml:space="preserve"> <value>Enable Shortcut Guide</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="ShortcutGuide_OverlayOpacity.Header" xml:space="preserve"> <value>Background opacity (%)</value> </data> <data name="ShortcutGuide_DisabledApps.Header" xml:space="preserve"> <value>Exclude apps</value> </data> <data name="ShortcutGuide_DisabledApps.Description" xml:space="preserve"> <value>Turns off Shortcut Guide when these applications have focus - add one application name per line</value> </data> <data name="ShortcutGuide_DisabledApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> <comment>Don't translate outlook.exe</comment> </data> <data name="ImageResizer_CustomSizes.Header" xml:space="preserve"> <value>Image sizes</value> </data> <data name="ImageResizer_Presets.Header" xml:space="preserve"> <value>Presets</value> </data> <data name="ImageResizer_Presets.Description" xml:space="preserve"> <value>Manage preset sizes that can be used in the editor</value> </data> <data name="ImageResizer_FilenameFormatHeader.Description" xml:space="preserve"> <value>This format is used as the filename for resized images</value> </data> <data name="ImageResizer.ModuleDescription" xml:space="preserve"> <value>Lets you resize images by right-clicking.</value> </data> <data name="ImageResizer_EnableToggle.Header" xml:space="preserve"> <value>Enable Image Resizer</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="ImagesSizesListView.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Image Size</value> </data> <data name="ImageResizer_Configurations.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Configurations</value> </data> <data name="ImageResizer_Name.Header" xml:space="preserve"> <value>Name</value> </data> <data name="ImageResizer_Fit.Header" xml:space="preserve"> <value>Fit</value> </data> <data name="ImageResizer_Width.Header" xml:space="preserve"> <value>Width</value> </data> <data name="ImageResizer_Height.Header" xml:space="preserve"> <value>Height</value> </data> <data name="ImageResizer_Size.Header" xml:space="preserve"> <value>Unit</value> </data> <data name="RemoveButton.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Remove</value> <comment>Removes a user defined setting group for Image Resizer</comment> </data> <data name="RemoveItem.Text" xml:space="preserve"> <value>Delete</value> </data> <data name="ImageResizer_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Image Resizer</value> </data> <data name="ImageResizer_AddSizeButton.Content" xml:space="preserve"> <value>Add new size</value> </data> <data name="ImageResizer_SaveSizeButton.Label" xml:space="preserve"> <value>Save sizes</value> </data> <data name="ImageResizer_Encoding.Header" xml:space="preserve"> <value>JPEG quality level (%)</value> </data> <data name="ImageResizer_PNGInterlacing.Header" xml:space="preserve"> <value>PNG interlacing</value> </data> <data name="ImageResizer_TIFFCompression.Header" xml:space="preserve"> <value>TIFF compression</value> </data> <data name="File.Header" xml:space="preserve"> <value>File</value> <comment>as in a computer file</comment> </data> <data name="Default.Content" xml:space="preserve"> <value>Default</value> </data> <data name="ImageResizer_ENCODER_TIFF_CCITT3.Content" xml:space="preserve"> <value>CCITT3</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_CCITT4.Content" xml:space="preserve"> <value>CCITT4</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_Default.Content" xml:space="preserve"> <value>Default</value> </data> <data name="ImageResizer_ENCODER_TIFF_LZW.Content" xml:space="preserve"> <value>LZW</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_None.Content" xml:space="preserve"> <value>None</value> </data> <data name="ImageResizer_ENCODER_TIFF_RLE.Content" xml:space="preserve"> <value>RLE</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_Zip.Content" xml:space="preserve"> <value>Zip</value> <comment>do not loc</comment> </data> <data name="ImageResizer_FallbackEncoder_BMP.Content" xml:space="preserve"> <value>BMP encoder</value> </data> <data name="ImageResizer_FallbackEncoder_GIF.Content" xml:space="preserve"> <value>GIF encoder</value> </data> <data name="ImageResizer_FallbackEncoder_JPEG.Content" xml:space="preserve"> <value>JPEG encoder</value> </data> <data name="ImageResizer_FallbackEncoder_PNG.Content" xml:space="preserve"> <value>PNG encoder</value> </data> <data name="ImageResizer_FallbackEncoder_TIFF.Content" xml:space="preserve"> <value>TIFF encoder</value> </data> <data name="ImageResizer_FallbackEncoder_WMPhoto.Content" xml:space="preserve"> <value>WMPhoto encoder</value> </data> <data name="ImageResizer_Sizes_Fit_Fill.Content" xml:space="preserve"> <value>Fill</value> <comment>Refers to filling an image into a certain size. It could overflow</comment> </data> <data name="ImageResizer_Sizes_Fit_Fill_ThirdPersonSingular.Text" xml:space="preserve"> <value>Fill</value> <comment>Refers to filling an image into a certain size. It could overflow</comment> </data> <data name="ImageResizer_Sizes_Fit_Fit.Content" xml:space="preserve"> <value>Fit</value> <comment>Refers to fitting an image into a certain size. It won't overflow</comment> </data> <data name="ImageResizer_Sizes_Fit_Stretch.Content" xml:space="preserve"> <value>Stretch</value> <comment>Refers to stretching an image into a certain size. Won't overflow but could distort.</comment> </data> <data name="ImageResizer_Sizes_Units_CM.Content" xml:space="preserve"> <value>Centimeters</value> </data> <data name="ImageResizer_Sizes_Units_Inches.Content" xml:space="preserve"> <value>Inches</value> </data> <data name="ImageResizer_Sizes_Units_Percent.Content" xml:space="preserve"> <value>Percent</value> </data> <data name="ImageResizer_Sizes_Units_Pixels.Content" xml:space="preserve"> <value>Pixels</value> </data> <data name="Off.Content" xml:space="preserve"> <value>Off</value> </data> <data name="On.Content" xml:space="preserve"> <value>On</value> </data> <data name="GeneralPage_ToggleSwitch_AlwaysRunElevated_Link.Content" xml:space="preserve"> <value>Learn more about administrator mode</value> </data> <data name="GeneralPage_ToggleSwitch_AutoDownloadUpdates.Header" xml:space="preserve"> <value>Download updates automatically</value> </data> <data name="GeneralPage_ToggleSwitch_AutoDownloadUpdates.Description" xml:space="preserve"> <value>Except on metered connections</value> </data> <data name="GeneralPage_ToggleSwitch_RunningAsAdminNote.Text" xml:space="preserve"> <value>Currently running as administrator</value> </data> <data name="GeneralSettings_AlwaysRunAsAdminText.Header" xml:space="preserve"> <value>Always run as administrator</value> </data> <data name="GeneralSettings_AlwaysRunAsAdminText.Description" xml:space="preserve"> <value>You need to run as administrator to use this setting</value> </data> <data name="GeneralSettings_RunningAsUserText" xml:space="preserve"> <value>Running as user</value> </data> <data name="GeneralSettings_RunningAsAdminText" xml:space="preserve"> <value>Running as administrator</value> </data> <data name="FancyZones.ModuleTitle" xml:space="preserve"> <value>FancyZones</value> </data> <data name="FileExplorerPreview.ModuleTitle" xml:space="preserve"> <value>File Explorer</value> </data> <data name="FileExplorerPreview_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>File Explorer</value> <comment>Use same translation as Windows does for File Explorer</comment> </data> <data name="ImageResizer.ModuleTitle" xml:space="preserve"> <value>Image Resizer</value> </data> <data name="KeyboardManager.ModuleTitle" xml:space="preserve"> <value>Keyboard Manager</value> </data> <data name="ColorPicker.ModuleTitle" xml:space="preserve"> <value>Color Picker</value> </data> <data name="PowerLauncher.ModuleTitle" xml:space="preserve"> <value>PowerToys Run</value> </data> <data name="PowerToys_Run_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>PowerToys Run</value> </data> <data name="PowerRename.ModuleTitle" xml:space="preserve"> <value>PowerRename</value> <comment>do not loc the product name</comment> </data> <data name="PowerRename_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>PowerRename</value> <comment>do not loc</comment> </data> <data name="ShortcutGuide.ModuleTitle" xml:space="preserve"> <value>Shortcut Guide</value> </data> <data name="Shortcut_Guide_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Shortcut Guide</value> </data> <data name="General_Repository.Text" xml:space="preserve"> <value>GitHub repository</value> </data> <data name="General_Version.Header" xml:space="preserve"> <value>Version</value> </data> <data name="General_VersionLastChecked.Text" xml:space="preserve"> <value>Last checked: </value> </data> <data name="General_SettingsBackupInfo_DateHeader.Text" xml:space="preserve"> <value>Created at:</value> </data> <data name="General_SettingsBackupAndRestoreStatusInfo.Header" xml:space="preserve"> <value>Backup information</value> </data> <data name="General_SettingsBackupInfo_SourceHeader.Text" xml:space="preserve"> <value>Source machine:</value> </data> <data name="General_SettingsBackupInfo_StatusHeader.Text" xml:space="preserve"> <value>Status:</value> </data> <data name="General_Version.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Version</value> </data> <data name="Admin_mode.Header" xml:space="preserve"> <value>Administrator mode</value> </data> <data name="FancyZones_RestoreSize.Content" xml:space="preserve"> <value>Restore the original size of windows when unsnapping</value> </data> <data name="ImageResizer_FallBackEncoderText.Header" xml:space="preserve"> <value>Fallback encoder</value> </data> <data name="ImageResizer_FileFormatDescription.Text" xml:space="preserve"> <value>The following parameters can be used:</value> </data> <data name="ImageResizer_FilenameFormatHeader.Header" xml:space="preserve"> <value>Filename format</value> </data> <data name="ImageResizer_FileModifiedDate.Header" xml:space="preserve"> <value>File modified timestamp</value> </data> <data name="ImageResizer_FileModifiedDate.Description" xml:space="preserve"> <value>Used as the 'modified timestamp' in the file properties</value> </data> <data name="ImageResizer_UseOriginalDate.Content" xml:space="preserve"> <value>Original file timestamp</value> </data> <data name="ImageResizer_UseResizeDate.Content" xml:space="preserve"> <value>Timestamp of resize action</value> </data> <data name="Encoding.Header" xml:space="preserve"> <value>Encoding</value> </data> <data name="KeyboardManager_RemapKeyboardButton.Description" xml:space="preserve"> <value>Remap keys to other keys or shortcuts</value> </data> <data name="KeyboardManager_RemapShortcutsButton.Description" xml:space="preserve"> <value>Remap shortcuts to other shortcuts or keys for all or specific applications</value> </data> <data name="General.ModuleDescription" xml:space="preserve"> <value>Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. Made with 💗 by Microsoft and the PowerToys community.</value> <comment>Windows refers to the OS</comment> </data> <data name="FancyZones_SpanZonesAcrossMonitors.Header" xml:space="preserve"> <value>Allow zones to span across monitors</value> </data> <data name="ImageResizer_Formatting_ActualHeight.Text" xml:space="preserve"> <value>Actual height</value> </data> <data name="ImageResizer_Formatting_ActualWidth.Text" xml:space="preserve"> <value>Actual width</value> </data> <data name="ImageResizer_Formatting_Filename.Text" xml:space="preserve"> <value>Original filename</value> </data> <data name="ImageResizer_Formatting_SelectedHeight.Text" xml:space="preserve"> <value>Selected height</value> </data> <data name="ImageResizer_Formatting_SelectedWidth.Text" xml:space="preserve"> <value>Selected width</value> </data> <data name="ImageResizer_Formatting_Sizename.Text" xml:space="preserve"> <value>Size name</value> </data> <data name="FancyZones_MoveWindowsBasedOnPositionCheckBoxControl.Content" xml:space="preserve"> <value>Move windows based on their position</value> <comment>Windows refers to application windows</comment> </data> <data name="GeneralSettings_NewVersionIsAvailable" xml:space="preserve"> <value>New update available</value> </data> <data name="GeneralSettings_VersionIsLatest" xml:space="preserve"> <value>PowerToys is up to date.</value> </data> <data name="FileExplorerPreview_IconThumbnail_GroupSettings.Header" xml:space="preserve"> <value>Thumbnail icon Preview</value> </data> <data name="FileExplorerPreview_IconThumbnail_GroupSettings.Description" xml:space="preserve"> <value>Select the file types for which thumbnail previews must be rendered.</value> </data> <data name="FileExplorerPreview_PreviewPane.Header" xml:space="preserve"> <value>Preview Pane</value> </data> <data name="FileExplorerPreview_PreviewPane.Description" xml:space="preserve"> <value>Select the file types which must be rendered in the Preview Pane. Ensure that Preview Pane is open by toggling the view with Alt + P in File Explorer.</value> <comment>Preview Pane and File Explorer are app/feature names in Windows. 'Alt + P' is a shortcut</comment> </data> <data name="FileExplorerPreview_RunAsAdminRequired.Title" xml:space="preserve"> <value>You need to run as administrator to modify these settings.</value> </data> <data name="FileExplorerPreview_RebootRequired.Title" xml:space="preserve"> <value>A reboot may be required for changes to these settings to take effect</value> </data> <data name="FileExplorerPreview_PreviewHandlerOutlookIncompatibility.Title" xml:space="preserve"> <value>Enabling the preview handlers will override other preview handlers already installed - there have been reports of incompatibility between Outlook and the PDF Preview Handler.</value> <comment>Outlook is the name of a Microsoft product</comment> </data> <data name="FileExplorerPreview_ThumbnailsMightNotAppearOnRemoteFolders.Title" xml:space="preserve"> <value>Thumbnails might not appear on paths managed by cloud storage solutions like OneDrive, since these solutions may get their thumbnails from the cloud instead of generating them locally.</value> <comment>OneDrive is the name of a Microsoft product</comment> </data> <data name="FancyZones_ExcludeApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> <comment>Don't translate outlook.exe</comment> </data> <data name="ImageResizer_FilenameFormatPlaceholder.PlaceholderText" xml:space="preserve"> <value>Example: %1 (%2)</value> </data> <data name="ImageResizer_FilenameParameters.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Filename parameters</value> </data> <data name="Radio_Theme_Dark.Content" xml:space="preserve"> <value>Dark</value> <comment>Dark refers to color, not weight</comment> </data> <data name="Radio_Theme_Light.Content" xml:space="preserve"> <value>Light</value> <comment>Light refers to color, not weight</comment> </data> <data name="Radio_Theme_Default.Content" xml:space="preserve"> <value>Windows default</value> <comment>Windows refers to the Operating system</comment> </data> <data name="Windows_Color_Settings.Content" xml:space="preserve"> <value>Windows color settings</value> <comment>Windows refers to the Operating system</comment> </data> <data name="ColorPicker_CopiedColorRepresentation.Header" xml:space="preserve"> <value>Default color format</value> </data> <data name="ColorPickerFirst.Content" xml:space="preserve"> <value>Pick a color and open editor</value> </data> <data name="EditorFirst.Content" xml:space="preserve"> <value>Open editor</value> </data> <data name="ColorPickerOnly.Content" xml:space="preserve"> <value>Only pick a color</value> </data> <data name="ColorPicker_ActivationAction.Header" xml:space="preserve"> <value>Activation behavior</value> </data> <data name="ColorFormats.Header" xml:space="preserve"> <value>Picker behavior</value> </data> <data name="ColorPicker_CopiedColorRepresentation.Description" xml:space="preserve"> <value>This format will be copied to your clipboard</value> </data> <data name="KBM_KeysCannotBeRemapped.Text" xml:space="preserve"> <value>Learn more about remapping limitations</value> <comment>This is a link that will discuss what is and is not possible for Keyboard manager to remap</comment> </data> <data name="FancyZones_Editor_GroupSettings.Header" xml:space="preserve"> <value>Editor</value> <comment>refers to the FancyZone editor</comment> </data> <data name="FancyZones_WindowBehavior_GroupSettings.Header" xml:space="preserve"> <value>Window behavior</value> </data> <data name="FancyZones_WindowBehavior_GroupSettings.Description" xml:space="preserve"> <value>Manage how windows behave when using FancyZones</value> </data> <data name="FancyZones_Windows.Header" xml:space="preserve"> <value>Windows</value> <comment>Do translate: refers to a set of application windows, not the product name</comment> </data> <data name="PowerRename_BehaviorHeader.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="PowerRename_Toggle_UseBoostLib.Header" xml:space="preserve"> <value>Use Boost library</value> <comment>Boost is a product name, should not be translated</comment> </data> <data name="PowerRename_Toggle_UseBoostLib.Description" xml:space="preserve"> <value>Provides extended features but may use different regex syntax</value> <comment>Boost is a product name, should not be translated</comment> </data> <data name="MadeWithOssLove.Text" xml:space="preserve"> <value>Made with 💗 by Microsoft and the PowerToys community.</value> </data> <data name="ColorPicker_ColorFormats.Header" xml:space="preserve"> <value>Color formats</value> </data> <data name="ColorPicker_ColorFormats.Description" xml:space="preserve"> <value>Configure the color formats (edit, delete, hide, reorder them)</value> </data> <data name="MoveUp.Text" xml:space="preserve"> <value>Move up</value> </data> <data name="MoveDown.Text" xml:space="preserve"> <value>Move down</value> </data> <data name="ColorPickerAddNewFormat.Content" xml:space="preserve"> <value>Add new format</value> </data> <data name="NewColorFormat.Header" xml:space="preserve"> <value>Format</value> </data> <data name="NewColorName.Header" xml:space="preserve"> <value>Name</value> </data> <data name="AddCustomColorFormat" xml:space="preserve"> <value>Add custom color format</value> </data> <data name="ColorFormatSave" xml:space="preserve"> <value>Save</value> </data> <data name="EditCustomColorFormat" xml:space="preserve"> <value>Edit custom color format</value> </data> <data name="ColorFormatUpdate" xml:space="preserve"> <value>Update</value> </data> <data name="CustomColorFormatDefaultName" xml:space="preserve"> <value>My Format</value> </data> <data name="ColorFormatDialog.SecondaryButtonText" xml:space="preserve"> <value>Cancel</value> </data> <data name="ColorFormatEditorHelpline1.Text" xml:space="preserve"> <value>The following parameters can be used:</value> </data> <data name="Help_red" xml:space="preserve"> <value>red</value> </data> <data name="Help_green" xml:space="preserve"> <value>green</value> </data> <data name="Help_blue" xml:space="preserve"> <value>blue</value> </data> <data name="Help_alpha" xml:space="preserve"> <value>alpha</value> </data> <data name="Help_cyan" xml:space="preserve"> <value>cyan</value> </data> <data name="Help_magenta" xml:space="preserve"> <value>magenta</value> </data> <data name="Help_yellow" xml:space="preserve"> <value>yellow</value> </data> <data name="Help_black_key" xml:space="preserve"> <value>black key</value> </data> <data name="Help_hue" xml:space="preserve"> <value>hue</value> </data> <data name="Help_hueNat" xml:space="preserve"> <value>hue (natural)</value> </data> <data name="Help_saturationI" xml:space="preserve"> <value>saturation (HSI)</value> </data> <data name="Help_saturationL" xml:space="preserve"> <value>saturation (HSL)</value> </data> <data name="Help_saturationB" xml:space="preserve"> <value>saturation (HSB)</value> </data> <data name="Help_brightness" xml:space="preserve"> <value>brightness</value> </data> <data name="Help_intensity" xml:space="preserve"> <value>intensity</value> </data> <data name="Help_lightnessNat" xml:space="preserve"> <value>lightness (nat)</value> </data> <data name="Help_lightnessCIE" xml:space="preserve"> <value>lightness (CIE)</value> </data> <data name="Help_value" xml:space="preserve"> <value>value</value> </data> <data name="Help_whiteness" xml:space="preserve"> <value>whiteness</value> </data> <data name="Help_blackness" xml:space="preserve"> <value>blackness</value> </data> <data name="Help_chromaticityA" xml:space="preserve"> <value>chromaticityA</value> </data> <data name="Help_chromaticityB" xml:space="preserve"> <value>chromaticityB</value> </data> <data name="Help_X_value" xml:space="preserve"> <value>X value</value> </data> <data name="Help_Y_value" xml:space="preserve"> <value>Y value</value> </data> <data name="Help_Z_value" xml:space="preserve"> <value>Z value</value> </data> <data name="Help_decimal_value_RGB" xml:space="preserve"> <value>decimal value (RGB)</value> </data> <data name="Help_decimal_value_BGR" xml:space="preserve"> <value>decimal value (BGR)</value> </data> <data name="Help_color_name" xml:space="preserve"> <value>color name</value> </data> <data name="ColorFormatEditorHelpline2.Text" xml:space="preserve"> <value>The red, green, blue and alpha values can be formatted to the following formats:</value> </data> <data name="Help_byte" xml:space="preserve"> <value>byte value (default)</value> </data> <data name="Help_hexL1" xml:space="preserve"> <value>hex lowercase one digit</value> </data> <data name="Help_hexU1" xml:space="preserve"> <value>hex uppercase one digit</value> </data> <data name="Help_hexL2" xml:space="preserve"> <value>hex lowercase two digits</value> </data> <data name="Help_hexU2" xml:space="preserve"> <value>hex uppercase two digits</value> </data> <data name="Help_floatWith" xml:space="preserve"> <value>float with leading zero</value> </data> <data name="Help_floatWithout" xml:space="preserve"> <value>float without leading zero</value> </data> <data name="ColorFormatEditorHelpline3.Text" xml:space="preserve"> <value>Example: %ReX means red value in hex uppercase two digits format.</value> </data> <data name="ColorPicker_ShowColorName.Header" xml:space="preserve"> <value>Show color name</value> </data> <data name="ColorPicker_ShowColorName.Description" xml:space="preserve"> <value>This will show the name of the color when picking a color</value> </data> <data name="ImageResizer_DefaultSize_Large" xml:space="preserve"> <value>Large</value> <comment>The size of the image</comment> </data> <data name="ImageResizer_DefaultSize_Medium" xml:space="preserve"> <value>Medium</value> <comment>The size of the image</comment> </data> <data name="ImageResizer_DefaultSize_Phone" xml:space="preserve"> <value>Phone</value> <comment>The size of the image referring to a Mobile Phone typical image size</comment> </data> <data name="ImageResizer_DefaultSize_Small" xml:space="preserve"> <value>Small</value> <comment>The size of the image</comment> </data> <data name="FancyZones_MoveWindowBasedOnRelativePosition_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Windows key + Up, down, left or right arrow key to move windows based on relative position</value> </data> <data name="FancyZones_MoveWindowLeftRightBasedOnZoneIndex_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Windows key + Left or right arrow keys to move windows based on zone index</value> </data> <data name="FancyZones_MoveWindowBasedOnRelativePosition_Description.Text" xml:space="preserve"> <value>Windows key +    or </value> <comment>Do not loc the icons (hex numbers)</comment> </data> <data name="FancyZones_MoveWindowLeftRightBasedOnZoneIndex_Description.Text" xml:space="preserve"> <value>Windows key +  or </value> <comment>Do not loc the icons (hex numbers)</comment> </data> <data name="FancyZones_MoveWindowBasedOnRelativePosition.Text" xml:space="preserve"> <value>Relative position</value> </data> <data name="FancyZones_MoveWindow.Header" xml:space="preserve"> <value>Move windows based on</value> </data> <data name="FancyZones_MoveWindowLeftRightBasedOnZoneIndex.Text" xml:space="preserve"> <value>Zone index</value> </data> <data name="ColorPicker_Editor.Header" xml:space="preserve"> <value>Color formats</value> </data> <data name="FancyZones_OverlappingZonesClosestCenter.Content" xml:space="preserve"> <value>Activate the zone whose center is closest to the cursor</value> </data> <data name="FancyZones_OverlappingZonesLargest.Content" xml:space="preserve"> <value>Activate the largest zone by area</value> </data> <data name="FancyZones_OverlappingZonesPositional.Content" xml:space="preserve"> <value>Split the overlapped area into multiple activation targets</value> </data> <data name="FancyZones_OverlappingZonesSmallest.Content" xml:space="preserve"> <value>Activate the smallest zone by area</value> </data> <data name="FancyZones_OverlappingZones.Header" xml:space="preserve"> <value>When multiple zones overlap</value> </data> <data name="PowerLauncher_Plugins.Header" xml:space="preserve"> <value>Plugins</value> </data> <data name="PowerLauncher_ActionKeyword.Header" xml:space="preserve"> <value>Direct activation command</value> </data> <data name="PowerLauncher_AuthoredBy.Text" xml:space="preserve"> <value>Authored by</value> <comment>example: Authored by Microsoft</comment> </data> <data name="PowerLauncher_IncludeInGlobalResultTitle.Text" xml:space="preserve"> <value>Include in global result</value> </data> <data name="PowerLauncher_IncludeInGlobalResultDescription.Text" xml:space="preserve"> <value>Show results on queries without direct activation command</value> </data> <data name="PowerLauncher_EnablePluginToggle.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Enable plugin</value> </data> <data name="PowerLauncher_EnablePluginToggle.OnContent" xml:space="preserve"> <value>On</value> </data> <data name="PowerLauncher_EnablePluginToggle.OffContent" xml:space="preserve"> <value>Off</value> </data> <data name="Run_AdditionalOptions.Text" xml:space="preserve"> <value>Additional options</value> </data> <data name="Run_NotAccessibleWarning.Title" xml:space="preserve"> <value>Please define an activation command or allow this plugin to be used in the global results.</value> </data> <data name="Run_AllPluginsDisabled.Title" xml:space="preserve"> <value>PowerToys Run can't provide any results without plugins</value> </data> <data name="Run_AllPluginsDisabled.Message" xml:space="preserve"> <value>Enable at least one plugin to get started</value> </data> <data name="Run_PluginUse.Header" xml:space="preserve"> <value>Plugins</value> </data> <data name="Run_PluginUseDescription.Text" xml:space="preserve"> <value>Include or remove plugins from the global results, change the direct activation phrase and configure additional options</value> </data> <data name="Run_PositionAppearance_GroupSettings.Header" xml:space="preserve"> <value>Position &amp; appearance</value> </data> <data name="Run_PositionHeader.Header" xml:space="preserve"> <value>Preferred monitor position</value> <comment>as in Show PowerToys Run on primary monitor</comment> </data> <data name="Run_PositionHeader.Description" xml:space="preserve"> <value>If multiple monitors are in use, PowerToys Run can be launched on the desired monitor</value> <comment>as in Show PowerToys Run on primary monitor</comment> </data> <data name="Run_Radio_Position_Cursor.Content" xml:space="preserve"> <value>Monitor with mouse cursor</value> </data> <data name="Run_Radio_Position_Focus.Content" xml:space="preserve"> <value>Monitor with focused window</value> </data> <data name="Run_Radio_Position_Primary_Monitor.Content" xml:space="preserve"> <value>Primary monitor</value> </data> <data name="Run_PluginsLoading.Text" xml:space="preserve"> <value>Plugins are loading...</value> </data> <data name="ColorPicker_ButtonDown.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Move the color down</value> </data> <data name="ColorPicker_ButtonUp.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Move the color up</value> </data> <data name="FancyZones_FlashZonesOnQuickSwitch.Content" xml:space="preserve"> <value>Flash zones when switching layout</value> </data> <data name="FancyZones_Layouts.Header" xml:space="preserve"> <value>Layouts</value> </data> <data name="FancyZones_QuickLayoutSwitch.Header" xml:space="preserve"> <value>Enable quick layout switch</value> </data> <data name="FancyZones_QuickLayoutSwitch.Description" xml:space="preserve"> <value>Layout-specific shortcuts can be configured in the editor</value> </data> <data name="FancyZones_QuickLayoutSwitch_GroupSettings.Text" xml:space="preserve"> <value>Quick layout switch</value> </data> <data name="Activation_Shortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="Activation_Shortcut.Description" xml:space="preserve"> <value>Customize the shortcut to activate this module</value> </data> <data name="Oobe_GetStarted.Text" xml:space="preserve"> <value>Let's get started!</value> </data> <data name="Oobe_PowerToysDescription.Text" xml:space="preserve"> <value>Welcome to PowerToys! These overviews will help you quickly learn the basics of all our utilities.</value> </data> <data name="Oobe_GettingStarted.Text" xml:space="preserve"> <value>Getting started</value> </data> <data name="Oobe_Launch.Text" xml:space="preserve"> <value>Launch</value> </data> <data name="Launch_ColorPicker.Content" xml:space="preserve"> <value>Launch Color Picker</value> </data> <data name="Oobe_LearnMore.Text" xml:space="preserve"> <value>Learn more about</value> </data> <data name="Oobe_ColorPicker.Description" xml:space="preserve"> <value>Color Picker is a system-wide color selection tool for Windows that enables you to pick colors from any currently running application and automatically copies it in a configurable format to your clipboard.</value> </data> <data name="Oobe_FancyZones.Description" xml:space="preserve"> <value>FancyZones is a window manager that makes it easy to create complex window layouts and quickly position windows into those layouts.</value> </data> <data name="Oobe_FileLocksmith.Description" xml:space="preserve"> <value>File Locksmith lists which processes are using the selected files or directories and allows closing those processes.</value> </data> <data name="Oobe_FileExplorer.Description" xml:space="preserve"> <value>PowerToys introduces add-ons to the Windows File Explorer that will enable files like Markdown (.md), PDF (.pdf), SVG (.svg), STL (.stl), G-code (.gcode) and developer files to be viewed in the preview pane. It introduces File Explorer thumbnail support for a number of these file types as well.</value> </data> <data name="Oobe_ImageResizer.Description" xml:space="preserve"> <value>Image Resizer is a Windows shell extension for simple bulk image-resizing.</value> </data> <data name="Oobe_KBM.Description" xml:space="preserve"> <value>Keyboard Manager allows you to customize the keyboard to be more productive by remapping keys and creating your own keyboard shortcuts.</value> </data> <data name="Oobe_MouseWithoutBorders.Description" xml:space="preserve"> <value>Mouse Without Borders enables using the mouse pointer, keyboard, clipboard and drag and drop between machines in the same local network.</value> </data> <data name="Oobe_PowerRename.Description" xml:space="preserve"> <value>PowerRename enables you to perform simple bulk renaming, searching and replacing file names.</value> </data> <data name="Oobe_Run.Description" xml:space="preserve"> <value>PowerToys Run is a quick launcher for power users that contains some additional features without sacrificing performance.</value> </data> <data name="Oobe_MeasureTool.Description" xml:space="preserve"> <value>Screen Ruler is a quick and easy way to measure pixels on your screen.</value> </data> <data name="Oobe_ShortcutGuide.Description" xml:space="preserve"> <value>Shortcut Guide presents the user with a listing of available shortcuts for the current state of the desktop.</value> </data> <data name="Oobe_VideoConference.Description" xml:space="preserve"> <value>Video Conference Mute allows users to quickly mute the microphone and turn off the camera while on a conference call with a single keystroke, regardless of what application has focus on your computer.</value> </data> <data name="Oobe_MouseUtils.Description" xml:space="preserve"> <value>A collection of utilities to enhance your mouse.</value> <comment>Mouse as in the hardware peripheral</comment> </data> <data name="Oobe_Overview.Description" xml:space="preserve"> <value>Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. Take a moment to preview the various utilities listed or view our comprehensive documentation.</value> </data> <data name="Oobe_Overview_DescriptionLinkText.Text" xml:space="preserve"> <value>Documentation on Microsoft Docs</value> </data> <data name="ReleaseNotes.Content" xml:space="preserve"> <value>Release notes</value> </data> <data name="Oobe_ColorPicker_HowToUse.Text" xml:space="preserve"> <value>to open Color Picker.</value> </data> <data name="Oobe_ColorPicker_TipsAndTricks.Text" xml:space="preserve"> <value>To select a color with more precision, **scroll the mouse wheel** to zoom in.</value> </data> <data name="Oobe_FancyZones_HowToUse.Text" xml:space="preserve"> <value>**Shift** + **drag the window** to snap a window to a zone, and release the window in the desired zone.</value> </data> <data name="Oobe_FancyZones_HowToUse_Shortcut.Text" xml:space="preserve"> <value>to open the FancyZones editor.</value> </data> <data name="Oobe_FancyZones_TipsAndTricks.Text" xml:space="preserve"> <value>Snap a window to multiple zones by holding the **Ctrl** key (while also holding **Shift**) when dragging a window.</value> </data> <data name="Oobe_FileLocksmith_HowToUse.Text" xml:space="preserve"> <value>In File Explorer, right-click one or more selected files and select **What's using this file?** from the context menu.</value> </data> <data name="Oobe_FileLocksmith_TipsAndTricks.Text" xml:space="preserve"> <value>Press the **Restart Elevated** button from the File Locksmith UI to also get information on elevated processes that might be using the files.</value> </data> <data name="Oobe_FileExplorer_HowToEnable.Text" xml:space="preserve"> <value>Select **View** which is located at the top of File Explorer, followed by **Show**, and then **Preview pane**. From there, simply click on one of the supported files in the File Explorer and observe the content on the preview pane!</value> </data> <data name="Oobe_HowToCreateMappings.Text" xml:space="preserve"> <value>How to create mappings</value> </data> <data name="Oobe_HowToEnable.Text" xml:space="preserve"> <value>How to enable</value> </data> <data name="Oobe_HowToLaunch.Text" xml:space="preserve"> <value>How to launch</value> </data> <data name="Oobe_HowToUse.Text" xml:space="preserve"> <value>How to use</value> </data> <data name="Oobe_ImageResizer_HowToLaunch.Text" xml:space="preserve"> <value>In File Explorer, right-click one or more image files and select **Resize pictures** from the context menu.</value> </data> <data name="Oobe_ImageResizer_TipsAndTricks.Text" xml:space="preserve"> <value>Want a custom size? You can add them in the PowerToys Settings!</value> </data> <data name="Oobe_KBM_HowToCreateMappings.Text" xml:space="preserve"> <value>Launch **PowerToys Settings**, navigate to the Keyboard Manager menu, and select either **Remap a key** or **Remap a shortcut**.</value> </data> <data name="Oobe_KBM_TipsAndTricks.Text" xml:space="preserve"> <value>Want to only have a shortcut work for a single application? Use the Target App field when creating the shortcut remapping.</value> </data> <data name="Oobe_MouseWithoutBorders_HowToUse.Text" xml:space="preserve"> <value>Use the Settings screen on each machine to connect to the other machines using the same key. If a connection is not working, it may be necessary to add an exception to the Windows Firewall.</value> </data> <data name="Oobe_MouseWithoutBorders_TipsAndTricks.Text" xml:space="preserve"> <value>Use the service option in Settings to install a service enabling Mouse Without Borders to function even in the lock screen.</value> </data> <data name="Oobe_PowerRename_HowToUse.Text" xml:space="preserve"> <value>In File Explorer, right-click one or more selected files and select **PowerRename** from the context menu.</value> </data> <data name="Oobe_PowerRename_TipsAndTricks.Text" xml:space="preserve"> <value>PowerRename supports searching for files using regular expressions to enable more advanced renaming functionalities.</value> </data> <data name="Oobe_Run_HowToLaunch.Text" xml:space="preserve"> <value>to open Run and just start typing.</value> </data> <data name="Oobe_Run_TipsAndTricks.Text" xml:space="preserve"> <value>PowerToys Run supports various action keys to funnel search queries for a specific subset of results. Typing `&lt;` searches for running processes only, `?` will search only for file, or `.` for installed applications! See PowerToys documentation for the complete set of 'Action Keys' available.</value> </data> <data name="Oobe_ShortcutGuide_HowToLaunch.Text" xml:space="preserve"> <value>to open Shortcut Guide, press it again to close or press **Esc**.</value> </data> <data name="Oobe_TipsAndTricks.Text" xml:space="preserve"> <value>Tips &amp; tricks</value> </data> <data name="Oobe_VideoConference_ToggleMicVid.Text" xml:space="preserve"> <value>to toggle both your microphone and video</value> </data> <data name="Oobe_VideoConference_ToggleMic.Text" xml:space="preserve"> <value>to toggle your microphone</value> </data> <data name="Oobe_VideoConference_PushToTalkMic.Text" xml:space="preserve"> <value>to toggle your microphone until key release</value> </data> <data name="Oobe_VideoConference_ToggleVid.Text" xml:space="preserve"> <value>to toggle your video</value> </data> <data name="Oobe_MeasureTool_Activation.Text" xml:space="preserve"> <value>to bring up the Screen Ruler command bar.</value> </data> <data name="Oobe_MeasureTool_HowToLaunch.Text" xml:space="preserve"> <value>The Bounds mode lets you select a specific area to measure. You can also shift-drag an area to persist in on screen. The various Spacing modes allows tracing similar pixels along horizontal and vertical axes with a customizable pixel tolerance threshold (use settings or mouse wheel to adjust it).</value> </data> <data name="Oobe_MeasureTool.Title" xml:space="preserve"> <value>Screen Ruler</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_ColorPicker.Title" xml:space="preserve"> <value>Color Picker</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_FancyZones.Title" xml:space="preserve"> <value>FancyZones</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_FileLocksmith.Title" xml:space="preserve"> <value>File Locksmith</value> </data> <data name="Oobe_ImageResizer.Title" xml:space="preserve"> <value>Image Resizer</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_KBM.Title" xml:space="preserve"> <value>Keyboard Manager</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_MouseWithoutBorders.Title" xml:space="preserve"> <value>Mouse Without Borders</value> <comment>Product name. Do not localize this string</comment> </data> <data name="Oobe_PowerRename.Title" xml:space="preserve"> <value>PowerRename</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_Run.Title" xml:space="preserve"> <value>PowerToys Run</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_ShortcutGuide.Title" xml:space="preserve"> <value>Shortcut Guide</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_VideoConference.Title" xml:space="preserve"> <value>Video Conference Mute</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_Overview.Title" xml:space="preserve"> <value>Welcome</value> </data> <data name="Oobe_WhatsNew.Text" xml:space="preserve"> <value>What's new</value> </data> <data name="Oobe_WhatsNew_LoadingError.Title" xml:space="preserve"> <value>Couldn't load the release notes.</value> </data> <data name="Oobe_WhatsNew_LoadingError.Message" xml:space="preserve"> <value>Please check your internet connection.</value> </data> <data name="Oobe_WhatsNew_ProxyAuthenticationWarning.Title" xml:space="preserve"> <value>Couldn't load the release notes.</value> </data> <data name="Oobe_WhatsNew_ProxyAuthenticationWarning.Message" xml:space="preserve"> <value>Your proxy server requires authentication.</value> </data> <data name="Oobe_WhatsNew_DetailedReleaseNotesLink.Text" xml:space="preserve"> <value>See more detailed release notes on GitHub</value> <comment>Don't loc "GitHub", it's the name of a product</comment> </data> <data name="OOBE_Settings.Content" xml:space="preserve"> <value>Open Settings</value> </data> <data name="Oobe_NavViewItem.Content" xml:space="preserve"> <value>Welcome to PowerToys</value> <comment>Don't loc "PowerToys"</comment> </data> <data name="Feedback_NavViewItem.Content" xml:space="preserve"> <value>Give feedback</value> </data> <data name="OobeWindow_Title" xml:space="preserve"> <value>Welcome to PowerToys</value> </data> <data name="OobeWindow_TitleTxt.Text" xml:space="preserve"> <value>Welcome to PowerToys</value> </data> <data name="SettingsWindow_Title" xml:space="preserve"> <value>PowerToys Settings</value> <comment>Title of the settings window when running as user</comment> </data> <data name="Awake.ModuleTitle" xml:space="preserve"> <value>Awake</value> </data> <data name="Awake.ModuleDescription" xml:space="preserve"> <value>A convenient way to keep your PC awake on-demand.</value> </data> <data name="Awake_EnableSettingsCard.Header" xml:space="preserve"> <value>Enable Awake</value> <comment>Awake is a product name, do not loc</comment> </data> <data name="Awake_NoKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep using the selected power plan</value> </data> <data name="Awake_IndefiniteKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep awake indefinitely</value> </data> <data name="Awake_TemporaryKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep awake for a time interval</value> </data> <data name="Awake_ExpirableKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep awake until expiration</value> </data> <data name="Awake_DisplaySettingsCard.Header" xml:space="preserve"> <value>Keep screen on</value> </data> <data name="Awake_DisplaySettingsCard.Description" xml:space="preserve"> <value>This setting is only available when keeping the PC awake</value> </data> <data name="Awake_ExpirationSettingsExpander.Description" xml:space="preserve"> <value>Keep custom awake state until a specific date and time</value> </data> <data name="Awake_ModeSettingsCard.Header" xml:space="preserve"> <value>Mode</value> </data> <data name="Awake_BehaviorSettingsGroup.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="Awake_IntervalHoursInput.Header" xml:space="preserve"> <value>Hours</value> </data> <data name="Awake_IntervalMinutesInput.Header" xml:space="preserve"> <value>Minutes</value> </data> <data name="Awake_ExpirationSettingsExpander_Date.Header" xml:space="preserve"> <value>End date</value> </data> <data name="Awake_ExpirationSettingsExpander_Time.Header" xml:space="preserve"> <value>End time</value> </data> <data name="Oobe_Awake.Title" xml:space="preserve"> <value>Awake</value> <comment>Module name, do not loc</comment> </data> <data name="Oobe_Awake.Description" xml:space="preserve"> <value>Awake is a Windows tool designed to keep your PC awake on-demand without having to manage its power settings. This behavior can be helpful when running time-consuming tasks while ensuring that your PC does not go to sleep or turn off its screens.</value> </data> <data name="Oobe_Awake_HowToUse.Text" xml:space="preserve"> <value>Open **PowerToys Settings** and enable Awake</value> </data> <data name="Oobe_Awake_TipsAndTricks.Text" xml:space="preserve"> <value>You can always change modes quickly by **right-clicking the Awake icon** in the system tray.</value> </data> <data name="General_FailedToDownloadTheNewVersion.Title" xml:space="preserve"> <value>An error occurred trying to install this update:</value> </data> <data name="General_InstallNow.Content" xml:space="preserve"> <value>Install now</value> </data> <data name="General_ReadMore.Text" xml:space="preserve"> <value>Read more</value> </data> <data name="General_NewVersionAvailable.Title" xml:space="preserve"> <value>An update is available:</value> </data> <data name="General_Downloading.Text" xml:space="preserve"> <value>Downloading...</value> </data> <data name="General_TryAgainToDownloadAndInstall.Content" xml:space="preserve"> <value>Try again to download and install</value> </data> <data name="General_CheckingForUpdates.Text" xml:space="preserve"> <value>Checking for updates...</value> </data> <data name="General_NewVersionReadyToInstall.Title" xml:space="preserve"> <value>An update is ready to install:</value> </data> <data name="General_UpToDate.Title" xml:space="preserve"> <value>PowerToys is up to date</value> </data> <data name="General_CantCheck.Title" xml:space="preserve"> <value>Network error. Please try again later</value> </data> <data name="General_DownloadAndInstall.Content" xml:space="preserve"> <value>Download &amp; install</value> </data> <data name="ImageResizer_Fit_Fill_ThirdPersonSingular" xml:space="preserve"> <value>Fills</value> </data> <data name="ImageResizer_Fit_Fit_ThirdPersonSingular" xml:space="preserve"> <value>Fits within</value> </data> <data name="ImageResizer_Fit_Stretch_ThirdPersonSingular" xml:space="preserve"> <value>Stretches to</value> </data> <data name="ImageResizer_Unit_Centimeter" xml:space="preserve"> <value>Centimeters</value> </data> <data name="ImageResizer_Unit_Inch" xml:space="preserve"> <value>Inches</value> </data> <data name="ImageResizer_Unit_Percent" xml:space="preserve"> <value>Percent</value> </data> <data name="ImageResizer_Unit_Pixel" xml:space="preserve"> <value>Pixels</value> </data> <data name="EditButton.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Edit</value> </data> <data name="ImageResizer_EditSize.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Edit size</value> </data> <data name="No" xml:space="preserve"> <value>No</value> <comment>Label of a cancel button</comment> </data> <data name="Delete_Dialog_Description" xml:space="preserve"> <value>Are you sure you want to delete this item?</value> </data> <data name="Yes" xml:space="preserve"> <value>Yes</value> <comment>Label of a confirmation button</comment> </data> <data name="SeeWhatsNew.Content" xml:space="preserve"> <value>See what's new</value> </data> <data name="Awake_ModeSettingsCard.Description" xml:space="preserve"> <value>Manage the state of your device when Awake is active</value> </data> <data name="ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="Enable_ColorFormat.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Enable colorformat</value> </data> <data name="More_Options_Button.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>More options</value> </data> <data name="More_Options_ButtonTooltip.Text" xml:space="preserve"> <value>More options</value> </data> <data name="To.Text" xml:space="preserve"> <value>to</value> <comment>as in: from x to y</comment> </data> <data name="LearnMore_Awake.Text" xml:space="preserve"> <value>Learn more about Awake</value> <comment>Awake is a product name, do not loc</comment> </data> <data name="LearnMore_ColorPicker.Text" xml:space="preserve"> <value>Learn more about Color Picker</value> <comment>Color Picker is a product name, do not loc</comment> </data> <data name="LearnMore_FancyZones.Text" xml:space="preserve"> <value>Learn more about FancyZones</value> <comment>FancyZones is a product name, do not loc</comment> </data> <data name="LearnMore_FileLocksmith.Text" xml:space="preserve"> <value>Learn more about File Locksmith</value> </data> <data name="LearnMore_ImageResizer.Text" xml:space="preserve"> <value>Learn more about Image Resizer</value> <comment>Image Resizer is a product name, do not loc</comment> </data> <data name="LearnMore_KBM.Text" xml:space="preserve"> <value>Learn more about Keyboard Manager</value> <comment>Keyboard Manager is a product name, do not loc</comment> </data> <data name="LearnMore_MouseUtils.Text" xml:space="preserve"> <value>Learn more about Mouse utilities</value> <comment>Mouse utilities is a product name, do not loc</comment> </data> <data name="LearnMore_PastePlain.Text" xml:space="preserve"> <value>Learn more about Paste as Plain Text</value> <comment> Paste as Plain Text is the name of the module. </comment> </data> <data name="LearnMore_MouseWithoutBorders.Text" xml:space="preserve"> <value>Learn more about Mouse Without Borders</value> <comment>Mouse Without Borders is the name of the module. </comment> </data> <data name="LearnMore_PowerPreview.Text" xml:space="preserve"> <value>Learn more about File Explorer add-ons</value> <comment>File Explorer is a product name, localize as Windows does</comment> </data> <data name="LearnMore_Peek.Text" xml:space="preserve"> <value>Learn more about Peek</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="LearnMore_PowerRename.Text" xml:space="preserve"> <value>Learn more about PowerRename</value> <comment>PowerRename is a product name, do not loc</comment> </data> <data name="LearnMore_Run.Text" xml:space="preserve"> <value>Learn more about PowerToys Run</value> <comment>PowerToys Run is a product name, do not loc</comment> </data> <data name="LearnMore_MeasureTool.Text" xml:space="preserve"> <value>Learn more about Screen Ruler</value> <comment>Screen Ruler is a product name, do not loc</comment> </data> <data name="LearnMore_ShortcutGuide.Text" xml:space="preserve"> <value>Learn more about Shortcut Guide</value> <comment>Shortcut Guide is a product name, do not loc</comment> </data> <data name="LearnMore_VCM.Text" xml:space="preserve"> <value>Learn more about Video Conference Mute</value> <comment>Video Conference Mute is a product name, do not loc</comment> </data> <data name="Oobe_FileExplorer.Title" xml:space="preserve"> <value>File Explorer add-ons</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_MouseUtils.Title" xml:space="preserve"> <value>Mouse utilities</value> <comment>Mouse as in the hardware peripheral</comment> </data> <data name="Oobe_MouseUtils_FindMyMouse.Text" xml:space="preserve"> <value>Find My Mouse</value> <comment>Mouse as in the hardware peripheral</comment> </data> <data name="Oobe_MouseUtils_FindMyMouse_Description.Text" xml:space="preserve"> <value>Focus the mouse pointer pressing the Ctrl key twice, using a custom shortcut or shaking the mouse.</value> <comment>Mouse as in the hardware peripheral. Key as in a keyboard key</comment> </data> <data name="Oobe_MouseUtils_MouseHighlighter.Text" xml:space="preserve"> <value>Mouse Highlighter</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MouseHighlighter_Description.Text" xml:space="preserve"> <value>Use a keyboard shortcut to highlight left and right mouse clicks.</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MousePointerCrosshairs.Text" xml:space="preserve"> <value>Mouse Pointer Crosshairs</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MousePointerCrosshairs_Description.Text" xml:space="preserve"> <value>Draw crosshairs centered around the mouse pointer.</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MouseJump.Text" xml:space="preserve"> <value>Mouse Jump</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MouseJump_Description.Text" xml:space="preserve"> <value>Jump the mouse pointer quickly to anywhere on your desktop.</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Launch_Run.Content" xml:space="preserve"> <value>Launch PowerToys Run</value> </data> <data name="Launch_ShortcutGuide.Content" xml:space="preserve"> <value>Launch Shortcut Guide</value> </data> <data name="ColorPicker_ColorFormat_ToggleSwitch.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Show format in editor</value> </data> <data name="GeneralPage_Documentation.Text" xml:space="preserve"> <value>Documentation</value> </data> <data name="PowerLauncher_SearchList.PlaceholderText" xml:space="preserve"> <value>Search this list</value> </data> <data name="PowerLauncher_SearchList.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Search this list</value> </data> <data name="Awake.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="ColorPicker.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="General.SecondaryLinksHeader" xml:space="preserve"> <value>Related information</value> </data> <data name="ImageResizer.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="MouseUtils.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="PowerLauncher.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="PowerRename.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="EditTooltip.Text" xml:space="preserve"> <value>Edit</value> </data> <data name="RemoveTooltip.Text" xml:space="preserve"> <value>Remove</value> </data> <data name="Activation_Shortcut_Cancel" xml:space="preserve"> <value>Cancel</value> </data> <data name="Activation_Shortcut_Description" xml:space="preserve"> <value>Press a combination of keys to change this shortcut</value> </data> <data name="Activation_Shortcut_With_Disable_Description" xml:space="preserve"> <value>Press a combination of keys to change this shortcut. Right-click to remove the key combination, thereby deactivating the shortcut.</value> </data> <data name="Activation_Shortcut_Reset" xml:space="preserve"> <value>Reset</value> </data> <data name="Activation_Shortcut_Save" xml:space="preserve"> <value>Save</value> </data> <data name="Activation_Shortcut_Title" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="InvalidShortcut.Title" xml:space="preserve"> <value>Invalid shortcut</value> </data> <data name="InvalidShortcutWarningLabel.Text" xml:space="preserve"> <value>Only shortcuts that start with **Windows key**, **Ctrl**, **Alt** or **Shift** are valid.</value> <comment>The ** sequences are used for text formatting of the key names. Don't remove them on translation.</comment> </data> <data name="FancyZones_SpanZonesAcrossMonitors.Description" xml:space="preserve"> <value>All monitors must have the same DPI scaling and will be treated as one large combined rectangle which contains all monitors</value> </data> <data name="ImageResizer_DefaultSize_NewSizePrefix" xml:space="preserve"> <value>New size</value> <comment>First part of the default name of new sizes that can be added in PT's settings ui.</comment> </data> <data name="Awake_IntervalSettingsCard.Header" xml:space="preserve"> <value>Interval before returning to the previous awakeness state</value> </data> <data name="Awake_ExpirationSettingsExpander.Header" xml:space="preserve"> <value>End date and time</value> </data> <data name="MouseUtils.ModuleTitle" xml:space="preserve"> <value>Mouse utilities</value> </data> <data name="MouseUtils.ModuleDescription" xml:space="preserve"> <value>A collection of mouse utilities.</value> </data> <data name="MouseUtils_FindMyMouse.Header" xml:space="preserve"> <value>Find My Mouse</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_FindMyMouse.Description" xml:space="preserve"> <value>Find My Mouse highlights the position of the cursor when pressing the Ctrl key twice, using a custom shortcut or when shaking the mouse.</value> <comment>"Ctrl" is a keyboard key. "Find My Mouse" is the name of the utility</comment> </data> <data name="MouseUtils_Enable_FindMyMouse.Header" xml:space="preserve"> <value>Enable Find My Mouse</value> <comment>"Find My Mouse" is the name of the utility.</comment> </data> <data name="MouseUtils_FindMyMouse_ActivationMethod.Header" xml:space="preserve"> <value>Activation method</value> </data> <data name="MouseUtils_FindMyMouse_ActivationDoubleControlPress.Content" xml:space="preserve"> <value>Press Left Control twice</value> <comment>Left control is the physical key on the keyboard.</comment> </data> <data name="MouseUtils_FindMyMouse_ActivationShakeMouse.Content" xml:space="preserve"> <value>Shake mouse</value> <comment>Mouse is the hardware peripheral.</comment> </data> <data name="MouseUtils_FindMyMouse_ExcludedApps.Description" xml:space="preserve"> <value>Prevents module activation when an excluded application is the foreground application</value> </data> <data name="MouseUtils_FindMyMouse_ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="MouseUtils_FindMyMouse_ExcludedApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> </data> <data name="MouseUtils_Prevent_Activation_On_Game_Mode.Content" xml:space="preserve"> <value>Do not activate when Game Mode is on</value> <comment>"Game mode" is the Windows feature to prevent notification when playing a game.</comment> </data> <data name="MouseUtils_FindMyMouse_BackgroundColor.Header" xml:space="preserve"> <value>Background color</value> </data> <data name="MouseUtils_FindMyMouse_SpotlightColor.Header" xml:space="preserve"> <value>Spotlight color</value> </data> <data name="MouseUtils_FindMyMouse_OverlayOpacity.Header" xml:space="preserve"> <value>Overlay opacity (%)</value> </data> <data name="MouseUtils_FindMyMouse_SpotlightRadius.Header" xml:space="preserve"> <value>Spotlight radius (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_FindMyMouse_SpotlightInitialZoom.Header" xml:space="preserve"> <value>Spotlight initial zoom</value> </data> <data name="MouseUtils_FindMyMouse_SpotlightInitialZoom.Description" xml:space="preserve"> <value>Spotlight zoom factor at animation start</value> </data> <data name="MouseUtils_FindMyMouse_AnimationDurationMs.Header" xml:space="preserve"> <value>Animation duration (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_FindMyMouse_AnimationDurationMs.Description" xml:space="preserve"> <value>Time before the spotlight appears (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_FindMyMouse_AnimationDurationMs_Disabled.Message" xml:space="preserve"> <value>Animations are disabled by OS. See Settings &gt; Accessibility &gt; Visual effects</value> </data> <data name="MouseUtils_FindMyMouse_ShakingMinimumDistance.Header" xml:space="preserve"> <value>Shake minimum distance</value> </data> <data name="MouseUtils_FindMyMouse_ShakingMinimumDistance.Description" xml:space="preserve"> <value>The minimum distance for mouse shaking activation, for adjusting sensitivity</value> </data> <data name="MouseUtils_MouseHighlighter.Header" xml:space="preserve"> <value>Mouse Highlighter</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_MouseHighlighter.Description" xml:space="preserve"> <value>Mouse Highlighter mode will highlight mouse clicks.</value> <comment>"Mouse Highlighter" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_Enable_MouseHighlighter.Header" xml:space="preserve"> <value>Enable Mouse Highlighter</value> <comment>"Find My Mouse" is the name of the utility.</comment> </data> <data name="MouseUtils_MouseHighlighter_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MouseUtils_MouseHighlighter_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to turn on or off this mode</value> <comment>"Mouse Highlighter" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_MouseHighlighter_PrimaryButtonClickColor.Header" xml:space="preserve"> <value>Primary button highlight color</value> </data> <data name="MouseUtils_MouseHighlighter_SecondaryButtonClickColor.Header" xml:space="preserve"> <value>Secondary button highlight color</value> </data> <data name="MouseUtils_MouseHighlighter_HighlightRadius.Header" xml:space="preserve"> <value>Radius (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDelayMs.Header" xml:space="preserve"> <value>Fade delay (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDelayMs.Description" xml:space="preserve"> <value>Time before the highlight begins to fade (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDurationMs.Header" xml:space="preserve"> <value>Fade duration (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDurationMs.Description" xml:space="preserve"> <value>Duration of the disappear animation (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MousePointerCrosshairs.Header" xml:space="preserve"> <value>Mouse Pointer Crosshairs</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_MousePointerCrosshairs.Description" xml:space="preserve"> <value>Mouse Pointer Crosshairs draws crosshairs centered on the mouse pointer.</value> <comment>"Mouse Pointer Crosshairs" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_Enable_MousePointerCrosshairs.Header" xml:space="preserve"> <value>Enable Mouse Pointer Crosshairs</value> <comment>"Mouse Pointer Crosshairs" is the name of the utility.</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MouseUtils_MousePointerCrosshairs_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to show/hide the crosshairs</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsColor.Header" xml:space="preserve"> <value>Crosshairs color</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsOpacity.Header" xml:space="preserve"> <value>Crosshairs opacity (%)</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsRadius.Header" xml:space="preserve"> <value>Crosshairs center radius (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsThickness.Header" xml:space="preserve"> <value>Crosshairs thickness (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsBorderColor.Header" xml:space="preserve"> <value>Crosshairs border color</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsBorderSize.Header" xml:space="preserve"> <value>Crosshairs border size (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_IsCrosshairsFixedLengthEnabled.Header" xml:space="preserve"> <value>Fix crosshairs length</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsFixedLength.Header" xml:space="preserve"> <value>Crosshairs fixed length (px)</value> <comment>px = pixels</comment> </data> <data name="FancyZones_Radio_Custom_Colors.Content" xml:space="preserve"> <value>Custom colors</value> </data> <data name="FancyZones_Radio_Default_Theme.Content" xml:space="preserve"> <value>Windows default</value> </data> <data name="ColorModeHeader.Header" xml:space="preserve"> <value>App theme</value> </data> <data name="FancyZones_Zone_Appearance.Description" xml:space="preserve"> <value>Customize the way zones look</value> </data> <data name="FancyZones_Zone_Appearance.Header" xml:space="preserve"> <value>Zone appearance</value> </data> <data name="VideoConference_DeprecationWarning.Title" xml:space="preserve"> <value>VCM is moving into legacy mode (maintenance only).</value> </data> <data name="VideoConference_DeprecationWarningButton.Content" xml:space="preserve"> <value>Learn more</value> </data> <data name="LearnMore.Content" xml:space="preserve"> <value>Learn more</value> </data> <data name="VideoConference_RunAsAdminRequired.Title" xml:space="preserve"> <value>You need to run as administrator to modify these settings.</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_GCODE.Header" xml:space="preserve"> <value>Geometric Code</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_GCODE.Description" xml:space="preserve"> <value>Only .gcode files with embedded thumbnails are supported</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_GCODE.Header" xml:space="preserve"> <value>Geometric Code</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_GCODE.Description" xml:space="preserve"> <value>Only .gcode files with embedded thumbnails are supported</value> </data> <data name="FancyZones_NumberColor.Header" xml:space="preserve"> <value>Number color</value> </data> <data name="FancyZones_ShowZoneNumberCheckBoxControl.Content" xml:space="preserve"> <value>Show zone number</value> </data> <data name="ToggleSwitch.OffContent" xml:space="preserve"> <value>Off</value> <comment>The state of a ToggleSwitch when it's off</comment> </data> <data name="ToggleSwitch.OnContent" xml:space="preserve"> <value>On</value> <comment>The state of a ToggleSwitch when it's on</comment> </data> <data name="CropAndLock.ModuleDescription" xml:space="preserve"> <value>Crop And Lock allows you to crop a current application into a smaller window or just create a thumbnail. Focus the target window and press the shortcut to start cropping.</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="CropAndLock.ModuleTitle" xml:space="preserve"> <value>Crop And Lock </value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="CropAndLock_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="CropAndLock_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="Shell_CropAndLock.Content" xml:space="preserve"> <value>Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="LearnMore_CropAndLock.Text" xml:space="preserve"> <value>Learn more about Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="CropAndLock_ReparentActivation_Shortcut.Header" xml:space="preserve"> <value>Reparent shortcut</value> </data> <data name="CropAndLock_ReparentActivation_Shortcut.Description" xml:space="preserve"> <value>Shortcut to crop an application's window into a cropped window. This is experimental and can cause issues with some applications, since the cropped window will contain the original application window.</value> </data> <data name="CropAndLock_ThumbnailActivation_Shortcut.Header" xml:space="preserve"> <value>Thumbnail shortcut</value> </data> <data name="CropAndLock_ThumbnailActivation_Shortcut.Description" xml:space="preserve"> <value>Shortcut to crop and create a thumbnail of another window. The application isn't controllable through the thumbnail but it'll have less compatibility issues. </value> </data> <data name="CropAndLock.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="Oobe_CropAndLock.Title" xml:space="preserve"> <value>Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="Oobe_CropAndLock.Description" xml:space="preserve"> <value>Crop And Lock allows you to crop a current application into a smaller window or just create a thumbnail. Focus the target window and press the shortcut to start cropping.</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="Oobe_CropAndLock_HowToUse_Thumbnail.Text" xml:space="preserve"> <value>to crop and create a thumbnail of another window. The application isn't controllable through the thumbnail but it'll have less compatibility issues.</value> </data> <data name="Oobe_CropAndLock_HowToUse_Reparent.Text" xml:space="preserve"> <value>to crop an application's window into a cropped window. This is experimental and can cause issues with some applications, since the cropped window will contain the original application window.</value> </data> <data name="AlwaysOnTop.ModuleDescription" xml:space="preserve"> <value>Always On Top is a quick and easy way to pin windows on top.</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop.ModuleTitle" xml:space="preserve"> <value>Always On Top </value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="Peek_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="AlwaysOnTop_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_ExcludedApps.Description" xml:space="preserve"> <value>Excludes an application from pinning on top</value> </data> <data name="AlwaysOnTop_ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="AlwaysOnTop_ExcludedApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> </data> <data name="AlwaysOnTop_FrameColor.Header" xml:space="preserve"> <value>Color</value> </data> <data name="AlwaysOnTop_FrameEnabled.Header" xml:space="preserve"> <value>Show a border around the pinned window</value> </data> <data name="AlwaysOnTop_FrameThickness.Header" xml:space="preserve"> <value>Thickness (px)</value> <comment>px = pixels</comment> </data> <data name="AlwaysOnTop_Behavior_GroupSettings.Header" xml:space="preserve"> <value>Appearance &amp; behavior</value> </data> <data name="Shell_AlwaysOnTop.Content" xml:space="preserve"> <value>Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_GameMode.Content" xml:space="preserve"> <value>Do not activate when Game Mode is on</value> <comment>Game Mode is a Windows feature</comment> </data> <data name="AlwaysOnTop_SoundTitle.Header" xml:space="preserve"> <value>Sound</value> </data> <data name="AlwaysOnTop_Sound.Content" xml:space="preserve"> <value>Play a sound when pinning a window</value> </data> <data name="AlwaysOnTop_Behavior.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="LearnMore_AlwaysOnTop.Text" xml:space="preserve"> <value>Learn more about Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="AlwaysOnTop_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to pin or unpin an app window</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="Oobe_AlwaysOnTop.Title" xml:space="preserve"> <value>Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="Oobe_AlwaysOnTop.Description" xml:space="preserve"> <value>Always On Top improves your multitasking workflow by pinning an application window so it's always in front - even when focus changes to another window after that.</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="Oobe_AlwaysOnTop_HowToUse.Text" xml:space="preserve"> <value>to pin or unpin the selected window so it's always on top of all other windows.</value> </data> <data name="Oobe_AlwaysOnTop_TipsAndTricks.Text" xml:space="preserve"> <value>You can tweak the visual outline of the pinned windows in PowerToys settings.</value> </data> <data name="AlwaysOnTop_FrameColor_Mode.Header" xml:space="preserve"> <value>Color mode</value> </data> <data name="AlwaysOnTop_Radio_Custom_Color.Content" xml:space="preserve"> <value>Custom color</value> </data> <data name="AlwaysOnTop_Radio_Windows_Default.Content" xml:space="preserve"> <value>Windows default</value> </data> <data name="FileExplorerPreview.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Monaco_Wrap_Text.Content" xml:space="preserve"> <value>Wrap text</value> <comment>Feature on or off</comment> </data> <data name="FancyZones_AllowPopupWindowSnap.Description" xml:space="preserve"> <value>This setting can affect all popup windows including notifications</value> </data> <data name="FancyZones_AllowPopupWindowSnap.Header" xml:space="preserve"> <value>Allow popup windows snapping</value> </data> <data name="FancyZones_AllowChildWindowSnap.Content" xml:space="preserve"> <value>Allow child windows snapping</value> </data> <data name="Shell_WhatsNew.Content" xml:space="preserve"> <value>What's new</value> </data> <data name="Shell_Peek.Content" xml:space="preserve"> <value>Peek</value> <comment>Product name: Navigation view item name for Peek</comment> </data> <data name="Peek.ModuleTitle" xml:space="preserve"> <value>Peek</value> </data> <data name="Peek.ModuleDescription" xml:space="preserve"> <value>Peek is a quick and easy way to preview files. Select a file in File Explorer and press the shortcut to open the file preview.</value> </data> <data name="Peek_EnablePeek.Header" xml:space="preserve"> <value>Enable Peek</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="Peek_BehaviorHeader.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="Peek_AlwaysRunNotElevated.Header" xml:space="preserve"> <value>Always run not elevated, even when PowerToys is elevated</value> </data> <data name="Peek_AlwaysRunNotElevated.Description" xml:space="preserve"> <value>Tries to run Peek without elevated permissions, to fix access to network shares. You need to disable and re-enable Peek for changes to this value to take effect.</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="Peek_CloseAfterLosingFocus.Header" xml:space="preserve"> <value>Automatically close the Peek window after it loses focus</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="FancyZones_DisableRoundCornersOnWindowSnap.Content" xml:space="preserve"> <value>Disable round corners when window is snapped</value> </data> <data name="PowerLauncher_SearchQueryTuningEnabled.Description" xml:space="preserve"> <value>Fine tune results ordering</value> </data> <data name="PowerLauncher_SearchQueryTuningEnabled.Header" xml:space="preserve"> <value>Results order tuning</value> </data> <data name="PowerLauncher_SearchClickedItemWeight.Description" xml:space="preserve"> <value>Use a higher number to get selected results to rise faster. The default is 5, 0 to disable.</value> </data> <data name="PowerLauncher_SearchClickedItemWeight.Header" xml:space="preserve"> <value>Selected item weight</value> </data> <data name="PowerLauncher_WaitForSlowResults.Description" xml:space="preserve"> <value>Selecting this can help preselect the top, more relevant result, but at the risk of jumpiness</value> </data> <data name="PowerLauncher_WaitForSlowResults.Header" xml:space="preserve"> <value>Wait on slower plugin results before selecting top item in results</value> </data> <data name="PowerLauncher_PluginWeightBoost.Description" xml:space="preserve"> <value>Use a higher number to have this plugin's result show higher in the global results. Default is 0.</value> </data> <data name="PowerLauncher_PluginWeightBoost.Header" xml:space="preserve"> <value>Global sort order score modifier</value> </data> <data name="AlwaysOnTop_RoundCorners.Content" xml:space="preserve"> <value>Enable round corners</value> </data> <data name="LearnMore_QuickAccent.Text" xml:space="preserve"> <value>Learn more about Quick Accent</value> <comment>Quick Accent is a product name, do not loc</comment> </data> <data name="QuickAccent_EnableQuickAccent.Header" xml:space="preserve"> <value>Enable Quick Accent</value> </data> <data name="Shell_QuickAccent.Content" xml:space="preserve"> <value>Quick Accent</value> </data> <data name="QuickAccent.ModuleDescription" xml:space="preserve"> <value>Quick Accent is an alternative way to type accented characters, useful for when a keyboard doesn't support that specific accent. Activate by holding the key for the character you want to add an accent to, then press the activation key (space, left or right arrow keys) and an overlay to select accented characters will appear!</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent.ModuleTitle" xml:space="preserve"> <value>Quick Accent</value> </data> <data name="QuickAccent.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> </data> <data name="AlwaysOnTop_ShortDescription" xml:space="preserve"> <value>Pin a window</value> </data> <data name="Awake_ShortDescription" xml:space="preserve"> <value>Keep your PC awake</value> </data> <data name="ColorPicker_ShortDescription" xml:space="preserve"> <value>Pick a color</value> </data> <data name="CropAndLock_Thumbnail" xml:space="preserve"> <value>Thumbnail</value> </data> <data name="CropAndLock_Reparent" xml:space="preserve"> <value>Reparent</value> </data> <data name="FancyZones_OpenEditor" xml:space="preserve"> <value>Open editor</value> </data> <data name="FileLocksmith_ShortDescription" xml:space="preserve"> <value>Right-click on files or directories to show running processes</value> </data> <data name="FindMyMouse_ShortDescription" xml:space="preserve"> <value>Find the mouse</value> </data> <data name="ImageResizer_ShortDescription" xml:space="preserve"> <value>Select Image Resizer in the right-click context menu</value> </data> <data name="MouseHighlighter_ShortDescription" xml:space="preserve"> <value>Highlight clicks</value> </data> <data name="MouseJump_ShortDescription" xml:space="preserve"> <value>Quickly move the mouse pointer</value> </data> <data name="MouseCrosshairs_ShortDescription" xml:space="preserve"> <value>Draw crosshairs centered on the mouse pointer</value> </data> <data name="MouseWithoutBorders_ShortDescription" xml:space="preserve"> <value>Move your cursor across multiple devices</value> </data> <data name="PastePlain_ShortDescription" xml:space="preserve"> <value>Paste clipboard content without formatting</value> </data> <data name="Peek_ShortDescription" xml:space="preserve"> <value>Quick and easy previewer</value> </data> <data name="PowerRename_ShortDescription" xml:space="preserve"> <value>Select Power Rename in right-click context menu</value> </data> <data name="Run_ShortDescription" xml:space="preserve"> <value>A quick launcher</value> </data> <data name="PowerAccent_ShortDescription" xml:space="preserve"> <value>An alternative way to type accented characters</value> </data> <data name="RegistryPreview_ShortDescription" xml:space="preserve"> <value>Visualize and edit Windows Registry files</value> </data> <data name="ScreenRuler_ShortDescription" xml:space="preserve"> <value>Measure pixels on your screen</value> </data> <data name="ShortcutGuide_ShortDescription" xml:space="preserve"> <value>Show a help overlay with Windows shortcuts</value> </data> <data name="PowerOcr_ShortDescription" xml:space="preserve"> <value>A convenient way to copy text from anywhere on screen</value> </data> <data name="Dashboard_Activation" xml:space="preserve"> <value>Activation</value> </data> <data name="DashboardKBMShowMappingsButton.Content" xml:space="preserve"> <value>Show remappings</value> </data> <data name="Oobe_QuickAccent.Description" xml:space="preserve"> <value>Quick Accent is an easy way to write letters with accents, like on a smartphone.</value> </data> <data name="Oobe_QuickAccent.Title" xml:space="preserve"> <value>Quick Accent</value> </data> <data name="Oobe_QuickAccent_HowToUse.Text" xml:space="preserve"> <value>Open **PowerToys Settings** and enable Quick Accent. While holding the key for the character you want to add an accent to, press the Activation Key and an overlay to select the accented character will appear.</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="QuickAccent_Activation_Shortcut.Header" xml:space="preserve"> <value>Activation key</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent_Activation_Shortcut.Description" xml:space="preserve"> <value>Press this key after holding down the target letter</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent_Activation_Key_Arrows.Content" xml:space="preserve"> <value>Left/Right Arrow</value> <comment>Left/Right arrow keyboard keys</comment> </data> <data name="QuickAccent_Activation_Key_Space.Content" xml:space="preserve"> <value>Space</value> <comment>Space is the space keyboard key</comment> </data> <data name="QuickAccent_Activation_Key_Either.Content" xml:space="preserve"> <value>Left, Right or Space</value> <comment>All are keys on a keyboard</comment> </data> <data name="QuickAccent_Toolbar.Header" xml:space="preserve"> <value>Toolbar</value> </data> <data name="QuickAccent_ToolbarPosition.Header" xml:space="preserve"> <value>Toolbar position</value> </data> <data name="QuickAccent_ToolbarPosition_TopCenter.Content" xml:space="preserve"> <value>Top center</value> </data> <data name="QuickAccent_ToolbarPosition_TopLeftCorner.Content" xml:space="preserve"> <value>Top left corner</value> </data> <data name="QuickAccent_ToolbarPosition_TopRightCorner.Content" xml:space="preserve"> <value>Top right corner</value> </data> <data name="QuickAccent_ToolbarPosition_BottomLeftCorner.Content" xml:space="preserve"> <value>Bottom left corner</value> </data> <data name="QuickAccent_ToolbarPosition_BottomCenter.Content" xml:space="preserve"> <value>Bottom center</value> </data> <data name="QuickAccent_ToolbarPosition_BottomRightCorner.Content" xml:space="preserve"> <value>Bottom right corner</value> </data> <data name="QuickAccent_ToolbarPosition_Center.Content" xml:space="preserve"> <value>Center</value> </data> <data name="QuickAccent_ToolbarPosition_Left.Content" xml:space="preserve"> <value>Left</value> </data> <data name="QuickAccent_ToolbarPosition_Right.Content" xml:space="preserve"> <value>Right</value> </data> <data name="QuickAccent_Behavior.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="QuickAccent_InputTimeMs.Header" xml:space="preserve"> <value>Input delay (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="QuickAccent_InputTimeMs.Description" xml:space="preserve"> <value>Hold the key down for this much time to make the accent menu appear (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="QuickAccent_ExcludedApps.Description" xml:space="preserve"> <value>Prevents module activation if a foreground application is excluded. Add one application name per line.</value> </data> <data name="QuickAccent_ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="QuickAccent_ExcludedApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: Teams.exe</value> </data> <data name="LearnMore_TextExtractor.Text" xml:space="preserve"> <value>Learn more about Text Extractor</value> </data> <data name="TextExtractor_Cancel" xml:space="preserve"> <value>cancel</value> </data> <data name="General_SettingsBackupAndRestore_NothingToBackup" xml:space="preserve"> <value>A new backup was not created because no settings have been changed since last backup.</value> </data> <data name="General_SettingsBackupAndRestore_NoBackupFound" xml:space="preserve"> <value>No backup found</value> </data> <data name="General_SettingsBackupAndRestore_FailedToParseTime" xml:space="preserve"> <value>Failed to parse time</value> </data> <data name="General_SettingsBackupAndRestore_UnknownBackupTime" xml:space="preserve"> <value>Unknown</value> </data> <data name="General_SettingsBackupAndRestore_UnknownBackupSource" xml:space="preserve"> <value>Unknown</value> </data> <data name="General_SettingsBackupAndRestore_ThisMachine" xml:space="preserve"> <value>This computer</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsMatch" xml:space="preserve"> <value>Current settings match</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsStatusAt" xml:space="preserve"> <value>at</value> <comment>E.g., Food was served 'at' noon.</comment> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsDiffer" xml:space="preserve"> <value>Current settings differ</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsNoChecked" xml:space="preserve"> <value>Checking...</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsUnknown" xml:space="preserve"> <value>Unknown</value> </data> <data name="General_SettingsBackupAndRestore_NeverRestored" xml:space="preserve"> <value>Never restored</value> </data> <data name="General_SettingsBackupAndRestore_NothingToRestore" xml:space="preserve"> <value>Nothing to restore.</value> </data> <data name="General_SettingsBackupAndRestore_NoSettingsFilesFound" xml:space="preserve"> <value>No settings files found.</value> </data> <data name="General_SettingsBackupAndRestore_BackupError" xml:space="preserve"> <value>There was an error. Try another backup location.</value> </data> <data name="General_SettingsBackupAndRestore_SettingsFormatError" xml:space="preserve"> <value>There was an error in the settings format. Please check the settings file:</value> </data> <data name="General_SettingsBackupAndRestore_BackupComplete" xml:space="preserve"> <value>Backup completed.</value> </data> <data name="General_SettingsBackupAndRestore_NoBackupSyncPath" xml:space="preserve"> <value>No backup location selected.</value> </data> <data name="General_SettingsBackupAndRestore_NoBackupsFound" xml:space="preserve"> <value>No backups found to restore.</value> </data> <data name="General_SettingsBackupAndRestore_InvalidBackupLocation" xml:space="preserve"> <value>Invalid backup location.</value> </data> <data name="TextExtractor.ModuleDescription" xml:space="preserve"> <value>Text Extractor is a convenient way to copy text from anywhere on screen</value> </data> <data name="TextExtractor.ModuleTitle" xml:space="preserve"> <value>Text Extractor</value> </data> <data name="TextExtractor_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Text Extractor</value> </data> <data name="TextExtractor_SupportedLanguages.Title" xml:space="preserve"> <value>Text Extractor can only recognize languages that have the OCR pack installed.</value> </data> <data name="TextExtractor_SupportedLanguages_Link.Content" xml:space="preserve"> <value>Learn more about supported languages</value> </data> <data name="Shell_TextExtractor.Content" xml:space="preserve"> <value>Text Extractor</value> </data> <data name="Launch_TextExtractor.Content" xml:space="preserve"> <value>Launch Text Extractor</value> </data> <data name="Oobe_TextExtractor.Title" xml:space="preserve"> <value>Text Extractor</value> </data> <data name="Oobe_TextExtractor_HowToUse.Text" xml:space="preserve"> <value>to open Text Extractor and then selecting a region to copy the text from.</value> </data> <data name="Oobe_TextExtractor_TipsAndTricks.Text" xml:space="preserve"> <value>Hold the shift key to move the selection region around.</value> </data> <data name="TextExtractor.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> </data> <data name="Oobe_TextExtractor.Description" xml:space="preserve"> <value>Text Extractor works like Snipping Tool, but copies the text out of the selected region using OCR and puts it on the clipboard.</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Monaco_Try_Format.Description" xml:space="preserve"> <value>Applies to json and xml. Files remain unchanged.</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Monaco_Try_Format.Header" xml:space="preserve"> <value>Try to format the source for preview</value> </data> <data name="Run_ConflictingKeywordInfo.Title" xml:space="preserve"> <value>Some characters and phrases may conflict with global queries of other plugins if you use them as activation command.</value> </data> <data name="Run_ConflictingKeywordInfo_Link.Content" xml:space="preserve"> <value>Learn more about conflicting activation commands</value> </data> <data name="MeasureTool_ContinuousCapture_Information.Title" xml:space="preserve"> <value>The continuous capture mode will consume more resources when in use. Also, measurements will be excluded from screenshots and screen capture.</value> <comment>pointer as in mouse pointer. Resources refer to things like CPU, GPU, RAM</comment> </data> <data name="QuickAccent_Description_Indicator.Header" xml:space="preserve"> <value>Show the Unicode code and name of the currently selected character</value> </data> <data name="QuickAccent_SortByUsageFrequency_Indicator.Header" xml:space="preserve"> <value>Sort characters by usage frequency</value> </data> <data name="QuickAccent_SortByUsageFrequency_Indicator.Description" xml:space="preserve"> <value>Track characters usage frequency and sort them accordingly</value> </data> <data name="QuickAccent_StartSelectionFromTheLeft_Indicator.Header" xml:space="preserve"> <value>Start selection from the left</value> </data> <data name="QuickAccent_StartSelectionFromTheLeft_Indicator.Description" xml:space="preserve"> <value>Start selection from the leftmost character for all activation keys, including left and right arrows</value> </data> <data name="QuickAccent_DisableFullscreen.Header" xml:space="preserve"> <value>Disable when Game Mode is On</value> </data> <data name="QuickAccent_Language.Header" xml:space="preserve"> <value>Characters</value> </data> <data name="QuickAccent_SelectedLanguage.Header" xml:space="preserve"> <value>Choose a character set</value> </data> <data name="QuickAccent_SelectedLanguage.Description" xml:space="preserve"> <value>Show only accented characters common to the selected set</value> </data> <data name="QuickAccent_SelectedLanguage_All.Content" xml:space="preserve"> <value>All available</value> </data> <data name="QuickAccent_SelectedLanguage_Catalan.Content" xml:space="preserve"> <value>Catalan</value> </data> <data name="QuickAccent_SelectedLanguage_Currency.Content" xml:space="preserve"> <value>Currency</value> </data> <data name="QuickAccent_SelectedLanguage_Croatian.Content" xml:space="preserve"> <value>Croatian</value> </data> <data name="QuickAccent_SelectedLanguage_Czech.Content" xml:space="preserve"> <value>Czech</value> </data> <data name="QuickAccent_SelectedLanguage_Gaeilge.Content" xml:space="preserve"> <value>Gaeilge</value> <comment>Gaelic language spoken in Ireland</comment> </data> <data name="QuickAccent_SelectedLanguage_Gaidhlig.Content" xml:space="preserve"> <value>Gàidhlig</value> <comment>Scottish Gaelic</comment> </data> <data name="QuickAccent_SelectedLanguage_German.Content" xml:space="preserve"> <value>German</value> </data> <data name="QuickAccent_SelectedLanguage_Hebrew.Content" xml:space="preserve"> <value>Hebrew</value> </data> <data name="QuickAccent_SelectedLanguage_French.Content" xml:space="preserve"> <value>French</value> </data> <data name="QuickAccent_SelectedLanguage_Estonian.Content" xml:space="preserve"> <value>Estonian</value> </data> <data name="QuickAccent_SelectedLanguage_Lithuanian.Content" xml:space="preserve"> <value>Lithuanian</value> </data> <data name="QuickAccent_SelectedLanguage_Macedonian.Content" xml:space="preserve"> <value>Macedonian</value> </data> <data name="QuickAccent_SelectedLanguage_Maori.Content" xml:space="preserve"> <value>Maori</value> </data> <data name="QuickAccent_SelectedLanguage_Dutch.Content" xml:space="preserve"> <value>Dutch</value> </data> <data name="QuickAccent_SelectedLanguage_Norwegian.Content" xml:space="preserve"> <value>Norwegian</value> </data> <data name="QuickAccent_SelectedLanguage_Pinyin.Content" xml:space="preserve"> <value>Pinyin</value> </data> <data name="QuickAccent_SelectedLanguage_Polish.Content" xml:space="preserve"> <value>Polish</value> </data> <data name="QuickAccent_SelectedLanguage_Portuguese.Content" xml:space="preserve"> <value>Portuguese</value> </data> <data name="QuickAccent_SelectedLanguage_Slovakian.Content" xml:space="preserve"> <value>Slovakian</value> </data> <data name="QuickAccent_SelectedLanguage_Spanish.Content" xml:space="preserve"> <value>Spanish</value> </data> <data name="QuickAccent_SelectedLanguage_Swedish.Content" xml:space="preserve"> <value>Swedish</value> </data> <data name="QuickAccent_SelectedLanguage_Turkish.Content" xml:space="preserve"> <value>Turkish</value> </data> <data name="QuickAccent_SelectedLanguage_Icelandic.Content" xml:space="preserve"> <value>Icelandic</value> </data> <data name="QuickAccent_SelectedLanguage_Romanian.Content" xml:space="preserve"> <value>Romanian</value> </data> <data name="QuickAccent_SelectedLanguage_Serbian.Content" xml:space="preserve"> <value>Serbian</value> </data> <data name="QuickAccent_SelectedLanguage_Hungarian.Content" xml:space="preserve"> <value>Hungarian</value> </data> <data name="QuickAccent_SelectedLanguage_Italian.Content" xml:space="preserve"> <value>Italian</value> </data> <data name="QuickAccent_SelectedLanguage_Kurdish.Content" xml:space="preserve"> <value>Kurdish</value> </data> <data name="QuickAccent_SelectedLanguage_Welsh.Content" xml:space="preserve"> <value>Welsh</value> </data> <data name="Hosts.ModuleDescription" xml:space="preserve"> <value>Quick and simple utility for managing hosts file.</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Hosts.ModuleTitle" xml:space="preserve"> <value>Hosts File Editor</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Shell_Hosts.Content" xml:space="preserve"> <value>Hosts File Editor</value> <comment>Products name: Navigation view item name for Hosts File Editor</comment> </data> <data name="Hosts_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Hosts_Toggle_ShowStartupWarning.Header" xml:space="preserve"> <value>Show a warning at startup</value> </data> <data name="Hosts_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="Hosts_LaunchButtonControl.Description" xml:space="preserve"> <value>Manage your hosts file</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Hosts_LaunchButtonControl.Header" xml:space="preserve"> <value>Launch Host File Editor</value> <comment>"Host File Editor" is a product name</comment> </data> <data name="Hosts_LaunchButton_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Launch Host File Editor</value> <comment>"Host File Editor" is a product name</comment> </data> <data name="Hosts_AdditionalLinesPosition.Header" xml:space="preserve"> <value>Position of additional content</value> </data> <data name="Hosts_AdditionalLinesPosition_Bottom.Content" xml:space="preserve"> <value>Bottom</value> </data> <data name="Hosts_AdditionalLinesPosition_Top.Content" xml:space="preserve"> <value>Top</value> </data> <data name="Hosts_Behavior_GroupSettings.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="Launch_Hosts.Content" xml:space="preserve"> <value>Launch Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="LearnMore_Hosts.Text" xml:space="preserve"> <value>Learn more about Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Oobe_Hosts.Description" xml:space="preserve"> <value>Hosts File Editor is a quick and simple utility for managing hosts file.</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Oobe_Hosts.Title" xml:space="preserve"> <value>Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Hosts_Toggle_LaunchAdministrator.Description" xml:space="preserve"> <value>Needs to be launched as administrator in order to make changes to the hosts file</value> </data> <data name="Hosts_Toggle_LaunchAdministrator.Header" xml:space="preserve"> <value>Launch as administrator</value> </data> <data name="ShortcutGuide_PressTimeForTaskbarIconShortcuts.Header" xml:space="preserve"> <value>Press duration before showing taskbar icon shortcuts (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="FileLocksmith.ModuleDescription" xml:space="preserve"> <value>A Windows shell extension to find out which processes are using the selected files and directories.</value> </data> <data name="FileLocksmith.ModuleTitle" xml:space="preserve"> <value>File Locksmith</value> </data> <data name="Shell_FileLocksmith.Content" xml:space="preserve"> <value>File Locksmith</value> <comment>Product name: Navigation view item name for FileLocksmith</comment> </data> <data name="FileLocksmith_Enable_FileLocksmith.Header" xml:space="preserve"> <value>Enable File Locksmith</value> <comment>File Locksmith is the name of the utility</comment> </data> <data name="FileLocksmith_Toggle_StandardContextMenu.Content" xml:space="preserve"> <value>Default and extended context menu</value> </data> <data name="FileLocksmith_Toggle_ExtendedContextMenu.Content" xml:space="preserve"> <value>Extended context menu only</value> </data> <data name="FileLocksmith_Toggle_ContextMenu.Header" xml:space="preserve"> <value>Show File Locksmith in</value> </data> <data name="FileLocksmith_ShellIntegration.Header" xml:space="preserve"> <value>Shell integration</value> <comment>This refers to directly integrating in with Windows</comment> </data> <data name="GPO_IsSettingForced.Title" xml:space="preserve"> <value>This setting is enforced by your System Administrator.</value> </data> <data name="Hosts_AdditionalLinesPosition.Description" xml:space="preserve"> <value>Additional content includes the file header and lines that can't parse</value> </data> <data name="TextExtractor_Languages.Header" xml:space="preserve"> <value>Preferred language</value> </data> <data name="Alternate_OOBE_AlwaysOnTop_Description.Text" xml:space="preserve"> <value>Pin a window so that:</value> </data> <data name="Alternate_OOBE_AlwaysOnTop_Title.Text" xml:space="preserve"> <value>Always On Top</value> </data> <data name="Alternate_OOBE_ColorPicker_Description.Text" xml:space="preserve"> <value>To pick a color:</value> </data> <data name="Alternate_OOBE_ColorPicker_Title.Text" xml:space="preserve"> <value>Color Picker</value> </data> <data name="Alternate_OOBE_Description.Text" xml:space="preserve"> <value>Here are a few shortcuts to get you started:</value> </data> <data name="Alternate_OOBE_FancyZones_Description.Text" xml:space="preserve"> <value>To open the FancyZones editor, press:</value> </data> <data name="Alternate_OOBE_FancyZones_Title.Text" xml:space="preserve"> <value>FancyZones</value> </data> <data name="Alternate_OOBE_Run_Description.Text" xml:space="preserve"> <value>Get access to your files and more:</value> </data> <data name="Alternate_OOBE_Run_Title.Text" xml:space="preserve"> <value>PowerToys Run</value> </data> <data name="General_Experimentation.Header" xml:space="preserve"> <value>Experimentation</value> </data> <data name="GeneralPage_EnableExperimentation.Description" xml:space="preserve"> <value>Note: Only Windows Insider builds may be selected for experimentation</value> </data> <data name="GeneralPage_EnableExperimentation.Header" xml:space="preserve"> <value>Allow experimentation with new features</value> </data> <data name="GPO_ExperimentationIsDisallowed.Title" xml:space="preserve"> <value>The system administrator has disabled experimentation.</value> </data> <data name="Shell_PastePlain.Content" xml:space="preserve"> <value>Paste As Plain Text</value> <comment>Product name: Navigation view item name for Paste as Plain Text</comment> </data> <data name="PastePlain.ModuleDescription" xml:space="preserve"> <value>Paste As Plain Text is a quick shortcut for pasting the text contents of your clipboard without formatting. Note: the formatted text in the clipboard is replaced with the unformatted text.</value> </data> <data name="PastePlain.ModuleTitle" xml:space="preserve"> <value>Paste As Plain Text</value> </data> <data name="PastePlain_Cancel" xml:space="preserve"> <value>cancel</value> </data> <data name="PastePlain_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Paste As Plain Text</value> </data> <data name="Oobe_PastePlain.Description" xml:space="preserve"> <value>Paste As Plain Text strips rich formatting from your clipboard data and pastes it as non-formatted text.</value> </data> <data name="Oobe_PastePlain.Title" xml:space="preserve"> <value>Paste As Plain Text</value> </data> <data name="Oobe_PastePlain_HowToUse.Text" xml:space="preserve"> <value>to paste your clipboard data as plain text. Note: this will replace the formatted text in your clipboard with the plain text.</value> </data> <data name="AllAppsTxt.Text" xml:space="preserve"> <value>All apps</value> </data> <data name="BackBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Back</value> </data> <data name="BackLabel.Text" xml:space="preserve"> <value>Back</value> </data> <data name="BugReportBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Bug report</value> </data> <data name="BugReportTooltip.Text" xml:space="preserve"> <value>Bug report</value> </data> <data name="DocsBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Documentation</value> </data> <data name="DocsTooltip.Text" xml:space="preserve"> <value>Documentation</value> </data> <data name="FZEditorString" xml:space="preserve"> <value>FancyZones Editor</value> <comment>Do not localize this string</comment> </data> <data name="MoreBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>More</value> </data> <data name="MoreLabel.Text" xml:space="preserve"> <value>More</value> </data> <data name="SettingsBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Settings</value> </data> <data name="SettingsTooltip.Text" xml:space="preserve"> <value>Settings</value> </data> <data name="ShortcutsTxt.Text" xml:space="preserve"> <value>Shortcuts</value> </data> <data name="UpdateAvailable.Title" xml:space="preserve"> <value>Update available</value> </data> <data name="FileExplorerPreview_Toggle_Monaco_Max_File_Size.Header" xml:space="preserve"> <value>Maximum file size to preview</value> <comment>Size refers to the disk space used by a file</comment> </data> <data name="FileExplorerPreview_Toggle_Monaco_Max_File_Size.Description" xml:space="preserve"> <value>The maximum size, in kilobytes, for files to be displayed. This is a safety mechanism to prevent loading large files into RAM.</value> <comment>"RAM" refers to random access memory; "size" refers to disk space; "bytes" refer to the measurement unit</comment> </data> <data name="RegistryPreview.ModuleDescription" xml:space="preserve"> <value>A quick little utility to visualize and edit complex Windows Registry files.</value> </data> <data name="RegistryPreview.ModuleTitle" xml:space="preserve"> <value>Registry Preview</value> </data> <data name="Shell_RegistryPreview.Content" xml:space="preserve"> <value>Registry Preview</value> <comment>Product name: Navigation view item name for Registry Preview</comment> </data> <data name="RegistryPreview_Enable_RegistryPreview.Header" xml:space="preserve"> <value>Enable Registry Preview</value> <comment>Registry Preview is the name of the utility</comment> </data> <data name="Oobe_RegistryPreview_HowToUse.Text" xml:space="preserve"> <value>In File Explorer, right-click a .REG file and select **Preview** from the context menu.</value> </data> <data name="Oobe_RegistryPreview_TipsAndTricks.Text" xml:space="preserve"> <value>You can preview or edit Registry files in File Explorer or by opening the app from the PowerToys launcher.</value> </data> <data name="Oobe_RegistryPreview.Description" xml:space="preserve"> <value>Registry Preview is a quick little utility to visualize and edit complex Windows Registry files.</value> </data> <data name="Oobe_RegistryPreview.Title" xml:space="preserve"> <value>Registry Preview</value> <comment>Do not localize this string</comment> </data> <data name="LearnMore_RegistryPreview.Text" xml:space="preserve"> <value>Learn more about Registry Preview</value> <comment>Registry Preview is a product name, do not loc</comment> </data> <data name="Launch_RegistryPreview.Content" xml:space="preserve"> <value>Launch Registry Preview</value> <comment>"Registry Preview" is the name of the utility</comment> </data> <data name="MouseUtils_MouseJump.Description" xml:space="preserve"> <value>Quickly move the mouse pointer long distances.</value> <comment>"Mouse Jump" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_MouseJump.Header" xml:space="preserve"> <value>Mouse Jump</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_MouseJump_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to turn on or off this mode</value> </data> <data name="MouseUtils_MouseJump_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MouseUtils_Enable_MouseJump.Header" xml:space="preserve"> <value>Enable Mouse Jump</value> <comment>"Mouse Jump" is the name of the utility.</comment> </data> <data name="GPO_AutoDownloadUpdatesIsDisabled.Title" xml:space="preserve"> <value>The system administrator has disabled the automatic download of updates.</value> </data> <data name="Hosts_Toggle_LoopbackDuplicates.Description" xml:space="preserve"> <value>127.0.0.1, ::1, ...</value> <comment>"127.0.0.1 and ::1" are well known loopback addresses, do not loc</comment> </data> <data name="Hosts_Toggle_LoopbackDuplicates.Header" xml:space="preserve"> <value>Consider loopback addresses as duplicates</value> </data> <data name="RegistryPreview_Launch_GroupSettings.Header" xml:space="preserve"> <value>Launch</value> </data> <data name="RegistryPreview_LaunchButton_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Launch Registry Preview</value> </data> <data name="RegistryPreview_LaunchButtonControl.Header" xml:space="preserve"> <value>Launch Registry Preview</value> </data> <data name="RegistryPreview_DefaultRegApp.Header" xml:space="preserve"> <value>Default app</value> </data> <data name="RegistryPreview_DefaultRegApp.Description" xml:space="preserve"> <value>Make Registry Preview default app for opening .reg files</value> <comment>Registry Preview is app name. Do not localize.</comment> </data> <data name="PastePlain_ShortcutWarning.Title" xml:space="preserve"> <value>Using this shortcut may prevent non-text paste actions (e.g. images, files) or built-in paste plain text actions in other applications from functioning.</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize.Header" xml:space="preserve"> <value>Thumbnail Size</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Description_Prefix.Text" xml:space="preserve"> <value>Constrain thumbnail image size to a maximum of</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Description_Suffix.Text" xml:space="preserve"> <value>pixels</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Edit_Height.Header" xml:space="preserve"> <value>Maximum height (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Edit_Width.Header" xml:space="preserve"> <value>Maximum width (px)</value> <comment>px = pixels</comment> </data> <data name="Oobe_Peek.Description" xml:space="preserve"> <value>A lightning fast file preview feature for Windows.</value> </data> <data name="Oobe_Peek.Title" xml:space="preserve"> <value>Peek</value> </data> <data name="Oobe_Peek_HowToUse.Text" xml:space="preserve"> <value>to preview the file that's currently selected in File Explorer.</value> </data> <data name="MWB_PCNameLabel.PlaceholderText" xml:space="preserve"> <value>Device name</value> </data> <data name="MWB_SecurityKeyLabel.PlaceholderText" xml:space="preserve"> <value>Security key</value> </data> <data name="Hosts_Encoding.Description" xml:space="preserve"> <value>Choose the encoding of the hosts file</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Hosts_Encoding.Header" xml:space="preserve"> <value>Encoding</value> </data> <data name="Hosts_Encoding_Utf8.Content" xml:space="preserve"> <value>UTF-8</value> </data> <data name="Hosts_Encoding_Utf8Bom.Content" xml:space="preserve"> <value>UTF-8 with BOM</value> </data> <data name="MouseUtils_MouseHighlighter_AlwaysColor.Header" xml:space="preserve"> <value>Always highlight color</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsAutoHide.Content" xml:space="preserve"> <value>Automatically hide crosshairs when the mouse pointer is hidden</value> </data> <data name="MouseUtils_AutoActivate.Content" xml:space="preserve"> <value>Automatically activate on utility startup</value> </data> <data name="Run_FindMorePlugins.Text" xml:space="preserve"> <value>Find more plugins</value> </data> <data name="Run_PluginUseFindMorePlugins.Content" xml:space="preserve"> <value>Find more plugins</value> </data> <data name="Run_SomePluginsAreGpoManaged.Title" xml:space="preserve"> <value>The system administrator is managing the enabled state of some plugins.</value> </data> <data name="AlwaysOnTop_FrameOpacity.Header" xml:space="preserve"> <value>Opacity (%)</value> </data> <data name="MouseUtils_FindMyMouse_ActivationCustomizedShortcut.Content" xml:space="preserve"> <value>Custom shortcut</value> </data> <data name="MouseUtils_FindMyMouse_ActivationDoubleRightControlPress.Content" xml:space="preserve"> <value>Press Right Control twice</value> <comment>Right control is the physical key on the keyboard.</comment> </data> <data name="MouseUtils_FindMyMouse_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to turn on or off this mode</value> </data> <data name="MouseUtils_FindMyMouse_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="SettingsWindow_AdminTitle" xml:space="preserve"> <value>Administrator: PowerToys Settings</value> <comment>Title of the settings window when running as administrator</comment> </data> <data name="DashboardTitle.Text" xml:space="preserve"> <value>Dashboard</value> </data> <data name="Shell_Dashboard.Content" xml:space="preserve"> <value>Dashboard</value> </data> <data name="GPO_IsSettingForcedText.Text" xml:space="preserve"> <value>This setting is enforced by your System Administrator.</value> </data> <data name="DisabledModules.Text" xml:space="preserve"> <value>Disabled modules</value> </data> <data name="EnabledModules.Text" xml:space="preserve"> <value>Enabled modules</value> </data> </root>
donlaci
8c22f0c48540793452b70d913b2a6a719c881a33
1f936df3ebce73b726ed11c9fa38fd477b4b0fbd
```suggestion <value>Open</value> ```
Jay-o-Way
351
microsoft/PowerToys
29,023
[Settings] Adding a Dashboard Panel
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request Adding a new Dashboard panel to the settings app. It contains the active modules with a brief description, activation shortcut if present, launch button if reasonable and a quick link button to the module's settings page. The new dashboard panel contains a list of all the modules as well, where the user can toggle the modules' enabled/disabled state. ![Dashboard](https://github.com/microsoft/PowerToys/assets/9866362/a773ff5b-0321-4eb3-9c3d-b5b4df9a25f5) <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [X] **Closes:** #26816 - [ ] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected - [ ] **Tests:** Added/updated and all pass - [ ] **Localization:** All end user facing strings can be localized - [ ] **Dev docs:** Added/updated - [ ] **New binaries:** Added on the required places - [ ] [JSON for signing](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ESRPSigning_core.json) for new binaries - [ ] [WXS for installer](https://github.com/microsoft/PowerToys/blob/main/installer/PowerToysSetup/Product.wxs) for new binaries and localization folder - [ ] [YML for CI pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ci/templates/build-powertoys-steps.yml) for new test projects - [ ] [YML for signed pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/release.yml) - [ ] **Documentation updated:** If checked, please file a pull request on [our docs repo](https://github.com/MicrosoftDocs/windows-uwp/tree/docs/hub/powertoys) and link it here: #xxx <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed Tested locally
null
2023-10-04 18:35:54+00:00
2023-10-20 12:23:25+00:00
src/settings-ui/Settings.UI/Strings/en-us/Resources.resw
<?xml version="1.0" encoding="utf-8"?> <root> <!-- Microsoft ResX Schema Version 2.0 The primary goals of this format is to allow a simple XML format that is mostly human readable. The generation and parsing of the various data types are done through the TypeConverter classes associated with the data types. Example: ... ado.net/XML headers & schema ... <resheader name="resmimetype">text/microsoft-resx</resheader> <resheader name="version">2.0</resheader> <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader> <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader> <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data> <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data> <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64"> <value>[base64 mime encoded serialized .NET Framework object]</value> </data> <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value> <comment>This is a comment</comment> </data> There are any number of "resheader" rows that contain simple name/value pairs. Each data row contains a name, and value. The row also contains a type or mimetype. Type corresponds to a .NET class that support text/value conversion through the TypeConverter architecture. Classes that don't support this are serialized and stored with the mimetype set. The mimetype is used for serialized objects, and tells the ResXResourceReader how to depersist the object. This is currently not extensible. For a given mimetype the value must be set accordingly: Note - application/x-microsoft.net.object.binary.base64 is the format that the ResXResourceWriter will generate, however the reader can read any of the formats listed below. mimetype: application/x-microsoft.net.object.binary.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.soap.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Soap.SoapFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.bytearray.base64 value : The object must be serialized into a byte array : using a System.ComponentModel.TypeConverter : and then encoded with base64 encoding. --> <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> <xsd:import namespace="http://www.w3.org/XML/1998/namespace" /> <xsd:element name="root" msdata:IsDataSet="true"> <xsd:complexType> <xsd:choice maxOccurs="unbounded"> <xsd:element name="metadata"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" /> </xsd:sequence> <xsd:attribute name="name" use="required" type="xsd:string" /> <xsd:attribute name="type" type="xsd:string" /> <xsd:attribute name="mimetype" type="xsd:string" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="assembly"> <xsd:complexType> <xsd:attribute name="alias" type="xsd:string" /> <xsd:attribute name="name" type="xsd:string" /> </xsd:complexType> </xsd:element> <xsd:element name="data"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" /> <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="resheader"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" /> </xsd:complexType> </xsd:element> </xsd:choice> </xsd:complexType> </xsd:element> </xsd:schema> <resheader name="resmimetype"> <value>text/microsoft-resx</value> </resheader> <resheader name="version"> <value>2.0</value> </resheader> <resheader name="reader"> <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <resheader name="writer"> <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <data name="Attribution_Rooler.Text" xml:space="preserve"> <value>Inspired by Rooler</value> <comment>Rooler is a name of the tool.</comment> </data> <data name="Shell_VideoConference.Content" xml:space="preserve"> <value>Video Conference Mute</value> <comment>Navigation view item name for Video Conference</comment> </data> <data name="Shell_MeasureTool.Content" xml:space="preserve"> <value>Screen Ruler</value> <comment>Product name: Navigation view item name for Screen Ruler</comment> </data> <data name="MeasureTool.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="MeasureTool.ModuleDescription" xml:space="preserve"> <value>Screen Ruler is a quick and easy way to measure pixels on your screen.</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool.ModuleTitle" xml:space="preserve"> <value>Screen Ruler</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool_ActivationSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="MeasureTool_Settings.Header" xml:space="preserve"> <value>Behavior</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MeasureTool_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to bring up the command bar</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool_DefaultMeasureStyle.Header" xml:space="preserve"> <value>Default measure style</value> </data> <data name="MeasureTool_DefaultMeasureStyle.Description" xml:space="preserve"> <value>The utility will start having the selected style activated</value> </data> <data name="MeasureTool_DefaultMeasureStyle_None.Content" xml:space="preserve"> <value>None</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Bounds.Content" xml:space="preserve"> <value>Bounds</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Spacing.Content" xml:space="preserve"> <value>Spacing</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Horizontal_Spacing.Content" xml:space="preserve"> <value>Horizontal spacing</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Vertical_Spacing.Content" xml:space="preserve"> <value>Vertical spacing</value> </data> <data name="MeasureTool_UnitsOfMeasure.Header" xml:space="preserve"> <value>Units of measurement</value> </data> <data name="MeasureTool_UnitsOfMeasure_Pixels.Content" xml:space="preserve"> <value>Pixels</value> </data> <data name="MeasureTool_UnitsOfMeasure_Inches.Content" xml:space="preserve"> <value>Inches</value> </data> <data name="MeasureTool_UnitsOfMeasure_Centimeters.Content" xml:space="preserve"> <value>Centimeters</value> </data> <data name="MeasureTool_PixelTolerance.Header" xml:space="preserve"> <value>Pixel tolerance for edge detection</value> </data> <data name="MeasureTool_MeasureCrossColor.Header" xml:space="preserve"> <value>Line color</value> </data> <data name="MeasureTool_ContinuousCapture.Header" xml:space="preserve"> <value>Capture screen continuously during measuring</value> </data> <data name="MeasureTool_ContinuousCapture.Description" xml:space="preserve"> <value>Refresh screen contexts in real-time instead of making a screenshot once</value> </data> <data name="MeasureTool_PerColorChannelEdgeDetection.Header" xml:space="preserve"> <value>Per color channel edge detection</value> </data> <data name="MeasureTool_PerColorChannelEdgeDetection.Description" xml:space="preserve"> <value>If enabled, test that all color channels are within a tolerance distance from each other. Otherwise, check that the sum of all color channels differences is smaller than the tolerance.</value> </data> <data name="MeasureTool_DrawFeetOnCross.Header" xml:space="preserve"> <value>Draw feet on cross</value> </data> <data name="MeasureTool_DrawFeetOnCross.Description" xml:space="preserve"> <value>Adds feet to the end of cross lines</value> </data> <data name="MeasureTool_EnableMeasureTool.Header" xml:space="preserve"> <value>Enable Screen Ruler</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MouseWithoutBorders_ActivationSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="MouseWithoutBorders_DeviceLayoutSettings.Header" xml:space="preserve"> <value>Device layout</value> </data> <data name="MouseWithoutBorders_DeviceLayoutSettings.Description" xml:space="preserve"> <value>Drag and drop a machine to rearrange the order.</value> </data> <data name="MouseWithoutBorders_CannotDragDropAsAdmin.Title" xml:space="preserve"> <value>It is not possible to use drag and drop while running PowerToys elevated. As a workaround, please restart PowerToys without elevation to edit the device layout.</value> </data> <data name="MouseWithoutBorders_KeySettings.Header" xml:space="preserve"> <value>Encryption key</value> </data> <data name="MouseWithoutBorders_SecurityKey.Header" xml:space="preserve"> <value>Security key</value> </data> <data name="MouseWithoutBorders_SecurityKey.Description" xml:space="preserve"> <value>The key must be auto generated in one machine by clicking on New Key, then typed in other machines</value> </data> <data name="MouseWithoutBorders_NewKey.Content" xml:space="preserve"> <value>New key</value> </data> <data name="MouseWithoutBorders_CopyMachineName.Text" xml:space="preserve"> <value>Copy to clipboard</value> </data> <data name="MouseWithoutBorders_ReconnectButton.Text" xml:space="preserve"> <value>Refresh connections</value> </data> <data name="MouseWithoutBorders_ReconnectTooltip.Text" xml:space="preserve"> <value>Reestablishes connections with other devices if you are experiencing issues.</value> </data> <data name="MouseWithoutBorders_ThisMachineNameLabel.Header" xml:space="preserve"> <value>Host name of this device</value> </data> <data name="MouseWithoutBorders_Connect.Content" xml:space="preserve"> <value>Connect</value> </data> <data name="MouseWithoutBorders_UninstallService.Header" xml:space="preserve"> <value>Uninstall service</value> </data> <data name="MouseWithoutBorders_UninstallService.Description" xml:space="preserve"> <value>Removes the service from the computer. Needs to run as administrator.</value> </data> <data name="MouseWithoutBorders_Settings.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="MouseWithoutBorders_TroubleShooting.Header" xml:space="preserve"> <value>Troubleshooting</value> </data> <data name="MouseWithoutBorders_AddFirewallRuleButtonControl.Header" xml:space="preserve"> <value>Add a firewall rule for Mouse Without Borders</value> <comment>"Mouse Without Borders" is a product name</comment> </data> <data name="MouseWithoutBorders_AddFirewallRuleButtonControl.Description" xml:space="preserve"> <value>Adding a firewall rule might help solve connection issues.</value> </data> <data name="MouseWithoutBorders_RunAsAdminText.Title" xml:space="preserve"> <value>You need to run as administrator to modify this setting.</value> </data> <data name="MouseWithoutBorders_ServiceUserUninstallWarning.Title" xml:space="preserve"> <value>If PowerToys is installed as a user, uninstalling/upgrading may require the Mouse Without Borders service to be removed manually later.</value> </data> <data name="MouseWithoutBorders_ServiceSettings.Header" xml:space="preserve"> <value>Service</value> </data> <data name="MouseWithoutBorders_Toggle_Enable.Header" xml:space="preserve"> <value>Enable Mouse Without Borders</value> </data> <data name="MouseWithoutBorders.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="MouseWithoutBorders.ModuleDescription" xml:space="preserve"> <value>Mouse Without Borders is a quick and easy way to move your cursor across multiple devices.</value> <comment>"Mouse Without Borders" is the name of the utility</comment> </data> <data name="MouseWithoutBorders.ModuleTitle" xml:space="preserve"> <value>Mouse Without Borders</value> <comment>"Mouse Without Borders" is the name of the utility</comment> </data> <data name="MouseWithoutBorders_UseService.Header" xml:space="preserve"> <value>Use Service</value> </data> <data name="MouseWithoutBorders_UseService.Description" xml:space="preserve"> <value>Runs in service mode, that allows MWB to control remote machines when they're locked. Also allows control of system and administrator applications.</value> </data> <data name="MouseWithoutBorders_MatrixOneRow.Header" xml:space="preserve"> <value>Devices in a single row</value> </data> <data name="MouseWithoutBorders_MatrixOneRow.Description" xml:space="preserve"> <value>Sets whether the devices are aligned on a single row. A two by two matrix is considered otherwise.</value> </data> <data name="MouseWithoutBorders_WrapMouse.Header" xml:space="preserve"> <value>Wrap mouse</value> </data> <data name="MouseWithoutBorders_WrapMouse.Description" xml:space="preserve"> <value>Move control back to the first machine when mouse moves past the last one.</value> </data> <data name="MouseWithoutBorders_ShareClipboard.Header" xml:space="preserve"> <value>Share clipboard</value> </data> <data name="MouseWithoutBorders_TransferFile.Header" xml:space="preserve"> <value>Transfer file</value> </data> <data name="MouseWithoutBorders_HideMouseAtScreenEdge.Header" xml:space="preserve"> <value>Hide mouse at the screen edge</value> </data> <data name="MouseWithoutBorders_DrawMouseCursor.Header" xml:space="preserve"> <value>Draw mouse cursor</value> </data> <data name="MouseWithoutBorders_ValidateRemoteMachineIP.Header" xml:space="preserve"> <value>Validate remote machine IP</value> </data> <data name="MouseWithoutBorders_SameSubnetOnly.Header" xml:space="preserve"> <value>Same subnet only</value> </data> <data name="MouseWithoutBorders_BlockScreenSaverOnOtherMachines.Header" xml:space="preserve"> <value>Block screen saver on other machines</value> </data> <data name="MouseWithoutBorders_MoveMouseRelatively.Header" xml:space="preserve"> <value>Move mouse relatively</value> </data> <data name="MouseWithoutBorders_BlockMouseAtScreenCorners.Header" xml:space="preserve"> <value>Block mouse at screen corners</value> </data> <data name="MouseWithoutBorders_ShowClipboardAndNetworkStatusMessages.Header" xml:space="preserve"> <value>Show clipboard and network status messages</value> </data> <data name="MouseWithoutBorders_ShowOriginalUI.Header" xml:space="preserve"> <value>Show the original Mouse Without Borders UI</value> </data> <data name="MouseWithoutBorders_ShowOriginalUI.Description" xml:space="preserve"> <value>This is accessible from the system tray and requires a restart.</value> </data> <data name="MouseWithoutBorders_ShareClipboard.Description" xml:space="preserve"> <value>If share clipboard stops working, Ctrl+Alt+Del then Esc may solve the problem.</value> </data> <data name="MouseWithoutBorders_TransferFile.Description" xml:space="preserve"> <value>If a file (&lt;100MB) is copied, it will be transferred to the remote machine clipboard.</value> </data> <data name="MouseWithoutBorders_HideMouseAtScreenEdge.Description" xml:space="preserve"> <value>Hide the mouse cursor at the top edge of the screen when switching to other machine. This option also steals the focus from any full-screen app to ensure the keyboard input is redirected.</value> </data> <data name="MouseWithoutBorders_DrawMouseCursor.Description" xml:space="preserve"> <value>Mouse cursor may not be visible in Windows 10 and later versions of Windows when there is no physical mouse attached.</value> </data> <data name="MouseWithoutBorders_ValidateRemoteMachineIP.Description" xml:space="preserve"> <value>Reverse DNS lookup to validate machine IP Address.</value> </data> <data name="MouseWithoutBorders_SameSubnetOnly.Description" xml:space="preserve"> <value>Only connect to machines in the same intranet NNN.NNN.*.* (only works when both machines have IPv4 enabled)</value> </data> <data name="MouseWithoutBorders_IPAddressMapping_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: MyLaptop 192.168.0.24</value> <comment>Don't translate MyLaptop</comment> </data> <data name="MouseWithoutBorders_IPAddressMapping.Header" xml:space="preserve"> <value>IP address mapping</value> </data> <data name="MouseWithoutBorders_IPAddressMapping.Description" xml:space="preserve"> <value>Resolve machine's IP address using manually entered mappings below.</value> </data> <data name="MouseWithoutBorders_BlockScreenSaverOnOtherMachines.Description" xml:space="preserve"> <value>Prevent screen saver from starting on other machines when user is actively working on this machine.</value> </data> <data name="MouseWithoutBorders_MoveMouseRelatively.Description" xml:space="preserve"> <value>Use this option when remote machine's monitor settings are different, or remote machine has multiple monitors.</value> </data> <data name="MouseWithoutBorders_BlockMouseAtScreenCorners.Description" xml:space="preserve"> <value>To avoid accident machine-switch at screen corners.</value> </data> <data name="MouseWithoutBorders_ShowClipboardAndNetworkStatusMessages.Description" xml:space="preserve"> <value>Show clipboard activities and network status in system tray notifications</value> </data> <data name="MouseWithoutBorders_KeyboardShortcuts_Group.Header" xml:space="preserve"> <value>Keyboard shortcuts</value> <comment>keyboard is the hardware peripheral</comment> </data> <data name="MouseWithoutBorders_AdvancedSettings_Group.Header" xml:space="preserve"> <value>Advanced Settings</value> </data> <data name="MouseWithoutBorders_EasyMouseOption.Header" xml:space="preserve"> <value>Easy Mouse: move between machines by moving the mouse pointer to the screen edges.</value> </data> <data name="MouseWithoutBorders_EasyMouseOption.Description" xml:space="preserve"> <value>Can also be set to move only when pressing Shift or Ctrl.</value> <comment>Shift and Ctrl are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_EasyMouseOption_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_EasyMouseOption_Enabled.Content" xml:space="preserve"> <value>Enabled</value> </data> <data name="MouseWithoutBorders_EasyMouseOption_Ctrl.Content" xml:space="preserve"> <value>Ctrl</value> <comment>This is the Ctrl keyboard key</comment> </data> <data name="MouseWithoutBorders_EasyMouseOption_Shift.Content" xml:space="preserve"> <value>Shift</value> <comment>This is the Shift keyboard key</comment> </data> <data name="MouseWithoutBorders_LockMachinesShortcut.Header" xml:space="preserve"> <value>Shortcut to lock all machines.</value> </data> <data name="MouseWithoutBorders_LockMachinesShortcut.Description" xml:space="preserve"> <value>Hit this hotkey twice to lock all machines. Note: Only the machines which have the same shortcut configured will be locked.</value> </data> <data name="MouseWithoutBorders_ToggleEasyMouseShortcut.Header" xml:space="preserve"> <value>Shortcut to toggle Easy Mouse.</value> <comment>Ctrl and Alt are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_ToggleEasyMouseShortcut.Description" xml:space="preserve"> <value>Only works if EasyMouse is set to Enabled or Disabled.</value> </data> <data name="MouseWithoutBorders_ToggleEasyMouseShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut.Header" xml:space="preserve"> <value>Shortcut to switch between machines. Ctrl+Alt+:</value> <comment>Ctrl and Alt are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut.Description" xml:space="preserve"> <value>Click on Ctrl+Alt+ the chosen option to switch between machines.</value> <comment>Ctrl and Alt are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut_F1.Content" xml:space="preserve"> <value>F1, F2, F3, F4</value> <comment>Don't localize. These are keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut_1.Content" xml:space="preserve"> <value>1, 2, 3, 4</value> <comment>Don't localize. These are keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_LockMachinesShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_ReconnectShortcut.Header" xml:space="preserve"> <value>Shortcut to try reconnecting</value> </data> <data name="MouseWithoutBorders_ReconnectShortcut.Description" xml:space="preserve"> <value>Just in case the connection is lost for any reason.</value> </data> <data name="MouseWithoutBorders_ReconnectShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut.Header" xml:space="preserve"> <value>Shortcut to switch to multiple machine mode.</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut.Description" xml:space="preserve"> <value>Allows controlling all computers at once.</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut_Ctrl3.Content" xml:space="preserve"> <value>Ctrl three times</value> <comment>This is the Ctrl keyboard key</comment> </data> <data name="VideoConference_Enable.Header" xml:space="preserve"> <value>Enable Video Conference Mute</value> </data> <data name="VideoConference.ModuleDescription" xml:space="preserve"> <value>Video Conference Mute is a quick and easy way to do a global "mute" of both your microphone and webcam. Disabling this module or closing PowerToys will unmute the microphone and camera.</value> </data> <data name="VideoConference_CameraAndMicrophoneMuteHotkeyControl_Header.Header" xml:space="preserve"> <value>Mute camera &amp; microphone</value> </data> <data name="VideoConference_MicrophoneMuteHotkeyControl_Header.Header" xml:space="preserve"> <value>Mute microphone</value> </data> <data name="VideoConference_MicrophonePushToTalkHotkeyControl_Header.Header" xml:space="preserve"> <value>Push to talk</value> </data> <data name="VideoConference_CameraMuteHotkeyControl_Header.Header" xml:space="preserve"> <value>Mute camera</value> </data> <data name="VideoConference_SelectedCamera.Header" xml:space="preserve"> <value>Selected camera</value> </data> <data name="VideoConference_SelectedMicrophone.Header" xml:space="preserve"> <value>Selected microphone</value> </data> <data name="VideoConference_PushToReverse.Header" xml:space="preserve"> <value>Push to reverse</value> </data> <data name="VideoConference_PushToReverse.Description" xml:space="preserve"> <value>If enabled, allows both push to talk and push to mute, depending on microphone state</value> </data> <data name="VideoConference_CameraOverlayImagePathHeader.Header" xml:space="preserve"> <value>Image displayed when camera is muted</value> </data> <data name="VideoConference_ToolbarPosition.Header" xml:space="preserve"> <value>Toolbar position</value> </data> <data name="VideoConference_ToolbarPosition_TopCenter.Content" xml:space="preserve"> <value>Top center</value> </data> <data name="VideoConference_ToolbarPosition_TopLeftCorner.Content" xml:space="preserve"> <value>Top left corner</value> </data> <data name="VideoConference_ToolbarPosition_TopRightCorner.Content" xml:space="preserve"> <value>Top right corner</value> </data> <data name="VideoConference_ToolbarPosition_BottomLeftCorner.Content" xml:space="preserve"> <value>Bottom left corner</value> </data> <data name="VideoConference_ToolbarPosition_BottomCenter.Content" xml:space="preserve"> <value>Bottom center</value> </data> <data name="VideoConference_ToolbarPosition_BottomRightCorner.Content" xml:space="preserve"> <value>Bottom right corner</value> </data> <data name="VideoConference_ToolbarMonitor.Header" xml:space="preserve"> <value>Show toolbar on</value> </data> <data name="VideoConference_ToolbarMonitor_Main.Content" xml:space="preserve"> <value>Main monitor</value> </data> <data name="VideoConference_ToolbarMonitor_UnderCursor.Content" xml:space="preserve"> <value>Monitor under cursor</value> </data> <data name="VideoConference_ToolbarMonitor_ActiveWindow.Content" xml:space="preserve"> <value>Active window monitor</value> </data> <data name="VideoConference_ToolbarMonitor_All.Content" xml:space="preserve"> <value>All monitors</value> </data> <data name="VideoConference_ToolbarHide.Header" xml:space="preserve"> <value>Hide toolbar</value> </data> <data name="VideoConference_ToolbarHideMuted.Content" xml:space="preserve"> <value>When both camera and microphone are muted</value> </data> <data name="VideoConference_ToolbarHideNever.Content" xml:space="preserve"> <value>Never</value> </data> <data name="VideoConference_ToolbarHideUnmuted.Content" xml:space="preserve"> <value>When both camera and microphone are unmuted</value> </data> <data name="VideoConference_ToolbarHideTimeout.Content" xml:space="preserve"> <value>After timeout</value> </data> <data name="VideoConference.ModuleTitle" xml:space="preserve"> <value>Video Conference Mute</value> </data> <data name="VideoConference_Camera.Header" xml:space="preserve"> <value>Camera</value> </data> <data name="VideoConference_Camera.Description" xml:space="preserve"> <value>To use this feature, make sure to select PowerToys VideoConference Mute as your camera source in your apps.</value> </data> <data name="VideoConference_Microphone.Header" xml:space="preserve"> <value>Microphone</value> </data> <data name="VideoConference_Toolbar.Header" xml:space="preserve"> <value>Toolbar</value> </data> <data name="VideoConference_Behavior.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="VideoConference_StartupAction.Header" xml:space="preserve"> <value>Startup action</value> </data> <data name="VideoConference_StartupActionNothing.Content" xml:space="preserve"> <value>Nothing</value> </data> <data name="VideoConference_StartupActionUnmute.Content" xml:space="preserve"> <value>Unmute</value> </data> <data name="VideoConference_StartupActionMute.Content" xml:space="preserve"> <value>Mute</value> </data> <data name="VideoConference_Shortcuts.Header" xml:space="preserve"> <value>Shortcuts</value> </data> <data name="VideoConference_CameraOverlayImageAlt.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Camera overlay image preview</value> </data> <data name="VideoConference_CameraOverlayImageBrowse.Content" xml:space="preserve"> <value>Browse</value> </data> <data name="VideoConference_CameraOverlayImageClear.Content" xml:space="preserve"> <value>Clear</value> </data> <data name="Shell_General.Content" xml:space="preserve"> <value>General</value> <comment>Navigation view item name for General</comment> </data> <data name="Shell_Awake.Content" xml:space="preserve"> <value>Awake</value> <comment>Product name: Navigation view item name for Awake</comment> </data> <data name="Shell_PowerLauncher.Content" xml:space="preserve"> <value>PowerToys Run</value> <comment>Product name: Navigation view item name for PowerToys Run</comment> </data> <data name="Shell_PowerRename.Content" xml:space="preserve"> <value>PowerRename</value> <comment>Product name: Navigation view item name for PowerRename</comment> </data> <data name="Shell_ShortcutGuide.Content" xml:space="preserve"> <value>Shortcut Guide</value> <comment>Product name: Navigation view item name for Shortcut Guide</comment> </data> <data name="Shell_PowerPreview.Content" xml:space="preserve"> <value>File Explorer add-ons</value> <comment>Product name: Navigation view item name for File Explorer. Please use File Explorer as in the context of File Explorer in Windows</comment> </data> <data name="Shell_FancyZones.Content" xml:space="preserve"> <value>FancyZones</value> <comment>Product name: Navigation view item name for FancyZones</comment> </data> <data name="Shell_ImageResizer.Content" xml:space="preserve"> <value>Image Resizer</value> <comment>Product name: Navigation view item name for Image Resizer</comment> </data> <data name="Shell_ColorPicker.Content" xml:space="preserve"> <value>Color Picker</value> <comment>Product name: Navigation view item name for Color Picker</comment> </data> <data name="Shell_KeyboardManager.Content" xml:space="preserve"> <value>Keyboard Manager</value> <comment>Product name: Navigation view item name for Keyboard Manager</comment> </data> <data name="Shell_MouseWithoutBorders.Content" xml:space="preserve"> <value>Mouse Without Borders</value> <comment>Product name: Navigation view item name for Mouse Without Borders</comment> </data> <data name="Shell_MouseUtilities.Content" xml:space="preserve"> <value>Mouse utilities</value> <comment>Product name: Navigation view item name for Mouse utilities</comment> </data> <data name="Shell_NavigationMenu_Announce_Collapse" xml:space="preserve"> <value>Navigation closed</value> <comment>Accessibility announcement when the navigation pane collapses</comment> </data> <data name="Shell_NavigationMenu_Announce_Open" xml:space="preserve"> <value>Navigation opened</value> <comment>Accessibility announcement when the navigation pane opens</comment> </data> <data name="KeyboardManager_ConfigHeader.Text" xml:space="preserve"> <value>Current configuration</value> <comment>Keyboard Manager current configuration header</comment> </data> <data name="KeyboardManager.ModuleDescription" xml:space="preserve"> <value>Reconfigure your keyboard by remapping keys and shortcuts</value> <comment>Keyboard Manager page description</comment> </data> <data name="KeyboardManager_EnableToggle.Header" xml:space="preserve"> <value>Enable Keyboard Manager</value> <comment>Keyboard Manager enable toggle header. Do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="KeyboardManager_ProfileDescription.Text" xml:space="preserve"> <value>Select the profile to display the active key remap and shortcuts</value> <comment>Keyboard Manager configuration dropdown description</comment> </data> <data name="KeyboardManager_RemapKeyboardButton.Header" xml:space="preserve"> <value>Remap a key</value> <comment>Keyboard Manager remap keyboard button content</comment> </data> <data name="KeyboardManager_Keys.Header" xml:space="preserve"> <value>Keys</value> <comment>Keyboard Manager remap keyboard header</comment> </data> <data name="KeyboardManager_RemapShortcutsButton.Header" xml:space="preserve"> <value>Remap a shortcut</value> <comment>Keyboard Manager remap shortcuts button</comment> </data> <data name="KeyboardManager_Shortcuts.Header" xml:space="preserve"> <value>Shortcuts</value> <comment>Keyboard Manager remap keyboard header</comment> </data> <data name="KeyboardManager_All_Apps_Description" xml:space="preserve"> <value>All Apps</value> <comment>Should be the same as EditShortcuts_AllApps from keyboard manager editor</comment> </data> <data name="Shortcuts.Header" xml:space="preserve"> <value>Shortcuts</value> </data> <data name="Shortcut.Header" xml:space="preserve"> <value>Shortcut</value> </data> <data name="RemapKeysList.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Current Key Remappings</value> </data> <data name="RemapShortcutsList.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Current Shortcut Remappings</value> </data> <data name="KeyboardManager_RemappedKeysListItem.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Key Remapping</value> <comment>key as in keyboard key</comment> </data> <data name="KeyboardManager_RemappedShortcutsListItem.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Shortcut Remapping</value> </data> <data name="KeyboardManager_RemappedTo.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Remapped to</value> </data> <data name="KeyboardManager_ShortcutRemappedTo.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Remapped to</value> </data> <data name="KeyboardManager_TargetApp.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>For Target Application</value> <comment>What computer application would this be for</comment> </data> <data name="KeyboardManager_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Keyboard Manager</value> <comment>do not loc, product name</comment> </data> <data name="ColorPicker.ModuleDescription" xml:space="preserve"> <value>Quick and simple system-wide color picker.</value> </data> <data name="ColorPicker_EnableColorPicker.Header" xml:space="preserve"> <value>Enable Color Picker</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="ColorPicker_ChangeCursor.Content" xml:space="preserve"> <value>Change cursor when picking a color</value> </data> <data name="PowerLauncher.ModuleDescription" xml:space="preserve"> <value>A quick launcher that has additional capabilities without sacrificing performance.</value> </data> <data name="PowerLauncher_EnablePowerLauncher.Header" xml:space="preserve"> <value>Enable PowerToys Run</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="PowerLauncher_SearchResults.Header" xml:space="preserve"> <value>Search &amp; results</value> </data> <data name="PowerLauncher_SearchResultPreference.Header" xml:space="preserve"> <value>Search result preference</value> </data> <data name="PowerLauncher_UsePinyin.Header" xml:space="preserve"> <value>Use Pinyin</value> </data> <data name="PowerLauncher_UsePinyin.Description" xml:space="preserve"> <value>Experimental: Use Pinyin on the search query. May not work for every plugin.</value> </data> <data name="PowerLauncher_SearchResultPreference_MostRecentlyUsed" xml:space="preserve"> <value>Most recently used</value> </data> <data name="PowerLauncher_SearchResultPreference_AlphabeticalOrder" xml:space="preserve"> <value>Alphabetical order</value> </data> <data name="PowerLauncher_SearchResultPreference_RunningProcessesOpenApplications" xml:space="preserve"> <value>Running processes/open applications</value> </data> <data name="PowerLauncher_SearchTypePreference.Header" xml:space="preserve"> <value>Search type preference</value> </data> <data name="PowerLauncher_SearchTypePreference_ApplicationName" xml:space="preserve"> <value>Application name</value> </data> <data name="PowerLauncher_SearchTypePreference_StringInApplication" xml:space="preserve"> <value>A string that is contained in the application</value> </data> <data name="PowerLauncher_SearchTypePreference_ExecutableName" xml:space="preserve"> <value>Executable name</value> </data> <data name="PowerLauncher_MaximumNumberOfResults.Header" xml:space="preserve"> <value>Number of results shown before scrolling</value> </data> <data name="PowerLauncher_OpenPowerLauncher.Header" xml:space="preserve"> <value>Open PowerToys Run</value> </data> <data name="PowerLauncher_OpenFileLocation.Header" xml:space="preserve"> <value>Open file location</value> </data> <data name="PowerLauncher_CopyPathLocation.Header" xml:space="preserve"> <value>Copy path location</value> </data> <data name="PowerLauncher_OpenConsole.Header" xml:space="preserve"> <value>Open console</value> <comment>console refers to Windows command prompt</comment> </data> <data name="PowerLauncher_OverrideWinRKey.Content" xml:space="preserve"> <value>Override Win+R shortcut</value> </data> <data name="PowerLauncher_OverrideWinSKey.Content" xml:space="preserve"> <value>Override Win+S shortcut</value> </data> <data name="PowerLauncher_IgnoreHotkeysInFullScreen.Content" xml:space="preserve"> <value>Ignore shortcuts in fullscreen mode</value> </data> <data name="PowerLauncher_UseCentralizedKeyboardHook.Header" xml:space="preserve"> <value>Use centralized keyboard hook</value> </data> <data name="PowerLauncher_UseCentralizedKeyboardHook.Description" xml:space="preserve"> <value>Try this if there are issues with the shortcut (PowerToys Run might not get focus when triggered from an elevated window)</value> </data> <data name="PowerLauncher_ClearInputOnLaunch.Content" xml:space="preserve"> <value>Clear the previous query on launch</value> </data> <data name="PowerLauncher_TabSelectsContextButtons.Header" xml:space="preserve"> <value>Tab through context buttons</value> </data> <data name="PowerLauncher_TabSelectsContextButtons.Description" xml:space="preserve"> <value>Pressing tab will first select through the available context buttons of the current selection before moving onto the next result</value> </data> <data name="PowerLauncher_GenerateThumbnailsFromFiles.Header" xml:space="preserve"> <value>Generate thumbnails from files</value> </data> <data name="PowerLauncher_GenerateThumbnailsFromFiles.Description" xml:space="preserve"> <value>Results will try to generate thumbnails for files. Disabling this setting may increase stability and speed</value> </data> <data name="PowerLauncher_SearchQueryResultsWithDelay.Header" xml:space="preserve"> <value>Input Smoothing</value> <comment>This is about adding a delay to wait for more input before executing a search</comment> </data> <data name="PowerLauncher_SearchQueryResultsWithDelay.Description" xml:space="preserve"> <value>Wait for more input before searching. This reduces interface jumpiness and system load.</value> </data> <data name="PowerLauncher_FastSearchInputDelayMs.Header" xml:space="preserve"> <value>Immediate plugins</value> </data> <data name="PowerLauncher_FastSearchInputDelayMs.Description" xml:space="preserve"> <value>Affects the plugins that make the UI wait for their results by this amount. Recommended: 30-50 ms.</value> </data> <data name="PowerLauncher_SlowSearchInputDelayMs.Header" xml:space="preserve"> <value>Background execution plugins</value> </data> <data name="PowerLauncher_SlowSearchInputDelayMs.Description" xml:space="preserve"> <value>Affects the plugins that execute in the background by this amount. Recommended: 100-150 ms.</value> </data> <data name="PowerLauncher_SearchInputDelayMs.Header" xml:space="preserve"> <value>Fast plugin throttle (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="KeyboardManager_KeysMappingLayoutRightHeader.Text" xml:space="preserve"> <value>To:</value> <comment>Keyboard Manager mapping keys view right header</comment> </data> <data name="Appearance_GroupSettings.Text" xml:space="preserve"> <value>Appearance</value> </data> <data name="Fancyzones_ImageHyperlinkToDocs.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>FancyZones windows</value> <comment>do not loc the Product name</comment> </data> <data name="FancyZones.ModuleDescription" xml:space="preserve"> <value>Create window layouts to help make multi-tasking easy.</value> <comment>windows refers to application windows</comment> </data> <data name="FancyZones_DisplayOrWorkAreaChangeMoveWindowsCheckBoxControl.Content" xml:space="preserve"> <value>Keep windows in their zones when the screen resolution or work area changes</value> <comment>windows refers to application windows</comment> </data> <data name="FancyZones_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable FancyZones</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="FancyZones_ExcludeApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="FancyZones_ExcludeApps.Description" xml:space="preserve"> <value>Excludes an application from snapping to zones and will only react to Windows Snap - add one application name per line</value> </data> <data name="FancyZones_HighlightOpacity.Header" xml:space="preserve"> <value>Opacity (%)</value> </data> <data name="FancyZones_HotkeyEditorControl.Header" xml:space="preserve"> <value>Open layout editor</value> <comment>Shortcut to launch the FancyZones layout editor application</comment> </data> <data name="FancyZones_WindowSwitching_GroupSettings.Header" xml:space="preserve"> <value>Switch between windows in the current zone</value> </data> <data name="FancyZones_HotkeyNextTabControl.Header" xml:space="preserve"> <value>Next window</value> </data> <data name="FancyZones_HotkeyPrevTabControl.Header" xml:space="preserve"> <value>Previous window</value> </data> <data name="SettingsPage_SetShortcut.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Shortcut setting</value> </data> <data name="SettingsPage_SetShortcut_Glyph.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Information Symbol</value> </data> <data name="FancyZones_LaunchEditorButtonControl.Header" xml:space="preserve"> <value>Launch layout editor</value> <comment>launches the FancyZones layout editor application</comment> </data> <data name="FancyZones_LaunchEditorButtonControl.Description" xml:space="preserve"> <value>Set and manage your layouts</value> <comment>launches the FancyZones layout editor application</comment> </data> <data name="FancyZones_MakeDraggedWindowTransparentCheckBoxControl.Content" xml:space="preserve"> <value>Make dragged window transparent</value> </data> <data name="FancyZones_MouseDragCheckBoxControl_Header.Content" xml:space="preserve"> <value>Use a non-primary mouse button to toggle zone activation</value> </data> <data name="FancyZones_MouseMiddleClickSpanningMultipleZonesCheckBoxControl_Header.Content" xml:space="preserve"> <value>Use middle-click mouse button to toggle multiple zones spanning</value> </data> <data name="FancyZones_MoveWindowsAcrossAllMonitorsCheckBoxControl.Content" xml:space="preserve"> <value>Move windows between zones across all monitors</value> </data> <data name="FancyZones_OverrideSnapHotkeys.Header" xml:space="preserve"> <value>Override Windows Snap</value> </data> <data name="FancyZones_OverrideSnapHotkeys.Description" xml:space="preserve"> <value>This overrides the Windows Snap shortcut (Win + arrow) to move windows between zones</value> </data> <data name="FancyZones_ShiftDragCheckBoxControl_Header.Content" xml:space="preserve"> <value>Hold Shift key to activate zones while dragging</value> </data> <data name="FancyZones_ShowZonesOnAllMonitorsCheckBoxControl.Content" xml:space="preserve"> <value>Show zones on all monitors while dragging a window</value> </data> <data name="FancyZones_AppLastZoneMoveWindows.Content" xml:space="preserve"> <value>Move newly created windows to their last known zone</value> <comment>windows refers to application windows</comment> </data> <data name="FancyZones_OpenWindowOnActiveMonitor.Content" xml:space="preserve"> <value>Move newly created windows to the current active monitor (Experimental)</value> </data> <data name="FancyZones_UseCursorPosEditorStartupScreen.Header" xml:space="preserve"> <value>Launch editor on the display</value> </data> <data name="FancyZones_UseCursorPosEditorStartupScreen.Description" xml:space="preserve"> <value>When using multiple displays</value> </data> <data name="FancyZones_LaunchPositionMouse.Content" xml:space="preserve"> <value>Where the mouse pointer is</value> </data> <data name="FancyZones_LaunchPositionScreen.Content" xml:space="preserve"> <value>With active focus</value> </data> <data name="FancyZones_ZoneBehavior_GroupSettings.Header" xml:space="preserve"> <value>Zone behavior</value> </data> <data name="FancyZones_ZoneBehavior_GroupSettings.Description" xml:space="preserve"> <value>Manage how zones behave when using FancyZones</value> </data> <data name="FancyZones_Zones.Header" xml:space="preserve"> <value>Zones</value> </data> <data name="FancyZones_ZoneHighlightColor.Header" xml:space="preserve"> <value>Highlight color</value> </data> <data name="FancyZones_ZoneSetChangeMoveWindows.Content" xml:space="preserve"> <value>During zone layout changes, windows assigned to a zone will match new size/positions</value> </data> <data name="AttributionTitle.Text" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="General.ModuleTitle" xml:space="preserve"> <value>General</value> </data> <data name="GeneralPage_CheckForUpdates.Content" xml:space="preserve"> <value>Check for updates</value> </data> <data name="General_SettingsBackupAndRestoreLocationText.Header" xml:space="preserve"> <value>Location</value> </data> <data name="General_SettingsBackupAndRestore_ButtonBackup.Content" xml:space="preserve"> <value>Backup</value> </data> <data name="General_SettingsBackupInfo_FileNameHeader.Text" xml:space="preserve"> <value>File name:</value> </data> <data name="General_SettingsBackupAndRestore_LinkRefresh.Text" xml:space="preserve"> <value>Refresh</value> </data> <data name="General_SettingsBackupAndRestore_ButtonRestore.Content" xml:space="preserve"> <value>Restore</value> </data> <data name="General_SettingsBackupAndRestore_ButtonSelectLocation.Text" xml:space="preserve"> <value>Select folder</value> </data> <data name="GeneralPage_UpdateNow.Content" xml:space="preserve"> <value>Update now</value> </data> <data name="GeneralPage_PrivacyStatement_URL.Text" xml:space="preserve"> <value>Privacy statement</value> </data> <data name="GeneralPage_ReportAbug.Text" xml:space="preserve"> <value>Report a bug</value> <comment>Report an issue inside powertoys</comment> </data> <data name="GeneralPage_RequestAFeature_URL.Text" xml:space="preserve"> <value>Request a feature</value> <comment>Tell our team what we should build</comment> </data> <data name="GeneralPage_RestartAsAdmin_Button.Content" xml:space="preserve"> <value>Restart PowerToys as administrator</value> <comment>running PowerToys as a higher level user, account is typically referred to as an admin / administrator</comment> </data> <data name="GeneralPage_RunAtStartUp.Header" xml:space="preserve"> <value>Run at startup</value> </data> <data name="GeneralPage_RunAtStartUp.Description" xml:space="preserve"> <value>PowerToys will launch automatically</value> </data> <data name="PowerRename.ModuleDescription" xml:space="preserve"> <value>A Windows Shell extension for more advanced bulk renaming using search &amp; replace or regular expressions.</value> </data> <data name="PowerRename_ShellIntegration.Header" xml:space="preserve"> <value>Shell integration</value> <comment>This refers to directly integrating in with Windows</comment> </data> <data name="PowerRename_Toggle_Enable.Header" xml:space="preserve"> <value>Enable PowerRename</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="RadioButtons_Name_Theme.Text" xml:space="preserve"> <value>Settings theme</value> </data> <data name="PowerRename_Toggle_HideIcon.Content" xml:space="preserve"> <value>Hide icon in context menu</value> </data> <data name="PowerRename_Toggle_ContextMenu.Header" xml:space="preserve"> <value>Show PowerRename in</value> </data> <data name="PowerRename_Toggle_StandardContextMenu.Content" xml:space="preserve"> <value>Default and extended context menu</value> </data> <data name="PowerRename_Toggle_ExtendedContextMenu.Content" xml:space="preserve"> <value>Extended context menu only</value> </data> <data name="ExtendedContextMenuInfo.Title" xml:space="preserve"> <value>Press Shift + right-click on files to open the extended context menu</value> </data> <data name="PowerRename_Toggle_MaxDispListNum.Header" xml:space="preserve"> <value>Maximum number of items</value> </data> <data name="PowerRename_Toggle_RestoreFlagsOnLaunch.Header" xml:space="preserve"> <value>Show recently used strings</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_MD.Header" xml:space="preserve"> <value>Markdown</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_MD.Description" xml:space="preserve"> <value>.md, .markdown, .mdown, .mkdn, .mkd, .mdwn, .mdtxt, .mdtext</value> <comment>File extensions, should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_Monaco.Header" xml:space="preserve"> <value>Source code files (Monaco)</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_Monaco.Description" xml:space="preserve"> <value>.cpp, .py, .json, .xml, .csproj, ...</value> <comment>File extensions should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_SVG.Header" xml:space="preserve"> <value>Scalable Vector Graphics</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_SVG.Description" xml:space="preserve"> <value>.svg</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_Preview_SVG_Color_Mode.Header" xml:space="preserve"> <value>Color mode</value> </data> <data name="FileExplorerPreview_Preview_SVG_Color_Mode_Default.Content" xml:space="preserve"> <value>Windows default</value> </data> <data name="FileExplorerPreview_Preview_SVG_Color_Solid_Color.Content" xml:space="preserve"> <value>Solid color</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade.Content" xml:space="preserve"> <value>Checkered pattern</value> </data> <data name="FileExplorerPreview_Preview_SVG_Background_Color.Header" xml:space="preserve"> <value>Color</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_Mode.Header" xml:space="preserve"> <value>Checkered shade</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_1.Content" xml:space="preserve"> <value>Light</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_2.Content" xml:space="preserve"> <value>Medium</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_3.Content" xml:space="preserve"> <value>Dark</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_PDF.Header" xml:space="preserve"> <value>Portable Document Format</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_PDF.Description" xml:space="preserve"> <value>.pdf</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_SVG.Header" xml:space="preserve"> <value>Scalable Vector Graphics</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_SVG.Description" xml:space="preserve"> <value>.svg</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_STL.Header" xml:space="preserve"> <value>Stereolithography</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_STL.Description" xml:space="preserve"> <value>.stl</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_Color_Thumbnail_STL.Header" xml:space="preserve"> <value>Color</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_PDF.Header" xml:space="preserve"> <value>Portable Document Format</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_PDF.Description" xml:space="preserve"> <value>.pdf</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview.ModuleDescription" xml:space="preserve"> <value>These settings allow you to manage your Windows File Explorer custom preview handlers.</value> </data> <data name="PowerRename_AutoCompleteHeader.Header" xml:space="preserve"> <value>Auto-complete</value> </data> <data name="OpenSource_Notice.Text" xml:space="preserve"> <value>Open-source notice</value> </data> <data name="PowerRename_Toggle_AutoComplete.Header" xml:space="preserve"> <value>Enable auto-complete for the search &amp; replace fields</value> </data> <data name="FancyZones_BorderColor.Header" xml:space="preserve"> <value>Border color</value> </data> <data name="FancyZones_InActiveColor.Header" xml:space="preserve"> <value>Inactive color</value> </data> <data name="ShortcutGuide.ModuleDescription" xml:space="preserve"> <value>Shows a help overlay with Windows shortcuts.</value> </data> <data name="ShortcutGuide_PressTimeForGlobalWindowsShortcuts.Header" xml:space="preserve"> <value>Press duration before showing global Windows shortcuts (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="ShortcutGuide_ActivationMethod.Header" xml:space="preserve"> <value>Activation method</value> </data> <data name="ShortcutGuide_ActivationMethod.Description" xml:space="preserve"> <value>Use a shortcut or press the Windows key for some time to activate</value> </data> <data name="Radio_ShortcutGuide_ActivationMethod_CustomizedShortcut.Content" xml:space="preserve"> <value>Custom shortcut</value> </data> <data name="Radio_ShortcutGuide_ActivationMethod_LongPressWindowsKey.Content" xml:space="preserve"> <value>Hold down Windows key</value> </data> <data name="ShortcutGuide_PressWinKeyWarning.Title" xml:space="preserve"> <value>In some edge cases Shortcut Guide might not function correctly when using this activation method</value> </data> <data name="Appearance_Behavior.Header" xml:space="preserve"> <value>Appearance &amp; behavior</value> </data> <data name="General_SettingsBackupAndRestoreTitle.Header" xml:space="preserve"> <value>Backup &amp; restore</value> </data> <data name="General_SettingsBackupAndRestore.Header" xml:space="preserve"> <value>Backup and restore your settings</value> </data> <data name="General_SettingsBackupAndRestore.Description" xml:space="preserve"> <value>PowerToys will restart automatically if needed</value> </data> <data name="ShortcutGuide_Enable.Header" xml:space="preserve"> <value>Enable Shortcut Guide</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="ShortcutGuide_OverlayOpacity.Header" xml:space="preserve"> <value>Background opacity (%)</value> </data> <data name="ShortcutGuide_DisabledApps.Header" xml:space="preserve"> <value>Exclude apps</value> </data> <data name="ShortcutGuide_DisabledApps.Description" xml:space="preserve"> <value>Turns off Shortcut Guide when these applications have focus - add one application name per line</value> </data> <data name="ShortcutGuide_DisabledApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> <comment>Don't translate outlook.exe</comment> </data> <data name="ImageResizer_CustomSizes.Header" xml:space="preserve"> <value>Image sizes</value> </data> <data name="ImageResizer_Presets.Header" xml:space="preserve"> <value>Presets</value> </data> <data name="ImageResizer_Presets.Description" xml:space="preserve"> <value>Manage preset sizes that can be used in the editor</value> </data> <data name="ImageResizer_FilenameFormatHeader.Description" xml:space="preserve"> <value>This format is used as the filename for resized images</value> </data> <data name="ImageResizer.ModuleDescription" xml:space="preserve"> <value>Lets you resize images by right-clicking.</value> </data> <data name="ImageResizer_EnableToggle.Header" xml:space="preserve"> <value>Enable Image Resizer</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="ImagesSizesListView.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Image Size</value> </data> <data name="ImageResizer_Configurations.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Configurations</value> </data> <data name="ImageResizer_Name.Header" xml:space="preserve"> <value>Name</value> </data> <data name="ImageResizer_Fit.Header" xml:space="preserve"> <value>Fit</value> </data> <data name="ImageResizer_Width.Header" xml:space="preserve"> <value>Width</value> </data> <data name="ImageResizer_Height.Header" xml:space="preserve"> <value>Height</value> </data> <data name="ImageResizer_Size.Header" xml:space="preserve"> <value>Unit</value> </data> <data name="RemoveButton.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Remove</value> <comment>Removes a user defined setting group for Image Resizer</comment> </data> <data name="RemoveItem.Text" xml:space="preserve"> <value>Delete</value> </data> <data name="ImageResizer_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Image Resizer</value> </data> <data name="ImageResizer_AddSizeButton.Content" xml:space="preserve"> <value>Add new size</value> </data> <data name="ImageResizer_SaveSizeButton.Label" xml:space="preserve"> <value>Save sizes</value> </data> <data name="ImageResizer_Encoding.Header" xml:space="preserve"> <value>JPEG quality level (%)</value> </data> <data name="ImageResizer_PNGInterlacing.Header" xml:space="preserve"> <value>PNG interlacing</value> </data> <data name="ImageResizer_TIFFCompression.Header" xml:space="preserve"> <value>TIFF compression</value> </data> <data name="File.Header" xml:space="preserve"> <value>File</value> <comment>as in a computer file</comment> </data> <data name="Default.Content" xml:space="preserve"> <value>Default</value> </data> <data name="ImageResizer_ENCODER_TIFF_CCITT3.Content" xml:space="preserve"> <value>CCITT3</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_CCITT4.Content" xml:space="preserve"> <value>CCITT4</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_Default.Content" xml:space="preserve"> <value>Default</value> </data> <data name="ImageResizer_ENCODER_TIFF_LZW.Content" xml:space="preserve"> <value>LZW</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_None.Content" xml:space="preserve"> <value>None</value> </data> <data name="ImageResizer_ENCODER_TIFF_RLE.Content" xml:space="preserve"> <value>RLE</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_Zip.Content" xml:space="preserve"> <value>Zip</value> <comment>do not loc</comment> </data> <data name="ImageResizer_FallbackEncoder_BMP.Content" xml:space="preserve"> <value>BMP encoder</value> </data> <data name="ImageResizer_FallbackEncoder_GIF.Content" xml:space="preserve"> <value>GIF encoder</value> </data> <data name="ImageResizer_FallbackEncoder_JPEG.Content" xml:space="preserve"> <value>JPEG encoder</value> </data> <data name="ImageResizer_FallbackEncoder_PNG.Content" xml:space="preserve"> <value>PNG encoder</value> </data> <data name="ImageResizer_FallbackEncoder_TIFF.Content" xml:space="preserve"> <value>TIFF encoder</value> </data> <data name="ImageResizer_FallbackEncoder_WMPhoto.Content" xml:space="preserve"> <value>WMPhoto encoder</value> </data> <data name="ImageResizer_Sizes_Fit_Fill.Content" xml:space="preserve"> <value>Fill</value> <comment>Refers to filling an image into a certain size. It could overflow</comment> </data> <data name="ImageResizer_Sizes_Fit_Fill_ThirdPersonSingular.Text" xml:space="preserve"> <value>Fill</value> <comment>Refers to filling an image into a certain size. It could overflow</comment> </data> <data name="ImageResizer_Sizes_Fit_Fit.Content" xml:space="preserve"> <value>Fit</value> <comment>Refers to fitting an image into a certain size. It won't overflow</comment> </data> <data name="ImageResizer_Sizes_Fit_Stretch.Content" xml:space="preserve"> <value>Stretch</value> <comment>Refers to stretching an image into a certain size. Won't overflow but could distort.</comment> </data> <data name="ImageResizer_Sizes_Units_CM.Content" xml:space="preserve"> <value>Centimeters</value> </data> <data name="ImageResizer_Sizes_Units_Inches.Content" xml:space="preserve"> <value>Inches</value> </data> <data name="ImageResizer_Sizes_Units_Percent.Content" xml:space="preserve"> <value>Percent</value> </data> <data name="ImageResizer_Sizes_Units_Pixels.Content" xml:space="preserve"> <value>Pixels</value> </data> <data name="Off.Content" xml:space="preserve"> <value>Off</value> </data> <data name="On.Content" xml:space="preserve"> <value>On</value> </data> <data name="GeneralPage_ToggleSwitch_AlwaysRunElevated_Link.Content" xml:space="preserve"> <value>Learn more about administrator mode</value> </data> <data name="GeneralPage_ToggleSwitch_AutoDownloadUpdates.Header" xml:space="preserve"> <value>Download updates automatically</value> </data> <data name="GeneralPage_ToggleSwitch_AutoDownloadUpdates.Description" xml:space="preserve"> <value>Except on metered connections</value> </data> <data name="GeneralPage_ToggleSwitch_RunningAsAdminNote.Text" xml:space="preserve"> <value>Currently running as administrator</value> </data> <data name="GeneralSettings_AlwaysRunAsAdminText.Header" xml:space="preserve"> <value>Always run as administrator</value> </data> <data name="GeneralSettings_AlwaysRunAsAdminText.Description" xml:space="preserve"> <value>You need to run as administrator to use this setting</value> </data> <data name="GeneralSettings_RunningAsUserText" xml:space="preserve"> <value>Running as user</value> </data> <data name="GeneralSettings_RunningAsAdminText" xml:space="preserve"> <value>Running as administrator</value> </data> <data name="FancyZones.ModuleTitle" xml:space="preserve"> <value>FancyZones</value> </data> <data name="FileExplorerPreview.ModuleTitle" xml:space="preserve"> <value>File Explorer</value> </data> <data name="FileExplorerPreview_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>File Explorer</value> <comment>Use same translation as Windows does for File Explorer</comment> </data> <data name="ImageResizer.ModuleTitle" xml:space="preserve"> <value>Image Resizer</value> </data> <data name="KeyboardManager.ModuleTitle" xml:space="preserve"> <value>Keyboard Manager</value> </data> <data name="ColorPicker.ModuleTitle" xml:space="preserve"> <value>Color Picker</value> </data> <data name="PowerLauncher.ModuleTitle" xml:space="preserve"> <value>PowerToys Run</value> </data> <data name="PowerToys_Run_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>PowerToys Run</value> </data> <data name="PowerRename.ModuleTitle" xml:space="preserve"> <value>PowerRename</value> <comment>do not loc the product name</comment> </data> <data name="PowerRename_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>PowerRename</value> <comment>do not loc</comment> </data> <data name="ShortcutGuide.ModuleTitle" xml:space="preserve"> <value>Shortcut Guide</value> </data> <data name="Shortcut_Guide_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Shortcut Guide</value> </data> <data name="General_Repository.Text" xml:space="preserve"> <value>GitHub repository</value> </data> <data name="General_Version.Header" xml:space="preserve"> <value>Version</value> </data> <data name="General_VersionLastChecked.Text" xml:space="preserve"> <value>Last checked: </value> </data> <data name="General_SettingsBackupInfo_DateHeader.Text" xml:space="preserve"> <value>Created at:</value> </data> <data name="General_SettingsBackupAndRestoreStatusInfo.Header" xml:space="preserve"> <value>Backup information</value> </data> <data name="General_SettingsBackupInfo_SourceHeader.Text" xml:space="preserve"> <value>Source machine:</value> </data> <data name="General_SettingsBackupInfo_StatusHeader.Text" xml:space="preserve"> <value>Status:</value> </data> <data name="General_Version.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Version</value> </data> <data name="Admin_mode.Header" xml:space="preserve"> <value>Administrator mode</value> </data> <data name="FancyZones_RestoreSize.Content" xml:space="preserve"> <value>Restore the original size of windows when unsnapping</value> </data> <data name="ImageResizer_FallBackEncoderText.Header" xml:space="preserve"> <value>Fallback encoder</value> </data> <data name="ImageResizer_FileFormatDescription.Text" xml:space="preserve"> <value>The following parameters can be used:</value> </data> <data name="ImageResizer_FilenameFormatHeader.Header" xml:space="preserve"> <value>Filename format</value> </data> <data name="ImageResizer_FileModifiedDate.Header" xml:space="preserve"> <value>File modified timestamp</value> </data> <data name="ImageResizer_FileModifiedDate.Description" xml:space="preserve"> <value>Used as the 'modified timestamp' in the file properties</value> </data> <data name="ImageResizer_UseOriginalDate.Content" xml:space="preserve"> <value>Original file timestamp</value> </data> <data name="ImageResizer_UseResizeDate.Content" xml:space="preserve"> <value>Timestamp of resize action</value> </data> <data name="Encoding.Header" xml:space="preserve"> <value>Encoding</value> </data> <data name="KeyboardManager_RemapKeyboardButton.Description" xml:space="preserve"> <value>Remap keys to other keys or shortcuts</value> </data> <data name="KeyboardManager_RemapShortcutsButton.Description" xml:space="preserve"> <value>Remap shortcuts to other shortcuts or keys for all or specific applications</value> </data> <data name="General.ModuleDescription" xml:space="preserve"> <value>Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. Made with 💗 by Microsoft and the PowerToys community.</value> <comment>Windows refers to the OS</comment> </data> <data name="FancyZones_SpanZonesAcrossMonitors.Header" xml:space="preserve"> <value>Allow zones to span across monitors</value> </data> <data name="ImageResizer_Formatting_ActualHeight.Text" xml:space="preserve"> <value>Actual height</value> </data> <data name="ImageResizer_Formatting_ActualWidth.Text" xml:space="preserve"> <value>Actual width</value> </data> <data name="ImageResizer_Formatting_Filename.Text" xml:space="preserve"> <value>Original filename</value> </data> <data name="ImageResizer_Formatting_SelectedHeight.Text" xml:space="preserve"> <value>Selected height</value> </data> <data name="ImageResizer_Formatting_SelectedWidth.Text" xml:space="preserve"> <value>Selected width</value> </data> <data name="ImageResizer_Formatting_Sizename.Text" xml:space="preserve"> <value>Size name</value> </data> <data name="FancyZones_MoveWindowsBasedOnPositionCheckBoxControl.Content" xml:space="preserve"> <value>Move windows based on their position</value> <comment>Windows refers to application windows</comment> </data> <data name="GeneralSettings_NewVersionIsAvailable" xml:space="preserve"> <value>New update available</value> </data> <data name="GeneralSettings_VersionIsLatest" xml:space="preserve"> <value>PowerToys is up to date.</value> </data> <data name="FileExplorerPreview_IconThumbnail_GroupSettings.Header" xml:space="preserve"> <value>Thumbnail icon Preview</value> </data> <data name="FileExplorerPreview_IconThumbnail_GroupSettings.Description" xml:space="preserve"> <value>Select the file types for which thumbnail previews must be rendered.</value> </data> <data name="FileExplorerPreview_PreviewPane.Header" xml:space="preserve"> <value>Preview Pane</value> </data> <data name="FileExplorerPreview_PreviewPane.Description" xml:space="preserve"> <value>Select the file types which must be rendered in the Preview Pane. Ensure that Preview Pane is open by toggling the view with Alt + P in File Explorer.</value> <comment>Preview Pane and File Explorer are app/feature names in Windows. 'Alt + P' is a shortcut</comment> </data> <data name="FileExplorerPreview_RunAsAdminRequired.Title" xml:space="preserve"> <value>You need to run as administrator to modify these settings.</value> </data> <data name="FileExplorerPreview_RebootRequired.Title" xml:space="preserve"> <value>A reboot may be required for changes to these settings to take effect</value> </data> <data name="FileExplorerPreview_PreviewHandlerOutlookIncompatibility.Title" xml:space="preserve"> <value>Enabling the preview handlers will override other preview handlers already installed - there have been reports of incompatibility between Outlook and the PDF Preview Handler.</value> <comment>Outlook is the name of a Microsoft product</comment> </data> <data name="FileExplorerPreview_ThumbnailsMightNotAppearOnRemoteFolders.Title" xml:space="preserve"> <value>Thumbnails might not appear on paths managed by cloud storage solutions like OneDrive, since these solutions may get their thumbnails from the cloud instead of generating them locally.</value> <comment>OneDrive is the name of a Microsoft product</comment> </data> <data name="FancyZones_ExcludeApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> <comment>Don't translate outlook.exe</comment> </data> <data name="ImageResizer_FilenameFormatPlaceholder.PlaceholderText" xml:space="preserve"> <value>Example: %1 (%2)</value> </data> <data name="ImageResizer_FilenameParameters.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Filename parameters</value> </data> <data name="Radio_Theme_Dark.Content" xml:space="preserve"> <value>Dark</value> <comment>Dark refers to color, not weight</comment> </data> <data name="Radio_Theme_Light.Content" xml:space="preserve"> <value>Light</value> <comment>Light refers to color, not weight</comment> </data> <data name="Radio_Theme_Default.Content" xml:space="preserve"> <value>Windows default</value> <comment>Windows refers to the Operating system</comment> </data> <data name="Windows_Color_Settings.Content" xml:space="preserve"> <value>Windows color settings</value> <comment>Windows refers to the Operating system</comment> </data> <data name="ColorPicker_CopiedColorRepresentation.Header" xml:space="preserve"> <value>Default color format</value> </data> <data name="ColorPickerFirst.Content" xml:space="preserve"> <value>Pick a color and open editor</value> </data> <data name="EditorFirst.Content" xml:space="preserve"> <value>Open editor</value> </data> <data name="ColorPickerOnly.Content" xml:space="preserve"> <value>Only pick a color</value> </data> <data name="ColorPicker_ActivationAction.Header" xml:space="preserve"> <value>Activation behavior</value> </data> <data name="ColorFormats.Header" xml:space="preserve"> <value>Picker behavior</value> </data> <data name="ColorPicker_CopiedColorRepresentation.Description" xml:space="preserve"> <value>This format will be copied to your clipboard</value> </data> <data name="KBM_KeysCannotBeRemapped.Text" xml:space="preserve"> <value>Learn more about remapping limitations</value> <comment>This is a link that will discuss what is and is not possible for Keyboard manager to remap</comment> </data> <data name="FancyZones_Editor_GroupSettings.Header" xml:space="preserve"> <value>Editor</value> <comment>refers to the FancyZone editor</comment> </data> <data name="FancyZones_WindowBehavior_GroupSettings.Header" xml:space="preserve"> <value>Window behavior</value> </data> <data name="FancyZones_WindowBehavior_GroupSettings.Description" xml:space="preserve"> <value>Manage how windows behave when using FancyZones</value> </data> <data name="FancyZones_Windows.Header" xml:space="preserve"> <value>Windows</value> <comment>Do translate: refers to a set of application windows, not the product name</comment> </data> <data name="PowerRename_BehaviorHeader.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="PowerRename_Toggle_UseBoostLib.Header" xml:space="preserve"> <value>Use Boost library</value> <comment>Boost is a product name, should not be translated</comment> </data> <data name="PowerRename_Toggle_UseBoostLib.Description" xml:space="preserve"> <value>Provides extended features but may use different regex syntax</value> <comment>Boost is a product name, should not be translated</comment> </data> <data name="MadeWithOssLove.Text" xml:space="preserve"> <value>Made with 💗 by Microsoft and the PowerToys community.</value> </data> <data name="ColorPicker_ColorFormats.Header" xml:space="preserve"> <value>Color formats</value> </data> <data name="ColorPicker_ColorFormats.Description" xml:space="preserve"> <value>Configure the color formats (edit, delete, hide, reorder them)</value> </data> <data name="MoveUp.Text" xml:space="preserve"> <value>Move up</value> </data> <data name="MoveDown.Text" xml:space="preserve"> <value>Move down</value> </data> <data name="ColorPickerAddNewFormat.Content" xml:space="preserve"> <value>Add new format</value> </data> <data name="NewColorFormat.Header" xml:space="preserve"> <value>Format</value> </data> <data name="NewColorName.Header" xml:space="preserve"> <value>Name</value> </data> <data name="AddCustomColorFormat" xml:space="preserve"> <value>Add custom color format</value> </data> <data name="ColorFormatSave" xml:space="preserve"> <value>Save</value> </data> <data name="EditCustomColorFormat" xml:space="preserve"> <value>Edit custom color format</value> </data> <data name="ColorFormatUpdate" xml:space="preserve"> <value>Update</value> </data> <data name="CustomColorFormatDefaultName" xml:space="preserve"> <value>My Format</value> </data> <data name="ColorFormatDialog.SecondaryButtonText" xml:space="preserve"> <value>Cancel</value> </data> <data name="ColorFormatEditorHelpline1.Text" xml:space="preserve"> <value>The following parameters can be used:</value> </data> <data name="Help_red" xml:space="preserve"> <value>red</value> </data> <data name="Help_green" xml:space="preserve"> <value>green</value> </data> <data name="Help_blue" xml:space="preserve"> <value>blue</value> </data> <data name="Help_alpha" xml:space="preserve"> <value>alpha</value> </data> <data name="Help_cyan" xml:space="preserve"> <value>cyan</value> </data> <data name="Help_magenta" xml:space="preserve"> <value>magenta</value> </data> <data name="Help_yellow" xml:space="preserve"> <value>yellow</value> </data> <data name="Help_black_key" xml:space="preserve"> <value>black key</value> </data> <data name="Help_hue" xml:space="preserve"> <value>hue</value> </data> <data name="Help_hueNat" xml:space="preserve"> <value>hue (natural)</value> </data> <data name="Help_saturationI" xml:space="preserve"> <value>saturation (HSI)</value> </data> <data name="Help_saturationL" xml:space="preserve"> <value>saturation (HSL)</value> </data> <data name="Help_saturationB" xml:space="preserve"> <value>saturation (HSB)</value> </data> <data name="Help_brightness" xml:space="preserve"> <value>brightness</value> </data> <data name="Help_intensity" xml:space="preserve"> <value>intensity</value> </data> <data name="Help_lightnessNat" xml:space="preserve"> <value>lightness (nat)</value> </data> <data name="Help_lightnessCIE" xml:space="preserve"> <value>lightness (CIE)</value> </data> <data name="Help_value" xml:space="preserve"> <value>value</value> </data> <data name="Help_whiteness" xml:space="preserve"> <value>whiteness</value> </data> <data name="Help_blackness" xml:space="preserve"> <value>blackness</value> </data> <data name="Help_chromaticityA" xml:space="preserve"> <value>chromaticityA</value> </data> <data name="Help_chromaticityB" xml:space="preserve"> <value>chromaticityB</value> </data> <data name="Help_X_value" xml:space="preserve"> <value>X value</value> </data> <data name="Help_Y_value" xml:space="preserve"> <value>Y value</value> </data> <data name="Help_Z_value" xml:space="preserve"> <value>Z value</value> </data> <data name="Help_decimal_value_RGB" xml:space="preserve"> <value>decimal value (RGB)</value> </data> <data name="Help_decimal_value_BGR" xml:space="preserve"> <value>decimal value (BGR)</value> </data> <data name="Help_color_name" xml:space="preserve"> <value>color name</value> </data> <data name="ColorFormatEditorHelpline2.Text" xml:space="preserve"> <value>The red, green, blue and alpha values can be formatted to the following formats:</value> </data> <data name="Help_byte" xml:space="preserve"> <value>byte value (default)</value> </data> <data name="Help_hexL1" xml:space="preserve"> <value>hex lowercase one digit</value> </data> <data name="Help_hexU1" xml:space="preserve"> <value>hex uppercase one digit</value> </data> <data name="Help_hexL2" xml:space="preserve"> <value>hex lowercase two digits</value> </data> <data name="Help_hexU2" xml:space="preserve"> <value>hex uppercase two digits</value> </data> <data name="Help_floatWith" xml:space="preserve"> <value>float with leading zero</value> </data> <data name="Help_floatWithout" xml:space="preserve"> <value>float without leading zero</value> </data> <data name="ColorFormatEditorHelpline3.Text" xml:space="preserve"> <value>Example: %ReX means red value in hex uppercase two digits format.</value> </data> <data name="ColorPicker_ShowColorName.Header" xml:space="preserve"> <value>Show color name</value> </data> <data name="ColorPicker_ShowColorName.Description" xml:space="preserve"> <value>This will show the name of the color when picking a color</value> </data> <data name="ImageResizer_DefaultSize_Large" xml:space="preserve"> <value>Large</value> <comment>The size of the image</comment> </data> <data name="ImageResizer_DefaultSize_Medium" xml:space="preserve"> <value>Medium</value> <comment>The size of the image</comment> </data> <data name="ImageResizer_DefaultSize_Phone" xml:space="preserve"> <value>Phone</value> <comment>The size of the image referring to a Mobile Phone typical image size</comment> </data> <data name="ImageResizer_DefaultSize_Small" xml:space="preserve"> <value>Small</value> <comment>The size of the image</comment> </data> <data name="FancyZones_MoveWindowBasedOnRelativePosition_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Windows key + Up, down, left or right arrow key to move windows based on relative position</value> </data> <data name="FancyZones_MoveWindowLeftRightBasedOnZoneIndex_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Windows key + Left or right arrow keys to move windows based on zone index</value> </data> <data name="FancyZones_MoveWindowBasedOnRelativePosition_Description.Text" xml:space="preserve"> <value>Windows key +    or </value> <comment>Do not loc the icons (hex numbers)</comment> </data> <data name="FancyZones_MoveWindowLeftRightBasedOnZoneIndex_Description.Text" xml:space="preserve"> <value>Windows key +  or </value> <comment>Do not loc the icons (hex numbers)</comment> </data> <data name="FancyZones_MoveWindowBasedOnRelativePosition.Text" xml:space="preserve"> <value>Relative position</value> </data> <data name="FancyZones_MoveWindow.Header" xml:space="preserve"> <value>Move windows based on</value> </data> <data name="FancyZones_MoveWindowLeftRightBasedOnZoneIndex.Text" xml:space="preserve"> <value>Zone index</value> </data> <data name="ColorPicker_Editor.Header" xml:space="preserve"> <value>Color formats</value> </data> <data name="FancyZones_OverlappingZonesClosestCenter.Content" xml:space="preserve"> <value>Activate the zone whose center is closest to the cursor</value> </data> <data name="FancyZones_OverlappingZonesLargest.Content" xml:space="preserve"> <value>Activate the largest zone by area</value> </data> <data name="FancyZones_OverlappingZonesPositional.Content" xml:space="preserve"> <value>Split the overlapped area into multiple activation targets</value> </data> <data name="FancyZones_OverlappingZonesSmallest.Content" xml:space="preserve"> <value>Activate the smallest zone by area</value> </data> <data name="FancyZones_OverlappingZones.Header" xml:space="preserve"> <value>When multiple zones overlap</value> </data> <data name="PowerLauncher_Plugins.Header" xml:space="preserve"> <value>Plugins</value> </data> <data name="PowerLauncher_ActionKeyword.Header" xml:space="preserve"> <value>Direct activation command</value> </data> <data name="PowerLauncher_AuthoredBy.Text" xml:space="preserve"> <value>Authored by</value> <comment>example: Authored by Microsoft</comment> </data> <data name="PowerLauncher_IncludeInGlobalResultTitle.Text" xml:space="preserve"> <value>Include in global result</value> </data> <data name="PowerLauncher_IncludeInGlobalResultDescription.Text" xml:space="preserve"> <value>Show results on queries without direct activation command</value> </data> <data name="PowerLauncher_EnablePluginToggle.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Enable plugin</value> </data> <data name="PowerLauncher_EnablePluginToggle.OnContent" xml:space="preserve"> <value>On</value> </data> <data name="PowerLauncher_EnablePluginToggle.OffContent" xml:space="preserve"> <value>Off</value> </data> <data name="Run_AdditionalOptions.Text" xml:space="preserve"> <value>Additional options</value> </data> <data name="Run_NotAccessibleWarning.Title" xml:space="preserve"> <value>Please define an activation command or allow this plugin to be used in the global results.</value> </data> <data name="Run_AllPluginsDisabled.Title" xml:space="preserve"> <value>PowerToys Run can't provide any results without plugins</value> </data> <data name="Run_AllPluginsDisabled.Message" xml:space="preserve"> <value>Enable at least one plugin to get started</value> </data> <data name="Run_PluginUse.Header" xml:space="preserve"> <value>Plugins</value> </data> <data name="Run_PluginUseDescription.Text" xml:space="preserve"> <value>Include or remove plugins from the global results, change the direct activation phrase and configure additional options</value> </data> <data name="Run_PositionAppearance_GroupSettings.Header" xml:space="preserve"> <value>Position &amp; appearance</value> </data> <data name="Run_PositionHeader.Header" xml:space="preserve"> <value>Preferred monitor position</value> <comment>as in Show PowerToys Run on primary monitor</comment> </data> <data name="Run_PositionHeader.Description" xml:space="preserve"> <value>If multiple monitors are in use, PowerToys Run can be launched on the desired monitor</value> <comment>as in Show PowerToys Run on primary monitor</comment> </data> <data name="Run_Radio_Position_Cursor.Content" xml:space="preserve"> <value>Monitor with mouse cursor</value> </data> <data name="Run_Radio_Position_Focus.Content" xml:space="preserve"> <value>Monitor with focused window</value> </data> <data name="Run_Radio_Position_Primary_Monitor.Content" xml:space="preserve"> <value>Primary monitor</value> </data> <data name="Run_PluginsLoading.Text" xml:space="preserve"> <value>Plugins are loading...</value> </data> <data name="ColorPicker_ButtonDown.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Move the color down</value> </data> <data name="ColorPicker_ButtonUp.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Move the color up</value> </data> <data name="FancyZones_FlashZonesOnQuickSwitch.Content" xml:space="preserve"> <value>Flash zones when switching layout</value> </data> <data name="FancyZones_Layouts.Header" xml:space="preserve"> <value>Layouts</value> </data> <data name="FancyZones_QuickLayoutSwitch.Header" xml:space="preserve"> <value>Enable quick layout switch</value> </data> <data name="FancyZones_QuickLayoutSwitch.Description" xml:space="preserve"> <value>Layout-specific shortcuts can be configured in the editor</value> </data> <data name="FancyZones_QuickLayoutSwitch_GroupSettings.Text" xml:space="preserve"> <value>Quick layout switch</value> </data> <data name="Activation_Shortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="Activation_Shortcut.Description" xml:space="preserve"> <value>Customize the shortcut to activate this module</value> </data> <data name="Oobe_GetStarted.Text" xml:space="preserve"> <value>Let's get started!</value> </data> <data name="Oobe_PowerToysDescription.Text" xml:space="preserve"> <value>Welcome to PowerToys! These overviews will help you quickly learn the basics of all our utilities.</value> </data> <data name="Oobe_GettingStarted.Text" xml:space="preserve"> <value>Getting started</value> </data> <data name="Oobe_Launch.Text" xml:space="preserve"> <value>Launch</value> </data> <data name="Launch_ColorPicker.Content" xml:space="preserve"> <value>Launch Color Picker</value> </data> <data name="Oobe_LearnMore.Text" xml:space="preserve"> <value>Learn more about</value> </data> <data name="Oobe_ColorPicker.Description" xml:space="preserve"> <value>Color Picker is a system-wide color selection tool for Windows that enables you to pick colors from any currently running application and automatically copies it in a configurable format to your clipboard.</value> </data> <data name="Oobe_FancyZones.Description" xml:space="preserve"> <value>FancyZones is a window manager that makes it easy to create complex window layouts and quickly position windows into those layouts.</value> </data> <data name="Oobe_FileLocksmith.Description" xml:space="preserve"> <value>File Locksmith lists which processes are using the selected files or directories and allows closing those processes.</value> </data> <data name="Oobe_FileExplorer.Description" xml:space="preserve"> <value>PowerToys introduces add-ons to the Windows File Explorer that will enable files like Markdown (.md), PDF (.pdf), SVG (.svg), STL (.stl), G-code (.gcode) and developer files to be viewed in the preview pane. It introduces File Explorer thumbnail support for a number of these file types as well.</value> </data> <data name="Oobe_ImageResizer.Description" xml:space="preserve"> <value>Image Resizer is a Windows shell extension for simple bulk image-resizing.</value> </data> <data name="Oobe_KBM.Description" xml:space="preserve"> <value>Keyboard Manager allows you to customize the keyboard to be more productive by remapping keys and creating your own keyboard shortcuts.</value> </data> <data name="Oobe_MouseWithoutBorders.Description" xml:space="preserve"> <value>Mouse Without Borders enables using the mouse pointer, keyboard, clipboard and drag and drop between machines in the same local network.</value> </data> <data name="Oobe_PowerRename.Description" xml:space="preserve"> <value>PowerRename enables you to perform simple bulk renaming, searching and replacing file names.</value> </data> <data name="Oobe_Run.Description" xml:space="preserve"> <value>PowerToys Run is a quick launcher for power users that contains some additional features without sacrificing performance.</value> </data> <data name="Oobe_MeasureTool.Description" xml:space="preserve"> <value>Screen Ruler is a quick and easy way to measure pixels on your screen.</value> </data> <data name="Oobe_ShortcutGuide.Description" xml:space="preserve"> <value>Shortcut Guide presents the user with a listing of available shortcuts for the current state of the desktop.</value> </data> <data name="Oobe_VideoConference.Description" xml:space="preserve"> <value>Video Conference Mute allows users to quickly mute the microphone and turn off the camera while on a conference call with a single keystroke, regardless of what application has focus on your computer.</value> </data> <data name="Oobe_MouseUtils.Description" xml:space="preserve"> <value>A collection of utilities to enhance your mouse.</value> <comment>Mouse as in the hardware peripheral</comment> </data> <data name="Oobe_Overview.Description" xml:space="preserve"> <value>Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. Take a moment to preview the various utilities listed or view our comprehensive documentation.</value> </data> <data name="Oobe_Overview_DescriptionLinkText.Text" xml:space="preserve"> <value>Documentation on Microsoft Docs</value> </data> <data name="ReleaseNotes.Content" xml:space="preserve"> <value>Release notes</value> </data> <data name="Oobe_ColorPicker_HowToUse.Text" xml:space="preserve"> <value>to open Color Picker.</value> </data> <data name="Oobe_ColorPicker_TipsAndTricks.Text" xml:space="preserve"> <value>To select a color with more precision, **scroll the mouse wheel** to zoom in.</value> </data> <data name="Oobe_FancyZones_HowToUse.Text" xml:space="preserve"> <value>**Shift** + **drag the window** to snap a window to a zone, and release the window in the desired zone.</value> </data> <data name="Oobe_FancyZones_HowToUse_Shortcut.Text" xml:space="preserve"> <value>to open the FancyZones editor.</value> </data> <data name="Oobe_FancyZones_TipsAndTricks.Text" xml:space="preserve"> <value>Snap a window to multiple zones by holding the **Ctrl** key (while also holding **Shift**) when dragging a window.</value> </data> <data name="Oobe_FileLocksmith_HowToUse.Text" xml:space="preserve"> <value>In File Explorer, right-click one or more selected files and select **What's using this file?** from the context menu.</value> </data> <data name="Oobe_FileLocksmith_TipsAndTricks.Text" xml:space="preserve"> <value>Press the **Restart Elevated** button from the File Locksmith UI to also get information on elevated processes that might be using the files.</value> </data> <data name="Oobe_FileExplorer_HowToEnable.Text" xml:space="preserve"> <value>Select **View** which is located at the top of File Explorer, followed by **Show**, and then **Preview pane**. From there, simply click on one of the supported files in the File Explorer and observe the content on the preview pane!</value> </data> <data name="Oobe_HowToCreateMappings.Text" xml:space="preserve"> <value>How to create mappings</value> </data> <data name="Oobe_HowToEnable.Text" xml:space="preserve"> <value>How to enable</value> </data> <data name="Oobe_HowToLaunch.Text" xml:space="preserve"> <value>How to launch</value> </data> <data name="Oobe_HowToUse.Text" xml:space="preserve"> <value>How to use</value> </data> <data name="Oobe_ImageResizer_HowToLaunch.Text" xml:space="preserve"> <value>In File Explorer, right-click one or more image files and select **Resize pictures** from the context menu.</value> </data> <data name="Oobe_ImageResizer_TipsAndTricks.Text" xml:space="preserve"> <value>Want a custom size? You can add them in the PowerToys Settings!</value> </data> <data name="Oobe_KBM_HowToCreateMappings.Text" xml:space="preserve"> <value>Launch **PowerToys Settings**, navigate to the Keyboard Manager menu, and select either **Remap a key** or **Remap a shortcut**.</value> </data> <data name="Oobe_KBM_TipsAndTricks.Text" xml:space="preserve"> <value>Want to only have a shortcut work for a single application? Use the Target App field when creating the shortcut remapping.</value> </data> <data name="Oobe_MouseWithoutBorders_HowToUse.Text" xml:space="preserve"> <value>Use the Settings screen on each machine to connect to the other machines using the same key. If a connection is not working, it may be necessary to add an exception to the Windows Firewall.</value> </data> <data name="Oobe_MouseWithoutBorders_TipsAndTricks.Text" xml:space="preserve"> <value>Use the service option in Settings to install a service enabling Mouse Without Borders to function even in the lock screen.</value> </data> <data name="Oobe_PowerRename_HowToUse.Text" xml:space="preserve"> <value>In File Explorer, right-click one or more selected files and select **PowerRename** from the context menu.</value> </data> <data name="Oobe_PowerRename_TipsAndTricks.Text" xml:space="preserve"> <value>PowerRename supports searching for files using regular expressions to enable more advanced renaming functionalities.</value> </data> <data name="Oobe_Run_HowToLaunch.Text" xml:space="preserve"> <value>to open Run and just start typing.</value> </data> <data name="Oobe_Run_TipsAndTricks.Text" xml:space="preserve"> <value>PowerToys Run supports various action keys to funnel search queries for a specific subset of results. Typing `&lt;` searches for running processes only, `?` will search only for file, or `.` for installed applications! See PowerToys documentation for the complete set of 'Action Keys' available.</value> </data> <data name="Oobe_ShortcutGuide_HowToLaunch.Text" xml:space="preserve"> <value>to open Shortcut Guide, press it again to close or press **Esc**.</value> </data> <data name="Oobe_TipsAndTricks.Text" xml:space="preserve"> <value>Tips &amp; tricks</value> </data> <data name="Oobe_VideoConference_ToggleMicVid.Text" xml:space="preserve"> <value>to toggle both your microphone and video</value> </data> <data name="Oobe_VideoConference_ToggleMic.Text" xml:space="preserve"> <value>to toggle your microphone</value> </data> <data name="Oobe_VideoConference_PushToTalkMic.Text" xml:space="preserve"> <value>to toggle your microphone until key release</value> </data> <data name="Oobe_VideoConference_ToggleVid.Text" xml:space="preserve"> <value>to toggle your video</value> </data> <data name="Oobe_MeasureTool_Activation.Text" xml:space="preserve"> <value>to bring up the Screen Ruler command bar.</value> </data> <data name="Oobe_MeasureTool_HowToLaunch.Text" xml:space="preserve"> <value>The Bounds mode lets you select a specific area to measure. You can also shift-drag an area to persist in on screen. The various Spacing modes allows tracing similar pixels along horizontal and vertical axes with a customizable pixel tolerance threshold (use settings or mouse wheel to adjust it).</value> </data> <data name="Oobe_MeasureTool.Title" xml:space="preserve"> <value>Screen Ruler</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_ColorPicker.Title" xml:space="preserve"> <value>Color Picker</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_FancyZones.Title" xml:space="preserve"> <value>FancyZones</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_FileLocksmith.Title" xml:space="preserve"> <value>File Locksmith</value> </data> <data name="Oobe_ImageResizer.Title" xml:space="preserve"> <value>Image Resizer</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_KBM.Title" xml:space="preserve"> <value>Keyboard Manager</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_MouseWithoutBorders.Title" xml:space="preserve"> <value>Mouse Without Borders</value> <comment>Product name. Do not localize this string</comment> </data> <data name="Oobe_PowerRename.Title" xml:space="preserve"> <value>PowerRename</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_Run.Title" xml:space="preserve"> <value>PowerToys Run</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_ShortcutGuide.Title" xml:space="preserve"> <value>Shortcut Guide</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_VideoConference.Title" xml:space="preserve"> <value>Video Conference Mute</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_Overview.Title" xml:space="preserve"> <value>Welcome</value> </data> <data name="Oobe_WhatsNew.Text" xml:space="preserve"> <value>What's new</value> </data> <data name="Oobe_WhatsNew_LoadingError.Title" xml:space="preserve"> <value>Couldn't load the release notes.</value> </data> <data name="Oobe_WhatsNew_LoadingError.Message" xml:space="preserve"> <value>Please check your internet connection.</value> </data> <data name="Oobe_WhatsNew_ProxyAuthenticationWarning.Title" xml:space="preserve"> <value>Couldn't load the release notes.</value> </data> <data name="Oobe_WhatsNew_ProxyAuthenticationWarning.Message" xml:space="preserve"> <value>Your proxy server requires authentication.</value> </data> <data name="Oobe_WhatsNew_DetailedReleaseNotesLink.Text" xml:space="preserve"> <value>See more detailed release notes on GitHub</value> <comment>Don't loc "GitHub", it's the name of a product</comment> </data> <data name="OOBE_Settings.Content" xml:space="preserve"> <value>Open Settings</value> </data> <data name="Oobe_NavViewItem.Content" xml:space="preserve"> <value>Welcome to PowerToys</value> <comment>Don't loc "PowerToys"</comment> </data> <data name="Feedback_NavViewItem.Content" xml:space="preserve"> <value>Give feedback</value> </data> <data name="OobeWindow_Title" xml:space="preserve"> <value>Welcome to PowerToys</value> </data> <data name="OobeWindow_TitleTxt.Text" xml:space="preserve"> <value>Welcome to PowerToys</value> </data> <data name="SettingsWindow_Title" xml:space="preserve"> <value>PowerToys Settings</value> <comment>Title of the settings window when running as user</comment> </data> <data name="Awake.ModuleTitle" xml:space="preserve"> <value>Awake</value> </data> <data name="Awake.ModuleDescription" xml:space="preserve"> <value>A convenient way to keep your PC awake on-demand.</value> </data> <data name="Awake_EnableSettingsCard.Header" xml:space="preserve"> <value>Enable Awake</value> <comment>Awake is a product name, do not loc</comment> </data> <data name="Awake_NoKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep using the selected power plan</value> </data> <data name="Awake_IndefiniteKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep awake indefinitely</value> </data> <data name="Awake_TemporaryKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep awake for a time interval</value> </data> <data name="Awake_ExpirableKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep awake until expiration</value> </data> <data name="Awake_DisplaySettingsCard.Header" xml:space="preserve"> <value>Keep screen on</value> </data> <data name="Awake_DisplaySettingsCard.Description" xml:space="preserve"> <value>This setting is only available when keeping the PC awake</value> </data> <data name="Awake_ExpirationSettingsExpander.Description" xml:space="preserve"> <value>Keep custom awake state until a specific date and time</value> </data> <data name="Awake_ModeSettingsCard.Header" xml:space="preserve"> <value>Mode</value> </data> <data name="Awake_BehaviorSettingsGroup.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="Awake_IntervalHoursInput.Header" xml:space="preserve"> <value>Hours</value> </data> <data name="Awake_IntervalMinutesInput.Header" xml:space="preserve"> <value>Minutes</value> </data> <data name="Awake_ExpirationSettingsExpander_Date.Header" xml:space="preserve"> <value>End date</value> </data> <data name="Awake_ExpirationSettingsExpander_Time.Header" xml:space="preserve"> <value>End time</value> </data> <data name="Oobe_Awake.Title" xml:space="preserve"> <value>Awake</value> <comment>Module name, do not loc</comment> </data> <data name="Oobe_Awake.Description" xml:space="preserve"> <value>Awake is a Windows tool designed to keep your PC awake on-demand without having to manage its power settings. This behavior can be helpful when running time-consuming tasks while ensuring that your PC does not go to sleep or turn off its screens.</value> </data> <data name="Oobe_Awake_HowToUse.Text" xml:space="preserve"> <value>Open **PowerToys Settings** and enable Awake</value> </data> <data name="Oobe_Awake_TipsAndTricks.Text" xml:space="preserve"> <value>You can always change modes quickly by **right-clicking the Awake icon** in the system tray.</value> </data> <data name="General_FailedToDownloadTheNewVersion.Title" xml:space="preserve"> <value>An error occurred trying to install this update:</value> </data> <data name="General_InstallNow.Content" xml:space="preserve"> <value>Install now</value> </data> <data name="General_ReadMore.Text" xml:space="preserve"> <value>Read more</value> </data> <data name="General_NewVersionAvailable.Title" xml:space="preserve"> <value>An update is available:</value> </data> <data name="General_Downloading.Text" xml:space="preserve"> <value>Downloading...</value> </data> <data name="General_TryAgainToDownloadAndInstall.Content" xml:space="preserve"> <value>Try again to download and install</value> </data> <data name="General_CheckingForUpdates.Text" xml:space="preserve"> <value>Checking for updates...</value> </data> <data name="General_NewVersionReadyToInstall.Title" xml:space="preserve"> <value>An update is ready to install:</value> </data> <data name="General_UpToDate.Title" xml:space="preserve"> <value>PowerToys is up to date</value> </data> <data name="General_CantCheck.Title" xml:space="preserve"> <value>Network error. Please try again later</value> </data> <data name="General_DownloadAndInstall.Content" xml:space="preserve"> <value>Download &amp; install</value> </data> <data name="ImageResizer_Fit_Fill_ThirdPersonSingular" xml:space="preserve"> <value>Fills</value> </data> <data name="ImageResizer_Fit_Fit_ThirdPersonSingular" xml:space="preserve"> <value>Fits within</value> </data> <data name="ImageResizer_Fit_Stretch_ThirdPersonSingular" xml:space="preserve"> <value>Stretches to</value> </data> <data name="ImageResizer_Unit_Centimeter" xml:space="preserve"> <value>Centimeters</value> </data> <data name="ImageResizer_Unit_Inch" xml:space="preserve"> <value>Inches</value> </data> <data name="ImageResizer_Unit_Percent" xml:space="preserve"> <value>Percent</value> </data> <data name="ImageResizer_Unit_Pixel" xml:space="preserve"> <value>Pixels</value> </data> <data name="EditButton.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Edit</value> </data> <data name="ImageResizer_EditSize.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Edit size</value> </data> <data name="No" xml:space="preserve"> <value>No</value> <comment>Label of a cancel button</comment> </data> <data name="Delete_Dialog_Description" xml:space="preserve"> <value>Are you sure you want to delete this item?</value> </data> <data name="Yes" xml:space="preserve"> <value>Yes</value> <comment>Label of a confirmation button</comment> </data> <data name="SeeWhatsNew.Content" xml:space="preserve"> <value>See what's new</value> </data> <data name="Awake_ModeSettingsCard.Description" xml:space="preserve"> <value>Manage the state of your device when Awake is active</value> </data> <data name="ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="Enable_ColorFormat.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Enable colorformat</value> </data> <data name="More_Options_Button.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>More options</value> </data> <data name="More_Options_ButtonTooltip.Text" xml:space="preserve"> <value>More options</value> </data> <data name="To.Text" xml:space="preserve"> <value>to</value> <comment>as in: from x to y</comment> </data> <data name="LearnMore_Awake.Text" xml:space="preserve"> <value>Learn more about Awake</value> <comment>Awake is a product name, do not loc</comment> </data> <data name="LearnMore_ColorPicker.Text" xml:space="preserve"> <value>Learn more about Color Picker</value> <comment>Color Picker is a product name, do not loc</comment> </data> <data name="LearnMore_FancyZones.Text" xml:space="preserve"> <value>Learn more about FancyZones</value> <comment>FancyZones is a product name, do not loc</comment> </data> <data name="LearnMore_FileLocksmith.Text" xml:space="preserve"> <value>Learn more about File Locksmith</value> </data> <data name="LearnMore_ImageResizer.Text" xml:space="preserve"> <value>Learn more about Image Resizer</value> <comment>Image Resizer is a product name, do not loc</comment> </data> <data name="LearnMore_KBM.Text" xml:space="preserve"> <value>Learn more about Keyboard Manager</value> <comment>Keyboard Manager is a product name, do not loc</comment> </data> <data name="LearnMore_MouseUtils.Text" xml:space="preserve"> <value>Learn more about Mouse utilities</value> <comment>Mouse utilities is a product name, do not loc</comment> </data> <data name="LearnMore_PastePlain.Text" xml:space="preserve"> <value>Learn more about Paste as Plain Text</value> <comment> Paste as Plain Text is the name of the module. </comment> </data> <data name="LearnMore_MouseWithoutBorders.Text" xml:space="preserve"> <value>Learn more about Mouse Without Borders</value> <comment>Mouse Without Borders is the name of the module. </comment> </data> <data name="LearnMore_PowerPreview.Text" xml:space="preserve"> <value>Learn more about File Explorer add-ons</value> <comment>File Explorer is a product name, localize as Windows does</comment> </data> <data name="LearnMore_Peek.Text" xml:space="preserve"> <value>Learn more about Peek</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="LearnMore_PowerRename.Text" xml:space="preserve"> <value>Learn more about PowerRename</value> <comment>PowerRename is a product name, do not loc</comment> </data> <data name="LearnMore_Run.Text" xml:space="preserve"> <value>Learn more about PowerToys Run</value> <comment>PowerToys Run is a product name, do not loc</comment> </data> <data name="LearnMore_MeasureTool.Text" xml:space="preserve"> <value>Learn more about Screen Ruler</value> <comment>Screen Ruler is a product name, do not loc</comment> </data> <data name="LearnMore_ShortcutGuide.Text" xml:space="preserve"> <value>Learn more about Shortcut Guide</value> <comment>Shortcut Guide is a product name, do not loc</comment> </data> <data name="LearnMore_VCM.Text" xml:space="preserve"> <value>Learn more about Video Conference Mute</value> <comment>Video Conference Mute is a product name, do not loc</comment> </data> <data name="Oobe_FileExplorer.Title" xml:space="preserve"> <value>File Explorer add-ons</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_MouseUtils.Title" xml:space="preserve"> <value>Mouse utilities</value> <comment>Mouse as in the hardware peripheral</comment> </data> <data name="Oobe_MouseUtils_FindMyMouse.Text" xml:space="preserve"> <value>Find My Mouse</value> <comment>Mouse as in the hardware peripheral</comment> </data> <data name="Oobe_MouseUtils_FindMyMouse_Description.Text" xml:space="preserve"> <value>Focus the mouse pointer pressing the Ctrl key twice, using a custom shortcut or shaking the mouse.</value> <comment>Mouse as in the hardware peripheral. Key as in a keyboard key</comment> </data> <data name="Oobe_MouseUtils_MouseHighlighter.Text" xml:space="preserve"> <value>Mouse Highlighter</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MouseHighlighter_Description.Text" xml:space="preserve"> <value>Use a keyboard shortcut to highlight left and right mouse clicks.</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MousePointerCrosshairs.Text" xml:space="preserve"> <value>Mouse Pointer Crosshairs</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MousePointerCrosshairs_Description.Text" xml:space="preserve"> <value>Draw crosshairs centered around the mouse pointer.</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MouseJump.Text" xml:space="preserve"> <value>Mouse Jump</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MouseJump_Description.Text" xml:space="preserve"> <value>Jump the mouse pointer quickly to anywhere on your desktop.</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Launch_Run.Content" xml:space="preserve"> <value>Launch PowerToys Run</value> </data> <data name="Launch_ShortcutGuide.Content" xml:space="preserve"> <value>Launch Shortcut Guide</value> </data> <data name="ColorPicker_ColorFormat_ToggleSwitch.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Show format in editor</value> </data> <data name="GeneralPage_Documentation.Text" xml:space="preserve"> <value>Documentation</value> </data> <data name="PowerLauncher_SearchList.PlaceholderText" xml:space="preserve"> <value>Search this list</value> </data> <data name="PowerLauncher_SearchList.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Search this list</value> </data> <data name="Awake.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="ColorPicker.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="General.SecondaryLinksHeader" xml:space="preserve"> <value>Related information</value> </data> <data name="ImageResizer.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="MouseUtils.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="PowerLauncher.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="PowerRename.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="EditTooltip.Text" xml:space="preserve"> <value>Edit</value> </data> <data name="RemoveTooltip.Text" xml:space="preserve"> <value>Remove</value> </data> <data name="Activation_Shortcut_Cancel" xml:space="preserve"> <value>Cancel</value> </data> <data name="Activation_Shortcut_Description" xml:space="preserve"> <value>Press a combination of keys to change this shortcut</value> </data> <data name="Activation_Shortcut_With_Disable_Description" xml:space="preserve"> <value>Press a combination of keys to change this shortcut. Right-click to remove the key combination, thereby deactivating the shortcut.</value> </data> <data name="Activation_Shortcut_Reset" xml:space="preserve"> <value>Reset</value> </data> <data name="Activation_Shortcut_Save" xml:space="preserve"> <value>Save</value> </data> <data name="Activation_Shortcut_Title" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="InvalidShortcut.Title" xml:space="preserve"> <value>Invalid shortcut</value> </data> <data name="InvalidShortcutWarningLabel.Text" xml:space="preserve"> <value>Only shortcuts that start with **Windows key**, **Ctrl**, **Alt** or **Shift** are valid.</value> <comment>The ** sequences are used for text formatting of the key names. Don't remove them on translation.</comment> </data> <data name="FancyZones_SpanZonesAcrossMonitors.Description" xml:space="preserve"> <value>All monitors must have the same DPI scaling and will be treated as one large combined rectangle which contains all monitors</value> </data> <data name="ImageResizer_DefaultSize_NewSizePrefix" xml:space="preserve"> <value>New size</value> <comment>First part of the default name of new sizes that can be added in PT's settings ui.</comment> </data> <data name="Awake_IntervalSettingsCard.Header" xml:space="preserve"> <value>Interval before returning to the previous awakeness state</value> </data> <data name="Awake_ExpirationSettingsExpander.Header" xml:space="preserve"> <value>End date and time</value> </data> <data name="MouseUtils.ModuleTitle" xml:space="preserve"> <value>Mouse utilities</value> </data> <data name="MouseUtils.ModuleDescription" xml:space="preserve"> <value>A collection of mouse utilities.</value> </data> <data name="MouseUtils_FindMyMouse.Header" xml:space="preserve"> <value>Find My Mouse</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_FindMyMouse.Description" xml:space="preserve"> <value>Find My Mouse highlights the position of the cursor when pressing the Ctrl key twice, using a custom shortcut or when shaking the mouse.</value> <comment>"Ctrl" is a keyboard key. "Find My Mouse" is the name of the utility</comment> </data> <data name="MouseUtils_Enable_FindMyMouse.Header" xml:space="preserve"> <value>Enable Find My Mouse</value> <comment>"Find My Mouse" is the name of the utility.</comment> </data> <data name="MouseUtils_FindMyMouse_ActivationMethod.Header" xml:space="preserve"> <value>Activation method</value> </data> <data name="MouseUtils_FindMyMouse_ActivationDoubleControlPress.Content" xml:space="preserve"> <value>Press Left Control twice</value> <comment>Left control is the physical key on the keyboard.</comment> </data> <data name="MouseUtils_FindMyMouse_ActivationShakeMouse.Content" xml:space="preserve"> <value>Shake mouse</value> <comment>Mouse is the hardware peripheral.</comment> </data> <data name="MouseUtils_FindMyMouse_ExcludedApps.Description" xml:space="preserve"> <value>Prevents module activation when an excluded application is the foreground application</value> </data> <data name="MouseUtils_FindMyMouse_ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="MouseUtils_FindMyMouse_ExcludedApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> </data> <data name="MouseUtils_Prevent_Activation_On_Game_Mode.Content" xml:space="preserve"> <value>Do not activate when Game Mode is on</value> <comment>"Game mode" is the Windows feature to prevent notification when playing a game.</comment> </data> <data name="MouseUtils_FindMyMouse_BackgroundColor.Header" xml:space="preserve"> <value>Background color</value> </data> <data name="MouseUtils_FindMyMouse_SpotlightColor.Header" xml:space="preserve"> <value>Spotlight color</value> </data> <data name="MouseUtils_FindMyMouse_OverlayOpacity.Header" xml:space="preserve"> <value>Overlay opacity (%)</value> </data> <data name="MouseUtils_FindMyMouse_SpotlightRadius.Header" xml:space="preserve"> <value>Spotlight radius (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_FindMyMouse_SpotlightInitialZoom.Header" xml:space="preserve"> <value>Spotlight initial zoom</value> </data> <data name="MouseUtils_FindMyMouse_SpotlightInitialZoom.Description" xml:space="preserve"> <value>Spotlight zoom factor at animation start</value> </data> <data name="MouseUtils_FindMyMouse_AnimationDurationMs.Header" xml:space="preserve"> <value>Animation duration (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_FindMyMouse_AnimationDurationMs.Description" xml:space="preserve"> <value>Time before the spotlight appears (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_FindMyMouse_AnimationDurationMs_Disabled.Message" xml:space="preserve"> <value>Animations are disabled by OS. See Settings &gt; Accessibility &gt; Visual effects</value> </data> <data name="MouseUtils_FindMyMouse_ShakingMinimumDistance.Header" xml:space="preserve"> <value>Shake minimum distance</value> </data> <data name="MouseUtils_FindMyMouse_ShakingMinimumDistance.Description" xml:space="preserve"> <value>The minimum distance for mouse shaking activation, for adjusting sensitivity</value> </data> <data name="MouseUtils_MouseHighlighter.Header" xml:space="preserve"> <value>Mouse Highlighter</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_MouseHighlighter.Description" xml:space="preserve"> <value>Mouse Highlighter mode will highlight mouse clicks.</value> <comment>"Mouse Highlighter" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_Enable_MouseHighlighter.Header" xml:space="preserve"> <value>Enable Mouse Highlighter</value> <comment>"Find My Mouse" is the name of the utility.</comment> </data> <data name="MouseUtils_MouseHighlighter_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MouseUtils_MouseHighlighter_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to turn on or off this mode</value> <comment>"Mouse Highlighter" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_MouseHighlighter_PrimaryButtonClickColor.Header" xml:space="preserve"> <value>Primary button highlight color</value> </data> <data name="MouseUtils_MouseHighlighter_SecondaryButtonClickColor.Header" xml:space="preserve"> <value>Secondary button highlight color</value> </data> <data name="MouseUtils_MouseHighlighter_HighlightRadius.Header" xml:space="preserve"> <value>Radius (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDelayMs.Header" xml:space="preserve"> <value>Fade delay (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDelayMs.Description" xml:space="preserve"> <value>Time before the highlight begins to fade (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDurationMs.Header" xml:space="preserve"> <value>Fade duration (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDurationMs.Description" xml:space="preserve"> <value>Duration of the disappear animation (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MousePointerCrosshairs.Header" xml:space="preserve"> <value>Mouse Pointer Crosshairs</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_MousePointerCrosshairs.Description" xml:space="preserve"> <value>Mouse Pointer Crosshairs draws crosshairs centered on the mouse pointer.</value> <comment>"Mouse Pointer Crosshairs" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_Enable_MousePointerCrosshairs.Header" xml:space="preserve"> <value>Enable Mouse Pointer Crosshairs</value> <comment>"Mouse Pointer Crosshairs" is the name of the utility.</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MouseUtils_MousePointerCrosshairs_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to show/hide the crosshairs</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsColor.Header" xml:space="preserve"> <value>Crosshairs color</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsOpacity.Header" xml:space="preserve"> <value>Crosshairs opacity (%)</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsRadius.Header" xml:space="preserve"> <value>Crosshairs center radius (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsThickness.Header" xml:space="preserve"> <value>Crosshairs thickness (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsBorderColor.Header" xml:space="preserve"> <value>Crosshairs border color</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsBorderSize.Header" xml:space="preserve"> <value>Crosshairs border size (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_IsCrosshairsFixedLengthEnabled.Header" xml:space="preserve"> <value>Fix crosshairs length</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsFixedLength.Header" xml:space="preserve"> <value>Crosshairs fixed length (px)</value> <comment>px = pixels</comment> </data> <data name="FancyZones_Radio_Custom_Colors.Content" xml:space="preserve"> <value>Custom colors</value> </data> <data name="FancyZones_Radio_Default_Theme.Content" xml:space="preserve"> <value>Windows default</value> </data> <data name="ColorModeHeader.Header" xml:space="preserve"> <value>App theme</value> </data> <data name="FancyZones_Zone_Appearance.Description" xml:space="preserve"> <value>Customize the way zones look</value> </data> <data name="FancyZones_Zone_Appearance.Header" xml:space="preserve"> <value>Zone appearance</value> </data> <data name="VideoConference_DeprecationWarning.Title" xml:space="preserve"> <value>VCM is moving into legacy mode (maintenance only).</value> </data> <data name="VideoConference_DeprecationWarningButton.Content" xml:space="preserve"> <value>Learn more</value> </data> <data name="VideoConference_RunAsAdminRequired.Title" xml:space="preserve"> <value>You need to run as administrator to modify these settings.</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_GCODE.Header" xml:space="preserve"> <value>Geometric Code</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_GCODE.Description" xml:space="preserve"> <value>Only .gcode files with embedded thumbnails are supported</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_GCODE.Header" xml:space="preserve"> <value>Geometric Code</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_GCODE.Description" xml:space="preserve"> <value>Only .gcode files with embedded thumbnails are supported</value> </data> <data name="FancyZones_NumberColor.Header" xml:space="preserve"> <value>Number color</value> </data> <data name="FancyZones_ShowZoneNumberCheckBoxControl.Content" xml:space="preserve"> <value>Show zone number</value> </data> <data name="ToggleSwitch.OffContent" xml:space="preserve"> <value>Off</value> <comment>The state of a ToggleSwitch when it's off</comment> </data> <data name="ToggleSwitch.OnContent" xml:space="preserve"> <value>On</value> <comment>The state of a ToggleSwitch when it's on</comment> </data> <data name="CropAndLock.ModuleDescription" xml:space="preserve"> <value>Crop And Lock allows you to crop a current application into a smaller window or just create a thumbnail. Focus the target window and press the shortcut to start cropping.</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="CropAndLock.ModuleTitle" xml:space="preserve"> <value>Crop And Lock </value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="CropAndLock_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="CropAndLock_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="Shell_CropAndLock.Content" xml:space="preserve"> <value>Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="LearnMore_CropAndLock.Text" xml:space="preserve"> <value>Learn more about Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="CropAndLock_ReparentActivation_Shortcut.Header" xml:space="preserve"> <value>Reparent shortcut</value> </data> <data name="CropAndLock_ReparentActivation_Shortcut.Description" xml:space="preserve"> <value>Shortcut to crop an application's window into a cropped window. This is experimental and can cause issues with some applications, since the cropped window will contain the original application window.</value> </data> <data name="CropAndLock_ThumbnailActivation_Shortcut.Header" xml:space="preserve"> <value>Thumbnail shortcut</value> </data> <data name="CropAndLock_ThumbnailActivation_Shortcut.Description" xml:space="preserve"> <value>Shortcut to crop and create a thumbnail of another window. The application isn't controllable through the thumbnail but it'll have less compatibility issues. </value> </data> <data name="CropAndLock.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="Oobe_CropAndLock.Title" xml:space="preserve"> <value>Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="Oobe_CropAndLock.Description" xml:space="preserve"> <value>Crop And Lock allows you to crop a current application into a smaller window or just create a thumbnail. Focus the target window and press the shortcut to start cropping.</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="Oobe_CropAndLock_HowToUse_Thumbnail.Text" xml:space="preserve"> <value>to crop and create a thumbnail of another window. The application isn't controllable through the thumbnail but it'll have less compatibility issues.</value> </data> <data name="Oobe_CropAndLock_HowToUse_Reparent.Text" xml:space="preserve"> <value>to crop an application's window into a cropped window. This is experimental and can cause issues with some applications, since the cropped window will contain the original application window.</value> </data> <data name="AlwaysOnTop.ModuleDescription" xml:space="preserve"> <value>Always On Top is a quick and easy way to pin windows on top.</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop.ModuleTitle" xml:space="preserve"> <value>Always On Top </value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="Peek_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="AlwaysOnTop_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_ExcludedApps.Description" xml:space="preserve"> <value>Excludes an application from pinning on top</value> </data> <data name="AlwaysOnTop_ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="AlwaysOnTop_ExcludedApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> </data> <data name="AlwaysOnTop_FrameColor.Header" xml:space="preserve"> <value>Color</value> </data> <data name="AlwaysOnTop_FrameEnabled.Header" xml:space="preserve"> <value>Show a border around the pinned window</value> </data> <data name="AlwaysOnTop_FrameThickness.Header" xml:space="preserve"> <value>Thickness (px)</value> <comment>px = pixels</comment> </data> <data name="AlwaysOnTop_Behavior_GroupSettings.Header" xml:space="preserve"> <value>Appearance &amp; behavior</value> </data> <data name="Shell_AlwaysOnTop.Content" xml:space="preserve"> <value>Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_GameMode.Content" xml:space="preserve"> <value>Do not activate when Game Mode is on</value> <comment>Game Mode is a Windows feature</comment> </data> <data name="AlwaysOnTop_SoundTitle.Header" xml:space="preserve"> <value>Sound</value> </data> <data name="AlwaysOnTop_Sound.Content" xml:space="preserve"> <value>Play a sound when pinning a window</value> </data> <data name="AlwaysOnTop_Behavior.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="LearnMore_AlwaysOnTop.Text" xml:space="preserve"> <value>Learn more about Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="AlwaysOnTop_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to pin or unpin an app window</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="Oobe_AlwaysOnTop.Title" xml:space="preserve"> <value>Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="Oobe_AlwaysOnTop.Description" xml:space="preserve"> <value>Always On Top improves your multitasking workflow by pinning an application window so it's always in front - even when focus changes to another window after that.</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="Oobe_AlwaysOnTop_HowToUse.Text" xml:space="preserve"> <value>to pin or unpin the selected window so it's always on top of all other windows.</value> </data> <data name="Oobe_AlwaysOnTop_TipsAndTricks.Text" xml:space="preserve"> <value>You can tweak the visual outline of the pinned windows in PowerToys settings.</value> </data> <data name="AlwaysOnTop_FrameColor_Mode.Header" xml:space="preserve"> <value>Color mode</value> </data> <data name="AlwaysOnTop_Radio_Custom_Color.Content" xml:space="preserve"> <value>Custom color</value> </data> <data name="AlwaysOnTop_Radio_Windows_Default.Content" xml:space="preserve"> <value>Windows default</value> </data> <data name="FileExplorerPreview.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Monaco_Wrap_Text.Content" xml:space="preserve"> <value>Wrap text</value> <comment>Feature on or off</comment> </data> <data name="FancyZones_AllowPopupWindowSnap.Description" xml:space="preserve"> <value>This setting can affect all popup windows including notifications</value> </data> <data name="FancyZones_AllowPopupWindowSnap.Header" xml:space="preserve"> <value>Allow popup windows snapping</value> </data> <data name="FancyZones_AllowChildWindowSnap.Content" xml:space="preserve"> <value>Allow child windows snapping</value> </data> <data name="Shell_WhatsNew.Content" xml:space="preserve"> <value>What's new</value> </data> <data name="Shell_Peek.Content" xml:space="preserve"> <value>Peek</value> <comment>Product name: Navigation view item name for Peek</comment> </data> <data name="Peek.ModuleTitle" xml:space="preserve"> <value>Peek</value> </data> <data name="Peek.ModuleDescription" xml:space="preserve"> <value>Peek is a quick and easy way to preview files. Select a file in File Explorer and press the shortcut to open the file preview.</value> </data> <data name="Peek_EnablePeek.Header" xml:space="preserve"> <value>Enable Peek</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="Peek_BehaviorHeader.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="Peek_AlwaysRunNotElevated.Header" xml:space="preserve"> <value>Always run not elevated, even when PowerToys is elevated</value> </data> <data name="Peek_AlwaysRunNotElevated.Description" xml:space="preserve"> <value>Tries to run Peek without elevated permissions, to fix access to network shares. You need to disable and re-enable Peek for changes to this value to take effect.</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="Peek_CloseAfterLosingFocus.Header" xml:space="preserve"> <value>Automatically close the Peek window after it loses focus</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="FancyZones_DisableRoundCornersOnWindowSnap.Content" xml:space="preserve"> <value>Disable round corners when window is snapped</value> </data> <data name="PowerLauncher_SearchQueryTuningEnabled.Description" xml:space="preserve"> <value>Fine tune results ordering</value> </data> <data name="PowerLauncher_SearchQueryTuningEnabled.Header" xml:space="preserve"> <value>Results order tuning</value> </data> <data name="PowerLauncher_SearchClickedItemWeight.Description" xml:space="preserve"> <value>Use a higher number to get selected results to rise faster. The default is 5, 0 to disable.</value> </data> <data name="PowerLauncher_SearchClickedItemWeight.Header" xml:space="preserve"> <value>Selected item weight</value> </data> <data name="PowerLauncher_WaitForSlowResults.Description" xml:space="preserve"> <value>Selecting this can help preselect the top, more relevant result, but at the risk of jumpiness</value> </data> <data name="PowerLauncher_WaitForSlowResults.Header" xml:space="preserve"> <value>Wait on slower plugin results before selecting top item in results</value> </data> <data name="PowerLauncher_PluginWeightBoost.Description" xml:space="preserve"> <value>Use a higher number to have this plugin's result show higher in the global results. Default is 0.</value> </data> <data name="PowerLauncher_PluginWeightBoost.Header" xml:space="preserve"> <value>Global sort order score modifier</value> </data> <data name="AlwaysOnTop_RoundCorners.Content" xml:space="preserve"> <value>Enable round corners</value> </data> <data name="LearnMore_QuickAccent.Text" xml:space="preserve"> <value>Learn more about Quick Accent</value> <comment>Quick Accent is a product name, do not loc</comment> </data> <data name="QuickAccent_EnableQuickAccent.Header" xml:space="preserve"> <value>Enable Quick Accent</value> </data> <data name="Shell_QuickAccent.Content" xml:space="preserve"> <value>Quick Accent</value> </data> <data name="QuickAccent.ModuleDescription" xml:space="preserve"> <value>Quick Accent is an alternative way to type accented characters, useful for when a keyboard doesn't support that specific accent. Activate by holding the key for the character you want to add an accent to, then press the activation key (space, left or right arrow keys) and an overlay to select accented characters will appear!</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent.ModuleTitle" xml:space="preserve"> <value>Quick Accent</value> </data> <data name="QuickAccent.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> </data> <data name="Oobe_QuickAccent.Description" xml:space="preserve"> <value>Quick Accent is an easy way to write letters with accents, like on a smartphone.</value> </data> <data name="Oobe_QuickAccent.Title" xml:space="preserve"> <value>Quick Accent</value> </data> <data name="Oobe_QuickAccent_HowToUse.Text" xml:space="preserve"> <value>Open **PowerToys Settings** and enable Quick Accent. While holding the key for the character you want to add an accent to, press the Activation Key and an overlay to select the accented character will appear.</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="QuickAccent_Activation_Shortcut.Header" xml:space="preserve"> <value>Activation key</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent_Activation_Shortcut.Description" xml:space="preserve"> <value>Press this key after holding down the target letter</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent_Activation_Key_Arrows.Content" xml:space="preserve"> <value>Left/Right Arrow</value> <comment>Left/Right arrow keyboard keys</comment> </data> <data name="QuickAccent_Activation_Key_Space.Content" xml:space="preserve"> <value>Space</value> <comment>Space is the space keyboard key</comment> </data> <data name="QuickAccent_Activation_Key_Either.Content" xml:space="preserve"> <value>Left, Right or Space</value> <comment>All are keys on a keyboard</comment> </data> <data name="QuickAccent_Toolbar.Header" xml:space="preserve"> <value>Toolbar</value> </data> <data name="QuickAccent_ToolbarPosition.Header" xml:space="preserve"> <value>Toolbar position</value> </data> <data name="QuickAccent_ToolbarPosition_TopCenter.Content" xml:space="preserve"> <value>Top center</value> </data> <data name="QuickAccent_ToolbarPosition_TopLeftCorner.Content" xml:space="preserve"> <value>Top left corner</value> </data> <data name="QuickAccent_ToolbarPosition_TopRightCorner.Content" xml:space="preserve"> <value>Top right corner</value> </data> <data name="QuickAccent_ToolbarPosition_BottomLeftCorner.Content" xml:space="preserve"> <value>Bottom left corner</value> </data> <data name="QuickAccent_ToolbarPosition_BottomCenter.Content" xml:space="preserve"> <value>Bottom center</value> </data> <data name="QuickAccent_ToolbarPosition_BottomRightCorner.Content" xml:space="preserve"> <value>Bottom right corner</value> </data> <data name="QuickAccent_ToolbarPosition_Center.Content" xml:space="preserve"> <value>Center</value> </data> <data name="QuickAccent_ToolbarPosition_Left.Content" xml:space="preserve"> <value>Left</value> </data> <data name="QuickAccent_ToolbarPosition_Right.Content" xml:space="preserve"> <value>Right</value> </data> <data name="QuickAccent_Behavior.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="QuickAccent_InputTimeMs.Header" xml:space="preserve"> <value>Input delay (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="QuickAccent_InputTimeMs.Description" xml:space="preserve"> <value>Hold the key down for this much time to make the accent menu appear (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="QuickAccent_ExcludedApps.Description" xml:space="preserve"> <value>Prevents module activation if a foreground application is excluded. Add one application name per line.</value> </data> <data name="QuickAccent_ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="QuickAccent_ExcludedApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: Teams.exe</value> </data> <data name="LearnMore_TextExtractor.Text" xml:space="preserve"> <value>Learn more about Text Extractor</value> </data> <data name="TextExtractor_Cancel" xml:space="preserve"> <value>cancel</value> </data> <data name="General_SettingsBackupAndRestore_NothingToBackup" xml:space="preserve"> <value>A new backup was not created because no settings have been changed since last backup.</value> </data> <data name="General_SettingsBackupAndRestore_NoBackupFound" xml:space="preserve"> <value>No backup found</value> </data> <data name="General_SettingsBackupAndRestore_FailedToParseTime" xml:space="preserve"> <value>Failed to parse time</value> </data> <data name="General_SettingsBackupAndRestore_UnknownBackupTime" xml:space="preserve"> <value>Unknown</value> </data> <data name="General_SettingsBackupAndRestore_UnknownBackupSource" xml:space="preserve"> <value>Unknown</value> </data> <data name="General_SettingsBackupAndRestore_ThisMachine" xml:space="preserve"> <value>This computer</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsMatch" xml:space="preserve"> <value>Current settings match</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsStatusAt" xml:space="preserve"> <value>at</value> <comment>E.g., Food was served 'at' noon.</comment> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsDiffer" xml:space="preserve"> <value>Current settings differ</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsNoChecked" xml:space="preserve"> <value>Checking...</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsUnknown" xml:space="preserve"> <value>Unknown</value> </data> <data name="General_SettingsBackupAndRestore_NeverRestored" xml:space="preserve"> <value>Never restored</value> </data> <data name="General_SettingsBackupAndRestore_NothingToRestore" xml:space="preserve"> <value>Nothing to restore.</value> </data> <data name="General_SettingsBackupAndRestore_NoSettingsFilesFound" xml:space="preserve"> <value>No settings files found.</value> </data> <data name="General_SettingsBackupAndRestore_BackupError" xml:space="preserve"> <value>There was an error. Try another backup location.</value> </data> <data name="General_SettingsBackupAndRestore_SettingsFormatError" xml:space="preserve"> <value>There was an error in the settings format. Please check the settings file:</value> </data> <data name="General_SettingsBackupAndRestore_BackupComplete" xml:space="preserve"> <value>Backup completed.</value> </data> <data name="General_SettingsBackupAndRestore_NoBackupSyncPath" xml:space="preserve"> <value>No backup location selected.</value> </data> <data name="General_SettingsBackupAndRestore_NoBackupsFound" xml:space="preserve"> <value>No backups found to restore.</value> </data> <data name="General_SettingsBackupAndRestore_InvalidBackupLocation" xml:space="preserve"> <value>Invalid backup location.</value> </data> <data name="TextExtractor.ModuleDescription" xml:space="preserve"> <value>Text Extractor is a convenient way to copy text from anywhere on screen</value> </data> <data name="TextExtractor.ModuleTitle" xml:space="preserve"> <value>Text Extractor</value> </data> <data name="TextExtractor_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Text Extractor</value> </data> <data name="TextExtractor_SupportedLanguages.Title" xml:space="preserve"> <value>Text Extractor can only recognize languages that have the OCR pack installed.</value> </data> <data name="TextExtractor_SupportedLanguages_Link.Content" xml:space="preserve"> <value>Learn more about supported languages</value> </data> <data name="Shell_TextExtractor.Content" xml:space="preserve"> <value>Text Extractor</value> </data> <data name="Launch_TextExtractor.Content" xml:space="preserve"> <value>Launch Text Extractor</value> </data> <data name="Oobe_TextExtractor.Title" xml:space="preserve"> <value>Text Extractor</value> </data> <data name="Oobe_TextExtractor_HowToUse.Text" xml:space="preserve"> <value>to open Text Extractor and then selecting a region to copy the text from.</value> </data> <data name="Oobe_TextExtractor_TipsAndTricks.Text" xml:space="preserve"> <value>Hold the shift key to move the selection region around.</value> </data> <data name="TextExtractor.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> </data> <data name="Oobe_TextExtractor.Description" xml:space="preserve"> <value>Text Extractor works like Snipping Tool, but copies the text out of the selected region using OCR and puts it on the clipboard.</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Monaco_Try_Format.Description" xml:space="preserve"> <value>Applies to json and xml. Files remain unchanged.</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Monaco_Try_Format.Header" xml:space="preserve"> <value>Try to format the source for preview</value> </data> <data name="Run_ConflictingKeywordInfo.Title" xml:space="preserve"> <value>Some characters and phrases may conflict with global queries of other plugins if you use them as activation command.</value> </data> <data name="Run_ConflictingKeywordInfo_Link.Content" xml:space="preserve"> <value>Learn more about conflicting activation commands</value> </data> <data name="MeasureTool_ContinuousCapture_Information.Title" xml:space="preserve"> <value>The continuous capture mode will consume more resources when in use. Also, measurements will be excluded from screenshots and screen capture.</value> <comment>pointer as in mouse pointer. Resources refer to things like CPU, GPU, RAM</comment> </data> <data name="QuickAccent_Description_Indicator.Header" xml:space="preserve"> <value>Show the Unicode code and name of the currently selected character</value> </data> <data name="QuickAccent_SortByUsageFrequency_Indicator.Header" xml:space="preserve"> <value>Sort characters by usage frequency</value> </data> <data name="QuickAccent_SortByUsageFrequency_Indicator.Description" xml:space="preserve"> <value>Track characters usage frequency and sort them accordingly</value> </data> <data name="QuickAccent_StartSelectionFromTheLeft_Indicator.Header" xml:space="preserve"> <value>Start selection from the left</value> </data> <data name="QuickAccent_StartSelectionFromTheLeft_Indicator.Description" xml:space="preserve"> <value>Start selection from the leftmost character for all activation keys, including left and right arrows</value> </data> <data name="QuickAccent_DisableFullscreen.Header" xml:space="preserve"> <value>Disable when Game Mode is On</value> </data> <data name="QuickAccent_Language.Header" xml:space="preserve"> <value>Characters</value> </data> <data name="QuickAccent_SelectedLanguage.Header" xml:space="preserve"> <value>Choose a character set</value> </data> <data name="QuickAccent_SelectedLanguage.Description" xml:space="preserve"> <value>Show only accented characters common to the selected set</value> </data> <data name="QuickAccent_SelectedLanguage_All.Content" xml:space="preserve"> <value>All available</value> </data> <data name="QuickAccent_SelectedLanguage_Catalan.Content" xml:space="preserve"> <value>Catalan</value> </data> <data name="QuickAccent_SelectedLanguage_Currency.Content" xml:space="preserve"> <value>Currency</value> </data> <data name="QuickAccent_SelectedLanguage_Croatian.Content" xml:space="preserve"> <value>Croatian</value> </data> <data name="QuickAccent_SelectedLanguage_Czech.Content" xml:space="preserve"> <value>Czech</value> </data> <data name="QuickAccent_SelectedLanguage_Gaeilge.Content" xml:space="preserve"> <value>Gaeilge</value> <comment>Gaelic language spoken in Ireland</comment> </data> <data name="QuickAccent_SelectedLanguage_Gaidhlig.Content" xml:space="preserve"> <value>Gàidhlig</value> <comment>Scottish Gaelic</comment> </data> <data name="QuickAccent_SelectedLanguage_German.Content" xml:space="preserve"> <value>German</value> </data> <data name="QuickAccent_SelectedLanguage_Hebrew.Content" xml:space="preserve"> <value>Hebrew</value> </data> <data name="QuickAccent_SelectedLanguage_French.Content" xml:space="preserve"> <value>French</value> </data> <data name="QuickAccent_SelectedLanguage_Estonian.Content" xml:space="preserve"> <value>Estonian</value> </data> <data name="QuickAccent_SelectedLanguage_Lithuanian.Content" xml:space="preserve"> <value>Lithuanian</value> </data> <data name="QuickAccent_SelectedLanguage_Macedonian.Content" xml:space="preserve"> <value>Macedonian</value> </data> <data name="QuickAccent_SelectedLanguage_Maori.Content" xml:space="preserve"> <value>Maori</value> </data> <data name="QuickAccent_SelectedLanguage_Dutch.Content" xml:space="preserve"> <value>Dutch</value> </data> <data name="QuickAccent_SelectedLanguage_Norwegian.Content" xml:space="preserve"> <value>Norwegian</value> </data> <data name="QuickAccent_SelectedLanguage_Pinyin.Content" xml:space="preserve"> <value>Pinyin</value> </data> <data name="QuickAccent_SelectedLanguage_Polish.Content" xml:space="preserve"> <value>Polish</value> </data> <data name="QuickAccent_SelectedLanguage_Portuguese.Content" xml:space="preserve"> <value>Portuguese</value> </data> <data name="QuickAccent_SelectedLanguage_Slovakian.Content" xml:space="preserve"> <value>Slovakian</value> </data> <data name="QuickAccent_SelectedLanguage_Spanish.Content" xml:space="preserve"> <value>Spanish</value> </data> <data name="QuickAccent_SelectedLanguage_Swedish.Content" xml:space="preserve"> <value>Swedish</value> </data> <data name="QuickAccent_SelectedLanguage_Turkish.Content" xml:space="preserve"> <value>Turkish</value> </data> <data name="QuickAccent_SelectedLanguage_Icelandic.Content" xml:space="preserve"> <value>Icelandic</value> </data> <data name="QuickAccent_SelectedLanguage_Romanian.Content" xml:space="preserve"> <value>Romanian</value> </data> <data name="QuickAccent_SelectedLanguage_Serbian.Content" xml:space="preserve"> <value>Serbian</value> </data> <data name="QuickAccent_SelectedLanguage_Hungarian.Content" xml:space="preserve"> <value>Hungarian</value> </data> <data name="QuickAccent_SelectedLanguage_Italian.Content" xml:space="preserve"> <value>Italian</value> </data> <data name="QuickAccent_SelectedLanguage_Kurdish.Content" xml:space="preserve"> <value>Kurdish</value> </data> <data name="QuickAccent_SelectedLanguage_Welsh.Content" xml:space="preserve"> <value>Welsh</value> </data> <data name="Hosts.ModuleDescription" xml:space="preserve"> <value>Quick and simple utility for managing hosts file.</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Hosts.ModuleTitle" xml:space="preserve"> <value>Hosts File Editor</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Shell_Hosts.Content" xml:space="preserve"> <value>Hosts File Editor</value> <comment>Products name: Navigation view item name for Hosts File Editor</comment> </data> <data name="Hosts_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Hosts_Toggle_ShowStartupWarning.Header" xml:space="preserve"> <value>Show a warning at startup</value> </data> <data name="Hosts_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="Hosts_LaunchButtonControl.Description" xml:space="preserve"> <value>Manage your hosts file</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Hosts_LaunchButtonControl.Header" xml:space="preserve"> <value>Launch Host File Editor</value> <comment>"Host File Editor" is a product name</comment> </data> <data name="Hosts_LaunchButton_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Launch Host File Editor</value> <comment>"Host File Editor" is a product name</comment> </data> <data name="Hosts_AdditionalLinesPosition.Header" xml:space="preserve"> <value>Position of additional content</value> </data> <data name="Hosts_AdditionalLinesPosition_Bottom.Content" xml:space="preserve"> <value>Bottom</value> </data> <data name="Hosts_AdditionalLinesPosition_Top.Content" xml:space="preserve"> <value>Top</value> </data> <data name="Hosts_Behavior_GroupSettings.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="Launch_Hosts.Content" xml:space="preserve"> <value>Launch Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="LearnMore_Hosts.Text" xml:space="preserve"> <value>Learn more about Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Oobe_Hosts.Description" xml:space="preserve"> <value>Hosts File Editor is a quick and simple utility for managing hosts file.</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Oobe_Hosts.Title" xml:space="preserve"> <value>Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Hosts_Toggle_LaunchAdministrator.Description" xml:space="preserve"> <value>Needs to be launched as administrator in order to make changes to the hosts file</value> </data> <data name="Hosts_Toggle_LaunchAdministrator.Header" xml:space="preserve"> <value>Launch as administrator</value> </data> <data name="ShortcutGuide_PressTimeForTaskbarIconShortcuts.Header" xml:space="preserve"> <value>Press duration before showing taskbar icon shortcuts (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="FileLocksmith.ModuleDescription" xml:space="preserve"> <value>A Windows shell extension to find out which processes are using the selected files and directories.</value> </data> <data name="FileLocksmith.ModuleTitle" xml:space="preserve"> <value>File Locksmith</value> </data> <data name="Shell_FileLocksmith.Content" xml:space="preserve"> <value>File Locksmith</value> <comment>Product name: Navigation view item name for FileLocksmith</comment> </data> <data name="FileLocksmith_Enable_FileLocksmith.Header" xml:space="preserve"> <value>Enable File Locksmith</value> <comment>File Locksmith is the name of the utility</comment> </data> <data name="FileLocksmith_Toggle_StandardContextMenu.Content" xml:space="preserve"> <value>Default and extended context menu</value> </data> <data name="FileLocksmith_Toggle_ExtendedContextMenu.Content" xml:space="preserve"> <value>Extended context menu only</value> </data> <data name="FileLocksmith_Toggle_ContextMenu.Header" xml:space="preserve"> <value>Show File Locksmith in</value> </data> <data name="FileLocksmith_ShellIntegration.Header" xml:space="preserve"> <value>Shell integration</value> <comment>This refers to directly integrating in with Windows</comment> </data> <data name="GPO_IsSettingForced.Title" xml:space="preserve"> <value>The system administrator is forcing this setting.</value> </data> <data name="Hosts_AdditionalLinesPosition.Description" xml:space="preserve"> <value>Additional content includes the file header and lines that can't parse</value> </data> <data name="TextExtractor_Languages.Header" xml:space="preserve"> <value>Preferred language</value> </data> <data name="Alternate_OOBE_AlwaysOnTop_Description.Text" xml:space="preserve"> <value>Pin a window so that:</value> </data> <data name="Alternate_OOBE_AlwaysOnTop_Title.Text" xml:space="preserve"> <value>Always On Top</value> </data> <data name="Alternate_OOBE_ColorPicker_Description.Text" xml:space="preserve"> <value>To pick a color:</value> </data> <data name="Alternate_OOBE_ColorPicker_Title.Text" xml:space="preserve"> <value>Color Picker</value> </data> <data name="Alternate_OOBE_Description.Text" xml:space="preserve"> <value>Here are a few shortcuts to get you started:</value> </data> <data name="Alternate_OOBE_FancyZones_Description.Text" xml:space="preserve"> <value>To open the FancyZones editor, press:</value> </data> <data name="Alternate_OOBE_FancyZones_Title.Text" xml:space="preserve"> <value>FancyZones</value> </data> <data name="Alternate_OOBE_Run_Description.Text" xml:space="preserve"> <value>Get access to your files and more:</value> </data> <data name="Alternate_OOBE_Run_Title.Text" xml:space="preserve"> <value>PowerToys Run</value> </data> <data name="General_Experimentation.Header" xml:space="preserve"> <value>Experimentation</value> </data> <data name="GeneralPage_EnableExperimentation.Description" xml:space="preserve"> <value>Note: Only Windows Insider builds may be selected for experimentation</value> </data> <data name="GeneralPage_EnableExperimentation.Header" xml:space="preserve"> <value>Allow experimentation with new features</value> </data> <data name="GPO_ExperimentationIsDisallowed.Title" xml:space="preserve"> <value>The system administrator has disabled experimentation.</value> </data> <data name="Shell_PastePlain.Content" xml:space="preserve"> <value>Paste As Plain Text</value> <comment>Product name: Navigation view item name for Paste as Plain Text</comment> </data> <data name="PastePlain.ModuleDescription" xml:space="preserve"> <value>Paste As Plain Text is a quick shortcut for pasting the text contents of your clipboard without formatting. Note: the formatted text in the clipboard is replaced with the unformatted text.</value> </data> <data name="PastePlain.ModuleTitle" xml:space="preserve"> <value>Paste As Plain Text</value> </data> <data name="PastePlain_Cancel" xml:space="preserve"> <value>cancel</value> </data> <data name="PastePlain_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Paste As Plain Text</value> </data> <data name="Oobe_PastePlain.Description" xml:space="preserve"> <value>Paste As Plain Text strips rich formatting from your clipboard data and pastes it as non-formatted text.</value> </data> <data name="Oobe_PastePlain.Title" xml:space="preserve"> <value>Paste As Plain Text</value> </data> <data name="Oobe_PastePlain_HowToUse.Text" xml:space="preserve"> <value>to paste your clipboard data as plain text. Note: this will replace the formatted text in your clipboard with the plain text.</value> </data> <data name="AllAppsTxt.Text" xml:space="preserve"> <value>All apps</value> </data> <data name="BackBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Back</value> </data> <data name="BackLabel.Text" xml:space="preserve"> <value>Back</value> </data> <data name="BugReportBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Bug report</value> </data> <data name="BugReportTooltip.Text" xml:space="preserve"> <value>Bug report</value> </data> <data name="DocsBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Documentation</value> </data> <data name="DocsTooltip.Text" xml:space="preserve"> <value>Documentation</value> </data> <data name="FZEditorString" xml:space="preserve"> <value>FancyZones Editor</value> <comment>Do not localize this string</comment> </data> <data name="MoreBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>More</value> </data> <data name="MoreLabel.Text" xml:space="preserve"> <value>More</value> </data> <data name="SettingsBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Settings</value> </data> <data name="SettingsTooltip.Text" xml:space="preserve"> <value>Settings</value> </data> <data name="ShortcutsTxt.Text" xml:space="preserve"> <value>Shortcuts</value> </data> <data name="UpdateAvailable.Title" xml:space="preserve"> <value>Update available</value> </data> <data name="FileExplorerPreview_Toggle_Monaco_Max_File_Size.Header" xml:space="preserve"> <value>Maximum file size to preview</value> <comment>Size refers to the disk space used by a file</comment> </data> <data name="FileExplorerPreview_Toggle_Monaco_Max_File_Size.Description" xml:space="preserve"> <value>The maximum size, in kilobytes, for files to be displayed. This is a safety mechanism to prevent loading large files into RAM.</value> <comment>"RAM" refers to random access memory; "size" refers to disk space; "bytes" refer to the measurement unit</comment> </data> <data name="RegistryPreview.ModuleDescription" xml:space="preserve"> <value>A quick little utility to visualize and edit complex Windows Registry files.</value> </data> <data name="RegistryPreview.ModuleTitle" xml:space="preserve"> <value>Registry Preview</value> </data> <data name="Shell_RegistryPreview.Content" xml:space="preserve"> <value>Registry Preview</value> <comment>Product name: Navigation view item name for Registry Preview</comment> </data> <data name="RegistryPreview_Enable_RegistryPreview.Header" xml:space="preserve"> <value>Enable Registry Preview</value> <comment>Registry Preview is the name of the utility</comment> </data> <data name="Oobe_RegistryPreview_HowToUse.Text" xml:space="preserve"> <value>In File Explorer, right-click a .REG file and select **Preview** from the context menu.</value> </data> <data name="Oobe_RegistryPreview_TipsAndTricks.Text" xml:space="preserve"> <value>You can preview or edit Registry files in File Explorer or by opening the app from the PowerToys launcher.</value> </data> <data name="Oobe_RegistryPreview.Description" xml:space="preserve"> <value>Registry Preview is a quick little utility to visualize and edit complex Windows Registry files.</value> </data> <data name="Oobe_RegistryPreview.Title" xml:space="preserve"> <value>Registry Preview</value> <comment>Do not localize this string</comment> </data> <data name="LearnMore_RegistryPreview.Text" xml:space="preserve"> <value>Learn more about Registry Preview</value> <comment>Registry Preview is a product name, do not loc</comment> </data> <data name="Launch_RegistryPreview.Content" xml:space="preserve"> <value>Launch Registry Preview</value> <comment>"Registry Preview" is the name of the utility</comment> </data> <data name="MouseUtils_MouseJump.Description" xml:space="preserve"> <value>Quickly move the mouse pointer long distances.</value> <comment>"Mouse Jump" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_MouseJump.Header" xml:space="preserve"> <value>Mouse Jump</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_MouseJump_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to turn on or off this mode</value> </data> <data name="MouseUtils_MouseJump_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MouseUtils_Enable_MouseJump.Header" xml:space="preserve"> <value>Enable Mouse Jump</value> <comment>"Mouse Jump" is the name of the utility.</comment> </data> <data name="GPO_AutoDownloadUpdatesIsDisabled.Title" xml:space="preserve"> <value>The system administrator has disabled the automatic download of updates.</value> </data> <data name="Hosts_Toggle_LoopbackDuplicates.Description" xml:space="preserve"> <value>127.0.0.1, ::1, ...</value> <comment>"127.0.0.1 and ::1" are well known loopback addresses, do not loc</comment> </data> <data name="Hosts_Toggle_LoopbackDuplicates.Header" xml:space="preserve"> <value>Consider loopback addresses as duplicates</value> </data> <data name="RegistryPreview_Launch_GroupSettings.Header" xml:space="preserve"> <value>Launch</value> </data> <data name="RegistryPreview_LaunchButton_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Launch Registry Preview</value> </data> <data name="RegistryPreview_LaunchButtonControl.Header" xml:space="preserve"> <value>Launch Registry Preview</value> </data> <data name="RegistryPreview_DefaultRegApp.Header" xml:space="preserve"> <value>Default app</value> </data> <data name="RegistryPreview_DefaultRegApp.Description" xml:space="preserve"> <value>Make Registry Preview default app for opening .reg files</value> <comment>Registry Preview is app name. Do not localize.</comment> </data> <data name="PastePlain_ShortcutWarning.Title" xml:space="preserve"> <value>Using this shortcut may prevent non-text paste actions (e.g. images, files) or built-in paste plain text actions in other applications from functioning.</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize.Header" xml:space="preserve"> <value>Thumbnail Size</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Description_Prefix.Text" xml:space="preserve"> <value>Constrain thumbnail image size to a maximum of</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Description_Suffix.Text" xml:space="preserve"> <value>pixels</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Edit_Height.Header" xml:space="preserve"> <value>Maximum height (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Edit_Width.Header" xml:space="preserve"> <value>Maximum width (px)</value> <comment>px = pixels</comment> </data> <data name="Oobe_Peek.Description" xml:space="preserve"> <value>A lightning fast file preview feature for Windows.</value> </data> <data name="Oobe_Peek.Title" xml:space="preserve"> <value>Peek</value> </data> <data name="Oobe_Peek_HowToUse.Text" xml:space="preserve"> <value>to preview the file that's currently selected in File Explorer.</value> </data> <data name="MWB_PCNameLabel.PlaceholderText" xml:space="preserve"> <value>Device name</value> </data> <data name="MWB_SecurityKeyLabel.PlaceholderText" xml:space="preserve"> <value>Security key</value> </data> <data name="Hosts_Encoding.Description" xml:space="preserve"> <value>Choose the encoding of the hosts file</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Hosts_Encoding.Header" xml:space="preserve"> <value>Encoding</value> </data> <data name="Hosts_Encoding_Utf8.Content" xml:space="preserve"> <value>UTF-8</value> </data> <data name="Hosts_Encoding_Utf8Bom.Content" xml:space="preserve"> <value>UTF-8 with BOM</value> </data> <data name="MouseUtils_MouseHighlighter_AlwaysColor.Header" xml:space="preserve"> <value>Always highlight color</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsAutoHide.Content" xml:space="preserve"> <value>Automatically hide crosshairs when the mouse pointer is hidden</value> </data> <data name="MouseUtils_AutoActivate.Content" xml:space="preserve"> <value>Automatically activate on utility startup</value> </data> <data name="Run_FindMorePlugins.Text" xml:space="preserve"> <value>Find more plugins</value> </data> <data name="Run_PluginUseFindMorePlugins.Content" xml:space="preserve"> <value>Find more plugins</value> </data> <data name="Run_SomePluginsAreGpoManaged.Title" xml:space="preserve"> <value>The system administrator is managing the enabled state of some plugins.</value> </data> <data name="AlwaysOnTop_FrameOpacity.Header" xml:space="preserve"> <value>Opacity (%)</value> </data> <data name="MouseUtils_FindMyMouse_ActivationCustomizedShortcut.Content" xml:space="preserve"> <value>Custom shortcut</value> </data> <data name="MouseUtils_FindMyMouse_ActivationDoubleRightControlPress.Content" xml:space="preserve"> <value>Press Right Control twice</value> <comment>Right control is the physical key on the keyboard.</comment> </data> <data name="MouseUtils_FindMyMouse_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to turn on or off this mode</value> </data> <data name="MouseUtils_FindMyMouse_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="SettingsWindow_AdminTitle" xml:space="preserve"> <value>Administrator: PowerToys Settings</value> <comment>Title of the settings window when running as administrator</comment> </data> </root>
<?xml version="1.0" encoding="utf-8"?> <root> <!-- Microsoft ResX Schema Version 2.0 The primary goals of this format is to allow a simple XML format that is mostly human readable. The generation and parsing of the various data types are done through the TypeConverter classes associated with the data types. Example: ... ado.net/XML headers & schema ... <resheader name="resmimetype">text/microsoft-resx</resheader> <resheader name="version">2.0</resheader> <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader> <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader> <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data> <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data> <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64"> <value>[base64 mime encoded serialized .NET Framework object]</value> </data> <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value> <comment>This is a comment</comment> </data> There are any number of "resheader" rows that contain simple name/value pairs. Each data row contains a name, and value. The row also contains a type or mimetype. Type corresponds to a .NET class that support text/value conversion through the TypeConverter architecture. Classes that don't support this are serialized and stored with the mimetype set. The mimetype is used for serialized objects, and tells the ResXResourceReader how to depersist the object. This is currently not extensible. For a given mimetype the value must be set accordingly: Note - application/x-microsoft.net.object.binary.base64 is the format that the ResXResourceWriter will generate, however the reader can read any of the formats listed below. mimetype: application/x-microsoft.net.object.binary.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.soap.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Soap.SoapFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.bytearray.base64 value : The object must be serialized into a byte array : using a System.ComponentModel.TypeConverter : and then encoded with base64 encoding. --> <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> <xsd:import namespace="http://www.w3.org/XML/1998/namespace" /> <xsd:element name="root" msdata:IsDataSet="true"> <xsd:complexType> <xsd:choice maxOccurs="unbounded"> <xsd:element name="metadata"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" /> </xsd:sequence> <xsd:attribute name="name" use="required" type="xsd:string" /> <xsd:attribute name="type" type="xsd:string" /> <xsd:attribute name="mimetype" type="xsd:string" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="assembly"> <xsd:complexType> <xsd:attribute name="alias" type="xsd:string" /> <xsd:attribute name="name" type="xsd:string" /> </xsd:complexType> </xsd:element> <xsd:element name="data"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" /> <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="resheader"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" /> </xsd:complexType> </xsd:element> </xsd:choice> </xsd:complexType> </xsd:element> </xsd:schema> <resheader name="resmimetype"> <value>text/microsoft-resx</value> </resheader> <resheader name="version"> <value>2.0</value> </resheader> <resheader name="reader"> <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <resheader name="writer"> <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <data name="Attribution_Rooler.Text" xml:space="preserve"> <value>Inspired by Rooler</value> <comment>Rooler is a name of the tool.</comment> </data> <data name="Shell_VideoConference.Content" xml:space="preserve"> <value>Video Conference Mute</value> <comment>Navigation view item name for Video Conference</comment> </data> <data name="Shell_MeasureTool.Content" xml:space="preserve"> <value>Screen Ruler</value> <comment>Product name: Navigation view item name for Screen Ruler</comment> </data> <data name="MeasureTool.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="MeasureTool.ModuleDescription" xml:space="preserve"> <value>Screen Ruler is a quick and easy way to measure pixels on your screen.</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool.ModuleTitle" xml:space="preserve"> <value>Screen Ruler</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool_ActivationSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="MeasureTool_Settings.Header" xml:space="preserve"> <value>Behavior</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MeasureTool_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to bring up the command bar</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool_DefaultMeasureStyle.Header" xml:space="preserve"> <value>Default measure style</value> </data> <data name="MeasureTool_DefaultMeasureStyle.Description" xml:space="preserve"> <value>The utility will start having the selected style activated</value> </data> <data name="MeasureTool_DefaultMeasureStyle_None.Content" xml:space="preserve"> <value>None</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Bounds.Content" xml:space="preserve"> <value>Bounds</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Spacing.Content" xml:space="preserve"> <value>Spacing</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Horizontal_Spacing.Content" xml:space="preserve"> <value>Horizontal spacing</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Vertical_Spacing.Content" xml:space="preserve"> <value>Vertical spacing</value> </data> <data name="MeasureTool_UnitsOfMeasure.Header" xml:space="preserve"> <value>Units of measurement</value> </data> <data name="MeasureTool_UnitsOfMeasure_Pixels.Content" xml:space="preserve"> <value>Pixels</value> </data> <data name="MeasureTool_UnitsOfMeasure_Inches.Content" xml:space="preserve"> <value>Inches</value> </data> <data name="MeasureTool_UnitsOfMeasure_Centimeters.Content" xml:space="preserve"> <value>Centimeters</value> </data> <data name="MeasureTool_PixelTolerance.Header" xml:space="preserve"> <value>Pixel tolerance for edge detection</value> </data> <data name="MeasureTool_MeasureCrossColor.Header" xml:space="preserve"> <value>Line color</value> </data> <data name="MeasureTool_ContinuousCapture.Header" xml:space="preserve"> <value>Capture screen continuously during measuring</value> </data> <data name="MeasureTool_ContinuousCapture.Description" xml:space="preserve"> <value>Refresh screen contexts in real-time instead of making a screenshot once</value> </data> <data name="MeasureTool_PerColorChannelEdgeDetection.Header" xml:space="preserve"> <value>Per color channel edge detection</value> </data> <data name="MeasureTool_PerColorChannelEdgeDetection.Description" xml:space="preserve"> <value>If enabled, test that all color channels are within a tolerance distance from each other. Otherwise, check that the sum of all color channels differences is smaller than the tolerance.</value> </data> <data name="MeasureTool_DrawFeetOnCross.Header" xml:space="preserve"> <value>Draw feet on cross</value> </data> <data name="MeasureTool_DrawFeetOnCross.Description" xml:space="preserve"> <value>Adds feet to the end of cross lines</value> </data> <data name="MeasureTool_EnableMeasureTool.Header" xml:space="preserve"> <value>Enable Screen Ruler</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MouseWithoutBorders_ActivationSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="MouseWithoutBorders_DeviceLayoutSettings.Header" xml:space="preserve"> <value>Device layout</value> </data> <data name="MouseWithoutBorders_DeviceLayoutSettings.Description" xml:space="preserve"> <value>Drag and drop a machine to rearrange the order.</value> </data> <data name="MouseWithoutBorders_CannotDragDropAsAdmin.Title" xml:space="preserve"> <value>It is not possible to use drag and drop while running PowerToys elevated. As a workaround, please restart PowerToys without elevation to edit the device layout.</value> </data> <data name="MouseWithoutBorders_KeySettings.Header" xml:space="preserve"> <value>Encryption key</value> </data> <data name="MouseWithoutBorders_SecurityKey.Header" xml:space="preserve"> <value>Security key</value> </data> <data name="MouseWithoutBorders_SecurityKey.Description" xml:space="preserve"> <value>The key must be auto generated in one machine by clicking on New Key, then typed in other machines</value> </data> <data name="MouseWithoutBorders_NewKey.Content" xml:space="preserve"> <value>New key</value> </data> <data name="MouseWithoutBorders_CopyMachineName.Text" xml:space="preserve"> <value>Copy to clipboard</value> </data> <data name="MouseWithoutBorders_ReconnectButton.Text" xml:space="preserve"> <value>Refresh connections</value> </data> <data name="MouseWithoutBorders_ReconnectTooltip.Text" xml:space="preserve"> <value>Reestablishes connections with other devices if you are experiencing issues.</value> </data> <data name="MouseWithoutBorders_ThisMachineNameLabel.Header" xml:space="preserve"> <value>Host name of this device</value> </data> <data name="MouseWithoutBorders_Connect.Content" xml:space="preserve"> <value>Connect</value> </data> <data name="MouseWithoutBorders_UninstallService.Header" xml:space="preserve"> <value>Uninstall service</value> </data> <data name="MouseWithoutBorders_UninstallService.Description" xml:space="preserve"> <value>Removes the service from the computer. Needs to run as administrator.</value> </data> <data name="MouseWithoutBorders_Settings.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="MouseWithoutBorders_TroubleShooting.Header" xml:space="preserve"> <value>Troubleshooting</value> </data> <data name="MouseWithoutBorders_AddFirewallRuleButtonControl.Header" xml:space="preserve"> <value>Add a firewall rule for Mouse Without Borders</value> <comment>"Mouse Without Borders" is a product name</comment> </data> <data name="MouseWithoutBorders_AddFirewallRuleButtonControl.Description" xml:space="preserve"> <value>Adding a firewall rule might help solve connection issues.</value> </data> <data name="MouseWithoutBorders_RunAsAdminText.Title" xml:space="preserve"> <value>You need to run as administrator to modify this setting.</value> </data> <data name="MouseWithoutBorders_ServiceUserUninstallWarning.Title" xml:space="preserve"> <value>If PowerToys is installed as a user, uninstalling/upgrading may require the Mouse Without Borders service to be removed manually later.</value> </data> <data name="MouseWithoutBorders_ServiceSettings.Header" xml:space="preserve"> <value>Service</value> </data> <data name="MouseWithoutBorders_Toggle_Enable.Header" xml:space="preserve"> <value>Enable Mouse Without Borders</value> </data> <data name="MouseWithoutBorders.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="MouseWithoutBorders.ModuleDescription" xml:space="preserve"> <value>Mouse Without Borders is a quick and easy way to move your cursor across multiple devices.</value> <comment>"Mouse Without Borders" is the name of the utility</comment> </data> <data name="MouseWithoutBorders.ModuleTitle" xml:space="preserve"> <value>Mouse Without Borders</value> <comment>"Mouse Without Borders" is the name of the utility</comment> </data> <data name="MouseWithoutBorders_UseService.Header" xml:space="preserve"> <value>Use Service</value> </data> <data name="MouseWithoutBorders_UseService.Description" xml:space="preserve"> <value>Runs in service mode, that allows MWB to control remote machines when they're locked. Also allows control of system and administrator applications.</value> </data> <data name="MouseWithoutBorders_MatrixOneRow.Header" xml:space="preserve"> <value>Devices in a single row</value> </data> <data name="MouseWithoutBorders_MatrixOneRow.Description" xml:space="preserve"> <value>Sets whether the devices are aligned on a single row. A two by two matrix is considered otherwise.</value> </data> <data name="MouseWithoutBorders_WrapMouse.Header" xml:space="preserve"> <value>Wrap mouse</value> </data> <data name="MouseWithoutBorders_WrapMouse.Description" xml:space="preserve"> <value>Move control back to the first machine when mouse moves past the last one.</value> </data> <data name="MouseWithoutBorders_ShareClipboard.Header" xml:space="preserve"> <value>Share clipboard</value> </data> <data name="MouseWithoutBorders_TransferFile.Header" xml:space="preserve"> <value>Transfer file</value> </data> <data name="MouseWithoutBorders_HideMouseAtScreenEdge.Header" xml:space="preserve"> <value>Hide mouse at the screen edge</value> </data> <data name="MouseWithoutBorders_DrawMouseCursor.Header" xml:space="preserve"> <value>Draw mouse cursor</value> </data> <data name="MouseWithoutBorders_ValidateRemoteMachineIP.Header" xml:space="preserve"> <value>Validate remote machine IP</value> </data> <data name="MouseWithoutBorders_SameSubnetOnly.Header" xml:space="preserve"> <value>Same subnet only</value> </data> <data name="MouseWithoutBorders_BlockScreenSaverOnOtherMachines.Header" xml:space="preserve"> <value>Block screen saver on other machines</value> </data> <data name="MouseWithoutBorders_MoveMouseRelatively.Header" xml:space="preserve"> <value>Move mouse relatively</value> </data> <data name="MouseWithoutBorders_BlockMouseAtScreenCorners.Header" xml:space="preserve"> <value>Block mouse at screen corners</value> </data> <data name="MouseWithoutBorders_ShowClipboardAndNetworkStatusMessages.Header" xml:space="preserve"> <value>Show clipboard and network status messages</value> </data> <data name="MouseWithoutBorders_ShowOriginalUI.Header" xml:space="preserve"> <value>Show the original Mouse Without Borders UI</value> </data> <data name="MouseWithoutBorders_ShowOriginalUI.Description" xml:space="preserve"> <value>This is accessible from the system tray and requires a restart.</value> </data> <data name="MouseWithoutBorders_ShareClipboard.Description" xml:space="preserve"> <value>If share clipboard stops working, Ctrl+Alt+Del then Esc may solve the problem.</value> </data> <data name="MouseWithoutBorders_TransferFile.Description" xml:space="preserve"> <value>If a file (&lt;100MB) is copied, it will be transferred to the remote machine clipboard.</value> </data> <data name="MouseWithoutBorders_HideMouseAtScreenEdge.Description" xml:space="preserve"> <value>Hide the mouse cursor at the top edge of the screen when switching to other machine. This option also steals the focus from any full-screen app to ensure the keyboard input is redirected.</value> </data> <data name="MouseWithoutBorders_DrawMouseCursor.Description" xml:space="preserve"> <value>Mouse cursor may not be visible in Windows 10 and later versions of Windows when there is no physical mouse attached.</value> </data> <data name="MouseWithoutBorders_ValidateRemoteMachineIP.Description" xml:space="preserve"> <value>Reverse DNS lookup to validate machine IP Address.</value> </data> <data name="MouseWithoutBorders_SameSubnetOnly.Description" xml:space="preserve"> <value>Only connect to machines in the same intranet NNN.NNN.*.* (only works when both machines have IPv4 enabled)</value> </data> <data name="MouseWithoutBorders_IPAddressMapping_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: MyLaptop 192.168.0.24</value> <comment>Don't translate MyLaptop</comment> </data> <data name="MouseWithoutBorders_IPAddressMapping.Header" xml:space="preserve"> <value>IP address mapping</value> </data> <data name="MouseWithoutBorders_IPAddressMapping.Description" xml:space="preserve"> <value>Resolve machine's IP address using manually entered mappings below.</value> </data> <data name="MouseWithoutBorders_BlockScreenSaverOnOtherMachines.Description" xml:space="preserve"> <value>Prevent screen saver from starting on other machines when user is actively working on this machine.</value> </data> <data name="MouseWithoutBorders_MoveMouseRelatively.Description" xml:space="preserve"> <value>Use this option when remote machine's monitor settings are different, or remote machine has multiple monitors.</value> </data> <data name="MouseWithoutBorders_BlockMouseAtScreenCorners.Description" xml:space="preserve"> <value>To avoid accident machine-switch at screen corners.</value> </data> <data name="MouseWithoutBorders_ShowClipboardAndNetworkStatusMessages.Description" xml:space="preserve"> <value>Show clipboard activities and network status in system tray notifications</value> </data> <data name="MouseWithoutBorders_KeyboardShortcuts_Group.Header" xml:space="preserve"> <value>Keyboard shortcuts</value> <comment>keyboard is the hardware peripheral</comment> </data> <data name="MouseWithoutBorders_AdvancedSettings_Group.Header" xml:space="preserve"> <value>Advanced Settings</value> </data> <data name="MouseWithoutBorders_EasyMouseOption.Header" xml:space="preserve"> <value>Easy Mouse: move between machines by moving the mouse pointer to the screen edges.</value> </data> <data name="MouseWithoutBorders_EasyMouseOption.Description" xml:space="preserve"> <value>Can also be set to move only when pressing Shift or Ctrl.</value> <comment>Shift and Ctrl are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_EasyMouseOption_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_EasyMouseOption_Enabled.Content" xml:space="preserve"> <value>Enabled</value> </data> <data name="MouseWithoutBorders_EasyMouseOption_Ctrl.Content" xml:space="preserve"> <value>Ctrl</value> <comment>This is the Ctrl keyboard key</comment> </data> <data name="MouseWithoutBorders_EasyMouseOption_Shift.Content" xml:space="preserve"> <value>Shift</value> <comment>This is the Shift keyboard key</comment> </data> <data name="MouseWithoutBorders_LockMachinesShortcut.Header" xml:space="preserve"> <value>Shortcut to lock all machines.</value> </data> <data name="MouseWithoutBorders_LockMachinesShortcut.Description" xml:space="preserve"> <value>Hit this hotkey twice to lock all machines. Note: Only the machines which have the same shortcut configured will be locked.</value> </data> <data name="MouseWithoutBorders_ToggleEasyMouseShortcut.Header" xml:space="preserve"> <value>Shortcut to toggle Easy Mouse.</value> <comment>Ctrl and Alt are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_ToggleEasyMouseShortcut.Description" xml:space="preserve"> <value>Only works if EasyMouse is set to Enabled or Disabled.</value> </data> <data name="MouseWithoutBorders_ToggleEasyMouseShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut.Header" xml:space="preserve"> <value>Shortcut to switch between machines. Ctrl+Alt+:</value> <comment>Ctrl and Alt are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut.Description" xml:space="preserve"> <value>Click on Ctrl+Alt+ the chosen option to switch between machines.</value> <comment>Ctrl and Alt are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut_F1.Content" xml:space="preserve"> <value>F1, F2, F3, F4</value> <comment>Don't localize. These are keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut_1.Content" xml:space="preserve"> <value>1, 2, 3, 4</value> <comment>Don't localize. These are keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_LockMachinesShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_ReconnectShortcut.Header" xml:space="preserve"> <value>Shortcut to try reconnecting</value> </data> <data name="MouseWithoutBorders_ReconnectShortcut.Description" xml:space="preserve"> <value>Just in case the connection is lost for any reason.</value> </data> <data name="MouseWithoutBorders_ReconnectShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut.Header" xml:space="preserve"> <value>Shortcut to switch to multiple machine mode.</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut.Description" xml:space="preserve"> <value>Allows controlling all computers at once.</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut_Ctrl3.Content" xml:space="preserve"> <value>Ctrl three times</value> <comment>This is the Ctrl keyboard key</comment> </data> <data name="VideoConference_Enable.Header" xml:space="preserve"> <value>Enable Video Conference Mute</value> </data> <data name="VideoConference.ModuleDescription" xml:space="preserve"> <value>Video Conference Mute is a quick and easy way to do a global "mute" of both your microphone and webcam. Disabling this module or closing PowerToys will unmute the microphone and camera.</value> </data> <data name="VideoConference_CameraAndMicrophoneMuteHotkeyControl_Header.Header" xml:space="preserve"> <value>Mute camera &amp; microphone</value> </data> <data name="VideoConference_MicrophoneMuteHotkeyControl_Header.Header" xml:space="preserve"> <value>Mute microphone</value> </data> <data name="VideoConference_MicrophonePushToTalkHotkeyControl_Header.Header" xml:space="preserve"> <value>Push to talk</value> </data> <data name="VideoConference_CameraMuteHotkeyControl_Header.Header" xml:space="preserve"> <value>Mute camera</value> </data> <data name="VideoConference_SelectedCamera.Header" xml:space="preserve"> <value>Selected camera</value> </data> <data name="VideoConference_SelectedMicrophone.Header" xml:space="preserve"> <value>Selected microphone</value> </data> <data name="VideoConference_PushToReverse.Header" xml:space="preserve"> <value>Push to reverse</value> </data> <data name="VideoConference_PushToReverse.Description" xml:space="preserve"> <value>If enabled, allows both push to talk and push to mute, depending on microphone state</value> </data> <data name="VideoConference_CameraOverlayImagePathHeader.Header" xml:space="preserve"> <value>Image displayed when camera is muted</value> </data> <data name="VideoConference_ToolbarPosition.Header" xml:space="preserve"> <value>Toolbar position</value> </data> <data name="VideoConference_ToolbarPosition_TopCenter.Content" xml:space="preserve"> <value>Top center</value> </data> <data name="VideoConference_ToolbarPosition_TopLeftCorner.Content" xml:space="preserve"> <value>Top left corner</value> </data> <data name="VideoConference_ToolbarPosition_TopRightCorner.Content" xml:space="preserve"> <value>Top right corner</value> </data> <data name="VideoConference_ToolbarPosition_BottomLeftCorner.Content" xml:space="preserve"> <value>Bottom left corner</value> </data> <data name="VideoConference_ToolbarPosition_BottomCenter.Content" xml:space="preserve"> <value>Bottom center</value> </data> <data name="VideoConference_ToolbarPosition_BottomRightCorner.Content" xml:space="preserve"> <value>Bottom right corner</value> </data> <data name="VideoConference_ToolbarMonitor.Header" xml:space="preserve"> <value>Show toolbar on</value> </data> <data name="VideoConference_ToolbarMonitor_Main.Content" xml:space="preserve"> <value>Main monitor</value> </data> <data name="VideoConference_ToolbarMonitor_UnderCursor.Content" xml:space="preserve"> <value>Monitor under cursor</value> </data> <data name="VideoConference_ToolbarMonitor_ActiveWindow.Content" xml:space="preserve"> <value>Active window monitor</value> </data> <data name="VideoConference_ToolbarMonitor_All.Content" xml:space="preserve"> <value>All monitors</value> </data> <data name="VideoConference_ToolbarHide.Header" xml:space="preserve"> <value>Hide toolbar</value> </data> <data name="VideoConference_ToolbarHideMuted.Content" xml:space="preserve"> <value>When both camera and microphone are muted</value> </data> <data name="VideoConference_ToolbarHideNever.Content" xml:space="preserve"> <value>Never</value> </data> <data name="VideoConference_ToolbarHideUnmuted.Content" xml:space="preserve"> <value>When both camera and microphone are unmuted</value> </data> <data name="VideoConference_ToolbarHideTimeout.Content" xml:space="preserve"> <value>After timeout</value> </data> <data name="VideoConference.ModuleTitle" xml:space="preserve"> <value>Video Conference Mute</value> </data> <data name="VideoConference_Camera.Header" xml:space="preserve"> <value>Camera</value> </data> <data name="VideoConference_Camera.Description" xml:space="preserve"> <value>To use this feature, make sure to select PowerToys VideoConference Mute as your camera source in your apps.</value> </data> <data name="VideoConference_Microphone.Header" xml:space="preserve"> <value>Microphone</value> </data> <data name="VideoConference_Toolbar.Header" xml:space="preserve"> <value>Toolbar</value> </data> <data name="VideoConference_Behavior.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="VideoConference_StartupAction.Header" xml:space="preserve"> <value>Startup action</value> </data> <data name="VideoConference_StartupActionNothing.Content" xml:space="preserve"> <value>Nothing</value> </data> <data name="VideoConference_StartupActionUnmute.Content" xml:space="preserve"> <value>Unmute</value> </data> <data name="VideoConference_StartupActionMute.Content" xml:space="preserve"> <value>Mute</value> </data> <data name="VideoConference_Shortcuts.Header" xml:space="preserve"> <value>Shortcuts</value> </data> <data name="VideoConference_CameraOverlayImageAlt.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Camera overlay image preview</value> </data> <data name="VideoConference_CameraOverlayImageBrowse.Content" xml:space="preserve"> <value>Browse</value> </data> <data name="VideoConference_CameraOverlayImageClear.Content" xml:space="preserve"> <value>Clear</value> </data> <data name="Shell_General.Content" xml:space="preserve"> <value>General</value> <comment>Navigation view item name for General</comment> </data> <data name="Shell_Awake.Content" xml:space="preserve"> <value>Awake</value> <comment>Product name: Navigation view item name for Awake</comment> </data> <data name="Shell_PowerLauncher.Content" xml:space="preserve"> <value>PowerToys Run</value> <comment>Product name: Navigation view item name for PowerToys Run</comment> </data> <data name="Shell_PowerRename.Content" xml:space="preserve"> <value>PowerRename</value> <comment>Product name: Navigation view item name for PowerRename</comment> </data> <data name="Shell_ShortcutGuide.Content" xml:space="preserve"> <value>Shortcut Guide</value> <comment>Product name: Navigation view item name for Shortcut Guide</comment> </data> <data name="Shell_PowerPreview.Content" xml:space="preserve"> <value>File Explorer add-ons</value> <comment>Product name: Navigation view item name for File Explorer. Please use File Explorer as in the context of File Explorer in Windows</comment> </data> <data name="Shell_FancyZones.Content" xml:space="preserve"> <value>FancyZones</value> <comment>Product name: Navigation view item name for FancyZones</comment> </data> <data name="Shell_ImageResizer.Content" xml:space="preserve"> <value>Image Resizer</value> <comment>Product name: Navigation view item name for Image Resizer</comment> </data> <data name="Shell_ColorPicker.Content" xml:space="preserve"> <value>Color Picker</value> <comment>Product name: Navigation view item name for Color Picker</comment> </data> <data name="Shell_KeyboardManager.Content" xml:space="preserve"> <value>Keyboard Manager</value> <comment>Product name: Navigation view item name for Keyboard Manager</comment> </data> <data name="Shell_MouseWithoutBorders.Content" xml:space="preserve"> <value>Mouse Without Borders</value> <comment>Product name: Navigation view item name for Mouse Without Borders</comment> </data> <data name="Shell_MouseUtilities.Content" xml:space="preserve"> <value>Mouse utilities</value> <comment>Product name: Navigation view item name for Mouse utilities</comment> </data> <data name="Shell_NavigationMenu_Announce_Collapse" xml:space="preserve"> <value>Navigation closed</value> <comment>Accessibility announcement when the navigation pane collapses</comment> </data> <data name="Shell_NavigationMenu_Announce_Open" xml:space="preserve"> <value>Navigation opened</value> <comment>Accessibility announcement when the navigation pane opens</comment> </data> <data name="KeyboardManager_ConfigHeader.Text" xml:space="preserve"> <value>Current configuration</value> <comment>Keyboard Manager current configuration header</comment> </data> <data name="KeyboardManager.ModuleDescription" xml:space="preserve"> <value>Reconfigure your keyboard by remapping keys and shortcuts</value> <comment>Keyboard Manager page description</comment> </data> <data name="KeyboardManager_EnableToggle.Header" xml:space="preserve"> <value>Enable Keyboard Manager</value> <comment>Keyboard Manager enable toggle header. Do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="KeyboardManager_ProfileDescription.Text" xml:space="preserve"> <value>Select the profile to display the active key remap and shortcuts</value> <comment>Keyboard Manager configuration dropdown description</comment> </data> <data name="KeyboardManager_RemapKeyboardButton.Header" xml:space="preserve"> <value>Remap a key</value> <comment>Keyboard Manager remap keyboard button content</comment> </data> <data name="KeyboardManager_Keys.Header" xml:space="preserve"> <value>Keys</value> <comment>Keyboard Manager remap keyboard header</comment> </data> <data name="KeyboardManager_RemapShortcutsButton.Header" xml:space="preserve"> <value>Remap a shortcut</value> <comment>Keyboard Manager remap shortcuts button</comment> </data> <data name="KeyboardManager_Shortcuts.Header" xml:space="preserve"> <value>Shortcuts</value> <comment>Keyboard Manager remap keyboard header</comment> </data> <data name="KeyboardManager_All_Apps_Description" xml:space="preserve"> <value>All Apps</value> <comment>Should be the same as EditShortcuts_AllApps from keyboard manager editor</comment> </data> <data name="Shortcuts.Header" xml:space="preserve"> <value>Shortcuts</value> </data> <data name="Shortcut.Header" xml:space="preserve"> <value>Shortcut</value> </data> <data name="RemapKeysList.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Current Key Remappings</value> </data> <data name="RemapShortcutsList.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Current Shortcut Remappings</value> </data> <data name="KeyboardManager_RemappedKeysListItem.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Key Remapping</value> <comment>key as in keyboard key</comment> </data> <data name="KeyboardManager_RemappedShortcutsListItem.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Shortcut Remapping</value> </data> <data name="KeyboardManager_RemappedTo.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Remapped to</value> </data> <data name="KeyboardManager_ShortcutRemappedTo.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Remapped to</value> </data> <data name="KeyboardManager_TargetApp.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>For Target Application</value> <comment>What computer application would this be for</comment> </data> <data name="KeyboardManager_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Keyboard Manager</value> <comment>do not loc, product name</comment> </data> <data name="ColorPicker.ModuleDescription" xml:space="preserve"> <value>Quick and simple system-wide color picker.</value> </data> <data name="ColorPicker_EnableColorPicker.Header" xml:space="preserve"> <value>Enable Color Picker</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="ColorPicker_ChangeCursor.Content" xml:space="preserve"> <value>Change cursor when picking a color</value> </data> <data name="PowerLauncher.ModuleDescription" xml:space="preserve"> <value>A quick launcher that has additional capabilities without sacrificing performance.</value> </data> <data name="PowerLauncher_EnablePowerLauncher.Header" xml:space="preserve"> <value>Enable PowerToys Run</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="PowerLauncher_SearchResults.Header" xml:space="preserve"> <value>Search &amp; results</value> </data> <data name="PowerLauncher_SearchResultPreference.Header" xml:space="preserve"> <value>Search result preference</value> </data> <data name="PowerLauncher_UsePinyin.Header" xml:space="preserve"> <value>Use Pinyin</value> </data> <data name="PowerLauncher_UsePinyin.Description" xml:space="preserve"> <value>Experimental: Use Pinyin on the search query. May not work for every plugin.</value> </data> <data name="PowerLauncher_SearchResultPreference_MostRecentlyUsed" xml:space="preserve"> <value>Most recently used</value> </data> <data name="PowerLauncher_SearchResultPreference_AlphabeticalOrder" xml:space="preserve"> <value>Alphabetical order</value> </data> <data name="PowerLauncher_SearchResultPreference_RunningProcessesOpenApplications" xml:space="preserve"> <value>Running processes/open applications</value> </data> <data name="PowerLauncher_SearchTypePreference.Header" xml:space="preserve"> <value>Search type preference</value> </data> <data name="PowerLauncher_SearchTypePreference_ApplicationName" xml:space="preserve"> <value>Application name</value> </data> <data name="PowerLauncher_SearchTypePreference_StringInApplication" xml:space="preserve"> <value>A string that is contained in the application</value> </data> <data name="PowerLauncher_SearchTypePreference_ExecutableName" xml:space="preserve"> <value>Executable name</value> </data> <data name="PowerLauncher_MaximumNumberOfResults.Header" xml:space="preserve"> <value>Number of results shown before scrolling</value> </data> <data name="PowerLauncher_OpenPowerLauncher.Header" xml:space="preserve"> <value>Open PowerToys Run</value> </data> <data name="PowerLauncher_OpenFileLocation.Header" xml:space="preserve"> <value>Open file location</value> </data> <data name="PowerLauncher_CopyPathLocation.Header" xml:space="preserve"> <value>Copy path location</value> </data> <data name="PowerLauncher_OpenConsole.Header" xml:space="preserve"> <value>Open console</value> <comment>console refers to Windows command prompt</comment> </data> <data name="PowerLauncher_OverrideWinRKey.Content" xml:space="preserve"> <value>Override Win+R shortcut</value> </data> <data name="PowerLauncher_OverrideWinSKey.Content" xml:space="preserve"> <value>Override Win+S shortcut</value> </data> <data name="PowerLauncher_IgnoreHotkeysInFullScreen.Content" xml:space="preserve"> <value>Ignore shortcuts in fullscreen mode</value> </data> <data name="PowerLauncher_UseCentralizedKeyboardHook.Header" xml:space="preserve"> <value>Use centralized keyboard hook</value> </data> <data name="PowerLauncher_UseCentralizedKeyboardHook.Description" xml:space="preserve"> <value>Try this if there are issues with the shortcut (PowerToys Run might not get focus when triggered from an elevated window)</value> </data> <data name="PowerLauncher_ClearInputOnLaunch.Content" xml:space="preserve"> <value>Clear the previous query on launch</value> </data> <data name="PowerLauncher_TabSelectsContextButtons.Header" xml:space="preserve"> <value>Tab through context buttons</value> </data> <data name="PowerLauncher_TabSelectsContextButtons.Description" xml:space="preserve"> <value>Pressing tab will first select through the available context buttons of the current selection before moving onto the next result</value> </data> <data name="PowerLauncher_GenerateThumbnailsFromFiles.Header" xml:space="preserve"> <value>Generate thumbnails from files</value> </data> <data name="PowerLauncher_GenerateThumbnailsFromFiles.Description" xml:space="preserve"> <value>Results will try to generate thumbnails for files. Disabling this setting may increase stability and speed</value> </data> <data name="PowerLauncher_SearchQueryResultsWithDelay.Header" xml:space="preserve"> <value>Input Smoothing</value> <comment>This is about adding a delay to wait for more input before executing a search</comment> </data> <data name="PowerLauncher_SearchQueryResultsWithDelay.Description" xml:space="preserve"> <value>Wait for more input before searching. This reduces interface jumpiness and system load.</value> </data> <data name="PowerLauncher_FastSearchInputDelayMs.Header" xml:space="preserve"> <value>Immediate plugins</value> </data> <data name="PowerLauncher_FastSearchInputDelayMs.Description" xml:space="preserve"> <value>Affects the plugins that make the UI wait for their results by this amount. Recommended: 30-50 ms.</value> </data> <data name="PowerLauncher_SlowSearchInputDelayMs.Header" xml:space="preserve"> <value>Background execution plugins</value> </data> <data name="PowerLauncher_SlowSearchInputDelayMs.Description" xml:space="preserve"> <value>Affects the plugins that execute in the background by this amount. Recommended: 100-150 ms.</value> </data> <data name="PowerLauncher_SearchInputDelayMs.Header" xml:space="preserve"> <value>Fast plugin throttle (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="KeyboardManager_KeysMappingLayoutRightHeader.Text" xml:space="preserve"> <value>To:</value> <comment>Keyboard Manager mapping keys view right header</comment> </data> <data name="Appearance_GroupSettings.Text" xml:space="preserve"> <value>Appearance</value> </data> <data name="Fancyzones_ImageHyperlinkToDocs.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>FancyZones windows</value> <comment>do not loc the Product name</comment> </data> <data name="FancyZones.ModuleDescription" xml:space="preserve"> <value>Create window layouts to help make multi-tasking easy.</value> <comment>windows refers to application windows</comment> </data> <data name="FancyZones_DisplayOrWorkAreaChangeMoveWindowsCheckBoxControl.Content" xml:space="preserve"> <value>Keep windows in their zones when the screen resolution or work area changes</value> <comment>windows refers to application windows</comment> </data> <data name="FancyZones_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable FancyZones</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="FancyZones_ExcludeApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="FancyZones_ExcludeApps.Description" xml:space="preserve"> <value>Excludes an application from snapping to zones and will only react to Windows Snap - add one application name per line</value> </data> <data name="FancyZones_HighlightOpacity.Header" xml:space="preserve"> <value>Opacity (%)</value> </data> <data name="FancyZones_HotkeyEditorControl.Header" xml:space="preserve"> <value>Open layout editor</value> <comment>Shortcut to launch the FancyZones layout editor application</comment> </data> <data name="FancyZones_WindowSwitching_GroupSettings.Header" xml:space="preserve"> <value>Switch between windows in the current zone</value> </data> <data name="FancyZones_HotkeyNextTabControl.Header" xml:space="preserve"> <value>Next window</value> </data> <data name="FancyZones_HotkeyPrevTabControl.Header" xml:space="preserve"> <value>Previous window</value> </data> <data name="SettingsPage_SetShortcut.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Shortcut setting</value> </data> <data name="SettingsPage_SetShortcut_Glyph.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Information Symbol</value> </data> <data name="FancyZones_LaunchEditorButtonControl.Header" xml:space="preserve"> <value>Launch layout editor</value> <comment>launches the FancyZones layout editor application</comment> </data> <data name="FancyZones_LaunchEditorButtonControl.Description" xml:space="preserve"> <value>Set and manage your layouts</value> <comment>launches the FancyZones layout editor application</comment> </data> <data name="FancyZones_MakeDraggedWindowTransparentCheckBoxControl.Content" xml:space="preserve"> <value>Make dragged window transparent</value> </data> <data name="FancyZones_MouseDragCheckBoxControl_Header.Content" xml:space="preserve"> <value>Use a non-primary mouse button to toggle zone activation</value> </data> <data name="FancyZones_MouseMiddleClickSpanningMultipleZonesCheckBoxControl_Header.Content" xml:space="preserve"> <value>Use middle-click mouse button to toggle multiple zones spanning</value> </data> <data name="FancyZones_MoveWindowsAcrossAllMonitorsCheckBoxControl.Content" xml:space="preserve"> <value>Move windows between zones across all monitors</value> </data> <data name="FancyZones_OverrideSnapHotkeys.Header" xml:space="preserve"> <value>Override Windows Snap</value> </data> <data name="FancyZones_OverrideSnapHotkeys.Description" xml:space="preserve"> <value>This overrides the Windows Snap shortcut (Win + arrow) to move windows between zones</value> </data> <data name="FancyZones_ShiftDragCheckBoxControl_Header.Content" xml:space="preserve"> <value>Hold Shift key to activate zones while dragging a window</value> </data> <data name="FancyZones_ActivationNoShiftDrag" xml:space="preserve"> <value>Drag windows to activate zones</value> </data> <data name="FancyZones_ShowZonesOnAllMonitorsCheckBoxControl.Content" xml:space="preserve"> <value>Show zones on all monitors while dragging a window</value> </data> <data name="FancyZones_AppLastZoneMoveWindows.Content" xml:space="preserve"> <value>Move newly created windows to their last known zone</value> <comment>windows refers to application windows</comment> </data> <data name="FancyZones_OpenWindowOnActiveMonitor.Content" xml:space="preserve"> <value>Move newly created windows to the current active monitor (Experimental)</value> </data> <data name="FancyZones_UseCursorPosEditorStartupScreen.Header" xml:space="preserve"> <value>Launch editor on the display</value> </data> <data name="FancyZones_UseCursorPosEditorStartupScreen.Description" xml:space="preserve"> <value>When using multiple displays</value> </data> <data name="FancyZones_LaunchPositionMouse.Content" xml:space="preserve"> <value>Where the mouse pointer is</value> </data> <data name="FancyZones_LaunchPositionScreen.Content" xml:space="preserve"> <value>With active focus</value> </data> <data name="FancyZones_ZoneBehavior_GroupSettings.Header" xml:space="preserve"> <value>Zone behavior</value> </data> <data name="FancyZones_ZoneBehavior_GroupSettings.Description" xml:space="preserve"> <value>Manage how zones behave when using FancyZones</value> </data> <data name="FancyZones_Zones.Header" xml:space="preserve"> <value>Zones</value> </data> <data name="FancyZones_ZoneHighlightColor.Header" xml:space="preserve"> <value>Highlight color</value> </data> <data name="FancyZones_ZoneSetChangeMoveWindows.Content" xml:space="preserve"> <value>During zone layout changes, windows assigned to a zone will match new size/positions</value> </data> <data name="AttributionTitle.Text" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="General.ModuleTitle" xml:space="preserve"> <value>General</value> </data> <data name="GeneralPage_CheckForUpdates.Content" xml:space="preserve"> <value>Check for updates</value> </data> <data name="General_SettingsBackupAndRestoreLocationText.Header" xml:space="preserve"> <value>Location</value> </data> <data name="General_SettingsBackupAndRestore_ButtonBackup.Content" xml:space="preserve"> <value>Backup</value> </data> <data name="General_SettingsBackupInfo_FileNameHeader.Text" xml:space="preserve"> <value>File name:</value> </data> <data name="General_SettingsBackupAndRestore_LinkRefresh.Text" xml:space="preserve"> <value>Refresh</value> </data> <data name="General_SettingsBackupAndRestore_ButtonRestore.Content" xml:space="preserve"> <value>Restore</value> </data> <data name="General_SettingsBackupAndRestore_ButtonSelectLocation.Text" xml:space="preserve"> <value>Select folder</value> </data> <data name="GeneralPage_UpdateNow.Content" xml:space="preserve"> <value>Update now</value> </data> <data name="GeneralPage_PrivacyStatement_URL.Text" xml:space="preserve"> <value>Privacy statement</value> </data> <data name="GeneralPage_ReportAbug.Text" xml:space="preserve"> <value>Report a bug</value> <comment>Report an issue inside powertoys</comment> </data> <data name="GeneralPage_RequestAFeature_URL.Text" xml:space="preserve"> <value>Request a feature</value> <comment>Tell our team what we should build</comment> </data> <data name="GeneralPage_RestartAsAdmin_Button.Content" xml:space="preserve"> <value>Restart PowerToys as administrator</value> <comment>running PowerToys as a higher level user, account is typically referred to as an admin / administrator</comment> </data> <data name="GeneralPage_RunAtStartUp.Header" xml:space="preserve"> <value>Run at startup</value> </data> <data name="GeneralPage_RunAtStartUp.Description" xml:space="preserve"> <value>PowerToys will launch automatically</value> </data> <data name="PowerRename.ModuleDescription" xml:space="preserve"> <value>A Windows Shell extension for more advanced bulk renaming using search &amp; replace or regular expressions.</value> </data> <data name="PowerRename_ShellIntegration.Header" xml:space="preserve"> <value>Shell integration</value> <comment>This refers to directly integrating in with Windows</comment> </data> <data name="PowerRename_Toggle_Enable.Header" xml:space="preserve"> <value>Enable PowerRename</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="RadioButtons_Name_Theme.Text" xml:space="preserve"> <value>Settings theme</value> </data> <data name="PowerRename_Toggle_HideIcon.Content" xml:space="preserve"> <value>Hide icon in context menu</value> </data> <data name="PowerRename_Toggle_ContextMenu.Header" xml:space="preserve"> <value>Show PowerRename in</value> </data> <data name="PowerRename_Toggle_StandardContextMenu.Content" xml:space="preserve"> <value>Default and extended context menu</value> </data> <data name="PowerRename_Toggle_ExtendedContextMenu.Content" xml:space="preserve"> <value>Extended context menu only</value> </data> <data name="ExtendedContextMenuInfo.Title" xml:space="preserve"> <value>Press Shift + right-click on files to open the extended context menu</value> </data> <data name="PowerRename_Toggle_MaxDispListNum.Header" xml:space="preserve"> <value>Maximum number of items</value> </data> <data name="PowerRename_Toggle_RestoreFlagsOnLaunch.Header" xml:space="preserve"> <value>Show recently used strings</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_MD.Header" xml:space="preserve"> <value>Markdown</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_MD.Description" xml:space="preserve"> <value>.md, .markdown, .mdown, .mkdn, .mkd, .mdwn, .mdtxt, .mdtext</value> <comment>File extensions, should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_Monaco.Header" xml:space="preserve"> <value>Source code files (Monaco)</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_Monaco.Description" xml:space="preserve"> <value>.cpp, .py, .json, .xml, .csproj, ...</value> <comment>File extensions should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_SVG.Header" xml:space="preserve"> <value>Scalable Vector Graphics</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_SVG.Description" xml:space="preserve"> <value>.svg</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_Preview_SVG_Color_Mode.Header" xml:space="preserve"> <value>Color mode</value> </data> <data name="FileExplorerPreview_Preview_SVG_Color_Mode_Default.Content" xml:space="preserve"> <value>Windows default</value> </data> <data name="FileExplorerPreview_Preview_SVG_Color_Solid_Color.Content" xml:space="preserve"> <value>Solid color</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade.Content" xml:space="preserve"> <value>Checkered pattern</value> </data> <data name="FileExplorerPreview_Preview_SVG_Background_Color.Header" xml:space="preserve"> <value>Color</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_Mode.Header" xml:space="preserve"> <value>Checkered shade</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_1.Content" xml:space="preserve"> <value>Light</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_2.Content" xml:space="preserve"> <value>Medium</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_3.Content" xml:space="preserve"> <value>Dark</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_PDF.Header" xml:space="preserve"> <value>Portable Document Format</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_PDF.Description" xml:space="preserve"> <value>.pdf</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_SVG.Header" xml:space="preserve"> <value>Scalable Vector Graphics</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_SVG.Description" xml:space="preserve"> <value>.svg</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_STL.Header" xml:space="preserve"> <value>Stereolithography</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_STL.Description" xml:space="preserve"> <value>.stl</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_Color_Thumbnail_STL.Header" xml:space="preserve"> <value>Color</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_PDF.Header" xml:space="preserve"> <value>Portable Document Format</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_PDF.Description" xml:space="preserve"> <value>.pdf</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview.ModuleDescription" xml:space="preserve"> <value>These settings allow you to manage your Windows File Explorer custom preview handlers.</value> </data> <data name="PowerRename_AutoCompleteHeader.Header" xml:space="preserve"> <value>Auto-complete</value> </data> <data name="OpenSource_Notice.Text" xml:space="preserve"> <value>Open-source notice</value> </data> <data name="PowerRename_Toggle_AutoComplete.Header" xml:space="preserve"> <value>Enable auto-complete for the search &amp; replace fields</value> </data> <data name="FancyZones_BorderColor.Header" xml:space="preserve"> <value>Border color</value> </data> <data name="FancyZones_InActiveColor.Header" xml:space="preserve"> <value>Inactive color</value> </data> <data name="ShortcutGuide.ModuleDescription" xml:space="preserve"> <value>Shows a help overlay with Windows shortcuts.</value> </data> <data name="ShortcutGuide_PressTimeForGlobalWindowsShortcuts.Header" xml:space="preserve"> <value>Press duration before showing global Windows shortcuts (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="ShortcutGuide_ActivationMethod.Header" xml:space="preserve"> <value>Activation method</value> </data> <data name="ShortcutGuide_ActivationMethod.Description" xml:space="preserve"> <value>Use a shortcut or press the Windows key for some time to activate</value> </data> <data name="Radio_ShortcutGuide_ActivationMethod_CustomizedShortcut.Content" xml:space="preserve"> <value>Custom shortcut</value> </data> <data name="Radio_ShortcutGuide_ActivationMethod_LongPressWindowsKey.Content" xml:space="preserve"> <value>Hold down Windows key</value> </data> <data name="ShortcutGuide_PressWinKeyWarning.Title" xml:space="preserve"> <value>In some edge cases Shortcut Guide might not function correctly when using this activation method</value> </data> <data name="Appearance_Behavior.Header" xml:space="preserve"> <value>Appearance &amp; behavior</value> </data> <data name="General_SettingsBackupAndRestoreTitle.Header" xml:space="preserve"> <value>Backup &amp; restore</value> </data> <data name="General_SettingsBackupAndRestore.Header" xml:space="preserve"> <value>Backup and restore your settings</value> </data> <data name="General_SettingsBackupAndRestore.Description" xml:space="preserve"> <value>PowerToys will restart automatically if needed</value> </data> <data name="ShortcutGuide_Enable.Header" xml:space="preserve"> <value>Enable Shortcut Guide</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="ShortcutGuide_OverlayOpacity.Header" xml:space="preserve"> <value>Background opacity (%)</value> </data> <data name="ShortcutGuide_DisabledApps.Header" xml:space="preserve"> <value>Exclude apps</value> </data> <data name="ShortcutGuide_DisabledApps.Description" xml:space="preserve"> <value>Turns off Shortcut Guide when these applications have focus - add one application name per line</value> </data> <data name="ShortcutGuide_DisabledApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> <comment>Don't translate outlook.exe</comment> </data> <data name="ImageResizer_CustomSizes.Header" xml:space="preserve"> <value>Image sizes</value> </data> <data name="ImageResizer_Presets.Header" xml:space="preserve"> <value>Presets</value> </data> <data name="ImageResizer_Presets.Description" xml:space="preserve"> <value>Manage preset sizes that can be used in the editor</value> </data> <data name="ImageResizer_FilenameFormatHeader.Description" xml:space="preserve"> <value>This format is used as the filename for resized images</value> </data> <data name="ImageResizer.ModuleDescription" xml:space="preserve"> <value>Lets you resize images by right-clicking.</value> </data> <data name="ImageResizer_EnableToggle.Header" xml:space="preserve"> <value>Enable Image Resizer</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="ImagesSizesListView.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Image Size</value> </data> <data name="ImageResizer_Configurations.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Configurations</value> </data> <data name="ImageResizer_Name.Header" xml:space="preserve"> <value>Name</value> </data> <data name="ImageResizer_Fit.Header" xml:space="preserve"> <value>Fit</value> </data> <data name="ImageResizer_Width.Header" xml:space="preserve"> <value>Width</value> </data> <data name="ImageResizer_Height.Header" xml:space="preserve"> <value>Height</value> </data> <data name="ImageResizer_Size.Header" xml:space="preserve"> <value>Unit</value> </data> <data name="RemoveButton.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Remove</value> <comment>Removes a user defined setting group for Image Resizer</comment> </data> <data name="RemoveItem.Text" xml:space="preserve"> <value>Delete</value> </data> <data name="ImageResizer_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Image Resizer</value> </data> <data name="ImageResizer_AddSizeButton.Content" xml:space="preserve"> <value>Add new size</value> </data> <data name="ImageResizer_SaveSizeButton.Label" xml:space="preserve"> <value>Save sizes</value> </data> <data name="ImageResizer_Encoding.Header" xml:space="preserve"> <value>JPEG quality level (%)</value> </data> <data name="ImageResizer_PNGInterlacing.Header" xml:space="preserve"> <value>PNG interlacing</value> </data> <data name="ImageResizer_TIFFCompression.Header" xml:space="preserve"> <value>TIFF compression</value> </data> <data name="File.Header" xml:space="preserve"> <value>File</value> <comment>as in a computer file</comment> </data> <data name="Default.Content" xml:space="preserve"> <value>Default</value> </data> <data name="ImageResizer_ENCODER_TIFF_CCITT3.Content" xml:space="preserve"> <value>CCITT3</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_CCITT4.Content" xml:space="preserve"> <value>CCITT4</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_Default.Content" xml:space="preserve"> <value>Default</value> </data> <data name="ImageResizer_ENCODER_TIFF_LZW.Content" xml:space="preserve"> <value>LZW</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_None.Content" xml:space="preserve"> <value>None</value> </data> <data name="ImageResizer_ENCODER_TIFF_RLE.Content" xml:space="preserve"> <value>RLE</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_Zip.Content" xml:space="preserve"> <value>Zip</value> <comment>do not loc</comment> </data> <data name="ImageResizer_FallbackEncoder_BMP.Content" xml:space="preserve"> <value>BMP encoder</value> </data> <data name="ImageResizer_FallbackEncoder_GIF.Content" xml:space="preserve"> <value>GIF encoder</value> </data> <data name="ImageResizer_FallbackEncoder_JPEG.Content" xml:space="preserve"> <value>JPEG encoder</value> </data> <data name="ImageResizer_FallbackEncoder_PNG.Content" xml:space="preserve"> <value>PNG encoder</value> </data> <data name="ImageResizer_FallbackEncoder_TIFF.Content" xml:space="preserve"> <value>TIFF encoder</value> </data> <data name="ImageResizer_FallbackEncoder_WMPhoto.Content" xml:space="preserve"> <value>WMPhoto encoder</value> </data> <data name="ImageResizer_Sizes_Fit_Fill.Content" xml:space="preserve"> <value>Fill</value> <comment>Refers to filling an image into a certain size. It could overflow</comment> </data> <data name="ImageResizer_Sizes_Fit_Fill_ThirdPersonSingular.Text" xml:space="preserve"> <value>Fill</value> <comment>Refers to filling an image into a certain size. It could overflow</comment> </data> <data name="ImageResizer_Sizes_Fit_Fit.Content" xml:space="preserve"> <value>Fit</value> <comment>Refers to fitting an image into a certain size. It won't overflow</comment> </data> <data name="ImageResizer_Sizes_Fit_Stretch.Content" xml:space="preserve"> <value>Stretch</value> <comment>Refers to stretching an image into a certain size. Won't overflow but could distort.</comment> </data> <data name="ImageResizer_Sizes_Units_CM.Content" xml:space="preserve"> <value>Centimeters</value> </data> <data name="ImageResizer_Sizes_Units_Inches.Content" xml:space="preserve"> <value>Inches</value> </data> <data name="ImageResizer_Sizes_Units_Percent.Content" xml:space="preserve"> <value>Percent</value> </data> <data name="ImageResizer_Sizes_Units_Pixels.Content" xml:space="preserve"> <value>Pixels</value> </data> <data name="Off.Content" xml:space="preserve"> <value>Off</value> </data> <data name="On.Content" xml:space="preserve"> <value>On</value> </data> <data name="GeneralPage_ToggleSwitch_AlwaysRunElevated_Link.Content" xml:space="preserve"> <value>Learn more about administrator mode</value> </data> <data name="GeneralPage_ToggleSwitch_AutoDownloadUpdates.Header" xml:space="preserve"> <value>Download updates automatically</value> </data> <data name="GeneralPage_ToggleSwitch_AutoDownloadUpdates.Description" xml:space="preserve"> <value>Except on metered connections</value> </data> <data name="GeneralPage_ToggleSwitch_RunningAsAdminNote.Text" xml:space="preserve"> <value>Currently running as administrator</value> </data> <data name="GeneralSettings_AlwaysRunAsAdminText.Header" xml:space="preserve"> <value>Always run as administrator</value> </data> <data name="GeneralSettings_AlwaysRunAsAdminText.Description" xml:space="preserve"> <value>You need to run as administrator to use this setting</value> </data> <data name="GeneralSettings_RunningAsUserText" xml:space="preserve"> <value>Running as user</value> </data> <data name="GeneralSettings_RunningAsAdminText" xml:space="preserve"> <value>Running as administrator</value> </data> <data name="FancyZones.ModuleTitle" xml:space="preserve"> <value>FancyZones</value> </data> <data name="FileExplorerPreview.ModuleTitle" xml:space="preserve"> <value>File Explorer</value> </data> <data name="FileExplorerPreview_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>File Explorer</value> <comment>Use same translation as Windows does for File Explorer</comment> </data> <data name="ImageResizer.ModuleTitle" xml:space="preserve"> <value>Image Resizer</value> </data> <data name="KeyboardManager.ModuleTitle" xml:space="preserve"> <value>Keyboard Manager</value> </data> <data name="ColorPicker.ModuleTitle" xml:space="preserve"> <value>Color Picker</value> </data> <data name="PowerLauncher.ModuleTitle" xml:space="preserve"> <value>PowerToys Run</value> </data> <data name="PowerToys_Run_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>PowerToys Run</value> </data> <data name="PowerRename.ModuleTitle" xml:space="preserve"> <value>PowerRename</value> <comment>do not loc the product name</comment> </data> <data name="PowerRename_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>PowerRename</value> <comment>do not loc</comment> </data> <data name="ShortcutGuide.ModuleTitle" xml:space="preserve"> <value>Shortcut Guide</value> </data> <data name="Shortcut_Guide_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Shortcut Guide</value> </data> <data name="General_Repository.Text" xml:space="preserve"> <value>GitHub repository</value> </data> <data name="General_Version.Header" xml:space="preserve"> <value>Version</value> </data> <data name="General_VersionLastChecked.Text" xml:space="preserve"> <value>Last checked: </value> </data> <data name="General_SettingsBackupInfo_DateHeader.Text" xml:space="preserve"> <value>Created at:</value> </data> <data name="General_SettingsBackupAndRestoreStatusInfo.Header" xml:space="preserve"> <value>Backup information</value> </data> <data name="General_SettingsBackupInfo_SourceHeader.Text" xml:space="preserve"> <value>Source machine:</value> </data> <data name="General_SettingsBackupInfo_StatusHeader.Text" xml:space="preserve"> <value>Status:</value> </data> <data name="General_Version.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Version</value> </data> <data name="Admin_mode.Header" xml:space="preserve"> <value>Administrator mode</value> </data> <data name="FancyZones_RestoreSize.Content" xml:space="preserve"> <value>Restore the original size of windows when unsnapping</value> </data> <data name="ImageResizer_FallBackEncoderText.Header" xml:space="preserve"> <value>Fallback encoder</value> </data> <data name="ImageResizer_FileFormatDescription.Text" xml:space="preserve"> <value>The following parameters can be used:</value> </data> <data name="ImageResizer_FilenameFormatHeader.Header" xml:space="preserve"> <value>Filename format</value> </data> <data name="ImageResizer_FileModifiedDate.Header" xml:space="preserve"> <value>File modified timestamp</value> </data> <data name="ImageResizer_FileModifiedDate.Description" xml:space="preserve"> <value>Used as the 'modified timestamp' in the file properties</value> </data> <data name="ImageResizer_UseOriginalDate.Content" xml:space="preserve"> <value>Original file timestamp</value> </data> <data name="ImageResizer_UseResizeDate.Content" xml:space="preserve"> <value>Timestamp of resize action</value> </data> <data name="Encoding.Header" xml:space="preserve"> <value>Encoding</value> </data> <data name="KeyboardManager_RemapKeyboardButton.Description" xml:space="preserve"> <value>Remap keys to other keys or shortcuts</value> </data> <data name="KeyboardManager_RemapShortcutsButton.Description" xml:space="preserve"> <value>Remap shortcuts to other shortcuts or keys for all or specific applications</value> </data> <data name="General.ModuleDescription" xml:space="preserve"> <value>Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. Made with 💗 by Microsoft and the PowerToys community.</value> <comment>Windows refers to the OS</comment> </data> <data name="FancyZones_SpanZonesAcrossMonitors.Header" xml:space="preserve"> <value>Allow zones to span across monitors</value> </data> <data name="ImageResizer_Formatting_ActualHeight.Text" xml:space="preserve"> <value>Actual height</value> </data> <data name="ImageResizer_Formatting_ActualWidth.Text" xml:space="preserve"> <value>Actual width</value> </data> <data name="ImageResizer_Formatting_Filename.Text" xml:space="preserve"> <value>Original filename</value> </data> <data name="ImageResizer_Formatting_SelectedHeight.Text" xml:space="preserve"> <value>Selected height</value> </data> <data name="ImageResizer_Formatting_SelectedWidth.Text" xml:space="preserve"> <value>Selected width</value> </data> <data name="ImageResizer_Formatting_Sizename.Text" xml:space="preserve"> <value>Size name</value> </data> <data name="FancyZones_MoveWindowsBasedOnPositionCheckBoxControl.Content" xml:space="preserve"> <value>Move windows based on their position</value> <comment>Windows refers to application windows</comment> </data> <data name="GeneralSettings_NewVersionIsAvailable" xml:space="preserve"> <value>New update available</value> </data> <data name="GeneralSettings_VersionIsLatest" xml:space="preserve"> <value>PowerToys is up to date.</value> </data> <data name="FileExplorerPreview_IconThumbnail_GroupSettings.Header" xml:space="preserve"> <value>Thumbnail icon Preview</value> </data> <data name="FileExplorerPreview_IconThumbnail_GroupSettings.Description" xml:space="preserve"> <value>Select the file types for which thumbnail previews must be rendered.</value> </data> <data name="FileExplorerPreview_PreviewPane.Header" xml:space="preserve"> <value>Preview Pane</value> </data> <data name="FileExplorerPreview_PreviewPane.Description" xml:space="preserve"> <value>Select the file types which must be rendered in the Preview Pane. Ensure that Preview Pane is open by toggling the view with Alt + P in File Explorer.</value> <comment>Preview Pane and File Explorer are app/feature names in Windows. 'Alt + P' is a shortcut</comment> </data> <data name="FileExplorerPreview_RunAsAdminRequired.Title" xml:space="preserve"> <value>You need to run as administrator to modify these settings.</value> </data> <data name="FileExplorerPreview_RebootRequired.Title" xml:space="preserve"> <value>A reboot may be required for changes to these settings to take effect</value> </data> <data name="FileExplorerPreview_PreviewHandlerOutlookIncompatibility.Title" xml:space="preserve"> <value>Enabling the preview handlers will override other preview handlers already installed - there have been reports of incompatibility between Outlook and the PDF Preview Handler.</value> <comment>Outlook is the name of a Microsoft product</comment> </data> <data name="FileExplorerPreview_ThumbnailsMightNotAppearOnRemoteFolders.Title" xml:space="preserve"> <value>Thumbnails might not appear on paths managed by cloud storage solutions like OneDrive, since these solutions may get their thumbnails from the cloud instead of generating them locally.</value> <comment>OneDrive is the name of a Microsoft product</comment> </data> <data name="FancyZones_ExcludeApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> <comment>Don't translate outlook.exe</comment> </data> <data name="ImageResizer_FilenameFormatPlaceholder.PlaceholderText" xml:space="preserve"> <value>Example: %1 (%2)</value> </data> <data name="ImageResizer_FilenameParameters.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Filename parameters</value> </data> <data name="Radio_Theme_Dark.Content" xml:space="preserve"> <value>Dark</value> <comment>Dark refers to color, not weight</comment> </data> <data name="Radio_Theme_Light.Content" xml:space="preserve"> <value>Light</value> <comment>Light refers to color, not weight</comment> </data> <data name="Radio_Theme_Default.Content" xml:space="preserve"> <value>Windows default</value> <comment>Windows refers to the Operating system</comment> </data> <data name="Windows_Color_Settings.Content" xml:space="preserve"> <value>Windows color settings</value> <comment>Windows refers to the Operating system</comment> </data> <data name="ColorPicker_CopiedColorRepresentation.Header" xml:space="preserve"> <value>Default color format</value> </data> <data name="ColorPickerFirst.Content" xml:space="preserve"> <value>Pick a color and open editor</value> </data> <data name="EditorFirst.Content" xml:space="preserve"> <value>Open editor</value> </data> <data name="ColorPickerOnly.Content" xml:space="preserve"> <value>Only pick a color</value> </data> <data name="ColorPicker_ActivationAction.Header" xml:space="preserve"> <value>Activation behavior</value> </data> <data name="ColorFormats.Header" xml:space="preserve"> <value>Picker behavior</value> </data> <data name="ColorPicker_CopiedColorRepresentation.Description" xml:space="preserve"> <value>This format will be copied to your clipboard</value> </data> <data name="KBM_KeysCannotBeRemapped.Text" xml:space="preserve"> <value>Learn more about remapping limitations</value> <comment>This is a link that will discuss what is and is not possible for Keyboard manager to remap</comment> </data> <data name="FancyZones_Editor_GroupSettings.Header" xml:space="preserve"> <value>Editor</value> <comment>refers to the FancyZone editor</comment> </data> <data name="FancyZones_WindowBehavior_GroupSettings.Header" xml:space="preserve"> <value>Window behavior</value> </data> <data name="FancyZones_WindowBehavior_GroupSettings.Description" xml:space="preserve"> <value>Manage how windows behave when using FancyZones</value> </data> <data name="FancyZones_Windows.Header" xml:space="preserve"> <value>Windows</value> <comment>Do translate: refers to a set of application windows, not the product name</comment> </data> <data name="PowerRename_BehaviorHeader.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="PowerRename_Toggle_UseBoostLib.Header" xml:space="preserve"> <value>Use Boost library</value> <comment>Boost is a product name, should not be translated</comment> </data> <data name="PowerRename_Toggle_UseBoostLib.Description" xml:space="preserve"> <value>Provides extended features but may use different regex syntax</value> <comment>Boost is a product name, should not be translated</comment> </data> <data name="MadeWithOssLove.Text" xml:space="preserve"> <value>Made with 💗 by Microsoft and the PowerToys community.</value> </data> <data name="ColorPicker_ColorFormats.Header" xml:space="preserve"> <value>Color formats</value> </data> <data name="ColorPicker_ColorFormats.Description" xml:space="preserve"> <value>Configure the color formats (edit, delete, hide, reorder them)</value> </data> <data name="MoveUp.Text" xml:space="preserve"> <value>Move up</value> </data> <data name="MoveDown.Text" xml:space="preserve"> <value>Move down</value> </data> <data name="ColorPickerAddNewFormat.Content" xml:space="preserve"> <value>Add new format</value> </data> <data name="NewColorFormat.Header" xml:space="preserve"> <value>Format</value> </data> <data name="NewColorName.Header" xml:space="preserve"> <value>Name</value> </data> <data name="AddCustomColorFormat" xml:space="preserve"> <value>Add custom color format</value> </data> <data name="ColorFormatSave" xml:space="preserve"> <value>Save</value> </data> <data name="EditCustomColorFormat" xml:space="preserve"> <value>Edit custom color format</value> </data> <data name="ColorFormatUpdate" xml:space="preserve"> <value>Update</value> </data> <data name="CustomColorFormatDefaultName" xml:space="preserve"> <value>My Format</value> </data> <data name="ColorFormatDialog.SecondaryButtonText" xml:space="preserve"> <value>Cancel</value> </data> <data name="ColorFormatEditorHelpline1.Text" xml:space="preserve"> <value>The following parameters can be used:</value> </data> <data name="Help_red" xml:space="preserve"> <value>red</value> </data> <data name="Help_green" xml:space="preserve"> <value>green</value> </data> <data name="Help_blue" xml:space="preserve"> <value>blue</value> </data> <data name="Help_alpha" xml:space="preserve"> <value>alpha</value> </data> <data name="Help_cyan" xml:space="preserve"> <value>cyan</value> </data> <data name="Help_magenta" xml:space="preserve"> <value>magenta</value> </data> <data name="Help_yellow" xml:space="preserve"> <value>yellow</value> </data> <data name="Help_black_key" xml:space="preserve"> <value>black key</value> </data> <data name="Help_hue" xml:space="preserve"> <value>hue</value> </data> <data name="Help_hueNat" xml:space="preserve"> <value>hue (natural)</value> </data> <data name="Help_saturationI" xml:space="preserve"> <value>saturation (HSI)</value> </data> <data name="Help_saturationL" xml:space="preserve"> <value>saturation (HSL)</value> </data> <data name="Help_saturationB" xml:space="preserve"> <value>saturation (HSB)</value> </data> <data name="Help_brightness" xml:space="preserve"> <value>brightness</value> </data> <data name="Help_intensity" xml:space="preserve"> <value>intensity</value> </data> <data name="Help_lightnessNat" xml:space="preserve"> <value>lightness (nat)</value> </data> <data name="Help_lightnessCIE" xml:space="preserve"> <value>lightness (CIE)</value> </data> <data name="Help_value" xml:space="preserve"> <value>value</value> </data> <data name="Help_whiteness" xml:space="preserve"> <value>whiteness</value> </data> <data name="Help_blackness" xml:space="preserve"> <value>blackness</value> </data> <data name="Help_chromaticityA" xml:space="preserve"> <value>chromaticityA</value> </data> <data name="Help_chromaticityB" xml:space="preserve"> <value>chromaticityB</value> </data> <data name="Help_X_value" xml:space="preserve"> <value>X value</value> </data> <data name="Help_Y_value" xml:space="preserve"> <value>Y value</value> </data> <data name="Help_Z_value" xml:space="preserve"> <value>Z value</value> </data> <data name="Help_decimal_value_RGB" xml:space="preserve"> <value>decimal value (RGB)</value> </data> <data name="Help_decimal_value_BGR" xml:space="preserve"> <value>decimal value (BGR)</value> </data> <data name="Help_color_name" xml:space="preserve"> <value>color name</value> </data> <data name="ColorFormatEditorHelpline2.Text" xml:space="preserve"> <value>The red, green, blue and alpha values can be formatted to the following formats:</value> </data> <data name="Help_byte" xml:space="preserve"> <value>byte value (default)</value> </data> <data name="Help_hexL1" xml:space="preserve"> <value>hex lowercase one digit</value> </data> <data name="Help_hexU1" xml:space="preserve"> <value>hex uppercase one digit</value> </data> <data name="Help_hexL2" xml:space="preserve"> <value>hex lowercase two digits</value> </data> <data name="Help_hexU2" xml:space="preserve"> <value>hex uppercase two digits</value> </data> <data name="Help_floatWith" xml:space="preserve"> <value>float with leading zero</value> </data> <data name="Help_floatWithout" xml:space="preserve"> <value>float without leading zero</value> </data> <data name="ColorFormatEditorHelpline3.Text" xml:space="preserve"> <value>Example: %ReX means red value in hex uppercase two digits format.</value> </data> <data name="ColorPicker_ShowColorName.Header" xml:space="preserve"> <value>Show color name</value> </data> <data name="ColorPicker_ShowColorName.Description" xml:space="preserve"> <value>This will show the name of the color when picking a color</value> </data> <data name="ImageResizer_DefaultSize_Large" xml:space="preserve"> <value>Large</value> <comment>The size of the image</comment> </data> <data name="ImageResizer_DefaultSize_Medium" xml:space="preserve"> <value>Medium</value> <comment>The size of the image</comment> </data> <data name="ImageResizer_DefaultSize_Phone" xml:space="preserve"> <value>Phone</value> <comment>The size of the image referring to a Mobile Phone typical image size</comment> </data> <data name="ImageResizer_DefaultSize_Small" xml:space="preserve"> <value>Small</value> <comment>The size of the image</comment> </data> <data name="FancyZones_MoveWindowBasedOnRelativePosition_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Windows key + Up, down, left or right arrow key to move windows based on relative position</value> </data> <data name="FancyZones_MoveWindowLeftRightBasedOnZoneIndex_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Windows key + Left or right arrow keys to move windows based on zone index</value> </data> <data name="FancyZones_MoveWindowBasedOnRelativePosition_Description.Text" xml:space="preserve"> <value>Windows key +    or </value> <comment>Do not loc the icons (hex numbers)</comment> </data> <data name="FancyZones_MoveWindowLeftRightBasedOnZoneIndex_Description.Text" xml:space="preserve"> <value>Windows key +  or </value> <comment>Do not loc the icons (hex numbers)</comment> </data> <data name="FancyZones_MoveWindowBasedOnRelativePosition.Text" xml:space="preserve"> <value>Relative position</value> </data> <data name="FancyZones_MoveWindow.Header" xml:space="preserve"> <value>Move windows based on</value> </data> <data name="FancyZones_MoveWindowLeftRightBasedOnZoneIndex.Text" xml:space="preserve"> <value>Zone index</value> </data> <data name="ColorPicker_Editor.Header" xml:space="preserve"> <value>Color formats</value> </data> <data name="FancyZones_OverlappingZonesClosestCenter.Content" xml:space="preserve"> <value>Activate the zone whose center is closest to the cursor</value> </data> <data name="FancyZones_OverlappingZonesLargest.Content" xml:space="preserve"> <value>Activate the largest zone by area</value> </data> <data name="FancyZones_OverlappingZonesPositional.Content" xml:space="preserve"> <value>Split the overlapped area into multiple activation targets</value> </data> <data name="FancyZones_OverlappingZonesSmallest.Content" xml:space="preserve"> <value>Activate the smallest zone by area</value> </data> <data name="FancyZones_OverlappingZones.Header" xml:space="preserve"> <value>When multiple zones overlap</value> </data> <data name="PowerLauncher_Plugins.Header" xml:space="preserve"> <value>Plugins</value> </data> <data name="PowerLauncher_ActionKeyword.Header" xml:space="preserve"> <value>Direct activation command</value> </data> <data name="PowerLauncher_AuthoredBy.Text" xml:space="preserve"> <value>Authored by</value> <comment>example: Authored by Microsoft</comment> </data> <data name="PowerLauncher_IncludeInGlobalResultTitle.Text" xml:space="preserve"> <value>Include in global result</value> </data> <data name="PowerLauncher_IncludeInGlobalResultDescription.Text" xml:space="preserve"> <value>Show results on queries without direct activation command</value> </data> <data name="PowerLauncher_EnablePluginToggle.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Enable plugin</value> </data> <data name="PowerLauncher_EnablePluginToggle.OnContent" xml:space="preserve"> <value>On</value> </data> <data name="PowerLauncher_EnablePluginToggle.OffContent" xml:space="preserve"> <value>Off</value> </data> <data name="Run_AdditionalOptions.Text" xml:space="preserve"> <value>Additional options</value> </data> <data name="Run_NotAccessibleWarning.Title" xml:space="preserve"> <value>Please define an activation command or allow this plugin to be used in the global results.</value> </data> <data name="Run_AllPluginsDisabled.Title" xml:space="preserve"> <value>PowerToys Run can't provide any results without plugins</value> </data> <data name="Run_AllPluginsDisabled.Message" xml:space="preserve"> <value>Enable at least one plugin to get started</value> </data> <data name="Run_PluginUse.Header" xml:space="preserve"> <value>Plugins</value> </data> <data name="Run_PluginUseDescription.Text" xml:space="preserve"> <value>Include or remove plugins from the global results, change the direct activation phrase and configure additional options</value> </data> <data name="Run_PositionAppearance_GroupSettings.Header" xml:space="preserve"> <value>Position &amp; appearance</value> </data> <data name="Run_PositionHeader.Header" xml:space="preserve"> <value>Preferred monitor position</value> <comment>as in Show PowerToys Run on primary monitor</comment> </data> <data name="Run_PositionHeader.Description" xml:space="preserve"> <value>If multiple monitors are in use, PowerToys Run can be launched on the desired monitor</value> <comment>as in Show PowerToys Run on primary monitor</comment> </data> <data name="Run_Radio_Position_Cursor.Content" xml:space="preserve"> <value>Monitor with mouse cursor</value> </data> <data name="Run_Radio_Position_Focus.Content" xml:space="preserve"> <value>Monitor with focused window</value> </data> <data name="Run_Radio_Position_Primary_Monitor.Content" xml:space="preserve"> <value>Primary monitor</value> </data> <data name="Run_PluginsLoading.Text" xml:space="preserve"> <value>Plugins are loading...</value> </data> <data name="ColorPicker_ButtonDown.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Move the color down</value> </data> <data name="ColorPicker_ButtonUp.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Move the color up</value> </data> <data name="FancyZones_FlashZonesOnQuickSwitch.Content" xml:space="preserve"> <value>Flash zones when switching layout</value> </data> <data name="FancyZones_Layouts.Header" xml:space="preserve"> <value>Layouts</value> </data> <data name="FancyZones_QuickLayoutSwitch.Header" xml:space="preserve"> <value>Enable quick layout switch</value> </data> <data name="FancyZones_QuickLayoutSwitch.Description" xml:space="preserve"> <value>Layout-specific shortcuts can be configured in the editor</value> </data> <data name="FancyZones_QuickLayoutSwitch_GroupSettings.Text" xml:space="preserve"> <value>Quick layout switch</value> </data> <data name="Activation_Shortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="Activation_Shortcut.Description" xml:space="preserve"> <value>Customize the shortcut to activate this module</value> </data> <data name="Oobe_GetStarted.Text" xml:space="preserve"> <value>Let's get started!</value> </data> <data name="Oobe_PowerToysDescription.Text" xml:space="preserve"> <value>Welcome to PowerToys! These overviews will help you quickly learn the basics of all our utilities.</value> </data> <data name="Oobe_GettingStarted.Text" xml:space="preserve"> <value>Getting started</value> </data> <data name="Oobe_Launch.Text" xml:space="preserve"> <value>Launch</value> </data> <data name="Launch_ColorPicker.Content" xml:space="preserve"> <value>Launch Color Picker</value> </data> <data name="Oobe_LearnMore.Text" xml:space="preserve"> <value>Learn more about</value> </data> <data name="Oobe_ColorPicker.Description" xml:space="preserve"> <value>Color Picker is a system-wide color selection tool for Windows that enables you to pick colors from any currently running application and automatically copies it in a configurable format to your clipboard.</value> </data> <data name="Oobe_FancyZones.Description" xml:space="preserve"> <value>FancyZones is a window manager that makes it easy to create complex window layouts and quickly position windows into those layouts.</value> </data> <data name="Oobe_FileLocksmith.Description" xml:space="preserve"> <value>File Locksmith lists which processes are using the selected files or directories and allows closing those processes.</value> </data> <data name="Oobe_FileExplorer.Description" xml:space="preserve"> <value>PowerToys introduces add-ons to the Windows File Explorer that will enable files like Markdown (.md), PDF (.pdf), SVG (.svg), STL (.stl), G-code (.gcode) and developer files to be viewed in the preview pane. It introduces File Explorer thumbnail support for a number of these file types as well.</value> </data> <data name="Oobe_ImageResizer.Description" xml:space="preserve"> <value>Image Resizer is a Windows shell extension for simple bulk image-resizing.</value> </data> <data name="Oobe_KBM.Description" xml:space="preserve"> <value>Keyboard Manager allows you to customize the keyboard to be more productive by remapping keys and creating your own keyboard shortcuts.</value> </data> <data name="Oobe_MouseWithoutBorders.Description" xml:space="preserve"> <value>Mouse Without Borders enables using the mouse pointer, keyboard, clipboard and drag and drop between machines in the same local network.</value> </data> <data name="Oobe_PowerRename.Description" xml:space="preserve"> <value>PowerRename enables you to perform simple bulk renaming, searching and replacing file names.</value> </data> <data name="Oobe_Run.Description" xml:space="preserve"> <value>PowerToys Run is a quick launcher for power users that contains some additional features without sacrificing performance.</value> </data> <data name="Oobe_MeasureTool.Description" xml:space="preserve"> <value>Screen Ruler is a quick and easy way to measure pixels on your screen.</value> </data> <data name="Oobe_ShortcutGuide.Description" xml:space="preserve"> <value>Shortcut Guide presents the user with a listing of available shortcuts for the current state of the desktop.</value> </data> <data name="Oobe_VideoConference.Description" xml:space="preserve"> <value>Video Conference Mute allows users to quickly mute the microphone and turn off the camera while on a conference call with a single keystroke, regardless of what application has focus on your computer.</value> </data> <data name="Oobe_MouseUtils.Description" xml:space="preserve"> <value>A collection of utilities to enhance your mouse.</value> <comment>Mouse as in the hardware peripheral</comment> </data> <data name="Oobe_Overview.Description" xml:space="preserve"> <value>Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. Take a moment to preview the various utilities listed or view our comprehensive documentation.</value> </data> <data name="Oobe_Overview_DescriptionLinkText.Text" xml:space="preserve"> <value>Documentation on Microsoft Docs</value> </data> <data name="ReleaseNotes.Content" xml:space="preserve"> <value>Release notes</value> </data> <data name="Oobe_ColorPicker_HowToUse.Text" xml:space="preserve"> <value>to open Color Picker.</value> </data> <data name="Oobe_ColorPicker_TipsAndTricks.Text" xml:space="preserve"> <value>To select a color with more precision, **scroll the mouse wheel** to zoom in.</value> </data> <data name="Oobe_FancyZones_HowToUse.Text" xml:space="preserve"> <value>**Shift** + **drag the window** to snap a window to a zone, and release the window in the desired zone.</value> </data> <data name="Oobe_FancyZones_HowToUse_Shortcut.Text" xml:space="preserve"> <value>to open the FancyZones editor.</value> </data> <data name="Oobe_FancyZones_TipsAndTricks.Text" xml:space="preserve"> <value>Snap a window to multiple zones by holding the **Ctrl** key (while also holding **Shift**) when dragging a window.</value> </data> <data name="Oobe_FileLocksmith_HowToUse.Text" xml:space="preserve"> <value>In File Explorer, right-click one or more selected files and select **What's using this file?** from the context menu.</value> </data> <data name="Oobe_FileLocksmith_TipsAndTricks.Text" xml:space="preserve"> <value>Press the **Restart Elevated** button from the File Locksmith UI to also get information on elevated processes that might be using the files.</value> </data> <data name="Oobe_FileExplorer_HowToEnable.Text" xml:space="preserve"> <value>Select **View** which is located at the top of File Explorer, followed by **Show**, and then **Preview pane**. From there, simply click on one of the supported files in the File Explorer and observe the content on the preview pane!</value> </data> <data name="Oobe_HowToCreateMappings.Text" xml:space="preserve"> <value>How to create mappings</value> </data> <data name="Oobe_HowToEnable.Text" xml:space="preserve"> <value>How to enable</value> </data> <data name="Oobe_HowToLaunch.Text" xml:space="preserve"> <value>How to launch</value> </data> <data name="Oobe_HowToUse.Text" xml:space="preserve"> <value>How to use</value> </data> <data name="Oobe_ImageResizer_HowToLaunch.Text" xml:space="preserve"> <value>In File Explorer, right-click one or more image files and select **Resize pictures** from the context menu.</value> </data> <data name="Oobe_ImageResizer_TipsAndTricks.Text" xml:space="preserve"> <value>Want a custom size? You can add them in the PowerToys Settings!</value> </data> <data name="Oobe_KBM_HowToCreateMappings.Text" xml:space="preserve"> <value>Launch **PowerToys Settings**, navigate to the Keyboard Manager menu, and select either **Remap a key** or **Remap a shortcut**.</value> </data> <data name="Oobe_KBM_TipsAndTricks.Text" xml:space="preserve"> <value>Want to only have a shortcut work for a single application? Use the Target App field when creating the shortcut remapping.</value> </data> <data name="Oobe_MouseWithoutBorders_HowToUse.Text" xml:space="preserve"> <value>Use the Settings screen on each machine to connect to the other machines using the same key. If a connection is not working, it may be necessary to add an exception to the Windows Firewall.</value> </data> <data name="Oobe_MouseWithoutBorders_TipsAndTricks.Text" xml:space="preserve"> <value>Use the service option in Settings to install a service enabling Mouse Without Borders to function even in the lock screen.</value> </data> <data name="Oobe_PowerRename_HowToUse.Text" xml:space="preserve"> <value>In File Explorer, right-click one or more selected files and select **PowerRename** from the context menu.</value> </data> <data name="Oobe_PowerRename_TipsAndTricks.Text" xml:space="preserve"> <value>PowerRename supports searching for files using regular expressions to enable more advanced renaming functionalities.</value> </data> <data name="Oobe_Run_HowToLaunch.Text" xml:space="preserve"> <value>to open Run and just start typing.</value> </data> <data name="Oobe_Run_TipsAndTricks.Text" xml:space="preserve"> <value>PowerToys Run supports various action keys to funnel search queries for a specific subset of results. Typing `&lt;` searches for running processes only, `?` will search only for file, or `.` for installed applications! See PowerToys documentation for the complete set of 'Action Keys' available.</value> </data> <data name="Oobe_ShortcutGuide_HowToLaunch.Text" xml:space="preserve"> <value>to open Shortcut Guide, press it again to close or press **Esc**.</value> </data> <data name="Oobe_TipsAndTricks.Text" xml:space="preserve"> <value>Tips &amp; tricks</value> </data> <data name="Oobe_VideoConference_ToggleMicVid.Text" xml:space="preserve"> <value>to toggle both your microphone and video</value> </data> <data name="Oobe_VideoConference_ToggleMic.Text" xml:space="preserve"> <value>to toggle your microphone</value> </data> <data name="Oobe_VideoConference_PushToTalkMic.Text" xml:space="preserve"> <value>to toggle your microphone until key release</value> </data> <data name="Oobe_VideoConference_ToggleVid.Text" xml:space="preserve"> <value>to toggle your video</value> </data> <data name="Oobe_MeasureTool_Activation.Text" xml:space="preserve"> <value>to bring up the Screen Ruler command bar.</value> </data> <data name="Oobe_MeasureTool_HowToLaunch.Text" xml:space="preserve"> <value>The Bounds mode lets you select a specific area to measure. You can also shift-drag an area to persist in on screen. The various Spacing modes allows tracing similar pixels along horizontal and vertical axes with a customizable pixel tolerance threshold (use settings or mouse wheel to adjust it).</value> </data> <data name="Oobe_MeasureTool.Title" xml:space="preserve"> <value>Screen Ruler</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_ColorPicker.Title" xml:space="preserve"> <value>Color Picker</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_FancyZones.Title" xml:space="preserve"> <value>FancyZones</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_FileLocksmith.Title" xml:space="preserve"> <value>File Locksmith</value> </data> <data name="Oobe_ImageResizer.Title" xml:space="preserve"> <value>Image Resizer</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_KBM.Title" xml:space="preserve"> <value>Keyboard Manager</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_MouseWithoutBorders.Title" xml:space="preserve"> <value>Mouse Without Borders</value> <comment>Product name. Do not localize this string</comment> </data> <data name="Oobe_PowerRename.Title" xml:space="preserve"> <value>PowerRename</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_Run.Title" xml:space="preserve"> <value>PowerToys Run</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_ShortcutGuide.Title" xml:space="preserve"> <value>Shortcut Guide</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_VideoConference.Title" xml:space="preserve"> <value>Video Conference Mute</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_Overview.Title" xml:space="preserve"> <value>Welcome</value> </data> <data name="Oobe_WhatsNew.Text" xml:space="preserve"> <value>What's new</value> </data> <data name="Oobe_WhatsNew_LoadingError.Title" xml:space="preserve"> <value>Couldn't load the release notes.</value> </data> <data name="Oobe_WhatsNew_LoadingError.Message" xml:space="preserve"> <value>Please check your internet connection.</value> </data> <data name="Oobe_WhatsNew_ProxyAuthenticationWarning.Title" xml:space="preserve"> <value>Couldn't load the release notes.</value> </data> <data name="Oobe_WhatsNew_ProxyAuthenticationWarning.Message" xml:space="preserve"> <value>Your proxy server requires authentication.</value> </data> <data name="Oobe_WhatsNew_DetailedReleaseNotesLink.Text" xml:space="preserve"> <value>See more detailed release notes on GitHub</value> <comment>Don't loc "GitHub", it's the name of a product</comment> </data> <data name="OOBE_Settings.Content" xml:space="preserve"> <value>Open Settings</value> </data> <data name="Oobe_NavViewItem.Content" xml:space="preserve"> <value>Welcome to PowerToys</value> <comment>Don't loc "PowerToys"</comment> </data> <data name="Feedback_NavViewItem.Content" xml:space="preserve"> <value>Give feedback</value> </data> <data name="OobeWindow_Title" xml:space="preserve"> <value>Welcome to PowerToys</value> </data> <data name="OobeWindow_TitleTxt.Text" xml:space="preserve"> <value>Welcome to PowerToys</value> </data> <data name="SettingsWindow_Title" xml:space="preserve"> <value>PowerToys Settings</value> <comment>Title of the settings window when running as user</comment> </data> <data name="Awake.ModuleTitle" xml:space="preserve"> <value>Awake</value> </data> <data name="Awake.ModuleDescription" xml:space="preserve"> <value>A convenient way to keep your PC awake on-demand.</value> </data> <data name="Awake_EnableSettingsCard.Header" xml:space="preserve"> <value>Enable Awake</value> <comment>Awake is a product name, do not loc</comment> </data> <data name="Awake_NoKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep using the selected power plan</value> </data> <data name="Awake_IndefiniteKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep awake indefinitely</value> </data> <data name="Awake_TemporaryKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep awake for a time interval</value> </data> <data name="Awake_ExpirableKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep awake until expiration</value> </data> <data name="Awake_DisplaySettingsCard.Header" xml:space="preserve"> <value>Keep screen on</value> </data> <data name="Awake_DisplaySettingsCard.Description" xml:space="preserve"> <value>This setting is only available when keeping the PC awake</value> </data> <data name="Awake_ExpirationSettingsExpander.Description" xml:space="preserve"> <value>Keep custom awake state until a specific date and time</value> </data> <data name="Awake_ModeSettingsCard.Header" xml:space="preserve"> <value>Mode</value> </data> <data name="Awake_BehaviorSettingsGroup.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="Awake_IntervalHoursInput.Header" xml:space="preserve"> <value>Hours</value> </data> <data name="Awake_IntervalMinutesInput.Header" xml:space="preserve"> <value>Minutes</value> </data> <data name="Awake_ExpirationSettingsExpander_Date.Header" xml:space="preserve"> <value>End date</value> </data> <data name="Awake_ExpirationSettingsExpander_Time.Header" xml:space="preserve"> <value>End time</value> </data> <data name="Oobe_Awake.Title" xml:space="preserve"> <value>Awake</value> <comment>Module name, do not loc</comment> </data> <data name="Oobe_Awake.Description" xml:space="preserve"> <value>Awake is a Windows tool designed to keep your PC awake on-demand without having to manage its power settings. This behavior can be helpful when running time-consuming tasks while ensuring that your PC does not go to sleep or turn off its screens.</value> </data> <data name="Oobe_Awake_HowToUse.Text" xml:space="preserve"> <value>Open **PowerToys Settings** and enable Awake</value> </data> <data name="Oobe_Awake_TipsAndTricks.Text" xml:space="preserve"> <value>You can always change modes quickly by **right-clicking the Awake icon** in the system tray.</value> </data> <data name="General_FailedToDownloadTheNewVersion.Title" xml:space="preserve"> <value>An error occurred trying to install this update:</value> </data> <data name="General_InstallNow.Content" xml:space="preserve"> <value>Install now</value> </data> <data name="General_ReadMore.Text" xml:space="preserve"> <value>Read more</value> </data> <data name="General_NewVersionAvailable.Title" xml:space="preserve"> <value>An update is available:</value> </data> <data name="General_Downloading.Text" xml:space="preserve"> <value>Downloading...</value> </data> <data name="General_TryAgainToDownloadAndInstall.Content" xml:space="preserve"> <value>Try again to download and install</value> </data> <data name="General_CheckingForUpdates.Text" xml:space="preserve"> <value>Checking for updates...</value> </data> <data name="General_NewVersionReadyToInstall.Title" xml:space="preserve"> <value>An update is ready to install:</value> </data> <data name="General_UpToDate.Title" xml:space="preserve"> <value>PowerToys is up to date</value> </data> <data name="General_CantCheck.Title" xml:space="preserve"> <value>Network error. Please try again later</value> </data> <data name="General_DownloadAndInstall.Content" xml:space="preserve"> <value>Download &amp; install</value> </data> <data name="ImageResizer_Fit_Fill_ThirdPersonSingular" xml:space="preserve"> <value>Fills</value> </data> <data name="ImageResizer_Fit_Fit_ThirdPersonSingular" xml:space="preserve"> <value>Fits within</value> </data> <data name="ImageResizer_Fit_Stretch_ThirdPersonSingular" xml:space="preserve"> <value>Stretches to</value> </data> <data name="ImageResizer_Unit_Centimeter" xml:space="preserve"> <value>Centimeters</value> </data> <data name="ImageResizer_Unit_Inch" xml:space="preserve"> <value>Inches</value> </data> <data name="ImageResizer_Unit_Percent" xml:space="preserve"> <value>Percent</value> </data> <data name="ImageResizer_Unit_Pixel" xml:space="preserve"> <value>Pixels</value> </data> <data name="EditButton.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Edit</value> </data> <data name="ImageResizer_EditSize.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Edit size</value> </data> <data name="No" xml:space="preserve"> <value>No</value> <comment>Label of a cancel button</comment> </data> <data name="Delete_Dialog_Description" xml:space="preserve"> <value>Are you sure you want to delete this item?</value> </data> <data name="Yes" xml:space="preserve"> <value>Yes</value> <comment>Label of a confirmation button</comment> </data> <data name="SeeWhatsNew.Content" xml:space="preserve"> <value>See what's new</value> </data> <data name="Awake_ModeSettingsCard.Description" xml:space="preserve"> <value>Manage the state of your device when Awake is active</value> </data> <data name="ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="Enable_ColorFormat.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Enable colorformat</value> </data> <data name="More_Options_Button.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>More options</value> </data> <data name="More_Options_ButtonTooltip.Text" xml:space="preserve"> <value>More options</value> </data> <data name="To.Text" xml:space="preserve"> <value>to</value> <comment>as in: from x to y</comment> </data> <data name="LearnMore_Awake.Text" xml:space="preserve"> <value>Learn more about Awake</value> <comment>Awake is a product name, do not loc</comment> </data> <data name="LearnMore_ColorPicker.Text" xml:space="preserve"> <value>Learn more about Color Picker</value> <comment>Color Picker is a product name, do not loc</comment> </data> <data name="LearnMore_FancyZones.Text" xml:space="preserve"> <value>Learn more about FancyZones</value> <comment>FancyZones is a product name, do not loc</comment> </data> <data name="LearnMore_FileLocksmith.Text" xml:space="preserve"> <value>Learn more about File Locksmith</value> </data> <data name="LearnMore_ImageResizer.Text" xml:space="preserve"> <value>Learn more about Image Resizer</value> <comment>Image Resizer is a product name, do not loc</comment> </data> <data name="LearnMore_KBM.Text" xml:space="preserve"> <value>Learn more about Keyboard Manager</value> <comment>Keyboard Manager is a product name, do not loc</comment> </data> <data name="LearnMore_MouseUtils.Text" xml:space="preserve"> <value>Learn more about Mouse utilities</value> <comment>Mouse utilities is a product name, do not loc</comment> </data> <data name="LearnMore_PastePlain.Text" xml:space="preserve"> <value>Learn more about Paste as Plain Text</value> <comment> Paste as Plain Text is the name of the module. </comment> </data> <data name="LearnMore_MouseWithoutBorders.Text" xml:space="preserve"> <value>Learn more about Mouse Without Borders</value> <comment>Mouse Without Borders is the name of the module. </comment> </data> <data name="LearnMore_PowerPreview.Text" xml:space="preserve"> <value>Learn more about File Explorer add-ons</value> <comment>File Explorer is a product name, localize as Windows does</comment> </data> <data name="LearnMore_Peek.Text" xml:space="preserve"> <value>Learn more about Peek</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="LearnMore_PowerRename.Text" xml:space="preserve"> <value>Learn more about PowerRename</value> <comment>PowerRename is a product name, do not loc</comment> </data> <data name="LearnMore_Run.Text" xml:space="preserve"> <value>Learn more about PowerToys Run</value> <comment>PowerToys Run is a product name, do not loc</comment> </data> <data name="LearnMore_MeasureTool.Text" xml:space="preserve"> <value>Learn more about Screen Ruler</value> <comment>Screen Ruler is a product name, do not loc</comment> </data> <data name="LearnMore_ShortcutGuide.Text" xml:space="preserve"> <value>Learn more about Shortcut Guide</value> <comment>Shortcut Guide is a product name, do not loc</comment> </data> <data name="LearnMore_VCM.Text" xml:space="preserve"> <value>Learn more about Video Conference Mute</value> <comment>Video Conference Mute is a product name, do not loc</comment> </data> <data name="Oobe_FileExplorer.Title" xml:space="preserve"> <value>File Explorer add-ons</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_MouseUtils.Title" xml:space="preserve"> <value>Mouse utilities</value> <comment>Mouse as in the hardware peripheral</comment> </data> <data name="Oobe_MouseUtils_FindMyMouse.Text" xml:space="preserve"> <value>Find My Mouse</value> <comment>Mouse as in the hardware peripheral</comment> </data> <data name="Oobe_MouseUtils_FindMyMouse_Description.Text" xml:space="preserve"> <value>Focus the mouse pointer pressing the Ctrl key twice, using a custom shortcut or shaking the mouse.</value> <comment>Mouse as in the hardware peripheral. Key as in a keyboard key</comment> </data> <data name="Oobe_MouseUtils_MouseHighlighter.Text" xml:space="preserve"> <value>Mouse Highlighter</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MouseHighlighter_Description.Text" xml:space="preserve"> <value>Use a keyboard shortcut to highlight left and right mouse clicks.</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MousePointerCrosshairs.Text" xml:space="preserve"> <value>Mouse Pointer Crosshairs</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MousePointerCrosshairs_Description.Text" xml:space="preserve"> <value>Draw crosshairs centered around the mouse pointer.</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MouseJump.Text" xml:space="preserve"> <value>Mouse Jump</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MouseJump_Description.Text" xml:space="preserve"> <value>Jump the mouse pointer quickly to anywhere on your desktop.</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Launch_Run.Content" xml:space="preserve"> <value>Launch PowerToys Run</value> </data> <data name="Launch_ShortcutGuide.Content" xml:space="preserve"> <value>Launch Shortcut Guide</value> </data> <data name="ColorPicker_ColorFormat_ToggleSwitch.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Show format in editor</value> </data> <data name="GeneralPage_Documentation.Text" xml:space="preserve"> <value>Documentation</value> </data> <data name="PowerLauncher_SearchList.PlaceholderText" xml:space="preserve"> <value>Search this list</value> </data> <data name="PowerLauncher_SearchList.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Search this list</value> </data> <data name="Awake.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="ColorPicker.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="General.SecondaryLinksHeader" xml:space="preserve"> <value>Related information</value> </data> <data name="ImageResizer.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="MouseUtils.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="PowerLauncher.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="PowerRename.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="EditTooltip.Text" xml:space="preserve"> <value>Edit</value> </data> <data name="RemoveTooltip.Text" xml:space="preserve"> <value>Remove</value> </data> <data name="Activation_Shortcut_Cancel" xml:space="preserve"> <value>Cancel</value> </data> <data name="Activation_Shortcut_Description" xml:space="preserve"> <value>Press a combination of keys to change this shortcut</value> </data> <data name="Activation_Shortcut_With_Disable_Description" xml:space="preserve"> <value>Press a combination of keys to change this shortcut. Right-click to remove the key combination, thereby deactivating the shortcut.</value> </data> <data name="Activation_Shortcut_Reset" xml:space="preserve"> <value>Reset</value> </data> <data name="Activation_Shortcut_Save" xml:space="preserve"> <value>Save</value> </data> <data name="Activation_Shortcut_Title" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="InvalidShortcut.Title" xml:space="preserve"> <value>Invalid shortcut</value> </data> <data name="InvalidShortcutWarningLabel.Text" xml:space="preserve"> <value>Only shortcuts that start with **Windows key**, **Ctrl**, **Alt** or **Shift** are valid.</value> <comment>The ** sequences are used for text formatting of the key names. Don't remove them on translation.</comment> </data> <data name="FancyZones_SpanZonesAcrossMonitors.Description" xml:space="preserve"> <value>All monitors must have the same DPI scaling and will be treated as one large combined rectangle which contains all monitors</value> </data> <data name="ImageResizer_DefaultSize_NewSizePrefix" xml:space="preserve"> <value>New size</value> <comment>First part of the default name of new sizes that can be added in PT's settings ui.</comment> </data> <data name="Awake_IntervalSettingsCard.Header" xml:space="preserve"> <value>Interval before returning to the previous awakeness state</value> </data> <data name="Awake_ExpirationSettingsExpander.Header" xml:space="preserve"> <value>End date and time</value> </data> <data name="MouseUtils.ModuleTitle" xml:space="preserve"> <value>Mouse utilities</value> </data> <data name="MouseUtils.ModuleDescription" xml:space="preserve"> <value>A collection of mouse utilities.</value> </data> <data name="MouseUtils_FindMyMouse.Header" xml:space="preserve"> <value>Find My Mouse</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_FindMyMouse.Description" xml:space="preserve"> <value>Find My Mouse highlights the position of the cursor when pressing the Ctrl key twice, using a custom shortcut or when shaking the mouse.</value> <comment>"Ctrl" is a keyboard key. "Find My Mouse" is the name of the utility</comment> </data> <data name="MouseUtils_Enable_FindMyMouse.Header" xml:space="preserve"> <value>Enable Find My Mouse</value> <comment>"Find My Mouse" is the name of the utility.</comment> </data> <data name="MouseUtils_FindMyMouse_ActivationMethod.Header" xml:space="preserve"> <value>Activation method</value> </data> <data name="MouseUtils_FindMyMouse_ActivationDoubleControlPress.Content" xml:space="preserve"> <value>Press Left Control twice</value> <comment>Left control is the physical key on the keyboard.</comment> </data> <data name="MouseUtils_FindMyMouse_ActivationShakeMouse.Content" xml:space="preserve"> <value>Shake mouse</value> <comment>Mouse is the hardware peripheral.</comment> </data> <data name="MouseUtils_FindMyMouse_ExcludedApps.Description" xml:space="preserve"> <value>Prevents module activation when an excluded application is the foreground application</value> </data> <data name="MouseUtils_FindMyMouse_ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="MouseUtils_FindMyMouse_ExcludedApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> </data> <data name="MouseUtils_Prevent_Activation_On_Game_Mode.Content" xml:space="preserve"> <value>Do not activate when Game Mode is on</value> <comment>"Game mode" is the Windows feature to prevent notification when playing a game.</comment> </data> <data name="MouseUtils_FindMyMouse_BackgroundColor.Header" xml:space="preserve"> <value>Background color</value> </data> <data name="MouseUtils_FindMyMouse_SpotlightColor.Header" xml:space="preserve"> <value>Spotlight color</value> </data> <data name="MouseUtils_FindMyMouse_OverlayOpacity.Header" xml:space="preserve"> <value>Overlay opacity (%)</value> </data> <data name="MouseUtils_FindMyMouse_SpotlightRadius.Header" xml:space="preserve"> <value>Spotlight radius (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_FindMyMouse_SpotlightInitialZoom.Header" xml:space="preserve"> <value>Spotlight initial zoom</value> </data> <data name="MouseUtils_FindMyMouse_SpotlightInitialZoom.Description" xml:space="preserve"> <value>Spotlight zoom factor at animation start</value> </data> <data name="MouseUtils_FindMyMouse_AnimationDurationMs.Header" xml:space="preserve"> <value>Animation duration (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_FindMyMouse_AnimationDurationMs.Description" xml:space="preserve"> <value>Time before the spotlight appears (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_FindMyMouse_AnimationDurationMs_Disabled.Message" xml:space="preserve"> <value>Animations are disabled by OS. See Settings &gt; Accessibility &gt; Visual effects</value> </data> <data name="MouseUtils_FindMyMouse_ShakingMinimumDistance.Header" xml:space="preserve"> <value>Shake minimum distance</value> </data> <data name="MouseUtils_FindMyMouse_ShakingMinimumDistance.Description" xml:space="preserve"> <value>The minimum distance for mouse shaking activation, for adjusting sensitivity</value> </data> <data name="MouseUtils_MouseHighlighter.Header" xml:space="preserve"> <value>Mouse Highlighter</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_MouseHighlighter.Description" xml:space="preserve"> <value>Mouse Highlighter mode will highlight mouse clicks.</value> <comment>"Mouse Highlighter" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_Enable_MouseHighlighter.Header" xml:space="preserve"> <value>Enable Mouse Highlighter</value> <comment>"Find My Mouse" is the name of the utility.</comment> </data> <data name="MouseUtils_MouseHighlighter_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MouseUtils_MouseHighlighter_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to turn on or off this mode</value> <comment>"Mouse Highlighter" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_MouseHighlighter_PrimaryButtonClickColor.Header" xml:space="preserve"> <value>Primary button highlight color</value> </data> <data name="MouseUtils_MouseHighlighter_SecondaryButtonClickColor.Header" xml:space="preserve"> <value>Secondary button highlight color</value> </data> <data name="MouseUtils_MouseHighlighter_HighlightRadius.Header" xml:space="preserve"> <value>Radius (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDelayMs.Header" xml:space="preserve"> <value>Fade delay (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDelayMs.Description" xml:space="preserve"> <value>Time before the highlight begins to fade (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDurationMs.Header" xml:space="preserve"> <value>Fade duration (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDurationMs.Description" xml:space="preserve"> <value>Duration of the disappear animation (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MousePointerCrosshairs.Header" xml:space="preserve"> <value>Mouse Pointer Crosshairs</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_MousePointerCrosshairs.Description" xml:space="preserve"> <value>Mouse Pointer Crosshairs draws crosshairs centered on the mouse pointer.</value> <comment>"Mouse Pointer Crosshairs" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_Enable_MousePointerCrosshairs.Header" xml:space="preserve"> <value>Enable Mouse Pointer Crosshairs</value> <comment>"Mouse Pointer Crosshairs" is the name of the utility.</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MouseUtils_MousePointerCrosshairs_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to show/hide the crosshairs</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsColor.Header" xml:space="preserve"> <value>Crosshairs color</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsOpacity.Header" xml:space="preserve"> <value>Crosshairs opacity (%)</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsRadius.Header" xml:space="preserve"> <value>Crosshairs center radius (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsThickness.Header" xml:space="preserve"> <value>Crosshairs thickness (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsBorderColor.Header" xml:space="preserve"> <value>Crosshairs border color</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsBorderSize.Header" xml:space="preserve"> <value>Crosshairs border size (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_IsCrosshairsFixedLengthEnabled.Header" xml:space="preserve"> <value>Fix crosshairs length</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsFixedLength.Header" xml:space="preserve"> <value>Crosshairs fixed length (px)</value> <comment>px = pixels</comment> </data> <data name="FancyZones_Radio_Custom_Colors.Content" xml:space="preserve"> <value>Custom colors</value> </data> <data name="FancyZones_Radio_Default_Theme.Content" xml:space="preserve"> <value>Windows default</value> </data> <data name="ColorModeHeader.Header" xml:space="preserve"> <value>App theme</value> </data> <data name="FancyZones_Zone_Appearance.Description" xml:space="preserve"> <value>Customize the way zones look</value> </data> <data name="FancyZones_Zone_Appearance.Header" xml:space="preserve"> <value>Zone appearance</value> </data> <data name="VideoConference_DeprecationWarning.Title" xml:space="preserve"> <value>VCM is moving into legacy mode (maintenance only).</value> </data> <data name="VideoConference_DeprecationWarningButton.Content" xml:space="preserve"> <value>Learn more</value> </data> <data name="LearnMore.Content" xml:space="preserve"> <value>Learn more</value> </data> <data name="VideoConference_RunAsAdminRequired.Title" xml:space="preserve"> <value>You need to run as administrator to modify these settings.</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_GCODE.Header" xml:space="preserve"> <value>Geometric Code</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_GCODE.Description" xml:space="preserve"> <value>Only .gcode files with embedded thumbnails are supported</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_GCODE.Header" xml:space="preserve"> <value>Geometric Code</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_GCODE.Description" xml:space="preserve"> <value>Only .gcode files with embedded thumbnails are supported</value> </data> <data name="FancyZones_NumberColor.Header" xml:space="preserve"> <value>Number color</value> </data> <data name="FancyZones_ShowZoneNumberCheckBoxControl.Content" xml:space="preserve"> <value>Show zone number</value> </data> <data name="ToggleSwitch.OffContent" xml:space="preserve"> <value>Off</value> <comment>The state of a ToggleSwitch when it's off</comment> </data> <data name="ToggleSwitch.OnContent" xml:space="preserve"> <value>On</value> <comment>The state of a ToggleSwitch when it's on</comment> </data> <data name="CropAndLock.ModuleDescription" xml:space="preserve"> <value>Crop And Lock allows you to crop a current application into a smaller window or just create a thumbnail. Focus the target window and press the shortcut to start cropping.</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="CropAndLock.ModuleTitle" xml:space="preserve"> <value>Crop And Lock </value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="CropAndLock_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="CropAndLock_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="Shell_CropAndLock.Content" xml:space="preserve"> <value>Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="LearnMore_CropAndLock.Text" xml:space="preserve"> <value>Learn more about Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="CropAndLock_ReparentActivation_Shortcut.Header" xml:space="preserve"> <value>Reparent shortcut</value> </data> <data name="CropAndLock_ReparentActivation_Shortcut.Description" xml:space="preserve"> <value>Shortcut to crop an application's window into a cropped window. This is experimental and can cause issues with some applications, since the cropped window will contain the original application window.</value> </data> <data name="CropAndLock_ThumbnailActivation_Shortcut.Header" xml:space="preserve"> <value>Thumbnail shortcut</value> </data> <data name="CropAndLock_ThumbnailActivation_Shortcut.Description" xml:space="preserve"> <value>Shortcut to crop and create a thumbnail of another window. The application isn't controllable through the thumbnail but it'll have less compatibility issues. </value> </data> <data name="CropAndLock.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="Oobe_CropAndLock.Title" xml:space="preserve"> <value>Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="Oobe_CropAndLock.Description" xml:space="preserve"> <value>Crop And Lock allows you to crop a current application into a smaller window or just create a thumbnail. Focus the target window and press the shortcut to start cropping.</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="Oobe_CropAndLock_HowToUse_Thumbnail.Text" xml:space="preserve"> <value>to crop and create a thumbnail of another window. The application isn't controllable through the thumbnail but it'll have less compatibility issues.</value> </data> <data name="Oobe_CropAndLock_HowToUse_Reparent.Text" xml:space="preserve"> <value>to crop an application's window into a cropped window. This is experimental and can cause issues with some applications, since the cropped window will contain the original application window.</value> </data> <data name="AlwaysOnTop.ModuleDescription" xml:space="preserve"> <value>Always On Top is a quick and easy way to pin windows on top.</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop.ModuleTitle" xml:space="preserve"> <value>Always On Top </value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="Peek_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="AlwaysOnTop_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_ExcludedApps.Description" xml:space="preserve"> <value>Excludes an application from pinning on top</value> </data> <data name="AlwaysOnTop_ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="AlwaysOnTop_ExcludedApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> </data> <data name="AlwaysOnTop_FrameColor.Header" xml:space="preserve"> <value>Color</value> </data> <data name="AlwaysOnTop_FrameEnabled.Header" xml:space="preserve"> <value>Show a border around the pinned window</value> </data> <data name="AlwaysOnTop_FrameThickness.Header" xml:space="preserve"> <value>Thickness (px)</value> <comment>px = pixels</comment> </data> <data name="AlwaysOnTop_Behavior_GroupSettings.Header" xml:space="preserve"> <value>Appearance &amp; behavior</value> </data> <data name="Shell_AlwaysOnTop.Content" xml:space="preserve"> <value>Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_GameMode.Content" xml:space="preserve"> <value>Do not activate when Game Mode is on</value> <comment>Game Mode is a Windows feature</comment> </data> <data name="AlwaysOnTop_SoundTitle.Header" xml:space="preserve"> <value>Sound</value> </data> <data name="AlwaysOnTop_Sound.Content" xml:space="preserve"> <value>Play a sound when pinning a window</value> </data> <data name="AlwaysOnTop_Behavior.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="LearnMore_AlwaysOnTop.Text" xml:space="preserve"> <value>Learn more about Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="AlwaysOnTop_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to pin or unpin an app window</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="Oobe_AlwaysOnTop.Title" xml:space="preserve"> <value>Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="Oobe_AlwaysOnTop.Description" xml:space="preserve"> <value>Always On Top improves your multitasking workflow by pinning an application window so it's always in front - even when focus changes to another window after that.</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="Oobe_AlwaysOnTop_HowToUse.Text" xml:space="preserve"> <value>to pin or unpin the selected window so it's always on top of all other windows.</value> </data> <data name="Oobe_AlwaysOnTop_TipsAndTricks.Text" xml:space="preserve"> <value>You can tweak the visual outline of the pinned windows in PowerToys settings.</value> </data> <data name="AlwaysOnTop_FrameColor_Mode.Header" xml:space="preserve"> <value>Color mode</value> </data> <data name="AlwaysOnTop_Radio_Custom_Color.Content" xml:space="preserve"> <value>Custom color</value> </data> <data name="AlwaysOnTop_Radio_Windows_Default.Content" xml:space="preserve"> <value>Windows default</value> </data> <data name="FileExplorerPreview.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Monaco_Wrap_Text.Content" xml:space="preserve"> <value>Wrap text</value> <comment>Feature on or off</comment> </data> <data name="FancyZones_AllowPopupWindowSnap.Description" xml:space="preserve"> <value>This setting can affect all popup windows including notifications</value> </data> <data name="FancyZones_AllowPopupWindowSnap.Header" xml:space="preserve"> <value>Allow popup windows snapping</value> </data> <data name="FancyZones_AllowChildWindowSnap.Content" xml:space="preserve"> <value>Allow child windows snapping</value> </data> <data name="Shell_WhatsNew.Content" xml:space="preserve"> <value>What's new</value> </data> <data name="Shell_Peek.Content" xml:space="preserve"> <value>Peek</value> <comment>Product name: Navigation view item name for Peek</comment> </data> <data name="Peek.ModuleTitle" xml:space="preserve"> <value>Peek</value> </data> <data name="Peek.ModuleDescription" xml:space="preserve"> <value>Peek is a quick and easy way to preview files. Select a file in File Explorer and press the shortcut to open the file preview.</value> </data> <data name="Peek_EnablePeek.Header" xml:space="preserve"> <value>Enable Peek</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="Peek_BehaviorHeader.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="Peek_AlwaysRunNotElevated.Header" xml:space="preserve"> <value>Always run not elevated, even when PowerToys is elevated</value> </data> <data name="Peek_AlwaysRunNotElevated.Description" xml:space="preserve"> <value>Tries to run Peek without elevated permissions, to fix access to network shares. You need to disable and re-enable Peek for changes to this value to take effect.</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="Peek_CloseAfterLosingFocus.Header" xml:space="preserve"> <value>Automatically close the Peek window after it loses focus</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="FancyZones_DisableRoundCornersOnWindowSnap.Content" xml:space="preserve"> <value>Disable round corners when window is snapped</value> </data> <data name="PowerLauncher_SearchQueryTuningEnabled.Description" xml:space="preserve"> <value>Fine tune results ordering</value> </data> <data name="PowerLauncher_SearchQueryTuningEnabled.Header" xml:space="preserve"> <value>Results order tuning</value> </data> <data name="PowerLauncher_SearchClickedItemWeight.Description" xml:space="preserve"> <value>Use a higher number to get selected results to rise faster. The default is 5, 0 to disable.</value> </data> <data name="PowerLauncher_SearchClickedItemWeight.Header" xml:space="preserve"> <value>Selected item weight</value> </data> <data name="PowerLauncher_WaitForSlowResults.Description" xml:space="preserve"> <value>Selecting this can help preselect the top, more relevant result, but at the risk of jumpiness</value> </data> <data name="PowerLauncher_WaitForSlowResults.Header" xml:space="preserve"> <value>Wait on slower plugin results before selecting top item in results</value> </data> <data name="PowerLauncher_PluginWeightBoost.Description" xml:space="preserve"> <value>Use a higher number to have this plugin's result show higher in the global results. Default is 0.</value> </data> <data name="PowerLauncher_PluginWeightBoost.Header" xml:space="preserve"> <value>Global sort order score modifier</value> </data> <data name="AlwaysOnTop_RoundCorners.Content" xml:space="preserve"> <value>Enable round corners</value> </data> <data name="LearnMore_QuickAccent.Text" xml:space="preserve"> <value>Learn more about Quick Accent</value> <comment>Quick Accent is a product name, do not loc</comment> </data> <data name="QuickAccent_EnableQuickAccent.Header" xml:space="preserve"> <value>Enable Quick Accent</value> </data> <data name="Shell_QuickAccent.Content" xml:space="preserve"> <value>Quick Accent</value> </data> <data name="QuickAccent.ModuleDescription" xml:space="preserve"> <value>Quick Accent is an alternative way to type accented characters, useful for when a keyboard doesn't support that specific accent. Activate by holding the key for the character you want to add an accent to, then press the activation key (space, left or right arrow keys) and an overlay to select accented characters will appear!</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent.ModuleTitle" xml:space="preserve"> <value>Quick Accent</value> </data> <data name="QuickAccent.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> </data> <data name="AlwaysOnTop_ShortDescription" xml:space="preserve"> <value>Pin a window</value> </data> <data name="Awake_ShortDescription" xml:space="preserve"> <value>Keep your PC awake</value> </data> <data name="ColorPicker_ShortDescription" xml:space="preserve"> <value>Pick a color</value> </data> <data name="CropAndLock_Thumbnail" xml:space="preserve"> <value>Thumbnail</value> </data> <data name="CropAndLock_Reparent" xml:space="preserve"> <value>Reparent</value> </data> <data name="FancyZones_OpenEditor" xml:space="preserve"> <value>Open editor</value> </data> <data name="FileLocksmith_ShortDescription" xml:space="preserve"> <value>Right-click on files or directories to show running processes</value> </data> <data name="FindMyMouse_ShortDescription" xml:space="preserve"> <value>Find the mouse</value> </data> <data name="ImageResizer_ShortDescription" xml:space="preserve"> <value>Select Image Resizer in the right-click context menu</value> </data> <data name="MouseHighlighter_ShortDescription" xml:space="preserve"> <value>Highlight clicks</value> </data> <data name="MouseJump_ShortDescription" xml:space="preserve"> <value>Quickly move the mouse pointer</value> </data> <data name="MouseCrosshairs_ShortDescription" xml:space="preserve"> <value>Draw crosshairs centered on the mouse pointer</value> </data> <data name="MouseWithoutBorders_ShortDescription" xml:space="preserve"> <value>Move your cursor across multiple devices</value> </data> <data name="PastePlain_ShortDescription" xml:space="preserve"> <value>Paste clipboard content without formatting</value> </data> <data name="Peek_ShortDescription" xml:space="preserve"> <value>Quick and easy previewer</value> </data> <data name="PowerRename_ShortDescription" xml:space="preserve"> <value>Select Power Rename in right-click context menu</value> </data> <data name="Run_ShortDescription" xml:space="preserve"> <value>A quick launcher</value> </data> <data name="PowerAccent_ShortDescription" xml:space="preserve"> <value>An alternative way to type accented characters</value> </data> <data name="RegistryPreview_ShortDescription" xml:space="preserve"> <value>Visualize and edit Windows Registry files</value> </data> <data name="ScreenRuler_ShortDescription" xml:space="preserve"> <value>Measure pixels on your screen</value> </data> <data name="ShortcutGuide_ShortDescription" xml:space="preserve"> <value>Show a help overlay with Windows shortcuts</value> </data> <data name="PowerOcr_ShortDescription" xml:space="preserve"> <value>A convenient way to copy text from anywhere on screen</value> </data> <data name="Dashboard_Activation" xml:space="preserve"> <value>Activation</value> </data> <data name="DashboardKBMShowMappingsButton.Content" xml:space="preserve"> <value>Show remappings</value> </data> <data name="Oobe_QuickAccent.Description" xml:space="preserve"> <value>Quick Accent is an easy way to write letters with accents, like on a smartphone.</value> </data> <data name="Oobe_QuickAccent.Title" xml:space="preserve"> <value>Quick Accent</value> </data> <data name="Oobe_QuickAccent_HowToUse.Text" xml:space="preserve"> <value>Open **PowerToys Settings** and enable Quick Accent. While holding the key for the character you want to add an accent to, press the Activation Key and an overlay to select the accented character will appear.</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="QuickAccent_Activation_Shortcut.Header" xml:space="preserve"> <value>Activation key</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent_Activation_Shortcut.Description" xml:space="preserve"> <value>Press this key after holding down the target letter</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent_Activation_Key_Arrows.Content" xml:space="preserve"> <value>Left/Right Arrow</value> <comment>Left/Right arrow keyboard keys</comment> </data> <data name="QuickAccent_Activation_Key_Space.Content" xml:space="preserve"> <value>Space</value> <comment>Space is the space keyboard key</comment> </data> <data name="QuickAccent_Activation_Key_Either.Content" xml:space="preserve"> <value>Left, Right or Space</value> <comment>All are keys on a keyboard</comment> </data> <data name="QuickAccent_Toolbar.Header" xml:space="preserve"> <value>Toolbar</value> </data> <data name="QuickAccent_ToolbarPosition.Header" xml:space="preserve"> <value>Toolbar position</value> </data> <data name="QuickAccent_ToolbarPosition_TopCenter.Content" xml:space="preserve"> <value>Top center</value> </data> <data name="QuickAccent_ToolbarPosition_TopLeftCorner.Content" xml:space="preserve"> <value>Top left corner</value> </data> <data name="QuickAccent_ToolbarPosition_TopRightCorner.Content" xml:space="preserve"> <value>Top right corner</value> </data> <data name="QuickAccent_ToolbarPosition_BottomLeftCorner.Content" xml:space="preserve"> <value>Bottom left corner</value> </data> <data name="QuickAccent_ToolbarPosition_BottomCenter.Content" xml:space="preserve"> <value>Bottom center</value> </data> <data name="QuickAccent_ToolbarPosition_BottomRightCorner.Content" xml:space="preserve"> <value>Bottom right corner</value> </data> <data name="QuickAccent_ToolbarPosition_Center.Content" xml:space="preserve"> <value>Center</value> </data> <data name="QuickAccent_ToolbarPosition_Left.Content" xml:space="preserve"> <value>Left</value> </data> <data name="QuickAccent_ToolbarPosition_Right.Content" xml:space="preserve"> <value>Right</value> </data> <data name="QuickAccent_Behavior.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="QuickAccent_InputTimeMs.Header" xml:space="preserve"> <value>Input delay (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="QuickAccent_InputTimeMs.Description" xml:space="preserve"> <value>Hold the key down for this much time to make the accent menu appear (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="QuickAccent_ExcludedApps.Description" xml:space="preserve"> <value>Prevents module activation if a foreground application is excluded. Add one application name per line.</value> </data> <data name="QuickAccent_ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="QuickAccent_ExcludedApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: Teams.exe</value> </data> <data name="LearnMore_TextExtractor.Text" xml:space="preserve"> <value>Learn more about Text Extractor</value> </data> <data name="TextExtractor_Cancel" xml:space="preserve"> <value>cancel</value> </data> <data name="General_SettingsBackupAndRestore_NothingToBackup" xml:space="preserve"> <value>A new backup was not created because no settings have been changed since last backup.</value> </data> <data name="General_SettingsBackupAndRestore_NoBackupFound" xml:space="preserve"> <value>No backup found</value> </data> <data name="General_SettingsBackupAndRestore_FailedToParseTime" xml:space="preserve"> <value>Failed to parse time</value> </data> <data name="General_SettingsBackupAndRestore_UnknownBackupTime" xml:space="preserve"> <value>Unknown</value> </data> <data name="General_SettingsBackupAndRestore_UnknownBackupSource" xml:space="preserve"> <value>Unknown</value> </data> <data name="General_SettingsBackupAndRestore_ThisMachine" xml:space="preserve"> <value>This computer</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsMatch" xml:space="preserve"> <value>Current settings match</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsStatusAt" xml:space="preserve"> <value>at</value> <comment>E.g., Food was served 'at' noon.</comment> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsDiffer" xml:space="preserve"> <value>Current settings differ</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsNoChecked" xml:space="preserve"> <value>Checking...</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsUnknown" xml:space="preserve"> <value>Unknown</value> </data> <data name="General_SettingsBackupAndRestore_NeverRestored" xml:space="preserve"> <value>Never restored</value> </data> <data name="General_SettingsBackupAndRestore_NothingToRestore" xml:space="preserve"> <value>Nothing to restore.</value> </data> <data name="General_SettingsBackupAndRestore_NoSettingsFilesFound" xml:space="preserve"> <value>No settings files found.</value> </data> <data name="General_SettingsBackupAndRestore_BackupError" xml:space="preserve"> <value>There was an error. Try another backup location.</value> </data> <data name="General_SettingsBackupAndRestore_SettingsFormatError" xml:space="preserve"> <value>There was an error in the settings format. Please check the settings file:</value> </data> <data name="General_SettingsBackupAndRestore_BackupComplete" xml:space="preserve"> <value>Backup completed.</value> </data> <data name="General_SettingsBackupAndRestore_NoBackupSyncPath" xml:space="preserve"> <value>No backup location selected.</value> </data> <data name="General_SettingsBackupAndRestore_NoBackupsFound" xml:space="preserve"> <value>No backups found to restore.</value> </data> <data name="General_SettingsBackupAndRestore_InvalidBackupLocation" xml:space="preserve"> <value>Invalid backup location.</value> </data> <data name="TextExtractor.ModuleDescription" xml:space="preserve"> <value>Text Extractor is a convenient way to copy text from anywhere on screen</value> </data> <data name="TextExtractor.ModuleTitle" xml:space="preserve"> <value>Text Extractor</value> </data> <data name="TextExtractor_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Text Extractor</value> </data> <data name="TextExtractor_SupportedLanguages.Title" xml:space="preserve"> <value>Text Extractor can only recognize languages that have the OCR pack installed.</value> </data> <data name="TextExtractor_SupportedLanguages_Link.Content" xml:space="preserve"> <value>Learn more about supported languages</value> </data> <data name="Shell_TextExtractor.Content" xml:space="preserve"> <value>Text Extractor</value> </data> <data name="Launch_TextExtractor.Content" xml:space="preserve"> <value>Launch Text Extractor</value> </data> <data name="Oobe_TextExtractor.Title" xml:space="preserve"> <value>Text Extractor</value> </data> <data name="Oobe_TextExtractor_HowToUse.Text" xml:space="preserve"> <value>to open Text Extractor and then selecting a region to copy the text from.</value> </data> <data name="Oobe_TextExtractor_TipsAndTricks.Text" xml:space="preserve"> <value>Hold the shift key to move the selection region around.</value> </data> <data name="TextExtractor.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> </data> <data name="Oobe_TextExtractor.Description" xml:space="preserve"> <value>Text Extractor works like Snipping Tool, but copies the text out of the selected region using OCR and puts it on the clipboard.</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Monaco_Try_Format.Description" xml:space="preserve"> <value>Applies to json and xml. Files remain unchanged.</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Monaco_Try_Format.Header" xml:space="preserve"> <value>Try to format the source for preview</value> </data> <data name="Run_ConflictingKeywordInfo.Title" xml:space="preserve"> <value>Some characters and phrases may conflict with global queries of other plugins if you use them as activation command.</value> </data> <data name="Run_ConflictingKeywordInfo_Link.Content" xml:space="preserve"> <value>Learn more about conflicting activation commands</value> </data> <data name="MeasureTool_ContinuousCapture_Information.Title" xml:space="preserve"> <value>The continuous capture mode will consume more resources when in use. Also, measurements will be excluded from screenshots and screen capture.</value> <comment>pointer as in mouse pointer. Resources refer to things like CPU, GPU, RAM</comment> </data> <data name="QuickAccent_Description_Indicator.Header" xml:space="preserve"> <value>Show the Unicode code and name of the currently selected character</value> </data> <data name="QuickAccent_SortByUsageFrequency_Indicator.Header" xml:space="preserve"> <value>Sort characters by usage frequency</value> </data> <data name="QuickAccent_SortByUsageFrequency_Indicator.Description" xml:space="preserve"> <value>Track characters usage frequency and sort them accordingly</value> </data> <data name="QuickAccent_StartSelectionFromTheLeft_Indicator.Header" xml:space="preserve"> <value>Start selection from the left</value> </data> <data name="QuickAccent_StartSelectionFromTheLeft_Indicator.Description" xml:space="preserve"> <value>Start selection from the leftmost character for all activation keys, including left and right arrows</value> </data> <data name="QuickAccent_DisableFullscreen.Header" xml:space="preserve"> <value>Disable when Game Mode is On</value> </data> <data name="QuickAccent_Language.Header" xml:space="preserve"> <value>Characters</value> </data> <data name="QuickAccent_SelectedLanguage.Header" xml:space="preserve"> <value>Choose a character set</value> </data> <data name="QuickAccent_SelectedLanguage.Description" xml:space="preserve"> <value>Show only accented characters common to the selected set</value> </data> <data name="QuickAccent_SelectedLanguage_All.Content" xml:space="preserve"> <value>All available</value> </data> <data name="QuickAccent_SelectedLanguage_Catalan.Content" xml:space="preserve"> <value>Catalan</value> </data> <data name="QuickAccent_SelectedLanguage_Currency.Content" xml:space="preserve"> <value>Currency</value> </data> <data name="QuickAccent_SelectedLanguage_Croatian.Content" xml:space="preserve"> <value>Croatian</value> </data> <data name="QuickAccent_SelectedLanguage_Czech.Content" xml:space="preserve"> <value>Czech</value> </data> <data name="QuickAccent_SelectedLanguage_Gaeilge.Content" xml:space="preserve"> <value>Gaeilge</value> <comment>Gaelic language spoken in Ireland</comment> </data> <data name="QuickAccent_SelectedLanguage_Gaidhlig.Content" xml:space="preserve"> <value>Gàidhlig</value> <comment>Scottish Gaelic</comment> </data> <data name="QuickAccent_SelectedLanguage_German.Content" xml:space="preserve"> <value>German</value> </data> <data name="QuickAccent_SelectedLanguage_Hebrew.Content" xml:space="preserve"> <value>Hebrew</value> </data> <data name="QuickAccent_SelectedLanguage_French.Content" xml:space="preserve"> <value>French</value> </data> <data name="QuickAccent_SelectedLanguage_Estonian.Content" xml:space="preserve"> <value>Estonian</value> </data> <data name="QuickAccent_SelectedLanguage_Lithuanian.Content" xml:space="preserve"> <value>Lithuanian</value> </data> <data name="QuickAccent_SelectedLanguage_Macedonian.Content" xml:space="preserve"> <value>Macedonian</value> </data> <data name="QuickAccent_SelectedLanguage_Maori.Content" xml:space="preserve"> <value>Maori</value> </data> <data name="QuickAccent_SelectedLanguage_Dutch.Content" xml:space="preserve"> <value>Dutch</value> </data> <data name="QuickAccent_SelectedLanguage_Norwegian.Content" xml:space="preserve"> <value>Norwegian</value> </data> <data name="QuickAccent_SelectedLanguage_Pinyin.Content" xml:space="preserve"> <value>Pinyin</value> </data> <data name="QuickAccent_SelectedLanguage_Polish.Content" xml:space="preserve"> <value>Polish</value> </data> <data name="QuickAccent_SelectedLanguage_Portuguese.Content" xml:space="preserve"> <value>Portuguese</value> </data> <data name="QuickAccent_SelectedLanguage_Slovakian.Content" xml:space="preserve"> <value>Slovakian</value> </data> <data name="QuickAccent_SelectedLanguage_Spanish.Content" xml:space="preserve"> <value>Spanish</value> </data> <data name="QuickAccent_SelectedLanguage_Swedish.Content" xml:space="preserve"> <value>Swedish</value> </data> <data name="QuickAccent_SelectedLanguage_Turkish.Content" xml:space="preserve"> <value>Turkish</value> </data> <data name="QuickAccent_SelectedLanguage_Icelandic.Content" xml:space="preserve"> <value>Icelandic</value> </data> <data name="QuickAccent_SelectedLanguage_Romanian.Content" xml:space="preserve"> <value>Romanian</value> </data> <data name="QuickAccent_SelectedLanguage_Serbian.Content" xml:space="preserve"> <value>Serbian</value> </data> <data name="QuickAccent_SelectedLanguage_Hungarian.Content" xml:space="preserve"> <value>Hungarian</value> </data> <data name="QuickAccent_SelectedLanguage_Italian.Content" xml:space="preserve"> <value>Italian</value> </data> <data name="QuickAccent_SelectedLanguage_Kurdish.Content" xml:space="preserve"> <value>Kurdish</value> </data> <data name="QuickAccent_SelectedLanguage_Welsh.Content" xml:space="preserve"> <value>Welsh</value> </data> <data name="Hosts.ModuleDescription" xml:space="preserve"> <value>Quick and simple utility for managing hosts file.</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Hosts.ModuleTitle" xml:space="preserve"> <value>Hosts File Editor</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Shell_Hosts.Content" xml:space="preserve"> <value>Hosts File Editor</value> <comment>Products name: Navigation view item name for Hosts File Editor</comment> </data> <data name="Hosts_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Hosts_Toggle_ShowStartupWarning.Header" xml:space="preserve"> <value>Show a warning at startup</value> </data> <data name="Hosts_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="Hosts_LaunchButtonControl.Description" xml:space="preserve"> <value>Manage your hosts file</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Hosts_LaunchButtonControl.Header" xml:space="preserve"> <value>Launch Host File Editor</value> <comment>"Host File Editor" is a product name</comment> </data> <data name="Hosts_LaunchButton_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Launch Host File Editor</value> <comment>"Host File Editor" is a product name</comment> </data> <data name="Hosts_AdditionalLinesPosition.Header" xml:space="preserve"> <value>Position of additional content</value> </data> <data name="Hosts_AdditionalLinesPosition_Bottom.Content" xml:space="preserve"> <value>Bottom</value> </data> <data name="Hosts_AdditionalLinesPosition_Top.Content" xml:space="preserve"> <value>Top</value> </data> <data name="Hosts_Behavior_GroupSettings.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="Launch_Hosts.Content" xml:space="preserve"> <value>Launch Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="LearnMore_Hosts.Text" xml:space="preserve"> <value>Learn more about Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Oobe_Hosts.Description" xml:space="preserve"> <value>Hosts File Editor is a quick and simple utility for managing hosts file.</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Oobe_Hosts.Title" xml:space="preserve"> <value>Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Hosts_Toggle_LaunchAdministrator.Description" xml:space="preserve"> <value>Needs to be launched as administrator in order to make changes to the hosts file</value> </data> <data name="Hosts_Toggle_LaunchAdministrator.Header" xml:space="preserve"> <value>Launch as administrator</value> </data> <data name="ShortcutGuide_PressTimeForTaskbarIconShortcuts.Header" xml:space="preserve"> <value>Press duration before showing taskbar icon shortcuts (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="FileLocksmith.ModuleDescription" xml:space="preserve"> <value>A Windows shell extension to find out which processes are using the selected files and directories.</value> </data> <data name="FileLocksmith.ModuleTitle" xml:space="preserve"> <value>File Locksmith</value> </data> <data name="Shell_FileLocksmith.Content" xml:space="preserve"> <value>File Locksmith</value> <comment>Product name: Navigation view item name for FileLocksmith</comment> </data> <data name="FileLocksmith_Enable_FileLocksmith.Header" xml:space="preserve"> <value>Enable File Locksmith</value> <comment>File Locksmith is the name of the utility</comment> </data> <data name="FileLocksmith_Toggle_StandardContextMenu.Content" xml:space="preserve"> <value>Default and extended context menu</value> </data> <data name="FileLocksmith_Toggle_ExtendedContextMenu.Content" xml:space="preserve"> <value>Extended context menu only</value> </data> <data name="FileLocksmith_Toggle_ContextMenu.Header" xml:space="preserve"> <value>Show File Locksmith in</value> </data> <data name="FileLocksmith_ShellIntegration.Header" xml:space="preserve"> <value>Shell integration</value> <comment>This refers to directly integrating in with Windows</comment> </data> <data name="GPO_IsSettingForced.Title" xml:space="preserve"> <value>This setting is enforced by your System Administrator.</value> </data> <data name="Hosts_AdditionalLinesPosition.Description" xml:space="preserve"> <value>Additional content includes the file header and lines that can't parse</value> </data> <data name="TextExtractor_Languages.Header" xml:space="preserve"> <value>Preferred language</value> </data> <data name="Alternate_OOBE_AlwaysOnTop_Description.Text" xml:space="preserve"> <value>Pin a window so that:</value> </data> <data name="Alternate_OOBE_AlwaysOnTop_Title.Text" xml:space="preserve"> <value>Always On Top</value> </data> <data name="Alternate_OOBE_ColorPicker_Description.Text" xml:space="preserve"> <value>To pick a color:</value> </data> <data name="Alternate_OOBE_ColorPicker_Title.Text" xml:space="preserve"> <value>Color Picker</value> </data> <data name="Alternate_OOBE_Description.Text" xml:space="preserve"> <value>Here are a few shortcuts to get you started:</value> </data> <data name="Alternate_OOBE_FancyZones_Description.Text" xml:space="preserve"> <value>To open the FancyZones editor, press:</value> </data> <data name="Alternate_OOBE_FancyZones_Title.Text" xml:space="preserve"> <value>FancyZones</value> </data> <data name="Alternate_OOBE_Run_Description.Text" xml:space="preserve"> <value>Get access to your files and more:</value> </data> <data name="Alternate_OOBE_Run_Title.Text" xml:space="preserve"> <value>PowerToys Run</value> </data> <data name="General_Experimentation.Header" xml:space="preserve"> <value>Experimentation</value> </data> <data name="GeneralPage_EnableExperimentation.Description" xml:space="preserve"> <value>Note: Only Windows Insider builds may be selected for experimentation</value> </data> <data name="GeneralPage_EnableExperimentation.Header" xml:space="preserve"> <value>Allow experimentation with new features</value> </data> <data name="GPO_ExperimentationIsDisallowed.Title" xml:space="preserve"> <value>The system administrator has disabled experimentation.</value> </data> <data name="Shell_PastePlain.Content" xml:space="preserve"> <value>Paste As Plain Text</value> <comment>Product name: Navigation view item name for Paste as Plain Text</comment> </data> <data name="PastePlain.ModuleDescription" xml:space="preserve"> <value>Paste As Plain Text is a quick shortcut for pasting the text contents of your clipboard without formatting. Note: the formatted text in the clipboard is replaced with the unformatted text.</value> </data> <data name="PastePlain.ModuleTitle" xml:space="preserve"> <value>Paste As Plain Text</value> </data> <data name="PastePlain_Cancel" xml:space="preserve"> <value>cancel</value> </data> <data name="PastePlain_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Paste As Plain Text</value> </data> <data name="Oobe_PastePlain.Description" xml:space="preserve"> <value>Paste As Plain Text strips rich formatting from your clipboard data and pastes it as non-formatted text.</value> </data> <data name="Oobe_PastePlain.Title" xml:space="preserve"> <value>Paste As Plain Text</value> </data> <data name="Oobe_PastePlain_HowToUse.Text" xml:space="preserve"> <value>to paste your clipboard data as plain text. Note: this will replace the formatted text in your clipboard with the plain text.</value> </data> <data name="AllAppsTxt.Text" xml:space="preserve"> <value>All apps</value> </data> <data name="BackBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Back</value> </data> <data name="BackLabel.Text" xml:space="preserve"> <value>Back</value> </data> <data name="BugReportBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Bug report</value> </data> <data name="BugReportTooltip.Text" xml:space="preserve"> <value>Bug report</value> </data> <data name="DocsBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Documentation</value> </data> <data name="DocsTooltip.Text" xml:space="preserve"> <value>Documentation</value> </data> <data name="FZEditorString" xml:space="preserve"> <value>FancyZones Editor</value> <comment>Do not localize this string</comment> </data> <data name="MoreBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>More</value> </data> <data name="MoreLabel.Text" xml:space="preserve"> <value>More</value> </data> <data name="SettingsBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Settings</value> </data> <data name="SettingsTooltip.Text" xml:space="preserve"> <value>Settings</value> </data> <data name="ShortcutsTxt.Text" xml:space="preserve"> <value>Shortcuts</value> </data> <data name="UpdateAvailable.Title" xml:space="preserve"> <value>Update available</value> </data> <data name="FileExplorerPreview_Toggle_Monaco_Max_File_Size.Header" xml:space="preserve"> <value>Maximum file size to preview</value> <comment>Size refers to the disk space used by a file</comment> </data> <data name="FileExplorerPreview_Toggle_Monaco_Max_File_Size.Description" xml:space="preserve"> <value>The maximum size, in kilobytes, for files to be displayed. This is a safety mechanism to prevent loading large files into RAM.</value> <comment>"RAM" refers to random access memory; "size" refers to disk space; "bytes" refer to the measurement unit</comment> </data> <data name="RegistryPreview.ModuleDescription" xml:space="preserve"> <value>A quick little utility to visualize and edit complex Windows Registry files.</value> </data> <data name="RegistryPreview.ModuleTitle" xml:space="preserve"> <value>Registry Preview</value> </data> <data name="Shell_RegistryPreview.Content" xml:space="preserve"> <value>Registry Preview</value> <comment>Product name: Navigation view item name for Registry Preview</comment> </data> <data name="RegistryPreview_Enable_RegistryPreview.Header" xml:space="preserve"> <value>Enable Registry Preview</value> <comment>Registry Preview is the name of the utility</comment> </data> <data name="Oobe_RegistryPreview_HowToUse.Text" xml:space="preserve"> <value>In File Explorer, right-click a .REG file and select **Preview** from the context menu.</value> </data> <data name="Oobe_RegistryPreview_TipsAndTricks.Text" xml:space="preserve"> <value>You can preview or edit Registry files in File Explorer or by opening the app from the PowerToys launcher.</value> </data> <data name="Oobe_RegistryPreview.Description" xml:space="preserve"> <value>Registry Preview is a quick little utility to visualize and edit complex Windows Registry files.</value> </data> <data name="Oobe_RegistryPreview.Title" xml:space="preserve"> <value>Registry Preview</value> <comment>Do not localize this string</comment> </data> <data name="LearnMore_RegistryPreview.Text" xml:space="preserve"> <value>Learn more about Registry Preview</value> <comment>Registry Preview is a product name, do not loc</comment> </data> <data name="Launch_RegistryPreview.Content" xml:space="preserve"> <value>Launch Registry Preview</value> <comment>"Registry Preview" is the name of the utility</comment> </data> <data name="MouseUtils_MouseJump.Description" xml:space="preserve"> <value>Quickly move the mouse pointer long distances.</value> <comment>"Mouse Jump" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_MouseJump.Header" xml:space="preserve"> <value>Mouse Jump</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_MouseJump_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to turn on or off this mode</value> </data> <data name="MouseUtils_MouseJump_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MouseUtils_Enable_MouseJump.Header" xml:space="preserve"> <value>Enable Mouse Jump</value> <comment>"Mouse Jump" is the name of the utility.</comment> </data> <data name="GPO_AutoDownloadUpdatesIsDisabled.Title" xml:space="preserve"> <value>The system administrator has disabled the automatic download of updates.</value> </data> <data name="Hosts_Toggle_LoopbackDuplicates.Description" xml:space="preserve"> <value>127.0.0.1, ::1, ...</value> <comment>"127.0.0.1 and ::1" are well known loopback addresses, do not loc</comment> </data> <data name="Hosts_Toggle_LoopbackDuplicates.Header" xml:space="preserve"> <value>Consider loopback addresses as duplicates</value> </data> <data name="RegistryPreview_Launch_GroupSettings.Header" xml:space="preserve"> <value>Launch</value> </data> <data name="RegistryPreview_LaunchButton_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Launch Registry Preview</value> </data> <data name="RegistryPreview_LaunchButtonControl.Header" xml:space="preserve"> <value>Launch Registry Preview</value> </data> <data name="RegistryPreview_DefaultRegApp.Header" xml:space="preserve"> <value>Default app</value> </data> <data name="RegistryPreview_DefaultRegApp.Description" xml:space="preserve"> <value>Make Registry Preview default app for opening .reg files</value> <comment>Registry Preview is app name. Do not localize.</comment> </data> <data name="PastePlain_ShortcutWarning.Title" xml:space="preserve"> <value>Using this shortcut may prevent non-text paste actions (e.g. images, files) or built-in paste plain text actions in other applications from functioning.</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize.Header" xml:space="preserve"> <value>Thumbnail Size</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Description_Prefix.Text" xml:space="preserve"> <value>Constrain thumbnail image size to a maximum of</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Description_Suffix.Text" xml:space="preserve"> <value>pixels</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Edit_Height.Header" xml:space="preserve"> <value>Maximum height (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Edit_Width.Header" xml:space="preserve"> <value>Maximum width (px)</value> <comment>px = pixels</comment> </data> <data name="Oobe_Peek.Description" xml:space="preserve"> <value>A lightning fast file preview feature for Windows.</value> </data> <data name="Oobe_Peek.Title" xml:space="preserve"> <value>Peek</value> </data> <data name="Oobe_Peek_HowToUse.Text" xml:space="preserve"> <value>to preview the file that's currently selected in File Explorer.</value> </data> <data name="MWB_PCNameLabel.PlaceholderText" xml:space="preserve"> <value>Device name</value> </data> <data name="MWB_SecurityKeyLabel.PlaceholderText" xml:space="preserve"> <value>Security key</value> </data> <data name="Hosts_Encoding.Description" xml:space="preserve"> <value>Choose the encoding of the hosts file</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Hosts_Encoding.Header" xml:space="preserve"> <value>Encoding</value> </data> <data name="Hosts_Encoding_Utf8.Content" xml:space="preserve"> <value>UTF-8</value> </data> <data name="Hosts_Encoding_Utf8Bom.Content" xml:space="preserve"> <value>UTF-8 with BOM</value> </data> <data name="MouseUtils_MouseHighlighter_AlwaysColor.Header" xml:space="preserve"> <value>Always highlight color</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsAutoHide.Content" xml:space="preserve"> <value>Automatically hide crosshairs when the mouse pointer is hidden</value> </data> <data name="MouseUtils_AutoActivate.Content" xml:space="preserve"> <value>Automatically activate on utility startup</value> </data> <data name="Run_FindMorePlugins.Text" xml:space="preserve"> <value>Find more plugins</value> </data> <data name="Run_PluginUseFindMorePlugins.Content" xml:space="preserve"> <value>Find more plugins</value> </data> <data name="Run_SomePluginsAreGpoManaged.Title" xml:space="preserve"> <value>The system administrator is managing the enabled state of some plugins.</value> </data> <data name="AlwaysOnTop_FrameOpacity.Header" xml:space="preserve"> <value>Opacity (%)</value> </data> <data name="MouseUtils_FindMyMouse_ActivationCustomizedShortcut.Content" xml:space="preserve"> <value>Custom shortcut</value> </data> <data name="MouseUtils_FindMyMouse_ActivationDoubleRightControlPress.Content" xml:space="preserve"> <value>Press Right Control twice</value> <comment>Right control is the physical key on the keyboard.</comment> </data> <data name="MouseUtils_FindMyMouse_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to turn on or off this mode</value> </data> <data name="MouseUtils_FindMyMouse_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="SettingsWindow_AdminTitle" xml:space="preserve"> <value>Administrator: PowerToys Settings</value> <comment>Title of the settings window when running as administrator</comment> </data> <data name="DashboardTitle.Text" xml:space="preserve"> <value>Dashboard</value> </data> <data name="Shell_Dashboard.Content" xml:space="preserve"> <value>Dashboard</value> </data> <data name="GPO_IsSettingForcedText.Text" xml:space="preserve"> <value>This setting is enforced by your System Administrator.</value> </data> <data name="DisabledModules.Text" xml:space="preserve"> <value>Disabled modules</value> </data> <data name="EnabledModules.Text" xml:space="preserve"> <value>Enabled modules</value> </data> </root>
donlaci
8c22f0c48540793452b70d913b2a6a719c881a33
1f936df3ebce73b726ed11c9fa38fd477b4b0fbd
Equals `.Title` now?
Jay-o-Way
352
microsoft/PowerToys
29,023
[Settings] Adding a Dashboard Panel
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request Adding a new Dashboard panel to the settings app. It contains the active modules with a brief description, activation shortcut if present, launch button if reasonable and a quick link button to the module's settings page. The new dashboard panel contains a list of all the modules as well, where the user can toggle the modules' enabled/disabled state. ![Dashboard](https://github.com/microsoft/PowerToys/assets/9866362/a773ff5b-0321-4eb3-9c3d-b5b4df9a25f5) <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [X] **Closes:** #26816 - [ ] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected - [ ] **Tests:** Added/updated and all pass - [ ] **Localization:** All end user facing strings can be localized - [ ] **Dev docs:** Added/updated - [ ] **New binaries:** Added on the required places - [ ] [JSON for signing](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ESRPSigning_core.json) for new binaries - [ ] [WXS for installer](https://github.com/microsoft/PowerToys/blob/main/installer/PowerToysSetup/Product.wxs) for new binaries and localization folder - [ ] [YML for CI pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ci/templates/build-powertoys-steps.yml) for new test projects - [ ] [YML for signed pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/release.yml) - [ ] **Documentation updated:** If checked, please file a pull request on [our docs repo](https://github.com/MicrosoftDocs/windows-uwp/tree/docs/hub/powertoys) and link it here: #xxx <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed Tested locally
null
2023-10-04 18:35:54+00:00
2023-10-20 12:23:25+00:00
src/settings-ui/Settings.UI/Strings/en-us/Resources.resw
<?xml version="1.0" encoding="utf-8"?> <root> <!-- Microsoft ResX Schema Version 2.0 The primary goals of this format is to allow a simple XML format that is mostly human readable. The generation and parsing of the various data types are done through the TypeConverter classes associated with the data types. Example: ... ado.net/XML headers & schema ... <resheader name="resmimetype">text/microsoft-resx</resheader> <resheader name="version">2.0</resheader> <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader> <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader> <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data> <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data> <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64"> <value>[base64 mime encoded serialized .NET Framework object]</value> </data> <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value> <comment>This is a comment</comment> </data> There are any number of "resheader" rows that contain simple name/value pairs. Each data row contains a name, and value. The row also contains a type or mimetype. Type corresponds to a .NET class that support text/value conversion through the TypeConverter architecture. Classes that don't support this are serialized and stored with the mimetype set. The mimetype is used for serialized objects, and tells the ResXResourceReader how to depersist the object. This is currently not extensible. For a given mimetype the value must be set accordingly: Note - application/x-microsoft.net.object.binary.base64 is the format that the ResXResourceWriter will generate, however the reader can read any of the formats listed below. mimetype: application/x-microsoft.net.object.binary.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.soap.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Soap.SoapFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.bytearray.base64 value : The object must be serialized into a byte array : using a System.ComponentModel.TypeConverter : and then encoded with base64 encoding. --> <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> <xsd:import namespace="http://www.w3.org/XML/1998/namespace" /> <xsd:element name="root" msdata:IsDataSet="true"> <xsd:complexType> <xsd:choice maxOccurs="unbounded"> <xsd:element name="metadata"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" /> </xsd:sequence> <xsd:attribute name="name" use="required" type="xsd:string" /> <xsd:attribute name="type" type="xsd:string" /> <xsd:attribute name="mimetype" type="xsd:string" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="assembly"> <xsd:complexType> <xsd:attribute name="alias" type="xsd:string" /> <xsd:attribute name="name" type="xsd:string" /> </xsd:complexType> </xsd:element> <xsd:element name="data"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" /> <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="resheader"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" /> </xsd:complexType> </xsd:element> </xsd:choice> </xsd:complexType> </xsd:element> </xsd:schema> <resheader name="resmimetype"> <value>text/microsoft-resx</value> </resheader> <resheader name="version"> <value>2.0</value> </resheader> <resheader name="reader"> <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <resheader name="writer"> <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <data name="Attribution_Rooler.Text" xml:space="preserve"> <value>Inspired by Rooler</value> <comment>Rooler is a name of the tool.</comment> </data> <data name="Shell_VideoConference.Content" xml:space="preserve"> <value>Video Conference Mute</value> <comment>Navigation view item name for Video Conference</comment> </data> <data name="Shell_MeasureTool.Content" xml:space="preserve"> <value>Screen Ruler</value> <comment>Product name: Navigation view item name for Screen Ruler</comment> </data> <data name="MeasureTool.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="MeasureTool.ModuleDescription" xml:space="preserve"> <value>Screen Ruler is a quick and easy way to measure pixels on your screen.</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool.ModuleTitle" xml:space="preserve"> <value>Screen Ruler</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool_ActivationSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="MeasureTool_Settings.Header" xml:space="preserve"> <value>Behavior</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MeasureTool_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to bring up the command bar</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool_DefaultMeasureStyle.Header" xml:space="preserve"> <value>Default measure style</value> </data> <data name="MeasureTool_DefaultMeasureStyle.Description" xml:space="preserve"> <value>The utility will start having the selected style activated</value> </data> <data name="MeasureTool_DefaultMeasureStyle_None.Content" xml:space="preserve"> <value>None</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Bounds.Content" xml:space="preserve"> <value>Bounds</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Spacing.Content" xml:space="preserve"> <value>Spacing</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Horizontal_Spacing.Content" xml:space="preserve"> <value>Horizontal spacing</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Vertical_Spacing.Content" xml:space="preserve"> <value>Vertical spacing</value> </data> <data name="MeasureTool_UnitsOfMeasure.Header" xml:space="preserve"> <value>Units of measurement</value> </data> <data name="MeasureTool_UnitsOfMeasure_Pixels.Content" xml:space="preserve"> <value>Pixels</value> </data> <data name="MeasureTool_UnitsOfMeasure_Inches.Content" xml:space="preserve"> <value>Inches</value> </data> <data name="MeasureTool_UnitsOfMeasure_Centimeters.Content" xml:space="preserve"> <value>Centimeters</value> </data> <data name="MeasureTool_PixelTolerance.Header" xml:space="preserve"> <value>Pixel tolerance for edge detection</value> </data> <data name="MeasureTool_MeasureCrossColor.Header" xml:space="preserve"> <value>Line color</value> </data> <data name="MeasureTool_ContinuousCapture.Header" xml:space="preserve"> <value>Capture screen continuously during measuring</value> </data> <data name="MeasureTool_ContinuousCapture.Description" xml:space="preserve"> <value>Refresh screen contexts in real-time instead of making a screenshot once</value> </data> <data name="MeasureTool_PerColorChannelEdgeDetection.Header" xml:space="preserve"> <value>Per color channel edge detection</value> </data> <data name="MeasureTool_PerColorChannelEdgeDetection.Description" xml:space="preserve"> <value>If enabled, test that all color channels are within a tolerance distance from each other. Otherwise, check that the sum of all color channels differences is smaller than the tolerance.</value> </data> <data name="MeasureTool_DrawFeetOnCross.Header" xml:space="preserve"> <value>Draw feet on cross</value> </data> <data name="MeasureTool_DrawFeetOnCross.Description" xml:space="preserve"> <value>Adds feet to the end of cross lines</value> </data> <data name="MeasureTool_EnableMeasureTool.Header" xml:space="preserve"> <value>Enable Screen Ruler</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MouseWithoutBorders_ActivationSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="MouseWithoutBorders_DeviceLayoutSettings.Header" xml:space="preserve"> <value>Device layout</value> </data> <data name="MouseWithoutBorders_DeviceLayoutSettings.Description" xml:space="preserve"> <value>Drag and drop a machine to rearrange the order.</value> </data> <data name="MouseWithoutBorders_CannotDragDropAsAdmin.Title" xml:space="preserve"> <value>It is not possible to use drag and drop while running PowerToys elevated. As a workaround, please restart PowerToys without elevation to edit the device layout.</value> </data> <data name="MouseWithoutBorders_KeySettings.Header" xml:space="preserve"> <value>Encryption key</value> </data> <data name="MouseWithoutBorders_SecurityKey.Header" xml:space="preserve"> <value>Security key</value> </data> <data name="MouseWithoutBorders_SecurityKey.Description" xml:space="preserve"> <value>The key must be auto generated in one machine by clicking on New Key, then typed in other machines</value> </data> <data name="MouseWithoutBorders_NewKey.Content" xml:space="preserve"> <value>New key</value> </data> <data name="MouseWithoutBorders_CopyMachineName.Text" xml:space="preserve"> <value>Copy to clipboard</value> </data> <data name="MouseWithoutBorders_ReconnectButton.Text" xml:space="preserve"> <value>Refresh connections</value> </data> <data name="MouseWithoutBorders_ReconnectTooltip.Text" xml:space="preserve"> <value>Reestablishes connections with other devices if you are experiencing issues.</value> </data> <data name="MouseWithoutBorders_ThisMachineNameLabel.Header" xml:space="preserve"> <value>Host name of this device</value> </data> <data name="MouseWithoutBorders_Connect.Content" xml:space="preserve"> <value>Connect</value> </data> <data name="MouseWithoutBorders_UninstallService.Header" xml:space="preserve"> <value>Uninstall service</value> </data> <data name="MouseWithoutBorders_UninstallService.Description" xml:space="preserve"> <value>Removes the service from the computer. Needs to run as administrator.</value> </data> <data name="MouseWithoutBorders_Settings.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="MouseWithoutBorders_TroubleShooting.Header" xml:space="preserve"> <value>Troubleshooting</value> </data> <data name="MouseWithoutBorders_AddFirewallRuleButtonControl.Header" xml:space="preserve"> <value>Add a firewall rule for Mouse Without Borders</value> <comment>"Mouse Without Borders" is a product name</comment> </data> <data name="MouseWithoutBorders_AddFirewallRuleButtonControl.Description" xml:space="preserve"> <value>Adding a firewall rule might help solve connection issues.</value> </data> <data name="MouseWithoutBorders_RunAsAdminText.Title" xml:space="preserve"> <value>You need to run as administrator to modify this setting.</value> </data> <data name="MouseWithoutBorders_ServiceUserUninstallWarning.Title" xml:space="preserve"> <value>If PowerToys is installed as a user, uninstalling/upgrading may require the Mouse Without Borders service to be removed manually later.</value> </data> <data name="MouseWithoutBorders_ServiceSettings.Header" xml:space="preserve"> <value>Service</value> </data> <data name="MouseWithoutBorders_Toggle_Enable.Header" xml:space="preserve"> <value>Enable Mouse Without Borders</value> </data> <data name="MouseWithoutBorders.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="MouseWithoutBorders.ModuleDescription" xml:space="preserve"> <value>Mouse Without Borders is a quick and easy way to move your cursor across multiple devices.</value> <comment>"Mouse Without Borders" is the name of the utility</comment> </data> <data name="MouseWithoutBorders.ModuleTitle" xml:space="preserve"> <value>Mouse Without Borders</value> <comment>"Mouse Without Borders" is the name of the utility</comment> </data> <data name="MouseWithoutBorders_UseService.Header" xml:space="preserve"> <value>Use Service</value> </data> <data name="MouseWithoutBorders_UseService.Description" xml:space="preserve"> <value>Runs in service mode, that allows MWB to control remote machines when they're locked. Also allows control of system and administrator applications.</value> </data> <data name="MouseWithoutBorders_MatrixOneRow.Header" xml:space="preserve"> <value>Devices in a single row</value> </data> <data name="MouseWithoutBorders_MatrixOneRow.Description" xml:space="preserve"> <value>Sets whether the devices are aligned on a single row. A two by two matrix is considered otherwise.</value> </data> <data name="MouseWithoutBorders_WrapMouse.Header" xml:space="preserve"> <value>Wrap mouse</value> </data> <data name="MouseWithoutBorders_WrapMouse.Description" xml:space="preserve"> <value>Move control back to the first machine when mouse moves past the last one.</value> </data> <data name="MouseWithoutBorders_ShareClipboard.Header" xml:space="preserve"> <value>Share clipboard</value> </data> <data name="MouseWithoutBorders_TransferFile.Header" xml:space="preserve"> <value>Transfer file</value> </data> <data name="MouseWithoutBorders_HideMouseAtScreenEdge.Header" xml:space="preserve"> <value>Hide mouse at the screen edge</value> </data> <data name="MouseWithoutBorders_DrawMouseCursor.Header" xml:space="preserve"> <value>Draw mouse cursor</value> </data> <data name="MouseWithoutBorders_ValidateRemoteMachineIP.Header" xml:space="preserve"> <value>Validate remote machine IP</value> </data> <data name="MouseWithoutBorders_SameSubnetOnly.Header" xml:space="preserve"> <value>Same subnet only</value> </data> <data name="MouseWithoutBorders_BlockScreenSaverOnOtherMachines.Header" xml:space="preserve"> <value>Block screen saver on other machines</value> </data> <data name="MouseWithoutBorders_MoveMouseRelatively.Header" xml:space="preserve"> <value>Move mouse relatively</value> </data> <data name="MouseWithoutBorders_BlockMouseAtScreenCorners.Header" xml:space="preserve"> <value>Block mouse at screen corners</value> </data> <data name="MouseWithoutBorders_ShowClipboardAndNetworkStatusMessages.Header" xml:space="preserve"> <value>Show clipboard and network status messages</value> </data> <data name="MouseWithoutBorders_ShowOriginalUI.Header" xml:space="preserve"> <value>Show the original Mouse Without Borders UI</value> </data> <data name="MouseWithoutBorders_ShowOriginalUI.Description" xml:space="preserve"> <value>This is accessible from the system tray and requires a restart.</value> </data> <data name="MouseWithoutBorders_ShareClipboard.Description" xml:space="preserve"> <value>If share clipboard stops working, Ctrl+Alt+Del then Esc may solve the problem.</value> </data> <data name="MouseWithoutBorders_TransferFile.Description" xml:space="preserve"> <value>If a file (&lt;100MB) is copied, it will be transferred to the remote machine clipboard.</value> </data> <data name="MouseWithoutBorders_HideMouseAtScreenEdge.Description" xml:space="preserve"> <value>Hide the mouse cursor at the top edge of the screen when switching to other machine. This option also steals the focus from any full-screen app to ensure the keyboard input is redirected.</value> </data> <data name="MouseWithoutBorders_DrawMouseCursor.Description" xml:space="preserve"> <value>Mouse cursor may not be visible in Windows 10 and later versions of Windows when there is no physical mouse attached.</value> </data> <data name="MouseWithoutBorders_ValidateRemoteMachineIP.Description" xml:space="preserve"> <value>Reverse DNS lookup to validate machine IP Address.</value> </data> <data name="MouseWithoutBorders_SameSubnetOnly.Description" xml:space="preserve"> <value>Only connect to machines in the same intranet NNN.NNN.*.* (only works when both machines have IPv4 enabled)</value> </data> <data name="MouseWithoutBorders_IPAddressMapping_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: MyLaptop 192.168.0.24</value> <comment>Don't translate MyLaptop</comment> </data> <data name="MouseWithoutBorders_IPAddressMapping.Header" xml:space="preserve"> <value>IP address mapping</value> </data> <data name="MouseWithoutBorders_IPAddressMapping.Description" xml:space="preserve"> <value>Resolve machine's IP address using manually entered mappings below.</value> </data> <data name="MouseWithoutBorders_BlockScreenSaverOnOtherMachines.Description" xml:space="preserve"> <value>Prevent screen saver from starting on other machines when user is actively working on this machine.</value> </data> <data name="MouseWithoutBorders_MoveMouseRelatively.Description" xml:space="preserve"> <value>Use this option when remote machine's monitor settings are different, or remote machine has multiple monitors.</value> </data> <data name="MouseWithoutBorders_BlockMouseAtScreenCorners.Description" xml:space="preserve"> <value>To avoid accident machine-switch at screen corners.</value> </data> <data name="MouseWithoutBorders_ShowClipboardAndNetworkStatusMessages.Description" xml:space="preserve"> <value>Show clipboard activities and network status in system tray notifications</value> </data> <data name="MouseWithoutBorders_KeyboardShortcuts_Group.Header" xml:space="preserve"> <value>Keyboard shortcuts</value> <comment>keyboard is the hardware peripheral</comment> </data> <data name="MouseWithoutBorders_AdvancedSettings_Group.Header" xml:space="preserve"> <value>Advanced Settings</value> </data> <data name="MouseWithoutBorders_EasyMouseOption.Header" xml:space="preserve"> <value>Easy Mouse: move between machines by moving the mouse pointer to the screen edges.</value> </data> <data name="MouseWithoutBorders_EasyMouseOption.Description" xml:space="preserve"> <value>Can also be set to move only when pressing Shift or Ctrl.</value> <comment>Shift and Ctrl are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_EasyMouseOption_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_EasyMouseOption_Enabled.Content" xml:space="preserve"> <value>Enabled</value> </data> <data name="MouseWithoutBorders_EasyMouseOption_Ctrl.Content" xml:space="preserve"> <value>Ctrl</value> <comment>This is the Ctrl keyboard key</comment> </data> <data name="MouseWithoutBorders_EasyMouseOption_Shift.Content" xml:space="preserve"> <value>Shift</value> <comment>This is the Shift keyboard key</comment> </data> <data name="MouseWithoutBorders_LockMachinesShortcut.Header" xml:space="preserve"> <value>Shortcut to lock all machines.</value> </data> <data name="MouseWithoutBorders_LockMachinesShortcut.Description" xml:space="preserve"> <value>Hit this hotkey twice to lock all machines. Note: Only the machines which have the same shortcut configured will be locked.</value> </data> <data name="MouseWithoutBorders_ToggleEasyMouseShortcut.Header" xml:space="preserve"> <value>Shortcut to toggle Easy Mouse.</value> <comment>Ctrl and Alt are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_ToggleEasyMouseShortcut.Description" xml:space="preserve"> <value>Only works if EasyMouse is set to Enabled or Disabled.</value> </data> <data name="MouseWithoutBorders_ToggleEasyMouseShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut.Header" xml:space="preserve"> <value>Shortcut to switch between machines. Ctrl+Alt+:</value> <comment>Ctrl and Alt are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut.Description" xml:space="preserve"> <value>Click on Ctrl+Alt+ the chosen option to switch between machines.</value> <comment>Ctrl and Alt are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut_F1.Content" xml:space="preserve"> <value>F1, F2, F3, F4</value> <comment>Don't localize. These are keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut_1.Content" xml:space="preserve"> <value>1, 2, 3, 4</value> <comment>Don't localize. These are keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_LockMachinesShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_ReconnectShortcut.Header" xml:space="preserve"> <value>Shortcut to try reconnecting</value> </data> <data name="MouseWithoutBorders_ReconnectShortcut.Description" xml:space="preserve"> <value>Just in case the connection is lost for any reason.</value> </data> <data name="MouseWithoutBorders_ReconnectShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut.Header" xml:space="preserve"> <value>Shortcut to switch to multiple machine mode.</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut.Description" xml:space="preserve"> <value>Allows controlling all computers at once.</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut_Ctrl3.Content" xml:space="preserve"> <value>Ctrl three times</value> <comment>This is the Ctrl keyboard key</comment> </data> <data name="VideoConference_Enable.Header" xml:space="preserve"> <value>Enable Video Conference Mute</value> </data> <data name="VideoConference.ModuleDescription" xml:space="preserve"> <value>Video Conference Mute is a quick and easy way to do a global "mute" of both your microphone and webcam. Disabling this module or closing PowerToys will unmute the microphone and camera.</value> </data> <data name="VideoConference_CameraAndMicrophoneMuteHotkeyControl_Header.Header" xml:space="preserve"> <value>Mute camera &amp; microphone</value> </data> <data name="VideoConference_MicrophoneMuteHotkeyControl_Header.Header" xml:space="preserve"> <value>Mute microphone</value> </data> <data name="VideoConference_MicrophonePushToTalkHotkeyControl_Header.Header" xml:space="preserve"> <value>Push to talk</value> </data> <data name="VideoConference_CameraMuteHotkeyControl_Header.Header" xml:space="preserve"> <value>Mute camera</value> </data> <data name="VideoConference_SelectedCamera.Header" xml:space="preserve"> <value>Selected camera</value> </data> <data name="VideoConference_SelectedMicrophone.Header" xml:space="preserve"> <value>Selected microphone</value> </data> <data name="VideoConference_PushToReverse.Header" xml:space="preserve"> <value>Push to reverse</value> </data> <data name="VideoConference_PushToReverse.Description" xml:space="preserve"> <value>If enabled, allows both push to talk and push to mute, depending on microphone state</value> </data> <data name="VideoConference_CameraOverlayImagePathHeader.Header" xml:space="preserve"> <value>Image displayed when camera is muted</value> </data> <data name="VideoConference_ToolbarPosition.Header" xml:space="preserve"> <value>Toolbar position</value> </data> <data name="VideoConference_ToolbarPosition_TopCenter.Content" xml:space="preserve"> <value>Top center</value> </data> <data name="VideoConference_ToolbarPosition_TopLeftCorner.Content" xml:space="preserve"> <value>Top left corner</value> </data> <data name="VideoConference_ToolbarPosition_TopRightCorner.Content" xml:space="preserve"> <value>Top right corner</value> </data> <data name="VideoConference_ToolbarPosition_BottomLeftCorner.Content" xml:space="preserve"> <value>Bottom left corner</value> </data> <data name="VideoConference_ToolbarPosition_BottomCenter.Content" xml:space="preserve"> <value>Bottom center</value> </data> <data name="VideoConference_ToolbarPosition_BottomRightCorner.Content" xml:space="preserve"> <value>Bottom right corner</value> </data> <data name="VideoConference_ToolbarMonitor.Header" xml:space="preserve"> <value>Show toolbar on</value> </data> <data name="VideoConference_ToolbarMonitor_Main.Content" xml:space="preserve"> <value>Main monitor</value> </data> <data name="VideoConference_ToolbarMonitor_UnderCursor.Content" xml:space="preserve"> <value>Monitor under cursor</value> </data> <data name="VideoConference_ToolbarMonitor_ActiveWindow.Content" xml:space="preserve"> <value>Active window monitor</value> </data> <data name="VideoConference_ToolbarMonitor_All.Content" xml:space="preserve"> <value>All monitors</value> </data> <data name="VideoConference_ToolbarHide.Header" xml:space="preserve"> <value>Hide toolbar</value> </data> <data name="VideoConference_ToolbarHideMuted.Content" xml:space="preserve"> <value>When both camera and microphone are muted</value> </data> <data name="VideoConference_ToolbarHideNever.Content" xml:space="preserve"> <value>Never</value> </data> <data name="VideoConference_ToolbarHideUnmuted.Content" xml:space="preserve"> <value>When both camera and microphone are unmuted</value> </data> <data name="VideoConference_ToolbarHideTimeout.Content" xml:space="preserve"> <value>After timeout</value> </data> <data name="VideoConference.ModuleTitle" xml:space="preserve"> <value>Video Conference Mute</value> </data> <data name="VideoConference_Camera.Header" xml:space="preserve"> <value>Camera</value> </data> <data name="VideoConference_Camera.Description" xml:space="preserve"> <value>To use this feature, make sure to select PowerToys VideoConference Mute as your camera source in your apps.</value> </data> <data name="VideoConference_Microphone.Header" xml:space="preserve"> <value>Microphone</value> </data> <data name="VideoConference_Toolbar.Header" xml:space="preserve"> <value>Toolbar</value> </data> <data name="VideoConference_Behavior.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="VideoConference_StartupAction.Header" xml:space="preserve"> <value>Startup action</value> </data> <data name="VideoConference_StartupActionNothing.Content" xml:space="preserve"> <value>Nothing</value> </data> <data name="VideoConference_StartupActionUnmute.Content" xml:space="preserve"> <value>Unmute</value> </data> <data name="VideoConference_StartupActionMute.Content" xml:space="preserve"> <value>Mute</value> </data> <data name="VideoConference_Shortcuts.Header" xml:space="preserve"> <value>Shortcuts</value> </data> <data name="VideoConference_CameraOverlayImageAlt.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Camera overlay image preview</value> </data> <data name="VideoConference_CameraOverlayImageBrowse.Content" xml:space="preserve"> <value>Browse</value> </data> <data name="VideoConference_CameraOverlayImageClear.Content" xml:space="preserve"> <value>Clear</value> </data> <data name="Shell_General.Content" xml:space="preserve"> <value>General</value> <comment>Navigation view item name for General</comment> </data> <data name="Shell_Awake.Content" xml:space="preserve"> <value>Awake</value> <comment>Product name: Navigation view item name for Awake</comment> </data> <data name="Shell_PowerLauncher.Content" xml:space="preserve"> <value>PowerToys Run</value> <comment>Product name: Navigation view item name for PowerToys Run</comment> </data> <data name="Shell_PowerRename.Content" xml:space="preserve"> <value>PowerRename</value> <comment>Product name: Navigation view item name for PowerRename</comment> </data> <data name="Shell_ShortcutGuide.Content" xml:space="preserve"> <value>Shortcut Guide</value> <comment>Product name: Navigation view item name for Shortcut Guide</comment> </data> <data name="Shell_PowerPreview.Content" xml:space="preserve"> <value>File Explorer add-ons</value> <comment>Product name: Navigation view item name for File Explorer. Please use File Explorer as in the context of File Explorer in Windows</comment> </data> <data name="Shell_FancyZones.Content" xml:space="preserve"> <value>FancyZones</value> <comment>Product name: Navigation view item name for FancyZones</comment> </data> <data name="Shell_ImageResizer.Content" xml:space="preserve"> <value>Image Resizer</value> <comment>Product name: Navigation view item name for Image Resizer</comment> </data> <data name="Shell_ColorPicker.Content" xml:space="preserve"> <value>Color Picker</value> <comment>Product name: Navigation view item name for Color Picker</comment> </data> <data name="Shell_KeyboardManager.Content" xml:space="preserve"> <value>Keyboard Manager</value> <comment>Product name: Navigation view item name for Keyboard Manager</comment> </data> <data name="Shell_MouseWithoutBorders.Content" xml:space="preserve"> <value>Mouse Without Borders</value> <comment>Product name: Navigation view item name for Mouse Without Borders</comment> </data> <data name="Shell_MouseUtilities.Content" xml:space="preserve"> <value>Mouse utilities</value> <comment>Product name: Navigation view item name for Mouse utilities</comment> </data> <data name="Shell_NavigationMenu_Announce_Collapse" xml:space="preserve"> <value>Navigation closed</value> <comment>Accessibility announcement when the navigation pane collapses</comment> </data> <data name="Shell_NavigationMenu_Announce_Open" xml:space="preserve"> <value>Navigation opened</value> <comment>Accessibility announcement when the navigation pane opens</comment> </data> <data name="KeyboardManager_ConfigHeader.Text" xml:space="preserve"> <value>Current configuration</value> <comment>Keyboard Manager current configuration header</comment> </data> <data name="KeyboardManager.ModuleDescription" xml:space="preserve"> <value>Reconfigure your keyboard by remapping keys and shortcuts</value> <comment>Keyboard Manager page description</comment> </data> <data name="KeyboardManager_EnableToggle.Header" xml:space="preserve"> <value>Enable Keyboard Manager</value> <comment>Keyboard Manager enable toggle header. Do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="KeyboardManager_ProfileDescription.Text" xml:space="preserve"> <value>Select the profile to display the active key remap and shortcuts</value> <comment>Keyboard Manager configuration dropdown description</comment> </data> <data name="KeyboardManager_RemapKeyboardButton.Header" xml:space="preserve"> <value>Remap a key</value> <comment>Keyboard Manager remap keyboard button content</comment> </data> <data name="KeyboardManager_Keys.Header" xml:space="preserve"> <value>Keys</value> <comment>Keyboard Manager remap keyboard header</comment> </data> <data name="KeyboardManager_RemapShortcutsButton.Header" xml:space="preserve"> <value>Remap a shortcut</value> <comment>Keyboard Manager remap shortcuts button</comment> </data> <data name="KeyboardManager_Shortcuts.Header" xml:space="preserve"> <value>Shortcuts</value> <comment>Keyboard Manager remap keyboard header</comment> </data> <data name="KeyboardManager_All_Apps_Description" xml:space="preserve"> <value>All Apps</value> <comment>Should be the same as EditShortcuts_AllApps from keyboard manager editor</comment> </data> <data name="Shortcuts.Header" xml:space="preserve"> <value>Shortcuts</value> </data> <data name="Shortcut.Header" xml:space="preserve"> <value>Shortcut</value> </data> <data name="RemapKeysList.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Current Key Remappings</value> </data> <data name="RemapShortcutsList.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Current Shortcut Remappings</value> </data> <data name="KeyboardManager_RemappedKeysListItem.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Key Remapping</value> <comment>key as in keyboard key</comment> </data> <data name="KeyboardManager_RemappedShortcutsListItem.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Shortcut Remapping</value> </data> <data name="KeyboardManager_RemappedTo.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Remapped to</value> </data> <data name="KeyboardManager_ShortcutRemappedTo.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Remapped to</value> </data> <data name="KeyboardManager_TargetApp.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>For Target Application</value> <comment>What computer application would this be for</comment> </data> <data name="KeyboardManager_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Keyboard Manager</value> <comment>do not loc, product name</comment> </data> <data name="ColorPicker.ModuleDescription" xml:space="preserve"> <value>Quick and simple system-wide color picker.</value> </data> <data name="ColorPicker_EnableColorPicker.Header" xml:space="preserve"> <value>Enable Color Picker</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="ColorPicker_ChangeCursor.Content" xml:space="preserve"> <value>Change cursor when picking a color</value> </data> <data name="PowerLauncher.ModuleDescription" xml:space="preserve"> <value>A quick launcher that has additional capabilities without sacrificing performance.</value> </data> <data name="PowerLauncher_EnablePowerLauncher.Header" xml:space="preserve"> <value>Enable PowerToys Run</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="PowerLauncher_SearchResults.Header" xml:space="preserve"> <value>Search &amp; results</value> </data> <data name="PowerLauncher_SearchResultPreference.Header" xml:space="preserve"> <value>Search result preference</value> </data> <data name="PowerLauncher_UsePinyin.Header" xml:space="preserve"> <value>Use Pinyin</value> </data> <data name="PowerLauncher_UsePinyin.Description" xml:space="preserve"> <value>Experimental: Use Pinyin on the search query. May not work for every plugin.</value> </data> <data name="PowerLauncher_SearchResultPreference_MostRecentlyUsed" xml:space="preserve"> <value>Most recently used</value> </data> <data name="PowerLauncher_SearchResultPreference_AlphabeticalOrder" xml:space="preserve"> <value>Alphabetical order</value> </data> <data name="PowerLauncher_SearchResultPreference_RunningProcessesOpenApplications" xml:space="preserve"> <value>Running processes/open applications</value> </data> <data name="PowerLauncher_SearchTypePreference.Header" xml:space="preserve"> <value>Search type preference</value> </data> <data name="PowerLauncher_SearchTypePreference_ApplicationName" xml:space="preserve"> <value>Application name</value> </data> <data name="PowerLauncher_SearchTypePreference_StringInApplication" xml:space="preserve"> <value>A string that is contained in the application</value> </data> <data name="PowerLauncher_SearchTypePreference_ExecutableName" xml:space="preserve"> <value>Executable name</value> </data> <data name="PowerLauncher_MaximumNumberOfResults.Header" xml:space="preserve"> <value>Number of results shown before scrolling</value> </data> <data name="PowerLauncher_OpenPowerLauncher.Header" xml:space="preserve"> <value>Open PowerToys Run</value> </data> <data name="PowerLauncher_OpenFileLocation.Header" xml:space="preserve"> <value>Open file location</value> </data> <data name="PowerLauncher_CopyPathLocation.Header" xml:space="preserve"> <value>Copy path location</value> </data> <data name="PowerLauncher_OpenConsole.Header" xml:space="preserve"> <value>Open console</value> <comment>console refers to Windows command prompt</comment> </data> <data name="PowerLauncher_OverrideWinRKey.Content" xml:space="preserve"> <value>Override Win+R shortcut</value> </data> <data name="PowerLauncher_OverrideWinSKey.Content" xml:space="preserve"> <value>Override Win+S shortcut</value> </data> <data name="PowerLauncher_IgnoreHotkeysInFullScreen.Content" xml:space="preserve"> <value>Ignore shortcuts in fullscreen mode</value> </data> <data name="PowerLauncher_UseCentralizedKeyboardHook.Header" xml:space="preserve"> <value>Use centralized keyboard hook</value> </data> <data name="PowerLauncher_UseCentralizedKeyboardHook.Description" xml:space="preserve"> <value>Try this if there are issues with the shortcut (PowerToys Run might not get focus when triggered from an elevated window)</value> </data> <data name="PowerLauncher_ClearInputOnLaunch.Content" xml:space="preserve"> <value>Clear the previous query on launch</value> </data> <data name="PowerLauncher_TabSelectsContextButtons.Header" xml:space="preserve"> <value>Tab through context buttons</value> </data> <data name="PowerLauncher_TabSelectsContextButtons.Description" xml:space="preserve"> <value>Pressing tab will first select through the available context buttons of the current selection before moving onto the next result</value> </data> <data name="PowerLauncher_GenerateThumbnailsFromFiles.Header" xml:space="preserve"> <value>Generate thumbnails from files</value> </data> <data name="PowerLauncher_GenerateThumbnailsFromFiles.Description" xml:space="preserve"> <value>Results will try to generate thumbnails for files. Disabling this setting may increase stability and speed</value> </data> <data name="PowerLauncher_SearchQueryResultsWithDelay.Header" xml:space="preserve"> <value>Input Smoothing</value> <comment>This is about adding a delay to wait for more input before executing a search</comment> </data> <data name="PowerLauncher_SearchQueryResultsWithDelay.Description" xml:space="preserve"> <value>Wait for more input before searching. This reduces interface jumpiness and system load.</value> </data> <data name="PowerLauncher_FastSearchInputDelayMs.Header" xml:space="preserve"> <value>Immediate plugins</value> </data> <data name="PowerLauncher_FastSearchInputDelayMs.Description" xml:space="preserve"> <value>Affects the plugins that make the UI wait for their results by this amount. Recommended: 30-50 ms.</value> </data> <data name="PowerLauncher_SlowSearchInputDelayMs.Header" xml:space="preserve"> <value>Background execution plugins</value> </data> <data name="PowerLauncher_SlowSearchInputDelayMs.Description" xml:space="preserve"> <value>Affects the plugins that execute in the background by this amount. Recommended: 100-150 ms.</value> </data> <data name="PowerLauncher_SearchInputDelayMs.Header" xml:space="preserve"> <value>Fast plugin throttle (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="KeyboardManager_KeysMappingLayoutRightHeader.Text" xml:space="preserve"> <value>To:</value> <comment>Keyboard Manager mapping keys view right header</comment> </data> <data name="Appearance_GroupSettings.Text" xml:space="preserve"> <value>Appearance</value> </data> <data name="Fancyzones_ImageHyperlinkToDocs.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>FancyZones windows</value> <comment>do not loc the Product name</comment> </data> <data name="FancyZones.ModuleDescription" xml:space="preserve"> <value>Create window layouts to help make multi-tasking easy.</value> <comment>windows refers to application windows</comment> </data> <data name="FancyZones_DisplayOrWorkAreaChangeMoveWindowsCheckBoxControl.Content" xml:space="preserve"> <value>Keep windows in their zones when the screen resolution or work area changes</value> <comment>windows refers to application windows</comment> </data> <data name="FancyZones_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable FancyZones</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="FancyZones_ExcludeApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="FancyZones_ExcludeApps.Description" xml:space="preserve"> <value>Excludes an application from snapping to zones and will only react to Windows Snap - add one application name per line</value> </data> <data name="FancyZones_HighlightOpacity.Header" xml:space="preserve"> <value>Opacity (%)</value> </data> <data name="FancyZones_HotkeyEditorControl.Header" xml:space="preserve"> <value>Open layout editor</value> <comment>Shortcut to launch the FancyZones layout editor application</comment> </data> <data name="FancyZones_WindowSwitching_GroupSettings.Header" xml:space="preserve"> <value>Switch between windows in the current zone</value> </data> <data name="FancyZones_HotkeyNextTabControl.Header" xml:space="preserve"> <value>Next window</value> </data> <data name="FancyZones_HotkeyPrevTabControl.Header" xml:space="preserve"> <value>Previous window</value> </data> <data name="SettingsPage_SetShortcut.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Shortcut setting</value> </data> <data name="SettingsPage_SetShortcut_Glyph.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Information Symbol</value> </data> <data name="FancyZones_LaunchEditorButtonControl.Header" xml:space="preserve"> <value>Launch layout editor</value> <comment>launches the FancyZones layout editor application</comment> </data> <data name="FancyZones_LaunchEditorButtonControl.Description" xml:space="preserve"> <value>Set and manage your layouts</value> <comment>launches the FancyZones layout editor application</comment> </data> <data name="FancyZones_MakeDraggedWindowTransparentCheckBoxControl.Content" xml:space="preserve"> <value>Make dragged window transparent</value> </data> <data name="FancyZones_MouseDragCheckBoxControl_Header.Content" xml:space="preserve"> <value>Use a non-primary mouse button to toggle zone activation</value> </data> <data name="FancyZones_MouseMiddleClickSpanningMultipleZonesCheckBoxControl_Header.Content" xml:space="preserve"> <value>Use middle-click mouse button to toggle multiple zones spanning</value> </data> <data name="FancyZones_MoveWindowsAcrossAllMonitorsCheckBoxControl.Content" xml:space="preserve"> <value>Move windows between zones across all monitors</value> </data> <data name="FancyZones_OverrideSnapHotkeys.Header" xml:space="preserve"> <value>Override Windows Snap</value> </data> <data name="FancyZones_OverrideSnapHotkeys.Description" xml:space="preserve"> <value>This overrides the Windows Snap shortcut (Win + arrow) to move windows between zones</value> </data> <data name="FancyZones_ShiftDragCheckBoxControl_Header.Content" xml:space="preserve"> <value>Hold Shift key to activate zones while dragging</value> </data> <data name="FancyZones_ShowZonesOnAllMonitorsCheckBoxControl.Content" xml:space="preserve"> <value>Show zones on all monitors while dragging a window</value> </data> <data name="FancyZones_AppLastZoneMoveWindows.Content" xml:space="preserve"> <value>Move newly created windows to their last known zone</value> <comment>windows refers to application windows</comment> </data> <data name="FancyZones_OpenWindowOnActiveMonitor.Content" xml:space="preserve"> <value>Move newly created windows to the current active monitor (Experimental)</value> </data> <data name="FancyZones_UseCursorPosEditorStartupScreen.Header" xml:space="preserve"> <value>Launch editor on the display</value> </data> <data name="FancyZones_UseCursorPosEditorStartupScreen.Description" xml:space="preserve"> <value>When using multiple displays</value> </data> <data name="FancyZones_LaunchPositionMouse.Content" xml:space="preserve"> <value>Where the mouse pointer is</value> </data> <data name="FancyZones_LaunchPositionScreen.Content" xml:space="preserve"> <value>With active focus</value> </data> <data name="FancyZones_ZoneBehavior_GroupSettings.Header" xml:space="preserve"> <value>Zone behavior</value> </data> <data name="FancyZones_ZoneBehavior_GroupSettings.Description" xml:space="preserve"> <value>Manage how zones behave when using FancyZones</value> </data> <data name="FancyZones_Zones.Header" xml:space="preserve"> <value>Zones</value> </data> <data name="FancyZones_ZoneHighlightColor.Header" xml:space="preserve"> <value>Highlight color</value> </data> <data name="FancyZones_ZoneSetChangeMoveWindows.Content" xml:space="preserve"> <value>During zone layout changes, windows assigned to a zone will match new size/positions</value> </data> <data name="AttributionTitle.Text" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="General.ModuleTitle" xml:space="preserve"> <value>General</value> </data> <data name="GeneralPage_CheckForUpdates.Content" xml:space="preserve"> <value>Check for updates</value> </data> <data name="General_SettingsBackupAndRestoreLocationText.Header" xml:space="preserve"> <value>Location</value> </data> <data name="General_SettingsBackupAndRestore_ButtonBackup.Content" xml:space="preserve"> <value>Backup</value> </data> <data name="General_SettingsBackupInfo_FileNameHeader.Text" xml:space="preserve"> <value>File name:</value> </data> <data name="General_SettingsBackupAndRestore_LinkRefresh.Text" xml:space="preserve"> <value>Refresh</value> </data> <data name="General_SettingsBackupAndRestore_ButtonRestore.Content" xml:space="preserve"> <value>Restore</value> </data> <data name="General_SettingsBackupAndRestore_ButtonSelectLocation.Text" xml:space="preserve"> <value>Select folder</value> </data> <data name="GeneralPage_UpdateNow.Content" xml:space="preserve"> <value>Update now</value> </data> <data name="GeneralPage_PrivacyStatement_URL.Text" xml:space="preserve"> <value>Privacy statement</value> </data> <data name="GeneralPage_ReportAbug.Text" xml:space="preserve"> <value>Report a bug</value> <comment>Report an issue inside powertoys</comment> </data> <data name="GeneralPage_RequestAFeature_URL.Text" xml:space="preserve"> <value>Request a feature</value> <comment>Tell our team what we should build</comment> </data> <data name="GeneralPage_RestartAsAdmin_Button.Content" xml:space="preserve"> <value>Restart PowerToys as administrator</value> <comment>running PowerToys as a higher level user, account is typically referred to as an admin / administrator</comment> </data> <data name="GeneralPage_RunAtStartUp.Header" xml:space="preserve"> <value>Run at startup</value> </data> <data name="GeneralPage_RunAtStartUp.Description" xml:space="preserve"> <value>PowerToys will launch automatically</value> </data> <data name="PowerRename.ModuleDescription" xml:space="preserve"> <value>A Windows Shell extension for more advanced bulk renaming using search &amp; replace or regular expressions.</value> </data> <data name="PowerRename_ShellIntegration.Header" xml:space="preserve"> <value>Shell integration</value> <comment>This refers to directly integrating in with Windows</comment> </data> <data name="PowerRename_Toggle_Enable.Header" xml:space="preserve"> <value>Enable PowerRename</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="RadioButtons_Name_Theme.Text" xml:space="preserve"> <value>Settings theme</value> </data> <data name="PowerRename_Toggle_HideIcon.Content" xml:space="preserve"> <value>Hide icon in context menu</value> </data> <data name="PowerRename_Toggle_ContextMenu.Header" xml:space="preserve"> <value>Show PowerRename in</value> </data> <data name="PowerRename_Toggle_StandardContextMenu.Content" xml:space="preserve"> <value>Default and extended context menu</value> </data> <data name="PowerRename_Toggle_ExtendedContextMenu.Content" xml:space="preserve"> <value>Extended context menu only</value> </data> <data name="ExtendedContextMenuInfo.Title" xml:space="preserve"> <value>Press Shift + right-click on files to open the extended context menu</value> </data> <data name="PowerRename_Toggle_MaxDispListNum.Header" xml:space="preserve"> <value>Maximum number of items</value> </data> <data name="PowerRename_Toggle_RestoreFlagsOnLaunch.Header" xml:space="preserve"> <value>Show recently used strings</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_MD.Header" xml:space="preserve"> <value>Markdown</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_MD.Description" xml:space="preserve"> <value>.md, .markdown, .mdown, .mkdn, .mkd, .mdwn, .mdtxt, .mdtext</value> <comment>File extensions, should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_Monaco.Header" xml:space="preserve"> <value>Source code files (Monaco)</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_Monaco.Description" xml:space="preserve"> <value>.cpp, .py, .json, .xml, .csproj, ...</value> <comment>File extensions should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_SVG.Header" xml:space="preserve"> <value>Scalable Vector Graphics</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_SVG.Description" xml:space="preserve"> <value>.svg</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_Preview_SVG_Color_Mode.Header" xml:space="preserve"> <value>Color mode</value> </data> <data name="FileExplorerPreview_Preview_SVG_Color_Mode_Default.Content" xml:space="preserve"> <value>Windows default</value> </data> <data name="FileExplorerPreview_Preview_SVG_Color_Solid_Color.Content" xml:space="preserve"> <value>Solid color</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade.Content" xml:space="preserve"> <value>Checkered pattern</value> </data> <data name="FileExplorerPreview_Preview_SVG_Background_Color.Header" xml:space="preserve"> <value>Color</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_Mode.Header" xml:space="preserve"> <value>Checkered shade</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_1.Content" xml:space="preserve"> <value>Light</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_2.Content" xml:space="preserve"> <value>Medium</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_3.Content" xml:space="preserve"> <value>Dark</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_PDF.Header" xml:space="preserve"> <value>Portable Document Format</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_PDF.Description" xml:space="preserve"> <value>.pdf</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_SVG.Header" xml:space="preserve"> <value>Scalable Vector Graphics</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_SVG.Description" xml:space="preserve"> <value>.svg</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_STL.Header" xml:space="preserve"> <value>Stereolithography</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_STL.Description" xml:space="preserve"> <value>.stl</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_Color_Thumbnail_STL.Header" xml:space="preserve"> <value>Color</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_PDF.Header" xml:space="preserve"> <value>Portable Document Format</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_PDF.Description" xml:space="preserve"> <value>.pdf</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview.ModuleDescription" xml:space="preserve"> <value>These settings allow you to manage your Windows File Explorer custom preview handlers.</value> </data> <data name="PowerRename_AutoCompleteHeader.Header" xml:space="preserve"> <value>Auto-complete</value> </data> <data name="OpenSource_Notice.Text" xml:space="preserve"> <value>Open-source notice</value> </data> <data name="PowerRename_Toggle_AutoComplete.Header" xml:space="preserve"> <value>Enable auto-complete for the search &amp; replace fields</value> </data> <data name="FancyZones_BorderColor.Header" xml:space="preserve"> <value>Border color</value> </data> <data name="FancyZones_InActiveColor.Header" xml:space="preserve"> <value>Inactive color</value> </data> <data name="ShortcutGuide.ModuleDescription" xml:space="preserve"> <value>Shows a help overlay with Windows shortcuts.</value> </data> <data name="ShortcutGuide_PressTimeForGlobalWindowsShortcuts.Header" xml:space="preserve"> <value>Press duration before showing global Windows shortcuts (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="ShortcutGuide_ActivationMethod.Header" xml:space="preserve"> <value>Activation method</value> </data> <data name="ShortcutGuide_ActivationMethod.Description" xml:space="preserve"> <value>Use a shortcut or press the Windows key for some time to activate</value> </data> <data name="Radio_ShortcutGuide_ActivationMethod_CustomizedShortcut.Content" xml:space="preserve"> <value>Custom shortcut</value> </data> <data name="Radio_ShortcutGuide_ActivationMethod_LongPressWindowsKey.Content" xml:space="preserve"> <value>Hold down Windows key</value> </data> <data name="ShortcutGuide_PressWinKeyWarning.Title" xml:space="preserve"> <value>In some edge cases Shortcut Guide might not function correctly when using this activation method</value> </data> <data name="Appearance_Behavior.Header" xml:space="preserve"> <value>Appearance &amp; behavior</value> </data> <data name="General_SettingsBackupAndRestoreTitle.Header" xml:space="preserve"> <value>Backup &amp; restore</value> </data> <data name="General_SettingsBackupAndRestore.Header" xml:space="preserve"> <value>Backup and restore your settings</value> </data> <data name="General_SettingsBackupAndRestore.Description" xml:space="preserve"> <value>PowerToys will restart automatically if needed</value> </data> <data name="ShortcutGuide_Enable.Header" xml:space="preserve"> <value>Enable Shortcut Guide</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="ShortcutGuide_OverlayOpacity.Header" xml:space="preserve"> <value>Background opacity (%)</value> </data> <data name="ShortcutGuide_DisabledApps.Header" xml:space="preserve"> <value>Exclude apps</value> </data> <data name="ShortcutGuide_DisabledApps.Description" xml:space="preserve"> <value>Turns off Shortcut Guide when these applications have focus - add one application name per line</value> </data> <data name="ShortcutGuide_DisabledApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> <comment>Don't translate outlook.exe</comment> </data> <data name="ImageResizer_CustomSizes.Header" xml:space="preserve"> <value>Image sizes</value> </data> <data name="ImageResizer_Presets.Header" xml:space="preserve"> <value>Presets</value> </data> <data name="ImageResizer_Presets.Description" xml:space="preserve"> <value>Manage preset sizes that can be used in the editor</value> </data> <data name="ImageResizer_FilenameFormatHeader.Description" xml:space="preserve"> <value>This format is used as the filename for resized images</value> </data> <data name="ImageResizer.ModuleDescription" xml:space="preserve"> <value>Lets you resize images by right-clicking.</value> </data> <data name="ImageResizer_EnableToggle.Header" xml:space="preserve"> <value>Enable Image Resizer</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="ImagesSizesListView.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Image Size</value> </data> <data name="ImageResizer_Configurations.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Configurations</value> </data> <data name="ImageResizer_Name.Header" xml:space="preserve"> <value>Name</value> </data> <data name="ImageResizer_Fit.Header" xml:space="preserve"> <value>Fit</value> </data> <data name="ImageResizer_Width.Header" xml:space="preserve"> <value>Width</value> </data> <data name="ImageResizer_Height.Header" xml:space="preserve"> <value>Height</value> </data> <data name="ImageResizer_Size.Header" xml:space="preserve"> <value>Unit</value> </data> <data name="RemoveButton.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Remove</value> <comment>Removes a user defined setting group for Image Resizer</comment> </data> <data name="RemoveItem.Text" xml:space="preserve"> <value>Delete</value> </data> <data name="ImageResizer_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Image Resizer</value> </data> <data name="ImageResizer_AddSizeButton.Content" xml:space="preserve"> <value>Add new size</value> </data> <data name="ImageResizer_SaveSizeButton.Label" xml:space="preserve"> <value>Save sizes</value> </data> <data name="ImageResizer_Encoding.Header" xml:space="preserve"> <value>JPEG quality level (%)</value> </data> <data name="ImageResizer_PNGInterlacing.Header" xml:space="preserve"> <value>PNG interlacing</value> </data> <data name="ImageResizer_TIFFCompression.Header" xml:space="preserve"> <value>TIFF compression</value> </data> <data name="File.Header" xml:space="preserve"> <value>File</value> <comment>as in a computer file</comment> </data> <data name="Default.Content" xml:space="preserve"> <value>Default</value> </data> <data name="ImageResizer_ENCODER_TIFF_CCITT3.Content" xml:space="preserve"> <value>CCITT3</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_CCITT4.Content" xml:space="preserve"> <value>CCITT4</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_Default.Content" xml:space="preserve"> <value>Default</value> </data> <data name="ImageResizer_ENCODER_TIFF_LZW.Content" xml:space="preserve"> <value>LZW</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_None.Content" xml:space="preserve"> <value>None</value> </data> <data name="ImageResizer_ENCODER_TIFF_RLE.Content" xml:space="preserve"> <value>RLE</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_Zip.Content" xml:space="preserve"> <value>Zip</value> <comment>do not loc</comment> </data> <data name="ImageResizer_FallbackEncoder_BMP.Content" xml:space="preserve"> <value>BMP encoder</value> </data> <data name="ImageResizer_FallbackEncoder_GIF.Content" xml:space="preserve"> <value>GIF encoder</value> </data> <data name="ImageResizer_FallbackEncoder_JPEG.Content" xml:space="preserve"> <value>JPEG encoder</value> </data> <data name="ImageResizer_FallbackEncoder_PNG.Content" xml:space="preserve"> <value>PNG encoder</value> </data> <data name="ImageResizer_FallbackEncoder_TIFF.Content" xml:space="preserve"> <value>TIFF encoder</value> </data> <data name="ImageResizer_FallbackEncoder_WMPhoto.Content" xml:space="preserve"> <value>WMPhoto encoder</value> </data> <data name="ImageResizer_Sizes_Fit_Fill.Content" xml:space="preserve"> <value>Fill</value> <comment>Refers to filling an image into a certain size. It could overflow</comment> </data> <data name="ImageResizer_Sizes_Fit_Fill_ThirdPersonSingular.Text" xml:space="preserve"> <value>Fill</value> <comment>Refers to filling an image into a certain size. It could overflow</comment> </data> <data name="ImageResizer_Sizes_Fit_Fit.Content" xml:space="preserve"> <value>Fit</value> <comment>Refers to fitting an image into a certain size. It won't overflow</comment> </data> <data name="ImageResizer_Sizes_Fit_Stretch.Content" xml:space="preserve"> <value>Stretch</value> <comment>Refers to stretching an image into a certain size. Won't overflow but could distort.</comment> </data> <data name="ImageResizer_Sizes_Units_CM.Content" xml:space="preserve"> <value>Centimeters</value> </data> <data name="ImageResizer_Sizes_Units_Inches.Content" xml:space="preserve"> <value>Inches</value> </data> <data name="ImageResizer_Sizes_Units_Percent.Content" xml:space="preserve"> <value>Percent</value> </data> <data name="ImageResizer_Sizes_Units_Pixels.Content" xml:space="preserve"> <value>Pixels</value> </data> <data name="Off.Content" xml:space="preserve"> <value>Off</value> </data> <data name="On.Content" xml:space="preserve"> <value>On</value> </data> <data name="GeneralPage_ToggleSwitch_AlwaysRunElevated_Link.Content" xml:space="preserve"> <value>Learn more about administrator mode</value> </data> <data name="GeneralPage_ToggleSwitch_AutoDownloadUpdates.Header" xml:space="preserve"> <value>Download updates automatically</value> </data> <data name="GeneralPage_ToggleSwitch_AutoDownloadUpdates.Description" xml:space="preserve"> <value>Except on metered connections</value> </data> <data name="GeneralPage_ToggleSwitch_RunningAsAdminNote.Text" xml:space="preserve"> <value>Currently running as administrator</value> </data> <data name="GeneralSettings_AlwaysRunAsAdminText.Header" xml:space="preserve"> <value>Always run as administrator</value> </data> <data name="GeneralSettings_AlwaysRunAsAdminText.Description" xml:space="preserve"> <value>You need to run as administrator to use this setting</value> </data> <data name="GeneralSettings_RunningAsUserText" xml:space="preserve"> <value>Running as user</value> </data> <data name="GeneralSettings_RunningAsAdminText" xml:space="preserve"> <value>Running as administrator</value> </data> <data name="FancyZones.ModuleTitle" xml:space="preserve"> <value>FancyZones</value> </data> <data name="FileExplorerPreview.ModuleTitle" xml:space="preserve"> <value>File Explorer</value> </data> <data name="FileExplorerPreview_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>File Explorer</value> <comment>Use same translation as Windows does for File Explorer</comment> </data> <data name="ImageResizer.ModuleTitle" xml:space="preserve"> <value>Image Resizer</value> </data> <data name="KeyboardManager.ModuleTitle" xml:space="preserve"> <value>Keyboard Manager</value> </data> <data name="ColorPicker.ModuleTitle" xml:space="preserve"> <value>Color Picker</value> </data> <data name="PowerLauncher.ModuleTitle" xml:space="preserve"> <value>PowerToys Run</value> </data> <data name="PowerToys_Run_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>PowerToys Run</value> </data> <data name="PowerRename.ModuleTitle" xml:space="preserve"> <value>PowerRename</value> <comment>do not loc the product name</comment> </data> <data name="PowerRename_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>PowerRename</value> <comment>do not loc</comment> </data> <data name="ShortcutGuide.ModuleTitle" xml:space="preserve"> <value>Shortcut Guide</value> </data> <data name="Shortcut_Guide_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Shortcut Guide</value> </data> <data name="General_Repository.Text" xml:space="preserve"> <value>GitHub repository</value> </data> <data name="General_Version.Header" xml:space="preserve"> <value>Version</value> </data> <data name="General_VersionLastChecked.Text" xml:space="preserve"> <value>Last checked: </value> </data> <data name="General_SettingsBackupInfo_DateHeader.Text" xml:space="preserve"> <value>Created at:</value> </data> <data name="General_SettingsBackupAndRestoreStatusInfo.Header" xml:space="preserve"> <value>Backup information</value> </data> <data name="General_SettingsBackupInfo_SourceHeader.Text" xml:space="preserve"> <value>Source machine:</value> </data> <data name="General_SettingsBackupInfo_StatusHeader.Text" xml:space="preserve"> <value>Status:</value> </data> <data name="General_Version.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Version</value> </data> <data name="Admin_mode.Header" xml:space="preserve"> <value>Administrator mode</value> </data> <data name="FancyZones_RestoreSize.Content" xml:space="preserve"> <value>Restore the original size of windows when unsnapping</value> </data> <data name="ImageResizer_FallBackEncoderText.Header" xml:space="preserve"> <value>Fallback encoder</value> </data> <data name="ImageResizer_FileFormatDescription.Text" xml:space="preserve"> <value>The following parameters can be used:</value> </data> <data name="ImageResizer_FilenameFormatHeader.Header" xml:space="preserve"> <value>Filename format</value> </data> <data name="ImageResizer_FileModifiedDate.Header" xml:space="preserve"> <value>File modified timestamp</value> </data> <data name="ImageResizer_FileModifiedDate.Description" xml:space="preserve"> <value>Used as the 'modified timestamp' in the file properties</value> </data> <data name="ImageResizer_UseOriginalDate.Content" xml:space="preserve"> <value>Original file timestamp</value> </data> <data name="ImageResizer_UseResizeDate.Content" xml:space="preserve"> <value>Timestamp of resize action</value> </data> <data name="Encoding.Header" xml:space="preserve"> <value>Encoding</value> </data> <data name="KeyboardManager_RemapKeyboardButton.Description" xml:space="preserve"> <value>Remap keys to other keys or shortcuts</value> </data> <data name="KeyboardManager_RemapShortcutsButton.Description" xml:space="preserve"> <value>Remap shortcuts to other shortcuts or keys for all or specific applications</value> </data> <data name="General.ModuleDescription" xml:space="preserve"> <value>Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. Made with 💗 by Microsoft and the PowerToys community.</value> <comment>Windows refers to the OS</comment> </data> <data name="FancyZones_SpanZonesAcrossMonitors.Header" xml:space="preserve"> <value>Allow zones to span across monitors</value> </data> <data name="ImageResizer_Formatting_ActualHeight.Text" xml:space="preserve"> <value>Actual height</value> </data> <data name="ImageResizer_Formatting_ActualWidth.Text" xml:space="preserve"> <value>Actual width</value> </data> <data name="ImageResizer_Formatting_Filename.Text" xml:space="preserve"> <value>Original filename</value> </data> <data name="ImageResizer_Formatting_SelectedHeight.Text" xml:space="preserve"> <value>Selected height</value> </data> <data name="ImageResizer_Formatting_SelectedWidth.Text" xml:space="preserve"> <value>Selected width</value> </data> <data name="ImageResizer_Formatting_Sizename.Text" xml:space="preserve"> <value>Size name</value> </data> <data name="FancyZones_MoveWindowsBasedOnPositionCheckBoxControl.Content" xml:space="preserve"> <value>Move windows based on their position</value> <comment>Windows refers to application windows</comment> </data> <data name="GeneralSettings_NewVersionIsAvailable" xml:space="preserve"> <value>New update available</value> </data> <data name="GeneralSettings_VersionIsLatest" xml:space="preserve"> <value>PowerToys is up to date.</value> </data> <data name="FileExplorerPreview_IconThumbnail_GroupSettings.Header" xml:space="preserve"> <value>Thumbnail icon Preview</value> </data> <data name="FileExplorerPreview_IconThumbnail_GroupSettings.Description" xml:space="preserve"> <value>Select the file types for which thumbnail previews must be rendered.</value> </data> <data name="FileExplorerPreview_PreviewPane.Header" xml:space="preserve"> <value>Preview Pane</value> </data> <data name="FileExplorerPreview_PreviewPane.Description" xml:space="preserve"> <value>Select the file types which must be rendered in the Preview Pane. Ensure that Preview Pane is open by toggling the view with Alt + P in File Explorer.</value> <comment>Preview Pane and File Explorer are app/feature names in Windows. 'Alt + P' is a shortcut</comment> </data> <data name="FileExplorerPreview_RunAsAdminRequired.Title" xml:space="preserve"> <value>You need to run as administrator to modify these settings.</value> </data> <data name="FileExplorerPreview_RebootRequired.Title" xml:space="preserve"> <value>A reboot may be required for changes to these settings to take effect</value> </data> <data name="FileExplorerPreview_PreviewHandlerOutlookIncompatibility.Title" xml:space="preserve"> <value>Enabling the preview handlers will override other preview handlers already installed - there have been reports of incompatibility between Outlook and the PDF Preview Handler.</value> <comment>Outlook is the name of a Microsoft product</comment> </data> <data name="FileExplorerPreview_ThumbnailsMightNotAppearOnRemoteFolders.Title" xml:space="preserve"> <value>Thumbnails might not appear on paths managed by cloud storage solutions like OneDrive, since these solutions may get their thumbnails from the cloud instead of generating them locally.</value> <comment>OneDrive is the name of a Microsoft product</comment> </data> <data name="FancyZones_ExcludeApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> <comment>Don't translate outlook.exe</comment> </data> <data name="ImageResizer_FilenameFormatPlaceholder.PlaceholderText" xml:space="preserve"> <value>Example: %1 (%2)</value> </data> <data name="ImageResizer_FilenameParameters.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Filename parameters</value> </data> <data name="Radio_Theme_Dark.Content" xml:space="preserve"> <value>Dark</value> <comment>Dark refers to color, not weight</comment> </data> <data name="Radio_Theme_Light.Content" xml:space="preserve"> <value>Light</value> <comment>Light refers to color, not weight</comment> </data> <data name="Radio_Theme_Default.Content" xml:space="preserve"> <value>Windows default</value> <comment>Windows refers to the Operating system</comment> </data> <data name="Windows_Color_Settings.Content" xml:space="preserve"> <value>Windows color settings</value> <comment>Windows refers to the Operating system</comment> </data> <data name="ColorPicker_CopiedColorRepresentation.Header" xml:space="preserve"> <value>Default color format</value> </data> <data name="ColorPickerFirst.Content" xml:space="preserve"> <value>Pick a color and open editor</value> </data> <data name="EditorFirst.Content" xml:space="preserve"> <value>Open editor</value> </data> <data name="ColorPickerOnly.Content" xml:space="preserve"> <value>Only pick a color</value> </data> <data name="ColorPicker_ActivationAction.Header" xml:space="preserve"> <value>Activation behavior</value> </data> <data name="ColorFormats.Header" xml:space="preserve"> <value>Picker behavior</value> </data> <data name="ColorPicker_CopiedColorRepresentation.Description" xml:space="preserve"> <value>This format will be copied to your clipboard</value> </data> <data name="KBM_KeysCannotBeRemapped.Text" xml:space="preserve"> <value>Learn more about remapping limitations</value> <comment>This is a link that will discuss what is and is not possible for Keyboard manager to remap</comment> </data> <data name="FancyZones_Editor_GroupSettings.Header" xml:space="preserve"> <value>Editor</value> <comment>refers to the FancyZone editor</comment> </data> <data name="FancyZones_WindowBehavior_GroupSettings.Header" xml:space="preserve"> <value>Window behavior</value> </data> <data name="FancyZones_WindowBehavior_GroupSettings.Description" xml:space="preserve"> <value>Manage how windows behave when using FancyZones</value> </data> <data name="FancyZones_Windows.Header" xml:space="preserve"> <value>Windows</value> <comment>Do translate: refers to a set of application windows, not the product name</comment> </data> <data name="PowerRename_BehaviorHeader.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="PowerRename_Toggle_UseBoostLib.Header" xml:space="preserve"> <value>Use Boost library</value> <comment>Boost is a product name, should not be translated</comment> </data> <data name="PowerRename_Toggle_UseBoostLib.Description" xml:space="preserve"> <value>Provides extended features but may use different regex syntax</value> <comment>Boost is a product name, should not be translated</comment> </data> <data name="MadeWithOssLove.Text" xml:space="preserve"> <value>Made with 💗 by Microsoft and the PowerToys community.</value> </data> <data name="ColorPicker_ColorFormats.Header" xml:space="preserve"> <value>Color formats</value> </data> <data name="ColorPicker_ColorFormats.Description" xml:space="preserve"> <value>Configure the color formats (edit, delete, hide, reorder them)</value> </data> <data name="MoveUp.Text" xml:space="preserve"> <value>Move up</value> </data> <data name="MoveDown.Text" xml:space="preserve"> <value>Move down</value> </data> <data name="ColorPickerAddNewFormat.Content" xml:space="preserve"> <value>Add new format</value> </data> <data name="NewColorFormat.Header" xml:space="preserve"> <value>Format</value> </data> <data name="NewColorName.Header" xml:space="preserve"> <value>Name</value> </data> <data name="AddCustomColorFormat" xml:space="preserve"> <value>Add custom color format</value> </data> <data name="ColorFormatSave" xml:space="preserve"> <value>Save</value> </data> <data name="EditCustomColorFormat" xml:space="preserve"> <value>Edit custom color format</value> </data> <data name="ColorFormatUpdate" xml:space="preserve"> <value>Update</value> </data> <data name="CustomColorFormatDefaultName" xml:space="preserve"> <value>My Format</value> </data> <data name="ColorFormatDialog.SecondaryButtonText" xml:space="preserve"> <value>Cancel</value> </data> <data name="ColorFormatEditorHelpline1.Text" xml:space="preserve"> <value>The following parameters can be used:</value> </data> <data name="Help_red" xml:space="preserve"> <value>red</value> </data> <data name="Help_green" xml:space="preserve"> <value>green</value> </data> <data name="Help_blue" xml:space="preserve"> <value>blue</value> </data> <data name="Help_alpha" xml:space="preserve"> <value>alpha</value> </data> <data name="Help_cyan" xml:space="preserve"> <value>cyan</value> </data> <data name="Help_magenta" xml:space="preserve"> <value>magenta</value> </data> <data name="Help_yellow" xml:space="preserve"> <value>yellow</value> </data> <data name="Help_black_key" xml:space="preserve"> <value>black key</value> </data> <data name="Help_hue" xml:space="preserve"> <value>hue</value> </data> <data name="Help_hueNat" xml:space="preserve"> <value>hue (natural)</value> </data> <data name="Help_saturationI" xml:space="preserve"> <value>saturation (HSI)</value> </data> <data name="Help_saturationL" xml:space="preserve"> <value>saturation (HSL)</value> </data> <data name="Help_saturationB" xml:space="preserve"> <value>saturation (HSB)</value> </data> <data name="Help_brightness" xml:space="preserve"> <value>brightness</value> </data> <data name="Help_intensity" xml:space="preserve"> <value>intensity</value> </data> <data name="Help_lightnessNat" xml:space="preserve"> <value>lightness (nat)</value> </data> <data name="Help_lightnessCIE" xml:space="preserve"> <value>lightness (CIE)</value> </data> <data name="Help_value" xml:space="preserve"> <value>value</value> </data> <data name="Help_whiteness" xml:space="preserve"> <value>whiteness</value> </data> <data name="Help_blackness" xml:space="preserve"> <value>blackness</value> </data> <data name="Help_chromaticityA" xml:space="preserve"> <value>chromaticityA</value> </data> <data name="Help_chromaticityB" xml:space="preserve"> <value>chromaticityB</value> </data> <data name="Help_X_value" xml:space="preserve"> <value>X value</value> </data> <data name="Help_Y_value" xml:space="preserve"> <value>Y value</value> </data> <data name="Help_Z_value" xml:space="preserve"> <value>Z value</value> </data> <data name="Help_decimal_value_RGB" xml:space="preserve"> <value>decimal value (RGB)</value> </data> <data name="Help_decimal_value_BGR" xml:space="preserve"> <value>decimal value (BGR)</value> </data> <data name="Help_color_name" xml:space="preserve"> <value>color name</value> </data> <data name="ColorFormatEditorHelpline2.Text" xml:space="preserve"> <value>The red, green, blue and alpha values can be formatted to the following formats:</value> </data> <data name="Help_byte" xml:space="preserve"> <value>byte value (default)</value> </data> <data name="Help_hexL1" xml:space="preserve"> <value>hex lowercase one digit</value> </data> <data name="Help_hexU1" xml:space="preserve"> <value>hex uppercase one digit</value> </data> <data name="Help_hexL2" xml:space="preserve"> <value>hex lowercase two digits</value> </data> <data name="Help_hexU2" xml:space="preserve"> <value>hex uppercase two digits</value> </data> <data name="Help_floatWith" xml:space="preserve"> <value>float with leading zero</value> </data> <data name="Help_floatWithout" xml:space="preserve"> <value>float without leading zero</value> </data> <data name="ColorFormatEditorHelpline3.Text" xml:space="preserve"> <value>Example: %ReX means red value in hex uppercase two digits format.</value> </data> <data name="ColorPicker_ShowColorName.Header" xml:space="preserve"> <value>Show color name</value> </data> <data name="ColorPicker_ShowColorName.Description" xml:space="preserve"> <value>This will show the name of the color when picking a color</value> </data> <data name="ImageResizer_DefaultSize_Large" xml:space="preserve"> <value>Large</value> <comment>The size of the image</comment> </data> <data name="ImageResizer_DefaultSize_Medium" xml:space="preserve"> <value>Medium</value> <comment>The size of the image</comment> </data> <data name="ImageResizer_DefaultSize_Phone" xml:space="preserve"> <value>Phone</value> <comment>The size of the image referring to a Mobile Phone typical image size</comment> </data> <data name="ImageResizer_DefaultSize_Small" xml:space="preserve"> <value>Small</value> <comment>The size of the image</comment> </data> <data name="FancyZones_MoveWindowBasedOnRelativePosition_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Windows key + Up, down, left or right arrow key to move windows based on relative position</value> </data> <data name="FancyZones_MoveWindowLeftRightBasedOnZoneIndex_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Windows key + Left or right arrow keys to move windows based on zone index</value> </data> <data name="FancyZones_MoveWindowBasedOnRelativePosition_Description.Text" xml:space="preserve"> <value>Windows key +    or </value> <comment>Do not loc the icons (hex numbers)</comment> </data> <data name="FancyZones_MoveWindowLeftRightBasedOnZoneIndex_Description.Text" xml:space="preserve"> <value>Windows key +  or </value> <comment>Do not loc the icons (hex numbers)</comment> </data> <data name="FancyZones_MoveWindowBasedOnRelativePosition.Text" xml:space="preserve"> <value>Relative position</value> </data> <data name="FancyZones_MoveWindow.Header" xml:space="preserve"> <value>Move windows based on</value> </data> <data name="FancyZones_MoveWindowLeftRightBasedOnZoneIndex.Text" xml:space="preserve"> <value>Zone index</value> </data> <data name="ColorPicker_Editor.Header" xml:space="preserve"> <value>Color formats</value> </data> <data name="FancyZones_OverlappingZonesClosestCenter.Content" xml:space="preserve"> <value>Activate the zone whose center is closest to the cursor</value> </data> <data name="FancyZones_OverlappingZonesLargest.Content" xml:space="preserve"> <value>Activate the largest zone by area</value> </data> <data name="FancyZones_OverlappingZonesPositional.Content" xml:space="preserve"> <value>Split the overlapped area into multiple activation targets</value> </data> <data name="FancyZones_OverlappingZonesSmallest.Content" xml:space="preserve"> <value>Activate the smallest zone by area</value> </data> <data name="FancyZones_OverlappingZones.Header" xml:space="preserve"> <value>When multiple zones overlap</value> </data> <data name="PowerLauncher_Plugins.Header" xml:space="preserve"> <value>Plugins</value> </data> <data name="PowerLauncher_ActionKeyword.Header" xml:space="preserve"> <value>Direct activation command</value> </data> <data name="PowerLauncher_AuthoredBy.Text" xml:space="preserve"> <value>Authored by</value> <comment>example: Authored by Microsoft</comment> </data> <data name="PowerLauncher_IncludeInGlobalResultTitle.Text" xml:space="preserve"> <value>Include in global result</value> </data> <data name="PowerLauncher_IncludeInGlobalResultDescription.Text" xml:space="preserve"> <value>Show results on queries without direct activation command</value> </data> <data name="PowerLauncher_EnablePluginToggle.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Enable plugin</value> </data> <data name="PowerLauncher_EnablePluginToggle.OnContent" xml:space="preserve"> <value>On</value> </data> <data name="PowerLauncher_EnablePluginToggle.OffContent" xml:space="preserve"> <value>Off</value> </data> <data name="Run_AdditionalOptions.Text" xml:space="preserve"> <value>Additional options</value> </data> <data name="Run_NotAccessibleWarning.Title" xml:space="preserve"> <value>Please define an activation command or allow this plugin to be used in the global results.</value> </data> <data name="Run_AllPluginsDisabled.Title" xml:space="preserve"> <value>PowerToys Run can't provide any results without plugins</value> </data> <data name="Run_AllPluginsDisabled.Message" xml:space="preserve"> <value>Enable at least one plugin to get started</value> </data> <data name="Run_PluginUse.Header" xml:space="preserve"> <value>Plugins</value> </data> <data name="Run_PluginUseDescription.Text" xml:space="preserve"> <value>Include or remove plugins from the global results, change the direct activation phrase and configure additional options</value> </data> <data name="Run_PositionAppearance_GroupSettings.Header" xml:space="preserve"> <value>Position &amp; appearance</value> </data> <data name="Run_PositionHeader.Header" xml:space="preserve"> <value>Preferred monitor position</value> <comment>as in Show PowerToys Run on primary monitor</comment> </data> <data name="Run_PositionHeader.Description" xml:space="preserve"> <value>If multiple monitors are in use, PowerToys Run can be launched on the desired monitor</value> <comment>as in Show PowerToys Run on primary monitor</comment> </data> <data name="Run_Radio_Position_Cursor.Content" xml:space="preserve"> <value>Monitor with mouse cursor</value> </data> <data name="Run_Radio_Position_Focus.Content" xml:space="preserve"> <value>Monitor with focused window</value> </data> <data name="Run_Radio_Position_Primary_Monitor.Content" xml:space="preserve"> <value>Primary monitor</value> </data> <data name="Run_PluginsLoading.Text" xml:space="preserve"> <value>Plugins are loading...</value> </data> <data name="ColorPicker_ButtonDown.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Move the color down</value> </data> <data name="ColorPicker_ButtonUp.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Move the color up</value> </data> <data name="FancyZones_FlashZonesOnQuickSwitch.Content" xml:space="preserve"> <value>Flash zones when switching layout</value> </data> <data name="FancyZones_Layouts.Header" xml:space="preserve"> <value>Layouts</value> </data> <data name="FancyZones_QuickLayoutSwitch.Header" xml:space="preserve"> <value>Enable quick layout switch</value> </data> <data name="FancyZones_QuickLayoutSwitch.Description" xml:space="preserve"> <value>Layout-specific shortcuts can be configured in the editor</value> </data> <data name="FancyZones_QuickLayoutSwitch_GroupSettings.Text" xml:space="preserve"> <value>Quick layout switch</value> </data> <data name="Activation_Shortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="Activation_Shortcut.Description" xml:space="preserve"> <value>Customize the shortcut to activate this module</value> </data> <data name="Oobe_GetStarted.Text" xml:space="preserve"> <value>Let's get started!</value> </data> <data name="Oobe_PowerToysDescription.Text" xml:space="preserve"> <value>Welcome to PowerToys! These overviews will help you quickly learn the basics of all our utilities.</value> </data> <data name="Oobe_GettingStarted.Text" xml:space="preserve"> <value>Getting started</value> </data> <data name="Oobe_Launch.Text" xml:space="preserve"> <value>Launch</value> </data> <data name="Launch_ColorPicker.Content" xml:space="preserve"> <value>Launch Color Picker</value> </data> <data name="Oobe_LearnMore.Text" xml:space="preserve"> <value>Learn more about</value> </data> <data name="Oobe_ColorPicker.Description" xml:space="preserve"> <value>Color Picker is a system-wide color selection tool for Windows that enables you to pick colors from any currently running application and automatically copies it in a configurable format to your clipboard.</value> </data> <data name="Oobe_FancyZones.Description" xml:space="preserve"> <value>FancyZones is a window manager that makes it easy to create complex window layouts and quickly position windows into those layouts.</value> </data> <data name="Oobe_FileLocksmith.Description" xml:space="preserve"> <value>File Locksmith lists which processes are using the selected files or directories and allows closing those processes.</value> </data> <data name="Oobe_FileExplorer.Description" xml:space="preserve"> <value>PowerToys introduces add-ons to the Windows File Explorer that will enable files like Markdown (.md), PDF (.pdf), SVG (.svg), STL (.stl), G-code (.gcode) and developer files to be viewed in the preview pane. It introduces File Explorer thumbnail support for a number of these file types as well.</value> </data> <data name="Oobe_ImageResizer.Description" xml:space="preserve"> <value>Image Resizer is a Windows shell extension for simple bulk image-resizing.</value> </data> <data name="Oobe_KBM.Description" xml:space="preserve"> <value>Keyboard Manager allows you to customize the keyboard to be more productive by remapping keys and creating your own keyboard shortcuts.</value> </data> <data name="Oobe_MouseWithoutBorders.Description" xml:space="preserve"> <value>Mouse Without Borders enables using the mouse pointer, keyboard, clipboard and drag and drop between machines in the same local network.</value> </data> <data name="Oobe_PowerRename.Description" xml:space="preserve"> <value>PowerRename enables you to perform simple bulk renaming, searching and replacing file names.</value> </data> <data name="Oobe_Run.Description" xml:space="preserve"> <value>PowerToys Run is a quick launcher for power users that contains some additional features without sacrificing performance.</value> </data> <data name="Oobe_MeasureTool.Description" xml:space="preserve"> <value>Screen Ruler is a quick and easy way to measure pixels on your screen.</value> </data> <data name="Oobe_ShortcutGuide.Description" xml:space="preserve"> <value>Shortcut Guide presents the user with a listing of available shortcuts for the current state of the desktop.</value> </data> <data name="Oobe_VideoConference.Description" xml:space="preserve"> <value>Video Conference Mute allows users to quickly mute the microphone and turn off the camera while on a conference call with a single keystroke, regardless of what application has focus on your computer.</value> </data> <data name="Oobe_MouseUtils.Description" xml:space="preserve"> <value>A collection of utilities to enhance your mouse.</value> <comment>Mouse as in the hardware peripheral</comment> </data> <data name="Oobe_Overview.Description" xml:space="preserve"> <value>Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. Take a moment to preview the various utilities listed or view our comprehensive documentation.</value> </data> <data name="Oobe_Overview_DescriptionLinkText.Text" xml:space="preserve"> <value>Documentation on Microsoft Docs</value> </data> <data name="ReleaseNotes.Content" xml:space="preserve"> <value>Release notes</value> </data> <data name="Oobe_ColorPicker_HowToUse.Text" xml:space="preserve"> <value>to open Color Picker.</value> </data> <data name="Oobe_ColorPicker_TipsAndTricks.Text" xml:space="preserve"> <value>To select a color with more precision, **scroll the mouse wheel** to zoom in.</value> </data> <data name="Oobe_FancyZones_HowToUse.Text" xml:space="preserve"> <value>**Shift** + **drag the window** to snap a window to a zone, and release the window in the desired zone.</value> </data> <data name="Oobe_FancyZones_HowToUse_Shortcut.Text" xml:space="preserve"> <value>to open the FancyZones editor.</value> </data> <data name="Oobe_FancyZones_TipsAndTricks.Text" xml:space="preserve"> <value>Snap a window to multiple zones by holding the **Ctrl** key (while also holding **Shift**) when dragging a window.</value> </data> <data name="Oobe_FileLocksmith_HowToUse.Text" xml:space="preserve"> <value>In File Explorer, right-click one or more selected files and select **What's using this file?** from the context menu.</value> </data> <data name="Oobe_FileLocksmith_TipsAndTricks.Text" xml:space="preserve"> <value>Press the **Restart Elevated** button from the File Locksmith UI to also get information on elevated processes that might be using the files.</value> </data> <data name="Oobe_FileExplorer_HowToEnable.Text" xml:space="preserve"> <value>Select **View** which is located at the top of File Explorer, followed by **Show**, and then **Preview pane**. From there, simply click on one of the supported files in the File Explorer and observe the content on the preview pane!</value> </data> <data name="Oobe_HowToCreateMappings.Text" xml:space="preserve"> <value>How to create mappings</value> </data> <data name="Oobe_HowToEnable.Text" xml:space="preserve"> <value>How to enable</value> </data> <data name="Oobe_HowToLaunch.Text" xml:space="preserve"> <value>How to launch</value> </data> <data name="Oobe_HowToUse.Text" xml:space="preserve"> <value>How to use</value> </data> <data name="Oobe_ImageResizer_HowToLaunch.Text" xml:space="preserve"> <value>In File Explorer, right-click one or more image files and select **Resize pictures** from the context menu.</value> </data> <data name="Oobe_ImageResizer_TipsAndTricks.Text" xml:space="preserve"> <value>Want a custom size? You can add them in the PowerToys Settings!</value> </data> <data name="Oobe_KBM_HowToCreateMappings.Text" xml:space="preserve"> <value>Launch **PowerToys Settings**, navigate to the Keyboard Manager menu, and select either **Remap a key** or **Remap a shortcut**.</value> </data> <data name="Oobe_KBM_TipsAndTricks.Text" xml:space="preserve"> <value>Want to only have a shortcut work for a single application? Use the Target App field when creating the shortcut remapping.</value> </data> <data name="Oobe_MouseWithoutBorders_HowToUse.Text" xml:space="preserve"> <value>Use the Settings screen on each machine to connect to the other machines using the same key. If a connection is not working, it may be necessary to add an exception to the Windows Firewall.</value> </data> <data name="Oobe_MouseWithoutBorders_TipsAndTricks.Text" xml:space="preserve"> <value>Use the service option in Settings to install a service enabling Mouse Without Borders to function even in the lock screen.</value> </data> <data name="Oobe_PowerRename_HowToUse.Text" xml:space="preserve"> <value>In File Explorer, right-click one or more selected files and select **PowerRename** from the context menu.</value> </data> <data name="Oobe_PowerRename_TipsAndTricks.Text" xml:space="preserve"> <value>PowerRename supports searching for files using regular expressions to enable more advanced renaming functionalities.</value> </data> <data name="Oobe_Run_HowToLaunch.Text" xml:space="preserve"> <value>to open Run and just start typing.</value> </data> <data name="Oobe_Run_TipsAndTricks.Text" xml:space="preserve"> <value>PowerToys Run supports various action keys to funnel search queries for a specific subset of results. Typing `&lt;` searches for running processes only, `?` will search only for file, or `.` for installed applications! See PowerToys documentation for the complete set of 'Action Keys' available.</value> </data> <data name="Oobe_ShortcutGuide_HowToLaunch.Text" xml:space="preserve"> <value>to open Shortcut Guide, press it again to close or press **Esc**.</value> </data> <data name="Oobe_TipsAndTricks.Text" xml:space="preserve"> <value>Tips &amp; tricks</value> </data> <data name="Oobe_VideoConference_ToggleMicVid.Text" xml:space="preserve"> <value>to toggle both your microphone and video</value> </data> <data name="Oobe_VideoConference_ToggleMic.Text" xml:space="preserve"> <value>to toggle your microphone</value> </data> <data name="Oobe_VideoConference_PushToTalkMic.Text" xml:space="preserve"> <value>to toggle your microphone until key release</value> </data> <data name="Oobe_VideoConference_ToggleVid.Text" xml:space="preserve"> <value>to toggle your video</value> </data> <data name="Oobe_MeasureTool_Activation.Text" xml:space="preserve"> <value>to bring up the Screen Ruler command bar.</value> </data> <data name="Oobe_MeasureTool_HowToLaunch.Text" xml:space="preserve"> <value>The Bounds mode lets you select a specific area to measure. You can also shift-drag an area to persist in on screen. The various Spacing modes allows tracing similar pixels along horizontal and vertical axes with a customizable pixel tolerance threshold (use settings or mouse wheel to adjust it).</value> </data> <data name="Oobe_MeasureTool.Title" xml:space="preserve"> <value>Screen Ruler</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_ColorPicker.Title" xml:space="preserve"> <value>Color Picker</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_FancyZones.Title" xml:space="preserve"> <value>FancyZones</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_FileLocksmith.Title" xml:space="preserve"> <value>File Locksmith</value> </data> <data name="Oobe_ImageResizer.Title" xml:space="preserve"> <value>Image Resizer</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_KBM.Title" xml:space="preserve"> <value>Keyboard Manager</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_MouseWithoutBorders.Title" xml:space="preserve"> <value>Mouse Without Borders</value> <comment>Product name. Do not localize this string</comment> </data> <data name="Oobe_PowerRename.Title" xml:space="preserve"> <value>PowerRename</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_Run.Title" xml:space="preserve"> <value>PowerToys Run</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_ShortcutGuide.Title" xml:space="preserve"> <value>Shortcut Guide</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_VideoConference.Title" xml:space="preserve"> <value>Video Conference Mute</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_Overview.Title" xml:space="preserve"> <value>Welcome</value> </data> <data name="Oobe_WhatsNew.Text" xml:space="preserve"> <value>What's new</value> </data> <data name="Oobe_WhatsNew_LoadingError.Title" xml:space="preserve"> <value>Couldn't load the release notes.</value> </data> <data name="Oobe_WhatsNew_LoadingError.Message" xml:space="preserve"> <value>Please check your internet connection.</value> </data> <data name="Oobe_WhatsNew_ProxyAuthenticationWarning.Title" xml:space="preserve"> <value>Couldn't load the release notes.</value> </data> <data name="Oobe_WhatsNew_ProxyAuthenticationWarning.Message" xml:space="preserve"> <value>Your proxy server requires authentication.</value> </data> <data name="Oobe_WhatsNew_DetailedReleaseNotesLink.Text" xml:space="preserve"> <value>See more detailed release notes on GitHub</value> <comment>Don't loc "GitHub", it's the name of a product</comment> </data> <data name="OOBE_Settings.Content" xml:space="preserve"> <value>Open Settings</value> </data> <data name="Oobe_NavViewItem.Content" xml:space="preserve"> <value>Welcome to PowerToys</value> <comment>Don't loc "PowerToys"</comment> </data> <data name="Feedback_NavViewItem.Content" xml:space="preserve"> <value>Give feedback</value> </data> <data name="OobeWindow_Title" xml:space="preserve"> <value>Welcome to PowerToys</value> </data> <data name="OobeWindow_TitleTxt.Text" xml:space="preserve"> <value>Welcome to PowerToys</value> </data> <data name="SettingsWindow_Title" xml:space="preserve"> <value>PowerToys Settings</value> <comment>Title of the settings window when running as user</comment> </data> <data name="Awake.ModuleTitle" xml:space="preserve"> <value>Awake</value> </data> <data name="Awake.ModuleDescription" xml:space="preserve"> <value>A convenient way to keep your PC awake on-demand.</value> </data> <data name="Awake_EnableSettingsCard.Header" xml:space="preserve"> <value>Enable Awake</value> <comment>Awake is a product name, do not loc</comment> </data> <data name="Awake_NoKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep using the selected power plan</value> </data> <data name="Awake_IndefiniteKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep awake indefinitely</value> </data> <data name="Awake_TemporaryKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep awake for a time interval</value> </data> <data name="Awake_ExpirableKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep awake until expiration</value> </data> <data name="Awake_DisplaySettingsCard.Header" xml:space="preserve"> <value>Keep screen on</value> </data> <data name="Awake_DisplaySettingsCard.Description" xml:space="preserve"> <value>This setting is only available when keeping the PC awake</value> </data> <data name="Awake_ExpirationSettingsExpander.Description" xml:space="preserve"> <value>Keep custom awake state until a specific date and time</value> </data> <data name="Awake_ModeSettingsCard.Header" xml:space="preserve"> <value>Mode</value> </data> <data name="Awake_BehaviorSettingsGroup.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="Awake_IntervalHoursInput.Header" xml:space="preserve"> <value>Hours</value> </data> <data name="Awake_IntervalMinutesInput.Header" xml:space="preserve"> <value>Minutes</value> </data> <data name="Awake_ExpirationSettingsExpander_Date.Header" xml:space="preserve"> <value>End date</value> </data> <data name="Awake_ExpirationSettingsExpander_Time.Header" xml:space="preserve"> <value>End time</value> </data> <data name="Oobe_Awake.Title" xml:space="preserve"> <value>Awake</value> <comment>Module name, do not loc</comment> </data> <data name="Oobe_Awake.Description" xml:space="preserve"> <value>Awake is a Windows tool designed to keep your PC awake on-demand without having to manage its power settings. This behavior can be helpful when running time-consuming tasks while ensuring that your PC does not go to sleep or turn off its screens.</value> </data> <data name="Oobe_Awake_HowToUse.Text" xml:space="preserve"> <value>Open **PowerToys Settings** and enable Awake</value> </data> <data name="Oobe_Awake_TipsAndTricks.Text" xml:space="preserve"> <value>You can always change modes quickly by **right-clicking the Awake icon** in the system tray.</value> </data> <data name="General_FailedToDownloadTheNewVersion.Title" xml:space="preserve"> <value>An error occurred trying to install this update:</value> </data> <data name="General_InstallNow.Content" xml:space="preserve"> <value>Install now</value> </data> <data name="General_ReadMore.Text" xml:space="preserve"> <value>Read more</value> </data> <data name="General_NewVersionAvailable.Title" xml:space="preserve"> <value>An update is available:</value> </data> <data name="General_Downloading.Text" xml:space="preserve"> <value>Downloading...</value> </data> <data name="General_TryAgainToDownloadAndInstall.Content" xml:space="preserve"> <value>Try again to download and install</value> </data> <data name="General_CheckingForUpdates.Text" xml:space="preserve"> <value>Checking for updates...</value> </data> <data name="General_NewVersionReadyToInstall.Title" xml:space="preserve"> <value>An update is ready to install:</value> </data> <data name="General_UpToDate.Title" xml:space="preserve"> <value>PowerToys is up to date</value> </data> <data name="General_CantCheck.Title" xml:space="preserve"> <value>Network error. Please try again later</value> </data> <data name="General_DownloadAndInstall.Content" xml:space="preserve"> <value>Download &amp; install</value> </data> <data name="ImageResizer_Fit_Fill_ThirdPersonSingular" xml:space="preserve"> <value>Fills</value> </data> <data name="ImageResizer_Fit_Fit_ThirdPersonSingular" xml:space="preserve"> <value>Fits within</value> </data> <data name="ImageResizer_Fit_Stretch_ThirdPersonSingular" xml:space="preserve"> <value>Stretches to</value> </data> <data name="ImageResizer_Unit_Centimeter" xml:space="preserve"> <value>Centimeters</value> </data> <data name="ImageResizer_Unit_Inch" xml:space="preserve"> <value>Inches</value> </data> <data name="ImageResizer_Unit_Percent" xml:space="preserve"> <value>Percent</value> </data> <data name="ImageResizer_Unit_Pixel" xml:space="preserve"> <value>Pixels</value> </data> <data name="EditButton.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Edit</value> </data> <data name="ImageResizer_EditSize.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Edit size</value> </data> <data name="No" xml:space="preserve"> <value>No</value> <comment>Label of a cancel button</comment> </data> <data name="Delete_Dialog_Description" xml:space="preserve"> <value>Are you sure you want to delete this item?</value> </data> <data name="Yes" xml:space="preserve"> <value>Yes</value> <comment>Label of a confirmation button</comment> </data> <data name="SeeWhatsNew.Content" xml:space="preserve"> <value>See what's new</value> </data> <data name="Awake_ModeSettingsCard.Description" xml:space="preserve"> <value>Manage the state of your device when Awake is active</value> </data> <data name="ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="Enable_ColorFormat.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Enable colorformat</value> </data> <data name="More_Options_Button.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>More options</value> </data> <data name="More_Options_ButtonTooltip.Text" xml:space="preserve"> <value>More options</value> </data> <data name="To.Text" xml:space="preserve"> <value>to</value> <comment>as in: from x to y</comment> </data> <data name="LearnMore_Awake.Text" xml:space="preserve"> <value>Learn more about Awake</value> <comment>Awake is a product name, do not loc</comment> </data> <data name="LearnMore_ColorPicker.Text" xml:space="preserve"> <value>Learn more about Color Picker</value> <comment>Color Picker is a product name, do not loc</comment> </data> <data name="LearnMore_FancyZones.Text" xml:space="preserve"> <value>Learn more about FancyZones</value> <comment>FancyZones is a product name, do not loc</comment> </data> <data name="LearnMore_FileLocksmith.Text" xml:space="preserve"> <value>Learn more about File Locksmith</value> </data> <data name="LearnMore_ImageResizer.Text" xml:space="preserve"> <value>Learn more about Image Resizer</value> <comment>Image Resizer is a product name, do not loc</comment> </data> <data name="LearnMore_KBM.Text" xml:space="preserve"> <value>Learn more about Keyboard Manager</value> <comment>Keyboard Manager is a product name, do not loc</comment> </data> <data name="LearnMore_MouseUtils.Text" xml:space="preserve"> <value>Learn more about Mouse utilities</value> <comment>Mouse utilities is a product name, do not loc</comment> </data> <data name="LearnMore_PastePlain.Text" xml:space="preserve"> <value>Learn more about Paste as Plain Text</value> <comment> Paste as Plain Text is the name of the module. </comment> </data> <data name="LearnMore_MouseWithoutBorders.Text" xml:space="preserve"> <value>Learn more about Mouse Without Borders</value> <comment>Mouse Without Borders is the name of the module. </comment> </data> <data name="LearnMore_PowerPreview.Text" xml:space="preserve"> <value>Learn more about File Explorer add-ons</value> <comment>File Explorer is a product name, localize as Windows does</comment> </data> <data name="LearnMore_Peek.Text" xml:space="preserve"> <value>Learn more about Peek</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="LearnMore_PowerRename.Text" xml:space="preserve"> <value>Learn more about PowerRename</value> <comment>PowerRename is a product name, do not loc</comment> </data> <data name="LearnMore_Run.Text" xml:space="preserve"> <value>Learn more about PowerToys Run</value> <comment>PowerToys Run is a product name, do not loc</comment> </data> <data name="LearnMore_MeasureTool.Text" xml:space="preserve"> <value>Learn more about Screen Ruler</value> <comment>Screen Ruler is a product name, do not loc</comment> </data> <data name="LearnMore_ShortcutGuide.Text" xml:space="preserve"> <value>Learn more about Shortcut Guide</value> <comment>Shortcut Guide is a product name, do not loc</comment> </data> <data name="LearnMore_VCM.Text" xml:space="preserve"> <value>Learn more about Video Conference Mute</value> <comment>Video Conference Mute is a product name, do not loc</comment> </data> <data name="Oobe_FileExplorer.Title" xml:space="preserve"> <value>File Explorer add-ons</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_MouseUtils.Title" xml:space="preserve"> <value>Mouse utilities</value> <comment>Mouse as in the hardware peripheral</comment> </data> <data name="Oobe_MouseUtils_FindMyMouse.Text" xml:space="preserve"> <value>Find My Mouse</value> <comment>Mouse as in the hardware peripheral</comment> </data> <data name="Oobe_MouseUtils_FindMyMouse_Description.Text" xml:space="preserve"> <value>Focus the mouse pointer pressing the Ctrl key twice, using a custom shortcut or shaking the mouse.</value> <comment>Mouse as in the hardware peripheral. Key as in a keyboard key</comment> </data> <data name="Oobe_MouseUtils_MouseHighlighter.Text" xml:space="preserve"> <value>Mouse Highlighter</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MouseHighlighter_Description.Text" xml:space="preserve"> <value>Use a keyboard shortcut to highlight left and right mouse clicks.</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MousePointerCrosshairs.Text" xml:space="preserve"> <value>Mouse Pointer Crosshairs</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MousePointerCrosshairs_Description.Text" xml:space="preserve"> <value>Draw crosshairs centered around the mouse pointer.</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MouseJump.Text" xml:space="preserve"> <value>Mouse Jump</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MouseJump_Description.Text" xml:space="preserve"> <value>Jump the mouse pointer quickly to anywhere on your desktop.</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Launch_Run.Content" xml:space="preserve"> <value>Launch PowerToys Run</value> </data> <data name="Launch_ShortcutGuide.Content" xml:space="preserve"> <value>Launch Shortcut Guide</value> </data> <data name="ColorPicker_ColorFormat_ToggleSwitch.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Show format in editor</value> </data> <data name="GeneralPage_Documentation.Text" xml:space="preserve"> <value>Documentation</value> </data> <data name="PowerLauncher_SearchList.PlaceholderText" xml:space="preserve"> <value>Search this list</value> </data> <data name="PowerLauncher_SearchList.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Search this list</value> </data> <data name="Awake.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="ColorPicker.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="General.SecondaryLinksHeader" xml:space="preserve"> <value>Related information</value> </data> <data name="ImageResizer.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="MouseUtils.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="PowerLauncher.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="PowerRename.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="EditTooltip.Text" xml:space="preserve"> <value>Edit</value> </data> <data name="RemoveTooltip.Text" xml:space="preserve"> <value>Remove</value> </data> <data name="Activation_Shortcut_Cancel" xml:space="preserve"> <value>Cancel</value> </data> <data name="Activation_Shortcut_Description" xml:space="preserve"> <value>Press a combination of keys to change this shortcut</value> </data> <data name="Activation_Shortcut_With_Disable_Description" xml:space="preserve"> <value>Press a combination of keys to change this shortcut. Right-click to remove the key combination, thereby deactivating the shortcut.</value> </data> <data name="Activation_Shortcut_Reset" xml:space="preserve"> <value>Reset</value> </data> <data name="Activation_Shortcut_Save" xml:space="preserve"> <value>Save</value> </data> <data name="Activation_Shortcut_Title" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="InvalidShortcut.Title" xml:space="preserve"> <value>Invalid shortcut</value> </data> <data name="InvalidShortcutWarningLabel.Text" xml:space="preserve"> <value>Only shortcuts that start with **Windows key**, **Ctrl**, **Alt** or **Shift** are valid.</value> <comment>The ** sequences are used for text formatting of the key names. Don't remove them on translation.</comment> </data> <data name="FancyZones_SpanZonesAcrossMonitors.Description" xml:space="preserve"> <value>All monitors must have the same DPI scaling and will be treated as one large combined rectangle which contains all monitors</value> </data> <data name="ImageResizer_DefaultSize_NewSizePrefix" xml:space="preserve"> <value>New size</value> <comment>First part of the default name of new sizes that can be added in PT's settings ui.</comment> </data> <data name="Awake_IntervalSettingsCard.Header" xml:space="preserve"> <value>Interval before returning to the previous awakeness state</value> </data> <data name="Awake_ExpirationSettingsExpander.Header" xml:space="preserve"> <value>End date and time</value> </data> <data name="MouseUtils.ModuleTitle" xml:space="preserve"> <value>Mouse utilities</value> </data> <data name="MouseUtils.ModuleDescription" xml:space="preserve"> <value>A collection of mouse utilities.</value> </data> <data name="MouseUtils_FindMyMouse.Header" xml:space="preserve"> <value>Find My Mouse</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_FindMyMouse.Description" xml:space="preserve"> <value>Find My Mouse highlights the position of the cursor when pressing the Ctrl key twice, using a custom shortcut or when shaking the mouse.</value> <comment>"Ctrl" is a keyboard key. "Find My Mouse" is the name of the utility</comment> </data> <data name="MouseUtils_Enable_FindMyMouse.Header" xml:space="preserve"> <value>Enable Find My Mouse</value> <comment>"Find My Mouse" is the name of the utility.</comment> </data> <data name="MouseUtils_FindMyMouse_ActivationMethod.Header" xml:space="preserve"> <value>Activation method</value> </data> <data name="MouseUtils_FindMyMouse_ActivationDoubleControlPress.Content" xml:space="preserve"> <value>Press Left Control twice</value> <comment>Left control is the physical key on the keyboard.</comment> </data> <data name="MouseUtils_FindMyMouse_ActivationShakeMouse.Content" xml:space="preserve"> <value>Shake mouse</value> <comment>Mouse is the hardware peripheral.</comment> </data> <data name="MouseUtils_FindMyMouse_ExcludedApps.Description" xml:space="preserve"> <value>Prevents module activation when an excluded application is the foreground application</value> </data> <data name="MouseUtils_FindMyMouse_ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="MouseUtils_FindMyMouse_ExcludedApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> </data> <data name="MouseUtils_Prevent_Activation_On_Game_Mode.Content" xml:space="preserve"> <value>Do not activate when Game Mode is on</value> <comment>"Game mode" is the Windows feature to prevent notification when playing a game.</comment> </data> <data name="MouseUtils_FindMyMouse_BackgroundColor.Header" xml:space="preserve"> <value>Background color</value> </data> <data name="MouseUtils_FindMyMouse_SpotlightColor.Header" xml:space="preserve"> <value>Spotlight color</value> </data> <data name="MouseUtils_FindMyMouse_OverlayOpacity.Header" xml:space="preserve"> <value>Overlay opacity (%)</value> </data> <data name="MouseUtils_FindMyMouse_SpotlightRadius.Header" xml:space="preserve"> <value>Spotlight radius (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_FindMyMouse_SpotlightInitialZoom.Header" xml:space="preserve"> <value>Spotlight initial zoom</value> </data> <data name="MouseUtils_FindMyMouse_SpotlightInitialZoom.Description" xml:space="preserve"> <value>Spotlight zoom factor at animation start</value> </data> <data name="MouseUtils_FindMyMouse_AnimationDurationMs.Header" xml:space="preserve"> <value>Animation duration (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_FindMyMouse_AnimationDurationMs.Description" xml:space="preserve"> <value>Time before the spotlight appears (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_FindMyMouse_AnimationDurationMs_Disabled.Message" xml:space="preserve"> <value>Animations are disabled by OS. See Settings &gt; Accessibility &gt; Visual effects</value> </data> <data name="MouseUtils_FindMyMouse_ShakingMinimumDistance.Header" xml:space="preserve"> <value>Shake minimum distance</value> </data> <data name="MouseUtils_FindMyMouse_ShakingMinimumDistance.Description" xml:space="preserve"> <value>The minimum distance for mouse shaking activation, for adjusting sensitivity</value> </data> <data name="MouseUtils_MouseHighlighter.Header" xml:space="preserve"> <value>Mouse Highlighter</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_MouseHighlighter.Description" xml:space="preserve"> <value>Mouse Highlighter mode will highlight mouse clicks.</value> <comment>"Mouse Highlighter" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_Enable_MouseHighlighter.Header" xml:space="preserve"> <value>Enable Mouse Highlighter</value> <comment>"Find My Mouse" is the name of the utility.</comment> </data> <data name="MouseUtils_MouseHighlighter_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MouseUtils_MouseHighlighter_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to turn on or off this mode</value> <comment>"Mouse Highlighter" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_MouseHighlighter_PrimaryButtonClickColor.Header" xml:space="preserve"> <value>Primary button highlight color</value> </data> <data name="MouseUtils_MouseHighlighter_SecondaryButtonClickColor.Header" xml:space="preserve"> <value>Secondary button highlight color</value> </data> <data name="MouseUtils_MouseHighlighter_HighlightRadius.Header" xml:space="preserve"> <value>Radius (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDelayMs.Header" xml:space="preserve"> <value>Fade delay (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDelayMs.Description" xml:space="preserve"> <value>Time before the highlight begins to fade (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDurationMs.Header" xml:space="preserve"> <value>Fade duration (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDurationMs.Description" xml:space="preserve"> <value>Duration of the disappear animation (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MousePointerCrosshairs.Header" xml:space="preserve"> <value>Mouse Pointer Crosshairs</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_MousePointerCrosshairs.Description" xml:space="preserve"> <value>Mouse Pointer Crosshairs draws crosshairs centered on the mouse pointer.</value> <comment>"Mouse Pointer Crosshairs" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_Enable_MousePointerCrosshairs.Header" xml:space="preserve"> <value>Enable Mouse Pointer Crosshairs</value> <comment>"Mouse Pointer Crosshairs" is the name of the utility.</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MouseUtils_MousePointerCrosshairs_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to show/hide the crosshairs</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsColor.Header" xml:space="preserve"> <value>Crosshairs color</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsOpacity.Header" xml:space="preserve"> <value>Crosshairs opacity (%)</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsRadius.Header" xml:space="preserve"> <value>Crosshairs center radius (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsThickness.Header" xml:space="preserve"> <value>Crosshairs thickness (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsBorderColor.Header" xml:space="preserve"> <value>Crosshairs border color</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsBorderSize.Header" xml:space="preserve"> <value>Crosshairs border size (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_IsCrosshairsFixedLengthEnabled.Header" xml:space="preserve"> <value>Fix crosshairs length</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsFixedLength.Header" xml:space="preserve"> <value>Crosshairs fixed length (px)</value> <comment>px = pixels</comment> </data> <data name="FancyZones_Radio_Custom_Colors.Content" xml:space="preserve"> <value>Custom colors</value> </data> <data name="FancyZones_Radio_Default_Theme.Content" xml:space="preserve"> <value>Windows default</value> </data> <data name="ColorModeHeader.Header" xml:space="preserve"> <value>App theme</value> </data> <data name="FancyZones_Zone_Appearance.Description" xml:space="preserve"> <value>Customize the way zones look</value> </data> <data name="FancyZones_Zone_Appearance.Header" xml:space="preserve"> <value>Zone appearance</value> </data> <data name="VideoConference_DeprecationWarning.Title" xml:space="preserve"> <value>VCM is moving into legacy mode (maintenance only).</value> </data> <data name="VideoConference_DeprecationWarningButton.Content" xml:space="preserve"> <value>Learn more</value> </data> <data name="VideoConference_RunAsAdminRequired.Title" xml:space="preserve"> <value>You need to run as administrator to modify these settings.</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_GCODE.Header" xml:space="preserve"> <value>Geometric Code</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_GCODE.Description" xml:space="preserve"> <value>Only .gcode files with embedded thumbnails are supported</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_GCODE.Header" xml:space="preserve"> <value>Geometric Code</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_GCODE.Description" xml:space="preserve"> <value>Only .gcode files with embedded thumbnails are supported</value> </data> <data name="FancyZones_NumberColor.Header" xml:space="preserve"> <value>Number color</value> </data> <data name="FancyZones_ShowZoneNumberCheckBoxControl.Content" xml:space="preserve"> <value>Show zone number</value> </data> <data name="ToggleSwitch.OffContent" xml:space="preserve"> <value>Off</value> <comment>The state of a ToggleSwitch when it's off</comment> </data> <data name="ToggleSwitch.OnContent" xml:space="preserve"> <value>On</value> <comment>The state of a ToggleSwitch when it's on</comment> </data> <data name="CropAndLock.ModuleDescription" xml:space="preserve"> <value>Crop And Lock allows you to crop a current application into a smaller window or just create a thumbnail. Focus the target window and press the shortcut to start cropping.</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="CropAndLock.ModuleTitle" xml:space="preserve"> <value>Crop And Lock </value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="CropAndLock_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="CropAndLock_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="Shell_CropAndLock.Content" xml:space="preserve"> <value>Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="LearnMore_CropAndLock.Text" xml:space="preserve"> <value>Learn more about Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="CropAndLock_ReparentActivation_Shortcut.Header" xml:space="preserve"> <value>Reparent shortcut</value> </data> <data name="CropAndLock_ReparentActivation_Shortcut.Description" xml:space="preserve"> <value>Shortcut to crop an application's window into a cropped window. This is experimental and can cause issues with some applications, since the cropped window will contain the original application window.</value> </data> <data name="CropAndLock_ThumbnailActivation_Shortcut.Header" xml:space="preserve"> <value>Thumbnail shortcut</value> </data> <data name="CropAndLock_ThumbnailActivation_Shortcut.Description" xml:space="preserve"> <value>Shortcut to crop and create a thumbnail of another window. The application isn't controllable through the thumbnail but it'll have less compatibility issues. </value> </data> <data name="CropAndLock.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="Oobe_CropAndLock.Title" xml:space="preserve"> <value>Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="Oobe_CropAndLock.Description" xml:space="preserve"> <value>Crop And Lock allows you to crop a current application into a smaller window or just create a thumbnail. Focus the target window and press the shortcut to start cropping.</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="Oobe_CropAndLock_HowToUse_Thumbnail.Text" xml:space="preserve"> <value>to crop and create a thumbnail of another window. The application isn't controllable through the thumbnail but it'll have less compatibility issues.</value> </data> <data name="Oobe_CropAndLock_HowToUse_Reparent.Text" xml:space="preserve"> <value>to crop an application's window into a cropped window. This is experimental and can cause issues with some applications, since the cropped window will contain the original application window.</value> </data> <data name="AlwaysOnTop.ModuleDescription" xml:space="preserve"> <value>Always On Top is a quick and easy way to pin windows on top.</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop.ModuleTitle" xml:space="preserve"> <value>Always On Top </value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="Peek_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="AlwaysOnTop_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_ExcludedApps.Description" xml:space="preserve"> <value>Excludes an application from pinning on top</value> </data> <data name="AlwaysOnTop_ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="AlwaysOnTop_ExcludedApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> </data> <data name="AlwaysOnTop_FrameColor.Header" xml:space="preserve"> <value>Color</value> </data> <data name="AlwaysOnTop_FrameEnabled.Header" xml:space="preserve"> <value>Show a border around the pinned window</value> </data> <data name="AlwaysOnTop_FrameThickness.Header" xml:space="preserve"> <value>Thickness (px)</value> <comment>px = pixels</comment> </data> <data name="AlwaysOnTop_Behavior_GroupSettings.Header" xml:space="preserve"> <value>Appearance &amp; behavior</value> </data> <data name="Shell_AlwaysOnTop.Content" xml:space="preserve"> <value>Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_GameMode.Content" xml:space="preserve"> <value>Do not activate when Game Mode is on</value> <comment>Game Mode is a Windows feature</comment> </data> <data name="AlwaysOnTop_SoundTitle.Header" xml:space="preserve"> <value>Sound</value> </data> <data name="AlwaysOnTop_Sound.Content" xml:space="preserve"> <value>Play a sound when pinning a window</value> </data> <data name="AlwaysOnTop_Behavior.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="LearnMore_AlwaysOnTop.Text" xml:space="preserve"> <value>Learn more about Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="AlwaysOnTop_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to pin or unpin an app window</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="Oobe_AlwaysOnTop.Title" xml:space="preserve"> <value>Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="Oobe_AlwaysOnTop.Description" xml:space="preserve"> <value>Always On Top improves your multitasking workflow by pinning an application window so it's always in front - even when focus changes to another window after that.</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="Oobe_AlwaysOnTop_HowToUse.Text" xml:space="preserve"> <value>to pin or unpin the selected window so it's always on top of all other windows.</value> </data> <data name="Oobe_AlwaysOnTop_TipsAndTricks.Text" xml:space="preserve"> <value>You can tweak the visual outline of the pinned windows in PowerToys settings.</value> </data> <data name="AlwaysOnTop_FrameColor_Mode.Header" xml:space="preserve"> <value>Color mode</value> </data> <data name="AlwaysOnTop_Radio_Custom_Color.Content" xml:space="preserve"> <value>Custom color</value> </data> <data name="AlwaysOnTop_Radio_Windows_Default.Content" xml:space="preserve"> <value>Windows default</value> </data> <data name="FileExplorerPreview.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Monaco_Wrap_Text.Content" xml:space="preserve"> <value>Wrap text</value> <comment>Feature on or off</comment> </data> <data name="FancyZones_AllowPopupWindowSnap.Description" xml:space="preserve"> <value>This setting can affect all popup windows including notifications</value> </data> <data name="FancyZones_AllowPopupWindowSnap.Header" xml:space="preserve"> <value>Allow popup windows snapping</value> </data> <data name="FancyZones_AllowChildWindowSnap.Content" xml:space="preserve"> <value>Allow child windows snapping</value> </data> <data name="Shell_WhatsNew.Content" xml:space="preserve"> <value>What's new</value> </data> <data name="Shell_Peek.Content" xml:space="preserve"> <value>Peek</value> <comment>Product name: Navigation view item name for Peek</comment> </data> <data name="Peek.ModuleTitle" xml:space="preserve"> <value>Peek</value> </data> <data name="Peek.ModuleDescription" xml:space="preserve"> <value>Peek is a quick and easy way to preview files. Select a file in File Explorer and press the shortcut to open the file preview.</value> </data> <data name="Peek_EnablePeek.Header" xml:space="preserve"> <value>Enable Peek</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="Peek_BehaviorHeader.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="Peek_AlwaysRunNotElevated.Header" xml:space="preserve"> <value>Always run not elevated, even when PowerToys is elevated</value> </data> <data name="Peek_AlwaysRunNotElevated.Description" xml:space="preserve"> <value>Tries to run Peek without elevated permissions, to fix access to network shares. You need to disable and re-enable Peek for changes to this value to take effect.</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="Peek_CloseAfterLosingFocus.Header" xml:space="preserve"> <value>Automatically close the Peek window after it loses focus</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="FancyZones_DisableRoundCornersOnWindowSnap.Content" xml:space="preserve"> <value>Disable round corners when window is snapped</value> </data> <data name="PowerLauncher_SearchQueryTuningEnabled.Description" xml:space="preserve"> <value>Fine tune results ordering</value> </data> <data name="PowerLauncher_SearchQueryTuningEnabled.Header" xml:space="preserve"> <value>Results order tuning</value> </data> <data name="PowerLauncher_SearchClickedItemWeight.Description" xml:space="preserve"> <value>Use a higher number to get selected results to rise faster. The default is 5, 0 to disable.</value> </data> <data name="PowerLauncher_SearchClickedItemWeight.Header" xml:space="preserve"> <value>Selected item weight</value> </data> <data name="PowerLauncher_WaitForSlowResults.Description" xml:space="preserve"> <value>Selecting this can help preselect the top, more relevant result, but at the risk of jumpiness</value> </data> <data name="PowerLauncher_WaitForSlowResults.Header" xml:space="preserve"> <value>Wait on slower plugin results before selecting top item in results</value> </data> <data name="PowerLauncher_PluginWeightBoost.Description" xml:space="preserve"> <value>Use a higher number to have this plugin's result show higher in the global results. Default is 0.</value> </data> <data name="PowerLauncher_PluginWeightBoost.Header" xml:space="preserve"> <value>Global sort order score modifier</value> </data> <data name="AlwaysOnTop_RoundCorners.Content" xml:space="preserve"> <value>Enable round corners</value> </data> <data name="LearnMore_QuickAccent.Text" xml:space="preserve"> <value>Learn more about Quick Accent</value> <comment>Quick Accent is a product name, do not loc</comment> </data> <data name="QuickAccent_EnableQuickAccent.Header" xml:space="preserve"> <value>Enable Quick Accent</value> </data> <data name="Shell_QuickAccent.Content" xml:space="preserve"> <value>Quick Accent</value> </data> <data name="QuickAccent.ModuleDescription" xml:space="preserve"> <value>Quick Accent is an alternative way to type accented characters, useful for when a keyboard doesn't support that specific accent. Activate by holding the key for the character you want to add an accent to, then press the activation key (space, left or right arrow keys) and an overlay to select accented characters will appear!</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent.ModuleTitle" xml:space="preserve"> <value>Quick Accent</value> </data> <data name="QuickAccent.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> </data> <data name="Oobe_QuickAccent.Description" xml:space="preserve"> <value>Quick Accent is an easy way to write letters with accents, like on a smartphone.</value> </data> <data name="Oobe_QuickAccent.Title" xml:space="preserve"> <value>Quick Accent</value> </data> <data name="Oobe_QuickAccent_HowToUse.Text" xml:space="preserve"> <value>Open **PowerToys Settings** and enable Quick Accent. While holding the key for the character you want to add an accent to, press the Activation Key and an overlay to select the accented character will appear.</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="QuickAccent_Activation_Shortcut.Header" xml:space="preserve"> <value>Activation key</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent_Activation_Shortcut.Description" xml:space="preserve"> <value>Press this key after holding down the target letter</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent_Activation_Key_Arrows.Content" xml:space="preserve"> <value>Left/Right Arrow</value> <comment>Left/Right arrow keyboard keys</comment> </data> <data name="QuickAccent_Activation_Key_Space.Content" xml:space="preserve"> <value>Space</value> <comment>Space is the space keyboard key</comment> </data> <data name="QuickAccent_Activation_Key_Either.Content" xml:space="preserve"> <value>Left, Right or Space</value> <comment>All are keys on a keyboard</comment> </data> <data name="QuickAccent_Toolbar.Header" xml:space="preserve"> <value>Toolbar</value> </data> <data name="QuickAccent_ToolbarPosition.Header" xml:space="preserve"> <value>Toolbar position</value> </data> <data name="QuickAccent_ToolbarPosition_TopCenter.Content" xml:space="preserve"> <value>Top center</value> </data> <data name="QuickAccent_ToolbarPosition_TopLeftCorner.Content" xml:space="preserve"> <value>Top left corner</value> </data> <data name="QuickAccent_ToolbarPosition_TopRightCorner.Content" xml:space="preserve"> <value>Top right corner</value> </data> <data name="QuickAccent_ToolbarPosition_BottomLeftCorner.Content" xml:space="preserve"> <value>Bottom left corner</value> </data> <data name="QuickAccent_ToolbarPosition_BottomCenter.Content" xml:space="preserve"> <value>Bottom center</value> </data> <data name="QuickAccent_ToolbarPosition_BottomRightCorner.Content" xml:space="preserve"> <value>Bottom right corner</value> </data> <data name="QuickAccent_ToolbarPosition_Center.Content" xml:space="preserve"> <value>Center</value> </data> <data name="QuickAccent_ToolbarPosition_Left.Content" xml:space="preserve"> <value>Left</value> </data> <data name="QuickAccent_ToolbarPosition_Right.Content" xml:space="preserve"> <value>Right</value> </data> <data name="QuickAccent_Behavior.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="QuickAccent_InputTimeMs.Header" xml:space="preserve"> <value>Input delay (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="QuickAccent_InputTimeMs.Description" xml:space="preserve"> <value>Hold the key down for this much time to make the accent menu appear (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="QuickAccent_ExcludedApps.Description" xml:space="preserve"> <value>Prevents module activation if a foreground application is excluded. Add one application name per line.</value> </data> <data name="QuickAccent_ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="QuickAccent_ExcludedApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: Teams.exe</value> </data> <data name="LearnMore_TextExtractor.Text" xml:space="preserve"> <value>Learn more about Text Extractor</value> </data> <data name="TextExtractor_Cancel" xml:space="preserve"> <value>cancel</value> </data> <data name="General_SettingsBackupAndRestore_NothingToBackup" xml:space="preserve"> <value>A new backup was not created because no settings have been changed since last backup.</value> </data> <data name="General_SettingsBackupAndRestore_NoBackupFound" xml:space="preserve"> <value>No backup found</value> </data> <data name="General_SettingsBackupAndRestore_FailedToParseTime" xml:space="preserve"> <value>Failed to parse time</value> </data> <data name="General_SettingsBackupAndRestore_UnknownBackupTime" xml:space="preserve"> <value>Unknown</value> </data> <data name="General_SettingsBackupAndRestore_UnknownBackupSource" xml:space="preserve"> <value>Unknown</value> </data> <data name="General_SettingsBackupAndRestore_ThisMachine" xml:space="preserve"> <value>This computer</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsMatch" xml:space="preserve"> <value>Current settings match</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsStatusAt" xml:space="preserve"> <value>at</value> <comment>E.g., Food was served 'at' noon.</comment> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsDiffer" xml:space="preserve"> <value>Current settings differ</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsNoChecked" xml:space="preserve"> <value>Checking...</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsUnknown" xml:space="preserve"> <value>Unknown</value> </data> <data name="General_SettingsBackupAndRestore_NeverRestored" xml:space="preserve"> <value>Never restored</value> </data> <data name="General_SettingsBackupAndRestore_NothingToRestore" xml:space="preserve"> <value>Nothing to restore.</value> </data> <data name="General_SettingsBackupAndRestore_NoSettingsFilesFound" xml:space="preserve"> <value>No settings files found.</value> </data> <data name="General_SettingsBackupAndRestore_BackupError" xml:space="preserve"> <value>There was an error. Try another backup location.</value> </data> <data name="General_SettingsBackupAndRestore_SettingsFormatError" xml:space="preserve"> <value>There was an error in the settings format. Please check the settings file:</value> </data> <data name="General_SettingsBackupAndRestore_BackupComplete" xml:space="preserve"> <value>Backup completed.</value> </data> <data name="General_SettingsBackupAndRestore_NoBackupSyncPath" xml:space="preserve"> <value>No backup location selected.</value> </data> <data name="General_SettingsBackupAndRestore_NoBackupsFound" xml:space="preserve"> <value>No backups found to restore.</value> </data> <data name="General_SettingsBackupAndRestore_InvalidBackupLocation" xml:space="preserve"> <value>Invalid backup location.</value> </data> <data name="TextExtractor.ModuleDescription" xml:space="preserve"> <value>Text Extractor is a convenient way to copy text from anywhere on screen</value> </data> <data name="TextExtractor.ModuleTitle" xml:space="preserve"> <value>Text Extractor</value> </data> <data name="TextExtractor_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Text Extractor</value> </data> <data name="TextExtractor_SupportedLanguages.Title" xml:space="preserve"> <value>Text Extractor can only recognize languages that have the OCR pack installed.</value> </data> <data name="TextExtractor_SupportedLanguages_Link.Content" xml:space="preserve"> <value>Learn more about supported languages</value> </data> <data name="Shell_TextExtractor.Content" xml:space="preserve"> <value>Text Extractor</value> </data> <data name="Launch_TextExtractor.Content" xml:space="preserve"> <value>Launch Text Extractor</value> </data> <data name="Oobe_TextExtractor.Title" xml:space="preserve"> <value>Text Extractor</value> </data> <data name="Oobe_TextExtractor_HowToUse.Text" xml:space="preserve"> <value>to open Text Extractor and then selecting a region to copy the text from.</value> </data> <data name="Oobe_TextExtractor_TipsAndTricks.Text" xml:space="preserve"> <value>Hold the shift key to move the selection region around.</value> </data> <data name="TextExtractor.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> </data> <data name="Oobe_TextExtractor.Description" xml:space="preserve"> <value>Text Extractor works like Snipping Tool, but copies the text out of the selected region using OCR and puts it on the clipboard.</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Monaco_Try_Format.Description" xml:space="preserve"> <value>Applies to json and xml. Files remain unchanged.</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Monaco_Try_Format.Header" xml:space="preserve"> <value>Try to format the source for preview</value> </data> <data name="Run_ConflictingKeywordInfo.Title" xml:space="preserve"> <value>Some characters and phrases may conflict with global queries of other plugins if you use them as activation command.</value> </data> <data name="Run_ConflictingKeywordInfo_Link.Content" xml:space="preserve"> <value>Learn more about conflicting activation commands</value> </data> <data name="MeasureTool_ContinuousCapture_Information.Title" xml:space="preserve"> <value>The continuous capture mode will consume more resources when in use. Also, measurements will be excluded from screenshots and screen capture.</value> <comment>pointer as in mouse pointer. Resources refer to things like CPU, GPU, RAM</comment> </data> <data name="QuickAccent_Description_Indicator.Header" xml:space="preserve"> <value>Show the Unicode code and name of the currently selected character</value> </data> <data name="QuickAccent_SortByUsageFrequency_Indicator.Header" xml:space="preserve"> <value>Sort characters by usage frequency</value> </data> <data name="QuickAccent_SortByUsageFrequency_Indicator.Description" xml:space="preserve"> <value>Track characters usage frequency and sort them accordingly</value> </data> <data name="QuickAccent_StartSelectionFromTheLeft_Indicator.Header" xml:space="preserve"> <value>Start selection from the left</value> </data> <data name="QuickAccent_StartSelectionFromTheLeft_Indicator.Description" xml:space="preserve"> <value>Start selection from the leftmost character for all activation keys, including left and right arrows</value> </data> <data name="QuickAccent_DisableFullscreen.Header" xml:space="preserve"> <value>Disable when Game Mode is On</value> </data> <data name="QuickAccent_Language.Header" xml:space="preserve"> <value>Characters</value> </data> <data name="QuickAccent_SelectedLanguage.Header" xml:space="preserve"> <value>Choose a character set</value> </data> <data name="QuickAccent_SelectedLanguage.Description" xml:space="preserve"> <value>Show only accented characters common to the selected set</value> </data> <data name="QuickAccent_SelectedLanguage_All.Content" xml:space="preserve"> <value>All available</value> </data> <data name="QuickAccent_SelectedLanguage_Catalan.Content" xml:space="preserve"> <value>Catalan</value> </data> <data name="QuickAccent_SelectedLanguage_Currency.Content" xml:space="preserve"> <value>Currency</value> </data> <data name="QuickAccent_SelectedLanguage_Croatian.Content" xml:space="preserve"> <value>Croatian</value> </data> <data name="QuickAccent_SelectedLanguage_Czech.Content" xml:space="preserve"> <value>Czech</value> </data> <data name="QuickAccent_SelectedLanguage_Gaeilge.Content" xml:space="preserve"> <value>Gaeilge</value> <comment>Gaelic language spoken in Ireland</comment> </data> <data name="QuickAccent_SelectedLanguage_Gaidhlig.Content" xml:space="preserve"> <value>Gàidhlig</value> <comment>Scottish Gaelic</comment> </data> <data name="QuickAccent_SelectedLanguage_German.Content" xml:space="preserve"> <value>German</value> </data> <data name="QuickAccent_SelectedLanguage_Hebrew.Content" xml:space="preserve"> <value>Hebrew</value> </data> <data name="QuickAccent_SelectedLanguage_French.Content" xml:space="preserve"> <value>French</value> </data> <data name="QuickAccent_SelectedLanguage_Estonian.Content" xml:space="preserve"> <value>Estonian</value> </data> <data name="QuickAccent_SelectedLanguage_Lithuanian.Content" xml:space="preserve"> <value>Lithuanian</value> </data> <data name="QuickAccent_SelectedLanguage_Macedonian.Content" xml:space="preserve"> <value>Macedonian</value> </data> <data name="QuickAccent_SelectedLanguage_Maori.Content" xml:space="preserve"> <value>Maori</value> </data> <data name="QuickAccent_SelectedLanguage_Dutch.Content" xml:space="preserve"> <value>Dutch</value> </data> <data name="QuickAccent_SelectedLanguage_Norwegian.Content" xml:space="preserve"> <value>Norwegian</value> </data> <data name="QuickAccent_SelectedLanguage_Pinyin.Content" xml:space="preserve"> <value>Pinyin</value> </data> <data name="QuickAccent_SelectedLanguage_Polish.Content" xml:space="preserve"> <value>Polish</value> </data> <data name="QuickAccent_SelectedLanguage_Portuguese.Content" xml:space="preserve"> <value>Portuguese</value> </data> <data name="QuickAccent_SelectedLanguage_Slovakian.Content" xml:space="preserve"> <value>Slovakian</value> </data> <data name="QuickAccent_SelectedLanguage_Spanish.Content" xml:space="preserve"> <value>Spanish</value> </data> <data name="QuickAccent_SelectedLanguage_Swedish.Content" xml:space="preserve"> <value>Swedish</value> </data> <data name="QuickAccent_SelectedLanguage_Turkish.Content" xml:space="preserve"> <value>Turkish</value> </data> <data name="QuickAccent_SelectedLanguage_Icelandic.Content" xml:space="preserve"> <value>Icelandic</value> </data> <data name="QuickAccent_SelectedLanguage_Romanian.Content" xml:space="preserve"> <value>Romanian</value> </data> <data name="QuickAccent_SelectedLanguage_Serbian.Content" xml:space="preserve"> <value>Serbian</value> </data> <data name="QuickAccent_SelectedLanguage_Hungarian.Content" xml:space="preserve"> <value>Hungarian</value> </data> <data name="QuickAccent_SelectedLanguage_Italian.Content" xml:space="preserve"> <value>Italian</value> </data> <data name="QuickAccent_SelectedLanguage_Kurdish.Content" xml:space="preserve"> <value>Kurdish</value> </data> <data name="QuickAccent_SelectedLanguage_Welsh.Content" xml:space="preserve"> <value>Welsh</value> </data> <data name="Hosts.ModuleDescription" xml:space="preserve"> <value>Quick and simple utility for managing hosts file.</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Hosts.ModuleTitle" xml:space="preserve"> <value>Hosts File Editor</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Shell_Hosts.Content" xml:space="preserve"> <value>Hosts File Editor</value> <comment>Products name: Navigation view item name for Hosts File Editor</comment> </data> <data name="Hosts_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Hosts_Toggle_ShowStartupWarning.Header" xml:space="preserve"> <value>Show a warning at startup</value> </data> <data name="Hosts_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="Hosts_LaunchButtonControl.Description" xml:space="preserve"> <value>Manage your hosts file</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Hosts_LaunchButtonControl.Header" xml:space="preserve"> <value>Launch Host File Editor</value> <comment>"Host File Editor" is a product name</comment> </data> <data name="Hosts_LaunchButton_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Launch Host File Editor</value> <comment>"Host File Editor" is a product name</comment> </data> <data name="Hosts_AdditionalLinesPosition.Header" xml:space="preserve"> <value>Position of additional content</value> </data> <data name="Hosts_AdditionalLinesPosition_Bottom.Content" xml:space="preserve"> <value>Bottom</value> </data> <data name="Hosts_AdditionalLinesPosition_Top.Content" xml:space="preserve"> <value>Top</value> </data> <data name="Hosts_Behavior_GroupSettings.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="Launch_Hosts.Content" xml:space="preserve"> <value>Launch Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="LearnMore_Hosts.Text" xml:space="preserve"> <value>Learn more about Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Oobe_Hosts.Description" xml:space="preserve"> <value>Hosts File Editor is a quick and simple utility for managing hosts file.</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Oobe_Hosts.Title" xml:space="preserve"> <value>Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Hosts_Toggle_LaunchAdministrator.Description" xml:space="preserve"> <value>Needs to be launched as administrator in order to make changes to the hosts file</value> </data> <data name="Hosts_Toggle_LaunchAdministrator.Header" xml:space="preserve"> <value>Launch as administrator</value> </data> <data name="ShortcutGuide_PressTimeForTaskbarIconShortcuts.Header" xml:space="preserve"> <value>Press duration before showing taskbar icon shortcuts (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="FileLocksmith.ModuleDescription" xml:space="preserve"> <value>A Windows shell extension to find out which processes are using the selected files and directories.</value> </data> <data name="FileLocksmith.ModuleTitle" xml:space="preserve"> <value>File Locksmith</value> </data> <data name="Shell_FileLocksmith.Content" xml:space="preserve"> <value>File Locksmith</value> <comment>Product name: Navigation view item name for FileLocksmith</comment> </data> <data name="FileLocksmith_Enable_FileLocksmith.Header" xml:space="preserve"> <value>Enable File Locksmith</value> <comment>File Locksmith is the name of the utility</comment> </data> <data name="FileLocksmith_Toggle_StandardContextMenu.Content" xml:space="preserve"> <value>Default and extended context menu</value> </data> <data name="FileLocksmith_Toggle_ExtendedContextMenu.Content" xml:space="preserve"> <value>Extended context menu only</value> </data> <data name="FileLocksmith_Toggle_ContextMenu.Header" xml:space="preserve"> <value>Show File Locksmith in</value> </data> <data name="FileLocksmith_ShellIntegration.Header" xml:space="preserve"> <value>Shell integration</value> <comment>This refers to directly integrating in with Windows</comment> </data> <data name="GPO_IsSettingForced.Title" xml:space="preserve"> <value>The system administrator is forcing this setting.</value> </data> <data name="Hosts_AdditionalLinesPosition.Description" xml:space="preserve"> <value>Additional content includes the file header and lines that can't parse</value> </data> <data name="TextExtractor_Languages.Header" xml:space="preserve"> <value>Preferred language</value> </data> <data name="Alternate_OOBE_AlwaysOnTop_Description.Text" xml:space="preserve"> <value>Pin a window so that:</value> </data> <data name="Alternate_OOBE_AlwaysOnTop_Title.Text" xml:space="preserve"> <value>Always On Top</value> </data> <data name="Alternate_OOBE_ColorPicker_Description.Text" xml:space="preserve"> <value>To pick a color:</value> </data> <data name="Alternate_OOBE_ColorPicker_Title.Text" xml:space="preserve"> <value>Color Picker</value> </data> <data name="Alternate_OOBE_Description.Text" xml:space="preserve"> <value>Here are a few shortcuts to get you started:</value> </data> <data name="Alternate_OOBE_FancyZones_Description.Text" xml:space="preserve"> <value>To open the FancyZones editor, press:</value> </data> <data name="Alternate_OOBE_FancyZones_Title.Text" xml:space="preserve"> <value>FancyZones</value> </data> <data name="Alternate_OOBE_Run_Description.Text" xml:space="preserve"> <value>Get access to your files and more:</value> </data> <data name="Alternate_OOBE_Run_Title.Text" xml:space="preserve"> <value>PowerToys Run</value> </data> <data name="General_Experimentation.Header" xml:space="preserve"> <value>Experimentation</value> </data> <data name="GeneralPage_EnableExperimentation.Description" xml:space="preserve"> <value>Note: Only Windows Insider builds may be selected for experimentation</value> </data> <data name="GeneralPage_EnableExperimentation.Header" xml:space="preserve"> <value>Allow experimentation with new features</value> </data> <data name="GPO_ExperimentationIsDisallowed.Title" xml:space="preserve"> <value>The system administrator has disabled experimentation.</value> </data> <data name="Shell_PastePlain.Content" xml:space="preserve"> <value>Paste As Plain Text</value> <comment>Product name: Navigation view item name for Paste as Plain Text</comment> </data> <data name="PastePlain.ModuleDescription" xml:space="preserve"> <value>Paste As Plain Text is a quick shortcut for pasting the text contents of your clipboard without formatting. Note: the formatted text in the clipboard is replaced with the unformatted text.</value> </data> <data name="PastePlain.ModuleTitle" xml:space="preserve"> <value>Paste As Plain Text</value> </data> <data name="PastePlain_Cancel" xml:space="preserve"> <value>cancel</value> </data> <data name="PastePlain_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Paste As Plain Text</value> </data> <data name="Oobe_PastePlain.Description" xml:space="preserve"> <value>Paste As Plain Text strips rich formatting from your clipboard data and pastes it as non-formatted text.</value> </data> <data name="Oobe_PastePlain.Title" xml:space="preserve"> <value>Paste As Plain Text</value> </data> <data name="Oobe_PastePlain_HowToUse.Text" xml:space="preserve"> <value>to paste your clipboard data as plain text. Note: this will replace the formatted text in your clipboard with the plain text.</value> </data> <data name="AllAppsTxt.Text" xml:space="preserve"> <value>All apps</value> </data> <data name="BackBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Back</value> </data> <data name="BackLabel.Text" xml:space="preserve"> <value>Back</value> </data> <data name="BugReportBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Bug report</value> </data> <data name="BugReportTooltip.Text" xml:space="preserve"> <value>Bug report</value> </data> <data name="DocsBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Documentation</value> </data> <data name="DocsTooltip.Text" xml:space="preserve"> <value>Documentation</value> </data> <data name="FZEditorString" xml:space="preserve"> <value>FancyZones Editor</value> <comment>Do not localize this string</comment> </data> <data name="MoreBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>More</value> </data> <data name="MoreLabel.Text" xml:space="preserve"> <value>More</value> </data> <data name="SettingsBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Settings</value> </data> <data name="SettingsTooltip.Text" xml:space="preserve"> <value>Settings</value> </data> <data name="ShortcutsTxt.Text" xml:space="preserve"> <value>Shortcuts</value> </data> <data name="UpdateAvailable.Title" xml:space="preserve"> <value>Update available</value> </data> <data name="FileExplorerPreview_Toggle_Monaco_Max_File_Size.Header" xml:space="preserve"> <value>Maximum file size to preview</value> <comment>Size refers to the disk space used by a file</comment> </data> <data name="FileExplorerPreview_Toggle_Monaco_Max_File_Size.Description" xml:space="preserve"> <value>The maximum size, in kilobytes, for files to be displayed. This is a safety mechanism to prevent loading large files into RAM.</value> <comment>"RAM" refers to random access memory; "size" refers to disk space; "bytes" refer to the measurement unit</comment> </data> <data name="RegistryPreview.ModuleDescription" xml:space="preserve"> <value>A quick little utility to visualize and edit complex Windows Registry files.</value> </data> <data name="RegistryPreview.ModuleTitle" xml:space="preserve"> <value>Registry Preview</value> </data> <data name="Shell_RegistryPreview.Content" xml:space="preserve"> <value>Registry Preview</value> <comment>Product name: Navigation view item name for Registry Preview</comment> </data> <data name="RegistryPreview_Enable_RegistryPreview.Header" xml:space="preserve"> <value>Enable Registry Preview</value> <comment>Registry Preview is the name of the utility</comment> </data> <data name="Oobe_RegistryPreview_HowToUse.Text" xml:space="preserve"> <value>In File Explorer, right-click a .REG file and select **Preview** from the context menu.</value> </data> <data name="Oobe_RegistryPreview_TipsAndTricks.Text" xml:space="preserve"> <value>You can preview or edit Registry files in File Explorer or by opening the app from the PowerToys launcher.</value> </data> <data name="Oobe_RegistryPreview.Description" xml:space="preserve"> <value>Registry Preview is a quick little utility to visualize and edit complex Windows Registry files.</value> </data> <data name="Oobe_RegistryPreview.Title" xml:space="preserve"> <value>Registry Preview</value> <comment>Do not localize this string</comment> </data> <data name="LearnMore_RegistryPreview.Text" xml:space="preserve"> <value>Learn more about Registry Preview</value> <comment>Registry Preview is a product name, do not loc</comment> </data> <data name="Launch_RegistryPreview.Content" xml:space="preserve"> <value>Launch Registry Preview</value> <comment>"Registry Preview" is the name of the utility</comment> </data> <data name="MouseUtils_MouseJump.Description" xml:space="preserve"> <value>Quickly move the mouse pointer long distances.</value> <comment>"Mouse Jump" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_MouseJump.Header" xml:space="preserve"> <value>Mouse Jump</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_MouseJump_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to turn on or off this mode</value> </data> <data name="MouseUtils_MouseJump_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MouseUtils_Enable_MouseJump.Header" xml:space="preserve"> <value>Enable Mouse Jump</value> <comment>"Mouse Jump" is the name of the utility.</comment> </data> <data name="GPO_AutoDownloadUpdatesIsDisabled.Title" xml:space="preserve"> <value>The system administrator has disabled the automatic download of updates.</value> </data> <data name="Hosts_Toggle_LoopbackDuplicates.Description" xml:space="preserve"> <value>127.0.0.1, ::1, ...</value> <comment>"127.0.0.1 and ::1" are well known loopback addresses, do not loc</comment> </data> <data name="Hosts_Toggle_LoopbackDuplicates.Header" xml:space="preserve"> <value>Consider loopback addresses as duplicates</value> </data> <data name="RegistryPreview_Launch_GroupSettings.Header" xml:space="preserve"> <value>Launch</value> </data> <data name="RegistryPreview_LaunchButton_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Launch Registry Preview</value> </data> <data name="RegistryPreview_LaunchButtonControl.Header" xml:space="preserve"> <value>Launch Registry Preview</value> </data> <data name="RegistryPreview_DefaultRegApp.Header" xml:space="preserve"> <value>Default app</value> </data> <data name="RegistryPreview_DefaultRegApp.Description" xml:space="preserve"> <value>Make Registry Preview default app for opening .reg files</value> <comment>Registry Preview is app name. Do not localize.</comment> </data> <data name="PastePlain_ShortcutWarning.Title" xml:space="preserve"> <value>Using this shortcut may prevent non-text paste actions (e.g. images, files) or built-in paste plain text actions in other applications from functioning.</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize.Header" xml:space="preserve"> <value>Thumbnail Size</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Description_Prefix.Text" xml:space="preserve"> <value>Constrain thumbnail image size to a maximum of</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Description_Suffix.Text" xml:space="preserve"> <value>pixels</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Edit_Height.Header" xml:space="preserve"> <value>Maximum height (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Edit_Width.Header" xml:space="preserve"> <value>Maximum width (px)</value> <comment>px = pixels</comment> </data> <data name="Oobe_Peek.Description" xml:space="preserve"> <value>A lightning fast file preview feature for Windows.</value> </data> <data name="Oobe_Peek.Title" xml:space="preserve"> <value>Peek</value> </data> <data name="Oobe_Peek_HowToUse.Text" xml:space="preserve"> <value>to preview the file that's currently selected in File Explorer.</value> </data> <data name="MWB_PCNameLabel.PlaceholderText" xml:space="preserve"> <value>Device name</value> </data> <data name="MWB_SecurityKeyLabel.PlaceholderText" xml:space="preserve"> <value>Security key</value> </data> <data name="Hosts_Encoding.Description" xml:space="preserve"> <value>Choose the encoding of the hosts file</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Hosts_Encoding.Header" xml:space="preserve"> <value>Encoding</value> </data> <data name="Hosts_Encoding_Utf8.Content" xml:space="preserve"> <value>UTF-8</value> </data> <data name="Hosts_Encoding_Utf8Bom.Content" xml:space="preserve"> <value>UTF-8 with BOM</value> </data> <data name="MouseUtils_MouseHighlighter_AlwaysColor.Header" xml:space="preserve"> <value>Always highlight color</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsAutoHide.Content" xml:space="preserve"> <value>Automatically hide crosshairs when the mouse pointer is hidden</value> </data> <data name="MouseUtils_AutoActivate.Content" xml:space="preserve"> <value>Automatically activate on utility startup</value> </data> <data name="Run_FindMorePlugins.Text" xml:space="preserve"> <value>Find more plugins</value> </data> <data name="Run_PluginUseFindMorePlugins.Content" xml:space="preserve"> <value>Find more plugins</value> </data> <data name="Run_SomePluginsAreGpoManaged.Title" xml:space="preserve"> <value>The system administrator is managing the enabled state of some plugins.</value> </data> <data name="AlwaysOnTop_FrameOpacity.Header" xml:space="preserve"> <value>Opacity (%)</value> </data> <data name="MouseUtils_FindMyMouse_ActivationCustomizedShortcut.Content" xml:space="preserve"> <value>Custom shortcut</value> </data> <data name="MouseUtils_FindMyMouse_ActivationDoubleRightControlPress.Content" xml:space="preserve"> <value>Press Right Control twice</value> <comment>Right control is the physical key on the keyboard.</comment> </data> <data name="MouseUtils_FindMyMouse_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to turn on or off this mode</value> </data> <data name="MouseUtils_FindMyMouse_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="SettingsWindow_AdminTitle" xml:space="preserve"> <value>Administrator: PowerToys Settings</value> <comment>Title of the settings window when running as administrator</comment> </data> </root>
<?xml version="1.0" encoding="utf-8"?> <root> <!-- Microsoft ResX Schema Version 2.0 The primary goals of this format is to allow a simple XML format that is mostly human readable. The generation and parsing of the various data types are done through the TypeConverter classes associated with the data types. Example: ... ado.net/XML headers & schema ... <resheader name="resmimetype">text/microsoft-resx</resheader> <resheader name="version">2.0</resheader> <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader> <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader> <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data> <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data> <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64"> <value>[base64 mime encoded serialized .NET Framework object]</value> </data> <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value> <comment>This is a comment</comment> </data> There are any number of "resheader" rows that contain simple name/value pairs. Each data row contains a name, and value. The row also contains a type or mimetype. Type corresponds to a .NET class that support text/value conversion through the TypeConverter architecture. Classes that don't support this are serialized and stored with the mimetype set. The mimetype is used for serialized objects, and tells the ResXResourceReader how to depersist the object. This is currently not extensible. For a given mimetype the value must be set accordingly: Note - application/x-microsoft.net.object.binary.base64 is the format that the ResXResourceWriter will generate, however the reader can read any of the formats listed below. mimetype: application/x-microsoft.net.object.binary.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.soap.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Soap.SoapFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.bytearray.base64 value : The object must be serialized into a byte array : using a System.ComponentModel.TypeConverter : and then encoded with base64 encoding. --> <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> <xsd:import namespace="http://www.w3.org/XML/1998/namespace" /> <xsd:element name="root" msdata:IsDataSet="true"> <xsd:complexType> <xsd:choice maxOccurs="unbounded"> <xsd:element name="metadata"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" /> </xsd:sequence> <xsd:attribute name="name" use="required" type="xsd:string" /> <xsd:attribute name="type" type="xsd:string" /> <xsd:attribute name="mimetype" type="xsd:string" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="assembly"> <xsd:complexType> <xsd:attribute name="alias" type="xsd:string" /> <xsd:attribute name="name" type="xsd:string" /> </xsd:complexType> </xsd:element> <xsd:element name="data"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" /> <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="resheader"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" /> </xsd:complexType> </xsd:element> </xsd:choice> </xsd:complexType> </xsd:element> </xsd:schema> <resheader name="resmimetype"> <value>text/microsoft-resx</value> </resheader> <resheader name="version"> <value>2.0</value> </resheader> <resheader name="reader"> <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <resheader name="writer"> <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <data name="Attribution_Rooler.Text" xml:space="preserve"> <value>Inspired by Rooler</value> <comment>Rooler is a name of the tool.</comment> </data> <data name="Shell_VideoConference.Content" xml:space="preserve"> <value>Video Conference Mute</value> <comment>Navigation view item name for Video Conference</comment> </data> <data name="Shell_MeasureTool.Content" xml:space="preserve"> <value>Screen Ruler</value> <comment>Product name: Navigation view item name for Screen Ruler</comment> </data> <data name="MeasureTool.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="MeasureTool.ModuleDescription" xml:space="preserve"> <value>Screen Ruler is a quick and easy way to measure pixels on your screen.</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool.ModuleTitle" xml:space="preserve"> <value>Screen Ruler</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool_ActivationSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="MeasureTool_Settings.Header" xml:space="preserve"> <value>Behavior</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MeasureTool_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to bring up the command bar</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool_DefaultMeasureStyle.Header" xml:space="preserve"> <value>Default measure style</value> </data> <data name="MeasureTool_DefaultMeasureStyle.Description" xml:space="preserve"> <value>The utility will start having the selected style activated</value> </data> <data name="MeasureTool_DefaultMeasureStyle_None.Content" xml:space="preserve"> <value>None</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Bounds.Content" xml:space="preserve"> <value>Bounds</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Spacing.Content" xml:space="preserve"> <value>Spacing</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Horizontal_Spacing.Content" xml:space="preserve"> <value>Horizontal spacing</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Vertical_Spacing.Content" xml:space="preserve"> <value>Vertical spacing</value> </data> <data name="MeasureTool_UnitsOfMeasure.Header" xml:space="preserve"> <value>Units of measurement</value> </data> <data name="MeasureTool_UnitsOfMeasure_Pixels.Content" xml:space="preserve"> <value>Pixels</value> </data> <data name="MeasureTool_UnitsOfMeasure_Inches.Content" xml:space="preserve"> <value>Inches</value> </data> <data name="MeasureTool_UnitsOfMeasure_Centimeters.Content" xml:space="preserve"> <value>Centimeters</value> </data> <data name="MeasureTool_PixelTolerance.Header" xml:space="preserve"> <value>Pixel tolerance for edge detection</value> </data> <data name="MeasureTool_MeasureCrossColor.Header" xml:space="preserve"> <value>Line color</value> </data> <data name="MeasureTool_ContinuousCapture.Header" xml:space="preserve"> <value>Capture screen continuously during measuring</value> </data> <data name="MeasureTool_ContinuousCapture.Description" xml:space="preserve"> <value>Refresh screen contexts in real-time instead of making a screenshot once</value> </data> <data name="MeasureTool_PerColorChannelEdgeDetection.Header" xml:space="preserve"> <value>Per color channel edge detection</value> </data> <data name="MeasureTool_PerColorChannelEdgeDetection.Description" xml:space="preserve"> <value>If enabled, test that all color channels are within a tolerance distance from each other. Otherwise, check that the sum of all color channels differences is smaller than the tolerance.</value> </data> <data name="MeasureTool_DrawFeetOnCross.Header" xml:space="preserve"> <value>Draw feet on cross</value> </data> <data name="MeasureTool_DrawFeetOnCross.Description" xml:space="preserve"> <value>Adds feet to the end of cross lines</value> </data> <data name="MeasureTool_EnableMeasureTool.Header" xml:space="preserve"> <value>Enable Screen Ruler</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MouseWithoutBorders_ActivationSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="MouseWithoutBorders_DeviceLayoutSettings.Header" xml:space="preserve"> <value>Device layout</value> </data> <data name="MouseWithoutBorders_DeviceLayoutSettings.Description" xml:space="preserve"> <value>Drag and drop a machine to rearrange the order.</value> </data> <data name="MouseWithoutBorders_CannotDragDropAsAdmin.Title" xml:space="preserve"> <value>It is not possible to use drag and drop while running PowerToys elevated. As a workaround, please restart PowerToys without elevation to edit the device layout.</value> </data> <data name="MouseWithoutBorders_KeySettings.Header" xml:space="preserve"> <value>Encryption key</value> </data> <data name="MouseWithoutBorders_SecurityKey.Header" xml:space="preserve"> <value>Security key</value> </data> <data name="MouseWithoutBorders_SecurityKey.Description" xml:space="preserve"> <value>The key must be auto generated in one machine by clicking on New Key, then typed in other machines</value> </data> <data name="MouseWithoutBorders_NewKey.Content" xml:space="preserve"> <value>New key</value> </data> <data name="MouseWithoutBorders_CopyMachineName.Text" xml:space="preserve"> <value>Copy to clipboard</value> </data> <data name="MouseWithoutBorders_ReconnectButton.Text" xml:space="preserve"> <value>Refresh connections</value> </data> <data name="MouseWithoutBorders_ReconnectTooltip.Text" xml:space="preserve"> <value>Reestablishes connections with other devices if you are experiencing issues.</value> </data> <data name="MouseWithoutBorders_ThisMachineNameLabel.Header" xml:space="preserve"> <value>Host name of this device</value> </data> <data name="MouseWithoutBorders_Connect.Content" xml:space="preserve"> <value>Connect</value> </data> <data name="MouseWithoutBorders_UninstallService.Header" xml:space="preserve"> <value>Uninstall service</value> </data> <data name="MouseWithoutBorders_UninstallService.Description" xml:space="preserve"> <value>Removes the service from the computer. Needs to run as administrator.</value> </data> <data name="MouseWithoutBorders_Settings.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="MouseWithoutBorders_TroubleShooting.Header" xml:space="preserve"> <value>Troubleshooting</value> </data> <data name="MouseWithoutBorders_AddFirewallRuleButtonControl.Header" xml:space="preserve"> <value>Add a firewall rule for Mouse Without Borders</value> <comment>"Mouse Without Borders" is a product name</comment> </data> <data name="MouseWithoutBorders_AddFirewallRuleButtonControl.Description" xml:space="preserve"> <value>Adding a firewall rule might help solve connection issues.</value> </data> <data name="MouseWithoutBorders_RunAsAdminText.Title" xml:space="preserve"> <value>You need to run as administrator to modify this setting.</value> </data> <data name="MouseWithoutBorders_ServiceUserUninstallWarning.Title" xml:space="preserve"> <value>If PowerToys is installed as a user, uninstalling/upgrading may require the Mouse Without Borders service to be removed manually later.</value> </data> <data name="MouseWithoutBorders_ServiceSettings.Header" xml:space="preserve"> <value>Service</value> </data> <data name="MouseWithoutBorders_Toggle_Enable.Header" xml:space="preserve"> <value>Enable Mouse Without Borders</value> </data> <data name="MouseWithoutBorders.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="MouseWithoutBorders.ModuleDescription" xml:space="preserve"> <value>Mouse Without Borders is a quick and easy way to move your cursor across multiple devices.</value> <comment>"Mouse Without Borders" is the name of the utility</comment> </data> <data name="MouseWithoutBorders.ModuleTitle" xml:space="preserve"> <value>Mouse Without Borders</value> <comment>"Mouse Without Borders" is the name of the utility</comment> </data> <data name="MouseWithoutBorders_UseService.Header" xml:space="preserve"> <value>Use Service</value> </data> <data name="MouseWithoutBorders_UseService.Description" xml:space="preserve"> <value>Runs in service mode, that allows MWB to control remote machines when they're locked. Also allows control of system and administrator applications.</value> </data> <data name="MouseWithoutBorders_MatrixOneRow.Header" xml:space="preserve"> <value>Devices in a single row</value> </data> <data name="MouseWithoutBorders_MatrixOneRow.Description" xml:space="preserve"> <value>Sets whether the devices are aligned on a single row. A two by two matrix is considered otherwise.</value> </data> <data name="MouseWithoutBorders_WrapMouse.Header" xml:space="preserve"> <value>Wrap mouse</value> </data> <data name="MouseWithoutBorders_WrapMouse.Description" xml:space="preserve"> <value>Move control back to the first machine when mouse moves past the last one.</value> </data> <data name="MouseWithoutBorders_ShareClipboard.Header" xml:space="preserve"> <value>Share clipboard</value> </data> <data name="MouseWithoutBorders_TransferFile.Header" xml:space="preserve"> <value>Transfer file</value> </data> <data name="MouseWithoutBorders_HideMouseAtScreenEdge.Header" xml:space="preserve"> <value>Hide mouse at the screen edge</value> </data> <data name="MouseWithoutBorders_DrawMouseCursor.Header" xml:space="preserve"> <value>Draw mouse cursor</value> </data> <data name="MouseWithoutBorders_ValidateRemoteMachineIP.Header" xml:space="preserve"> <value>Validate remote machine IP</value> </data> <data name="MouseWithoutBorders_SameSubnetOnly.Header" xml:space="preserve"> <value>Same subnet only</value> </data> <data name="MouseWithoutBorders_BlockScreenSaverOnOtherMachines.Header" xml:space="preserve"> <value>Block screen saver on other machines</value> </data> <data name="MouseWithoutBorders_MoveMouseRelatively.Header" xml:space="preserve"> <value>Move mouse relatively</value> </data> <data name="MouseWithoutBorders_BlockMouseAtScreenCorners.Header" xml:space="preserve"> <value>Block mouse at screen corners</value> </data> <data name="MouseWithoutBorders_ShowClipboardAndNetworkStatusMessages.Header" xml:space="preserve"> <value>Show clipboard and network status messages</value> </data> <data name="MouseWithoutBorders_ShowOriginalUI.Header" xml:space="preserve"> <value>Show the original Mouse Without Borders UI</value> </data> <data name="MouseWithoutBorders_ShowOriginalUI.Description" xml:space="preserve"> <value>This is accessible from the system tray and requires a restart.</value> </data> <data name="MouseWithoutBorders_ShareClipboard.Description" xml:space="preserve"> <value>If share clipboard stops working, Ctrl+Alt+Del then Esc may solve the problem.</value> </data> <data name="MouseWithoutBorders_TransferFile.Description" xml:space="preserve"> <value>If a file (&lt;100MB) is copied, it will be transferred to the remote machine clipboard.</value> </data> <data name="MouseWithoutBorders_HideMouseAtScreenEdge.Description" xml:space="preserve"> <value>Hide the mouse cursor at the top edge of the screen when switching to other machine. This option also steals the focus from any full-screen app to ensure the keyboard input is redirected.</value> </data> <data name="MouseWithoutBorders_DrawMouseCursor.Description" xml:space="preserve"> <value>Mouse cursor may not be visible in Windows 10 and later versions of Windows when there is no physical mouse attached.</value> </data> <data name="MouseWithoutBorders_ValidateRemoteMachineIP.Description" xml:space="preserve"> <value>Reverse DNS lookup to validate machine IP Address.</value> </data> <data name="MouseWithoutBorders_SameSubnetOnly.Description" xml:space="preserve"> <value>Only connect to machines in the same intranet NNN.NNN.*.* (only works when both machines have IPv4 enabled)</value> </data> <data name="MouseWithoutBorders_IPAddressMapping_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: MyLaptop 192.168.0.24</value> <comment>Don't translate MyLaptop</comment> </data> <data name="MouseWithoutBorders_IPAddressMapping.Header" xml:space="preserve"> <value>IP address mapping</value> </data> <data name="MouseWithoutBorders_IPAddressMapping.Description" xml:space="preserve"> <value>Resolve machine's IP address using manually entered mappings below.</value> </data> <data name="MouseWithoutBorders_BlockScreenSaverOnOtherMachines.Description" xml:space="preserve"> <value>Prevent screen saver from starting on other machines when user is actively working on this machine.</value> </data> <data name="MouseWithoutBorders_MoveMouseRelatively.Description" xml:space="preserve"> <value>Use this option when remote machine's monitor settings are different, or remote machine has multiple monitors.</value> </data> <data name="MouseWithoutBorders_BlockMouseAtScreenCorners.Description" xml:space="preserve"> <value>To avoid accident machine-switch at screen corners.</value> </data> <data name="MouseWithoutBorders_ShowClipboardAndNetworkStatusMessages.Description" xml:space="preserve"> <value>Show clipboard activities and network status in system tray notifications</value> </data> <data name="MouseWithoutBorders_KeyboardShortcuts_Group.Header" xml:space="preserve"> <value>Keyboard shortcuts</value> <comment>keyboard is the hardware peripheral</comment> </data> <data name="MouseWithoutBorders_AdvancedSettings_Group.Header" xml:space="preserve"> <value>Advanced Settings</value> </data> <data name="MouseWithoutBorders_EasyMouseOption.Header" xml:space="preserve"> <value>Easy Mouse: move between machines by moving the mouse pointer to the screen edges.</value> </data> <data name="MouseWithoutBorders_EasyMouseOption.Description" xml:space="preserve"> <value>Can also be set to move only when pressing Shift or Ctrl.</value> <comment>Shift and Ctrl are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_EasyMouseOption_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_EasyMouseOption_Enabled.Content" xml:space="preserve"> <value>Enabled</value> </data> <data name="MouseWithoutBorders_EasyMouseOption_Ctrl.Content" xml:space="preserve"> <value>Ctrl</value> <comment>This is the Ctrl keyboard key</comment> </data> <data name="MouseWithoutBorders_EasyMouseOption_Shift.Content" xml:space="preserve"> <value>Shift</value> <comment>This is the Shift keyboard key</comment> </data> <data name="MouseWithoutBorders_LockMachinesShortcut.Header" xml:space="preserve"> <value>Shortcut to lock all machines.</value> </data> <data name="MouseWithoutBorders_LockMachinesShortcut.Description" xml:space="preserve"> <value>Hit this hotkey twice to lock all machines. Note: Only the machines which have the same shortcut configured will be locked.</value> </data> <data name="MouseWithoutBorders_ToggleEasyMouseShortcut.Header" xml:space="preserve"> <value>Shortcut to toggle Easy Mouse.</value> <comment>Ctrl and Alt are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_ToggleEasyMouseShortcut.Description" xml:space="preserve"> <value>Only works if EasyMouse is set to Enabled or Disabled.</value> </data> <data name="MouseWithoutBorders_ToggleEasyMouseShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut.Header" xml:space="preserve"> <value>Shortcut to switch between machines. Ctrl+Alt+:</value> <comment>Ctrl and Alt are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut.Description" xml:space="preserve"> <value>Click on Ctrl+Alt+ the chosen option to switch between machines.</value> <comment>Ctrl and Alt are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut_F1.Content" xml:space="preserve"> <value>F1, F2, F3, F4</value> <comment>Don't localize. These are keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut_1.Content" xml:space="preserve"> <value>1, 2, 3, 4</value> <comment>Don't localize. These are keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_LockMachinesShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_ReconnectShortcut.Header" xml:space="preserve"> <value>Shortcut to try reconnecting</value> </data> <data name="MouseWithoutBorders_ReconnectShortcut.Description" xml:space="preserve"> <value>Just in case the connection is lost for any reason.</value> </data> <data name="MouseWithoutBorders_ReconnectShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut.Header" xml:space="preserve"> <value>Shortcut to switch to multiple machine mode.</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut.Description" xml:space="preserve"> <value>Allows controlling all computers at once.</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut_Ctrl3.Content" xml:space="preserve"> <value>Ctrl three times</value> <comment>This is the Ctrl keyboard key</comment> </data> <data name="VideoConference_Enable.Header" xml:space="preserve"> <value>Enable Video Conference Mute</value> </data> <data name="VideoConference.ModuleDescription" xml:space="preserve"> <value>Video Conference Mute is a quick and easy way to do a global "mute" of both your microphone and webcam. Disabling this module or closing PowerToys will unmute the microphone and camera.</value> </data> <data name="VideoConference_CameraAndMicrophoneMuteHotkeyControl_Header.Header" xml:space="preserve"> <value>Mute camera &amp; microphone</value> </data> <data name="VideoConference_MicrophoneMuteHotkeyControl_Header.Header" xml:space="preserve"> <value>Mute microphone</value> </data> <data name="VideoConference_MicrophonePushToTalkHotkeyControl_Header.Header" xml:space="preserve"> <value>Push to talk</value> </data> <data name="VideoConference_CameraMuteHotkeyControl_Header.Header" xml:space="preserve"> <value>Mute camera</value> </data> <data name="VideoConference_SelectedCamera.Header" xml:space="preserve"> <value>Selected camera</value> </data> <data name="VideoConference_SelectedMicrophone.Header" xml:space="preserve"> <value>Selected microphone</value> </data> <data name="VideoConference_PushToReverse.Header" xml:space="preserve"> <value>Push to reverse</value> </data> <data name="VideoConference_PushToReverse.Description" xml:space="preserve"> <value>If enabled, allows both push to talk and push to mute, depending on microphone state</value> </data> <data name="VideoConference_CameraOverlayImagePathHeader.Header" xml:space="preserve"> <value>Image displayed when camera is muted</value> </data> <data name="VideoConference_ToolbarPosition.Header" xml:space="preserve"> <value>Toolbar position</value> </data> <data name="VideoConference_ToolbarPosition_TopCenter.Content" xml:space="preserve"> <value>Top center</value> </data> <data name="VideoConference_ToolbarPosition_TopLeftCorner.Content" xml:space="preserve"> <value>Top left corner</value> </data> <data name="VideoConference_ToolbarPosition_TopRightCorner.Content" xml:space="preserve"> <value>Top right corner</value> </data> <data name="VideoConference_ToolbarPosition_BottomLeftCorner.Content" xml:space="preserve"> <value>Bottom left corner</value> </data> <data name="VideoConference_ToolbarPosition_BottomCenter.Content" xml:space="preserve"> <value>Bottom center</value> </data> <data name="VideoConference_ToolbarPosition_BottomRightCorner.Content" xml:space="preserve"> <value>Bottom right corner</value> </data> <data name="VideoConference_ToolbarMonitor.Header" xml:space="preserve"> <value>Show toolbar on</value> </data> <data name="VideoConference_ToolbarMonitor_Main.Content" xml:space="preserve"> <value>Main monitor</value> </data> <data name="VideoConference_ToolbarMonitor_UnderCursor.Content" xml:space="preserve"> <value>Monitor under cursor</value> </data> <data name="VideoConference_ToolbarMonitor_ActiveWindow.Content" xml:space="preserve"> <value>Active window monitor</value> </data> <data name="VideoConference_ToolbarMonitor_All.Content" xml:space="preserve"> <value>All monitors</value> </data> <data name="VideoConference_ToolbarHide.Header" xml:space="preserve"> <value>Hide toolbar</value> </data> <data name="VideoConference_ToolbarHideMuted.Content" xml:space="preserve"> <value>When both camera and microphone are muted</value> </data> <data name="VideoConference_ToolbarHideNever.Content" xml:space="preserve"> <value>Never</value> </data> <data name="VideoConference_ToolbarHideUnmuted.Content" xml:space="preserve"> <value>When both camera and microphone are unmuted</value> </data> <data name="VideoConference_ToolbarHideTimeout.Content" xml:space="preserve"> <value>After timeout</value> </data> <data name="VideoConference.ModuleTitle" xml:space="preserve"> <value>Video Conference Mute</value> </data> <data name="VideoConference_Camera.Header" xml:space="preserve"> <value>Camera</value> </data> <data name="VideoConference_Camera.Description" xml:space="preserve"> <value>To use this feature, make sure to select PowerToys VideoConference Mute as your camera source in your apps.</value> </data> <data name="VideoConference_Microphone.Header" xml:space="preserve"> <value>Microphone</value> </data> <data name="VideoConference_Toolbar.Header" xml:space="preserve"> <value>Toolbar</value> </data> <data name="VideoConference_Behavior.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="VideoConference_StartupAction.Header" xml:space="preserve"> <value>Startup action</value> </data> <data name="VideoConference_StartupActionNothing.Content" xml:space="preserve"> <value>Nothing</value> </data> <data name="VideoConference_StartupActionUnmute.Content" xml:space="preserve"> <value>Unmute</value> </data> <data name="VideoConference_StartupActionMute.Content" xml:space="preserve"> <value>Mute</value> </data> <data name="VideoConference_Shortcuts.Header" xml:space="preserve"> <value>Shortcuts</value> </data> <data name="VideoConference_CameraOverlayImageAlt.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Camera overlay image preview</value> </data> <data name="VideoConference_CameraOverlayImageBrowse.Content" xml:space="preserve"> <value>Browse</value> </data> <data name="VideoConference_CameraOverlayImageClear.Content" xml:space="preserve"> <value>Clear</value> </data> <data name="Shell_General.Content" xml:space="preserve"> <value>General</value> <comment>Navigation view item name for General</comment> </data> <data name="Shell_Awake.Content" xml:space="preserve"> <value>Awake</value> <comment>Product name: Navigation view item name for Awake</comment> </data> <data name="Shell_PowerLauncher.Content" xml:space="preserve"> <value>PowerToys Run</value> <comment>Product name: Navigation view item name for PowerToys Run</comment> </data> <data name="Shell_PowerRename.Content" xml:space="preserve"> <value>PowerRename</value> <comment>Product name: Navigation view item name for PowerRename</comment> </data> <data name="Shell_ShortcutGuide.Content" xml:space="preserve"> <value>Shortcut Guide</value> <comment>Product name: Navigation view item name for Shortcut Guide</comment> </data> <data name="Shell_PowerPreview.Content" xml:space="preserve"> <value>File Explorer add-ons</value> <comment>Product name: Navigation view item name for File Explorer. Please use File Explorer as in the context of File Explorer in Windows</comment> </data> <data name="Shell_FancyZones.Content" xml:space="preserve"> <value>FancyZones</value> <comment>Product name: Navigation view item name for FancyZones</comment> </data> <data name="Shell_ImageResizer.Content" xml:space="preserve"> <value>Image Resizer</value> <comment>Product name: Navigation view item name for Image Resizer</comment> </data> <data name="Shell_ColorPicker.Content" xml:space="preserve"> <value>Color Picker</value> <comment>Product name: Navigation view item name for Color Picker</comment> </data> <data name="Shell_KeyboardManager.Content" xml:space="preserve"> <value>Keyboard Manager</value> <comment>Product name: Navigation view item name for Keyboard Manager</comment> </data> <data name="Shell_MouseWithoutBorders.Content" xml:space="preserve"> <value>Mouse Without Borders</value> <comment>Product name: Navigation view item name for Mouse Without Borders</comment> </data> <data name="Shell_MouseUtilities.Content" xml:space="preserve"> <value>Mouse utilities</value> <comment>Product name: Navigation view item name for Mouse utilities</comment> </data> <data name="Shell_NavigationMenu_Announce_Collapse" xml:space="preserve"> <value>Navigation closed</value> <comment>Accessibility announcement when the navigation pane collapses</comment> </data> <data name="Shell_NavigationMenu_Announce_Open" xml:space="preserve"> <value>Navigation opened</value> <comment>Accessibility announcement when the navigation pane opens</comment> </data> <data name="KeyboardManager_ConfigHeader.Text" xml:space="preserve"> <value>Current configuration</value> <comment>Keyboard Manager current configuration header</comment> </data> <data name="KeyboardManager.ModuleDescription" xml:space="preserve"> <value>Reconfigure your keyboard by remapping keys and shortcuts</value> <comment>Keyboard Manager page description</comment> </data> <data name="KeyboardManager_EnableToggle.Header" xml:space="preserve"> <value>Enable Keyboard Manager</value> <comment>Keyboard Manager enable toggle header. Do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="KeyboardManager_ProfileDescription.Text" xml:space="preserve"> <value>Select the profile to display the active key remap and shortcuts</value> <comment>Keyboard Manager configuration dropdown description</comment> </data> <data name="KeyboardManager_RemapKeyboardButton.Header" xml:space="preserve"> <value>Remap a key</value> <comment>Keyboard Manager remap keyboard button content</comment> </data> <data name="KeyboardManager_Keys.Header" xml:space="preserve"> <value>Keys</value> <comment>Keyboard Manager remap keyboard header</comment> </data> <data name="KeyboardManager_RemapShortcutsButton.Header" xml:space="preserve"> <value>Remap a shortcut</value> <comment>Keyboard Manager remap shortcuts button</comment> </data> <data name="KeyboardManager_Shortcuts.Header" xml:space="preserve"> <value>Shortcuts</value> <comment>Keyboard Manager remap keyboard header</comment> </data> <data name="KeyboardManager_All_Apps_Description" xml:space="preserve"> <value>All Apps</value> <comment>Should be the same as EditShortcuts_AllApps from keyboard manager editor</comment> </data> <data name="Shortcuts.Header" xml:space="preserve"> <value>Shortcuts</value> </data> <data name="Shortcut.Header" xml:space="preserve"> <value>Shortcut</value> </data> <data name="RemapKeysList.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Current Key Remappings</value> </data> <data name="RemapShortcutsList.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Current Shortcut Remappings</value> </data> <data name="KeyboardManager_RemappedKeysListItem.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Key Remapping</value> <comment>key as in keyboard key</comment> </data> <data name="KeyboardManager_RemappedShortcutsListItem.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Shortcut Remapping</value> </data> <data name="KeyboardManager_RemappedTo.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Remapped to</value> </data> <data name="KeyboardManager_ShortcutRemappedTo.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Remapped to</value> </data> <data name="KeyboardManager_TargetApp.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>For Target Application</value> <comment>What computer application would this be for</comment> </data> <data name="KeyboardManager_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Keyboard Manager</value> <comment>do not loc, product name</comment> </data> <data name="ColorPicker.ModuleDescription" xml:space="preserve"> <value>Quick and simple system-wide color picker.</value> </data> <data name="ColorPicker_EnableColorPicker.Header" xml:space="preserve"> <value>Enable Color Picker</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="ColorPicker_ChangeCursor.Content" xml:space="preserve"> <value>Change cursor when picking a color</value> </data> <data name="PowerLauncher.ModuleDescription" xml:space="preserve"> <value>A quick launcher that has additional capabilities without sacrificing performance.</value> </data> <data name="PowerLauncher_EnablePowerLauncher.Header" xml:space="preserve"> <value>Enable PowerToys Run</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="PowerLauncher_SearchResults.Header" xml:space="preserve"> <value>Search &amp; results</value> </data> <data name="PowerLauncher_SearchResultPreference.Header" xml:space="preserve"> <value>Search result preference</value> </data> <data name="PowerLauncher_UsePinyin.Header" xml:space="preserve"> <value>Use Pinyin</value> </data> <data name="PowerLauncher_UsePinyin.Description" xml:space="preserve"> <value>Experimental: Use Pinyin on the search query. May not work for every plugin.</value> </data> <data name="PowerLauncher_SearchResultPreference_MostRecentlyUsed" xml:space="preserve"> <value>Most recently used</value> </data> <data name="PowerLauncher_SearchResultPreference_AlphabeticalOrder" xml:space="preserve"> <value>Alphabetical order</value> </data> <data name="PowerLauncher_SearchResultPreference_RunningProcessesOpenApplications" xml:space="preserve"> <value>Running processes/open applications</value> </data> <data name="PowerLauncher_SearchTypePreference.Header" xml:space="preserve"> <value>Search type preference</value> </data> <data name="PowerLauncher_SearchTypePreference_ApplicationName" xml:space="preserve"> <value>Application name</value> </data> <data name="PowerLauncher_SearchTypePreference_StringInApplication" xml:space="preserve"> <value>A string that is contained in the application</value> </data> <data name="PowerLauncher_SearchTypePreference_ExecutableName" xml:space="preserve"> <value>Executable name</value> </data> <data name="PowerLauncher_MaximumNumberOfResults.Header" xml:space="preserve"> <value>Number of results shown before scrolling</value> </data> <data name="PowerLauncher_OpenPowerLauncher.Header" xml:space="preserve"> <value>Open PowerToys Run</value> </data> <data name="PowerLauncher_OpenFileLocation.Header" xml:space="preserve"> <value>Open file location</value> </data> <data name="PowerLauncher_CopyPathLocation.Header" xml:space="preserve"> <value>Copy path location</value> </data> <data name="PowerLauncher_OpenConsole.Header" xml:space="preserve"> <value>Open console</value> <comment>console refers to Windows command prompt</comment> </data> <data name="PowerLauncher_OverrideWinRKey.Content" xml:space="preserve"> <value>Override Win+R shortcut</value> </data> <data name="PowerLauncher_OverrideWinSKey.Content" xml:space="preserve"> <value>Override Win+S shortcut</value> </data> <data name="PowerLauncher_IgnoreHotkeysInFullScreen.Content" xml:space="preserve"> <value>Ignore shortcuts in fullscreen mode</value> </data> <data name="PowerLauncher_UseCentralizedKeyboardHook.Header" xml:space="preserve"> <value>Use centralized keyboard hook</value> </data> <data name="PowerLauncher_UseCentralizedKeyboardHook.Description" xml:space="preserve"> <value>Try this if there are issues with the shortcut (PowerToys Run might not get focus when triggered from an elevated window)</value> </data> <data name="PowerLauncher_ClearInputOnLaunch.Content" xml:space="preserve"> <value>Clear the previous query on launch</value> </data> <data name="PowerLauncher_TabSelectsContextButtons.Header" xml:space="preserve"> <value>Tab through context buttons</value> </data> <data name="PowerLauncher_TabSelectsContextButtons.Description" xml:space="preserve"> <value>Pressing tab will first select through the available context buttons of the current selection before moving onto the next result</value> </data> <data name="PowerLauncher_GenerateThumbnailsFromFiles.Header" xml:space="preserve"> <value>Generate thumbnails from files</value> </data> <data name="PowerLauncher_GenerateThumbnailsFromFiles.Description" xml:space="preserve"> <value>Results will try to generate thumbnails for files. Disabling this setting may increase stability and speed</value> </data> <data name="PowerLauncher_SearchQueryResultsWithDelay.Header" xml:space="preserve"> <value>Input Smoothing</value> <comment>This is about adding a delay to wait for more input before executing a search</comment> </data> <data name="PowerLauncher_SearchQueryResultsWithDelay.Description" xml:space="preserve"> <value>Wait for more input before searching. This reduces interface jumpiness and system load.</value> </data> <data name="PowerLauncher_FastSearchInputDelayMs.Header" xml:space="preserve"> <value>Immediate plugins</value> </data> <data name="PowerLauncher_FastSearchInputDelayMs.Description" xml:space="preserve"> <value>Affects the plugins that make the UI wait for their results by this amount. Recommended: 30-50 ms.</value> </data> <data name="PowerLauncher_SlowSearchInputDelayMs.Header" xml:space="preserve"> <value>Background execution plugins</value> </data> <data name="PowerLauncher_SlowSearchInputDelayMs.Description" xml:space="preserve"> <value>Affects the plugins that execute in the background by this amount. Recommended: 100-150 ms.</value> </data> <data name="PowerLauncher_SearchInputDelayMs.Header" xml:space="preserve"> <value>Fast plugin throttle (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="KeyboardManager_KeysMappingLayoutRightHeader.Text" xml:space="preserve"> <value>To:</value> <comment>Keyboard Manager mapping keys view right header</comment> </data> <data name="Appearance_GroupSettings.Text" xml:space="preserve"> <value>Appearance</value> </data> <data name="Fancyzones_ImageHyperlinkToDocs.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>FancyZones windows</value> <comment>do not loc the Product name</comment> </data> <data name="FancyZones.ModuleDescription" xml:space="preserve"> <value>Create window layouts to help make multi-tasking easy.</value> <comment>windows refers to application windows</comment> </data> <data name="FancyZones_DisplayOrWorkAreaChangeMoveWindowsCheckBoxControl.Content" xml:space="preserve"> <value>Keep windows in their zones when the screen resolution or work area changes</value> <comment>windows refers to application windows</comment> </data> <data name="FancyZones_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable FancyZones</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="FancyZones_ExcludeApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="FancyZones_ExcludeApps.Description" xml:space="preserve"> <value>Excludes an application from snapping to zones and will only react to Windows Snap - add one application name per line</value> </data> <data name="FancyZones_HighlightOpacity.Header" xml:space="preserve"> <value>Opacity (%)</value> </data> <data name="FancyZones_HotkeyEditorControl.Header" xml:space="preserve"> <value>Open layout editor</value> <comment>Shortcut to launch the FancyZones layout editor application</comment> </data> <data name="FancyZones_WindowSwitching_GroupSettings.Header" xml:space="preserve"> <value>Switch between windows in the current zone</value> </data> <data name="FancyZones_HotkeyNextTabControl.Header" xml:space="preserve"> <value>Next window</value> </data> <data name="FancyZones_HotkeyPrevTabControl.Header" xml:space="preserve"> <value>Previous window</value> </data> <data name="SettingsPage_SetShortcut.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Shortcut setting</value> </data> <data name="SettingsPage_SetShortcut_Glyph.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Information Symbol</value> </data> <data name="FancyZones_LaunchEditorButtonControl.Header" xml:space="preserve"> <value>Launch layout editor</value> <comment>launches the FancyZones layout editor application</comment> </data> <data name="FancyZones_LaunchEditorButtonControl.Description" xml:space="preserve"> <value>Set and manage your layouts</value> <comment>launches the FancyZones layout editor application</comment> </data> <data name="FancyZones_MakeDraggedWindowTransparentCheckBoxControl.Content" xml:space="preserve"> <value>Make dragged window transparent</value> </data> <data name="FancyZones_MouseDragCheckBoxControl_Header.Content" xml:space="preserve"> <value>Use a non-primary mouse button to toggle zone activation</value> </data> <data name="FancyZones_MouseMiddleClickSpanningMultipleZonesCheckBoxControl_Header.Content" xml:space="preserve"> <value>Use middle-click mouse button to toggle multiple zones spanning</value> </data> <data name="FancyZones_MoveWindowsAcrossAllMonitorsCheckBoxControl.Content" xml:space="preserve"> <value>Move windows between zones across all monitors</value> </data> <data name="FancyZones_OverrideSnapHotkeys.Header" xml:space="preserve"> <value>Override Windows Snap</value> </data> <data name="FancyZones_OverrideSnapHotkeys.Description" xml:space="preserve"> <value>This overrides the Windows Snap shortcut (Win + arrow) to move windows between zones</value> </data> <data name="FancyZones_ShiftDragCheckBoxControl_Header.Content" xml:space="preserve"> <value>Hold Shift key to activate zones while dragging a window</value> </data> <data name="FancyZones_ActivationNoShiftDrag" xml:space="preserve"> <value>Drag windows to activate zones</value> </data> <data name="FancyZones_ShowZonesOnAllMonitorsCheckBoxControl.Content" xml:space="preserve"> <value>Show zones on all monitors while dragging a window</value> </data> <data name="FancyZones_AppLastZoneMoveWindows.Content" xml:space="preserve"> <value>Move newly created windows to their last known zone</value> <comment>windows refers to application windows</comment> </data> <data name="FancyZones_OpenWindowOnActiveMonitor.Content" xml:space="preserve"> <value>Move newly created windows to the current active monitor (Experimental)</value> </data> <data name="FancyZones_UseCursorPosEditorStartupScreen.Header" xml:space="preserve"> <value>Launch editor on the display</value> </data> <data name="FancyZones_UseCursorPosEditorStartupScreen.Description" xml:space="preserve"> <value>When using multiple displays</value> </data> <data name="FancyZones_LaunchPositionMouse.Content" xml:space="preserve"> <value>Where the mouse pointer is</value> </data> <data name="FancyZones_LaunchPositionScreen.Content" xml:space="preserve"> <value>With active focus</value> </data> <data name="FancyZones_ZoneBehavior_GroupSettings.Header" xml:space="preserve"> <value>Zone behavior</value> </data> <data name="FancyZones_ZoneBehavior_GroupSettings.Description" xml:space="preserve"> <value>Manage how zones behave when using FancyZones</value> </data> <data name="FancyZones_Zones.Header" xml:space="preserve"> <value>Zones</value> </data> <data name="FancyZones_ZoneHighlightColor.Header" xml:space="preserve"> <value>Highlight color</value> </data> <data name="FancyZones_ZoneSetChangeMoveWindows.Content" xml:space="preserve"> <value>During zone layout changes, windows assigned to a zone will match new size/positions</value> </data> <data name="AttributionTitle.Text" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="General.ModuleTitle" xml:space="preserve"> <value>General</value> </data> <data name="GeneralPage_CheckForUpdates.Content" xml:space="preserve"> <value>Check for updates</value> </data> <data name="General_SettingsBackupAndRestoreLocationText.Header" xml:space="preserve"> <value>Location</value> </data> <data name="General_SettingsBackupAndRestore_ButtonBackup.Content" xml:space="preserve"> <value>Backup</value> </data> <data name="General_SettingsBackupInfo_FileNameHeader.Text" xml:space="preserve"> <value>File name:</value> </data> <data name="General_SettingsBackupAndRestore_LinkRefresh.Text" xml:space="preserve"> <value>Refresh</value> </data> <data name="General_SettingsBackupAndRestore_ButtonRestore.Content" xml:space="preserve"> <value>Restore</value> </data> <data name="General_SettingsBackupAndRestore_ButtonSelectLocation.Text" xml:space="preserve"> <value>Select folder</value> </data> <data name="GeneralPage_UpdateNow.Content" xml:space="preserve"> <value>Update now</value> </data> <data name="GeneralPage_PrivacyStatement_URL.Text" xml:space="preserve"> <value>Privacy statement</value> </data> <data name="GeneralPage_ReportAbug.Text" xml:space="preserve"> <value>Report a bug</value> <comment>Report an issue inside powertoys</comment> </data> <data name="GeneralPage_RequestAFeature_URL.Text" xml:space="preserve"> <value>Request a feature</value> <comment>Tell our team what we should build</comment> </data> <data name="GeneralPage_RestartAsAdmin_Button.Content" xml:space="preserve"> <value>Restart PowerToys as administrator</value> <comment>running PowerToys as a higher level user, account is typically referred to as an admin / administrator</comment> </data> <data name="GeneralPage_RunAtStartUp.Header" xml:space="preserve"> <value>Run at startup</value> </data> <data name="GeneralPage_RunAtStartUp.Description" xml:space="preserve"> <value>PowerToys will launch automatically</value> </data> <data name="PowerRename.ModuleDescription" xml:space="preserve"> <value>A Windows Shell extension for more advanced bulk renaming using search &amp; replace or regular expressions.</value> </data> <data name="PowerRename_ShellIntegration.Header" xml:space="preserve"> <value>Shell integration</value> <comment>This refers to directly integrating in with Windows</comment> </data> <data name="PowerRename_Toggle_Enable.Header" xml:space="preserve"> <value>Enable PowerRename</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="RadioButtons_Name_Theme.Text" xml:space="preserve"> <value>Settings theme</value> </data> <data name="PowerRename_Toggle_HideIcon.Content" xml:space="preserve"> <value>Hide icon in context menu</value> </data> <data name="PowerRename_Toggle_ContextMenu.Header" xml:space="preserve"> <value>Show PowerRename in</value> </data> <data name="PowerRename_Toggle_StandardContextMenu.Content" xml:space="preserve"> <value>Default and extended context menu</value> </data> <data name="PowerRename_Toggle_ExtendedContextMenu.Content" xml:space="preserve"> <value>Extended context menu only</value> </data> <data name="ExtendedContextMenuInfo.Title" xml:space="preserve"> <value>Press Shift + right-click on files to open the extended context menu</value> </data> <data name="PowerRename_Toggle_MaxDispListNum.Header" xml:space="preserve"> <value>Maximum number of items</value> </data> <data name="PowerRename_Toggle_RestoreFlagsOnLaunch.Header" xml:space="preserve"> <value>Show recently used strings</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_MD.Header" xml:space="preserve"> <value>Markdown</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_MD.Description" xml:space="preserve"> <value>.md, .markdown, .mdown, .mkdn, .mkd, .mdwn, .mdtxt, .mdtext</value> <comment>File extensions, should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_Monaco.Header" xml:space="preserve"> <value>Source code files (Monaco)</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_Monaco.Description" xml:space="preserve"> <value>.cpp, .py, .json, .xml, .csproj, ...</value> <comment>File extensions should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_SVG.Header" xml:space="preserve"> <value>Scalable Vector Graphics</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_SVG.Description" xml:space="preserve"> <value>.svg</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_Preview_SVG_Color_Mode.Header" xml:space="preserve"> <value>Color mode</value> </data> <data name="FileExplorerPreview_Preview_SVG_Color_Mode_Default.Content" xml:space="preserve"> <value>Windows default</value> </data> <data name="FileExplorerPreview_Preview_SVG_Color_Solid_Color.Content" xml:space="preserve"> <value>Solid color</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade.Content" xml:space="preserve"> <value>Checkered pattern</value> </data> <data name="FileExplorerPreview_Preview_SVG_Background_Color.Header" xml:space="preserve"> <value>Color</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_Mode.Header" xml:space="preserve"> <value>Checkered shade</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_1.Content" xml:space="preserve"> <value>Light</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_2.Content" xml:space="preserve"> <value>Medium</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_3.Content" xml:space="preserve"> <value>Dark</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_PDF.Header" xml:space="preserve"> <value>Portable Document Format</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_PDF.Description" xml:space="preserve"> <value>.pdf</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_SVG.Header" xml:space="preserve"> <value>Scalable Vector Graphics</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_SVG.Description" xml:space="preserve"> <value>.svg</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_STL.Header" xml:space="preserve"> <value>Stereolithography</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_STL.Description" xml:space="preserve"> <value>.stl</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_Color_Thumbnail_STL.Header" xml:space="preserve"> <value>Color</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_PDF.Header" xml:space="preserve"> <value>Portable Document Format</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_PDF.Description" xml:space="preserve"> <value>.pdf</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview.ModuleDescription" xml:space="preserve"> <value>These settings allow you to manage your Windows File Explorer custom preview handlers.</value> </data> <data name="PowerRename_AutoCompleteHeader.Header" xml:space="preserve"> <value>Auto-complete</value> </data> <data name="OpenSource_Notice.Text" xml:space="preserve"> <value>Open-source notice</value> </data> <data name="PowerRename_Toggle_AutoComplete.Header" xml:space="preserve"> <value>Enable auto-complete for the search &amp; replace fields</value> </data> <data name="FancyZones_BorderColor.Header" xml:space="preserve"> <value>Border color</value> </data> <data name="FancyZones_InActiveColor.Header" xml:space="preserve"> <value>Inactive color</value> </data> <data name="ShortcutGuide.ModuleDescription" xml:space="preserve"> <value>Shows a help overlay with Windows shortcuts.</value> </data> <data name="ShortcutGuide_PressTimeForGlobalWindowsShortcuts.Header" xml:space="preserve"> <value>Press duration before showing global Windows shortcuts (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="ShortcutGuide_ActivationMethod.Header" xml:space="preserve"> <value>Activation method</value> </data> <data name="ShortcutGuide_ActivationMethod.Description" xml:space="preserve"> <value>Use a shortcut or press the Windows key for some time to activate</value> </data> <data name="Radio_ShortcutGuide_ActivationMethod_CustomizedShortcut.Content" xml:space="preserve"> <value>Custom shortcut</value> </data> <data name="Radio_ShortcutGuide_ActivationMethod_LongPressWindowsKey.Content" xml:space="preserve"> <value>Hold down Windows key</value> </data> <data name="ShortcutGuide_PressWinKeyWarning.Title" xml:space="preserve"> <value>In some edge cases Shortcut Guide might not function correctly when using this activation method</value> </data> <data name="Appearance_Behavior.Header" xml:space="preserve"> <value>Appearance &amp; behavior</value> </data> <data name="General_SettingsBackupAndRestoreTitle.Header" xml:space="preserve"> <value>Backup &amp; restore</value> </data> <data name="General_SettingsBackupAndRestore.Header" xml:space="preserve"> <value>Backup and restore your settings</value> </data> <data name="General_SettingsBackupAndRestore.Description" xml:space="preserve"> <value>PowerToys will restart automatically if needed</value> </data> <data name="ShortcutGuide_Enable.Header" xml:space="preserve"> <value>Enable Shortcut Guide</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="ShortcutGuide_OverlayOpacity.Header" xml:space="preserve"> <value>Background opacity (%)</value> </data> <data name="ShortcutGuide_DisabledApps.Header" xml:space="preserve"> <value>Exclude apps</value> </data> <data name="ShortcutGuide_DisabledApps.Description" xml:space="preserve"> <value>Turns off Shortcut Guide when these applications have focus - add one application name per line</value> </data> <data name="ShortcutGuide_DisabledApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> <comment>Don't translate outlook.exe</comment> </data> <data name="ImageResizer_CustomSizes.Header" xml:space="preserve"> <value>Image sizes</value> </data> <data name="ImageResizer_Presets.Header" xml:space="preserve"> <value>Presets</value> </data> <data name="ImageResizer_Presets.Description" xml:space="preserve"> <value>Manage preset sizes that can be used in the editor</value> </data> <data name="ImageResizer_FilenameFormatHeader.Description" xml:space="preserve"> <value>This format is used as the filename for resized images</value> </data> <data name="ImageResizer.ModuleDescription" xml:space="preserve"> <value>Lets you resize images by right-clicking.</value> </data> <data name="ImageResizer_EnableToggle.Header" xml:space="preserve"> <value>Enable Image Resizer</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="ImagesSizesListView.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Image Size</value> </data> <data name="ImageResizer_Configurations.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Configurations</value> </data> <data name="ImageResizer_Name.Header" xml:space="preserve"> <value>Name</value> </data> <data name="ImageResizer_Fit.Header" xml:space="preserve"> <value>Fit</value> </data> <data name="ImageResizer_Width.Header" xml:space="preserve"> <value>Width</value> </data> <data name="ImageResizer_Height.Header" xml:space="preserve"> <value>Height</value> </data> <data name="ImageResizer_Size.Header" xml:space="preserve"> <value>Unit</value> </data> <data name="RemoveButton.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Remove</value> <comment>Removes a user defined setting group for Image Resizer</comment> </data> <data name="RemoveItem.Text" xml:space="preserve"> <value>Delete</value> </data> <data name="ImageResizer_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Image Resizer</value> </data> <data name="ImageResizer_AddSizeButton.Content" xml:space="preserve"> <value>Add new size</value> </data> <data name="ImageResizer_SaveSizeButton.Label" xml:space="preserve"> <value>Save sizes</value> </data> <data name="ImageResizer_Encoding.Header" xml:space="preserve"> <value>JPEG quality level (%)</value> </data> <data name="ImageResizer_PNGInterlacing.Header" xml:space="preserve"> <value>PNG interlacing</value> </data> <data name="ImageResizer_TIFFCompression.Header" xml:space="preserve"> <value>TIFF compression</value> </data> <data name="File.Header" xml:space="preserve"> <value>File</value> <comment>as in a computer file</comment> </data> <data name="Default.Content" xml:space="preserve"> <value>Default</value> </data> <data name="ImageResizer_ENCODER_TIFF_CCITT3.Content" xml:space="preserve"> <value>CCITT3</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_CCITT4.Content" xml:space="preserve"> <value>CCITT4</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_Default.Content" xml:space="preserve"> <value>Default</value> </data> <data name="ImageResizer_ENCODER_TIFF_LZW.Content" xml:space="preserve"> <value>LZW</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_None.Content" xml:space="preserve"> <value>None</value> </data> <data name="ImageResizer_ENCODER_TIFF_RLE.Content" xml:space="preserve"> <value>RLE</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_Zip.Content" xml:space="preserve"> <value>Zip</value> <comment>do not loc</comment> </data> <data name="ImageResizer_FallbackEncoder_BMP.Content" xml:space="preserve"> <value>BMP encoder</value> </data> <data name="ImageResizer_FallbackEncoder_GIF.Content" xml:space="preserve"> <value>GIF encoder</value> </data> <data name="ImageResizer_FallbackEncoder_JPEG.Content" xml:space="preserve"> <value>JPEG encoder</value> </data> <data name="ImageResizer_FallbackEncoder_PNG.Content" xml:space="preserve"> <value>PNG encoder</value> </data> <data name="ImageResizer_FallbackEncoder_TIFF.Content" xml:space="preserve"> <value>TIFF encoder</value> </data> <data name="ImageResizer_FallbackEncoder_WMPhoto.Content" xml:space="preserve"> <value>WMPhoto encoder</value> </data> <data name="ImageResizer_Sizes_Fit_Fill.Content" xml:space="preserve"> <value>Fill</value> <comment>Refers to filling an image into a certain size. It could overflow</comment> </data> <data name="ImageResizer_Sizes_Fit_Fill_ThirdPersonSingular.Text" xml:space="preserve"> <value>Fill</value> <comment>Refers to filling an image into a certain size. It could overflow</comment> </data> <data name="ImageResizer_Sizes_Fit_Fit.Content" xml:space="preserve"> <value>Fit</value> <comment>Refers to fitting an image into a certain size. It won't overflow</comment> </data> <data name="ImageResizer_Sizes_Fit_Stretch.Content" xml:space="preserve"> <value>Stretch</value> <comment>Refers to stretching an image into a certain size. Won't overflow but could distort.</comment> </data> <data name="ImageResizer_Sizes_Units_CM.Content" xml:space="preserve"> <value>Centimeters</value> </data> <data name="ImageResizer_Sizes_Units_Inches.Content" xml:space="preserve"> <value>Inches</value> </data> <data name="ImageResizer_Sizes_Units_Percent.Content" xml:space="preserve"> <value>Percent</value> </data> <data name="ImageResizer_Sizes_Units_Pixels.Content" xml:space="preserve"> <value>Pixels</value> </data> <data name="Off.Content" xml:space="preserve"> <value>Off</value> </data> <data name="On.Content" xml:space="preserve"> <value>On</value> </data> <data name="GeneralPage_ToggleSwitch_AlwaysRunElevated_Link.Content" xml:space="preserve"> <value>Learn more about administrator mode</value> </data> <data name="GeneralPage_ToggleSwitch_AutoDownloadUpdates.Header" xml:space="preserve"> <value>Download updates automatically</value> </data> <data name="GeneralPage_ToggleSwitch_AutoDownloadUpdates.Description" xml:space="preserve"> <value>Except on metered connections</value> </data> <data name="GeneralPage_ToggleSwitch_RunningAsAdminNote.Text" xml:space="preserve"> <value>Currently running as administrator</value> </data> <data name="GeneralSettings_AlwaysRunAsAdminText.Header" xml:space="preserve"> <value>Always run as administrator</value> </data> <data name="GeneralSettings_AlwaysRunAsAdminText.Description" xml:space="preserve"> <value>You need to run as administrator to use this setting</value> </data> <data name="GeneralSettings_RunningAsUserText" xml:space="preserve"> <value>Running as user</value> </data> <data name="GeneralSettings_RunningAsAdminText" xml:space="preserve"> <value>Running as administrator</value> </data> <data name="FancyZones.ModuleTitle" xml:space="preserve"> <value>FancyZones</value> </data> <data name="FileExplorerPreview.ModuleTitle" xml:space="preserve"> <value>File Explorer</value> </data> <data name="FileExplorerPreview_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>File Explorer</value> <comment>Use same translation as Windows does for File Explorer</comment> </data> <data name="ImageResizer.ModuleTitle" xml:space="preserve"> <value>Image Resizer</value> </data> <data name="KeyboardManager.ModuleTitle" xml:space="preserve"> <value>Keyboard Manager</value> </data> <data name="ColorPicker.ModuleTitle" xml:space="preserve"> <value>Color Picker</value> </data> <data name="PowerLauncher.ModuleTitle" xml:space="preserve"> <value>PowerToys Run</value> </data> <data name="PowerToys_Run_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>PowerToys Run</value> </data> <data name="PowerRename.ModuleTitle" xml:space="preserve"> <value>PowerRename</value> <comment>do not loc the product name</comment> </data> <data name="PowerRename_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>PowerRename</value> <comment>do not loc</comment> </data> <data name="ShortcutGuide.ModuleTitle" xml:space="preserve"> <value>Shortcut Guide</value> </data> <data name="Shortcut_Guide_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Shortcut Guide</value> </data> <data name="General_Repository.Text" xml:space="preserve"> <value>GitHub repository</value> </data> <data name="General_Version.Header" xml:space="preserve"> <value>Version</value> </data> <data name="General_VersionLastChecked.Text" xml:space="preserve"> <value>Last checked: </value> </data> <data name="General_SettingsBackupInfo_DateHeader.Text" xml:space="preserve"> <value>Created at:</value> </data> <data name="General_SettingsBackupAndRestoreStatusInfo.Header" xml:space="preserve"> <value>Backup information</value> </data> <data name="General_SettingsBackupInfo_SourceHeader.Text" xml:space="preserve"> <value>Source machine:</value> </data> <data name="General_SettingsBackupInfo_StatusHeader.Text" xml:space="preserve"> <value>Status:</value> </data> <data name="General_Version.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Version</value> </data> <data name="Admin_mode.Header" xml:space="preserve"> <value>Administrator mode</value> </data> <data name="FancyZones_RestoreSize.Content" xml:space="preserve"> <value>Restore the original size of windows when unsnapping</value> </data> <data name="ImageResizer_FallBackEncoderText.Header" xml:space="preserve"> <value>Fallback encoder</value> </data> <data name="ImageResizer_FileFormatDescription.Text" xml:space="preserve"> <value>The following parameters can be used:</value> </data> <data name="ImageResizer_FilenameFormatHeader.Header" xml:space="preserve"> <value>Filename format</value> </data> <data name="ImageResizer_FileModifiedDate.Header" xml:space="preserve"> <value>File modified timestamp</value> </data> <data name="ImageResizer_FileModifiedDate.Description" xml:space="preserve"> <value>Used as the 'modified timestamp' in the file properties</value> </data> <data name="ImageResizer_UseOriginalDate.Content" xml:space="preserve"> <value>Original file timestamp</value> </data> <data name="ImageResizer_UseResizeDate.Content" xml:space="preserve"> <value>Timestamp of resize action</value> </data> <data name="Encoding.Header" xml:space="preserve"> <value>Encoding</value> </data> <data name="KeyboardManager_RemapKeyboardButton.Description" xml:space="preserve"> <value>Remap keys to other keys or shortcuts</value> </data> <data name="KeyboardManager_RemapShortcutsButton.Description" xml:space="preserve"> <value>Remap shortcuts to other shortcuts or keys for all or specific applications</value> </data> <data name="General.ModuleDescription" xml:space="preserve"> <value>Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. Made with 💗 by Microsoft and the PowerToys community.</value> <comment>Windows refers to the OS</comment> </data> <data name="FancyZones_SpanZonesAcrossMonitors.Header" xml:space="preserve"> <value>Allow zones to span across monitors</value> </data> <data name="ImageResizer_Formatting_ActualHeight.Text" xml:space="preserve"> <value>Actual height</value> </data> <data name="ImageResizer_Formatting_ActualWidth.Text" xml:space="preserve"> <value>Actual width</value> </data> <data name="ImageResizer_Formatting_Filename.Text" xml:space="preserve"> <value>Original filename</value> </data> <data name="ImageResizer_Formatting_SelectedHeight.Text" xml:space="preserve"> <value>Selected height</value> </data> <data name="ImageResizer_Formatting_SelectedWidth.Text" xml:space="preserve"> <value>Selected width</value> </data> <data name="ImageResizer_Formatting_Sizename.Text" xml:space="preserve"> <value>Size name</value> </data> <data name="FancyZones_MoveWindowsBasedOnPositionCheckBoxControl.Content" xml:space="preserve"> <value>Move windows based on their position</value> <comment>Windows refers to application windows</comment> </data> <data name="GeneralSettings_NewVersionIsAvailable" xml:space="preserve"> <value>New update available</value> </data> <data name="GeneralSettings_VersionIsLatest" xml:space="preserve"> <value>PowerToys is up to date.</value> </data> <data name="FileExplorerPreview_IconThumbnail_GroupSettings.Header" xml:space="preserve"> <value>Thumbnail icon Preview</value> </data> <data name="FileExplorerPreview_IconThumbnail_GroupSettings.Description" xml:space="preserve"> <value>Select the file types for which thumbnail previews must be rendered.</value> </data> <data name="FileExplorerPreview_PreviewPane.Header" xml:space="preserve"> <value>Preview Pane</value> </data> <data name="FileExplorerPreview_PreviewPane.Description" xml:space="preserve"> <value>Select the file types which must be rendered in the Preview Pane. Ensure that Preview Pane is open by toggling the view with Alt + P in File Explorer.</value> <comment>Preview Pane and File Explorer are app/feature names in Windows. 'Alt + P' is a shortcut</comment> </data> <data name="FileExplorerPreview_RunAsAdminRequired.Title" xml:space="preserve"> <value>You need to run as administrator to modify these settings.</value> </data> <data name="FileExplorerPreview_RebootRequired.Title" xml:space="preserve"> <value>A reboot may be required for changes to these settings to take effect</value> </data> <data name="FileExplorerPreview_PreviewHandlerOutlookIncompatibility.Title" xml:space="preserve"> <value>Enabling the preview handlers will override other preview handlers already installed - there have been reports of incompatibility between Outlook and the PDF Preview Handler.</value> <comment>Outlook is the name of a Microsoft product</comment> </data> <data name="FileExplorerPreview_ThumbnailsMightNotAppearOnRemoteFolders.Title" xml:space="preserve"> <value>Thumbnails might not appear on paths managed by cloud storage solutions like OneDrive, since these solutions may get their thumbnails from the cloud instead of generating them locally.</value> <comment>OneDrive is the name of a Microsoft product</comment> </data> <data name="FancyZones_ExcludeApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> <comment>Don't translate outlook.exe</comment> </data> <data name="ImageResizer_FilenameFormatPlaceholder.PlaceholderText" xml:space="preserve"> <value>Example: %1 (%2)</value> </data> <data name="ImageResizer_FilenameParameters.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Filename parameters</value> </data> <data name="Radio_Theme_Dark.Content" xml:space="preserve"> <value>Dark</value> <comment>Dark refers to color, not weight</comment> </data> <data name="Radio_Theme_Light.Content" xml:space="preserve"> <value>Light</value> <comment>Light refers to color, not weight</comment> </data> <data name="Radio_Theme_Default.Content" xml:space="preserve"> <value>Windows default</value> <comment>Windows refers to the Operating system</comment> </data> <data name="Windows_Color_Settings.Content" xml:space="preserve"> <value>Windows color settings</value> <comment>Windows refers to the Operating system</comment> </data> <data name="ColorPicker_CopiedColorRepresentation.Header" xml:space="preserve"> <value>Default color format</value> </data> <data name="ColorPickerFirst.Content" xml:space="preserve"> <value>Pick a color and open editor</value> </data> <data name="EditorFirst.Content" xml:space="preserve"> <value>Open editor</value> </data> <data name="ColorPickerOnly.Content" xml:space="preserve"> <value>Only pick a color</value> </data> <data name="ColorPicker_ActivationAction.Header" xml:space="preserve"> <value>Activation behavior</value> </data> <data name="ColorFormats.Header" xml:space="preserve"> <value>Picker behavior</value> </data> <data name="ColorPicker_CopiedColorRepresentation.Description" xml:space="preserve"> <value>This format will be copied to your clipboard</value> </data> <data name="KBM_KeysCannotBeRemapped.Text" xml:space="preserve"> <value>Learn more about remapping limitations</value> <comment>This is a link that will discuss what is and is not possible for Keyboard manager to remap</comment> </data> <data name="FancyZones_Editor_GroupSettings.Header" xml:space="preserve"> <value>Editor</value> <comment>refers to the FancyZone editor</comment> </data> <data name="FancyZones_WindowBehavior_GroupSettings.Header" xml:space="preserve"> <value>Window behavior</value> </data> <data name="FancyZones_WindowBehavior_GroupSettings.Description" xml:space="preserve"> <value>Manage how windows behave when using FancyZones</value> </data> <data name="FancyZones_Windows.Header" xml:space="preserve"> <value>Windows</value> <comment>Do translate: refers to a set of application windows, not the product name</comment> </data> <data name="PowerRename_BehaviorHeader.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="PowerRename_Toggle_UseBoostLib.Header" xml:space="preserve"> <value>Use Boost library</value> <comment>Boost is a product name, should not be translated</comment> </data> <data name="PowerRename_Toggle_UseBoostLib.Description" xml:space="preserve"> <value>Provides extended features but may use different regex syntax</value> <comment>Boost is a product name, should not be translated</comment> </data> <data name="MadeWithOssLove.Text" xml:space="preserve"> <value>Made with 💗 by Microsoft and the PowerToys community.</value> </data> <data name="ColorPicker_ColorFormats.Header" xml:space="preserve"> <value>Color formats</value> </data> <data name="ColorPicker_ColorFormats.Description" xml:space="preserve"> <value>Configure the color formats (edit, delete, hide, reorder them)</value> </data> <data name="MoveUp.Text" xml:space="preserve"> <value>Move up</value> </data> <data name="MoveDown.Text" xml:space="preserve"> <value>Move down</value> </data> <data name="ColorPickerAddNewFormat.Content" xml:space="preserve"> <value>Add new format</value> </data> <data name="NewColorFormat.Header" xml:space="preserve"> <value>Format</value> </data> <data name="NewColorName.Header" xml:space="preserve"> <value>Name</value> </data> <data name="AddCustomColorFormat" xml:space="preserve"> <value>Add custom color format</value> </data> <data name="ColorFormatSave" xml:space="preserve"> <value>Save</value> </data> <data name="EditCustomColorFormat" xml:space="preserve"> <value>Edit custom color format</value> </data> <data name="ColorFormatUpdate" xml:space="preserve"> <value>Update</value> </data> <data name="CustomColorFormatDefaultName" xml:space="preserve"> <value>My Format</value> </data> <data name="ColorFormatDialog.SecondaryButtonText" xml:space="preserve"> <value>Cancel</value> </data> <data name="ColorFormatEditorHelpline1.Text" xml:space="preserve"> <value>The following parameters can be used:</value> </data> <data name="Help_red" xml:space="preserve"> <value>red</value> </data> <data name="Help_green" xml:space="preserve"> <value>green</value> </data> <data name="Help_blue" xml:space="preserve"> <value>blue</value> </data> <data name="Help_alpha" xml:space="preserve"> <value>alpha</value> </data> <data name="Help_cyan" xml:space="preserve"> <value>cyan</value> </data> <data name="Help_magenta" xml:space="preserve"> <value>magenta</value> </data> <data name="Help_yellow" xml:space="preserve"> <value>yellow</value> </data> <data name="Help_black_key" xml:space="preserve"> <value>black key</value> </data> <data name="Help_hue" xml:space="preserve"> <value>hue</value> </data> <data name="Help_hueNat" xml:space="preserve"> <value>hue (natural)</value> </data> <data name="Help_saturationI" xml:space="preserve"> <value>saturation (HSI)</value> </data> <data name="Help_saturationL" xml:space="preserve"> <value>saturation (HSL)</value> </data> <data name="Help_saturationB" xml:space="preserve"> <value>saturation (HSB)</value> </data> <data name="Help_brightness" xml:space="preserve"> <value>brightness</value> </data> <data name="Help_intensity" xml:space="preserve"> <value>intensity</value> </data> <data name="Help_lightnessNat" xml:space="preserve"> <value>lightness (nat)</value> </data> <data name="Help_lightnessCIE" xml:space="preserve"> <value>lightness (CIE)</value> </data> <data name="Help_value" xml:space="preserve"> <value>value</value> </data> <data name="Help_whiteness" xml:space="preserve"> <value>whiteness</value> </data> <data name="Help_blackness" xml:space="preserve"> <value>blackness</value> </data> <data name="Help_chromaticityA" xml:space="preserve"> <value>chromaticityA</value> </data> <data name="Help_chromaticityB" xml:space="preserve"> <value>chromaticityB</value> </data> <data name="Help_X_value" xml:space="preserve"> <value>X value</value> </data> <data name="Help_Y_value" xml:space="preserve"> <value>Y value</value> </data> <data name="Help_Z_value" xml:space="preserve"> <value>Z value</value> </data> <data name="Help_decimal_value_RGB" xml:space="preserve"> <value>decimal value (RGB)</value> </data> <data name="Help_decimal_value_BGR" xml:space="preserve"> <value>decimal value (BGR)</value> </data> <data name="Help_color_name" xml:space="preserve"> <value>color name</value> </data> <data name="ColorFormatEditorHelpline2.Text" xml:space="preserve"> <value>The red, green, blue and alpha values can be formatted to the following formats:</value> </data> <data name="Help_byte" xml:space="preserve"> <value>byte value (default)</value> </data> <data name="Help_hexL1" xml:space="preserve"> <value>hex lowercase one digit</value> </data> <data name="Help_hexU1" xml:space="preserve"> <value>hex uppercase one digit</value> </data> <data name="Help_hexL2" xml:space="preserve"> <value>hex lowercase two digits</value> </data> <data name="Help_hexU2" xml:space="preserve"> <value>hex uppercase two digits</value> </data> <data name="Help_floatWith" xml:space="preserve"> <value>float with leading zero</value> </data> <data name="Help_floatWithout" xml:space="preserve"> <value>float without leading zero</value> </data> <data name="ColorFormatEditorHelpline3.Text" xml:space="preserve"> <value>Example: %ReX means red value in hex uppercase two digits format.</value> </data> <data name="ColorPicker_ShowColorName.Header" xml:space="preserve"> <value>Show color name</value> </data> <data name="ColorPicker_ShowColorName.Description" xml:space="preserve"> <value>This will show the name of the color when picking a color</value> </data> <data name="ImageResizer_DefaultSize_Large" xml:space="preserve"> <value>Large</value> <comment>The size of the image</comment> </data> <data name="ImageResizer_DefaultSize_Medium" xml:space="preserve"> <value>Medium</value> <comment>The size of the image</comment> </data> <data name="ImageResizer_DefaultSize_Phone" xml:space="preserve"> <value>Phone</value> <comment>The size of the image referring to a Mobile Phone typical image size</comment> </data> <data name="ImageResizer_DefaultSize_Small" xml:space="preserve"> <value>Small</value> <comment>The size of the image</comment> </data> <data name="FancyZones_MoveWindowBasedOnRelativePosition_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Windows key + Up, down, left or right arrow key to move windows based on relative position</value> </data> <data name="FancyZones_MoveWindowLeftRightBasedOnZoneIndex_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Windows key + Left or right arrow keys to move windows based on zone index</value> </data> <data name="FancyZones_MoveWindowBasedOnRelativePosition_Description.Text" xml:space="preserve"> <value>Windows key +    or </value> <comment>Do not loc the icons (hex numbers)</comment> </data> <data name="FancyZones_MoveWindowLeftRightBasedOnZoneIndex_Description.Text" xml:space="preserve"> <value>Windows key +  or </value> <comment>Do not loc the icons (hex numbers)</comment> </data> <data name="FancyZones_MoveWindowBasedOnRelativePosition.Text" xml:space="preserve"> <value>Relative position</value> </data> <data name="FancyZones_MoveWindow.Header" xml:space="preserve"> <value>Move windows based on</value> </data> <data name="FancyZones_MoveWindowLeftRightBasedOnZoneIndex.Text" xml:space="preserve"> <value>Zone index</value> </data> <data name="ColorPicker_Editor.Header" xml:space="preserve"> <value>Color formats</value> </data> <data name="FancyZones_OverlappingZonesClosestCenter.Content" xml:space="preserve"> <value>Activate the zone whose center is closest to the cursor</value> </data> <data name="FancyZones_OverlappingZonesLargest.Content" xml:space="preserve"> <value>Activate the largest zone by area</value> </data> <data name="FancyZones_OverlappingZonesPositional.Content" xml:space="preserve"> <value>Split the overlapped area into multiple activation targets</value> </data> <data name="FancyZones_OverlappingZonesSmallest.Content" xml:space="preserve"> <value>Activate the smallest zone by area</value> </data> <data name="FancyZones_OverlappingZones.Header" xml:space="preserve"> <value>When multiple zones overlap</value> </data> <data name="PowerLauncher_Plugins.Header" xml:space="preserve"> <value>Plugins</value> </data> <data name="PowerLauncher_ActionKeyword.Header" xml:space="preserve"> <value>Direct activation command</value> </data> <data name="PowerLauncher_AuthoredBy.Text" xml:space="preserve"> <value>Authored by</value> <comment>example: Authored by Microsoft</comment> </data> <data name="PowerLauncher_IncludeInGlobalResultTitle.Text" xml:space="preserve"> <value>Include in global result</value> </data> <data name="PowerLauncher_IncludeInGlobalResultDescription.Text" xml:space="preserve"> <value>Show results on queries without direct activation command</value> </data> <data name="PowerLauncher_EnablePluginToggle.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Enable plugin</value> </data> <data name="PowerLauncher_EnablePluginToggle.OnContent" xml:space="preserve"> <value>On</value> </data> <data name="PowerLauncher_EnablePluginToggle.OffContent" xml:space="preserve"> <value>Off</value> </data> <data name="Run_AdditionalOptions.Text" xml:space="preserve"> <value>Additional options</value> </data> <data name="Run_NotAccessibleWarning.Title" xml:space="preserve"> <value>Please define an activation command or allow this plugin to be used in the global results.</value> </data> <data name="Run_AllPluginsDisabled.Title" xml:space="preserve"> <value>PowerToys Run can't provide any results without plugins</value> </data> <data name="Run_AllPluginsDisabled.Message" xml:space="preserve"> <value>Enable at least one plugin to get started</value> </data> <data name="Run_PluginUse.Header" xml:space="preserve"> <value>Plugins</value> </data> <data name="Run_PluginUseDescription.Text" xml:space="preserve"> <value>Include or remove plugins from the global results, change the direct activation phrase and configure additional options</value> </data> <data name="Run_PositionAppearance_GroupSettings.Header" xml:space="preserve"> <value>Position &amp; appearance</value> </data> <data name="Run_PositionHeader.Header" xml:space="preserve"> <value>Preferred monitor position</value> <comment>as in Show PowerToys Run on primary monitor</comment> </data> <data name="Run_PositionHeader.Description" xml:space="preserve"> <value>If multiple monitors are in use, PowerToys Run can be launched on the desired monitor</value> <comment>as in Show PowerToys Run on primary monitor</comment> </data> <data name="Run_Radio_Position_Cursor.Content" xml:space="preserve"> <value>Monitor with mouse cursor</value> </data> <data name="Run_Radio_Position_Focus.Content" xml:space="preserve"> <value>Monitor with focused window</value> </data> <data name="Run_Radio_Position_Primary_Monitor.Content" xml:space="preserve"> <value>Primary monitor</value> </data> <data name="Run_PluginsLoading.Text" xml:space="preserve"> <value>Plugins are loading...</value> </data> <data name="ColorPicker_ButtonDown.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Move the color down</value> </data> <data name="ColorPicker_ButtonUp.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Move the color up</value> </data> <data name="FancyZones_FlashZonesOnQuickSwitch.Content" xml:space="preserve"> <value>Flash zones when switching layout</value> </data> <data name="FancyZones_Layouts.Header" xml:space="preserve"> <value>Layouts</value> </data> <data name="FancyZones_QuickLayoutSwitch.Header" xml:space="preserve"> <value>Enable quick layout switch</value> </data> <data name="FancyZones_QuickLayoutSwitch.Description" xml:space="preserve"> <value>Layout-specific shortcuts can be configured in the editor</value> </data> <data name="FancyZones_QuickLayoutSwitch_GroupSettings.Text" xml:space="preserve"> <value>Quick layout switch</value> </data> <data name="Activation_Shortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="Activation_Shortcut.Description" xml:space="preserve"> <value>Customize the shortcut to activate this module</value> </data> <data name="Oobe_GetStarted.Text" xml:space="preserve"> <value>Let's get started!</value> </data> <data name="Oobe_PowerToysDescription.Text" xml:space="preserve"> <value>Welcome to PowerToys! These overviews will help you quickly learn the basics of all our utilities.</value> </data> <data name="Oobe_GettingStarted.Text" xml:space="preserve"> <value>Getting started</value> </data> <data name="Oobe_Launch.Text" xml:space="preserve"> <value>Launch</value> </data> <data name="Launch_ColorPicker.Content" xml:space="preserve"> <value>Launch Color Picker</value> </data> <data name="Oobe_LearnMore.Text" xml:space="preserve"> <value>Learn more about</value> </data> <data name="Oobe_ColorPicker.Description" xml:space="preserve"> <value>Color Picker is a system-wide color selection tool for Windows that enables you to pick colors from any currently running application and automatically copies it in a configurable format to your clipboard.</value> </data> <data name="Oobe_FancyZones.Description" xml:space="preserve"> <value>FancyZones is a window manager that makes it easy to create complex window layouts and quickly position windows into those layouts.</value> </data> <data name="Oobe_FileLocksmith.Description" xml:space="preserve"> <value>File Locksmith lists which processes are using the selected files or directories and allows closing those processes.</value> </data> <data name="Oobe_FileExplorer.Description" xml:space="preserve"> <value>PowerToys introduces add-ons to the Windows File Explorer that will enable files like Markdown (.md), PDF (.pdf), SVG (.svg), STL (.stl), G-code (.gcode) and developer files to be viewed in the preview pane. It introduces File Explorer thumbnail support for a number of these file types as well.</value> </data> <data name="Oobe_ImageResizer.Description" xml:space="preserve"> <value>Image Resizer is a Windows shell extension for simple bulk image-resizing.</value> </data> <data name="Oobe_KBM.Description" xml:space="preserve"> <value>Keyboard Manager allows you to customize the keyboard to be more productive by remapping keys and creating your own keyboard shortcuts.</value> </data> <data name="Oobe_MouseWithoutBorders.Description" xml:space="preserve"> <value>Mouse Without Borders enables using the mouse pointer, keyboard, clipboard and drag and drop between machines in the same local network.</value> </data> <data name="Oobe_PowerRename.Description" xml:space="preserve"> <value>PowerRename enables you to perform simple bulk renaming, searching and replacing file names.</value> </data> <data name="Oobe_Run.Description" xml:space="preserve"> <value>PowerToys Run is a quick launcher for power users that contains some additional features without sacrificing performance.</value> </data> <data name="Oobe_MeasureTool.Description" xml:space="preserve"> <value>Screen Ruler is a quick and easy way to measure pixels on your screen.</value> </data> <data name="Oobe_ShortcutGuide.Description" xml:space="preserve"> <value>Shortcut Guide presents the user with a listing of available shortcuts for the current state of the desktop.</value> </data> <data name="Oobe_VideoConference.Description" xml:space="preserve"> <value>Video Conference Mute allows users to quickly mute the microphone and turn off the camera while on a conference call with a single keystroke, regardless of what application has focus on your computer.</value> </data> <data name="Oobe_MouseUtils.Description" xml:space="preserve"> <value>A collection of utilities to enhance your mouse.</value> <comment>Mouse as in the hardware peripheral</comment> </data> <data name="Oobe_Overview.Description" xml:space="preserve"> <value>Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. Take a moment to preview the various utilities listed or view our comprehensive documentation.</value> </data> <data name="Oobe_Overview_DescriptionLinkText.Text" xml:space="preserve"> <value>Documentation on Microsoft Docs</value> </data> <data name="ReleaseNotes.Content" xml:space="preserve"> <value>Release notes</value> </data> <data name="Oobe_ColorPicker_HowToUse.Text" xml:space="preserve"> <value>to open Color Picker.</value> </data> <data name="Oobe_ColorPicker_TipsAndTricks.Text" xml:space="preserve"> <value>To select a color with more precision, **scroll the mouse wheel** to zoom in.</value> </data> <data name="Oobe_FancyZones_HowToUse.Text" xml:space="preserve"> <value>**Shift** + **drag the window** to snap a window to a zone, and release the window in the desired zone.</value> </data> <data name="Oobe_FancyZones_HowToUse_Shortcut.Text" xml:space="preserve"> <value>to open the FancyZones editor.</value> </data> <data name="Oobe_FancyZones_TipsAndTricks.Text" xml:space="preserve"> <value>Snap a window to multiple zones by holding the **Ctrl** key (while also holding **Shift**) when dragging a window.</value> </data> <data name="Oobe_FileLocksmith_HowToUse.Text" xml:space="preserve"> <value>In File Explorer, right-click one or more selected files and select **What's using this file?** from the context menu.</value> </data> <data name="Oobe_FileLocksmith_TipsAndTricks.Text" xml:space="preserve"> <value>Press the **Restart Elevated** button from the File Locksmith UI to also get information on elevated processes that might be using the files.</value> </data> <data name="Oobe_FileExplorer_HowToEnable.Text" xml:space="preserve"> <value>Select **View** which is located at the top of File Explorer, followed by **Show**, and then **Preview pane**. From there, simply click on one of the supported files in the File Explorer and observe the content on the preview pane!</value> </data> <data name="Oobe_HowToCreateMappings.Text" xml:space="preserve"> <value>How to create mappings</value> </data> <data name="Oobe_HowToEnable.Text" xml:space="preserve"> <value>How to enable</value> </data> <data name="Oobe_HowToLaunch.Text" xml:space="preserve"> <value>How to launch</value> </data> <data name="Oobe_HowToUse.Text" xml:space="preserve"> <value>How to use</value> </data> <data name="Oobe_ImageResizer_HowToLaunch.Text" xml:space="preserve"> <value>In File Explorer, right-click one or more image files and select **Resize pictures** from the context menu.</value> </data> <data name="Oobe_ImageResizer_TipsAndTricks.Text" xml:space="preserve"> <value>Want a custom size? You can add them in the PowerToys Settings!</value> </data> <data name="Oobe_KBM_HowToCreateMappings.Text" xml:space="preserve"> <value>Launch **PowerToys Settings**, navigate to the Keyboard Manager menu, and select either **Remap a key** or **Remap a shortcut**.</value> </data> <data name="Oobe_KBM_TipsAndTricks.Text" xml:space="preserve"> <value>Want to only have a shortcut work for a single application? Use the Target App field when creating the shortcut remapping.</value> </data> <data name="Oobe_MouseWithoutBorders_HowToUse.Text" xml:space="preserve"> <value>Use the Settings screen on each machine to connect to the other machines using the same key. If a connection is not working, it may be necessary to add an exception to the Windows Firewall.</value> </data> <data name="Oobe_MouseWithoutBorders_TipsAndTricks.Text" xml:space="preserve"> <value>Use the service option in Settings to install a service enabling Mouse Without Borders to function even in the lock screen.</value> </data> <data name="Oobe_PowerRename_HowToUse.Text" xml:space="preserve"> <value>In File Explorer, right-click one or more selected files and select **PowerRename** from the context menu.</value> </data> <data name="Oobe_PowerRename_TipsAndTricks.Text" xml:space="preserve"> <value>PowerRename supports searching for files using regular expressions to enable more advanced renaming functionalities.</value> </data> <data name="Oobe_Run_HowToLaunch.Text" xml:space="preserve"> <value>to open Run and just start typing.</value> </data> <data name="Oobe_Run_TipsAndTricks.Text" xml:space="preserve"> <value>PowerToys Run supports various action keys to funnel search queries for a specific subset of results. Typing `&lt;` searches for running processes only, `?` will search only for file, or `.` for installed applications! See PowerToys documentation for the complete set of 'Action Keys' available.</value> </data> <data name="Oobe_ShortcutGuide_HowToLaunch.Text" xml:space="preserve"> <value>to open Shortcut Guide, press it again to close or press **Esc**.</value> </data> <data name="Oobe_TipsAndTricks.Text" xml:space="preserve"> <value>Tips &amp; tricks</value> </data> <data name="Oobe_VideoConference_ToggleMicVid.Text" xml:space="preserve"> <value>to toggle both your microphone and video</value> </data> <data name="Oobe_VideoConference_ToggleMic.Text" xml:space="preserve"> <value>to toggle your microphone</value> </data> <data name="Oobe_VideoConference_PushToTalkMic.Text" xml:space="preserve"> <value>to toggle your microphone until key release</value> </data> <data name="Oobe_VideoConference_ToggleVid.Text" xml:space="preserve"> <value>to toggle your video</value> </data> <data name="Oobe_MeasureTool_Activation.Text" xml:space="preserve"> <value>to bring up the Screen Ruler command bar.</value> </data> <data name="Oobe_MeasureTool_HowToLaunch.Text" xml:space="preserve"> <value>The Bounds mode lets you select a specific area to measure. You can also shift-drag an area to persist in on screen. The various Spacing modes allows tracing similar pixels along horizontal and vertical axes with a customizable pixel tolerance threshold (use settings or mouse wheel to adjust it).</value> </data> <data name="Oobe_MeasureTool.Title" xml:space="preserve"> <value>Screen Ruler</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_ColorPicker.Title" xml:space="preserve"> <value>Color Picker</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_FancyZones.Title" xml:space="preserve"> <value>FancyZones</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_FileLocksmith.Title" xml:space="preserve"> <value>File Locksmith</value> </data> <data name="Oobe_ImageResizer.Title" xml:space="preserve"> <value>Image Resizer</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_KBM.Title" xml:space="preserve"> <value>Keyboard Manager</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_MouseWithoutBorders.Title" xml:space="preserve"> <value>Mouse Without Borders</value> <comment>Product name. Do not localize this string</comment> </data> <data name="Oobe_PowerRename.Title" xml:space="preserve"> <value>PowerRename</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_Run.Title" xml:space="preserve"> <value>PowerToys Run</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_ShortcutGuide.Title" xml:space="preserve"> <value>Shortcut Guide</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_VideoConference.Title" xml:space="preserve"> <value>Video Conference Mute</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_Overview.Title" xml:space="preserve"> <value>Welcome</value> </data> <data name="Oobe_WhatsNew.Text" xml:space="preserve"> <value>What's new</value> </data> <data name="Oobe_WhatsNew_LoadingError.Title" xml:space="preserve"> <value>Couldn't load the release notes.</value> </data> <data name="Oobe_WhatsNew_LoadingError.Message" xml:space="preserve"> <value>Please check your internet connection.</value> </data> <data name="Oobe_WhatsNew_ProxyAuthenticationWarning.Title" xml:space="preserve"> <value>Couldn't load the release notes.</value> </data> <data name="Oobe_WhatsNew_ProxyAuthenticationWarning.Message" xml:space="preserve"> <value>Your proxy server requires authentication.</value> </data> <data name="Oobe_WhatsNew_DetailedReleaseNotesLink.Text" xml:space="preserve"> <value>See more detailed release notes on GitHub</value> <comment>Don't loc "GitHub", it's the name of a product</comment> </data> <data name="OOBE_Settings.Content" xml:space="preserve"> <value>Open Settings</value> </data> <data name="Oobe_NavViewItem.Content" xml:space="preserve"> <value>Welcome to PowerToys</value> <comment>Don't loc "PowerToys"</comment> </data> <data name="Feedback_NavViewItem.Content" xml:space="preserve"> <value>Give feedback</value> </data> <data name="OobeWindow_Title" xml:space="preserve"> <value>Welcome to PowerToys</value> </data> <data name="OobeWindow_TitleTxt.Text" xml:space="preserve"> <value>Welcome to PowerToys</value> </data> <data name="SettingsWindow_Title" xml:space="preserve"> <value>PowerToys Settings</value> <comment>Title of the settings window when running as user</comment> </data> <data name="Awake.ModuleTitle" xml:space="preserve"> <value>Awake</value> </data> <data name="Awake.ModuleDescription" xml:space="preserve"> <value>A convenient way to keep your PC awake on-demand.</value> </data> <data name="Awake_EnableSettingsCard.Header" xml:space="preserve"> <value>Enable Awake</value> <comment>Awake is a product name, do not loc</comment> </data> <data name="Awake_NoKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep using the selected power plan</value> </data> <data name="Awake_IndefiniteKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep awake indefinitely</value> </data> <data name="Awake_TemporaryKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep awake for a time interval</value> </data> <data name="Awake_ExpirableKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep awake until expiration</value> </data> <data name="Awake_DisplaySettingsCard.Header" xml:space="preserve"> <value>Keep screen on</value> </data> <data name="Awake_DisplaySettingsCard.Description" xml:space="preserve"> <value>This setting is only available when keeping the PC awake</value> </data> <data name="Awake_ExpirationSettingsExpander.Description" xml:space="preserve"> <value>Keep custom awake state until a specific date and time</value> </data> <data name="Awake_ModeSettingsCard.Header" xml:space="preserve"> <value>Mode</value> </data> <data name="Awake_BehaviorSettingsGroup.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="Awake_IntervalHoursInput.Header" xml:space="preserve"> <value>Hours</value> </data> <data name="Awake_IntervalMinutesInput.Header" xml:space="preserve"> <value>Minutes</value> </data> <data name="Awake_ExpirationSettingsExpander_Date.Header" xml:space="preserve"> <value>End date</value> </data> <data name="Awake_ExpirationSettingsExpander_Time.Header" xml:space="preserve"> <value>End time</value> </data> <data name="Oobe_Awake.Title" xml:space="preserve"> <value>Awake</value> <comment>Module name, do not loc</comment> </data> <data name="Oobe_Awake.Description" xml:space="preserve"> <value>Awake is a Windows tool designed to keep your PC awake on-demand without having to manage its power settings. This behavior can be helpful when running time-consuming tasks while ensuring that your PC does not go to sleep or turn off its screens.</value> </data> <data name="Oobe_Awake_HowToUse.Text" xml:space="preserve"> <value>Open **PowerToys Settings** and enable Awake</value> </data> <data name="Oobe_Awake_TipsAndTricks.Text" xml:space="preserve"> <value>You can always change modes quickly by **right-clicking the Awake icon** in the system tray.</value> </data> <data name="General_FailedToDownloadTheNewVersion.Title" xml:space="preserve"> <value>An error occurred trying to install this update:</value> </data> <data name="General_InstallNow.Content" xml:space="preserve"> <value>Install now</value> </data> <data name="General_ReadMore.Text" xml:space="preserve"> <value>Read more</value> </data> <data name="General_NewVersionAvailable.Title" xml:space="preserve"> <value>An update is available:</value> </data> <data name="General_Downloading.Text" xml:space="preserve"> <value>Downloading...</value> </data> <data name="General_TryAgainToDownloadAndInstall.Content" xml:space="preserve"> <value>Try again to download and install</value> </data> <data name="General_CheckingForUpdates.Text" xml:space="preserve"> <value>Checking for updates...</value> </data> <data name="General_NewVersionReadyToInstall.Title" xml:space="preserve"> <value>An update is ready to install:</value> </data> <data name="General_UpToDate.Title" xml:space="preserve"> <value>PowerToys is up to date</value> </data> <data name="General_CantCheck.Title" xml:space="preserve"> <value>Network error. Please try again later</value> </data> <data name="General_DownloadAndInstall.Content" xml:space="preserve"> <value>Download &amp; install</value> </data> <data name="ImageResizer_Fit_Fill_ThirdPersonSingular" xml:space="preserve"> <value>Fills</value> </data> <data name="ImageResizer_Fit_Fit_ThirdPersonSingular" xml:space="preserve"> <value>Fits within</value> </data> <data name="ImageResizer_Fit_Stretch_ThirdPersonSingular" xml:space="preserve"> <value>Stretches to</value> </data> <data name="ImageResizer_Unit_Centimeter" xml:space="preserve"> <value>Centimeters</value> </data> <data name="ImageResizer_Unit_Inch" xml:space="preserve"> <value>Inches</value> </data> <data name="ImageResizer_Unit_Percent" xml:space="preserve"> <value>Percent</value> </data> <data name="ImageResizer_Unit_Pixel" xml:space="preserve"> <value>Pixels</value> </data> <data name="EditButton.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Edit</value> </data> <data name="ImageResizer_EditSize.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Edit size</value> </data> <data name="No" xml:space="preserve"> <value>No</value> <comment>Label of a cancel button</comment> </data> <data name="Delete_Dialog_Description" xml:space="preserve"> <value>Are you sure you want to delete this item?</value> </data> <data name="Yes" xml:space="preserve"> <value>Yes</value> <comment>Label of a confirmation button</comment> </data> <data name="SeeWhatsNew.Content" xml:space="preserve"> <value>See what's new</value> </data> <data name="Awake_ModeSettingsCard.Description" xml:space="preserve"> <value>Manage the state of your device when Awake is active</value> </data> <data name="ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="Enable_ColorFormat.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Enable colorformat</value> </data> <data name="More_Options_Button.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>More options</value> </data> <data name="More_Options_ButtonTooltip.Text" xml:space="preserve"> <value>More options</value> </data> <data name="To.Text" xml:space="preserve"> <value>to</value> <comment>as in: from x to y</comment> </data> <data name="LearnMore_Awake.Text" xml:space="preserve"> <value>Learn more about Awake</value> <comment>Awake is a product name, do not loc</comment> </data> <data name="LearnMore_ColorPicker.Text" xml:space="preserve"> <value>Learn more about Color Picker</value> <comment>Color Picker is a product name, do not loc</comment> </data> <data name="LearnMore_FancyZones.Text" xml:space="preserve"> <value>Learn more about FancyZones</value> <comment>FancyZones is a product name, do not loc</comment> </data> <data name="LearnMore_FileLocksmith.Text" xml:space="preserve"> <value>Learn more about File Locksmith</value> </data> <data name="LearnMore_ImageResizer.Text" xml:space="preserve"> <value>Learn more about Image Resizer</value> <comment>Image Resizer is a product name, do not loc</comment> </data> <data name="LearnMore_KBM.Text" xml:space="preserve"> <value>Learn more about Keyboard Manager</value> <comment>Keyboard Manager is a product name, do not loc</comment> </data> <data name="LearnMore_MouseUtils.Text" xml:space="preserve"> <value>Learn more about Mouse utilities</value> <comment>Mouse utilities is a product name, do not loc</comment> </data> <data name="LearnMore_PastePlain.Text" xml:space="preserve"> <value>Learn more about Paste as Plain Text</value> <comment> Paste as Plain Text is the name of the module. </comment> </data> <data name="LearnMore_MouseWithoutBorders.Text" xml:space="preserve"> <value>Learn more about Mouse Without Borders</value> <comment>Mouse Without Borders is the name of the module. </comment> </data> <data name="LearnMore_PowerPreview.Text" xml:space="preserve"> <value>Learn more about File Explorer add-ons</value> <comment>File Explorer is a product name, localize as Windows does</comment> </data> <data name="LearnMore_Peek.Text" xml:space="preserve"> <value>Learn more about Peek</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="LearnMore_PowerRename.Text" xml:space="preserve"> <value>Learn more about PowerRename</value> <comment>PowerRename is a product name, do not loc</comment> </data> <data name="LearnMore_Run.Text" xml:space="preserve"> <value>Learn more about PowerToys Run</value> <comment>PowerToys Run is a product name, do not loc</comment> </data> <data name="LearnMore_MeasureTool.Text" xml:space="preserve"> <value>Learn more about Screen Ruler</value> <comment>Screen Ruler is a product name, do not loc</comment> </data> <data name="LearnMore_ShortcutGuide.Text" xml:space="preserve"> <value>Learn more about Shortcut Guide</value> <comment>Shortcut Guide is a product name, do not loc</comment> </data> <data name="LearnMore_VCM.Text" xml:space="preserve"> <value>Learn more about Video Conference Mute</value> <comment>Video Conference Mute is a product name, do not loc</comment> </data> <data name="Oobe_FileExplorer.Title" xml:space="preserve"> <value>File Explorer add-ons</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_MouseUtils.Title" xml:space="preserve"> <value>Mouse utilities</value> <comment>Mouse as in the hardware peripheral</comment> </data> <data name="Oobe_MouseUtils_FindMyMouse.Text" xml:space="preserve"> <value>Find My Mouse</value> <comment>Mouse as in the hardware peripheral</comment> </data> <data name="Oobe_MouseUtils_FindMyMouse_Description.Text" xml:space="preserve"> <value>Focus the mouse pointer pressing the Ctrl key twice, using a custom shortcut or shaking the mouse.</value> <comment>Mouse as in the hardware peripheral. Key as in a keyboard key</comment> </data> <data name="Oobe_MouseUtils_MouseHighlighter.Text" xml:space="preserve"> <value>Mouse Highlighter</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MouseHighlighter_Description.Text" xml:space="preserve"> <value>Use a keyboard shortcut to highlight left and right mouse clicks.</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MousePointerCrosshairs.Text" xml:space="preserve"> <value>Mouse Pointer Crosshairs</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MousePointerCrosshairs_Description.Text" xml:space="preserve"> <value>Draw crosshairs centered around the mouse pointer.</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MouseJump.Text" xml:space="preserve"> <value>Mouse Jump</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MouseJump_Description.Text" xml:space="preserve"> <value>Jump the mouse pointer quickly to anywhere on your desktop.</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Launch_Run.Content" xml:space="preserve"> <value>Launch PowerToys Run</value> </data> <data name="Launch_ShortcutGuide.Content" xml:space="preserve"> <value>Launch Shortcut Guide</value> </data> <data name="ColorPicker_ColorFormat_ToggleSwitch.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Show format in editor</value> </data> <data name="GeneralPage_Documentation.Text" xml:space="preserve"> <value>Documentation</value> </data> <data name="PowerLauncher_SearchList.PlaceholderText" xml:space="preserve"> <value>Search this list</value> </data> <data name="PowerLauncher_SearchList.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Search this list</value> </data> <data name="Awake.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="ColorPicker.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="General.SecondaryLinksHeader" xml:space="preserve"> <value>Related information</value> </data> <data name="ImageResizer.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="MouseUtils.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="PowerLauncher.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="PowerRename.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="EditTooltip.Text" xml:space="preserve"> <value>Edit</value> </data> <data name="RemoveTooltip.Text" xml:space="preserve"> <value>Remove</value> </data> <data name="Activation_Shortcut_Cancel" xml:space="preserve"> <value>Cancel</value> </data> <data name="Activation_Shortcut_Description" xml:space="preserve"> <value>Press a combination of keys to change this shortcut</value> </data> <data name="Activation_Shortcut_With_Disable_Description" xml:space="preserve"> <value>Press a combination of keys to change this shortcut. Right-click to remove the key combination, thereby deactivating the shortcut.</value> </data> <data name="Activation_Shortcut_Reset" xml:space="preserve"> <value>Reset</value> </data> <data name="Activation_Shortcut_Save" xml:space="preserve"> <value>Save</value> </data> <data name="Activation_Shortcut_Title" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="InvalidShortcut.Title" xml:space="preserve"> <value>Invalid shortcut</value> </data> <data name="InvalidShortcutWarningLabel.Text" xml:space="preserve"> <value>Only shortcuts that start with **Windows key**, **Ctrl**, **Alt** or **Shift** are valid.</value> <comment>The ** sequences are used for text formatting of the key names. Don't remove them on translation.</comment> </data> <data name="FancyZones_SpanZonesAcrossMonitors.Description" xml:space="preserve"> <value>All monitors must have the same DPI scaling and will be treated as one large combined rectangle which contains all monitors</value> </data> <data name="ImageResizer_DefaultSize_NewSizePrefix" xml:space="preserve"> <value>New size</value> <comment>First part of the default name of new sizes that can be added in PT's settings ui.</comment> </data> <data name="Awake_IntervalSettingsCard.Header" xml:space="preserve"> <value>Interval before returning to the previous awakeness state</value> </data> <data name="Awake_ExpirationSettingsExpander.Header" xml:space="preserve"> <value>End date and time</value> </data> <data name="MouseUtils.ModuleTitle" xml:space="preserve"> <value>Mouse utilities</value> </data> <data name="MouseUtils.ModuleDescription" xml:space="preserve"> <value>A collection of mouse utilities.</value> </data> <data name="MouseUtils_FindMyMouse.Header" xml:space="preserve"> <value>Find My Mouse</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_FindMyMouse.Description" xml:space="preserve"> <value>Find My Mouse highlights the position of the cursor when pressing the Ctrl key twice, using a custom shortcut or when shaking the mouse.</value> <comment>"Ctrl" is a keyboard key. "Find My Mouse" is the name of the utility</comment> </data> <data name="MouseUtils_Enable_FindMyMouse.Header" xml:space="preserve"> <value>Enable Find My Mouse</value> <comment>"Find My Mouse" is the name of the utility.</comment> </data> <data name="MouseUtils_FindMyMouse_ActivationMethod.Header" xml:space="preserve"> <value>Activation method</value> </data> <data name="MouseUtils_FindMyMouse_ActivationDoubleControlPress.Content" xml:space="preserve"> <value>Press Left Control twice</value> <comment>Left control is the physical key on the keyboard.</comment> </data> <data name="MouseUtils_FindMyMouse_ActivationShakeMouse.Content" xml:space="preserve"> <value>Shake mouse</value> <comment>Mouse is the hardware peripheral.</comment> </data> <data name="MouseUtils_FindMyMouse_ExcludedApps.Description" xml:space="preserve"> <value>Prevents module activation when an excluded application is the foreground application</value> </data> <data name="MouseUtils_FindMyMouse_ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="MouseUtils_FindMyMouse_ExcludedApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> </data> <data name="MouseUtils_Prevent_Activation_On_Game_Mode.Content" xml:space="preserve"> <value>Do not activate when Game Mode is on</value> <comment>"Game mode" is the Windows feature to prevent notification when playing a game.</comment> </data> <data name="MouseUtils_FindMyMouse_BackgroundColor.Header" xml:space="preserve"> <value>Background color</value> </data> <data name="MouseUtils_FindMyMouse_SpotlightColor.Header" xml:space="preserve"> <value>Spotlight color</value> </data> <data name="MouseUtils_FindMyMouse_OverlayOpacity.Header" xml:space="preserve"> <value>Overlay opacity (%)</value> </data> <data name="MouseUtils_FindMyMouse_SpotlightRadius.Header" xml:space="preserve"> <value>Spotlight radius (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_FindMyMouse_SpotlightInitialZoom.Header" xml:space="preserve"> <value>Spotlight initial zoom</value> </data> <data name="MouseUtils_FindMyMouse_SpotlightInitialZoom.Description" xml:space="preserve"> <value>Spotlight zoom factor at animation start</value> </data> <data name="MouseUtils_FindMyMouse_AnimationDurationMs.Header" xml:space="preserve"> <value>Animation duration (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_FindMyMouse_AnimationDurationMs.Description" xml:space="preserve"> <value>Time before the spotlight appears (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_FindMyMouse_AnimationDurationMs_Disabled.Message" xml:space="preserve"> <value>Animations are disabled by OS. See Settings &gt; Accessibility &gt; Visual effects</value> </data> <data name="MouseUtils_FindMyMouse_ShakingMinimumDistance.Header" xml:space="preserve"> <value>Shake minimum distance</value> </data> <data name="MouseUtils_FindMyMouse_ShakingMinimumDistance.Description" xml:space="preserve"> <value>The minimum distance for mouse shaking activation, for adjusting sensitivity</value> </data> <data name="MouseUtils_MouseHighlighter.Header" xml:space="preserve"> <value>Mouse Highlighter</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_MouseHighlighter.Description" xml:space="preserve"> <value>Mouse Highlighter mode will highlight mouse clicks.</value> <comment>"Mouse Highlighter" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_Enable_MouseHighlighter.Header" xml:space="preserve"> <value>Enable Mouse Highlighter</value> <comment>"Find My Mouse" is the name of the utility.</comment> </data> <data name="MouseUtils_MouseHighlighter_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MouseUtils_MouseHighlighter_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to turn on or off this mode</value> <comment>"Mouse Highlighter" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_MouseHighlighter_PrimaryButtonClickColor.Header" xml:space="preserve"> <value>Primary button highlight color</value> </data> <data name="MouseUtils_MouseHighlighter_SecondaryButtonClickColor.Header" xml:space="preserve"> <value>Secondary button highlight color</value> </data> <data name="MouseUtils_MouseHighlighter_HighlightRadius.Header" xml:space="preserve"> <value>Radius (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDelayMs.Header" xml:space="preserve"> <value>Fade delay (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDelayMs.Description" xml:space="preserve"> <value>Time before the highlight begins to fade (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDurationMs.Header" xml:space="preserve"> <value>Fade duration (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDurationMs.Description" xml:space="preserve"> <value>Duration of the disappear animation (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MousePointerCrosshairs.Header" xml:space="preserve"> <value>Mouse Pointer Crosshairs</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_MousePointerCrosshairs.Description" xml:space="preserve"> <value>Mouse Pointer Crosshairs draws crosshairs centered on the mouse pointer.</value> <comment>"Mouse Pointer Crosshairs" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_Enable_MousePointerCrosshairs.Header" xml:space="preserve"> <value>Enable Mouse Pointer Crosshairs</value> <comment>"Mouse Pointer Crosshairs" is the name of the utility.</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MouseUtils_MousePointerCrosshairs_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to show/hide the crosshairs</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsColor.Header" xml:space="preserve"> <value>Crosshairs color</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsOpacity.Header" xml:space="preserve"> <value>Crosshairs opacity (%)</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsRadius.Header" xml:space="preserve"> <value>Crosshairs center radius (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsThickness.Header" xml:space="preserve"> <value>Crosshairs thickness (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsBorderColor.Header" xml:space="preserve"> <value>Crosshairs border color</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsBorderSize.Header" xml:space="preserve"> <value>Crosshairs border size (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_IsCrosshairsFixedLengthEnabled.Header" xml:space="preserve"> <value>Fix crosshairs length</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsFixedLength.Header" xml:space="preserve"> <value>Crosshairs fixed length (px)</value> <comment>px = pixels</comment> </data> <data name="FancyZones_Radio_Custom_Colors.Content" xml:space="preserve"> <value>Custom colors</value> </data> <data name="FancyZones_Radio_Default_Theme.Content" xml:space="preserve"> <value>Windows default</value> </data> <data name="ColorModeHeader.Header" xml:space="preserve"> <value>App theme</value> </data> <data name="FancyZones_Zone_Appearance.Description" xml:space="preserve"> <value>Customize the way zones look</value> </data> <data name="FancyZones_Zone_Appearance.Header" xml:space="preserve"> <value>Zone appearance</value> </data> <data name="VideoConference_DeprecationWarning.Title" xml:space="preserve"> <value>VCM is moving into legacy mode (maintenance only).</value> </data> <data name="VideoConference_DeprecationWarningButton.Content" xml:space="preserve"> <value>Learn more</value> </data> <data name="LearnMore.Content" xml:space="preserve"> <value>Learn more</value> </data> <data name="VideoConference_RunAsAdminRequired.Title" xml:space="preserve"> <value>You need to run as administrator to modify these settings.</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_GCODE.Header" xml:space="preserve"> <value>Geometric Code</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_GCODE.Description" xml:space="preserve"> <value>Only .gcode files with embedded thumbnails are supported</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_GCODE.Header" xml:space="preserve"> <value>Geometric Code</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_GCODE.Description" xml:space="preserve"> <value>Only .gcode files with embedded thumbnails are supported</value> </data> <data name="FancyZones_NumberColor.Header" xml:space="preserve"> <value>Number color</value> </data> <data name="FancyZones_ShowZoneNumberCheckBoxControl.Content" xml:space="preserve"> <value>Show zone number</value> </data> <data name="ToggleSwitch.OffContent" xml:space="preserve"> <value>Off</value> <comment>The state of a ToggleSwitch when it's off</comment> </data> <data name="ToggleSwitch.OnContent" xml:space="preserve"> <value>On</value> <comment>The state of a ToggleSwitch when it's on</comment> </data> <data name="CropAndLock.ModuleDescription" xml:space="preserve"> <value>Crop And Lock allows you to crop a current application into a smaller window or just create a thumbnail. Focus the target window and press the shortcut to start cropping.</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="CropAndLock.ModuleTitle" xml:space="preserve"> <value>Crop And Lock </value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="CropAndLock_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="CropAndLock_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="Shell_CropAndLock.Content" xml:space="preserve"> <value>Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="LearnMore_CropAndLock.Text" xml:space="preserve"> <value>Learn more about Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="CropAndLock_ReparentActivation_Shortcut.Header" xml:space="preserve"> <value>Reparent shortcut</value> </data> <data name="CropAndLock_ReparentActivation_Shortcut.Description" xml:space="preserve"> <value>Shortcut to crop an application's window into a cropped window. This is experimental and can cause issues with some applications, since the cropped window will contain the original application window.</value> </data> <data name="CropAndLock_ThumbnailActivation_Shortcut.Header" xml:space="preserve"> <value>Thumbnail shortcut</value> </data> <data name="CropAndLock_ThumbnailActivation_Shortcut.Description" xml:space="preserve"> <value>Shortcut to crop and create a thumbnail of another window. The application isn't controllable through the thumbnail but it'll have less compatibility issues. </value> </data> <data name="CropAndLock.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="Oobe_CropAndLock.Title" xml:space="preserve"> <value>Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="Oobe_CropAndLock.Description" xml:space="preserve"> <value>Crop And Lock allows you to crop a current application into a smaller window or just create a thumbnail. Focus the target window and press the shortcut to start cropping.</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="Oobe_CropAndLock_HowToUse_Thumbnail.Text" xml:space="preserve"> <value>to crop and create a thumbnail of another window. The application isn't controllable through the thumbnail but it'll have less compatibility issues.</value> </data> <data name="Oobe_CropAndLock_HowToUse_Reparent.Text" xml:space="preserve"> <value>to crop an application's window into a cropped window. This is experimental and can cause issues with some applications, since the cropped window will contain the original application window.</value> </data> <data name="AlwaysOnTop.ModuleDescription" xml:space="preserve"> <value>Always On Top is a quick and easy way to pin windows on top.</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop.ModuleTitle" xml:space="preserve"> <value>Always On Top </value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="Peek_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="AlwaysOnTop_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_ExcludedApps.Description" xml:space="preserve"> <value>Excludes an application from pinning on top</value> </data> <data name="AlwaysOnTop_ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="AlwaysOnTop_ExcludedApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> </data> <data name="AlwaysOnTop_FrameColor.Header" xml:space="preserve"> <value>Color</value> </data> <data name="AlwaysOnTop_FrameEnabled.Header" xml:space="preserve"> <value>Show a border around the pinned window</value> </data> <data name="AlwaysOnTop_FrameThickness.Header" xml:space="preserve"> <value>Thickness (px)</value> <comment>px = pixels</comment> </data> <data name="AlwaysOnTop_Behavior_GroupSettings.Header" xml:space="preserve"> <value>Appearance &amp; behavior</value> </data> <data name="Shell_AlwaysOnTop.Content" xml:space="preserve"> <value>Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_GameMode.Content" xml:space="preserve"> <value>Do not activate when Game Mode is on</value> <comment>Game Mode is a Windows feature</comment> </data> <data name="AlwaysOnTop_SoundTitle.Header" xml:space="preserve"> <value>Sound</value> </data> <data name="AlwaysOnTop_Sound.Content" xml:space="preserve"> <value>Play a sound when pinning a window</value> </data> <data name="AlwaysOnTop_Behavior.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="LearnMore_AlwaysOnTop.Text" xml:space="preserve"> <value>Learn more about Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="AlwaysOnTop_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to pin or unpin an app window</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="Oobe_AlwaysOnTop.Title" xml:space="preserve"> <value>Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="Oobe_AlwaysOnTop.Description" xml:space="preserve"> <value>Always On Top improves your multitasking workflow by pinning an application window so it's always in front - even when focus changes to another window after that.</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="Oobe_AlwaysOnTop_HowToUse.Text" xml:space="preserve"> <value>to pin or unpin the selected window so it's always on top of all other windows.</value> </data> <data name="Oobe_AlwaysOnTop_TipsAndTricks.Text" xml:space="preserve"> <value>You can tweak the visual outline of the pinned windows in PowerToys settings.</value> </data> <data name="AlwaysOnTop_FrameColor_Mode.Header" xml:space="preserve"> <value>Color mode</value> </data> <data name="AlwaysOnTop_Radio_Custom_Color.Content" xml:space="preserve"> <value>Custom color</value> </data> <data name="AlwaysOnTop_Radio_Windows_Default.Content" xml:space="preserve"> <value>Windows default</value> </data> <data name="FileExplorerPreview.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Monaco_Wrap_Text.Content" xml:space="preserve"> <value>Wrap text</value> <comment>Feature on or off</comment> </data> <data name="FancyZones_AllowPopupWindowSnap.Description" xml:space="preserve"> <value>This setting can affect all popup windows including notifications</value> </data> <data name="FancyZones_AllowPopupWindowSnap.Header" xml:space="preserve"> <value>Allow popup windows snapping</value> </data> <data name="FancyZones_AllowChildWindowSnap.Content" xml:space="preserve"> <value>Allow child windows snapping</value> </data> <data name="Shell_WhatsNew.Content" xml:space="preserve"> <value>What's new</value> </data> <data name="Shell_Peek.Content" xml:space="preserve"> <value>Peek</value> <comment>Product name: Navigation view item name for Peek</comment> </data> <data name="Peek.ModuleTitle" xml:space="preserve"> <value>Peek</value> </data> <data name="Peek.ModuleDescription" xml:space="preserve"> <value>Peek is a quick and easy way to preview files. Select a file in File Explorer and press the shortcut to open the file preview.</value> </data> <data name="Peek_EnablePeek.Header" xml:space="preserve"> <value>Enable Peek</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="Peek_BehaviorHeader.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="Peek_AlwaysRunNotElevated.Header" xml:space="preserve"> <value>Always run not elevated, even when PowerToys is elevated</value> </data> <data name="Peek_AlwaysRunNotElevated.Description" xml:space="preserve"> <value>Tries to run Peek without elevated permissions, to fix access to network shares. You need to disable and re-enable Peek for changes to this value to take effect.</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="Peek_CloseAfterLosingFocus.Header" xml:space="preserve"> <value>Automatically close the Peek window after it loses focus</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="FancyZones_DisableRoundCornersOnWindowSnap.Content" xml:space="preserve"> <value>Disable round corners when window is snapped</value> </data> <data name="PowerLauncher_SearchQueryTuningEnabled.Description" xml:space="preserve"> <value>Fine tune results ordering</value> </data> <data name="PowerLauncher_SearchQueryTuningEnabled.Header" xml:space="preserve"> <value>Results order tuning</value> </data> <data name="PowerLauncher_SearchClickedItemWeight.Description" xml:space="preserve"> <value>Use a higher number to get selected results to rise faster. The default is 5, 0 to disable.</value> </data> <data name="PowerLauncher_SearchClickedItemWeight.Header" xml:space="preserve"> <value>Selected item weight</value> </data> <data name="PowerLauncher_WaitForSlowResults.Description" xml:space="preserve"> <value>Selecting this can help preselect the top, more relevant result, but at the risk of jumpiness</value> </data> <data name="PowerLauncher_WaitForSlowResults.Header" xml:space="preserve"> <value>Wait on slower plugin results before selecting top item in results</value> </data> <data name="PowerLauncher_PluginWeightBoost.Description" xml:space="preserve"> <value>Use a higher number to have this plugin's result show higher in the global results. Default is 0.</value> </data> <data name="PowerLauncher_PluginWeightBoost.Header" xml:space="preserve"> <value>Global sort order score modifier</value> </data> <data name="AlwaysOnTop_RoundCorners.Content" xml:space="preserve"> <value>Enable round corners</value> </data> <data name="LearnMore_QuickAccent.Text" xml:space="preserve"> <value>Learn more about Quick Accent</value> <comment>Quick Accent is a product name, do not loc</comment> </data> <data name="QuickAccent_EnableQuickAccent.Header" xml:space="preserve"> <value>Enable Quick Accent</value> </data> <data name="Shell_QuickAccent.Content" xml:space="preserve"> <value>Quick Accent</value> </data> <data name="QuickAccent.ModuleDescription" xml:space="preserve"> <value>Quick Accent is an alternative way to type accented characters, useful for when a keyboard doesn't support that specific accent. Activate by holding the key for the character you want to add an accent to, then press the activation key (space, left or right arrow keys) and an overlay to select accented characters will appear!</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent.ModuleTitle" xml:space="preserve"> <value>Quick Accent</value> </data> <data name="QuickAccent.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> </data> <data name="AlwaysOnTop_ShortDescription" xml:space="preserve"> <value>Pin a window</value> </data> <data name="Awake_ShortDescription" xml:space="preserve"> <value>Keep your PC awake</value> </data> <data name="ColorPicker_ShortDescription" xml:space="preserve"> <value>Pick a color</value> </data> <data name="CropAndLock_Thumbnail" xml:space="preserve"> <value>Thumbnail</value> </data> <data name="CropAndLock_Reparent" xml:space="preserve"> <value>Reparent</value> </data> <data name="FancyZones_OpenEditor" xml:space="preserve"> <value>Open editor</value> </data> <data name="FileLocksmith_ShortDescription" xml:space="preserve"> <value>Right-click on files or directories to show running processes</value> </data> <data name="FindMyMouse_ShortDescription" xml:space="preserve"> <value>Find the mouse</value> </data> <data name="ImageResizer_ShortDescription" xml:space="preserve"> <value>Select Image Resizer in the right-click context menu</value> </data> <data name="MouseHighlighter_ShortDescription" xml:space="preserve"> <value>Highlight clicks</value> </data> <data name="MouseJump_ShortDescription" xml:space="preserve"> <value>Quickly move the mouse pointer</value> </data> <data name="MouseCrosshairs_ShortDescription" xml:space="preserve"> <value>Draw crosshairs centered on the mouse pointer</value> </data> <data name="MouseWithoutBorders_ShortDescription" xml:space="preserve"> <value>Move your cursor across multiple devices</value> </data> <data name="PastePlain_ShortDescription" xml:space="preserve"> <value>Paste clipboard content without formatting</value> </data> <data name="Peek_ShortDescription" xml:space="preserve"> <value>Quick and easy previewer</value> </data> <data name="PowerRename_ShortDescription" xml:space="preserve"> <value>Select Power Rename in right-click context menu</value> </data> <data name="Run_ShortDescription" xml:space="preserve"> <value>A quick launcher</value> </data> <data name="PowerAccent_ShortDescription" xml:space="preserve"> <value>An alternative way to type accented characters</value> </data> <data name="RegistryPreview_ShortDescription" xml:space="preserve"> <value>Visualize and edit Windows Registry files</value> </data> <data name="ScreenRuler_ShortDescription" xml:space="preserve"> <value>Measure pixels on your screen</value> </data> <data name="ShortcutGuide_ShortDescription" xml:space="preserve"> <value>Show a help overlay with Windows shortcuts</value> </data> <data name="PowerOcr_ShortDescription" xml:space="preserve"> <value>A convenient way to copy text from anywhere on screen</value> </data> <data name="Dashboard_Activation" xml:space="preserve"> <value>Activation</value> </data> <data name="DashboardKBMShowMappingsButton.Content" xml:space="preserve"> <value>Show remappings</value> </data> <data name="Oobe_QuickAccent.Description" xml:space="preserve"> <value>Quick Accent is an easy way to write letters with accents, like on a smartphone.</value> </data> <data name="Oobe_QuickAccent.Title" xml:space="preserve"> <value>Quick Accent</value> </data> <data name="Oobe_QuickAccent_HowToUse.Text" xml:space="preserve"> <value>Open **PowerToys Settings** and enable Quick Accent. While holding the key for the character you want to add an accent to, press the Activation Key and an overlay to select the accented character will appear.</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="QuickAccent_Activation_Shortcut.Header" xml:space="preserve"> <value>Activation key</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent_Activation_Shortcut.Description" xml:space="preserve"> <value>Press this key after holding down the target letter</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent_Activation_Key_Arrows.Content" xml:space="preserve"> <value>Left/Right Arrow</value> <comment>Left/Right arrow keyboard keys</comment> </data> <data name="QuickAccent_Activation_Key_Space.Content" xml:space="preserve"> <value>Space</value> <comment>Space is the space keyboard key</comment> </data> <data name="QuickAccent_Activation_Key_Either.Content" xml:space="preserve"> <value>Left, Right or Space</value> <comment>All are keys on a keyboard</comment> </data> <data name="QuickAccent_Toolbar.Header" xml:space="preserve"> <value>Toolbar</value> </data> <data name="QuickAccent_ToolbarPosition.Header" xml:space="preserve"> <value>Toolbar position</value> </data> <data name="QuickAccent_ToolbarPosition_TopCenter.Content" xml:space="preserve"> <value>Top center</value> </data> <data name="QuickAccent_ToolbarPosition_TopLeftCorner.Content" xml:space="preserve"> <value>Top left corner</value> </data> <data name="QuickAccent_ToolbarPosition_TopRightCorner.Content" xml:space="preserve"> <value>Top right corner</value> </data> <data name="QuickAccent_ToolbarPosition_BottomLeftCorner.Content" xml:space="preserve"> <value>Bottom left corner</value> </data> <data name="QuickAccent_ToolbarPosition_BottomCenter.Content" xml:space="preserve"> <value>Bottom center</value> </data> <data name="QuickAccent_ToolbarPosition_BottomRightCorner.Content" xml:space="preserve"> <value>Bottom right corner</value> </data> <data name="QuickAccent_ToolbarPosition_Center.Content" xml:space="preserve"> <value>Center</value> </data> <data name="QuickAccent_ToolbarPosition_Left.Content" xml:space="preserve"> <value>Left</value> </data> <data name="QuickAccent_ToolbarPosition_Right.Content" xml:space="preserve"> <value>Right</value> </data> <data name="QuickAccent_Behavior.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="QuickAccent_InputTimeMs.Header" xml:space="preserve"> <value>Input delay (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="QuickAccent_InputTimeMs.Description" xml:space="preserve"> <value>Hold the key down for this much time to make the accent menu appear (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="QuickAccent_ExcludedApps.Description" xml:space="preserve"> <value>Prevents module activation if a foreground application is excluded. Add one application name per line.</value> </data> <data name="QuickAccent_ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="QuickAccent_ExcludedApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: Teams.exe</value> </data> <data name="LearnMore_TextExtractor.Text" xml:space="preserve"> <value>Learn more about Text Extractor</value> </data> <data name="TextExtractor_Cancel" xml:space="preserve"> <value>cancel</value> </data> <data name="General_SettingsBackupAndRestore_NothingToBackup" xml:space="preserve"> <value>A new backup was not created because no settings have been changed since last backup.</value> </data> <data name="General_SettingsBackupAndRestore_NoBackupFound" xml:space="preserve"> <value>No backup found</value> </data> <data name="General_SettingsBackupAndRestore_FailedToParseTime" xml:space="preserve"> <value>Failed to parse time</value> </data> <data name="General_SettingsBackupAndRestore_UnknownBackupTime" xml:space="preserve"> <value>Unknown</value> </data> <data name="General_SettingsBackupAndRestore_UnknownBackupSource" xml:space="preserve"> <value>Unknown</value> </data> <data name="General_SettingsBackupAndRestore_ThisMachine" xml:space="preserve"> <value>This computer</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsMatch" xml:space="preserve"> <value>Current settings match</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsStatusAt" xml:space="preserve"> <value>at</value> <comment>E.g., Food was served 'at' noon.</comment> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsDiffer" xml:space="preserve"> <value>Current settings differ</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsNoChecked" xml:space="preserve"> <value>Checking...</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsUnknown" xml:space="preserve"> <value>Unknown</value> </data> <data name="General_SettingsBackupAndRestore_NeverRestored" xml:space="preserve"> <value>Never restored</value> </data> <data name="General_SettingsBackupAndRestore_NothingToRestore" xml:space="preserve"> <value>Nothing to restore.</value> </data> <data name="General_SettingsBackupAndRestore_NoSettingsFilesFound" xml:space="preserve"> <value>No settings files found.</value> </data> <data name="General_SettingsBackupAndRestore_BackupError" xml:space="preserve"> <value>There was an error. Try another backup location.</value> </data> <data name="General_SettingsBackupAndRestore_SettingsFormatError" xml:space="preserve"> <value>There was an error in the settings format. Please check the settings file:</value> </data> <data name="General_SettingsBackupAndRestore_BackupComplete" xml:space="preserve"> <value>Backup completed.</value> </data> <data name="General_SettingsBackupAndRestore_NoBackupSyncPath" xml:space="preserve"> <value>No backup location selected.</value> </data> <data name="General_SettingsBackupAndRestore_NoBackupsFound" xml:space="preserve"> <value>No backups found to restore.</value> </data> <data name="General_SettingsBackupAndRestore_InvalidBackupLocation" xml:space="preserve"> <value>Invalid backup location.</value> </data> <data name="TextExtractor.ModuleDescription" xml:space="preserve"> <value>Text Extractor is a convenient way to copy text from anywhere on screen</value> </data> <data name="TextExtractor.ModuleTitle" xml:space="preserve"> <value>Text Extractor</value> </data> <data name="TextExtractor_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Text Extractor</value> </data> <data name="TextExtractor_SupportedLanguages.Title" xml:space="preserve"> <value>Text Extractor can only recognize languages that have the OCR pack installed.</value> </data> <data name="TextExtractor_SupportedLanguages_Link.Content" xml:space="preserve"> <value>Learn more about supported languages</value> </data> <data name="Shell_TextExtractor.Content" xml:space="preserve"> <value>Text Extractor</value> </data> <data name="Launch_TextExtractor.Content" xml:space="preserve"> <value>Launch Text Extractor</value> </data> <data name="Oobe_TextExtractor.Title" xml:space="preserve"> <value>Text Extractor</value> </data> <data name="Oobe_TextExtractor_HowToUse.Text" xml:space="preserve"> <value>to open Text Extractor and then selecting a region to copy the text from.</value> </data> <data name="Oobe_TextExtractor_TipsAndTricks.Text" xml:space="preserve"> <value>Hold the shift key to move the selection region around.</value> </data> <data name="TextExtractor.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> </data> <data name="Oobe_TextExtractor.Description" xml:space="preserve"> <value>Text Extractor works like Snipping Tool, but copies the text out of the selected region using OCR and puts it on the clipboard.</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Monaco_Try_Format.Description" xml:space="preserve"> <value>Applies to json and xml. Files remain unchanged.</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Monaco_Try_Format.Header" xml:space="preserve"> <value>Try to format the source for preview</value> </data> <data name="Run_ConflictingKeywordInfo.Title" xml:space="preserve"> <value>Some characters and phrases may conflict with global queries of other plugins if you use them as activation command.</value> </data> <data name="Run_ConflictingKeywordInfo_Link.Content" xml:space="preserve"> <value>Learn more about conflicting activation commands</value> </data> <data name="MeasureTool_ContinuousCapture_Information.Title" xml:space="preserve"> <value>The continuous capture mode will consume more resources when in use. Also, measurements will be excluded from screenshots and screen capture.</value> <comment>pointer as in mouse pointer. Resources refer to things like CPU, GPU, RAM</comment> </data> <data name="QuickAccent_Description_Indicator.Header" xml:space="preserve"> <value>Show the Unicode code and name of the currently selected character</value> </data> <data name="QuickAccent_SortByUsageFrequency_Indicator.Header" xml:space="preserve"> <value>Sort characters by usage frequency</value> </data> <data name="QuickAccent_SortByUsageFrequency_Indicator.Description" xml:space="preserve"> <value>Track characters usage frequency and sort them accordingly</value> </data> <data name="QuickAccent_StartSelectionFromTheLeft_Indicator.Header" xml:space="preserve"> <value>Start selection from the left</value> </data> <data name="QuickAccent_StartSelectionFromTheLeft_Indicator.Description" xml:space="preserve"> <value>Start selection from the leftmost character for all activation keys, including left and right arrows</value> </data> <data name="QuickAccent_DisableFullscreen.Header" xml:space="preserve"> <value>Disable when Game Mode is On</value> </data> <data name="QuickAccent_Language.Header" xml:space="preserve"> <value>Characters</value> </data> <data name="QuickAccent_SelectedLanguage.Header" xml:space="preserve"> <value>Choose a character set</value> </data> <data name="QuickAccent_SelectedLanguage.Description" xml:space="preserve"> <value>Show only accented characters common to the selected set</value> </data> <data name="QuickAccent_SelectedLanguage_All.Content" xml:space="preserve"> <value>All available</value> </data> <data name="QuickAccent_SelectedLanguage_Catalan.Content" xml:space="preserve"> <value>Catalan</value> </data> <data name="QuickAccent_SelectedLanguage_Currency.Content" xml:space="preserve"> <value>Currency</value> </data> <data name="QuickAccent_SelectedLanguage_Croatian.Content" xml:space="preserve"> <value>Croatian</value> </data> <data name="QuickAccent_SelectedLanguage_Czech.Content" xml:space="preserve"> <value>Czech</value> </data> <data name="QuickAccent_SelectedLanguage_Gaeilge.Content" xml:space="preserve"> <value>Gaeilge</value> <comment>Gaelic language spoken in Ireland</comment> </data> <data name="QuickAccent_SelectedLanguage_Gaidhlig.Content" xml:space="preserve"> <value>Gàidhlig</value> <comment>Scottish Gaelic</comment> </data> <data name="QuickAccent_SelectedLanguage_German.Content" xml:space="preserve"> <value>German</value> </data> <data name="QuickAccent_SelectedLanguage_Hebrew.Content" xml:space="preserve"> <value>Hebrew</value> </data> <data name="QuickAccent_SelectedLanguage_French.Content" xml:space="preserve"> <value>French</value> </data> <data name="QuickAccent_SelectedLanguage_Estonian.Content" xml:space="preserve"> <value>Estonian</value> </data> <data name="QuickAccent_SelectedLanguage_Lithuanian.Content" xml:space="preserve"> <value>Lithuanian</value> </data> <data name="QuickAccent_SelectedLanguage_Macedonian.Content" xml:space="preserve"> <value>Macedonian</value> </data> <data name="QuickAccent_SelectedLanguage_Maori.Content" xml:space="preserve"> <value>Maori</value> </data> <data name="QuickAccent_SelectedLanguage_Dutch.Content" xml:space="preserve"> <value>Dutch</value> </data> <data name="QuickAccent_SelectedLanguage_Norwegian.Content" xml:space="preserve"> <value>Norwegian</value> </data> <data name="QuickAccent_SelectedLanguage_Pinyin.Content" xml:space="preserve"> <value>Pinyin</value> </data> <data name="QuickAccent_SelectedLanguage_Polish.Content" xml:space="preserve"> <value>Polish</value> </data> <data name="QuickAccent_SelectedLanguage_Portuguese.Content" xml:space="preserve"> <value>Portuguese</value> </data> <data name="QuickAccent_SelectedLanguage_Slovakian.Content" xml:space="preserve"> <value>Slovakian</value> </data> <data name="QuickAccent_SelectedLanguage_Spanish.Content" xml:space="preserve"> <value>Spanish</value> </data> <data name="QuickAccent_SelectedLanguage_Swedish.Content" xml:space="preserve"> <value>Swedish</value> </data> <data name="QuickAccent_SelectedLanguage_Turkish.Content" xml:space="preserve"> <value>Turkish</value> </data> <data name="QuickAccent_SelectedLanguage_Icelandic.Content" xml:space="preserve"> <value>Icelandic</value> </data> <data name="QuickAccent_SelectedLanguage_Romanian.Content" xml:space="preserve"> <value>Romanian</value> </data> <data name="QuickAccent_SelectedLanguage_Serbian.Content" xml:space="preserve"> <value>Serbian</value> </data> <data name="QuickAccent_SelectedLanguage_Hungarian.Content" xml:space="preserve"> <value>Hungarian</value> </data> <data name="QuickAccent_SelectedLanguage_Italian.Content" xml:space="preserve"> <value>Italian</value> </data> <data name="QuickAccent_SelectedLanguage_Kurdish.Content" xml:space="preserve"> <value>Kurdish</value> </data> <data name="QuickAccent_SelectedLanguage_Welsh.Content" xml:space="preserve"> <value>Welsh</value> </data> <data name="Hosts.ModuleDescription" xml:space="preserve"> <value>Quick and simple utility for managing hosts file.</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Hosts.ModuleTitle" xml:space="preserve"> <value>Hosts File Editor</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Shell_Hosts.Content" xml:space="preserve"> <value>Hosts File Editor</value> <comment>Products name: Navigation view item name for Hosts File Editor</comment> </data> <data name="Hosts_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Hosts_Toggle_ShowStartupWarning.Header" xml:space="preserve"> <value>Show a warning at startup</value> </data> <data name="Hosts_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="Hosts_LaunchButtonControl.Description" xml:space="preserve"> <value>Manage your hosts file</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Hosts_LaunchButtonControl.Header" xml:space="preserve"> <value>Launch Host File Editor</value> <comment>"Host File Editor" is a product name</comment> </data> <data name="Hosts_LaunchButton_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Launch Host File Editor</value> <comment>"Host File Editor" is a product name</comment> </data> <data name="Hosts_AdditionalLinesPosition.Header" xml:space="preserve"> <value>Position of additional content</value> </data> <data name="Hosts_AdditionalLinesPosition_Bottom.Content" xml:space="preserve"> <value>Bottom</value> </data> <data name="Hosts_AdditionalLinesPosition_Top.Content" xml:space="preserve"> <value>Top</value> </data> <data name="Hosts_Behavior_GroupSettings.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="Launch_Hosts.Content" xml:space="preserve"> <value>Launch Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="LearnMore_Hosts.Text" xml:space="preserve"> <value>Learn more about Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Oobe_Hosts.Description" xml:space="preserve"> <value>Hosts File Editor is a quick and simple utility for managing hosts file.</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Oobe_Hosts.Title" xml:space="preserve"> <value>Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Hosts_Toggle_LaunchAdministrator.Description" xml:space="preserve"> <value>Needs to be launched as administrator in order to make changes to the hosts file</value> </data> <data name="Hosts_Toggle_LaunchAdministrator.Header" xml:space="preserve"> <value>Launch as administrator</value> </data> <data name="ShortcutGuide_PressTimeForTaskbarIconShortcuts.Header" xml:space="preserve"> <value>Press duration before showing taskbar icon shortcuts (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="FileLocksmith.ModuleDescription" xml:space="preserve"> <value>A Windows shell extension to find out which processes are using the selected files and directories.</value> </data> <data name="FileLocksmith.ModuleTitle" xml:space="preserve"> <value>File Locksmith</value> </data> <data name="Shell_FileLocksmith.Content" xml:space="preserve"> <value>File Locksmith</value> <comment>Product name: Navigation view item name for FileLocksmith</comment> </data> <data name="FileLocksmith_Enable_FileLocksmith.Header" xml:space="preserve"> <value>Enable File Locksmith</value> <comment>File Locksmith is the name of the utility</comment> </data> <data name="FileLocksmith_Toggle_StandardContextMenu.Content" xml:space="preserve"> <value>Default and extended context menu</value> </data> <data name="FileLocksmith_Toggle_ExtendedContextMenu.Content" xml:space="preserve"> <value>Extended context menu only</value> </data> <data name="FileLocksmith_Toggle_ContextMenu.Header" xml:space="preserve"> <value>Show File Locksmith in</value> </data> <data name="FileLocksmith_ShellIntegration.Header" xml:space="preserve"> <value>Shell integration</value> <comment>This refers to directly integrating in with Windows</comment> </data> <data name="GPO_IsSettingForced.Title" xml:space="preserve"> <value>This setting is enforced by your System Administrator.</value> </data> <data name="Hosts_AdditionalLinesPosition.Description" xml:space="preserve"> <value>Additional content includes the file header and lines that can't parse</value> </data> <data name="TextExtractor_Languages.Header" xml:space="preserve"> <value>Preferred language</value> </data> <data name="Alternate_OOBE_AlwaysOnTop_Description.Text" xml:space="preserve"> <value>Pin a window so that:</value> </data> <data name="Alternate_OOBE_AlwaysOnTop_Title.Text" xml:space="preserve"> <value>Always On Top</value> </data> <data name="Alternate_OOBE_ColorPicker_Description.Text" xml:space="preserve"> <value>To pick a color:</value> </data> <data name="Alternate_OOBE_ColorPicker_Title.Text" xml:space="preserve"> <value>Color Picker</value> </data> <data name="Alternate_OOBE_Description.Text" xml:space="preserve"> <value>Here are a few shortcuts to get you started:</value> </data> <data name="Alternate_OOBE_FancyZones_Description.Text" xml:space="preserve"> <value>To open the FancyZones editor, press:</value> </data> <data name="Alternate_OOBE_FancyZones_Title.Text" xml:space="preserve"> <value>FancyZones</value> </data> <data name="Alternate_OOBE_Run_Description.Text" xml:space="preserve"> <value>Get access to your files and more:</value> </data> <data name="Alternate_OOBE_Run_Title.Text" xml:space="preserve"> <value>PowerToys Run</value> </data> <data name="General_Experimentation.Header" xml:space="preserve"> <value>Experimentation</value> </data> <data name="GeneralPage_EnableExperimentation.Description" xml:space="preserve"> <value>Note: Only Windows Insider builds may be selected for experimentation</value> </data> <data name="GeneralPage_EnableExperimentation.Header" xml:space="preserve"> <value>Allow experimentation with new features</value> </data> <data name="GPO_ExperimentationIsDisallowed.Title" xml:space="preserve"> <value>The system administrator has disabled experimentation.</value> </data> <data name="Shell_PastePlain.Content" xml:space="preserve"> <value>Paste As Plain Text</value> <comment>Product name: Navigation view item name for Paste as Plain Text</comment> </data> <data name="PastePlain.ModuleDescription" xml:space="preserve"> <value>Paste As Plain Text is a quick shortcut for pasting the text contents of your clipboard without formatting. Note: the formatted text in the clipboard is replaced with the unformatted text.</value> </data> <data name="PastePlain.ModuleTitle" xml:space="preserve"> <value>Paste As Plain Text</value> </data> <data name="PastePlain_Cancel" xml:space="preserve"> <value>cancel</value> </data> <data name="PastePlain_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Paste As Plain Text</value> </data> <data name="Oobe_PastePlain.Description" xml:space="preserve"> <value>Paste As Plain Text strips rich formatting from your clipboard data and pastes it as non-formatted text.</value> </data> <data name="Oobe_PastePlain.Title" xml:space="preserve"> <value>Paste As Plain Text</value> </data> <data name="Oobe_PastePlain_HowToUse.Text" xml:space="preserve"> <value>to paste your clipboard data as plain text. Note: this will replace the formatted text in your clipboard with the plain text.</value> </data> <data name="AllAppsTxt.Text" xml:space="preserve"> <value>All apps</value> </data> <data name="BackBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Back</value> </data> <data name="BackLabel.Text" xml:space="preserve"> <value>Back</value> </data> <data name="BugReportBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Bug report</value> </data> <data name="BugReportTooltip.Text" xml:space="preserve"> <value>Bug report</value> </data> <data name="DocsBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Documentation</value> </data> <data name="DocsTooltip.Text" xml:space="preserve"> <value>Documentation</value> </data> <data name="FZEditorString" xml:space="preserve"> <value>FancyZones Editor</value> <comment>Do not localize this string</comment> </data> <data name="MoreBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>More</value> </data> <data name="MoreLabel.Text" xml:space="preserve"> <value>More</value> </data> <data name="SettingsBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Settings</value> </data> <data name="SettingsTooltip.Text" xml:space="preserve"> <value>Settings</value> </data> <data name="ShortcutsTxt.Text" xml:space="preserve"> <value>Shortcuts</value> </data> <data name="UpdateAvailable.Title" xml:space="preserve"> <value>Update available</value> </data> <data name="FileExplorerPreview_Toggle_Monaco_Max_File_Size.Header" xml:space="preserve"> <value>Maximum file size to preview</value> <comment>Size refers to the disk space used by a file</comment> </data> <data name="FileExplorerPreview_Toggle_Monaco_Max_File_Size.Description" xml:space="preserve"> <value>The maximum size, in kilobytes, for files to be displayed. This is a safety mechanism to prevent loading large files into RAM.</value> <comment>"RAM" refers to random access memory; "size" refers to disk space; "bytes" refer to the measurement unit</comment> </data> <data name="RegistryPreview.ModuleDescription" xml:space="preserve"> <value>A quick little utility to visualize and edit complex Windows Registry files.</value> </data> <data name="RegistryPreview.ModuleTitle" xml:space="preserve"> <value>Registry Preview</value> </data> <data name="Shell_RegistryPreview.Content" xml:space="preserve"> <value>Registry Preview</value> <comment>Product name: Navigation view item name for Registry Preview</comment> </data> <data name="RegistryPreview_Enable_RegistryPreview.Header" xml:space="preserve"> <value>Enable Registry Preview</value> <comment>Registry Preview is the name of the utility</comment> </data> <data name="Oobe_RegistryPreview_HowToUse.Text" xml:space="preserve"> <value>In File Explorer, right-click a .REG file and select **Preview** from the context menu.</value> </data> <data name="Oobe_RegistryPreview_TipsAndTricks.Text" xml:space="preserve"> <value>You can preview or edit Registry files in File Explorer or by opening the app from the PowerToys launcher.</value> </data> <data name="Oobe_RegistryPreview.Description" xml:space="preserve"> <value>Registry Preview is a quick little utility to visualize and edit complex Windows Registry files.</value> </data> <data name="Oobe_RegistryPreview.Title" xml:space="preserve"> <value>Registry Preview</value> <comment>Do not localize this string</comment> </data> <data name="LearnMore_RegistryPreview.Text" xml:space="preserve"> <value>Learn more about Registry Preview</value> <comment>Registry Preview is a product name, do not loc</comment> </data> <data name="Launch_RegistryPreview.Content" xml:space="preserve"> <value>Launch Registry Preview</value> <comment>"Registry Preview" is the name of the utility</comment> </data> <data name="MouseUtils_MouseJump.Description" xml:space="preserve"> <value>Quickly move the mouse pointer long distances.</value> <comment>"Mouse Jump" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_MouseJump.Header" xml:space="preserve"> <value>Mouse Jump</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_MouseJump_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to turn on or off this mode</value> </data> <data name="MouseUtils_MouseJump_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MouseUtils_Enable_MouseJump.Header" xml:space="preserve"> <value>Enable Mouse Jump</value> <comment>"Mouse Jump" is the name of the utility.</comment> </data> <data name="GPO_AutoDownloadUpdatesIsDisabled.Title" xml:space="preserve"> <value>The system administrator has disabled the automatic download of updates.</value> </data> <data name="Hosts_Toggle_LoopbackDuplicates.Description" xml:space="preserve"> <value>127.0.0.1, ::1, ...</value> <comment>"127.0.0.1 and ::1" are well known loopback addresses, do not loc</comment> </data> <data name="Hosts_Toggle_LoopbackDuplicates.Header" xml:space="preserve"> <value>Consider loopback addresses as duplicates</value> </data> <data name="RegistryPreview_Launch_GroupSettings.Header" xml:space="preserve"> <value>Launch</value> </data> <data name="RegistryPreview_LaunchButton_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Launch Registry Preview</value> </data> <data name="RegistryPreview_LaunchButtonControl.Header" xml:space="preserve"> <value>Launch Registry Preview</value> </data> <data name="RegistryPreview_DefaultRegApp.Header" xml:space="preserve"> <value>Default app</value> </data> <data name="RegistryPreview_DefaultRegApp.Description" xml:space="preserve"> <value>Make Registry Preview default app for opening .reg files</value> <comment>Registry Preview is app name. Do not localize.</comment> </data> <data name="PastePlain_ShortcutWarning.Title" xml:space="preserve"> <value>Using this shortcut may prevent non-text paste actions (e.g. images, files) or built-in paste plain text actions in other applications from functioning.</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize.Header" xml:space="preserve"> <value>Thumbnail Size</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Description_Prefix.Text" xml:space="preserve"> <value>Constrain thumbnail image size to a maximum of</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Description_Suffix.Text" xml:space="preserve"> <value>pixels</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Edit_Height.Header" xml:space="preserve"> <value>Maximum height (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Edit_Width.Header" xml:space="preserve"> <value>Maximum width (px)</value> <comment>px = pixels</comment> </data> <data name="Oobe_Peek.Description" xml:space="preserve"> <value>A lightning fast file preview feature for Windows.</value> </data> <data name="Oobe_Peek.Title" xml:space="preserve"> <value>Peek</value> </data> <data name="Oobe_Peek_HowToUse.Text" xml:space="preserve"> <value>to preview the file that's currently selected in File Explorer.</value> </data> <data name="MWB_PCNameLabel.PlaceholderText" xml:space="preserve"> <value>Device name</value> </data> <data name="MWB_SecurityKeyLabel.PlaceholderText" xml:space="preserve"> <value>Security key</value> </data> <data name="Hosts_Encoding.Description" xml:space="preserve"> <value>Choose the encoding of the hosts file</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Hosts_Encoding.Header" xml:space="preserve"> <value>Encoding</value> </data> <data name="Hosts_Encoding_Utf8.Content" xml:space="preserve"> <value>UTF-8</value> </data> <data name="Hosts_Encoding_Utf8Bom.Content" xml:space="preserve"> <value>UTF-8 with BOM</value> </data> <data name="MouseUtils_MouseHighlighter_AlwaysColor.Header" xml:space="preserve"> <value>Always highlight color</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsAutoHide.Content" xml:space="preserve"> <value>Automatically hide crosshairs when the mouse pointer is hidden</value> </data> <data name="MouseUtils_AutoActivate.Content" xml:space="preserve"> <value>Automatically activate on utility startup</value> </data> <data name="Run_FindMorePlugins.Text" xml:space="preserve"> <value>Find more plugins</value> </data> <data name="Run_PluginUseFindMorePlugins.Content" xml:space="preserve"> <value>Find more plugins</value> </data> <data name="Run_SomePluginsAreGpoManaged.Title" xml:space="preserve"> <value>The system administrator is managing the enabled state of some plugins.</value> </data> <data name="AlwaysOnTop_FrameOpacity.Header" xml:space="preserve"> <value>Opacity (%)</value> </data> <data name="MouseUtils_FindMyMouse_ActivationCustomizedShortcut.Content" xml:space="preserve"> <value>Custom shortcut</value> </data> <data name="MouseUtils_FindMyMouse_ActivationDoubleRightControlPress.Content" xml:space="preserve"> <value>Press Right Control twice</value> <comment>Right control is the physical key on the keyboard.</comment> </data> <data name="MouseUtils_FindMyMouse_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to turn on or off this mode</value> </data> <data name="MouseUtils_FindMyMouse_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="SettingsWindow_AdminTitle" xml:space="preserve"> <value>Administrator: PowerToys Settings</value> <comment>Title of the settings window when running as administrator</comment> </data> <data name="DashboardTitle.Text" xml:space="preserve"> <value>Dashboard</value> </data> <data name="Shell_Dashboard.Content" xml:space="preserve"> <value>Dashboard</value> </data> <data name="GPO_IsSettingForcedText.Text" xml:space="preserve"> <value>This setting is enforced by your System Administrator.</value> </data> <data name="DisabledModules.Text" xml:space="preserve"> <value>Disabled modules</value> </data> <data name="EnabledModules.Text" xml:space="preserve"> <value>Enabled modules</value> </data> </root>
donlaci
8c22f0c48540793452b70d913b2a6a719c881a33
1f936df3ebce73b726ed11c9fa38fd477b4b0fbd
Yeah, there are 2 different resources with same content ("Learn more"). It is Ok I think, maybe in the future someone wants to change just the one of them. Thanks!
donlaci
353
microsoft/PowerToys
29,023
[Settings] Adding a Dashboard Panel
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request Adding a new Dashboard panel to the settings app. It contains the active modules with a brief description, activation shortcut if present, launch button if reasonable and a quick link button to the module's settings page. The new dashboard panel contains a list of all the modules as well, where the user can toggle the modules' enabled/disabled state. ![Dashboard](https://github.com/microsoft/PowerToys/assets/9866362/a773ff5b-0321-4eb3-9c3d-b5b4df9a25f5) <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [X] **Closes:** #26816 - [ ] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected - [ ] **Tests:** Added/updated and all pass - [ ] **Localization:** All end user facing strings can be localized - [ ] **Dev docs:** Added/updated - [ ] **New binaries:** Added on the required places - [ ] [JSON for signing](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ESRPSigning_core.json) for new binaries - [ ] [WXS for installer](https://github.com/microsoft/PowerToys/blob/main/installer/PowerToysSetup/Product.wxs) for new binaries and localization folder - [ ] [YML for CI pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ci/templates/build-powertoys-steps.yml) for new test projects - [ ] [YML for signed pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/release.yml) - [ ] **Documentation updated:** If checked, please file a pull request on [our docs repo](https://github.com/MicrosoftDocs/windows-uwp/tree/docs/hub/powertoys) and link it here: #xxx <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed Tested locally
null
2023-10-04 18:35:54+00:00
2023-10-20 12:23:25+00:00
src/settings-ui/Settings.UI/Strings/en-us/Resources.resw
<?xml version="1.0" encoding="utf-8"?> <root> <!-- Microsoft ResX Schema Version 2.0 The primary goals of this format is to allow a simple XML format that is mostly human readable. The generation and parsing of the various data types are done through the TypeConverter classes associated with the data types. Example: ... ado.net/XML headers & schema ... <resheader name="resmimetype">text/microsoft-resx</resheader> <resheader name="version">2.0</resheader> <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader> <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader> <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data> <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data> <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64"> <value>[base64 mime encoded serialized .NET Framework object]</value> </data> <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value> <comment>This is a comment</comment> </data> There are any number of "resheader" rows that contain simple name/value pairs. Each data row contains a name, and value. The row also contains a type or mimetype. Type corresponds to a .NET class that support text/value conversion through the TypeConverter architecture. Classes that don't support this are serialized and stored with the mimetype set. The mimetype is used for serialized objects, and tells the ResXResourceReader how to depersist the object. This is currently not extensible. For a given mimetype the value must be set accordingly: Note - application/x-microsoft.net.object.binary.base64 is the format that the ResXResourceWriter will generate, however the reader can read any of the formats listed below. mimetype: application/x-microsoft.net.object.binary.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.soap.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Soap.SoapFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.bytearray.base64 value : The object must be serialized into a byte array : using a System.ComponentModel.TypeConverter : and then encoded with base64 encoding. --> <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> <xsd:import namespace="http://www.w3.org/XML/1998/namespace" /> <xsd:element name="root" msdata:IsDataSet="true"> <xsd:complexType> <xsd:choice maxOccurs="unbounded"> <xsd:element name="metadata"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" /> </xsd:sequence> <xsd:attribute name="name" use="required" type="xsd:string" /> <xsd:attribute name="type" type="xsd:string" /> <xsd:attribute name="mimetype" type="xsd:string" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="assembly"> <xsd:complexType> <xsd:attribute name="alias" type="xsd:string" /> <xsd:attribute name="name" type="xsd:string" /> </xsd:complexType> </xsd:element> <xsd:element name="data"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" /> <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="resheader"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" /> </xsd:complexType> </xsd:element> </xsd:choice> </xsd:complexType> </xsd:element> </xsd:schema> <resheader name="resmimetype"> <value>text/microsoft-resx</value> </resheader> <resheader name="version"> <value>2.0</value> </resheader> <resheader name="reader"> <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <resheader name="writer"> <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <data name="Attribution_Rooler.Text" xml:space="preserve"> <value>Inspired by Rooler</value> <comment>Rooler is a name of the tool.</comment> </data> <data name="Shell_VideoConference.Content" xml:space="preserve"> <value>Video Conference Mute</value> <comment>Navigation view item name for Video Conference</comment> </data> <data name="Shell_MeasureTool.Content" xml:space="preserve"> <value>Screen Ruler</value> <comment>Product name: Navigation view item name for Screen Ruler</comment> </data> <data name="MeasureTool.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="MeasureTool.ModuleDescription" xml:space="preserve"> <value>Screen Ruler is a quick and easy way to measure pixels on your screen.</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool.ModuleTitle" xml:space="preserve"> <value>Screen Ruler</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool_ActivationSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="MeasureTool_Settings.Header" xml:space="preserve"> <value>Behavior</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MeasureTool_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to bring up the command bar</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool_DefaultMeasureStyle.Header" xml:space="preserve"> <value>Default measure style</value> </data> <data name="MeasureTool_DefaultMeasureStyle.Description" xml:space="preserve"> <value>The utility will start having the selected style activated</value> </data> <data name="MeasureTool_DefaultMeasureStyle_None.Content" xml:space="preserve"> <value>None</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Bounds.Content" xml:space="preserve"> <value>Bounds</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Spacing.Content" xml:space="preserve"> <value>Spacing</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Horizontal_Spacing.Content" xml:space="preserve"> <value>Horizontal spacing</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Vertical_Spacing.Content" xml:space="preserve"> <value>Vertical spacing</value> </data> <data name="MeasureTool_UnitsOfMeasure.Header" xml:space="preserve"> <value>Units of measurement</value> </data> <data name="MeasureTool_UnitsOfMeasure_Pixels.Content" xml:space="preserve"> <value>Pixels</value> </data> <data name="MeasureTool_UnitsOfMeasure_Inches.Content" xml:space="preserve"> <value>Inches</value> </data> <data name="MeasureTool_UnitsOfMeasure_Centimeters.Content" xml:space="preserve"> <value>Centimeters</value> </data> <data name="MeasureTool_PixelTolerance.Header" xml:space="preserve"> <value>Pixel tolerance for edge detection</value> </data> <data name="MeasureTool_MeasureCrossColor.Header" xml:space="preserve"> <value>Line color</value> </data> <data name="MeasureTool_ContinuousCapture.Header" xml:space="preserve"> <value>Capture screen continuously during measuring</value> </data> <data name="MeasureTool_ContinuousCapture.Description" xml:space="preserve"> <value>Refresh screen contexts in real-time instead of making a screenshot once</value> </data> <data name="MeasureTool_PerColorChannelEdgeDetection.Header" xml:space="preserve"> <value>Per color channel edge detection</value> </data> <data name="MeasureTool_PerColorChannelEdgeDetection.Description" xml:space="preserve"> <value>If enabled, test that all color channels are within a tolerance distance from each other. Otherwise, check that the sum of all color channels differences is smaller than the tolerance.</value> </data> <data name="MeasureTool_DrawFeetOnCross.Header" xml:space="preserve"> <value>Draw feet on cross</value> </data> <data name="MeasureTool_DrawFeetOnCross.Description" xml:space="preserve"> <value>Adds feet to the end of cross lines</value> </data> <data name="MeasureTool_EnableMeasureTool.Header" xml:space="preserve"> <value>Enable Screen Ruler</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MouseWithoutBorders_ActivationSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="MouseWithoutBorders_DeviceLayoutSettings.Header" xml:space="preserve"> <value>Device layout</value> </data> <data name="MouseWithoutBorders_DeviceLayoutSettings.Description" xml:space="preserve"> <value>Drag and drop a machine to rearrange the order.</value> </data> <data name="MouseWithoutBorders_CannotDragDropAsAdmin.Title" xml:space="preserve"> <value>It is not possible to use drag and drop while running PowerToys elevated. As a workaround, please restart PowerToys without elevation to edit the device layout.</value> </data> <data name="MouseWithoutBorders_KeySettings.Header" xml:space="preserve"> <value>Encryption key</value> </data> <data name="MouseWithoutBorders_SecurityKey.Header" xml:space="preserve"> <value>Security key</value> </data> <data name="MouseWithoutBorders_SecurityKey.Description" xml:space="preserve"> <value>The key must be auto generated in one machine by clicking on New Key, then typed in other machines</value> </data> <data name="MouseWithoutBorders_NewKey.Content" xml:space="preserve"> <value>New key</value> </data> <data name="MouseWithoutBorders_CopyMachineName.Text" xml:space="preserve"> <value>Copy to clipboard</value> </data> <data name="MouseWithoutBorders_ReconnectButton.Text" xml:space="preserve"> <value>Refresh connections</value> </data> <data name="MouseWithoutBorders_ReconnectTooltip.Text" xml:space="preserve"> <value>Reestablishes connections with other devices if you are experiencing issues.</value> </data> <data name="MouseWithoutBorders_ThisMachineNameLabel.Header" xml:space="preserve"> <value>Host name of this device</value> </data> <data name="MouseWithoutBorders_Connect.Content" xml:space="preserve"> <value>Connect</value> </data> <data name="MouseWithoutBorders_UninstallService.Header" xml:space="preserve"> <value>Uninstall service</value> </data> <data name="MouseWithoutBorders_UninstallService.Description" xml:space="preserve"> <value>Removes the service from the computer. Needs to run as administrator.</value> </data> <data name="MouseWithoutBorders_Settings.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="MouseWithoutBorders_TroubleShooting.Header" xml:space="preserve"> <value>Troubleshooting</value> </data> <data name="MouseWithoutBorders_AddFirewallRuleButtonControl.Header" xml:space="preserve"> <value>Add a firewall rule for Mouse Without Borders</value> <comment>"Mouse Without Borders" is a product name</comment> </data> <data name="MouseWithoutBorders_AddFirewallRuleButtonControl.Description" xml:space="preserve"> <value>Adding a firewall rule might help solve connection issues.</value> </data> <data name="MouseWithoutBorders_RunAsAdminText.Title" xml:space="preserve"> <value>You need to run as administrator to modify this setting.</value> </data> <data name="MouseWithoutBorders_ServiceUserUninstallWarning.Title" xml:space="preserve"> <value>If PowerToys is installed as a user, uninstalling/upgrading may require the Mouse Without Borders service to be removed manually later.</value> </data> <data name="MouseWithoutBorders_ServiceSettings.Header" xml:space="preserve"> <value>Service</value> </data> <data name="MouseWithoutBorders_Toggle_Enable.Header" xml:space="preserve"> <value>Enable Mouse Without Borders</value> </data> <data name="MouseWithoutBorders.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="MouseWithoutBorders.ModuleDescription" xml:space="preserve"> <value>Mouse Without Borders is a quick and easy way to move your cursor across multiple devices.</value> <comment>"Mouse Without Borders" is the name of the utility</comment> </data> <data name="MouseWithoutBorders.ModuleTitle" xml:space="preserve"> <value>Mouse Without Borders</value> <comment>"Mouse Without Borders" is the name of the utility</comment> </data> <data name="MouseWithoutBorders_UseService.Header" xml:space="preserve"> <value>Use Service</value> </data> <data name="MouseWithoutBorders_UseService.Description" xml:space="preserve"> <value>Runs in service mode, that allows MWB to control remote machines when they're locked. Also allows control of system and administrator applications.</value> </data> <data name="MouseWithoutBorders_MatrixOneRow.Header" xml:space="preserve"> <value>Devices in a single row</value> </data> <data name="MouseWithoutBorders_MatrixOneRow.Description" xml:space="preserve"> <value>Sets whether the devices are aligned on a single row. A two by two matrix is considered otherwise.</value> </data> <data name="MouseWithoutBorders_WrapMouse.Header" xml:space="preserve"> <value>Wrap mouse</value> </data> <data name="MouseWithoutBorders_WrapMouse.Description" xml:space="preserve"> <value>Move control back to the first machine when mouse moves past the last one.</value> </data> <data name="MouseWithoutBorders_ShareClipboard.Header" xml:space="preserve"> <value>Share clipboard</value> </data> <data name="MouseWithoutBorders_TransferFile.Header" xml:space="preserve"> <value>Transfer file</value> </data> <data name="MouseWithoutBorders_HideMouseAtScreenEdge.Header" xml:space="preserve"> <value>Hide mouse at the screen edge</value> </data> <data name="MouseWithoutBorders_DrawMouseCursor.Header" xml:space="preserve"> <value>Draw mouse cursor</value> </data> <data name="MouseWithoutBorders_ValidateRemoteMachineIP.Header" xml:space="preserve"> <value>Validate remote machine IP</value> </data> <data name="MouseWithoutBorders_SameSubnetOnly.Header" xml:space="preserve"> <value>Same subnet only</value> </data> <data name="MouseWithoutBorders_BlockScreenSaverOnOtherMachines.Header" xml:space="preserve"> <value>Block screen saver on other machines</value> </data> <data name="MouseWithoutBorders_MoveMouseRelatively.Header" xml:space="preserve"> <value>Move mouse relatively</value> </data> <data name="MouseWithoutBorders_BlockMouseAtScreenCorners.Header" xml:space="preserve"> <value>Block mouse at screen corners</value> </data> <data name="MouseWithoutBorders_ShowClipboardAndNetworkStatusMessages.Header" xml:space="preserve"> <value>Show clipboard and network status messages</value> </data> <data name="MouseWithoutBorders_ShowOriginalUI.Header" xml:space="preserve"> <value>Show the original Mouse Without Borders UI</value> </data> <data name="MouseWithoutBorders_ShowOriginalUI.Description" xml:space="preserve"> <value>This is accessible from the system tray and requires a restart.</value> </data> <data name="MouseWithoutBorders_ShareClipboard.Description" xml:space="preserve"> <value>If share clipboard stops working, Ctrl+Alt+Del then Esc may solve the problem.</value> </data> <data name="MouseWithoutBorders_TransferFile.Description" xml:space="preserve"> <value>If a file (&lt;100MB) is copied, it will be transferred to the remote machine clipboard.</value> </data> <data name="MouseWithoutBorders_HideMouseAtScreenEdge.Description" xml:space="preserve"> <value>Hide the mouse cursor at the top edge of the screen when switching to other machine. This option also steals the focus from any full-screen app to ensure the keyboard input is redirected.</value> </data> <data name="MouseWithoutBorders_DrawMouseCursor.Description" xml:space="preserve"> <value>Mouse cursor may not be visible in Windows 10 and later versions of Windows when there is no physical mouse attached.</value> </data> <data name="MouseWithoutBorders_ValidateRemoteMachineIP.Description" xml:space="preserve"> <value>Reverse DNS lookup to validate machine IP Address.</value> </data> <data name="MouseWithoutBorders_SameSubnetOnly.Description" xml:space="preserve"> <value>Only connect to machines in the same intranet NNN.NNN.*.* (only works when both machines have IPv4 enabled)</value> </data> <data name="MouseWithoutBorders_IPAddressMapping_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: MyLaptop 192.168.0.24</value> <comment>Don't translate MyLaptop</comment> </data> <data name="MouseWithoutBorders_IPAddressMapping.Header" xml:space="preserve"> <value>IP address mapping</value> </data> <data name="MouseWithoutBorders_IPAddressMapping.Description" xml:space="preserve"> <value>Resolve machine's IP address using manually entered mappings below.</value> </data> <data name="MouseWithoutBorders_BlockScreenSaverOnOtherMachines.Description" xml:space="preserve"> <value>Prevent screen saver from starting on other machines when user is actively working on this machine.</value> </data> <data name="MouseWithoutBorders_MoveMouseRelatively.Description" xml:space="preserve"> <value>Use this option when remote machine's monitor settings are different, or remote machine has multiple monitors.</value> </data> <data name="MouseWithoutBorders_BlockMouseAtScreenCorners.Description" xml:space="preserve"> <value>To avoid accident machine-switch at screen corners.</value> </data> <data name="MouseWithoutBorders_ShowClipboardAndNetworkStatusMessages.Description" xml:space="preserve"> <value>Show clipboard activities and network status in system tray notifications</value> </data> <data name="MouseWithoutBorders_KeyboardShortcuts_Group.Header" xml:space="preserve"> <value>Keyboard shortcuts</value> <comment>keyboard is the hardware peripheral</comment> </data> <data name="MouseWithoutBorders_AdvancedSettings_Group.Header" xml:space="preserve"> <value>Advanced Settings</value> </data> <data name="MouseWithoutBorders_EasyMouseOption.Header" xml:space="preserve"> <value>Easy Mouse: move between machines by moving the mouse pointer to the screen edges.</value> </data> <data name="MouseWithoutBorders_EasyMouseOption.Description" xml:space="preserve"> <value>Can also be set to move only when pressing Shift or Ctrl.</value> <comment>Shift and Ctrl are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_EasyMouseOption_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_EasyMouseOption_Enabled.Content" xml:space="preserve"> <value>Enabled</value> </data> <data name="MouseWithoutBorders_EasyMouseOption_Ctrl.Content" xml:space="preserve"> <value>Ctrl</value> <comment>This is the Ctrl keyboard key</comment> </data> <data name="MouseWithoutBorders_EasyMouseOption_Shift.Content" xml:space="preserve"> <value>Shift</value> <comment>This is the Shift keyboard key</comment> </data> <data name="MouseWithoutBorders_LockMachinesShortcut.Header" xml:space="preserve"> <value>Shortcut to lock all machines.</value> </data> <data name="MouseWithoutBorders_LockMachinesShortcut.Description" xml:space="preserve"> <value>Hit this hotkey twice to lock all machines. Note: Only the machines which have the same shortcut configured will be locked.</value> </data> <data name="MouseWithoutBorders_ToggleEasyMouseShortcut.Header" xml:space="preserve"> <value>Shortcut to toggle Easy Mouse.</value> <comment>Ctrl and Alt are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_ToggleEasyMouseShortcut.Description" xml:space="preserve"> <value>Only works if EasyMouse is set to Enabled or Disabled.</value> </data> <data name="MouseWithoutBorders_ToggleEasyMouseShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut.Header" xml:space="preserve"> <value>Shortcut to switch between machines. Ctrl+Alt+:</value> <comment>Ctrl and Alt are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut.Description" xml:space="preserve"> <value>Click on Ctrl+Alt+ the chosen option to switch between machines.</value> <comment>Ctrl and Alt are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut_F1.Content" xml:space="preserve"> <value>F1, F2, F3, F4</value> <comment>Don't localize. These are keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut_1.Content" xml:space="preserve"> <value>1, 2, 3, 4</value> <comment>Don't localize. These are keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_LockMachinesShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_ReconnectShortcut.Header" xml:space="preserve"> <value>Shortcut to try reconnecting</value> </data> <data name="MouseWithoutBorders_ReconnectShortcut.Description" xml:space="preserve"> <value>Just in case the connection is lost for any reason.</value> </data> <data name="MouseWithoutBorders_ReconnectShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut.Header" xml:space="preserve"> <value>Shortcut to switch to multiple machine mode.</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut.Description" xml:space="preserve"> <value>Allows controlling all computers at once.</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut_Ctrl3.Content" xml:space="preserve"> <value>Ctrl three times</value> <comment>This is the Ctrl keyboard key</comment> </data> <data name="VideoConference_Enable.Header" xml:space="preserve"> <value>Enable Video Conference Mute</value> </data> <data name="VideoConference.ModuleDescription" xml:space="preserve"> <value>Video Conference Mute is a quick and easy way to do a global "mute" of both your microphone and webcam. Disabling this module or closing PowerToys will unmute the microphone and camera.</value> </data> <data name="VideoConference_CameraAndMicrophoneMuteHotkeyControl_Header.Header" xml:space="preserve"> <value>Mute camera &amp; microphone</value> </data> <data name="VideoConference_MicrophoneMuteHotkeyControl_Header.Header" xml:space="preserve"> <value>Mute microphone</value> </data> <data name="VideoConference_MicrophonePushToTalkHotkeyControl_Header.Header" xml:space="preserve"> <value>Push to talk</value> </data> <data name="VideoConference_CameraMuteHotkeyControl_Header.Header" xml:space="preserve"> <value>Mute camera</value> </data> <data name="VideoConference_SelectedCamera.Header" xml:space="preserve"> <value>Selected camera</value> </data> <data name="VideoConference_SelectedMicrophone.Header" xml:space="preserve"> <value>Selected microphone</value> </data> <data name="VideoConference_PushToReverse.Header" xml:space="preserve"> <value>Push to reverse</value> </data> <data name="VideoConference_PushToReverse.Description" xml:space="preserve"> <value>If enabled, allows both push to talk and push to mute, depending on microphone state</value> </data> <data name="VideoConference_CameraOverlayImagePathHeader.Header" xml:space="preserve"> <value>Image displayed when camera is muted</value> </data> <data name="VideoConference_ToolbarPosition.Header" xml:space="preserve"> <value>Toolbar position</value> </data> <data name="VideoConference_ToolbarPosition_TopCenter.Content" xml:space="preserve"> <value>Top center</value> </data> <data name="VideoConference_ToolbarPosition_TopLeftCorner.Content" xml:space="preserve"> <value>Top left corner</value> </data> <data name="VideoConference_ToolbarPosition_TopRightCorner.Content" xml:space="preserve"> <value>Top right corner</value> </data> <data name="VideoConference_ToolbarPosition_BottomLeftCorner.Content" xml:space="preserve"> <value>Bottom left corner</value> </data> <data name="VideoConference_ToolbarPosition_BottomCenter.Content" xml:space="preserve"> <value>Bottom center</value> </data> <data name="VideoConference_ToolbarPosition_BottomRightCorner.Content" xml:space="preserve"> <value>Bottom right corner</value> </data> <data name="VideoConference_ToolbarMonitor.Header" xml:space="preserve"> <value>Show toolbar on</value> </data> <data name="VideoConference_ToolbarMonitor_Main.Content" xml:space="preserve"> <value>Main monitor</value> </data> <data name="VideoConference_ToolbarMonitor_UnderCursor.Content" xml:space="preserve"> <value>Monitor under cursor</value> </data> <data name="VideoConference_ToolbarMonitor_ActiveWindow.Content" xml:space="preserve"> <value>Active window monitor</value> </data> <data name="VideoConference_ToolbarMonitor_All.Content" xml:space="preserve"> <value>All monitors</value> </data> <data name="VideoConference_ToolbarHide.Header" xml:space="preserve"> <value>Hide toolbar</value> </data> <data name="VideoConference_ToolbarHideMuted.Content" xml:space="preserve"> <value>When both camera and microphone are muted</value> </data> <data name="VideoConference_ToolbarHideNever.Content" xml:space="preserve"> <value>Never</value> </data> <data name="VideoConference_ToolbarHideUnmuted.Content" xml:space="preserve"> <value>When both camera and microphone are unmuted</value> </data> <data name="VideoConference_ToolbarHideTimeout.Content" xml:space="preserve"> <value>After timeout</value> </data> <data name="VideoConference.ModuleTitle" xml:space="preserve"> <value>Video Conference Mute</value> </data> <data name="VideoConference_Camera.Header" xml:space="preserve"> <value>Camera</value> </data> <data name="VideoConference_Camera.Description" xml:space="preserve"> <value>To use this feature, make sure to select PowerToys VideoConference Mute as your camera source in your apps.</value> </data> <data name="VideoConference_Microphone.Header" xml:space="preserve"> <value>Microphone</value> </data> <data name="VideoConference_Toolbar.Header" xml:space="preserve"> <value>Toolbar</value> </data> <data name="VideoConference_Behavior.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="VideoConference_StartupAction.Header" xml:space="preserve"> <value>Startup action</value> </data> <data name="VideoConference_StartupActionNothing.Content" xml:space="preserve"> <value>Nothing</value> </data> <data name="VideoConference_StartupActionUnmute.Content" xml:space="preserve"> <value>Unmute</value> </data> <data name="VideoConference_StartupActionMute.Content" xml:space="preserve"> <value>Mute</value> </data> <data name="VideoConference_Shortcuts.Header" xml:space="preserve"> <value>Shortcuts</value> </data> <data name="VideoConference_CameraOverlayImageAlt.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Camera overlay image preview</value> </data> <data name="VideoConference_CameraOverlayImageBrowse.Content" xml:space="preserve"> <value>Browse</value> </data> <data name="VideoConference_CameraOverlayImageClear.Content" xml:space="preserve"> <value>Clear</value> </data> <data name="Shell_General.Content" xml:space="preserve"> <value>General</value> <comment>Navigation view item name for General</comment> </data> <data name="Shell_Awake.Content" xml:space="preserve"> <value>Awake</value> <comment>Product name: Navigation view item name for Awake</comment> </data> <data name="Shell_PowerLauncher.Content" xml:space="preserve"> <value>PowerToys Run</value> <comment>Product name: Navigation view item name for PowerToys Run</comment> </data> <data name="Shell_PowerRename.Content" xml:space="preserve"> <value>PowerRename</value> <comment>Product name: Navigation view item name for PowerRename</comment> </data> <data name="Shell_ShortcutGuide.Content" xml:space="preserve"> <value>Shortcut Guide</value> <comment>Product name: Navigation view item name for Shortcut Guide</comment> </data> <data name="Shell_PowerPreview.Content" xml:space="preserve"> <value>File Explorer add-ons</value> <comment>Product name: Navigation view item name for File Explorer. Please use File Explorer as in the context of File Explorer in Windows</comment> </data> <data name="Shell_FancyZones.Content" xml:space="preserve"> <value>FancyZones</value> <comment>Product name: Navigation view item name for FancyZones</comment> </data> <data name="Shell_ImageResizer.Content" xml:space="preserve"> <value>Image Resizer</value> <comment>Product name: Navigation view item name for Image Resizer</comment> </data> <data name="Shell_ColorPicker.Content" xml:space="preserve"> <value>Color Picker</value> <comment>Product name: Navigation view item name for Color Picker</comment> </data> <data name="Shell_KeyboardManager.Content" xml:space="preserve"> <value>Keyboard Manager</value> <comment>Product name: Navigation view item name for Keyboard Manager</comment> </data> <data name="Shell_MouseWithoutBorders.Content" xml:space="preserve"> <value>Mouse Without Borders</value> <comment>Product name: Navigation view item name for Mouse Without Borders</comment> </data> <data name="Shell_MouseUtilities.Content" xml:space="preserve"> <value>Mouse utilities</value> <comment>Product name: Navigation view item name for Mouse utilities</comment> </data> <data name="Shell_NavigationMenu_Announce_Collapse" xml:space="preserve"> <value>Navigation closed</value> <comment>Accessibility announcement when the navigation pane collapses</comment> </data> <data name="Shell_NavigationMenu_Announce_Open" xml:space="preserve"> <value>Navigation opened</value> <comment>Accessibility announcement when the navigation pane opens</comment> </data> <data name="KeyboardManager_ConfigHeader.Text" xml:space="preserve"> <value>Current configuration</value> <comment>Keyboard Manager current configuration header</comment> </data> <data name="KeyboardManager.ModuleDescription" xml:space="preserve"> <value>Reconfigure your keyboard by remapping keys and shortcuts</value> <comment>Keyboard Manager page description</comment> </data> <data name="KeyboardManager_EnableToggle.Header" xml:space="preserve"> <value>Enable Keyboard Manager</value> <comment>Keyboard Manager enable toggle header. Do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="KeyboardManager_ProfileDescription.Text" xml:space="preserve"> <value>Select the profile to display the active key remap and shortcuts</value> <comment>Keyboard Manager configuration dropdown description</comment> </data> <data name="KeyboardManager_RemapKeyboardButton.Header" xml:space="preserve"> <value>Remap a key</value> <comment>Keyboard Manager remap keyboard button content</comment> </data> <data name="KeyboardManager_Keys.Header" xml:space="preserve"> <value>Keys</value> <comment>Keyboard Manager remap keyboard header</comment> </data> <data name="KeyboardManager_RemapShortcutsButton.Header" xml:space="preserve"> <value>Remap a shortcut</value> <comment>Keyboard Manager remap shortcuts button</comment> </data> <data name="KeyboardManager_Shortcuts.Header" xml:space="preserve"> <value>Shortcuts</value> <comment>Keyboard Manager remap keyboard header</comment> </data> <data name="KeyboardManager_All_Apps_Description" xml:space="preserve"> <value>All Apps</value> <comment>Should be the same as EditShortcuts_AllApps from keyboard manager editor</comment> </data> <data name="Shortcuts.Header" xml:space="preserve"> <value>Shortcuts</value> </data> <data name="Shortcut.Header" xml:space="preserve"> <value>Shortcut</value> </data> <data name="RemapKeysList.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Current Key Remappings</value> </data> <data name="RemapShortcutsList.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Current Shortcut Remappings</value> </data> <data name="KeyboardManager_RemappedKeysListItem.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Key Remapping</value> <comment>key as in keyboard key</comment> </data> <data name="KeyboardManager_RemappedShortcutsListItem.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Shortcut Remapping</value> </data> <data name="KeyboardManager_RemappedTo.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Remapped to</value> </data> <data name="KeyboardManager_ShortcutRemappedTo.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Remapped to</value> </data> <data name="KeyboardManager_TargetApp.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>For Target Application</value> <comment>What computer application would this be for</comment> </data> <data name="KeyboardManager_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Keyboard Manager</value> <comment>do not loc, product name</comment> </data> <data name="ColorPicker.ModuleDescription" xml:space="preserve"> <value>Quick and simple system-wide color picker.</value> </data> <data name="ColorPicker_EnableColorPicker.Header" xml:space="preserve"> <value>Enable Color Picker</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="ColorPicker_ChangeCursor.Content" xml:space="preserve"> <value>Change cursor when picking a color</value> </data> <data name="PowerLauncher.ModuleDescription" xml:space="preserve"> <value>A quick launcher that has additional capabilities without sacrificing performance.</value> </data> <data name="PowerLauncher_EnablePowerLauncher.Header" xml:space="preserve"> <value>Enable PowerToys Run</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="PowerLauncher_SearchResults.Header" xml:space="preserve"> <value>Search &amp; results</value> </data> <data name="PowerLauncher_SearchResultPreference.Header" xml:space="preserve"> <value>Search result preference</value> </data> <data name="PowerLauncher_UsePinyin.Header" xml:space="preserve"> <value>Use Pinyin</value> </data> <data name="PowerLauncher_UsePinyin.Description" xml:space="preserve"> <value>Experimental: Use Pinyin on the search query. May not work for every plugin.</value> </data> <data name="PowerLauncher_SearchResultPreference_MostRecentlyUsed" xml:space="preserve"> <value>Most recently used</value> </data> <data name="PowerLauncher_SearchResultPreference_AlphabeticalOrder" xml:space="preserve"> <value>Alphabetical order</value> </data> <data name="PowerLauncher_SearchResultPreference_RunningProcessesOpenApplications" xml:space="preserve"> <value>Running processes/open applications</value> </data> <data name="PowerLauncher_SearchTypePreference.Header" xml:space="preserve"> <value>Search type preference</value> </data> <data name="PowerLauncher_SearchTypePreference_ApplicationName" xml:space="preserve"> <value>Application name</value> </data> <data name="PowerLauncher_SearchTypePreference_StringInApplication" xml:space="preserve"> <value>A string that is contained in the application</value> </data> <data name="PowerLauncher_SearchTypePreference_ExecutableName" xml:space="preserve"> <value>Executable name</value> </data> <data name="PowerLauncher_MaximumNumberOfResults.Header" xml:space="preserve"> <value>Number of results shown before scrolling</value> </data> <data name="PowerLauncher_OpenPowerLauncher.Header" xml:space="preserve"> <value>Open PowerToys Run</value> </data> <data name="PowerLauncher_OpenFileLocation.Header" xml:space="preserve"> <value>Open file location</value> </data> <data name="PowerLauncher_CopyPathLocation.Header" xml:space="preserve"> <value>Copy path location</value> </data> <data name="PowerLauncher_OpenConsole.Header" xml:space="preserve"> <value>Open console</value> <comment>console refers to Windows command prompt</comment> </data> <data name="PowerLauncher_OverrideWinRKey.Content" xml:space="preserve"> <value>Override Win+R shortcut</value> </data> <data name="PowerLauncher_OverrideWinSKey.Content" xml:space="preserve"> <value>Override Win+S shortcut</value> </data> <data name="PowerLauncher_IgnoreHotkeysInFullScreen.Content" xml:space="preserve"> <value>Ignore shortcuts in fullscreen mode</value> </data> <data name="PowerLauncher_UseCentralizedKeyboardHook.Header" xml:space="preserve"> <value>Use centralized keyboard hook</value> </data> <data name="PowerLauncher_UseCentralizedKeyboardHook.Description" xml:space="preserve"> <value>Try this if there are issues with the shortcut (PowerToys Run might not get focus when triggered from an elevated window)</value> </data> <data name="PowerLauncher_ClearInputOnLaunch.Content" xml:space="preserve"> <value>Clear the previous query on launch</value> </data> <data name="PowerLauncher_TabSelectsContextButtons.Header" xml:space="preserve"> <value>Tab through context buttons</value> </data> <data name="PowerLauncher_TabSelectsContextButtons.Description" xml:space="preserve"> <value>Pressing tab will first select through the available context buttons of the current selection before moving onto the next result</value> </data> <data name="PowerLauncher_GenerateThumbnailsFromFiles.Header" xml:space="preserve"> <value>Generate thumbnails from files</value> </data> <data name="PowerLauncher_GenerateThumbnailsFromFiles.Description" xml:space="preserve"> <value>Results will try to generate thumbnails for files. Disabling this setting may increase stability and speed</value> </data> <data name="PowerLauncher_SearchQueryResultsWithDelay.Header" xml:space="preserve"> <value>Input Smoothing</value> <comment>This is about adding a delay to wait for more input before executing a search</comment> </data> <data name="PowerLauncher_SearchQueryResultsWithDelay.Description" xml:space="preserve"> <value>Wait for more input before searching. This reduces interface jumpiness and system load.</value> </data> <data name="PowerLauncher_FastSearchInputDelayMs.Header" xml:space="preserve"> <value>Immediate plugins</value> </data> <data name="PowerLauncher_FastSearchInputDelayMs.Description" xml:space="preserve"> <value>Affects the plugins that make the UI wait for their results by this amount. Recommended: 30-50 ms.</value> </data> <data name="PowerLauncher_SlowSearchInputDelayMs.Header" xml:space="preserve"> <value>Background execution plugins</value> </data> <data name="PowerLauncher_SlowSearchInputDelayMs.Description" xml:space="preserve"> <value>Affects the plugins that execute in the background by this amount. Recommended: 100-150 ms.</value> </data> <data name="PowerLauncher_SearchInputDelayMs.Header" xml:space="preserve"> <value>Fast plugin throttle (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="KeyboardManager_KeysMappingLayoutRightHeader.Text" xml:space="preserve"> <value>To:</value> <comment>Keyboard Manager mapping keys view right header</comment> </data> <data name="Appearance_GroupSettings.Text" xml:space="preserve"> <value>Appearance</value> </data> <data name="Fancyzones_ImageHyperlinkToDocs.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>FancyZones windows</value> <comment>do not loc the Product name</comment> </data> <data name="FancyZones.ModuleDescription" xml:space="preserve"> <value>Create window layouts to help make multi-tasking easy.</value> <comment>windows refers to application windows</comment> </data> <data name="FancyZones_DisplayOrWorkAreaChangeMoveWindowsCheckBoxControl.Content" xml:space="preserve"> <value>Keep windows in their zones when the screen resolution or work area changes</value> <comment>windows refers to application windows</comment> </data> <data name="FancyZones_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable FancyZones</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="FancyZones_ExcludeApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="FancyZones_ExcludeApps.Description" xml:space="preserve"> <value>Excludes an application from snapping to zones and will only react to Windows Snap - add one application name per line</value> </data> <data name="FancyZones_HighlightOpacity.Header" xml:space="preserve"> <value>Opacity (%)</value> </data> <data name="FancyZones_HotkeyEditorControl.Header" xml:space="preserve"> <value>Open layout editor</value> <comment>Shortcut to launch the FancyZones layout editor application</comment> </data> <data name="FancyZones_WindowSwitching_GroupSettings.Header" xml:space="preserve"> <value>Switch between windows in the current zone</value> </data> <data name="FancyZones_HotkeyNextTabControl.Header" xml:space="preserve"> <value>Next window</value> </data> <data name="FancyZones_HotkeyPrevTabControl.Header" xml:space="preserve"> <value>Previous window</value> </data> <data name="SettingsPage_SetShortcut.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Shortcut setting</value> </data> <data name="SettingsPage_SetShortcut_Glyph.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Information Symbol</value> </data> <data name="FancyZones_LaunchEditorButtonControl.Header" xml:space="preserve"> <value>Launch layout editor</value> <comment>launches the FancyZones layout editor application</comment> </data> <data name="FancyZones_LaunchEditorButtonControl.Description" xml:space="preserve"> <value>Set and manage your layouts</value> <comment>launches the FancyZones layout editor application</comment> </data> <data name="FancyZones_MakeDraggedWindowTransparentCheckBoxControl.Content" xml:space="preserve"> <value>Make dragged window transparent</value> </data> <data name="FancyZones_MouseDragCheckBoxControl_Header.Content" xml:space="preserve"> <value>Use a non-primary mouse button to toggle zone activation</value> </data> <data name="FancyZones_MouseMiddleClickSpanningMultipleZonesCheckBoxControl_Header.Content" xml:space="preserve"> <value>Use middle-click mouse button to toggle multiple zones spanning</value> </data> <data name="FancyZones_MoveWindowsAcrossAllMonitorsCheckBoxControl.Content" xml:space="preserve"> <value>Move windows between zones across all monitors</value> </data> <data name="FancyZones_OverrideSnapHotkeys.Header" xml:space="preserve"> <value>Override Windows Snap</value> </data> <data name="FancyZones_OverrideSnapHotkeys.Description" xml:space="preserve"> <value>This overrides the Windows Snap shortcut (Win + arrow) to move windows between zones</value> </data> <data name="FancyZones_ShiftDragCheckBoxControl_Header.Content" xml:space="preserve"> <value>Hold Shift key to activate zones while dragging</value> </data> <data name="FancyZones_ShowZonesOnAllMonitorsCheckBoxControl.Content" xml:space="preserve"> <value>Show zones on all monitors while dragging a window</value> </data> <data name="FancyZones_AppLastZoneMoveWindows.Content" xml:space="preserve"> <value>Move newly created windows to their last known zone</value> <comment>windows refers to application windows</comment> </data> <data name="FancyZones_OpenWindowOnActiveMonitor.Content" xml:space="preserve"> <value>Move newly created windows to the current active monitor (Experimental)</value> </data> <data name="FancyZones_UseCursorPosEditorStartupScreen.Header" xml:space="preserve"> <value>Launch editor on the display</value> </data> <data name="FancyZones_UseCursorPosEditorStartupScreen.Description" xml:space="preserve"> <value>When using multiple displays</value> </data> <data name="FancyZones_LaunchPositionMouse.Content" xml:space="preserve"> <value>Where the mouse pointer is</value> </data> <data name="FancyZones_LaunchPositionScreen.Content" xml:space="preserve"> <value>With active focus</value> </data> <data name="FancyZones_ZoneBehavior_GroupSettings.Header" xml:space="preserve"> <value>Zone behavior</value> </data> <data name="FancyZones_ZoneBehavior_GroupSettings.Description" xml:space="preserve"> <value>Manage how zones behave when using FancyZones</value> </data> <data name="FancyZones_Zones.Header" xml:space="preserve"> <value>Zones</value> </data> <data name="FancyZones_ZoneHighlightColor.Header" xml:space="preserve"> <value>Highlight color</value> </data> <data name="FancyZones_ZoneSetChangeMoveWindows.Content" xml:space="preserve"> <value>During zone layout changes, windows assigned to a zone will match new size/positions</value> </data> <data name="AttributionTitle.Text" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="General.ModuleTitle" xml:space="preserve"> <value>General</value> </data> <data name="GeneralPage_CheckForUpdates.Content" xml:space="preserve"> <value>Check for updates</value> </data> <data name="General_SettingsBackupAndRestoreLocationText.Header" xml:space="preserve"> <value>Location</value> </data> <data name="General_SettingsBackupAndRestore_ButtonBackup.Content" xml:space="preserve"> <value>Backup</value> </data> <data name="General_SettingsBackupInfo_FileNameHeader.Text" xml:space="preserve"> <value>File name:</value> </data> <data name="General_SettingsBackupAndRestore_LinkRefresh.Text" xml:space="preserve"> <value>Refresh</value> </data> <data name="General_SettingsBackupAndRestore_ButtonRestore.Content" xml:space="preserve"> <value>Restore</value> </data> <data name="General_SettingsBackupAndRestore_ButtonSelectLocation.Text" xml:space="preserve"> <value>Select folder</value> </data> <data name="GeneralPage_UpdateNow.Content" xml:space="preserve"> <value>Update now</value> </data> <data name="GeneralPage_PrivacyStatement_URL.Text" xml:space="preserve"> <value>Privacy statement</value> </data> <data name="GeneralPage_ReportAbug.Text" xml:space="preserve"> <value>Report a bug</value> <comment>Report an issue inside powertoys</comment> </data> <data name="GeneralPage_RequestAFeature_URL.Text" xml:space="preserve"> <value>Request a feature</value> <comment>Tell our team what we should build</comment> </data> <data name="GeneralPage_RestartAsAdmin_Button.Content" xml:space="preserve"> <value>Restart PowerToys as administrator</value> <comment>running PowerToys as a higher level user, account is typically referred to as an admin / administrator</comment> </data> <data name="GeneralPage_RunAtStartUp.Header" xml:space="preserve"> <value>Run at startup</value> </data> <data name="GeneralPage_RunAtStartUp.Description" xml:space="preserve"> <value>PowerToys will launch automatically</value> </data> <data name="PowerRename.ModuleDescription" xml:space="preserve"> <value>A Windows Shell extension for more advanced bulk renaming using search &amp; replace or regular expressions.</value> </data> <data name="PowerRename_ShellIntegration.Header" xml:space="preserve"> <value>Shell integration</value> <comment>This refers to directly integrating in with Windows</comment> </data> <data name="PowerRename_Toggle_Enable.Header" xml:space="preserve"> <value>Enable PowerRename</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="RadioButtons_Name_Theme.Text" xml:space="preserve"> <value>Settings theme</value> </data> <data name="PowerRename_Toggle_HideIcon.Content" xml:space="preserve"> <value>Hide icon in context menu</value> </data> <data name="PowerRename_Toggle_ContextMenu.Header" xml:space="preserve"> <value>Show PowerRename in</value> </data> <data name="PowerRename_Toggle_StandardContextMenu.Content" xml:space="preserve"> <value>Default and extended context menu</value> </data> <data name="PowerRename_Toggle_ExtendedContextMenu.Content" xml:space="preserve"> <value>Extended context menu only</value> </data> <data name="ExtendedContextMenuInfo.Title" xml:space="preserve"> <value>Press Shift + right-click on files to open the extended context menu</value> </data> <data name="PowerRename_Toggle_MaxDispListNum.Header" xml:space="preserve"> <value>Maximum number of items</value> </data> <data name="PowerRename_Toggle_RestoreFlagsOnLaunch.Header" xml:space="preserve"> <value>Show recently used strings</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_MD.Header" xml:space="preserve"> <value>Markdown</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_MD.Description" xml:space="preserve"> <value>.md, .markdown, .mdown, .mkdn, .mkd, .mdwn, .mdtxt, .mdtext</value> <comment>File extensions, should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_Monaco.Header" xml:space="preserve"> <value>Source code files (Monaco)</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_Monaco.Description" xml:space="preserve"> <value>.cpp, .py, .json, .xml, .csproj, ...</value> <comment>File extensions should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_SVG.Header" xml:space="preserve"> <value>Scalable Vector Graphics</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_SVG.Description" xml:space="preserve"> <value>.svg</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_Preview_SVG_Color_Mode.Header" xml:space="preserve"> <value>Color mode</value> </data> <data name="FileExplorerPreview_Preview_SVG_Color_Mode_Default.Content" xml:space="preserve"> <value>Windows default</value> </data> <data name="FileExplorerPreview_Preview_SVG_Color_Solid_Color.Content" xml:space="preserve"> <value>Solid color</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade.Content" xml:space="preserve"> <value>Checkered pattern</value> </data> <data name="FileExplorerPreview_Preview_SVG_Background_Color.Header" xml:space="preserve"> <value>Color</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_Mode.Header" xml:space="preserve"> <value>Checkered shade</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_1.Content" xml:space="preserve"> <value>Light</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_2.Content" xml:space="preserve"> <value>Medium</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_3.Content" xml:space="preserve"> <value>Dark</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_PDF.Header" xml:space="preserve"> <value>Portable Document Format</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_PDF.Description" xml:space="preserve"> <value>.pdf</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_SVG.Header" xml:space="preserve"> <value>Scalable Vector Graphics</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_SVG.Description" xml:space="preserve"> <value>.svg</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_STL.Header" xml:space="preserve"> <value>Stereolithography</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_STL.Description" xml:space="preserve"> <value>.stl</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_Color_Thumbnail_STL.Header" xml:space="preserve"> <value>Color</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_PDF.Header" xml:space="preserve"> <value>Portable Document Format</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_PDF.Description" xml:space="preserve"> <value>.pdf</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview.ModuleDescription" xml:space="preserve"> <value>These settings allow you to manage your Windows File Explorer custom preview handlers.</value> </data> <data name="PowerRename_AutoCompleteHeader.Header" xml:space="preserve"> <value>Auto-complete</value> </data> <data name="OpenSource_Notice.Text" xml:space="preserve"> <value>Open-source notice</value> </data> <data name="PowerRename_Toggle_AutoComplete.Header" xml:space="preserve"> <value>Enable auto-complete for the search &amp; replace fields</value> </data> <data name="FancyZones_BorderColor.Header" xml:space="preserve"> <value>Border color</value> </data> <data name="FancyZones_InActiveColor.Header" xml:space="preserve"> <value>Inactive color</value> </data> <data name="ShortcutGuide.ModuleDescription" xml:space="preserve"> <value>Shows a help overlay with Windows shortcuts.</value> </data> <data name="ShortcutGuide_PressTimeForGlobalWindowsShortcuts.Header" xml:space="preserve"> <value>Press duration before showing global Windows shortcuts (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="ShortcutGuide_ActivationMethod.Header" xml:space="preserve"> <value>Activation method</value> </data> <data name="ShortcutGuide_ActivationMethod.Description" xml:space="preserve"> <value>Use a shortcut or press the Windows key for some time to activate</value> </data> <data name="Radio_ShortcutGuide_ActivationMethod_CustomizedShortcut.Content" xml:space="preserve"> <value>Custom shortcut</value> </data> <data name="Radio_ShortcutGuide_ActivationMethod_LongPressWindowsKey.Content" xml:space="preserve"> <value>Hold down Windows key</value> </data> <data name="ShortcutGuide_PressWinKeyWarning.Title" xml:space="preserve"> <value>In some edge cases Shortcut Guide might not function correctly when using this activation method</value> </data> <data name="Appearance_Behavior.Header" xml:space="preserve"> <value>Appearance &amp; behavior</value> </data> <data name="General_SettingsBackupAndRestoreTitle.Header" xml:space="preserve"> <value>Backup &amp; restore</value> </data> <data name="General_SettingsBackupAndRestore.Header" xml:space="preserve"> <value>Backup and restore your settings</value> </data> <data name="General_SettingsBackupAndRestore.Description" xml:space="preserve"> <value>PowerToys will restart automatically if needed</value> </data> <data name="ShortcutGuide_Enable.Header" xml:space="preserve"> <value>Enable Shortcut Guide</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="ShortcutGuide_OverlayOpacity.Header" xml:space="preserve"> <value>Background opacity (%)</value> </data> <data name="ShortcutGuide_DisabledApps.Header" xml:space="preserve"> <value>Exclude apps</value> </data> <data name="ShortcutGuide_DisabledApps.Description" xml:space="preserve"> <value>Turns off Shortcut Guide when these applications have focus - add one application name per line</value> </data> <data name="ShortcutGuide_DisabledApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> <comment>Don't translate outlook.exe</comment> </data> <data name="ImageResizer_CustomSizes.Header" xml:space="preserve"> <value>Image sizes</value> </data> <data name="ImageResizer_Presets.Header" xml:space="preserve"> <value>Presets</value> </data> <data name="ImageResizer_Presets.Description" xml:space="preserve"> <value>Manage preset sizes that can be used in the editor</value> </data> <data name="ImageResizer_FilenameFormatHeader.Description" xml:space="preserve"> <value>This format is used as the filename for resized images</value> </data> <data name="ImageResizer.ModuleDescription" xml:space="preserve"> <value>Lets you resize images by right-clicking.</value> </data> <data name="ImageResizer_EnableToggle.Header" xml:space="preserve"> <value>Enable Image Resizer</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="ImagesSizesListView.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Image Size</value> </data> <data name="ImageResizer_Configurations.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Configurations</value> </data> <data name="ImageResizer_Name.Header" xml:space="preserve"> <value>Name</value> </data> <data name="ImageResizer_Fit.Header" xml:space="preserve"> <value>Fit</value> </data> <data name="ImageResizer_Width.Header" xml:space="preserve"> <value>Width</value> </data> <data name="ImageResizer_Height.Header" xml:space="preserve"> <value>Height</value> </data> <data name="ImageResizer_Size.Header" xml:space="preserve"> <value>Unit</value> </data> <data name="RemoveButton.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Remove</value> <comment>Removes a user defined setting group for Image Resizer</comment> </data> <data name="RemoveItem.Text" xml:space="preserve"> <value>Delete</value> </data> <data name="ImageResizer_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Image Resizer</value> </data> <data name="ImageResizer_AddSizeButton.Content" xml:space="preserve"> <value>Add new size</value> </data> <data name="ImageResizer_SaveSizeButton.Label" xml:space="preserve"> <value>Save sizes</value> </data> <data name="ImageResizer_Encoding.Header" xml:space="preserve"> <value>JPEG quality level (%)</value> </data> <data name="ImageResizer_PNGInterlacing.Header" xml:space="preserve"> <value>PNG interlacing</value> </data> <data name="ImageResizer_TIFFCompression.Header" xml:space="preserve"> <value>TIFF compression</value> </data> <data name="File.Header" xml:space="preserve"> <value>File</value> <comment>as in a computer file</comment> </data> <data name="Default.Content" xml:space="preserve"> <value>Default</value> </data> <data name="ImageResizer_ENCODER_TIFF_CCITT3.Content" xml:space="preserve"> <value>CCITT3</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_CCITT4.Content" xml:space="preserve"> <value>CCITT4</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_Default.Content" xml:space="preserve"> <value>Default</value> </data> <data name="ImageResizer_ENCODER_TIFF_LZW.Content" xml:space="preserve"> <value>LZW</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_None.Content" xml:space="preserve"> <value>None</value> </data> <data name="ImageResizer_ENCODER_TIFF_RLE.Content" xml:space="preserve"> <value>RLE</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_Zip.Content" xml:space="preserve"> <value>Zip</value> <comment>do not loc</comment> </data> <data name="ImageResizer_FallbackEncoder_BMP.Content" xml:space="preserve"> <value>BMP encoder</value> </data> <data name="ImageResizer_FallbackEncoder_GIF.Content" xml:space="preserve"> <value>GIF encoder</value> </data> <data name="ImageResizer_FallbackEncoder_JPEG.Content" xml:space="preserve"> <value>JPEG encoder</value> </data> <data name="ImageResizer_FallbackEncoder_PNG.Content" xml:space="preserve"> <value>PNG encoder</value> </data> <data name="ImageResizer_FallbackEncoder_TIFF.Content" xml:space="preserve"> <value>TIFF encoder</value> </data> <data name="ImageResizer_FallbackEncoder_WMPhoto.Content" xml:space="preserve"> <value>WMPhoto encoder</value> </data> <data name="ImageResizer_Sizes_Fit_Fill.Content" xml:space="preserve"> <value>Fill</value> <comment>Refers to filling an image into a certain size. It could overflow</comment> </data> <data name="ImageResizer_Sizes_Fit_Fill_ThirdPersonSingular.Text" xml:space="preserve"> <value>Fill</value> <comment>Refers to filling an image into a certain size. It could overflow</comment> </data> <data name="ImageResizer_Sizes_Fit_Fit.Content" xml:space="preserve"> <value>Fit</value> <comment>Refers to fitting an image into a certain size. It won't overflow</comment> </data> <data name="ImageResizer_Sizes_Fit_Stretch.Content" xml:space="preserve"> <value>Stretch</value> <comment>Refers to stretching an image into a certain size. Won't overflow but could distort.</comment> </data> <data name="ImageResizer_Sizes_Units_CM.Content" xml:space="preserve"> <value>Centimeters</value> </data> <data name="ImageResizer_Sizes_Units_Inches.Content" xml:space="preserve"> <value>Inches</value> </data> <data name="ImageResizer_Sizes_Units_Percent.Content" xml:space="preserve"> <value>Percent</value> </data> <data name="ImageResizer_Sizes_Units_Pixels.Content" xml:space="preserve"> <value>Pixels</value> </data> <data name="Off.Content" xml:space="preserve"> <value>Off</value> </data> <data name="On.Content" xml:space="preserve"> <value>On</value> </data> <data name="GeneralPage_ToggleSwitch_AlwaysRunElevated_Link.Content" xml:space="preserve"> <value>Learn more about administrator mode</value> </data> <data name="GeneralPage_ToggleSwitch_AutoDownloadUpdates.Header" xml:space="preserve"> <value>Download updates automatically</value> </data> <data name="GeneralPage_ToggleSwitch_AutoDownloadUpdates.Description" xml:space="preserve"> <value>Except on metered connections</value> </data> <data name="GeneralPage_ToggleSwitch_RunningAsAdminNote.Text" xml:space="preserve"> <value>Currently running as administrator</value> </data> <data name="GeneralSettings_AlwaysRunAsAdminText.Header" xml:space="preserve"> <value>Always run as administrator</value> </data> <data name="GeneralSettings_AlwaysRunAsAdminText.Description" xml:space="preserve"> <value>You need to run as administrator to use this setting</value> </data> <data name="GeneralSettings_RunningAsUserText" xml:space="preserve"> <value>Running as user</value> </data> <data name="GeneralSettings_RunningAsAdminText" xml:space="preserve"> <value>Running as administrator</value> </data> <data name="FancyZones.ModuleTitle" xml:space="preserve"> <value>FancyZones</value> </data> <data name="FileExplorerPreview.ModuleTitle" xml:space="preserve"> <value>File Explorer</value> </data> <data name="FileExplorerPreview_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>File Explorer</value> <comment>Use same translation as Windows does for File Explorer</comment> </data> <data name="ImageResizer.ModuleTitle" xml:space="preserve"> <value>Image Resizer</value> </data> <data name="KeyboardManager.ModuleTitle" xml:space="preserve"> <value>Keyboard Manager</value> </data> <data name="ColorPicker.ModuleTitle" xml:space="preserve"> <value>Color Picker</value> </data> <data name="PowerLauncher.ModuleTitle" xml:space="preserve"> <value>PowerToys Run</value> </data> <data name="PowerToys_Run_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>PowerToys Run</value> </data> <data name="PowerRename.ModuleTitle" xml:space="preserve"> <value>PowerRename</value> <comment>do not loc the product name</comment> </data> <data name="PowerRename_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>PowerRename</value> <comment>do not loc</comment> </data> <data name="ShortcutGuide.ModuleTitle" xml:space="preserve"> <value>Shortcut Guide</value> </data> <data name="Shortcut_Guide_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Shortcut Guide</value> </data> <data name="General_Repository.Text" xml:space="preserve"> <value>GitHub repository</value> </data> <data name="General_Version.Header" xml:space="preserve"> <value>Version</value> </data> <data name="General_VersionLastChecked.Text" xml:space="preserve"> <value>Last checked: </value> </data> <data name="General_SettingsBackupInfo_DateHeader.Text" xml:space="preserve"> <value>Created at:</value> </data> <data name="General_SettingsBackupAndRestoreStatusInfo.Header" xml:space="preserve"> <value>Backup information</value> </data> <data name="General_SettingsBackupInfo_SourceHeader.Text" xml:space="preserve"> <value>Source machine:</value> </data> <data name="General_SettingsBackupInfo_StatusHeader.Text" xml:space="preserve"> <value>Status:</value> </data> <data name="General_Version.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Version</value> </data> <data name="Admin_mode.Header" xml:space="preserve"> <value>Administrator mode</value> </data> <data name="FancyZones_RestoreSize.Content" xml:space="preserve"> <value>Restore the original size of windows when unsnapping</value> </data> <data name="ImageResizer_FallBackEncoderText.Header" xml:space="preserve"> <value>Fallback encoder</value> </data> <data name="ImageResizer_FileFormatDescription.Text" xml:space="preserve"> <value>The following parameters can be used:</value> </data> <data name="ImageResizer_FilenameFormatHeader.Header" xml:space="preserve"> <value>Filename format</value> </data> <data name="ImageResizer_FileModifiedDate.Header" xml:space="preserve"> <value>File modified timestamp</value> </data> <data name="ImageResizer_FileModifiedDate.Description" xml:space="preserve"> <value>Used as the 'modified timestamp' in the file properties</value> </data> <data name="ImageResizer_UseOriginalDate.Content" xml:space="preserve"> <value>Original file timestamp</value> </data> <data name="ImageResizer_UseResizeDate.Content" xml:space="preserve"> <value>Timestamp of resize action</value> </data> <data name="Encoding.Header" xml:space="preserve"> <value>Encoding</value> </data> <data name="KeyboardManager_RemapKeyboardButton.Description" xml:space="preserve"> <value>Remap keys to other keys or shortcuts</value> </data> <data name="KeyboardManager_RemapShortcutsButton.Description" xml:space="preserve"> <value>Remap shortcuts to other shortcuts or keys for all or specific applications</value> </data> <data name="General.ModuleDescription" xml:space="preserve"> <value>Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. Made with 💗 by Microsoft and the PowerToys community.</value> <comment>Windows refers to the OS</comment> </data> <data name="FancyZones_SpanZonesAcrossMonitors.Header" xml:space="preserve"> <value>Allow zones to span across monitors</value> </data> <data name="ImageResizer_Formatting_ActualHeight.Text" xml:space="preserve"> <value>Actual height</value> </data> <data name="ImageResizer_Formatting_ActualWidth.Text" xml:space="preserve"> <value>Actual width</value> </data> <data name="ImageResizer_Formatting_Filename.Text" xml:space="preserve"> <value>Original filename</value> </data> <data name="ImageResizer_Formatting_SelectedHeight.Text" xml:space="preserve"> <value>Selected height</value> </data> <data name="ImageResizer_Formatting_SelectedWidth.Text" xml:space="preserve"> <value>Selected width</value> </data> <data name="ImageResizer_Formatting_Sizename.Text" xml:space="preserve"> <value>Size name</value> </data> <data name="FancyZones_MoveWindowsBasedOnPositionCheckBoxControl.Content" xml:space="preserve"> <value>Move windows based on their position</value> <comment>Windows refers to application windows</comment> </data> <data name="GeneralSettings_NewVersionIsAvailable" xml:space="preserve"> <value>New update available</value> </data> <data name="GeneralSettings_VersionIsLatest" xml:space="preserve"> <value>PowerToys is up to date.</value> </data> <data name="FileExplorerPreview_IconThumbnail_GroupSettings.Header" xml:space="preserve"> <value>Thumbnail icon Preview</value> </data> <data name="FileExplorerPreview_IconThumbnail_GroupSettings.Description" xml:space="preserve"> <value>Select the file types for which thumbnail previews must be rendered.</value> </data> <data name="FileExplorerPreview_PreviewPane.Header" xml:space="preserve"> <value>Preview Pane</value> </data> <data name="FileExplorerPreview_PreviewPane.Description" xml:space="preserve"> <value>Select the file types which must be rendered in the Preview Pane. Ensure that Preview Pane is open by toggling the view with Alt + P in File Explorer.</value> <comment>Preview Pane and File Explorer are app/feature names in Windows. 'Alt + P' is a shortcut</comment> </data> <data name="FileExplorerPreview_RunAsAdminRequired.Title" xml:space="preserve"> <value>You need to run as administrator to modify these settings.</value> </data> <data name="FileExplorerPreview_RebootRequired.Title" xml:space="preserve"> <value>A reboot may be required for changes to these settings to take effect</value> </data> <data name="FileExplorerPreview_PreviewHandlerOutlookIncompatibility.Title" xml:space="preserve"> <value>Enabling the preview handlers will override other preview handlers already installed - there have been reports of incompatibility between Outlook and the PDF Preview Handler.</value> <comment>Outlook is the name of a Microsoft product</comment> </data> <data name="FileExplorerPreview_ThumbnailsMightNotAppearOnRemoteFolders.Title" xml:space="preserve"> <value>Thumbnails might not appear on paths managed by cloud storage solutions like OneDrive, since these solutions may get their thumbnails from the cloud instead of generating them locally.</value> <comment>OneDrive is the name of a Microsoft product</comment> </data> <data name="FancyZones_ExcludeApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> <comment>Don't translate outlook.exe</comment> </data> <data name="ImageResizer_FilenameFormatPlaceholder.PlaceholderText" xml:space="preserve"> <value>Example: %1 (%2)</value> </data> <data name="ImageResizer_FilenameParameters.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Filename parameters</value> </data> <data name="Radio_Theme_Dark.Content" xml:space="preserve"> <value>Dark</value> <comment>Dark refers to color, not weight</comment> </data> <data name="Radio_Theme_Light.Content" xml:space="preserve"> <value>Light</value> <comment>Light refers to color, not weight</comment> </data> <data name="Radio_Theme_Default.Content" xml:space="preserve"> <value>Windows default</value> <comment>Windows refers to the Operating system</comment> </data> <data name="Windows_Color_Settings.Content" xml:space="preserve"> <value>Windows color settings</value> <comment>Windows refers to the Operating system</comment> </data> <data name="ColorPicker_CopiedColorRepresentation.Header" xml:space="preserve"> <value>Default color format</value> </data> <data name="ColorPickerFirst.Content" xml:space="preserve"> <value>Pick a color and open editor</value> </data> <data name="EditorFirst.Content" xml:space="preserve"> <value>Open editor</value> </data> <data name="ColorPickerOnly.Content" xml:space="preserve"> <value>Only pick a color</value> </data> <data name="ColorPicker_ActivationAction.Header" xml:space="preserve"> <value>Activation behavior</value> </data> <data name="ColorFormats.Header" xml:space="preserve"> <value>Picker behavior</value> </data> <data name="ColorPicker_CopiedColorRepresentation.Description" xml:space="preserve"> <value>This format will be copied to your clipboard</value> </data> <data name="KBM_KeysCannotBeRemapped.Text" xml:space="preserve"> <value>Learn more about remapping limitations</value> <comment>This is a link that will discuss what is and is not possible for Keyboard manager to remap</comment> </data> <data name="FancyZones_Editor_GroupSettings.Header" xml:space="preserve"> <value>Editor</value> <comment>refers to the FancyZone editor</comment> </data> <data name="FancyZones_WindowBehavior_GroupSettings.Header" xml:space="preserve"> <value>Window behavior</value> </data> <data name="FancyZones_WindowBehavior_GroupSettings.Description" xml:space="preserve"> <value>Manage how windows behave when using FancyZones</value> </data> <data name="FancyZones_Windows.Header" xml:space="preserve"> <value>Windows</value> <comment>Do translate: refers to a set of application windows, not the product name</comment> </data> <data name="PowerRename_BehaviorHeader.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="PowerRename_Toggle_UseBoostLib.Header" xml:space="preserve"> <value>Use Boost library</value> <comment>Boost is a product name, should not be translated</comment> </data> <data name="PowerRename_Toggle_UseBoostLib.Description" xml:space="preserve"> <value>Provides extended features but may use different regex syntax</value> <comment>Boost is a product name, should not be translated</comment> </data> <data name="MadeWithOssLove.Text" xml:space="preserve"> <value>Made with 💗 by Microsoft and the PowerToys community.</value> </data> <data name="ColorPicker_ColorFormats.Header" xml:space="preserve"> <value>Color formats</value> </data> <data name="ColorPicker_ColorFormats.Description" xml:space="preserve"> <value>Configure the color formats (edit, delete, hide, reorder them)</value> </data> <data name="MoveUp.Text" xml:space="preserve"> <value>Move up</value> </data> <data name="MoveDown.Text" xml:space="preserve"> <value>Move down</value> </data> <data name="ColorPickerAddNewFormat.Content" xml:space="preserve"> <value>Add new format</value> </data> <data name="NewColorFormat.Header" xml:space="preserve"> <value>Format</value> </data> <data name="NewColorName.Header" xml:space="preserve"> <value>Name</value> </data> <data name="AddCustomColorFormat" xml:space="preserve"> <value>Add custom color format</value> </data> <data name="ColorFormatSave" xml:space="preserve"> <value>Save</value> </data> <data name="EditCustomColorFormat" xml:space="preserve"> <value>Edit custom color format</value> </data> <data name="ColorFormatUpdate" xml:space="preserve"> <value>Update</value> </data> <data name="CustomColorFormatDefaultName" xml:space="preserve"> <value>My Format</value> </data> <data name="ColorFormatDialog.SecondaryButtonText" xml:space="preserve"> <value>Cancel</value> </data> <data name="ColorFormatEditorHelpline1.Text" xml:space="preserve"> <value>The following parameters can be used:</value> </data> <data name="Help_red" xml:space="preserve"> <value>red</value> </data> <data name="Help_green" xml:space="preserve"> <value>green</value> </data> <data name="Help_blue" xml:space="preserve"> <value>blue</value> </data> <data name="Help_alpha" xml:space="preserve"> <value>alpha</value> </data> <data name="Help_cyan" xml:space="preserve"> <value>cyan</value> </data> <data name="Help_magenta" xml:space="preserve"> <value>magenta</value> </data> <data name="Help_yellow" xml:space="preserve"> <value>yellow</value> </data> <data name="Help_black_key" xml:space="preserve"> <value>black key</value> </data> <data name="Help_hue" xml:space="preserve"> <value>hue</value> </data> <data name="Help_hueNat" xml:space="preserve"> <value>hue (natural)</value> </data> <data name="Help_saturationI" xml:space="preserve"> <value>saturation (HSI)</value> </data> <data name="Help_saturationL" xml:space="preserve"> <value>saturation (HSL)</value> </data> <data name="Help_saturationB" xml:space="preserve"> <value>saturation (HSB)</value> </data> <data name="Help_brightness" xml:space="preserve"> <value>brightness</value> </data> <data name="Help_intensity" xml:space="preserve"> <value>intensity</value> </data> <data name="Help_lightnessNat" xml:space="preserve"> <value>lightness (nat)</value> </data> <data name="Help_lightnessCIE" xml:space="preserve"> <value>lightness (CIE)</value> </data> <data name="Help_value" xml:space="preserve"> <value>value</value> </data> <data name="Help_whiteness" xml:space="preserve"> <value>whiteness</value> </data> <data name="Help_blackness" xml:space="preserve"> <value>blackness</value> </data> <data name="Help_chromaticityA" xml:space="preserve"> <value>chromaticityA</value> </data> <data name="Help_chromaticityB" xml:space="preserve"> <value>chromaticityB</value> </data> <data name="Help_X_value" xml:space="preserve"> <value>X value</value> </data> <data name="Help_Y_value" xml:space="preserve"> <value>Y value</value> </data> <data name="Help_Z_value" xml:space="preserve"> <value>Z value</value> </data> <data name="Help_decimal_value_RGB" xml:space="preserve"> <value>decimal value (RGB)</value> </data> <data name="Help_decimal_value_BGR" xml:space="preserve"> <value>decimal value (BGR)</value> </data> <data name="Help_color_name" xml:space="preserve"> <value>color name</value> </data> <data name="ColorFormatEditorHelpline2.Text" xml:space="preserve"> <value>The red, green, blue and alpha values can be formatted to the following formats:</value> </data> <data name="Help_byte" xml:space="preserve"> <value>byte value (default)</value> </data> <data name="Help_hexL1" xml:space="preserve"> <value>hex lowercase one digit</value> </data> <data name="Help_hexU1" xml:space="preserve"> <value>hex uppercase one digit</value> </data> <data name="Help_hexL2" xml:space="preserve"> <value>hex lowercase two digits</value> </data> <data name="Help_hexU2" xml:space="preserve"> <value>hex uppercase two digits</value> </data> <data name="Help_floatWith" xml:space="preserve"> <value>float with leading zero</value> </data> <data name="Help_floatWithout" xml:space="preserve"> <value>float without leading zero</value> </data> <data name="ColorFormatEditorHelpline3.Text" xml:space="preserve"> <value>Example: %ReX means red value in hex uppercase two digits format.</value> </data> <data name="ColorPicker_ShowColorName.Header" xml:space="preserve"> <value>Show color name</value> </data> <data name="ColorPicker_ShowColorName.Description" xml:space="preserve"> <value>This will show the name of the color when picking a color</value> </data> <data name="ImageResizer_DefaultSize_Large" xml:space="preserve"> <value>Large</value> <comment>The size of the image</comment> </data> <data name="ImageResizer_DefaultSize_Medium" xml:space="preserve"> <value>Medium</value> <comment>The size of the image</comment> </data> <data name="ImageResizer_DefaultSize_Phone" xml:space="preserve"> <value>Phone</value> <comment>The size of the image referring to a Mobile Phone typical image size</comment> </data> <data name="ImageResizer_DefaultSize_Small" xml:space="preserve"> <value>Small</value> <comment>The size of the image</comment> </data> <data name="FancyZones_MoveWindowBasedOnRelativePosition_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Windows key + Up, down, left or right arrow key to move windows based on relative position</value> </data> <data name="FancyZones_MoveWindowLeftRightBasedOnZoneIndex_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Windows key + Left or right arrow keys to move windows based on zone index</value> </data> <data name="FancyZones_MoveWindowBasedOnRelativePosition_Description.Text" xml:space="preserve"> <value>Windows key +    or </value> <comment>Do not loc the icons (hex numbers)</comment> </data> <data name="FancyZones_MoveWindowLeftRightBasedOnZoneIndex_Description.Text" xml:space="preserve"> <value>Windows key +  or </value> <comment>Do not loc the icons (hex numbers)</comment> </data> <data name="FancyZones_MoveWindowBasedOnRelativePosition.Text" xml:space="preserve"> <value>Relative position</value> </data> <data name="FancyZones_MoveWindow.Header" xml:space="preserve"> <value>Move windows based on</value> </data> <data name="FancyZones_MoveWindowLeftRightBasedOnZoneIndex.Text" xml:space="preserve"> <value>Zone index</value> </data> <data name="ColorPicker_Editor.Header" xml:space="preserve"> <value>Color formats</value> </data> <data name="FancyZones_OverlappingZonesClosestCenter.Content" xml:space="preserve"> <value>Activate the zone whose center is closest to the cursor</value> </data> <data name="FancyZones_OverlappingZonesLargest.Content" xml:space="preserve"> <value>Activate the largest zone by area</value> </data> <data name="FancyZones_OverlappingZonesPositional.Content" xml:space="preserve"> <value>Split the overlapped area into multiple activation targets</value> </data> <data name="FancyZones_OverlappingZonesSmallest.Content" xml:space="preserve"> <value>Activate the smallest zone by area</value> </data> <data name="FancyZones_OverlappingZones.Header" xml:space="preserve"> <value>When multiple zones overlap</value> </data> <data name="PowerLauncher_Plugins.Header" xml:space="preserve"> <value>Plugins</value> </data> <data name="PowerLauncher_ActionKeyword.Header" xml:space="preserve"> <value>Direct activation command</value> </data> <data name="PowerLauncher_AuthoredBy.Text" xml:space="preserve"> <value>Authored by</value> <comment>example: Authored by Microsoft</comment> </data> <data name="PowerLauncher_IncludeInGlobalResultTitle.Text" xml:space="preserve"> <value>Include in global result</value> </data> <data name="PowerLauncher_IncludeInGlobalResultDescription.Text" xml:space="preserve"> <value>Show results on queries without direct activation command</value> </data> <data name="PowerLauncher_EnablePluginToggle.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Enable plugin</value> </data> <data name="PowerLauncher_EnablePluginToggle.OnContent" xml:space="preserve"> <value>On</value> </data> <data name="PowerLauncher_EnablePluginToggle.OffContent" xml:space="preserve"> <value>Off</value> </data> <data name="Run_AdditionalOptions.Text" xml:space="preserve"> <value>Additional options</value> </data> <data name="Run_NotAccessibleWarning.Title" xml:space="preserve"> <value>Please define an activation command or allow this plugin to be used in the global results.</value> </data> <data name="Run_AllPluginsDisabled.Title" xml:space="preserve"> <value>PowerToys Run can't provide any results without plugins</value> </data> <data name="Run_AllPluginsDisabled.Message" xml:space="preserve"> <value>Enable at least one plugin to get started</value> </data> <data name="Run_PluginUse.Header" xml:space="preserve"> <value>Plugins</value> </data> <data name="Run_PluginUseDescription.Text" xml:space="preserve"> <value>Include or remove plugins from the global results, change the direct activation phrase and configure additional options</value> </data> <data name="Run_PositionAppearance_GroupSettings.Header" xml:space="preserve"> <value>Position &amp; appearance</value> </data> <data name="Run_PositionHeader.Header" xml:space="preserve"> <value>Preferred monitor position</value> <comment>as in Show PowerToys Run on primary monitor</comment> </data> <data name="Run_PositionHeader.Description" xml:space="preserve"> <value>If multiple monitors are in use, PowerToys Run can be launched on the desired monitor</value> <comment>as in Show PowerToys Run on primary monitor</comment> </data> <data name="Run_Radio_Position_Cursor.Content" xml:space="preserve"> <value>Monitor with mouse cursor</value> </data> <data name="Run_Radio_Position_Focus.Content" xml:space="preserve"> <value>Monitor with focused window</value> </data> <data name="Run_Radio_Position_Primary_Monitor.Content" xml:space="preserve"> <value>Primary monitor</value> </data> <data name="Run_PluginsLoading.Text" xml:space="preserve"> <value>Plugins are loading...</value> </data> <data name="ColorPicker_ButtonDown.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Move the color down</value> </data> <data name="ColorPicker_ButtonUp.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Move the color up</value> </data> <data name="FancyZones_FlashZonesOnQuickSwitch.Content" xml:space="preserve"> <value>Flash zones when switching layout</value> </data> <data name="FancyZones_Layouts.Header" xml:space="preserve"> <value>Layouts</value> </data> <data name="FancyZones_QuickLayoutSwitch.Header" xml:space="preserve"> <value>Enable quick layout switch</value> </data> <data name="FancyZones_QuickLayoutSwitch.Description" xml:space="preserve"> <value>Layout-specific shortcuts can be configured in the editor</value> </data> <data name="FancyZones_QuickLayoutSwitch_GroupSettings.Text" xml:space="preserve"> <value>Quick layout switch</value> </data> <data name="Activation_Shortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="Activation_Shortcut.Description" xml:space="preserve"> <value>Customize the shortcut to activate this module</value> </data> <data name="Oobe_GetStarted.Text" xml:space="preserve"> <value>Let's get started!</value> </data> <data name="Oobe_PowerToysDescription.Text" xml:space="preserve"> <value>Welcome to PowerToys! These overviews will help you quickly learn the basics of all our utilities.</value> </data> <data name="Oobe_GettingStarted.Text" xml:space="preserve"> <value>Getting started</value> </data> <data name="Oobe_Launch.Text" xml:space="preserve"> <value>Launch</value> </data> <data name="Launch_ColorPicker.Content" xml:space="preserve"> <value>Launch Color Picker</value> </data> <data name="Oobe_LearnMore.Text" xml:space="preserve"> <value>Learn more about</value> </data> <data name="Oobe_ColorPicker.Description" xml:space="preserve"> <value>Color Picker is a system-wide color selection tool for Windows that enables you to pick colors from any currently running application and automatically copies it in a configurable format to your clipboard.</value> </data> <data name="Oobe_FancyZones.Description" xml:space="preserve"> <value>FancyZones is a window manager that makes it easy to create complex window layouts and quickly position windows into those layouts.</value> </data> <data name="Oobe_FileLocksmith.Description" xml:space="preserve"> <value>File Locksmith lists which processes are using the selected files or directories and allows closing those processes.</value> </data> <data name="Oobe_FileExplorer.Description" xml:space="preserve"> <value>PowerToys introduces add-ons to the Windows File Explorer that will enable files like Markdown (.md), PDF (.pdf), SVG (.svg), STL (.stl), G-code (.gcode) and developer files to be viewed in the preview pane. It introduces File Explorer thumbnail support for a number of these file types as well.</value> </data> <data name="Oobe_ImageResizer.Description" xml:space="preserve"> <value>Image Resizer is a Windows shell extension for simple bulk image-resizing.</value> </data> <data name="Oobe_KBM.Description" xml:space="preserve"> <value>Keyboard Manager allows you to customize the keyboard to be more productive by remapping keys and creating your own keyboard shortcuts.</value> </data> <data name="Oobe_MouseWithoutBorders.Description" xml:space="preserve"> <value>Mouse Without Borders enables using the mouse pointer, keyboard, clipboard and drag and drop between machines in the same local network.</value> </data> <data name="Oobe_PowerRename.Description" xml:space="preserve"> <value>PowerRename enables you to perform simple bulk renaming, searching and replacing file names.</value> </data> <data name="Oobe_Run.Description" xml:space="preserve"> <value>PowerToys Run is a quick launcher for power users that contains some additional features without sacrificing performance.</value> </data> <data name="Oobe_MeasureTool.Description" xml:space="preserve"> <value>Screen Ruler is a quick and easy way to measure pixels on your screen.</value> </data> <data name="Oobe_ShortcutGuide.Description" xml:space="preserve"> <value>Shortcut Guide presents the user with a listing of available shortcuts for the current state of the desktop.</value> </data> <data name="Oobe_VideoConference.Description" xml:space="preserve"> <value>Video Conference Mute allows users to quickly mute the microphone and turn off the camera while on a conference call with a single keystroke, regardless of what application has focus on your computer.</value> </data> <data name="Oobe_MouseUtils.Description" xml:space="preserve"> <value>A collection of utilities to enhance your mouse.</value> <comment>Mouse as in the hardware peripheral</comment> </data> <data name="Oobe_Overview.Description" xml:space="preserve"> <value>Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. Take a moment to preview the various utilities listed or view our comprehensive documentation.</value> </data> <data name="Oobe_Overview_DescriptionLinkText.Text" xml:space="preserve"> <value>Documentation on Microsoft Docs</value> </data> <data name="ReleaseNotes.Content" xml:space="preserve"> <value>Release notes</value> </data> <data name="Oobe_ColorPicker_HowToUse.Text" xml:space="preserve"> <value>to open Color Picker.</value> </data> <data name="Oobe_ColorPicker_TipsAndTricks.Text" xml:space="preserve"> <value>To select a color with more precision, **scroll the mouse wheel** to zoom in.</value> </data> <data name="Oobe_FancyZones_HowToUse.Text" xml:space="preserve"> <value>**Shift** + **drag the window** to snap a window to a zone, and release the window in the desired zone.</value> </data> <data name="Oobe_FancyZones_HowToUse_Shortcut.Text" xml:space="preserve"> <value>to open the FancyZones editor.</value> </data> <data name="Oobe_FancyZones_TipsAndTricks.Text" xml:space="preserve"> <value>Snap a window to multiple zones by holding the **Ctrl** key (while also holding **Shift**) when dragging a window.</value> </data> <data name="Oobe_FileLocksmith_HowToUse.Text" xml:space="preserve"> <value>In File Explorer, right-click one or more selected files and select **What's using this file?** from the context menu.</value> </data> <data name="Oobe_FileLocksmith_TipsAndTricks.Text" xml:space="preserve"> <value>Press the **Restart Elevated** button from the File Locksmith UI to also get information on elevated processes that might be using the files.</value> </data> <data name="Oobe_FileExplorer_HowToEnable.Text" xml:space="preserve"> <value>Select **View** which is located at the top of File Explorer, followed by **Show**, and then **Preview pane**. From there, simply click on one of the supported files in the File Explorer and observe the content on the preview pane!</value> </data> <data name="Oobe_HowToCreateMappings.Text" xml:space="preserve"> <value>How to create mappings</value> </data> <data name="Oobe_HowToEnable.Text" xml:space="preserve"> <value>How to enable</value> </data> <data name="Oobe_HowToLaunch.Text" xml:space="preserve"> <value>How to launch</value> </data> <data name="Oobe_HowToUse.Text" xml:space="preserve"> <value>How to use</value> </data> <data name="Oobe_ImageResizer_HowToLaunch.Text" xml:space="preserve"> <value>In File Explorer, right-click one or more image files and select **Resize pictures** from the context menu.</value> </data> <data name="Oobe_ImageResizer_TipsAndTricks.Text" xml:space="preserve"> <value>Want a custom size? You can add them in the PowerToys Settings!</value> </data> <data name="Oobe_KBM_HowToCreateMappings.Text" xml:space="preserve"> <value>Launch **PowerToys Settings**, navigate to the Keyboard Manager menu, and select either **Remap a key** or **Remap a shortcut**.</value> </data> <data name="Oobe_KBM_TipsAndTricks.Text" xml:space="preserve"> <value>Want to only have a shortcut work for a single application? Use the Target App field when creating the shortcut remapping.</value> </data> <data name="Oobe_MouseWithoutBorders_HowToUse.Text" xml:space="preserve"> <value>Use the Settings screen on each machine to connect to the other machines using the same key. If a connection is not working, it may be necessary to add an exception to the Windows Firewall.</value> </data> <data name="Oobe_MouseWithoutBorders_TipsAndTricks.Text" xml:space="preserve"> <value>Use the service option in Settings to install a service enabling Mouse Without Borders to function even in the lock screen.</value> </data> <data name="Oobe_PowerRename_HowToUse.Text" xml:space="preserve"> <value>In File Explorer, right-click one or more selected files and select **PowerRename** from the context menu.</value> </data> <data name="Oobe_PowerRename_TipsAndTricks.Text" xml:space="preserve"> <value>PowerRename supports searching for files using regular expressions to enable more advanced renaming functionalities.</value> </data> <data name="Oobe_Run_HowToLaunch.Text" xml:space="preserve"> <value>to open Run and just start typing.</value> </data> <data name="Oobe_Run_TipsAndTricks.Text" xml:space="preserve"> <value>PowerToys Run supports various action keys to funnel search queries for a specific subset of results. Typing `&lt;` searches for running processes only, `?` will search only for file, or `.` for installed applications! See PowerToys documentation for the complete set of 'Action Keys' available.</value> </data> <data name="Oobe_ShortcutGuide_HowToLaunch.Text" xml:space="preserve"> <value>to open Shortcut Guide, press it again to close or press **Esc**.</value> </data> <data name="Oobe_TipsAndTricks.Text" xml:space="preserve"> <value>Tips &amp; tricks</value> </data> <data name="Oobe_VideoConference_ToggleMicVid.Text" xml:space="preserve"> <value>to toggle both your microphone and video</value> </data> <data name="Oobe_VideoConference_ToggleMic.Text" xml:space="preserve"> <value>to toggle your microphone</value> </data> <data name="Oobe_VideoConference_PushToTalkMic.Text" xml:space="preserve"> <value>to toggle your microphone until key release</value> </data> <data name="Oobe_VideoConference_ToggleVid.Text" xml:space="preserve"> <value>to toggle your video</value> </data> <data name="Oobe_MeasureTool_Activation.Text" xml:space="preserve"> <value>to bring up the Screen Ruler command bar.</value> </data> <data name="Oobe_MeasureTool_HowToLaunch.Text" xml:space="preserve"> <value>The Bounds mode lets you select a specific area to measure. You can also shift-drag an area to persist in on screen. The various Spacing modes allows tracing similar pixels along horizontal and vertical axes with a customizable pixel tolerance threshold (use settings or mouse wheel to adjust it).</value> </data> <data name="Oobe_MeasureTool.Title" xml:space="preserve"> <value>Screen Ruler</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_ColorPicker.Title" xml:space="preserve"> <value>Color Picker</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_FancyZones.Title" xml:space="preserve"> <value>FancyZones</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_FileLocksmith.Title" xml:space="preserve"> <value>File Locksmith</value> </data> <data name="Oobe_ImageResizer.Title" xml:space="preserve"> <value>Image Resizer</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_KBM.Title" xml:space="preserve"> <value>Keyboard Manager</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_MouseWithoutBorders.Title" xml:space="preserve"> <value>Mouse Without Borders</value> <comment>Product name. Do not localize this string</comment> </data> <data name="Oobe_PowerRename.Title" xml:space="preserve"> <value>PowerRename</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_Run.Title" xml:space="preserve"> <value>PowerToys Run</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_ShortcutGuide.Title" xml:space="preserve"> <value>Shortcut Guide</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_VideoConference.Title" xml:space="preserve"> <value>Video Conference Mute</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_Overview.Title" xml:space="preserve"> <value>Welcome</value> </data> <data name="Oobe_WhatsNew.Text" xml:space="preserve"> <value>What's new</value> </data> <data name="Oobe_WhatsNew_LoadingError.Title" xml:space="preserve"> <value>Couldn't load the release notes.</value> </data> <data name="Oobe_WhatsNew_LoadingError.Message" xml:space="preserve"> <value>Please check your internet connection.</value> </data> <data name="Oobe_WhatsNew_ProxyAuthenticationWarning.Title" xml:space="preserve"> <value>Couldn't load the release notes.</value> </data> <data name="Oobe_WhatsNew_ProxyAuthenticationWarning.Message" xml:space="preserve"> <value>Your proxy server requires authentication.</value> </data> <data name="Oobe_WhatsNew_DetailedReleaseNotesLink.Text" xml:space="preserve"> <value>See more detailed release notes on GitHub</value> <comment>Don't loc "GitHub", it's the name of a product</comment> </data> <data name="OOBE_Settings.Content" xml:space="preserve"> <value>Open Settings</value> </data> <data name="Oobe_NavViewItem.Content" xml:space="preserve"> <value>Welcome to PowerToys</value> <comment>Don't loc "PowerToys"</comment> </data> <data name="Feedback_NavViewItem.Content" xml:space="preserve"> <value>Give feedback</value> </data> <data name="OobeWindow_Title" xml:space="preserve"> <value>Welcome to PowerToys</value> </data> <data name="OobeWindow_TitleTxt.Text" xml:space="preserve"> <value>Welcome to PowerToys</value> </data> <data name="SettingsWindow_Title" xml:space="preserve"> <value>PowerToys Settings</value> <comment>Title of the settings window when running as user</comment> </data> <data name="Awake.ModuleTitle" xml:space="preserve"> <value>Awake</value> </data> <data name="Awake.ModuleDescription" xml:space="preserve"> <value>A convenient way to keep your PC awake on-demand.</value> </data> <data name="Awake_EnableSettingsCard.Header" xml:space="preserve"> <value>Enable Awake</value> <comment>Awake is a product name, do not loc</comment> </data> <data name="Awake_NoKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep using the selected power plan</value> </data> <data name="Awake_IndefiniteKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep awake indefinitely</value> </data> <data name="Awake_TemporaryKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep awake for a time interval</value> </data> <data name="Awake_ExpirableKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep awake until expiration</value> </data> <data name="Awake_DisplaySettingsCard.Header" xml:space="preserve"> <value>Keep screen on</value> </data> <data name="Awake_DisplaySettingsCard.Description" xml:space="preserve"> <value>This setting is only available when keeping the PC awake</value> </data> <data name="Awake_ExpirationSettingsExpander.Description" xml:space="preserve"> <value>Keep custom awake state until a specific date and time</value> </data> <data name="Awake_ModeSettingsCard.Header" xml:space="preserve"> <value>Mode</value> </data> <data name="Awake_BehaviorSettingsGroup.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="Awake_IntervalHoursInput.Header" xml:space="preserve"> <value>Hours</value> </data> <data name="Awake_IntervalMinutesInput.Header" xml:space="preserve"> <value>Minutes</value> </data> <data name="Awake_ExpirationSettingsExpander_Date.Header" xml:space="preserve"> <value>End date</value> </data> <data name="Awake_ExpirationSettingsExpander_Time.Header" xml:space="preserve"> <value>End time</value> </data> <data name="Oobe_Awake.Title" xml:space="preserve"> <value>Awake</value> <comment>Module name, do not loc</comment> </data> <data name="Oobe_Awake.Description" xml:space="preserve"> <value>Awake is a Windows tool designed to keep your PC awake on-demand without having to manage its power settings. This behavior can be helpful when running time-consuming tasks while ensuring that your PC does not go to sleep or turn off its screens.</value> </data> <data name="Oobe_Awake_HowToUse.Text" xml:space="preserve"> <value>Open **PowerToys Settings** and enable Awake</value> </data> <data name="Oobe_Awake_TipsAndTricks.Text" xml:space="preserve"> <value>You can always change modes quickly by **right-clicking the Awake icon** in the system tray.</value> </data> <data name="General_FailedToDownloadTheNewVersion.Title" xml:space="preserve"> <value>An error occurred trying to install this update:</value> </data> <data name="General_InstallNow.Content" xml:space="preserve"> <value>Install now</value> </data> <data name="General_ReadMore.Text" xml:space="preserve"> <value>Read more</value> </data> <data name="General_NewVersionAvailable.Title" xml:space="preserve"> <value>An update is available:</value> </data> <data name="General_Downloading.Text" xml:space="preserve"> <value>Downloading...</value> </data> <data name="General_TryAgainToDownloadAndInstall.Content" xml:space="preserve"> <value>Try again to download and install</value> </data> <data name="General_CheckingForUpdates.Text" xml:space="preserve"> <value>Checking for updates...</value> </data> <data name="General_NewVersionReadyToInstall.Title" xml:space="preserve"> <value>An update is ready to install:</value> </data> <data name="General_UpToDate.Title" xml:space="preserve"> <value>PowerToys is up to date</value> </data> <data name="General_CantCheck.Title" xml:space="preserve"> <value>Network error. Please try again later</value> </data> <data name="General_DownloadAndInstall.Content" xml:space="preserve"> <value>Download &amp; install</value> </data> <data name="ImageResizer_Fit_Fill_ThirdPersonSingular" xml:space="preserve"> <value>Fills</value> </data> <data name="ImageResizer_Fit_Fit_ThirdPersonSingular" xml:space="preserve"> <value>Fits within</value> </data> <data name="ImageResizer_Fit_Stretch_ThirdPersonSingular" xml:space="preserve"> <value>Stretches to</value> </data> <data name="ImageResizer_Unit_Centimeter" xml:space="preserve"> <value>Centimeters</value> </data> <data name="ImageResizer_Unit_Inch" xml:space="preserve"> <value>Inches</value> </data> <data name="ImageResizer_Unit_Percent" xml:space="preserve"> <value>Percent</value> </data> <data name="ImageResizer_Unit_Pixel" xml:space="preserve"> <value>Pixels</value> </data> <data name="EditButton.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Edit</value> </data> <data name="ImageResizer_EditSize.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Edit size</value> </data> <data name="No" xml:space="preserve"> <value>No</value> <comment>Label of a cancel button</comment> </data> <data name="Delete_Dialog_Description" xml:space="preserve"> <value>Are you sure you want to delete this item?</value> </data> <data name="Yes" xml:space="preserve"> <value>Yes</value> <comment>Label of a confirmation button</comment> </data> <data name="SeeWhatsNew.Content" xml:space="preserve"> <value>See what's new</value> </data> <data name="Awake_ModeSettingsCard.Description" xml:space="preserve"> <value>Manage the state of your device when Awake is active</value> </data> <data name="ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="Enable_ColorFormat.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Enable colorformat</value> </data> <data name="More_Options_Button.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>More options</value> </data> <data name="More_Options_ButtonTooltip.Text" xml:space="preserve"> <value>More options</value> </data> <data name="To.Text" xml:space="preserve"> <value>to</value> <comment>as in: from x to y</comment> </data> <data name="LearnMore_Awake.Text" xml:space="preserve"> <value>Learn more about Awake</value> <comment>Awake is a product name, do not loc</comment> </data> <data name="LearnMore_ColorPicker.Text" xml:space="preserve"> <value>Learn more about Color Picker</value> <comment>Color Picker is a product name, do not loc</comment> </data> <data name="LearnMore_FancyZones.Text" xml:space="preserve"> <value>Learn more about FancyZones</value> <comment>FancyZones is a product name, do not loc</comment> </data> <data name="LearnMore_FileLocksmith.Text" xml:space="preserve"> <value>Learn more about File Locksmith</value> </data> <data name="LearnMore_ImageResizer.Text" xml:space="preserve"> <value>Learn more about Image Resizer</value> <comment>Image Resizer is a product name, do not loc</comment> </data> <data name="LearnMore_KBM.Text" xml:space="preserve"> <value>Learn more about Keyboard Manager</value> <comment>Keyboard Manager is a product name, do not loc</comment> </data> <data name="LearnMore_MouseUtils.Text" xml:space="preserve"> <value>Learn more about Mouse utilities</value> <comment>Mouse utilities is a product name, do not loc</comment> </data> <data name="LearnMore_PastePlain.Text" xml:space="preserve"> <value>Learn more about Paste as Plain Text</value> <comment> Paste as Plain Text is the name of the module. </comment> </data> <data name="LearnMore_MouseWithoutBorders.Text" xml:space="preserve"> <value>Learn more about Mouse Without Borders</value> <comment>Mouse Without Borders is the name of the module. </comment> </data> <data name="LearnMore_PowerPreview.Text" xml:space="preserve"> <value>Learn more about File Explorer add-ons</value> <comment>File Explorer is a product name, localize as Windows does</comment> </data> <data name="LearnMore_Peek.Text" xml:space="preserve"> <value>Learn more about Peek</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="LearnMore_PowerRename.Text" xml:space="preserve"> <value>Learn more about PowerRename</value> <comment>PowerRename is a product name, do not loc</comment> </data> <data name="LearnMore_Run.Text" xml:space="preserve"> <value>Learn more about PowerToys Run</value> <comment>PowerToys Run is a product name, do not loc</comment> </data> <data name="LearnMore_MeasureTool.Text" xml:space="preserve"> <value>Learn more about Screen Ruler</value> <comment>Screen Ruler is a product name, do not loc</comment> </data> <data name="LearnMore_ShortcutGuide.Text" xml:space="preserve"> <value>Learn more about Shortcut Guide</value> <comment>Shortcut Guide is a product name, do not loc</comment> </data> <data name="LearnMore_VCM.Text" xml:space="preserve"> <value>Learn more about Video Conference Mute</value> <comment>Video Conference Mute is a product name, do not loc</comment> </data> <data name="Oobe_FileExplorer.Title" xml:space="preserve"> <value>File Explorer add-ons</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_MouseUtils.Title" xml:space="preserve"> <value>Mouse utilities</value> <comment>Mouse as in the hardware peripheral</comment> </data> <data name="Oobe_MouseUtils_FindMyMouse.Text" xml:space="preserve"> <value>Find My Mouse</value> <comment>Mouse as in the hardware peripheral</comment> </data> <data name="Oobe_MouseUtils_FindMyMouse_Description.Text" xml:space="preserve"> <value>Focus the mouse pointer pressing the Ctrl key twice, using a custom shortcut or shaking the mouse.</value> <comment>Mouse as in the hardware peripheral. Key as in a keyboard key</comment> </data> <data name="Oobe_MouseUtils_MouseHighlighter.Text" xml:space="preserve"> <value>Mouse Highlighter</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MouseHighlighter_Description.Text" xml:space="preserve"> <value>Use a keyboard shortcut to highlight left and right mouse clicks.</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MousePointerCrosshairs.Text" xml:space="preserve"> <value>Mouse Pointer Crosshairs</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MousePointerCrosshairs_Description.Text" xml:space="preserve"> <value>Draw crosshairs centered around the mouse pointer.</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MouseJump.Text" xml:space="preserve"> <value>Mouse Jump</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MouseJump_Description.Text" xml:space="preserve"> <value>Jump the mouse pointer quickly to anywhere on your desktop.</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Launch_Run.Content" xml:space="preserve"> <value>Launch PowerToys Run</value> </data> <data name="Launch_ShortcutGuide.Content" xml:space="preserve"> <value>Launch Shortcut Guide</value> </data> <data name="ColorPicker_ColorFormat_ToggleSwitch.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Show format in editor</value> </data> <data name="GeneralPage_Documentation.Text" xml:space="preserve"> <value>Documentation</value> </data> <data name="PowerLauncher_SearchList.PlaceholderText" xml:space="preserve"> <value>Search this list</value> </data> <data name="PowerLauncher_SearchList.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Search this list</value> </data> <data name="Awake.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="ColorPicker.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="General.SecondaryLinksHeader" xml:space="preserve"> <value>Related information</value> </data> <data name="ImageResizer.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="MouseUtils.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="PowerLauncher.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="PowerRename.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="EditTooltip.Text" xml:space="preserve"> <value>Edit</value> </data> <data name="RemoveTooltip.Text" xml:space="preserve"> <value>Remove</value> </data> <data name="Activation_Shortcut_Cancel" xml:space="preserve"> <value>Cancel</value> </data> <data name="Activation_Shortcut_Description" xml:space="preserve"> <value>Press a combination of keys to change this shortcut</value> </data> <data name="Activation_Shortcut_With_Disable_Description" xml:space="preserve"> <value>Press a combination of keys to change this shortcut. Right-click to remove the key combination, thereby deactivating the shortcut.</value> </data> <data name="Activation_Shortcut_Reset" xml:space="preserve"> <value>Reset</value> </data> <data name="Activation_Shortcut_Save" xml:space="preserve"> <value>Save</value> </data> <data name="Activation_Shortcut_Title" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="InvalidShortcut.Title" xml:space="preserve"> <value>Invalid shortcut</value> </data> <data name="InvalidShortcutWarningLabel.Text" xml:space="preserve"> <value>Only shortcuts that start with **Windows key**, **Ctrl**, **Alt** or **Shift** are valid.</value> <comment>The ** sequences are used for text formatting of the key names. Don't remove them on translation.</comment> </data> <data name="FancyZones_SpanZonesAcrossMonitors.Description" xml:space="preserve"> <value>All monitors must have the same DPI scaling and will be treated as one large combined rectangle which contains all monitors</value> </data> <data name="ImageResizer_DefaultSize_NewSizePrefix" xml:space="preserve"> <value>New size</value> <comment>First part of the default name of new sizes that can be added in PT's settings ui.</comment> </data> <data name="Awake_IntervalSettingsCard.Header" xml:space="preserve"> <value>Interval before returning to the previous awakeness state</value> </data> <data name="Awake_ExpirationSettingsExpander.Header" xml:space="preserve"> <value>End date and time</value> </data> <data name="MouseUtils.ModuleTitle" xml:space="preserve"> <value>Mouse utilities</value> </data> <data name="MouseUtils.ModuleDescription" xml:space="preserve"> <value>A collection of mouse utilities.</value> </data> <data name="MouseUtils_FindMyMouse.Header" xml:space="preserve"> <value>Find My Mouse</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_FindMyMouse.Description" xml:space="preserve"> <value>Find My Mouse highlights the position of the cursor when pressing the Ctrl key twice, using a custom shortcut or when shaking the mouse.</value> <comment>"Ctrl" is a keyboard key. "Find My Mouse" is the name of the utility</comment> </data> <data name="MouseUtils_Enable_FindMyMouse.Header" xml:space="preserve"> <value>Enable Find My Mouse</value> <comment>"Find My Mouse" is the name of the utility.</comment> </data> <data name="MouseUtils_FindMyMouse_ActivationMethod.Header" xml:space="preserve"> <value>Activation method</value> </data> <data name="MouseUtils_FindMyMouse_ActivationDoubleControlPress.Content" xml:space="preserve"> <value>Press Left Control twice</value> <comment>Left control is the physical key on the keyboard.</comment> </data> <data name="MouseUtils_FindMyMouse_ActivationShakeMouse.Content" xml:space="preserve"> <value>Shake mouse</value> <comment>Mouse is the hardware peripheral.</comment> </data> <data name="MouseUtils_FindMyMouse_ExcludedApps.Description" xml:space="preserve"> <value>Prevents module activation when an excluded application is the foreground application</value> </data> <data name="MouseUtils_FindMyMouse_ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="MouseUtils_FindMyMouse_ExcludedApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> </data> <data name="MouseUtils_Prevent_Activation_On_Game_Mode.Content" xml:space="preserve"> <value>Do not activate when Game Mode is on</value> <comment>"Game mode" is the Windows feature to prevent notification when playing a game.</comment> </data> <data name="MouseUtils_FindMyMouse_BackgroundColor.Header" xml:space="preserve"> <value>Background color</value> </data> <data name="MouseUtils_FindMyMouse_SpotlightColor.Header" xml:space="preserve"> <value>Spotlight color</value> </data> <data name="MouseUtils_FindMyMouse_OverlayOpacity.Header" xml:space="preserve"> <value>Overlay opacity (%)</value> </data> <data name="MouseUtils_FindMyMouse_SpotlightRadius.Header" xml:space="preserve"> <value>Spotlight radius (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_FindMyMouse_SpotlightInitialZoom.Header" xml:space="preserve"> <value>Spotlight initial zoom</value> </data> <data name="MouseUtils_FindMyMouse_SpotlightInitialZoom.Description" xml:space="preserve"> <value>Spotlight zoom factor at animation start</value> </data> <data name="MouseUtils_FindMyMouse_AnimationDurationMs.Header" xml:space="preserve"> <value>Animation duration (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_FindMyMouse_AnimationDurationMs.Description" xml:space="preserve"> <value>Time before the spotlight appears (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_FindMyMouse_AnimationDurationMs_Disabled.Message" xml:space="preserve"> <value>Animations are disabled by OS. See Settings &gt; Accessibility &gt; Visual effects</value> </data> <data name="MouseUtils_FindMyMouse_ShakingMinimumDistance.Header" xml:space="preserve"> <value>Shake minimum distance</value> </data> <data name="MouseUtils_FindMyMouse_ShakingMinimumDistance.Description" xml:space="preserve"> <value>The minimum distance for mouse shaking activation, for adjusting sensitivity</value> </data> <data name="MouseUtils_MouseHighlighter.Header" xml:space="preserve"> <value>Mouse Highlighter</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_MouseHighlighter.Description" xml:space="preserve"> <value>Mouse Highlighter mode will highlight mouse clicks.</value> <comment>"Mouse Highlighter" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_Enable_MouseHighlighter.Header" xml:space="preserve"> <value>Enable Mouse Highlighter</value> <comment>"Find My Mouse" is the name of the utility.</comment> </data> <data name="MouseUtils_MouseHighlighter_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MouseUtils_MouseHighlighter_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to turn on or off this mode</value> <comment>"Mouse Highlighter" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_MouseHighlighter_PrimaryButtonClickColor.Header" xml:space="preserve"> <value>Primary button highlight color</value> </data> <data name="MouseUtils_MouseHighlighter_SecondaryButtonClickColor.Header" xml:space="preserve"> <value>Secondary button highlight color</value> </data> <data name="MouseUtils_MouseHighlighter_HighlightRadius.Header" xml:space="preserve"> <value>Radius (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDelayMs.Header" xml:space="preserve"> <value>Fade delay (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDelayMs.Description" xml:space="preserve"> <value>Time before the highlight begins to fade (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDurationMs.Header" xml:space="preserve"> <value>Fade duration (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDurationMs.Description" xml:space="preserve"> <value>Duration of the disappear animation (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MousePointerCrosshairs.Header" xml:space="preserve"> <value>Mouse Pointer Crosshairs</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_MousePointerCrosshairs.Description" xml:space="preserve"> <value>Mouse Pointer Crosshairs draws crosshairs centered on the mouse pointer.</value> <comment>"Mouse Pointer Crosshairs" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_Enable_MousePointerCrosshairs.Header" xml:space="preserve"> <value>Enable Mouse Pointer Crosshairs</value> <comment>"Mouse Pointer Crosshairs" is the name of the utility.</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MouseUtils_MousePointerCrosshairs_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to show/hide the crosshairs</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsColor.Header" xml:space="preserve"> <value>Crosshairs color</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsOpacity.Header" xml:space="preserve"> <value>Crosshairs opacity (%)</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsRadius.Header" xml:space="preserve"> <value>Crosshairs center radius (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsThickness.Header" xml:space="preserve"> <value>Crosshairs thickness (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsBorderColor.Header" xml:space="preserve"> <value>Crosshairs border color</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsBorderSize.Header" xml:space="preserve"> <value>Crosshairs border size (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_IsCrosshairsFixedLengthEnabled.Header" xml:space="preserve"> <value>Fix crosshairs length</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsFixedLength.Header" xml:space="preserve"> <value>Crosshairs fixed length (px)</value> <comment>px = pixels</comment> </data> <data name="FancyZones_Radio_Custom_Colors.Content" xml:space="preserve"> <value>Custom colors</value> </data> <data name="FancyZones_Radio_Default_Theme.Content" xml:space="preserve"> <value>Windows default</value> </data> <data name="ColorModeHeader.Header" xml:space="preserve"> <value>App theme</value> </data> <data name="FancyZones_Zone_Appearance.Description" xml:space="preserve"> <value>Customize the way zones look</value> </data> <data name="FancyZones_Zone_Appearance.Header" xml:space="preserve"> <value>Zone appearance</value> </data> <data name="VideoConference_DeprecationWarning.Title" xml:space="preserve"> <value>VCM is moving into legacy mode (maintenance only).</value> </data> <data name="VideoConference_DeprecationWarningButton.Content" xml:space="preserve"> <value>Learn more</value> </data> <data name="VideoConference_RunAsAdminRequired.Title" xml:space="preserve"> <value>You need to run as administrator to modify these settings.</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_GCODE.Header" xml:space="preserve"> <value>Geometric Code</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_GCODE.Description" xml:space="preserve"> <value>Only .gcode files with embedded thumbnails are supported</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_GCODE.Header" xml:space="preserve"> <value>Geometric Code</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_GCODE.Description" xml:space="preserve"> <value>Only .gcode files with embedded thumbnails are supported</value> </data> <data name="FancyZones_NumberColor.Header" xml:space="preserve"> <value>Number color</value> </data> <data name="FancyZones_ShowZoneNumberCheckBoxControl.Content" xml:space="preserve"> <value>Show zone number</value> </data> <data name="ToggleSwitch.OffContent" xml:space="preserve"> <value>Off</value> <comment>The state of a ToggleSwitch when it's off</comment> </data> <data name="ToggleSwitch.OnContent" xml:space="preserve"> <value>On</value> <comment>The state of a ToggleSwitch when it's on</comment> </data> <data name="CropAndLock.ModuleDescription" xml:space="preserve"> <value>Crop And Lock allows you to crop a current application into a smaller window or just create a thumbnail. Focus the target window and press the shortcut to start cropping.</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="CropAndLock.ModuleTitle" xml:space="preserve"> <value>Crop And Lock </value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="CropAndLock_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="CropAndLock_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="Shell_CropAndLock.Content" xml:space="preserve"> <value>Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="LearnMore_CropAndLock.Text" xml:space="preserve"> <value>Learn more about Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="CropAndLock_ReparentActivation_Shortcut.Header" xml:space="preserve"> <value>Reparent shortcut</value> </data> <data name="CropAndLock_ReparentActivation_Shortcut.Description" xml:space="preserve"> <value>Shortcut to crop an application's window into a cropped window. This is experimental and can cause issues with some applications, since the cropped window will contain the original application window.</value> </data> <data name="CropAndLock_ThumbnailActivation_Shortcut.Header" xml:space="preserve"> <value>Thumbnail shortcut</value> </data> <data name="CropAndLock_ThumbnailActivation_Shortcut.Description" xml:space="preserve"> <value>Shortcut to crop and create a thumbnail of another window. The application isn't controllable through the thumbnail but it'll have less compatibility issues. </value> </data> <data name="CropAndLock.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="Oobe_CropAndLock.Title" xml:space="preserve"> <value>Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="Oobe_CropAndLock.Description" xml:space="preserve"> <value>Crop And Lock allows you to crop a current application into a smaller window or just create a thumbnail. Focus the target window and press the shortcut to start cropping.</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="Oobe_CropAndLock_HowToUse_Thumbnail.Text" xml:space="preserve"> <value>to crop and create a thumbnail of another window. The application isn't controllable through the thumbnail but it'll have less compatibility issues.</value> </data> <data name="Oobe_CropAndLock_HowToUse_Reparent.Text" xml:space="preserve"> <value>to crop an application's window into a cropped window. This is experimental and can cause issues with some applications, since the cropped window will contain the original application window.</value> </data> <data name="AlwaysOnTop.ModuleDescription" xml:space="preserve"> <value>Always On Top is a quick and easy way to pin windows on top.</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop.ModuleTitle" xml:space="preserve"> <value>Always On Top </value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="Peek_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="AlwaysOnTop_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_ExcludedApps.Description" xml:space="preserve"> <value>Excludes an application from pinning on top</value> </data> <data name="AlwaysOnTop_ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="AlwaysOnTop_ExcludedApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> </data> <data name="AlwaysOnTop_FrameColor.Header" xml:space="preserve"> <value>Color</value> </data> <data name="AlwaysOnTop_FrameEnabled.Header" xml:space="preserve"> <value>Show a border around the pinned window</value> </data> <data name="AlwaysOnTop_FrameThickness.Header" xml:space="preserve"> <value>Thickness (px)</value> <comment>px = pixels</comment> </data> <data name="AlwaysOnTop_Behavior_GroupSettings.Header" xml:space="preserve"> <value>Appearance &amp; behavior</value> </data> <data name="Shell_AlwaysOnTop.Content" xml:space="preserve"> <value>Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_GameMode.Content" xml:space="preserve"> <value>Do not activate when Game Mode is on</value> <comment>Game Mode is a Windows feature</comment> </data> <data name="AlwaysOnTop_SoundTitle.Header" xml:space="preserve"> <value>Sound</value> </data> <data name="AlwaysOnTop_Sound.Content" xml:space="preserve"> <value>Play a sound when pinning a window</value> </data> <data name="AlwaysOnTop_Behavior.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="LearnMore_AlwaysOnTop.Text" xml:space="preserve"> <value>Learn more about Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="AlwaysOnTop_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to pin or unpin an app window</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="Oobe_AlwaysOnTop.Title" xml:space="preserve"> <value>Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="Oobe_AlwaysOnTop.Description" xml:space="preserve"> <value>Always On Top improves your multitasking workflow by pinning an application window so it's always in front - even when focus changes to another window after that.</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="Oobe_AlwaysOnTop_HowToUse.Text" xml:space="preserve"> <value>to pin or unpin the selected window so it's always on top of all other windows.</value> </data> <data name="Oobe_AlwaysOnTop_TipsAndTricks.Text" xml:space="preserve"> <value>You can tweak the visual outline of the pinned windows in PowerToys settings.</value> </data> <data name="AlwaysOnTop_FrameColor_Mode.Header" xml:space="preserve"> <value>Color mode</value> </data> <data name="AlwaysOnTop_Radio_Custom_Color.Content" xml:space="preserve"> <value>Custom color</value> </data> <data name="AlwaysOnTop_Radio_Windows_Default.Content" xml:space="preserve"> <value>Windows default</value> </data> <data name="FileExplorerPreview.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Monaco_Wrap_Text.Content" xml:space="preserve"> <value>Wrap text</value> <comment>Feature on or off</comment> </data> <data name="FancyZones_AllowPopupWindowSnap.Description" xml:space="preserve"> <value>This setting can affect all popup windows including notifications</value> </data> <data name="FancyZones_AllowPopupWindowSnap.Header" xml:space="preserve"> <value>Allow popup windows snapping</value> </data> <data name="FancyZones_AllowChildWindowSnap.Content" xml:space="preserve"> <value>Allow child windows snapping</value> </data> <data name="Shell_WhatsNew.Content" xml:space="preserve"> <value>What's new</value> </data> <data name="Shell_Peek.Content" xml:space="preserve"> <value>Peek</value> <comment>Product name: Navigation view item name for Peek</comment> </data> <data name="Peek.ModuleTitle" xml:space="preserve"> <value>Peek</value> </data> <data name="Peek.ModuleDescription" xml:space="preserve"> <value>Peek is a quick and easy way to preview files. Select a file in File Explorer and press the shortcut to open the file preview.</value> </data> <data name="Peek_EnablePeek.Header" xml:space="preserve"> <value>Enable Peek</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="Peek_BehaviorHeader.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="Peek_AlwaysRunNotElevated.Header" xml:space="preserve"> <value>Always run not elevated, even when PowerToys is elevated</value> </data> <data name="Peek_AlwaysRunNotElevated.Description" xml:space="preserve"> <value>Tries to run Peek without elevated permissions, to fix access to network shares. You need to disable and re-enable Peek for changes to this value to take effect.</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="Peek_CloseAfterLosingFocus.Header" xml:space="preserve"> <value>Automatically close the Peek window after it loses focus</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="FancyZones_DisableRoundCornersOnWindowSnap.Content" xml:space="preserve"> <value>Disable round corners when window is snapped</value> </data> <data name="PowerLauncher_SearchQueryTuningEnabled.Description" xml:space="preserve"> <value>Fine tune results ordering</value> </data> <data name="PowerLauncher_SearchQueryTuningEnabled.Header" xml:space="preserve"> <value>Results order tuning</value> </data> <data name="PowerLauncher_SearchClickedItemWeight.Description" xml:space="preserve"> <value>Use a higher number to get selected results to rise faster. The default is 5, 0 to disable.</value> </data> <data name="PowerLauncher_SearchClickedItemWeight.Header" xml:space="preserve"> <value>Selected item weight</value> </data> <data name="PowerLauncher_WaitForSlowResults.Description" xml:space="preserve"> <value>Selecting this can help preselect the top, more relevant result, but at the risk of jumpiness</value> </data> <data name="PowerLauncher_WaitForSlowResults.Header" xml:space="preserve"> <value>Wait on slower plugin results before selecting top item in results</value> </data> <data name="PowerLauncher_PluginWeightBoost.Description" xml:space="preserve"> <value>Use a higher number to have this plugin's result show higher in the global results. Default is 0.</value> </data> <data name="PowerLauncher_PluginWeightBoost.Header" xml:space="preserve"> <value>Global sort order score modifier</value> </data> <data name="AlwaysOnTop_RoundCorners.Content" xml:space="preserve"> <value>Enable round corners</value> </data> <data name="LearnMore_QuickAccent.Text" xml:space="preserve"> <value>Learn more about Quick Accent</value> <comment>Quick Accent is a product name, do not loc</comment> </data> <data name="QuickAccent_EnableQuickAccent.Header" xml:space="preserve"> <value>Enable Quick Accent</value> </data> <data name="Shell_QuickAccent.Content" xml:space="preserve"> <value>Quick Accent</value> </data> <data name="QuickAccent.ModuleDescription" xml:space="preserve"> <value>Quick Accent is an alternative way to type accented characters, useful for when a keyboard doesn't support that specific accent. Activate by holding the key for the character you want to add an accent to, then press the activation key (space, left or right arrow keys) and an overlay to select accented characters will appear!</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent.ModuleTitle" xml:space="preserve"> <value>Quick Accent</value> </data> <data name="QuickAccent.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> </data> <data name="Oobe_QuickAccent.Description" xml:space="preserve"> <value>Quick Accent is an easy way to write letters with accents, like on a smartphone.</value> </data> <data name="Oobe_QuickAccent.Title" xml:space="preserve"> <value>Quick Accent</value> </data> <data name="Oobe_QuickAccent_HowToUse.Text" xml:space="preserve"> <value>Open **PowerToys Settings** and enable Quick Accent. While holding the key for the character you want to add an accent to, press the Activation Key and an overlay to select the accented character will appear.</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="QuickAccent_Activation_Shortcut.Header" xml:space="preserve"> <value>Activation key</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent_Activation_Shortcut.Description" xml:space="preserve"> <value>Press this key after holding down the target letter</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent_Activation_Key_Arrows.Content" xml:space="preserve"> <value>Left/Right Arrow</value> <comment>Left/Right arrow keyboard keys</comment> </data> <data name="QuickAccent_Activation_Key_Space.Content" xml:space="preserve"> <value>Space</value> <comment>Space is the space keyboard key</comment> </data> <data name="QuickAccent_Activation_Key_Either.Content" xml:space="preserve"> <value>Left, Right or Space</value> <comment>All are keys on a keyboard</comment> </data> <data name="QuickAccent_Toolbar.Header" xml:space="preserve"> <value>Toolbar</value> </data> <data name="QuickAccent_ToolbarPosition.Header" xml:space="preserve"> <value>Toolbar position</value> </data> <data name="QuickAccent_ToolbarPosition_TopCenter.Content" xml:space="preserve"> <value>Top center</value> </data> <data name="QuickAccent_ToolbarPosition_TopLeftCorner.Content" xml:space="preserve"> <value>Top left corner</value> </data> <data name="QuickAccent_ToolbarPosition_TopRightCorner.Content" xml:space="preserve"> <value>Top right corner</value> </data> <data name="QuickAccent_ToolbarPosition_BottomLeftCorner.Content" xml:space="preserve"> <value>Bottom left corner</value> </data> <data name="QuickAccent_ToolbarPosition_BottomCenter.Content" xml:space="preserve"> <value>Bottom center</value> </data> <data name="QuickAccent_ToolbarPosition_BottomRightCorner.Content" xml:space="preserve"> <value>Bottom right corner</value> </data> <data name="QuickAccent_ToolbarPosition_Center.Content" xml:space="preserve"> <value>Center</value> </data> <data name="QuickAccent_ToolbarPosition_Left.Content" xml:space="preserve"> <value>Left</value> </data> <data name="QuickAccent_ToolbarPosition_Right.Content" xml:space="preserve"> <value>Right</value> </data> <data name="QuickAccent_Behavior.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="QuickAccent_InputTimeMs.Header" xml:space="preserve"> <value>Input delay (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="QuickAccent_InputTimeMs.Description" xml:space="preserve"> <value>Hold the key down for this much time to make the accent menu appear (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="QuickAccent_ExcludedApps.Description" xml:space="preserve"> <value>Prevents module activation if a foreground application is excluded. Add one application name per line.</value> </data> <data name="QuickAccent_ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="QuickAccent_ExcludedApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: Teams.exe</value> </data> <data name="LearnMore_TextExtractor.Text" xml:space="preserve"> <value>Learn more about Text Extractor</value> </data> <data name="TextExtractor_Cancel" xml:space="preserve"> <value>cancel</value> </data> <data name="General_SettingsBackupAndRestore_NothingToBackup" xml:space="preserve"> <value>A new backup was not created because no settings have been changed since last backup.</value> </data> <data name="General_SettingsBackupAndRestore_NoBackupFound" xml:space="preserve"> <value>No backup found</value> </data> <data name="General_SettingsBackupAndRestore_FailedToParseTime" xml:space="preserve"> <value>Failed to parse time</value> </data> <data name="General_SettingsBackupAndRestore_UnknownBackupTime" xml:space="preserve"> <value>Unknown</value> </data> <data name="General_SettingsBackupAndRestore_UnknownBackupSource" xml:space="preserve"> <value>Unknown</value> </data> <data name="General_SettingsBackupAndRestore_ThisMachine" xml:space="preserve"> <value>This computer</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsMatch" xml:space="preserve"> <value>Current settings match</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsStatusAt" xml:space="preserve"> <value>at</value> <comment>E.g., Food was served 'at' noon.</comment> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsDiffer" xml:space="preserve"> <value>Current settings differ</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsNoChecked" xml:space="preserve"> <value>Checking...</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsUnknown" xml:space="preserve"> <value>Unknown</value> </data> <data name="General_SettingsBackupAndRestore_NeverRestored" xml:space="preserve"> <value>Never restored</value> </data> <data name="General_SettingsBackupAndRestore_NothingToRestore" xml:space="preserve"> <value>Nothing to restore.</value> </data> <data name="General_SettingsBackupAndRestore_NoSettingsFilesFound" xml:space="preserve"> <value>No settings files found.</value> </data> <data name="General_SettingsBackupAndRestore_BackupError" xml:space="preserve"> <value>There was an error. Try another backup location.</value> </data> <data name="General_SettingsBackupAndRestore_SettingsFormatError" xml:space="preserve"> <value>There was an error in the settings format. Please check the settings file:</value> </data> <data name="General_SettingsBackupAndRestore_BackupComplete" xml:space="preserve"> <value>Backup completed.</value> </data> <data name="General_SettingsBackupAndRestore_NoBackupSyncPath" xml:space="preserve"> <value>No backup location selected.</value> </data> <data name="General_SettingsBackupAndRestore_NoBackupsFound" xml:space="preserve"> <value>No backups found to restore.</value> </data> <data name="General_SettingsBackupAndRestore_InvalidBackupLocation" xml:space="preserve"> <value>Invalid backup location.</value> </data> <data name="TextExtractor.ModuleDescription" xml:space="preserve"> <value>Text Extractor is a convenient way to copy text from anywhere on screen</value> </data> <data name="TextExtractor.ModuleTitle" xml:space="preserve"> <value>Text Extractor</value> </data> <data name="TextExtractor_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Text Extractor</value> </data> <data name="TextExtractor_SupportedLanguages.Title" xml:space="preserve"> <value>Text Extractor can only recognize languages that have the OCR pack installed.</value> </data> <data name="TextExtractor_SupportedLanguages_Link.Content" xml:space="preserve"> <value>Learn more about supported languages</value> </data> <data name="Shell_TextExtractor.Content" xml:space="preserve"> <value>Text Extractor</value> </data> <data name="Launch_TextExtractor.Content" xml:space="preserve"> <value>Launch Text Extractor</value> </data> <data name="Oobe_TextExtractor.Title" xml:space="preserve"> <value>Text Extractor</value> </data> <data name="Oobe_TextExtractor_HowToUse.Text" xml:space="preserve"> <value>to open Text Extractor and then selecting a region to copy the text from.</value> </data> <data name="Oobe_TextExtractor_TipsAndTricks.Text" xml:space="preserve"> <value>Hold the shift key to move the selection region around.</value> </data> <data name="TextExtractor.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> </data> <data name="Oobe_TextExtractor.Description" xml:space="preserve"> <value>Text Extractor works like Snipping Tool, but copies the text out of the selected region using OCR and puts it on the clipboard.</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Monaco_Try_Format.Description" xml:space="preserve"> <value>Applies to json and xml. Files remain unchanged.</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Monaco_Try_Format.Header" xml:space="preserve"> <value>Try to format the source for preview</value> </data> <data name="Run_ConflictingKeywordInfo.Title" xml:space="preserve"> <value>Some characters and phrases may conflict with global queries of other plugins if you use them as activation command.</value> </data> <data name="Run_ConflictingKeywordInfo_Link.Content" xml:space="preserve"> <value>Learn more about conflicting activation commands</value> </data> <data name="MeasureTool_ContinuousCapture_Information.Title" xml:space="preserve"> <value>The continuous capture mode will consume more resources when in use. Also, measurements will be excluded from screenshots and screen capture.</value> <comment>pointer as in mouse pointer. Resources refer to things like CPU, GPU, RAM</comment> </data> <data name="QuickAccent_Description_Indicator.Header" xml:space="preserve"> <value>Show the Unicode code and name of the currently selected character</value> </data> <data name="QuickAccent_SortByUsageFrequency_Indicator.Header" xml:space="preserve"> <value>Sort characters by usage frequency</value> </data> <data name="QuickAccent_SortByUsageFrequency_Indicator.Description" xml:space="preserve"> <value>Track characters usage frequency and sort them accordingly</value> </data> <data name="QuickAccent_StartSelectionFromTheLeft_Indicator.Header" xml:space="preserve"> <value>Start selection from the left</value> </data> <data name="QuickAccent_StartSelectionFromTheLeft_Indicator.Description" xml:space="preserve"> <value>Start selection from the leftmost character for all activation keys, including left and right arrows</value> </data> <data name="QuickAccent_DisableFullscreen.Header" xml:space="preserve"> <value>Disable when Game Mode is On</value> </data> <data name="QuickAccent_Language.Header" xml:space="preserve"> <value>Characters</value> </data> <data name="QuickAccent_SelectedLanguage.Header" xml:space="preserve"> <value>Choose a character set</value> </data> <data name="QuickAccent_SelectedLanguage.Description" xml:space="preserve"> <value>Show only accented characters common to the selected set</value> </data> <data name="QuickAccent_SelectedLanguage_All.Content" xml:space="preserve"> <value>All available</value> </data> <data name="QuickAccent_SelectedLanguage_Catalan.Content" xml:space="preserve"> <value>Catalan</value> </data> <data name="QuickAccent_SelectedLanguage_Currency.Content" xml:space="preserve"> <value>Currency</value> </data> <data name="QuickAccent_SelectedLanguage_Croatian.Content" xml:space="preserve"> <value>Croatian</value> </data> <data name="QuickAccent_SelectedLanguage_Czech.Content" xml:space="preserve"> <value>Czech</value> </data> <data name="QuickAccent_SelectedLanguage_Gaeilge.Content" xml:space="preserve"> <value>Gaeilge</value> <comment>Gaelic language spoken in Ireland</comment> </data> <data name="QuickAccent_SelectedLanguage_Gaidhlig.Content" xml:space="preserve"> <value>Gàidhlig</value> <comment>Scottish Gaelic</comment> </data> <data name="QuickAccent_SelectedLanguage_German.Content" xml:space="preserve"> <value>German</value> </data> <data name="QuickAccent_SelectedLanguage_Hebrew.Content" xml:space="preserve"> <value>Hebrew</value> </data> <data name="QuickAccent_SelectedLanguage_French.Content" xml:space="preserve"> <value>French</value> </data> <data name="QuickAccent_SelectedLanguage_Estonian.Content" xml:space="preserve"> <value>Estonian</value> </data> <data name="QuickAccent_SelectedLanguage_Lithuanian.Content" xml:space="preserve"> <value>Lithuanian</value> </data> <data name="QuickAccent_SelectedLanguage_Macedonian.Content" xml:space="preserve"> <value>Macedonian</value> </data> <data name="QuickAccent_SelectedLanguage_Maori.Content" xml:space="preserve"> <value>Maori</value> </data> <data name="QuickAccent_SelectedLanguage_Dutch.Content" xml:space="preserve"> <value>Dutch</value> </data> <data name="QuickAccent_SelectedLanguage_Norwegian.Content" xml:space="preserve"> <value>Norwegian</value> </data> <data name="QuickAccent_SelectedLanguage_Pinyin.Content" xml:space="preserve"> <value>Pinyin</value> </data> <data name="QuickAccent_SelectedLanguage_Polish.Content" xml:space="preserve"> <value>Polish</value> </data> <data name="QuickAccent_SelectedLanguage_Portuguese.Content" xml:space="preserve"> <value>Portuguese</value> </data> <data name="QuickAccent_SelectedLanguage_Slovakian.Content" xml:space="preserve"> <value>Slovakian</value> </data> <data name="QuickAccent_SelectedLanguage_Spanish.Content" xml:space="preserve"> <value>Spanish</value> </data> <data name="QuickAccent_SelectedLanguage_Swedish.Content" xml:space="preserve"> <value>Swedish</value> </data> <data name="QuickAccent_SelectedLanguage_Turkish.Content" xml:space="preserve"> <value>Turkish</value> </data> <data name="QuickAccent_SelectedLanguage_Icelandic.Content" xml:space="preserve"> <value>Icelandic</value> </data> <data name="QuickAccent_SelectedLanguage_Romanian.Content" xml:space="preserve"> <value>Romanian</value> </data> <data name="QuickAccent_SelectedLanguage_Serbian.Content" xml:space="preserve"> <value>Serbian</value> </data> <data name="QuickAccent_SelectedLanguage_Hungarian.Content" xml:space="preserve"> <value>Hungarian</value> </data> <data name="QuickAccent_SelectedLanguage_Italian.Content" xml:space="preserve"> <value>Italian</value> </data> <data name="QuickAccent_SelectedLanguage_Kurdish.Content" xml:space="preserve"> <value>Kurdish</value> </data> <data name="QuickAccent_SelectedLanguage_Welsh.Content" xml:space="preserve"> <value>Welsh</value> </data> <data name="Hosts.ModuleDescription" xml:space="preserve"> <value>Quick and simple utility for managing hosts file.</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Hosts.ModuleTitle" xml:space="preserve"> <value>Hosts File Editor</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Shell_Hosts.Content" xml:space="preserve"> <value>Hosts File Editor</value> <comment>Products name: Navigation view item name for Hosts File Editor</comment> </data> <data name="Hosts_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Hosts_Toggle_ShowStartupWarning.Header" xml:space="preserve"> <value>Show a warning at startup</value> </data> <data name="Hosts_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="Hosts_LaunchButtonControl.Description" xml:space="preserve"> <value>Manage your hosts file</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Hosts_LaunchButtonControl.Header" xml:space="preserve"> <value>Launch Host File Editor</value> <comment>"Host File Editor" is a product name</comment> </data> <data name="Hosts_LaunchButton_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Launch Host File Editor</value> <comment>"Host File Editor" is a product name</comment> </data> <data name="Hosts_AdditionalLinesPosition.Header" xml:space="preserve"> <value>Position of additional content</value> </data> <data name="Hosts_AdditionalLinesPosition_Bottom.Content" xml:space="preserve"> <value>Bottom</value> </data> <data name="Hosts_AdditionalLinesPosition_Top.Content" xml:space="preserve"> <value>Top</value> </data> <data name="Hosts_Behavior_GroupSettings.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="Launch_Hosts.Content" xml:space="preserve"> <value>Launch Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="LearnMore_Hosts.Text" xml:space="preserve"> <value>Learn more about Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Oobe_Hosts.Description" xml:space="preserve"> <value>Hosts File Editor is a quick and simple utility for managing hosts file.</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Oobe_Hosts.Title" xml:space="preserve"> <value>Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Hosts_Toggle_LaunchAdministrator.Description" xml:space="preserve"> <value>Needs to be launched as administrator in order to make changes to the hosts file</value> </data> <data name="Hosts_Toggle_LaunchAdministrator.Header" xml:space="preserve"> <value>Launch as administrator</value> </data> <data name="ShortcutGuide_PressTimeForTaskbarIconShortcuts.Header" xml:space="preserve"> <value>Press duration before showing taskbar icon shortcuts (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="FileLocksmith.ModuleDescription" xml:space="preserve"> <value>A Windows shell extension to find out which processes are using the selected files and directories.</value> </data> <data name="FileLocksmith.ModuleTitle" xml:space="preserve"> <value>File Locksmith</value> </data> <data name="Shell_FileLocksmith.Content" xml:space="preserve"> <value>File Locksmith</value> <comment>Product name: Navigation view item name for FileLocksmith</comment> </data> <data name="FileLocksmith_Enable_FileLocksmith.Header" xml:space="preserve"> <value>Enable File Locksmith</value> <comment>File Locksmith is the name of the utility</comment> </data> <data name="FileLocksmith_Toggle_StandardContextMenu.Content" xml:space="preserve"> <value>Default and extended context menu</value> </data> <data name="FileLocksmith_Toggle_ExtendedContextMenu.Content" xml:space="preserve"> <value>Extended context menu only</value> </data> <data name="FileLocksmith_Toggle_ContextMenu.Header" xml:space="preserve"> <value>Show File Locksmith in</value> </data> <data name="FileLocksmith_ShellIntegration.Header" xml:space="preserve"> <value>Shell integration</value> <comment>This refers to directly integrating in with Windows</comment> </data> <data name="GPO_IsSettingForced.Title" xml:space="preserve"> <value>The system administrator is forcing this setting.</value> </data> <data name="Hosts_AdditionalLinesPosition.Description" xml:space="preserve"> <value>Additional content includes the file header and lines that can't parse</value> </data> <data name="TextExtractor_Languages.Header" xml:space="preserve"> <value>Preferred language</value> </data> <data name="Alternate_OOBE_AlwaysOnTop_Description.Text" xml:space="preserve"> <value>Pin a window so that:</value> </data> <data name="Alternate_OOBE_AlwaysOnTop_Title.Text" xml:space="preserve"> <value>Always On Top</value> </data> <data name="Alternate_OOBE_ColorPicker_Description.Text" xml:space="preserve"> <value>To pick a color:</value> </data> <data name="Alternate_OOBE_ColorPicker_Title.Text" xml:space="preserve"> <value>Color Picker</value> </data> <data name="Alternate_OOBE_Description.Text" xml:space="preserve"> <value>Here are a few shortcuts to get you started:</value> </data> <data name="Alternate_OOBE_FancyZones_Description.Text" xml:space="preserve"> <value>To open the FancyZones editor, press:</value> </data> <data name="Alternate_OOBE_FancyZones_Title.Text" xml:space="preserve"> <value>FancyZones</value> </data> <data name="Alternate_OOBE_Run_Description.Text" xml:space="preserve"> <value>Get access to your files and more:</value> </data> <data name="Alternate_OOBE_Run_Title.Text" xml:space="preserve"> <value>PowerToys Run</value> </data> <data name="General_Experimentation.Header" xml:space="preserve"> <value>Experimentation</value> </data> <data name="GeneralPage_EnableExperimentation.Description" xml:space="preserve"> <value>Note: Only Windows Insider builds may be selected for experimentation</value> </data> <data name="GeneralPage_EnableExperimentation.Header" xml:space="preserve"> <value>Allow experimentation with new features</value> </data> <data name="GPO_ExperimentationIsDisallowed.Title" xml:space="preserve"> <value>The system administrator has disabled experimentation.</value> </data> <data name="Shell_PastePlain.Content" xml:space="preserve"> <value>Paste As Plain Text</value> <comment>Product name: Navigation view item name for Paste as Plain Text</comment> </data> <data name="PastePlain.ModuleDescription" xml:space="preserve"> <value>Paste As Plain Text is a quick shortcut for pasting the text contents of your clipboard without formatting. Note: the formatted text in the clipboard is replaced with the unformatted text.</value> </data> <data name="PastePlain.ModuleTitle" xml:space="preserve"> <value>Paste As Plain Text</value> </data> <data name="PastePlain_Cancel" xml:space="preserve"> <value>cancel</value> </data> <data name="PastePlain_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Paste As Plain Text</value> </data> <data name="Oobe_PastePlain.Description" xml:space="preserve"> <value>Paste As Plain Text strips rich formatting from your clipboard data and pastes it as non-formatted text.</value> </data> <data name="Oobe_PastePlain.Title" xml:space="preserve"> <value>Paste As Plain Text</value> </data> <data name="Oobe_PastePlain_HowToUse.Text" xml:space="preserve"> <value>to paste your clipboard data as plain text. Note: this will replace the formatted text in your clipboard with the plain text.</value> </data> <data name="AllAppsTxt.Text" xml:space="preserve"> <value>All apps</value> </data> <data name="BackBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Back</value> </data> <data name="BackLabel.Text" xml:space="preserve"> <value>Back</value> </data> <data name="BugReportBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Bug report</value> </data> <data name="BugReportTooltip.Text" xml:space="preserve"> <value>Bug report</value> </data> <data name="DocsBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Documentation</value> </data> <data name="DocsTooltip.Text" xml:space="preserve"> <value>Documentation</value> </data> <data name="FZEditorString" xml:space="preserve"> <value>FancyZones Editor</value> <comment>Do not localize this string</comment> </data> <data name="MoreBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>More</value> </data> <data name="MoreLabel.Text" xml:space="preserve"> <value>More</value> </data> <data name="SettingsBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Settings</value> </data> <data name="SettingsTooltip.Text" xml:space="preserve"> <value>Settings</value> </data> <data name="ShortcutsTxt.Text" xml:space="preserve"> <value>Shortcuts</value> </data> <data name="UpdateAvailable.Title" xml:space="preserve"> <value>Update available</value> </data> <data name="FileExplorerPreview_Toggle_Monaco_Max_File_Size.Header" xml:space="preserve"> <value>Maximum file size to preview</value> <comment>Size refers to the disk space used by a file</comment> </data> <data name="FileExplorerPreview_Toggle_Monaco_Max_File_Size.Description" xml:space="preserve"> <value>The maximum size, in kilobytes, for files to be displayed. This is a safety mechanism to prevent loading large files into RAM.</value> <comment>"RAM" refers to random access memory; "size" refers to disk space; "bytes" refer to the measurement unit</comment> </data> <data name="RegistryPreview.ModuleDescription" xml:space="preserve"> <value>A quick little utility to visualize and edit complex Windows Registry files.</value> </data> <data name="RegistryPreview.ModuleTitle" xml:space="preserve"> <value>Registry Preview</value> </data> <data name="Shell_RegistryPreview.Content" xml:space="preserve"> <value>Registry Preview</value> <comment>Product name: Navigation view item name for Registry Preview</comment> </data> <data name="RegistryPreview_Enable_RegistryPreview.Header" xml:space="preserve"> <value>Enable Registry Preview</value> <comment>Registry Preview is the name of the utility</comment> </data> <data name="Oobe_RegistryPreview_HowToUse.Text" xml:space="preserve"> <value>In File Explorer, right-click a .REG file and select **Preview** from the context menu.</value> </data> <data name="Oobe_RegistryPreview_TipsAndTricks.Text" xml:space="preserve"> <value>You can preview or edit Registry files in File Explorer or by opening the app from the PowerToys launcher.</value> </data> <data name="Oobe_RegistryPreview.Description" xml:space="preserve"> <value>Registry Preview is a quick little utility to visualize and edit complex Windows Registry files.</value> </data> <data name="Oobe_RegistryPreview.Title" xml:space="preserve"> <value>Registry Preview</value> <comment>Do not localize this string</comment> </data> <data name="LearnMore_RegistryPreview.Text" xml:space="preserve"> <value>Learn more about Registry Preview</value> <comment>Registry Preview is a product name, do not loc</comment> </data> <data name="Launch_RegistryPreview.Content" xml:space="preserve"> <value>Launch Registry Preview</value> <comment>"Registry Preview" is the name of the utility</comment> </data> <data name="MouseUtils_MouseJump.Description" xml:space="preserve"> <value>Quickly move the mouse pointer long distances.</value> <comment>"Mouse Jump" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_MouseJump.Header" xml:space="preserve"> <value>Mouse Jump</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_MouseJump_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to turn on or off this mode</value> </data> <data name="MouseUtils_MouseJump_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MouseUtils_Enable_MouseJump.Header" xml:space="preserve"> <value>Enable Mouse Jump</value> <comment>"Mouse Jump" is the name of the utility.</comment> </data> <data name="GPO_AutoDownloadUpdatesIsDisabled.Title" xml:space="preserve"> <value>The system administrator has disabled the automatic download of updates.</value> </data> <data name="Hosts_Toggle_LoopbackDuplicates.Description" xml:space="preserve"> <value>127.0.0.1, ::1, ...</value> <comment>"127.0.0.1 and ::1" are well known loopback addresses, do not loc</comment> </data> <data name="Hosts_Toggle_LoopbackDuplicates.Header" xml:space="preserve"> <value>Consider loopback addresses as duplicates</value> </data> <data name="RegistryPreview_Launch_GroupSettings.Header" xml:space="preserve"> <value>Launch</value> </data> <data name="RegistryPreview_LaunchButton_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Launch Registry Preview</value> </data> <data name="RegistryPreview_LaunchButtonControl.Header" xml:space="preserve"> <value>Launch Registry Preview</value> </data> <data name="RegistryPreview_DefaultRegApp.Header" xml:space="preserve"> <value>Default app</value> </data> <data name="RegistryPreview_DefaultRegApp.Description" xml:space="preserve"> <value>Make Registry Preview default app for opening .reg files</value> <comment>Registry Preview is app name. Do not localize.</comment> </data> <data name="PastePlain_ShortcutWarning.Title" xml:space="preserve"> <value>Using this shortcut may prevent non-text paste actions (e.g. images, files) or built-in paste plain text actions in other applications from functioning.</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize.Header" xml:space="preserve"> <value>Thumbnail Size</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Description_Prefix.Text" xml:space="preserve"> <value>Constrain thumbnail image size to a maximum of</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Description_Suffix.Text" xml:space="preserve"> <value>pixels</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Edit_Height.Header" xml:space="preserve"> <value>Maximum height (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Edit_Width.Header" xml:space="preserve"> <value>Maximum width (px)</value> <comment>px = pixels</comment> </data> <data name="Oobe_Peek.Description" xml:space="preserve"> <value>A lightning fast file preview feature for Windows.</value> </data> <data name="Oobe_Peek.Title" xml:space="preserve"> <value>Peek</value> </data> <data name="Oobe_Peek_HowToUse.Text" xml:space="preserve"> <value>to preview the file that's currently selected in File Explorer.</value> </data> <data name="MWB_PCNameLabel.PlaceholderText" xml:space="preserve"> <value>Device name</value> </data> <data name="MWB_SecurityKeyLabel.PlaceholderText" xml:space="preserve"> <value>Security key</value> </data> <data name="Hosts_Encoding.Description" xml:space="preserve"> <value>Choose the encoding of the hosts file</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Hosts_Encoding.Header" xml:space="preserve"> <value>Encoding</value> </data> <data name="Hosts_Encoding_Utf8.Content" xml:space="preserve"> <value>UTF-8</value> </data> <data name="Hosts_Encoding_Utf8Bom.Content" xml:space="preserve"> <value>UTF-8 with BOM</value> </data> <data name="MouseUtils_MouseHighlighter_AlwaysColor.Header" xml:space="preserve"> <value>Always highlight color</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsAutoHide.Content" xml:space="preserve"> <value>Automatically hide crosshairs when the mouse pointer is hidden</value> </data> <data name="MouseUtils_AutoActivate.Content" xml:space="preserve"> <value>Automatically activate on utility startup</value> </data> <data name="Run_FindMorePlugins.Text" xml:space="preserve"> <value>Find more plugins</value> </data> <data name="Run_PluginUseFindMorePlugins.Content" xml:space="preserve"> <value>Find more plugins</value> </data> <data name="Run_SomePluginsAreGpoManaged.Title" xml:space="preserve"> <value>The system administrator is managing the enabled state of some plugins.</value> </data> <data name="AlwaysOnTop_FrameOpacity.Header" xml:space="preserve"> <value>Opacity (%)</value> </data> <data name="MouseUtils_FindMyMouse_ActivationCustomizedShortcut.Content" xml:space="preserve"> <value>Custom shortcut</value> </data> <data name="MouseUtils_FindMyMouse_ActivationDoubleRightControlPress.Content" xml:space="preserve"> <value>Press Right Control twice</value> <comment>Right control is the physical key on the keyboard.</comment> </data> <data name="MouseUtils_FindMyMouse_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to turn on or off this mode</value> </data> <data name="MouseUtils_FindMyMouse_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="SettingsWindow_AdminTitle" xml:space="preserve"> <value>Administrator: PowerToys Settings</value> <comment>Title of the settings window when running as administrator</comment> </data> </root>
<?xml version="1.0" encoding="utf-8"?> <root> <!-- Microsoft ResX Schema Version 2.0 The primary goals of this format is to allow a simple XML format that is mostly human readable. The generation and parsing of the various data types are done through the TypeConverter classes associated with the data types. Example: ... ado.net/XML headers & schema ... <resheader name="resmimetype">text/microsoft-resx</resheader> <resheader name="version">2.0</resheader> <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader> <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader> <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data> <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data> <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64"> <value>[base64 mime encoded serialized .NET Framework object]</value> </data> <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value> <comment>This is a comment</comment> </data> There are any number of "resheader" rows that contain simple name/value pairs. Each data row contains a name, and value. The row also contains a type or mimetype. Type corresponds to a .NET class that support text/value conversion through the TypeConverter architecture. Classes that don't support this are serialized and stored with the mimetype set. The mimetype is used for serialized objects, and tells the ResXResourceReader how to depersist the object. This is currently not extensible. For a given mimetype the value must be set accordingly: Note - application/x-microsoft.net.object.binary.base64 is the format that the ResXResourceWriter will generate, however the reader can read any of the formats listed below. mimetype: application/x-microsoft.net.object.binary.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.soap.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Soap.SoapFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.bytearray.base64 value : The object must be serialized into a byte array : using a System.ComponentModel.TypeConverter : and then encoded with base64 encoding. --> <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> <xsd:import namespace="http://www.w3.org/XML/1998/namespace" /> <xsd:element name="root" msdata:IsDataSet="true"> <xsd:complexType> <xsd:choice maxOccurs="unbounded"> <xsd:element name="metadata"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" /> </xsd:sequence> <xsd:attribute name="name" use="required" type="xsd:string" /> <xsd:attribute name="type" type="xsd:string" /> <xsd:attribute name="mimetype" type="xsd:string" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="assembly"> <xsd:complexType> <xsd:attribute name="alias" type="xsd:string" /> <xsd:attribute name="name" type="xsd:string" /> </xsd:complexType> </xsd:element> <xsd:element name="data"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" /> <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="resheader"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" /> </xsd:complexType> </xsd:element> </xsd:choice> </xsd:complexType> </xsd:element> </xsd:schema> <resheader name="resmimetype"> <value>text/microsoft-resx</value> </resheader> <resheader name="version"> <value>2.0</value> </resheader> <resheader name="reader"> <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <resheader name="writer"> <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <data name="Attribution_Rooler.Text" xml:space="preserve"> <value>Inspired by Rooler</value> <comment>Rooler is a name of the tool.</comment> </data> <data name="Shell_VideoConference.Content" xml:space="preserve"> <value>Video Conference Mute</value> <comment>Navigation view item name for Video Conference</comment> </data> <data name="Shell_MeasureTool.Content" xml:space="preserve"> <value>Screen Ruler</value> <comment>Product name: Navigation view item name for Screen Ruler</comment> </data> <data name="MeasureTool.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="MeasureTool.ModuleDescription" xml:space="preserve"> <value>Screen Ruler is a quick and easy way to measure pixels on your screen.</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool.ModuleTitle" xml:space="preserve"> <value>Screen Ruler</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool_ActivationSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="MeasureTool_Settings.Header" xml:space="preserve"> <value>Behavior</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MeasureTool_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to bring up the command bar</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool_DefaultMeasureStyle.Header" xml:space="preserve"> <value>Default measure style</value> </data> <data name="MeasureTool_DefaultMeasureStyle.Description" xml:space="preserve"> <value>The utility will start having the selected style activated</value> </data> <data name="MeasureTool_DefaultMeasureStyle_None.Content" xml:space="preserve"> <value>None</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Bounds.Content" xml:space="preserve"> <value>Bounds</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Spacing.Content" xml:space="preserve"> <value>Spacing</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Horizontal_Spacing.Content" xml:space="preserve"> <value>Horizontal spacing</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Vertical_Spacing.Content" xml:space="preserve"> <value>Vertical spacing</value> </data> <data name="MeasureTool_UnitsOfMeasure.Header" xml:space="preserve"> <value>Units of measurement</value> </data> <data name="MeasureTool_UnitsOfMeasure_Pixels.Content" xml:space="preserve"> <value>Pixels</value> </data> <data name="MeasureTool_UnitsOfMeasure_Inches.Content" xml:space="preserve"> <value>Inches</value> </data> <data name="MeasureTool_UnitsOfMeasure_Centimeters.Content" xml:space="preserve"> <value>Centimeters</value> </data> <data name="MeasureTool_PixelTolerance.Header" xml:space="preserve"> <value>Pixel tolerance for edge detection</value> </data> <data name="MeasureTool_MeasureCrossColor.Header" xml:space="preserve"> <value>Line color</value> </data> <data name="MeasureTool_ContinuousCapture.Header" xml:space="preserve"> <value>Capture screen continuously during measuring</value> </data> <data name="MeasureTool_ContinuousCapture.Description" xml:space="preserve"> <value>Refresh screen contexts in real-time instead of making a screenshot once</value> </data> <data name="MeasureTool_PerColorChannelEdgeDetection.Header" xml:space="preserve"> <value>Per color channel edge detection</value> </data> <data name="MeasureTool_PerColorChannelEdgeDetection.Description" xml:space="preserve"> <value>If enabled, test that all color channels are within a tolerance distance from each other. Otherwise, check that the sum of all color channels differences is smaller than the tolerance.</value> </data> <data name="MeasureTool_DrawFeetOnCross.Header" xml:space="preserve"> <value>Draw feet on cross</value> </data> <data name="MeasureTool_DrawFeetOnCross.Description" xml:space="preserve"> <value>Adds feet to the end of cross lines</value> </data> <data name="MeasureTool_EnableMeasureTool.Header" xml:space="preserve"> <value>Enable Screen Ruler</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MouseWithoutBorders_ActivationSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="MouseWithoutBorders_DeviceLayoutSettings.Header" xml:space="preserve"> <value>Device layout</value> </data> <data name="MouseWithoutBorders_DeviceLayoutSettings.Description" xml:space="preserve"> <value>Drag and drop a machine to rearrange the order.</value> </data> <data name="MouseWithoutBorders_CannotDragDropAsAdmin.Title" xml:space="preserve"> <value>It is not possible to use drag and drop while running PowerToys elevated. As a workaround, please restart PowerToys without elevation to edit the device layout.</value> </data> <data name="MouseWithoutBorders_KeySettings.Header" xml:space="preserve"> <value>Encryption key</value> </data> <data name="MouseWithoutBorders_SecurityKey.Header" xml:space="preserve"> <value>Security key</value> </data> <data name="MouseWithoutBorders_SecurityKey.Description" xml:space="preserve"> <value>The key must be auto generated in one machine by clicking on New Key, then typed in other machines</value> </data> <data name="MouseWithoutBorders_NewKey.Content" xml:space="preserve"> <value>New key</value> </data> <data name="MouseWithoutBorders_CopyMachineName.Text" xml:space="preserve"> <value>Copy to clipboard</value> </data> <data name="MouseWithoutBorders_ReconnectButton.Text" xml:space="preserve"> <value>Refresh connections</value> </data> <data name="MouseWithoutBorders_ReconnectTooltip.Text" xml:space="preserve"> <value>Reestablishes connections with other devices if you are experiencing issues.</value> </data> <data name="MouseWithoutBorders_ThisMachineNameLabel.Header" xml:space="preserve"> <value>Host name of this device</value> </data> <data name="MouseWithoutBorders_Connect.Content" xml:space="preserve"> <value>Connect</value> </data> <data name="MouseWithoutBorders_UninstallService.Header" xml:space="preserve"> <value>Uninstall service</value> </data> <data name="MouseWithoutBorders_UninstallService.Description" xml:space="preserve"> <value>Removes the service from the computer. Needs to run as administrator.</value> </data> <data name="MouseWithoutBorders_Settings.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="MouseWithoutBorders_TroubleShooting.Header" xml:space="preserve"> <value>Troubleshooting</value> </data> <data name="MouseWithoutBorders_AddFirewallRuleButtonControl.Header" xml:space="preserve"> <value>Add a firewall rule for Mouse Without Borders</value> <comment>"Mouse Without Borders" is a product name</comment> </data> <data name="MouseWithoutBorders_AddFirewallRuleButtonControl.Description" xml:space="preserve"> <value>Adding a firewall rule might help solve connection issues.</value> </data> <data name="MouseWithoutBorders_RunAsAdminText.Title" xml:space="preserve"> <value>You need to run as administrator to modify this setting.</value> </data> <data name="MouseWithoutBorders_ServiceUserUninstallWarning.Title" xml:space="preserve"> <value>If PowerToys is installed as a user, uninstalling/upgrading may require the Mouse Without Borders service to be removed manually later.</value> </data> <data name="MouseWithoutBorders_ServiceSettings.Header" xml:space="preserve"> <value>Service</value> </data> <data name="MouseWithoutBorders_Toggle_Enable.Header" xml:space="preserve"> <value>Enable Mouse Without Borders</value> </data> <data name="MouseWithoutBorders.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="MouseWithoutBorders.ModuleDescription" xml:space="preserve"> <value>Mouse Without Borders is a quick and easy way to move your cursor across multiple devices.</value> <comment>"Mouse Without Borders" is the name of the utility</comment> </data> <data name="MouseWithoutBorders.ModuleTitle" xml:space="preserve"> <value>Mouse Without Borders</value> <comment>"Mouse Without Borders" is the name of the utility</comment> </data> <data name="MouseWithoutBorders_UseService.Header" xml:space="preserve"> <value>Use Service</value> </data> <data name="MouseWithoutBorders_UseService.Description" xml:space="preserve"> <value>Runs in service mode, that allows MWB to control remote machines when they're locked. Also allows control of system and administrator applications.</value> </data> <data name="MouseWithoutBorders_MatrixOneRow.Header" xml:space="preserve"> <value>Devices in a single row</value> </data> <data name="MouseWithoutBorders_MatrixOneRow.Description" xml:space="preserve"> <value>Sets whether the devices are aligned on a single row. A two by two matrix is considered otherwise.</value> </data> <data name="MouseWithoutBorders_WrapMouse.Header" xml:space="preserve"> <value>Wrap mouse</value> </data> <data name="MouseWithoutBorders_WrapMouse.Description" xml:space="preserve"> <value>Move control back to the first machine when mouse moves past the last one.</value> </data> <data name="MouseWithoutBorders_ShareClipboard.Header" xml:space="preserve"> <value>Share clipboard</value> </data> <data name="MouseWithoutBorders_TransferFile.Header" xml:space="preserve"> <value>Transfer file</value> </data> <data name="MouseWithoutBorders_HideMouseAtScreenEdge.Header" xml:space="preserve"> <value>Hide mouse at the screen edge</value> </data> <data name="MouseWithoutBorders_DrawMouseCursor.Header" xml:space="preserve"> <value>Draw mouse cursor</value> </data> <data name="MouseWithoutBorders_ValidateRemoteMachineIP.Header" xml:space="preserve"> <value>Validate remote machine IP</value> </data> <data name="MouseWithoutBorders_SameSubnetOnly.Header" xml:space="preserve"> <value>Same subnet only</value> </data> <data name="MouseWithoutBorders_BlockScreenSaverOnOtherMachines.Header" xml:space="preserve"> <value>Block screen saver on other machines</value> </data> <data name="MouseWithoutBorders_MoveMouseRelatively.Header" xml:space="preserve"> <value>Move mouse relatively</value> </data> <data name="MouseWithoutBorders_BlockMouseAtScreenCorners.Header" xml:space="preserve"> <value>Block mouse at screen corners</value> </data> <data name="MouseWithoutBorders_ShowClipboardAndNetworkStatusMessages.Header" xml:space="preserve"> <value>Show clipboard and network status messages</value> </data> <data name="MouseWithoutBorders_ShowOriginalUI.Header" xml:space="preserve"> <value>Show the original Mouse Without Borders UI</value> </data> <data name="MouseWithoutBorders_ShowOriginalUI.Description" xml:space="preserve"> <value>This is accessible from the system tray and requires a restart.</value> </data> <data name="MouseWithoutBorders_ShareClipboard.Description" xml:space="preserve"> <value>If share clipboard stops working, Ctrl+Alt+Del then Esc may solve the problem.</value> </data> <data name="MouseWithoutBorders_TransferFile.Description" xml:space="preserve"> <value>If a file (&lt;100MB) is copied, it will be transferred to the remote machine clipboard.</value> </data> <data name="MouseWithoutBorders_HideMouseAtScreenEdge.Description" xml:space="preserve"> <value>Hide the mouse cursor at the top edge of the screen when switching to other machine. This option also steals the focus from any full-screen app to ensure the keyboard input is redirected.</value> </data> <data name="MouseWithoutBorders_DrawMouseCursor.Description" xml:space="preserve"> <value>Mouse cursor may not be visible in Windows 10 and later versions of Windows when there is no physical mouse attached.</value> </data> <data name="MouseWithoutBorders_ValidateRemoteMachineIP.Description" xml:space="preserve"> <value>Reverse DNS lookup to validate machine IP Address.</value> </data> <data name="MouseWithoutBorders_SameSubnetOnly.Description" xml:space="preserve"> <value>Only connect to machines in the same intranet NNN.NNN.*.* (only works when both machines have IPv4 enabled)</value> </data> <data name="MouseWithoutBorders_IPAddressMapping_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: MyLaptop 192.168.0.24</value> <comment>Don't translate MyLaptop</comment> </data> <data name="MouseWithoutBorders_IPAddressMapping.Header" xml:space="preserve"> <value>IP address mapping</value> </data> <data name="MouseWithoutBorders_IPAddressMapping.Description" xml:space="preserve"> <value>Resolve machine's IP address using manually entered mappings below.</value> </data> <data name="MouseWithoutBorders_BlockScreenSaverOnOtherMachines.Description" xml:space="preserve"> <value>Prevent screen saver from starting on other machines when user is actively working on this machine.</value> </data> <data name="MouseWithoutBorders_MoveMouseRelatively.Description" xml:space="preserve"> <value>Use this option when remote machine's monitor settings are different, or remote machine has multiple monitors.</value> </data> <data name="MouseWithoutBorders_BlockMouseAtScreenCorners.Description" xml:space="preserve"> <value>To avoid accident machine-switch at screen corners.</value> </data> <data name="MouseWithoutBorders_ShowClipboardAndNetworkStatusMessages.Description" xml:space="preserve"> <value>Show clipboard activities and network status in system tray notifications</value> </data> <data name="MouseWithoutBorders_KeyboardShortcuts_Group.Header" xml:space="preserve"> <value>Keyboard shortcuts</value> <comment>keyboard is the hardware peripheral</comment> </data> <data name="MouseWithoutBorders_AdvancedSettings_Group.Header" xml:space="preserve"> <value>Advanced Settings</value> </data> <data name="MouseWithoutBorders_EasyMouseOption.Header" xml:space="preserve"> <value>Easy Mouse: move between machines by moving the mouse pointer to the screen edges.</value> </data> <data name="MouseWithoutBorders_EasyMouseOption.Description" xml:space="preserve"> <value>Can also be set to move only when pressing Shift or Ctrl.</value> <comment>Shift and Ctrl are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_EasyMouseOption_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_EasyMouseOption_Enabled.Content" xml:space="preserve"> <value>Enabled</value> </data> <data name="MouseWithoutBorders_EasyMouseOption_Ctrl.Content" xml:space="preserve"> <value>Ctrl</value> <comment>This is the Ctrl keyboard key</comment> </data> <data name="MouseWithoutBorders_EasyMouseOption_Shift.Content" xml:space="preserve"> <value>Shift</value> <comment>This is the Shift keyboard key</comment> </data> <data name="MouseWithoutBorders_LockMachinesShortcut.Header" xml:space="preserve"> <value>Shortcut to lock all machines.</value> </data> <data name="MouseWithoutBorders_LockMachinesShortcut.Description" xml:space="preserve"> <value>Hit this hotkey twice to lock all machines. Note: Only the machines which have the same shortcut configured will be locked.</value> </data> <data name="MouseWithoutBorders_ToggleEasyMouseShortcut.Header" xml:space="preserve"> <value>Shortcut to toggle Easy Mouse.</value> <comment>Ctrl and Alt are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_ToggleEasyMouseShortcut.Description" xml:space="preserve"> <value>Only works if EasyMouse is set to Enabled or Disabled.</value> </data> <data name="MouseWithoutBorders_ToggleEasyMouseShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut.Header" xml:space="preserve"> <value>Shortcut to switch between machines. Ctrl+Alt+:</value> <comment>Ctrl and Alt are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut.Description" xml:space="preserve"> <value>Click on Ctrl+Alt+ the chosen option to switch between machines.</value> <comment>Ctrl and Alt are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut_F1.Content" xml:space="preserve"> <value>F1, F2, F3, F4</value> <comment>Don't localize. These are keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut_1.Content" xml:space="preserve"> <value>1, 2, 3, 4</value> <comment>Don't localize. These are keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_LockMachinesShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_ReconnectShortcut.Header" xml:space="preserve"> <value>Shortcut to try reconnecting</value> </data> <data name="MouseWithoutBorders_ReconnectShortcut.Description" xml:space="preserve"> <value>Just in case the connection is lost for any reason.</value> </data> <data name="MouseWithoutBorders_ReconnectShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut.Header" xml:space="preserve"> <value>Shortcut to switch to multiple machine mode.</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut.Description" xml:space="preserve"> <value>Allows controlling all computers at once.</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut_Ctrl3.Content" xml:space="preserve"> <value>Ctrl three times</value> <comment>This is the Ctrl keyboard key</comment> </data> <data name="VideoConference_Enable.Header" xml:space="preserve"> <value>Enable Video Conference Mute</value> </data> <data name="VideoConference.ModuleDescription" xml:space="preserve"> <value>Video Conference Mute is a quick and easy way to do a global "mute" of both your microphone and webcam. Disabling this module or closing PowerToys will unmute the microphone and camera.</value> </data> <data name="VideoConference_CameraAndMicrophoneMuteHotkeyControl_Header.Header" xml:space="preserve"> <value>Mute camera &amp; microphone</value> </data> <data name="VideoConference_MicrophoneMuteHotkeyControl_Header.Header" xml:space="preserve"> <value>Mute microphone</value> </data> <data name="VideoConference_MicrophonePushToTalkHotkeyControl_Header.Header" xml:space="preserve"> <value>Push to talk</value> </data> <data name="VideoConference_CameraMuteHotkeyControl_Header.Header" xml:space="preserve"> <value>Mute camera</value> </data> <data name="VideoConference_SelectedCamera.Header" xml:space="preserve"> <value>Selected camera</value> </data> <data name="VideoConference_SelectedMicrophone.Header" xml:space="preserve"> <value>Selected microphone</value> </data> <data name="VideoConference_PushToReverse.Header" xml:space="preserve"> <value>Push to reverse</value> </data> <data name="VideoConference_PushToReverse.Description" xml:space="preserve"> <value>If enabled, allows both push to talk and push to mute, depending on microphone state</value> </data> <data name="VideoConference_CameraOverlayImagePathHeader.Header" xml:space="preserve"> <value>Image displayed when camera is muted</value> </data> <data name="VideoConference_ToolbarPosition.Header" xml:space="preserve"> <value>Toolbar position</value> </data> <data name="VideoConference_ToolbarPosition_TopCenter.Content" xml:space="preserve"> <value>Top center</value> </data> <data name="VideoConference_ToolbarPosition_TopLeftCorner.Content" xml:space="preserve"> <value>Top left corner</value> </data> <data name="VideoConference_ToolbarPosition_TopRightCorner.Content" xml:space="preserve"> <value>Top right corner</value> </data> <data name="VideoConference_ToolbarPosition_BottomLeftCorner.Content" xml:space="preserve"> <value>Bottom left corner</value> </data> <data name="VideoConference_ToolbarPosition_BottomCenter.Content" xml:space="preserve"> <value>Bottom center</value> </data> <data name="VideoConference_ToolbarPosition_BottomRightCorner.Content" xml:space="preserve"> <value>Bottom right corner</value> </data> <data name="VideoConference_ToolbarMonitor.Header" xml:space="preserve"> <value>Show toolbar on</value> </data> <data name="VideoConference_ToolbarMonitor_Main.Content" xml:space="preserve"> <value>Main monitor</value> </data> <data name="VideoConference_ToolbarMonitor_UnderCursor.Content" xml:space="preserve"> <value>Monitor under cursor</value> </data> <data name="VideoConference_ToolbarMonitor_ActiveWindow.Content" xml:space="preserve"> <value>Active window monitor</value> </data> <data name="VideoConference_ToolbarMonitor_All.Content" xml:space="preserve"> <value>All monitors</value> </data> <data name="VideoConference_ToolbarHide.Header" xml:space="preserve"> <value>Hide toolbar</value> </data> <data name="VideoConference_ToolbarHideMuted.Content" xml:space="preserve"> <value>When both camera and microphone are muted</value> </data> <data name="VideoConference_ToolbarHideNever.Content" xml:space="preserve"> <value>Never</value> </data> <data name="VideoConference_ToolbarHideUnmuted.Content" xml:space="preserve"> <value>When both camera and microphone are unmuted</value> </data> <data name="VideoConference_ToolbarHideTimeout.Content" xml:space="preserve"> <value>After timeout</value> </data> <data name="VideoConference.ModuleTitle" xml:space="preserve"> <value>Video Conference Mute</value> </data> <data name="VideoConference_Camera.Header" xml:space="preserve"> <value>Camera</value> </data> <data name="VideoConference_Camera.Description" xml:space="preserve"> <value>To use this feature, make sure to select PowerToys VideoConference Mute as your camera source in your apps.</value> </data> <data name="VideoConference_Microphone.Header" xml:space="preserve"> <value>Microphone</value> </data> <data name="VideoConference_Toolbar.Header" xml:space="preserve"> <value>Toolbar</value> </data> <data name="VideoConference_Behavior.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="VideoConference_StartupAction.Header" xml:space="preserve"> <value>Startup action</value> </data> <data name="VideoConference_StartupActionNothing.Content" xml:space="preserve"> <value>Nothing</value> </data> <data name="VideoConference_StartupActionUnmute.Content" xml:space="preserve"> <value>Unmute</value> </data> <data name="VideoConference_StartupActionMute.Content" xml:space="preserve"> <value>Mute</value> </data> <data name="VideoConference_Shortcuts.Header" xml:space="preserve"> <value>Shortcuts</value> </data> <data name="VideoConference_CameraOverlayImageAlt.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Camera overlay image preview</value> </data> <data name="VideoConference_CameraOverlayImageBrowse.Content" xml:space="preserve"> <value>Browse</value> </data> <data name="VideoConference_CameraOverlayImageClear.Content" xml:space="preserve"> <value>Clear</value> </data> <data name="Shell_General.Content" xml:space="preserve"> <value>General</value> <comment>Navigation view item name for General</comment> </data> <data name="Shell_Awake.Content" xml:space="preserve"> <value>Awake</value> <comment>Product name: Navigation view item name for Awake</comment> </data> <data name="Shell_PowerLauncher.Content" xml:space="preserve"> <value>PowerToys Run</value> <comment>Product name: Navigation view item name for PowerToys Run</comment> </data> <data name="Shell_PowerRename.Content" xml:space="preserve"> <value>PowerRename</value> <comment>Product name: Navigation view item name for PowerRename</comment> </data> <data name="Shell_ShortcutGuide.Content" xml:space="preserve"> <value>Shortcut Guide</value> <comment>Product name: Navigation view item name for Shortcut Guide</comment> </data> <data name="Shell_PowerPreview.Content" xml:space="preserve"> <value>File Explorer add-ons</value> <comment>Product name: Navigation view item name for File Explorer. Please use File Explorer as in the context of File Explorer in Windows</comment> </data> <data name="Shell_FancyZones.Content" xml:space="preserve"> <value>FancyZones</value> <comment>Product name: Navigation view item name for FancyZones</comment> </data> <data name="Shell_ImageResizer.Content" xml:space="preserve"> <value>Image Resizer</value> <comment>Product name: Navigation view item name for Image Resizer</comment> </data> <data name="Shell_ColorPicker.Content" xml:space="preserve"> <value>Color Picker</value> <comment>Product name: Navigation view item name for Color Picker</comment> </data> <data name="Shell_KeyboardManager.Content" xml:space="preserve"> <value>Keyboard Manager</value> <comment>Product name: Navigation view item name for Keyboard Manager</comment> </data> <data name="Shell_MouseWithoutBorders.Content" xml:space="preserve"> <value>Mouse Without Borders</value> <comment>Product name: Navigation view item name for Mouse Without Borders</comment> </data> <data name="Shell_MouseUtilities.Content" xml:space="preserve"> <value>Mouse utilities</value> <comment>Product name: Navigation view item name for Mouse utilities</comment> </data> <data name="Shell_NavigationMenu_Announce_Collapse" xml:space="preserve"> <value>Navigation closed</value> <comment>Accessibility announcement when the navigation pane collapses</comment> </data> <data name="Shell_NavigationMenu_Announce_Open" xml:space="preserve"> <value>Navigation opened</value> <comment>Accessibility announcement when the navigation pane opens</comment> </data> <data name="KeyboardManager_ConfigHeader.Text" xml:space="preserve"> <value>Current configuration</value> <comment>Keyboard Manager current configuration header</comment> </data> <data name="KeyboardManager.ModuleDescription" xml:space="preserve"> <value>Reconfigure your keyboard by remapping keys and shortcuts</value> <comment>Keyboard Manager page description</comment> </data> <data name="KeyboardManager_EnableToggle.Header" xml:space="preserve"> <value>Enable Keyboard Manager</value> <comment>Keyboard Manager enable toggle header. Do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="KeyboardManager_ProfileDescription.Text" xml:space="preserve"> <value>Select the profile to display the active key remap and shortcuts</value> <comment>Keyboard Manager configuration dropdown description</comment> </data> <data name="KeyboardManager_RemapKeyboardButton.Header" xml:space="preserve"> <value>Remap a key</value> <comment>Keyboard Manager remap keyboard button content</comment> </data> <data name="KeyboardManager_Keys.Header" xml:space="preserve"> <value>Keys</value> <comment>Keyboard Manager remap keyboard header</comment> </data> <data name="KeyboardManager_RemapShortcutsButton.Header" xml:space="preserve"> <value>Remap a shortcut</value> <comment>Keyboard Manager remap shortcuts button</comment> </data> <data name="KeyboardManager_Shortcuts.Header" xml:space="preserve"> <value>Shortcuts</value> <comment>Keyboard Manager remap keyboard header</comment> </data> <data name="KeyboardManager_All_Apps_Description" xml:space="preserve"> <value>All Apps</value> <comment>Should be the same as EditShortcuts_AllApps from keyboard manager editor</comment> </data> <data name="Shortcuts.Header" xml:space="preserve"> <value>Shortcuts</value> </data> <data name="Shortcut.Header" xml:space="preserve"> <value>Shortcut</value> </data> <data name="RemapKeysList.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Current Key Remappings</value> </data> <data name="RemapShortcutsList.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Current Shortcut Remappings</value> </data> <data name="KeyboardManager_RemappedKeysListItem.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Key Remapping</value> <comment>key as in keyboard key</comment> </data> <data name="KeyboardManager_RemappedShortcutsListItem.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Shortcut Remapping</value> </data> <data name="KeyboardManager_RemappedTo.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Remapped to</value> </data> <data name="KeyboardManager_ShortcutRemappedTo.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Remapped to</value> </data> <data name="KeyboardManager_TargetApp.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>For Target Application</value> <comment>What computer application would this be for</comment> </data> <data name="KeyboardManager_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Keyboard Manager</value> <comment>do not loc, product name</comment> </data> <data name="ColorPicker.ModuleDescription" xml:space="preserve"> <value>Quick and simple system-wide color picker.</value> </data> <data name="ColorPicker_EnableColorPicker.Header" xml:space="preserve"> <value>Enable Color Picker</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="ColorPicker_ChangeCursor.Content" xml:space="preserve"> <value>Change cursor when picking a color</value> </data> <data name="PowerLauncher.ModuleDescription" xml:space="preserve"> <value>A quick launcher that has additional capabilities without sacrificing performance.</value> </data> <data name="PowerLauncher_EnablePowerLauncher.Header" xml:space="preserve"> <value>Enable PowerToys Run</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="PowerLauncher_SearchResults.Header" xml:space="preserve"> <value>Search &amp; results</value> </data> <data name="PowerLauncher_SearchResultPreference.Header" xml:space="preserve"> <value>Search result preference</value> </data> <data name="PowerLauncher_UsePinyin.Header" xml:space="preserve"> <value>Use Pinyin</value> </data> <data name="PowerLauncher_UsePinyin.Description" xml:space="preserve"> <value>Experimental: Use Pinyin on the search query. May not work for every plugin.</value> </data> <data name="PowerLauncher_SearchResultPreference_MostRecentlyUsed" xml:space="preserve"> <value>Most recently used</value> </data> <data name="PowerLauncher_SearchResultPreference_AlphabeticalOrder" xml:space="preserve"> <value>Alphabetical order</value> </data> <data name="PowerLauncher_SearchResultPreference_RunningProcessesOpenApplications" xml:space="preserve"> <value>Running processes/open applications</value> </data> <data name="PowerLauncher_SearchTypePreference.Header" xml:space="preserve"> <value>Search type preference</value> </data> <data name="PowerLauncher_SearchTypePreference_ApplicationName" xml:space="preserve"> <value>Application name</value> </data> <data name="PowerLauncher_SearchTypePreference_StringInApplication" xml:space="preserve"> <value>A string that is contained in the application</value> </data> <data name="PowerLauncher_SearchTypePreference_ExecutableName" xml:space="preserve"> <value>Executable name</value> </data> <data name="PowerLauncher_MaximumNumberOfResults.Header" xml:space="preserve"> <value>Number of results shown before scrolling</value> </data> <data name="PowerLauncher_OpenPowerLauncher.Header" xml:space="preserve"> <value>Open PowerToys Run</value> </data> <data name="PowerLauncher_OpenFileLocation.Header" xml:space="preserve"> <value>Open file location</value> </data> <data name="PowerLauncher_CopyPathLocation.Header" xml:space="preserve"> <value>Copy path location</value> </data> <data name="PowerLauncher_OpenConsole.Header" xml:space="preserve"> <value>Open console</value> <comment>console refers to Windows command prompt</comment> </data> <data name="PowerLauncher_OverrideWinRKey.Content" xml:space="preserve"> <value>Override Win+R shortcut</value> </data> <data name="PowerLauncher_OverrideWinSKey.Content" xml:space="preserve"> <value>Override Win+S shortcut</value> </data> <data name="PowerLauncher_IgnoreHotkeysInFullScreen.Content" xml:space="preserve"> <value>Ignore shortcuts in fullscreen mode</value> </data> <data name="PowerLauncher_UseCentralizedKeyboardHook.Header" xml:space="preserve"> <value>Use centralized keyboard hook</value> </data> <data name="PowerLauncher_UseCentralizedKeyboardHook.Description" xml:space="preserve"> <value>Try this if there are issues with the shortcut (PowerToys Run might not get focus when triggered from an elevated window)</value> </data> <data name="PowerLauncher_ClearInputOnLaunch.Content" xml:space="preserve"> <value>Clear the previous query on launch</value> </data> <data name="PowerLauncher_TabSelectsContextButtons.Header" xml:space="preserve"> <value>Tab through context buttons</value> </data> <data name="PowerLauncher_TabSelectsContextButtons.Description" xml:space="preserve"> <value>Pressing tab will first select through the available context buttons of the current selection before moving onto the next result</value> </data> <data name="PowerLauncher_GenerateThumbnailsFromFiles.Header" xml:space="preserve"> <value>Generate thumbnails from files</value> </data> <data name="PowerLauncher_GenerateThumbnailsFromFiles.Description" xml:space="preserve"> <value>Results will try to generate thumbnails for files. Disabling this setting may increase stability and speed</value> </data> <data name="PowerLauncher_SearchQueryResultsWithDelay.Header" xml:space="preserve"> <value>Input Smoothing</value> <comment>This is about adding a delay to wait for more input before executing a search</comment> </data> <data name="PowerLauncher_SearchQueryResultsWithDelay.Description" xml:space="preserve"> <value>Wait for more input before searching. This reduces interface jumpiness and system load.</value> </data> <data name="PowerLauncher_FastSearchInputDelayMs.Header" xml:space="preserve"> <value>Immediate plugins</value> </data> <data name="PowerLauncher_FastSearchInputDelayMs.Description" xml:space="preserve"> <value>Affects the plugins that make the UI wait for their results by this amount. Recommended: 30-50 ms.</value> </data> <data name="PowerLauncher_SlowSearchInputDelayMs.Header" xml:space="preserve"> <value>Background execution plugins</value> </data> <data name="PowerLauncher_SlowSearchInputDelayMs.Description" xml:space="preserve"> <value>Affects the plugins that execute in the background by this amount. Recommended: 100-150 ms.</value> </data> <data name="PowerLauncher_SearchInputDelayMs.Header" xml:space="preserve"> <value>Fast plugin throttle (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="KeyboardManager_KeysMappingLayoutRightHeader.Text" xml:space="preserve"> <value>To:</value> <comment>Keyboard Manager mapping keys view right header</comment> </data> <data name="Appearance_GroupSettings.Text" xml:space="preserve"> <value>Appearance</value> </data> <data name="Fancyzones_ImageHyperlinkToDocs.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>FancyZones windows</value> <comment>do not loc the Product name</comment> </data> <data name="FancyZones.ModuleDescription" xml:space="preserve"> <value>Create window layouts to help make multi-tasking easy.</value> <comment>windows refers to application windows</comment> </data> <data name="FancyZones_DisplayOrWorkAreaChangeMoveWindowsCheckBoxControl.Content" xml:space="preserve"> <value>Keep windows in their zones when the screen resolution or work area changes</value> <comment>windows refers to application windows</comment> </data> <data name="FancyZones_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable FancyZones</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="FancyZones_ExcludeApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="FancyZones_ExcludeApps.Description" xml:space="preserve"> <value>Excludes an application from snapping to zones and will only react to Windows Snap - add one application name per line</value> </data> <data name="FancyZones_HighlightOpacity.Header" xml:space="preserve"> <value>Opacity (%)</value> </data> <data name="FancyZones_HotkeyEditorControl.Header" xml:space="preserve"> <value>Open layout editor</value> <comment>Shortcut to launch the FancyZones layout editor application</comment> </data> <data name="FancyZones_WindowSwitching_GroupSettings.Header" xml:space="preserve"> <value>Switch between windows in the current zone</value> </data> <data name="FancyZones_HotkeyNextTabControl.Header" xml:space="preserve"> <value>Next window</value> </data> <data name="FancyZones_HotkeyPrevTabControl.Header" xml:space="preserve"> <value>Previous window</value> </data> <data name="SettingsPage_SetShortcut.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Shortcut setting</value> </data> <data name="SettingsPage_SetShortcut_Glyph.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Information Symbol</value> </data> <data name="FancyZones_LaunchEditorButtonControl.Header" xml:space="preserve"> <value>Launch layout editor</value> <comment>launches the FancyZones layout editor application</comment> </data> <data name="FancyZones_LaunchEditorButtonControl.Description" xml:space="preserve"> <value>Set and manage your layouts</value> <comment>launches the FancyZones layout editor application</comment> </data> <data name="FancyZones_MakeDraggedWindowTransparentCheckBoxControl.Content" xml:space="preserve"> <value>Make dragged window transparent</value> </data> <data name="FancyZones_MouseDragCheckBoxControl_Header.Content" xml:space="preserve"> <value>Use a non-primary mouse button to toggle zone activation</value> </data> <data name="FancyZones_MouseMiddleClickSpanningMultipleZonesCheckBoxControl_Header.Content" xml:space="preserve"> <value>Use middle-click mouse button to toggle multiple zones spanning</value> </data> <data name="FancyZones_MoveWindowsAcrossAllMonitorsCheckBoxControl.Content" xml:space="preserve"> <value>Move windows between zones across all monitors</value> </data> <data name="FancyZones_OverrideSnapHotkeys.Header" xml:space="preserve"> <value>Override Windows Snap</value> </data> <data name="FancyZones_OverrideSnapHotkeys.Description" xml:space="preserve"> <value>This overrides the Windows Snap shortcut (Win + arrow) to move windows between zones</value> </data> <data name="FancyZones_ShiftDragCheckBoxControl_Header.Content" xml:space="preserve"> <value>Hold Shift key to activate zones while dragging a window</value> </data> <data name="FancyZones_ActivationNoShiftDrag" xml:space="preserve"> <value>Drag windows to activate zones</value> </data> <data name="FancyZones_ShowZonesOnAllMonitorsCheckBoxControl.Content" xml:space="preserve"> <value>Show zones on all monitors while dragging a window</value> </data> <data name="FancyZones_AppLastZoneMoveWindows.Content" xml:space="preserve"> <value>Move newly created windows to their last known zone</value> <comment>windows refers to application windows</comment> </data> <data name="FancyZones_OpenWindowOnActiveMonitor.Content" xml:space="preserve"> <value>Move newly created windows to the current active monitor (Experimental)</value> </data> <data name="FancyZones_UseCursorPosEditorStartupScreen.Header" xml:space="preserve"> <value>Launch editor on the display</value> </data> <data name="FancyZones_UseCursorPosEditorStartupScreen.Description" xml:space="preserve"> <value>When using multiple displays</value> </data> <data name="FancyZones_LaunchPositionMouse.Content" xml:space="preserve"> <value>Where the mouse pointer is</value> </data> <data name="FancyZones_LaunchPositionScreen.Content" xml:space="preserve"> <value>With active focus</value> </data> <data name="FancyZones_ZoneBehavior_GroupSettings.Header" xml:space="preserve"> <value>Zone behavior</value> </data> <data name="FancyZones_ZoneBehavior_GroupSettings.Description" xml:space="preserve"> <value>Manage how zones behave when using FancyZones</value> </data> <data name="FancyZones_Zones.Header" xml:space="preserve"> <value>Zones</value> </data> <data name="FancyZones_ZoneHighlightColor.Header" xml:space="preserve"> <value>Highlight color</value> </data> <data name="FancyZones_ZoneSetChangeMoveWindows.Content" xml:space="preserve"> <value>During zone layout changes, windows assigned to a zone will match new size/positions</value> </data> <data name="AttributionTitle.Text" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="General.ModuleTitle" xml:space="preserve"> <value>General</value> </data> <data name="GeneralPage_CheckForUpdates.Content" xml:space="preserve"> <value>Check for updates</value> </data> <data name="General_SettingsBackupAndRestoreLocationText.Header" xml:space="preserve"> <value>Location</value> </data> <data name="General_SettingsBackupAndRestore_ButtonBackup.Content" xml:space="preserve"> <value>Backup</value> </data> <data name="General_SettingsBackupInfo_FileNameHeader.Text" xml:space="preserve"> <value>File name:</value> </data> <data name="General_SettingsBackupAndRestore_LinkRefresh.Text" xml:space="preserve"> <value>Refresh</value> </data> <data name="General_SettingsBackupAndRestore_ButtonRestore.Content" xml:space="preserve"> <value>Restore</value> </data> <data name="General_SettingsBackupAndRestore_ButtonSelectLocation.Text" xml:space="preserve"> <value>Select folder</value> </data> <data name="GeneralPage_UpdateNow.Content" xml:space="preserve"> <value>Update now</value> </data> <data name="GeneralPage_PrivacyStatement_URL.Text" xml:space="preserve"> <value>Privacy statement</value> </data> <data name="GeneralPage_ReportAbug.Text" xml:space="preserve"> <value>Report a bug</value> <comment>Report an issue inside powertoys</comment> </data> <data name="GeneralPage_RequestAFeature_URL.Text" xml:space="preserve"> <value>Request a feature</value> <comment>Tell our team what we should build</comment> </data> <data name="GeneralPage_RestartAsAdmin_Button.Content" xml:space="preserve"> <value>Restart PowerToys as administrator</value> <comment>running PowerToys as a higher level user, account is typically referred to as an admin / administrator</comment> </data> <data name="GeneralPage_RunAtStartUp.Header" xml:space="preserve"> <value>Run at startup</value> </data> <data name="GeneralPage_RunAtStartUp.Description" xml:space="preserve"> <value>PowerToys will launch automatically</value> </data> <data name="PowerRename.ModuleDescription" xml:space="preserve"> <value>A Windows Shell extension for more advanced bulk renaming using search &amp; replace or regular expressions.</value> </data> <data name="PowerRename_ShellIntegration.Header" xml:space="preserve"> <value>Shell integration</value> <comment>This refers to directly integrating in with Windows</comment> </data> <data name="PowerRename_Toggle_Enable.Header" xml:space="preserve"> <value>Enable PowerRename</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="RadioButtons_Name_Theme.Text" xml:space="preserve"> <value>Settings theme</value> </data> <data name="PowerRename_Toggle_HideIcon.Content" xml:space="preserve"> <value>Hide icon in context menu</value> </data> <data name="PowerRename_Toggle_ContextMenu.Header" xml:space="preserve"> <value>Show PowerRename in</value> </data> <data name="PowerRename_Toggle_StandardContextMenu.Content" xml:space="preserve"> <value>Default and extended context menu</value> </data> <data name="PowerRename_Toggle_ExtendedContextMenu.Content" xml:space="preserve"> <value>Extended context menu only</value> </data> <data name="ExtendedContextMenuInfo.Title" xml:space="preserve"> <value>Press Shift + right-click on files to open the extended context menu</value> </data> <data name="PowerRename_Toggle_MaxDispListNum.Header" xml:space="preserve"> <value>Maximum number of items</value> </data> <data name="PowerRename_Toggle_RestoreFlagsOnLaunch.Header" xml:space="preserve"> <value>Show recently used strings</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_MD.Header" xml:space="preserve"> <value>Markdown</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_MD.Description" xml:space="preserve"> <value>.md, .markdown, .mdown, .mkdn, .mkd, .mdwn, .mdtxt, .mdtext</value> <comment>File extensions, should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_Monaco.Header" xml:space="preserve"> <value>Source code files (Monaco)</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_Monaco.Description" xml:space="preserve"> <value>.cpp, .py, .json, .xml, .csproj, ...</value> <comment>File extensions should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_SVG.Header" xml:space="preserve"> <value>Scalable Vector Graphics</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_SVG.Description" xml:space="preserve"> <value>.svg</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_Preview_SVG_Color_Mode.Header" xml:space="preserve"> <value>Color mode</value> </data> <data name="FileExplorerPreview_Preview_SVG_Color_Mode_Default.Content" xml:space="preserve"> <value>Windows default</value> </data> <data name="FileExplorerPreview_Preview_SVG_Color_Solid_Color.Content" xml:space="preserve"> <value>Solid color</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade.Content" xml:space="preserve"> <value>Checkered pattern</value> </data> <data name="FileExplorerPreview_Preview_SVG_Background_Color.Header" xml:space="preserve"> <value>Color</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_Mode.Header" xml:space="preserve"> <value>Checkered shade</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_1.Content" xml:space="preserve"> <value>Light</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_2.Content" xml:space="preserve"> <value>Medium</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_3.Content" xml:space="preserve"> <value>Dark</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_PDF.Header" xml:space="preserve"> <value>Portable Document Format</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_PDF.Description" xml:space="preserve"> <value>.pdf</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_SVG.Header" xml:space="preserve"> <value>Scalable Vector Graphics</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_SVG.Description" xml:space="preserve"> <value>.svg</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_STL.Header" xml:space="preserve"> <value>Stereolithography</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_STL.Description" xml:space="preserve"> <value>.stl</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_Color_Thumbnail_STL.Header" xml:space="preserve"> <value>Color</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_PDF.Header" xml:space="preserve"> <value>Portable Document Format</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_PDF.Description" xml:space="preserve"> <value>.pdf</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview.ModuleDescription" xml:space="preserve"> <value>These settings allow you to manage your Windows File Explorer custom preview handlers.</value> </data> <data name="PowerRename_AutoCompleteHeader.Header" xml:space="preserve"> <value>Auto-complete</value> </data> <data name="OpenSource_Notice.Text" xml:space="preserve"> <value>Open-source notice</value> </data> <data name="PowerRename_Toggle_AutoComplete.Header" xml:space="preserve"> <value>Enable auto-complete for the search &amp; replace fields</value> </data> <data name="FancyZones_BorderColor.Header" xml:space="preserve"> <value>Border color</value> </data> <data name="FancyZones_InActiveColor.Header" xml:space="preserve"> <value>Inactive color</value> </data> <data name="ShortcutGuide.ModuleDescription" xml:space="preserve"> <value>Shows a help overlay with Windows shortcuts.</value> </data> <data name="ShortcutGuide_PressTimeForGlobalWindowsShortcuts.Header" xml:space="preserve"> <value>Press duration before showing global Windows shortcuts (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="ShortcutGuide_ActivationMethod.Header" xml:space="preserve"> <value>Activation method</value> </data> <data name="ShortcutGuide_ActivationMethod.Description" xml:space="preserve"> <value>Use a shortcut or press the Windows key for some time to activate</value> </data> <data name="Radio_ShortcutGuide_ActivationMethod_CustomizedShortcut.Content" xml:space="preserve"> <value>Custom shortcut</value> </data> <data name="Radio_ShortcutGuide_ActivationMethod_LongPressWindowsKey.Content" xml:space="preserve"> <value>Hold down Windows key</value> </data> <data name="ShortcutGuide_PressWinKeyWarning.Title" xml:space="preserve"> <value>In some edge cases Shortcut Guide might not function correctly when using this activation method</value> </data> <data name="Appearance_Behavior.Header" xml:space="preserve"> <value>Appearance &amp; behavior</value> </data> <data name="General_SettingsBackupAndRestoreTitle.Header" xml:space="preserve"> <value>Backup &amp; restore</value> </data> <data name="General_SettingsBackupAndRestore.Header" xml:space="preserve"> <value>Backup and restore your settings</value> </data> <data name="General_SettingsBackupAndRestore.Description" xml:space="preserve"> <value>PowerToys will restart automatically if needed</value> </data> <data name="ShortcutGuide_Enable.Header" xml:space="preserve"> <value>Enable Shortcut Guide</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="ShortcutGuide_OverlayOpacity.Header" xml:space="preserve"> <value>Background opacity (%)</value> </data> <data name="ShortcutGuide_DisabledApps.Header" xml:space="preserve"> <value>Exclude apps</value> </data> <data name="ShortcutGuide_DisabledApps.Description" xml:space="preserve"> <value>Turns off Shortcut Guide when these applications have focus - add one application name per line</value> </data> <data name="ShortcutGuide_DisabledApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> <comment>Don't translate outlook.exe</comment> </data> <data name="ImageResizer_CustomSizes.Header" xml:space="preserve"> <value>Image sizes</value> </data> <data name="ImageResizer_Presets.Header" xml:space="preserve"> <value>Presets</value> </data> <data name="ImageResizer_Presets.Description" xml:space="preserve"> <value>Manage preset sizes that can be used in the editor</value> </data> <data name="ImageResizer_FilenameFormatHeader.Description" xml:space="preserve"> <value>This format is used as the filename for resized images</value> </data> <data name="ImageResizer.ModuleDescription" xml:space="preserve"> <value>Lets you resize images by right-clicking.</value> </data> <data name="ImageResizer_EnableToggle.Header" xml:space="preserve"> <value>Enable Image Resizer</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="ImagesSizesListView.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Image Size</value> </data> <data name="ImageResizer_Configurations.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Configurations</value> </data> <data name="ImageResizer_Name.Header" xml:space="preserve"> <value>Name</value> </data> <data name="ImageResizer_Fit.Header" xml:space="preserve"> <value>Fit</value> </data> <data name="ImageResizer_Width.Header" xml:space="preserve"> <value>Width</value> </data> <data name="ImageResizer_Height.Header" xml:space="preserve"> <value>Height</value> </data> <data name="ImageResizer_Size.Header" xml:space="preserve"> <value>Unit</value> </data> <data name="RemoveButton.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Remove</value> <comment>Removes a user defined setting group for Image Resizer</comment> </data> <data name="RemoveItem.Text" xml:space="preserve"> <value>Delete</value> </data> <data name="ImageResizer_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Image Resizer</value> </data> <data name="ImageResizer_AddSizeButton.Content" xml:space="preserve"> <value>Add new size</value> </data> <data name="ImageResizer_SaveSizeButton.Label" xml:space="preserve"> <value>Save sizes</value> </data> <data name="ImageResizer_Encoding.Header" xml:space="preserve"> <value>JPEG quality level (%)</value> </data> <data name="ImageResizer_PNGInterlacing.Header" xml:space="preserve"> <value>PNG interlacing</value> </data> <data name="ImageResizer_TIFFCompression.Header" xml:space="preserve"> <value>TIFF compression</value> </data> <data name="File.Header" xml:space="preserve"> <value>File</value> <comment>as in a computer file</comment> </data> <data name="Default.Content" xml:space="preserve"> <value>Default</value> </data> <data name="ImageResizer_ENCODER_TIFF_CCITT3.Content" xml:space="preserve"> <value>CCITT3</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_CCITT4.Content" xml:space="preserve"> <value>CCITT4</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_Default.Content" xml:space="preserve"> <value>Default</value> </data> <data name="ImageResizer_ENCODER_TIFF_LZW.Content" xml:space="preserve"> <value>LZW</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_None.Content" xml:space="preserve"> <value>None</value> </data> <data name="ImageResizer_ENCODER_TIFF_RLE.Content" xml:space="preserve"> <value>RLE</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_Zip.Content" xml:space="preserve"> <value>Zip</value> <comment>do not loc</comment> </data> <data name="ImageResizer_FallbackEncoder_BMP.Content" xml:space="preserve"> <value>BMP encoder</value> </data> <data name="ImageResizer_FallbackEncoder_GIF.Content" xml:space="preserve"> <value>GIF encoder</value> </data> <data name="ImageResizer_FallbackEncoder_JPEG.Content" xml:space="preserve"> <value>JPEG encoder</value> </data> <data name="ImageResizer_FallbackEncoder_PNG.Content" xml:space="preserve"> <value>PNG encoder</value> </data> <data name="ImageResizer_FallbackEncoder_TIFF.Content" xml:space="preserve"> <value>TIFF encoder</value> </data> <data name="ImageResizer_FallbackEncoder_WMPhoto.Content" xml:space="preserve"> <value>WMPhoto encoder</value> </data> <data name="ImageResizer_Sizes_Fit_Fill.Content" xml:space="preserve"> <value>Fill</value> <comment>Refers to filling an image into a certain size. It could overflow</comment> </data> <data name="ImageResizer_Sizes_Fit_Fill_ThirdPersonSingular.Text" xml:space="preserve"> <value>Fill</value> <comment>Refers to filling an image into a certain size. It could overflow</comment> </data> <data name="ImageResizer_Sizes_Fit_Fit.Content" xml:space="preserve"> <value>Fit</value> <comment>Refers to fitting an image into a certain size. It won't overflow</comment> </data> <data name="ImageResizer_Sizes_Fit_Stretch.Content" xml:space="preserve"> <value>Stretch</value> <comment>Refers to stretching an image into a certain size. Won't overflow but could distort.</comment> </data> <data name="ImageResizer_Sizes_Units_CM.Content" xml:space="preserve"> <value>Centimeters</value> </data> <data name="ImageResizer_Sizes_Units_Inches.Content" xml:space="preserve"> <value>Inches</value> </data> <data name="ImageResizer_Sizes_Units_Percent.Content" xml:space="preserve"> <value>Percent</value> </data> <data name="ImageResizer_Sizes_Units_Pixels.Content" xml:space="preserve"> <value>Pixels</value> </data> <data name="Off.Content" xml:space="preserve"> <value>Off</value> </data> <data name="On.Content" xml:space="preserve"> <value>On</value> </data> <data name="GeneralPage_ToggleSwitch_AlwaysRunElevated_Link.Content" xml:space="preserve"> <value>Learn more about administrator mode</value> </data> <data name="GeneralPage_ToggleSwitch_AutoDownloadUpdates.Header" xml:space="preserve"> <value>Download updates automatically</value> </data> <data name="GeneralPage_ToggleSwitch_AutoDownloadUpdates.Description" xml:space="preserve"> <value>Except on metered connections</value> </data> <data name="GeneralPage_ToggleSwitch_RunningAsAdminNote.Text" xml:space="preserve"> <value>Currently running as administrator</value> </data> <data name="GeneralSettings_AlwaysRunAsAdminText.Header" xml:space="preserve"> <value>Always run as administrator</value> </data> <data name="GeneralSettings_AlwaysRunAsAdminText.Description" xml:space="preserve"> <value>You need to run as administrator to use this setting</value> </data> <data name="GeneralSettings_RunningAsUserText" xml:space="preserve"> <value>Running as user</value> </data> <data name="GeneralSettings_RunningAsAdminText" xml:space="preserve"> <value>Running as administrator</value> </data> <data name="FancyZones.ModuleTitle" xml:space="preserve"> <value>FancyZones</value> </data> <data name="FileExplorerPreview.ModuleTitle" xml:space="preserve"> <value>File Explorer</value> </data> <data name="FileExplorerPreview_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>File Explorer</value> <comment>Use same translation as Windows does for File Explorer</comment> </data> <data name="ImageResizer.ModuleTitle" xml:space="preserve"> <value>Image Resizer</value> </data> <data name="KeyboardManager.ModuleTitle" xml:space="preserve"> <value>Keyboard Manager</value> </data> <data name="ColorPicker.ModuleTitle" xml:space="preserve"> <value>Color Picker</value> </data> <data name="PowerLauncher.ModuleTitle" xml:space="preserve"> <value>PowerToys Run</value> </data> <data name="PowerToys_Run_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>PowerToys Run</value> </data> <data name="PowerRename.ModuleTitle" xml:space="preserve"> <value>PowerRename</value> <comment>do not loc the product name</comment> </data> <data name="PowerRename_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>PowerRename</value> <comment>do not loc</comment> </data> <data name="ShortcutGuide.ModuleTitle" xml:space="preserve"> <value>Shortcut Guide</value> </data> <data name="Shortcut_Guide_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Shortcut Guide</value> </data> <data name="General_Repository.Text" xml:space="preserve"> <value>GitHub repository</value> </data> <data name="General_Version.Header" xml:space="preserve"> <value>Version</value> </data> <data name="General_VersionLastChecked.Text" xml:space="preserve"> <value>Last checked: </value> </data> <data name="General_SettingsBackupInfo_DateHeader.Text" xml:space="preserve"> <value>Created at:</value> </data> <data name="General_SettingsBackupAndRestoreStatusInfo.Header" xml:space="preserve"> <value>Backup information</value> </data> <data name="General_SettingsBackupInfo_SourceHeader.Text" xml:space="preserve"> <value>Source machine:</value> </data> <data name="General_SettingsBackupInfo_StatusHeader.Text" xml:space="preserve"> <value>Status:</value> </data> <data name="General_Version.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Version</value> </data> <data name="Admin_mode.Header" xml:space="preserve"> <value>Administrator mode</value> </data> <data name="FancyZones_RestoreSize.Content" xml:space="preserve"> <value>Restore the original size of windows when unsnapping</value> </data> <data name="ImageResizer_FallBackEncoderText.Header" xml:space="preserve"> <value>Fallback encoder</value> </data> <data name="ImageResizer_FileFormatDescription.Text" xml:space="preserve"> <value>The following parameters can be used:</value> </data> <data name="ImageResizer_FilenameFormatHeader.Header" xml:space="preserve"> <value>Filename format</value> </data> <data name="ImageResizer_FileModifiedDate.Header" xml:space="preserve"> <value>File modified timestamp</value> </data> <data name="ImageResizer_FileModifiedDate.Description" xml:space="preserve"> <value>Used as the 'modified timestamp' in the file properties</value> </data> <data name="ImageResizer_UseOriginalDate.Content" xml:space="preserve"> <value>Original file timestamp</value> </data> <data name="ImageResizer_UseResizeDate.Content" xml:space="preserve"> <value>Timestamp of resize action</value> </data> <data name="Encoding.Header" xml:space="preserve"> <value>Encoding</value> </data> <data name="KeyboardManager_RemapKeyboardButton.Description" xml:space="preserve"> <value>Remap keys to other keys or shortcuts</value> </data> <data name="KeyboardManager_RemapShortcutsButton.Description" xml:space="preserve"> <value>Remap shortcuts to other shortcuts or keys for all or specific applications</value> </data> <data name="General.ModuleDescription" xml:space="preserve"> <value>Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. Made with 💗 by Microsoft and the PowerToys community.</value> <comment>Windows refers to the OS</comment> </data> <data name="FancyZones_SpanZonesAcrossMonitors.Header" xml:space="preserve"> <value>Allow zones to span across monitors</value> </data> <data name="ImageResizer_Formatting_ActualHeight.Text" xml:space="preserve"> <value>Actual height</value> </data> <data name="ImageResizer_Formatting_ActualWidth.Text" xml:space="preserve"> <value>Actual width</value> </data> <data name="ImageResizer_Formatting_Filename.Text" xml:space="preserve"> <value>Original filename</value> </data> <data name="ImageResizer_Formatting_SelectedHeight.Text" xml:space="preserve"> <value>Selected height</value> </data> <data name="ImageResizer_Formatting_SelectedWidth.Text" xml:space="preserve"> <value>Selected width</value> </data> <data name="ImageResizer_Formatting_Sizename.Text" xml:space="preserve"> <value>Size name</value> </data> <data name="FancyZones_MoveWindowsBasedOnPositionCheckBoxControl.Content" xml:space="preserve"> <value>Move windows based on their position</value> <comment>Windows refers to application windows</comment> </data> <data name="GeneralSettings_NewVersionIsAvailable" xml:space="preserve"> <value>New update available</value> </data> <data name="GeneralSettings_VersionIsLatest" xml:space="preserve"> <value>PowerToys is up to date.</value> </data> <data name="FileExplorerPreview_IconThumbnail_GroupSettings.Header" xml:space="preserve"> <value>Thumbnail icon Preview</value> </data> <data name="FileExplorerPreview_IconThumbnail_GroupSettings.Description" xml:space="preserve"> <value>Select the file types for which thumbnail previews must be rendered.</value> </data> <data name="FileExplorerPreview_PreviewPane.Header" xml:space="preserve"> <value>Preview Pane</value> </data> <data name="FileExplorerPreview_PreviewPane.Description" xml:space="preserve"> <value>Select the file types which must be rendered in the Preview Pane. Ensure that Preview Pane is open by toggling the view with Alt + P in File Explorer.</value> <comment>Preview Pane and File Explorer are app/feature names in Windows. 'Alt + P' is a shortcut</comment> </data> <data name="FileExplorerPreview_RunAsAdminRequired.Title" xml:space="preserve"> <value>You need to run as administrator to modify these settings.</value> </data> <data name="FileExplorerPreview_RebootRequired.Title" xml:space="preserve"> <value>A reboot may be required for changes to these settings to take effect</value> </data> <data name="FileExplorerPreview_PreviewHandlerOutlookIncompatibility.Title" xml:space="preserve"> <value>Enabling the preview handlers will override other preview handlers already installed - there have been reports of incompatibility between Outlook and the PDF Preview Handler.</value> <comment>Outlook is the name of a Microsoft product</comment> </data> <data name="FileExplorerPreview_ThumbnailsMightNotAppearOnRemoteFolders.Title" xml:space="preserve"> <value>Thumbnails might not appear on paths managed by cloud storage solutions like OneDrive, since these solutions may get their thumbnails from the cloud instead of generating them locally.</value> <comment>OneDrive is the name of a Microsoft product</comment> </data> <data name="FancyZones_ExcludeApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> <comment>Don't translate outlook.exe</comment> </data> <data name="ImageResizer_FilenameFormatPlaceholder.PlaceholderText" xml:space="preserve"> <value>Example: %1 (%2)</value> </data> <data name="ImageResizer_FilenameParameters.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Filename parameters</value> </data> <data name="Radio_Theme_Dark.Content" xml:space="preserve"> <value>Dark</value> <comment>Dark refers to color, not weight</comment> </data> <data name="Radio_Theme_Light.Content" xml:space="preserve"> <value>Light</value> <comment>Light refers to color, not weight</comment> </data> <data name="Radio_Theme_Default.Content" xml:space="preserve"> <value>Windows default</value> <comment>Windows refers to the Operating system</comment> </data> <data name="Windows_Color_Settings.Content" xml:space="preserve"> <value>Windows color settings</value> <comment>Windows refers to the Operating system</comment> </data> <data name="ColorPicker_CopiedColorRepresentation.Header" xml:space="preserve"> <value>Default color format</value> </data> <data name="ColorPickerFirst.Content" xml:space="preserve"> <value>Pick a color and open editor</value> </data> <data name="EditorFirst.Content" xml:space="preserve"> <value>Open editor</value> </data> <data name="ColorPickerOnly.Content" xml:space="preserve"> <value>Only pick a color</value> </data> <data name="ColorPicker_ActivationAction.Header" xml:space="preserve"> <value>Activation behavior</value> </data> <data name="ColorFormats.Header" xml:space="preserve"> <value>Picker behavior</value> </data> <data name="ColorPicker_CopiedColorRepresentation.Description" xml:space="preserve"> <value>This format will be copied to your clipboard</value> </data> <data name="KBM_KeysCannotBeRemapped.Text" xml:space="preserve"> <value>Learn more about remapping limitations</value> <comment>This is a link that will discuss what is and is not possible for Keyboard manager to remap</comment> </data> <data name="FancyZones_Editor_GroupSettings.Header" xml:space="preserve"> <value>Editor</value> <comment>refers to the FancyZone editor</comment> </data> <data name="FancyZones_WindowBehavior_GroupSettings.Header" xml:space="preserve"> <value>Window behavior</value> </data> <data name="FancyZones_WindowBehavior_GroupSettings.Description" xml:space="preserve"> <value>Manage how windows behave when using FancyZones</value> </data> <data name="FancyZones_Windows.Header" xml:space="preserve"> <value>Windows</value> <comment>Do translate: refers to a set of application windows, not the product name</comment> </data> <data name="PowerRename_BehaviorHeader.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="PowerRename_Toggle_UseBoostLib.Header" xml:space="preserve"> <value>Use Boost library</value> <comment>Boost is a product name, should not be translated</comment> </data> <data name="PowerRename_Toggle_UseBoostLib.Description" xml:space="preserve"> <value>Provides extended features but may use different regex syntax</value> <comment>Boost is a product name, should not be translated</comment> </data> <data name="MadeWithOssLove.Text" xml:space="preserve"> <value>Made with 💗 by Microsoft and the PowerToys community.</value> </data> <data name="ColorPicker_ColorFormats.Header" xml:space="preserve"> <value>Color formats</value> </data> <data name="ColorPicker_ColorFormats.Description" xml:space="preserve"> <value>Configure the color formats (edit, delete, hide, reorder them)</value> </data> <data name="MoveUp.Text" xml:space="preserve"> <value>Move up</value> </data> <data name="MoveDown.Text" xml:space="preserve"> <value>Move down</value> </data> <data name="ColorPickerAddNewFormat.Content" xml:space="preserve"> <value>Add new format</value> </data> <data name="NewColorFormat.Header" xml:space="preserve"> <value>Format</value> </data> <data name="NewColorName.Header" xml:space="preserve"> <value>Name</value> </data> <data name="AddCustomColorFormat" xml:space="preserve"> <value>Add custom color format</value> </data> <data name="ColorFormatSave" xml:space="preserve"> <value>Save</value> </data> <data name="EditCustomColorFormat" xml:space="preserve"> <value>Edit custom color format</value> </data> <data name="ColorFormatUpdate" xml:space="preserve"> <value>Update</value> </data> <data name="CustomColorFormatDefaultName" xml:space="preserve"> <value>My Format</value> </data> <data name="ColorFormatDialog.SecondaryButtonText" xml:space="preserve"> <value>Cancel</value> </data> <data name="ColorFormatEditorHelpline1.Text" xml:space="preserve"> <value>The following parameters can be used:</value> </data> <data name="Help_red" xml:space="preserve"> <value>red</value> </data> <data name="Help_green" xml:space="preserve"> <value>green</value> </data> <data name="Help_blue" xml:space="preserve"> <value>blue</value> </data> <data name="Help_alpha" xml:space="preserve"> <value>alpha</value> </data> <data name="Help_cyan" xml:space="preserve"> <value>cyan</value> </data> <data name="Help_magenta" xml:space="preserve"> <value>magenta</value> </data> <data name="Help_yellow" xml:space="preserve"> <value>yellow</value> </data> <data name="Help_black_key" xml:space="preserve"> <value>black key</value> </data> <data name="Help_hue" xml:space="preserve"> <value>hue</value> </data> <data name="Help_hueNat" xml:space="preserve"> <value>hue (natural)</value> </data> <data name="Help_saturationI" xml:space="preserve"> <value>saturation (HSI)</value> </data> <data name="Help_saturationL" xml:space="preserve"> <value>saturation (HSL)</value> </data> <data name="Help_saturationB" xml:space="preserve"> <value>saturation (HSB)</value> </data> <data name="Help_brightness" xml:space="preserve"> <value>brightness</value> </data> <data name="Help_intensity" xml:space="preserve"> <value>intensity</value> </data> <data name="Help_lightnessNat" xml:space="preserve"> <value>lightness (nat)</value> </data> <data name="Help_lightnessCIE" xml:space="preserve"> <value>lightness (CIE)</value> </data> <data name="Help_value" xml:space="preserve"> <value>value</value> </data> <data name="Help_whiteness" xml:space="preserve"> <value>whiteness</value> </data> <data name="Help_blackness" xml:space="preserve"> <value>blackness</value> </data> <data name="Help_chromaticityA" xml:space="preserve"> <value>chromaticityA</value> </data> <data name="Help_chromaticityB" xml:space="preserve"> <value>chromaticityB</value> </data> <data name="Help_X_value" xml:space="preserve"> <value>X value</value> </data> <data name="Help_Y_value" xml:space="preserve"> <value>Y value</value> </data> <data name="Help_Z_value" xml:space="preserve"> <value>Z value</value> </data> <data name="Help_decimal_value_RGB" xml:space="preserve"> <value>decimal value (RGB)</value> </data> <data name="Help_decimal_value_BGR" xml:space="preserve"> <value>decimal value (BGR)</value> </data> <data name="Help_color_name" xml:space="preserve"> <value>color name</value> </data> <data name="ColorFormatEditorHelpline2.Text" xml:space="preserve"> <value>The red, green, blue and alpha values can be formatted to the following formats:</value> </data> <data name="Help_byte" xml:space="preserve"> <value>byte value (default)</value> </data> <data name="Help_hexL1" xml:space="preserve"> <value>hex lowercase one digit</value> </data> <data name="Help_hexU1" xml:space="preserve"> <value>hex uppercase one digit</value> </data> <data name="Help_hexL2" xml:space="preserve"> <value>hex lowercase two digits</value> </data> <data name="Help_hexU2" xml:space="preserve"> <value>hex uppercase two digits</value> </data> <data name="Help_floatWith" xml:space="preserve"> <value>float with leading zero</value> </data> <data name="Help_floatWithout" xml:space="preserve"> <value>float without leading zero</value> </data> <data name="ColorFormatEditorHelpline3.Text" xml:space="preserve"> <value>Example: %ReX means red value in hex uppercase two digits format.</value> </data> <data name="ColorPicker_ShowColorName.Header" xml:space="preserve"> <value>Show color name</value> </data> <data name="ColorPicker_ShowColorName.Description" xml:space="preserve"> <value>This will show the name of the color when picking a color</value> </data> <data name="ImageResizer_DefaultSize_Large" xml:space="preserve"> <value>Large</value> <comment>The size of the image</comment> </data> <data name="ImageResizer_DefaultSize_Medium" xml:space="preserve"> <value>Medium</value> <comment>The size of the image</comment> </data> <data name="ImageResizer_DefaultSize_Phone" xml:space="preserve"> <value>Phone</value> <comment>The size of the image referring to a Mobile Phone typical image size</comment> </data> <data name="ImageResizer_DefaultSize_Small" xml:space="preserve"> <value>Small</value> <comment>The size of the image</comment> </data> <data name="FancyZones_MoveWindowBasedOnRelativePosition_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Windows key + Up, down, left or right arrow key to move windows based on relative position</value> </data> <data name="FancyZones_MoveWindowLeftRightBasedOnZoneIndex_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Windows key + Left or right arrow keys to move windows based on zone index</value> </data> <data name="FancyZones_MoveWindowBasedOnRelativePosition_Description.Text" xml:space="preserve"> <value>Windows key +    or </value> <comment>Do not loc the icons (hex numbers)</comment> </data> <data name="FancyZones_MoveWindowLeftRightBasedOnZoneIndex_Description.Text" xml:space="preserve"> <value>Windows key +  or </value> <comment>Do not loc the icons (hex numbers)</comment> </data> <data name="FancyZones_MoveWindowBasedOnRelativePosition.Text" xml:space="preserve"> <value>Relative position</value> </data> <data name="FancyZones_MoveWindow.Header" xml:space="preserve"> <value>Move windows based on</value> </data> <data name="FancyZones_MoveWindowLeftRightBasedOnZoneIndex.Text" xml:space="preserve"> <value>Zone index</value> </data> <data name="ColorPicker_Editor.Header" xml:space="preserve"> <value>Color formats</value> </data> <data name="FancyZones_OverlappingZonesClosestCenter.Content" xml:space="preserve"> <value>Activate the zone whose center is closest to the cursor</value> </data> <data name="FancyZones_OverlappingZonesLargest.Content" xml:space="preserve"> <value>Activate the largest zone by area</value> </data> <data name="FancyZones_OverlappingZonesPositional.Content" xml:space="preserve"> <value>Split the overlapped area into multiple activation targets</value> </data> <data name="FancyZones_OverlappingZonesSmallest.Content" xml:space="preserve"> <value>Activate the smallest zone by area</value> </data> <data name="FancyZones_OverlappingZones.Header" xml:space="preserve"> <value>When multiple zones overlap</value> </data> <data name="PowerLauncher_Plugins.Header" xml:space="preserve"> <value>Plugins</value> </data> <data name="PowerLauncher_ActionKeyword.Header" xml:space="preserve"> <value>Direct activation command</value> </data> <data name="PowerLauncher_AuthoredBy.Text" xml:space="preserve"> <value>Authored by</value> <comment>example: Authored by Microsoft</comment> </data> <data name="PowerLauncher_IncludeInGlobalResultTitle.Text" xml:space="preserve"> <value>Include in global result</value> </data> <data name="PowerLauncher_IncludeInGlobalResultDescription.Text" xml:space="preserve"> <value>Show results on queries without direct activation command</value> </data> <data name="PowerLauncher_EnablePluginToggle.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Enable plugin</value> </data> <data name="PowerLauncher_EnablePluginToggle.OnContent" xml:space="preserve"> <value>On</value> </data> <data name="PowerLauncher_EnablePluginToggle.OffContent" xml:space="preserve"> <value>Off</value> </data> <data name="Run_AdditionalOptions.Text" xml:space="preserve"> <value>Additional options</value> </data> <data name="Run_NotAccessibleWarning.Title" xml:space="preserve"> <value>Please define an activation command or allow this plugin to be used in the global results.</value> </data> <data name="Run_AllPluginsDisabled.Title" xml:space="preserve"> <value>PowerToys Run can't provide any results without plugins</value> </data> <data name="Run_AllPluginsDisabled.Message" xml:space="preserve"> <value>Enable at least one plugin to get started</value> </data> <data name="Run_PluginUse.Header" xml:space="preserve"> <value>Plugins</value> </data> <data name="Run_PluginUseDescription.Text" xml:space="preserve"> <value>Include or remove plugins from the global results, change the direct activation phrase and configure additional options</value> </data> <data name="Run_PositionAppearance_GroupSettings.Header" xml:space="preserve"> <value>Position &amp; appearance</value> </data> <data name="Run_PositionHeader.Header" xml:space="preserve"> <value>Preferred monitor position</value> <comment>as in Show PowerToys Run on primary monitor</comment> </data> <data name="Run_PositionHeader.Description" xml:space="preserve"> <value>If multiple monitors are in use, PowerToys Run can be launched on the desired monitor</value> <comment>as in Show PowerToys Run on primary monitor</comment> </data> <data name="Run_Radio_Position_Cursor.Content" xml:space="preserve"> <value>Monitor with mouse cursor</value> </data> <data name="Run_Radio_Position_Focus.Content" xml:space="preserve"> <value>Monitor with focused window</value> </data> <data name="Run_Radio_Position_Primary_Monitor.Content" xml:space="preserve"> <value>Primary monitor</value> </data> <data name="Run_PluginsLoading.Text" xml:space="preserve"> <value>Plugins are loading...</value> </data> <data name="ColorPicker_ButtonDown.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Move the color down</value> </data> <data name="ColorPicker_ButtonUp.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Move the color up</value> </data> <data name="FancyZones_FlashZonesOnQuickSwitch.Content" xml:space="preserve"> <value>Flash zones when switching layout</value> </data> <data name="FancyZones_Layouts.Header" xml:space="preserve"> <value>Layouts</value> </data> <data name="FancyZones_QuickLayoutSwitch.Header" xml:space="preserve"> <value>Enable quick layout switch</value> </data> <data name="FancyZones_QuickLayoutSwitch.Description" xml:space="preserve"> <value>Layout-specific shortcuts can be configured in the editor</value> </data> <data name="FancyZones_QuickLayoutSwitch_GroupSettings.Text" xml:space="preserve"> <value>Quick layout switch</value> </data> <data name="Activation_Shortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="Activation_Shortcut.Description" xml:space="preserve"> <value>Customize the shortcut to activate this module</value> </data> <data name="Oobe_GetStarted.Text" xml:space="preserve"> <value>Let's get started!</value> </data> <data name="Oobe_PowerToysDescription.Text" xml:space="preserve"> <value>Welcome to PowerToys! These overviews will help you quickly learn the basics of all our utilities.</value> </data> <data name="Oobe_GettingStarted.Text" xml:space="preserve"> <value>Getting started</value> </data> <data name="Oobe_Launch.Text" xml:space="preserve"> <value>Launch</value> </data> <data name="Launch_ColorPicker.Content" xml:space="preserve"> <value>Launch Color Picker</value> </data> <data name="Oobe_LearnMore.Text" xml:space="preserve"> <value>Learn more about</value> </data> <data name="Oobe_ColorPicker.Description" xml:space="preserve"> <value>Color Picker is a system-wide color selection tool for Windows that enables you to pick colors from any currently running application and automatically copies it in a configurable format to your clipboard.</value> </data> <data name="Oobe_FancyZones.Description" xml:space="preserve"> <value>FancyZones is a window manager that makes it easy to create complex window layouts and quickly position windows into those layouts.</value> </data> <data name="Oobe_FileLocksmith.Description" xml:space="preserve"> <value>File Locksmith lists which processes are using the selected files or directories and allows closing those processes.</value> </data> <data name="Oobe_FileExplorer.Description" xml:space="preserve"> <value>PowerToys introduces add-ons to the Windows File Explorer that will enable files like Markdown (.md), PDF (.pdf), SVG (.svg), STL (.stl), G-code (.gcode) and developer files to be viewed in the preview pane. It introduces File Explorer thumbnail support for a number of these file types as well.</value> </data> <data name="Oobe_ImageResizer.Description" xml:space="preserve"> <value>Image Resizer is a Windows shell extension for simple bulk image-resizing.</value> </data> <data name="Oobe_KBM.Description" xml:space="preserve"> <value>Keyboard Manager allows you to customize the keyboard to be more productive by remapping keys and creating your own keyboard shortcuts.</value> </data> <data name="Oobe_MouseWithoutBorders.Description" xml:space="preserve"> <value>Mouse Without Borders enables using the mouse pointer, keyboard, clipboard and drag and drop between machines in the same local network.</value> </data> <data name="Oobe_PowerRename.Description" xml:space="preserve"> <value>PowerRename enables you to perform simple bulk renaming, searching and replacing file names.</value> </data> <data name="Oobe_Run.Description" xml:space="preserve"> <value>PowerToys Run is a quick launcher for power users that contains some additional features without sacrificing performance.</value> </data> <data name="Oobe_MeasureTool.Description" xml:space="preserve"> <value>Screen Ruler is a quick and easy way to measure pixels on your screen.</value> </data> <data name="Oobe_ShortcutGuide.Description" xml:space="preserve"> <value>Shortcut Guide presents the user with a listing of available shortcuts for the current state of the desktop.</value> </data> <data name="Oobe_VideoConference.Description" xml:space="preserve"> <value>Video Conference Mute allows users to quickly mute the microphone and turn off the camera while on a conference call with a single keystroke, regardless of what application has focus on your computer.</value> </data> <data name="Oobe_MouseUtils.Description" xml:space="preserve"> <value>A collection of utilities to enhance your mouse.</value> <comment>Mouse as in the hardware peripheral</comment> </data> <data name="Oobe_Overview.Description" xml:space="preserve"> <value>Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. Take a moment to preview the various utilities listed or view our comprehensive documentation.</value> </data> <data name="Oobe_Overview_DescriptionLinkText.Text" xml:space="preserve"> <value>Documentation on Microsoft Docs</value> </data> <data name="ReleaseNotes.Content" xml:space="preserve"> <value>Release notes</value> </data> <data name="Oobe_ColorPicker_HowToUse.Text" xml:space="preserve"> <value>to open Color Picker.</value> </data> <data name="Oobe_ColorPicker_TipsAndTricks.Text" xml:space="preserve"> <value>To select a color with more precision, **scroll the mouse wheel** to zoom in.</value> </data> <data name="Oobe_FancyZones_HowToUse.Text" xml:space="preserve"> <value>**Shift** + **drag the window** to snap a window to a zone, and release the window in the desired zone.</value> </data> <data name="Oobe_FancyZones_HowToUse_Shortcut.Text" xml:space="preserve"> <value>to open the FancyZones editor.</value> </data> <data name="Oobe_FancyZones_TipsAndTricks.Text" xml:space="preserve"> <value>Snap a window to multiple zones by holding the **Ctrl** key (while also holding **Shift**) when dragging a window.</value> </data> <data name="Oobe_FileLocksmith_HowToUse.Text" xml:space="preserve"> <value>In File Explorer, right-click one or more selected files and select **What's using this file?** from the context menu.</value> </data> <data name="Oobe_FileLocksmith_TipsAndTricks.Text" xml:space="preserve"> <value>Press the **Restart Elevated** button from the File Locksmith UI to also get information on elevated processes that might be using the files.</value> </data> <data name="Oobe_FileExplorer_HowToEnable.Text" xml:space="preserve"> <value>Select **View** which is located at the top of File Explorer, followed by **Show**, and then **Preview pane**. From there, simply click on one of the supported files in the File Explorer and observe the content on the preview pane!</value> </data> <data name="Oobe_HowToCreateMappings.Text" xml:space="preserve"> <value>How to create mappings</value> </data> <data name="Oobe_HowToEnable.Text" xml:space="preserve"> <value>How to enable</value> </data> <data name="Oobe_HowToLaunch.Text" xml:space="preserve"> <value>How to launch</value> </data> <data name="Oobe_HowToUse.Text" xml:space="preserve"> <value>How to use</value> </data> <data name="Oobe_ImageResizer_HowToLaunch.Text" xml:space="preserve"> <value>In File Explorer, right-click one or more image files and select **Resize pictures** from the context menu.</value> </data> <data name="Oobe_ImageResizer_TipsAndTricks.Text" xml:space="preserve"> <value>Want a custom size? You can add them in the PowerToys Settings!</value> </data> <data name="Oobe_KBM_HowToCreateMappings.Text" xml:space="preserve"> <value>Launch **PowerToys Settings**, navigate to the Keyboard Manager menu, and select either **Remap a key** or **Remap a shortcut**.</value> </data> <data name="Oobe_KBM_TipsAndTricks.Text" xml:space="preserve"> <value>Want to only have a shortcut work for a single application? Use the Target App field when creating the shortcut remapping.</value> </data> <data name="Oobe_MouseWithoutBorders_HowToUse.Text" xml:space="preserve"> <value>Use the Settings screen on each machine to connect to the other machines using the same key. If a connection is not working, it may be necessary to add an exception to the Windows Firewall.</value> </data> <data name="Oobe_MouseWithoutBorders_TipsAndTricks.Text" xml:space="preserve"> <value>Use the service option in Settings to install a service enabling Mouse Without Borders to function even in the lock screen.</value> </data> <data name="Oobe_PowerRename_HowToUse.Text" xml:space="preserve"> <value>In File Explorer, right-click one or more selected files and select **PowerRename** from the context menu.</value> </data> <data name="Oobe_PowerRename_TipsAndTricks.Text" xml:space="preserve"> <value>PowerRename supports searching for files using regular expressions to enable more advanced renaming functionalities.</value> </data> <data name="Oobe_Run_HowToLaunch.Text" xml:space="preserve"> <value>to open Run and just start typing.</value> </data> <data name="Oobe_Run_TipsAndTricks.Text" xml:space="preserve"> <value>PowerToys Run supports various action keys to funnel search queries for a specific subset of results. Typing `&lt;` searches for running processes only, `?` will search only for file, or `.` for installed applications! See PowerToys documentation for the complete set of 'Action Keys' available.</value> </data> <data name="Oobe_ShortcutGuide_HowToLaunch.Text" xml:space="preserve"> <value>to open Shortcut Guide, press it again to close or press **Esc**.</value> </data> <data name="Oobe_TipsAndTricks.Text" xml:space="preserve"> <value>Tips &amp; tricks</value> </data> <data name="Oobe_VideoConference_ToggleMicVid.Text" xml:space="preserve"> <value>to toggle both your microphone and video</value> </data> <data name="Oobe_VideoConference_ToggleMic.Text" xml:space="preserve"> <value>to toggle your microphone</value> </data> <data name="Oobe_VideoConference_PushToTalkMic.Text" xml:space="preserve"> <value>to toggle your microphone until key release</value> </data> <data name="Oobe_VideoConference_ToggleVid.Text" xml:space="preserve"> <value>to toggle your video</value> </data> <data name="Oobe_MeasureTool_Activation.Text" xml:space="preserve"> <value>to bring up the Screen Ruler command bar.</value> </data> <data name="Oobe_MeasureTool_HowToLaunch.Text" xml:space="preserve"> <value>The Bounds mode lets you select a specific area to measure. You can also shift-drag an area to persist in on screen. The various Spacing modes allows tracing similar pixels along horizontal and vertical axes with a customizable pixel tolerance threshold (use settings or mouse wheel to adjust it).</value> </data> <data name="Oobe_MeasureTool.Title" xml:space="preserve"> <value>Screen Ruler</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_ColorPicker.Title" xml:space="preserve"> <value>Color Picker</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_FancyZones.Title" xml:space="preserve"> <value>FancyZones</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_FileLocksmith.Title" xml:space="preserve"> <value>File Locksmith</value> </data> <data name="Oobe_ImageResizer.Title" xml:space="preserve"> <value>Image Resizer</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_KBM.Title" xml:space="preserve"> <value>Keyboard Manager</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_MouseWithoutBorders.Title" xml:space="preserve"> <value>Mouse Without Borders</value> <comment>Product name. Do not localize this string</comment> </data> <data name="Oobe_PowerRename.Title" xml:space="preserve"> <value>PowerRename</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_Run.Title" xml:space="preserve"> <value>PowerToys Run</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_ShortcutGuide.Title" xml:space="preserve"> <value>Shortcut Guide</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_VideoConference.Title" xml:space="preserve"> <value>Video Conference Mute</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_Overview.Title" xml:space="preserve"> <value>Welcome</value> </data> <data name="Oobe_WhatsNew.Text" xml:space="preserve"> <value>What's new</value> </data> <data name="Oobe_WhatsNew_LoadingError.Title" xml:space="preserve"> <value>Couldn't load the release notes.</value> </data> <data name="Oobe_WhatsNew_LoadingError.Message" xml:space="preserve"> <value>Please check your internet connection.</value> </data> <data name="Oobe_WhatsNew_ProxyAuthenticationWarning.Title" xml:space="preserve"> <value>Couldn't load the release notes.</value> </data> <data name="Oobe_WhatsNew_ProxyAuthenticationWarning.Message" xml:space="preserve"> <value>Your proxy server requires authentication.</value> </data> <data name="Oobe_WhatsNew_DetailedReleaseNotesLink.Text" xml:space="preserve"> <value>See more detailed release notes on GitHub</value> <comment>Don't loc "GitHub", it's the name of a product</comment> </data> <data name="OOBE_Settings.Content" xml:space="preserve"> <value>Open Settings</value> </data> <data name="Oobe_NavViewItem.Content" xml:space="preserve"> <value>Welcome to PowerToys</value> <comment>Don't loc "PowerToys"</comment> </data> <data name="Feedback_NavViewItem.Content" xml:space="preserve"> <value>Give feedback</value> </data> <data name="OobeWindow_Title" xml:space="preserve"> <value>Welcome to PowerToys</value> </data> <data name="OobeWindow_TitleTxt.Text" xml:space="preserve"> <value>Welcome to PowerToys</value> </data> <data name="SettingsWindow_Title" xml:space="preserve"> <value>PowerToys Settings</value> <comment>Title of the settings window when running as user</comment> </data> <data name="Awake.ModuleTitle" xml:space="preserve"> <value>Awake</value> </data> <data name="Awake.ModuleDescription" xml:space="preserve"> <value>A convenient way to keep your PC awake on-demand.</value> </data> <data name="Awake_EnableSettingsCard.Header" xml:space="preserve"> <value>Enable Awake</value> <comment>Awake is a product name, do not loc</comment> </data> <data name="Awake_NoKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep using the selected power plan</value> </data> <data name="Awake_IndefiniteKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep awake indefinitely</value> </data> <data name="Awake_TemporaryKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep awake for a time interval</value> </data> <data name="Awake_ExpirableKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep awake until expiration</value> </data> <data name="Awake_DisplaySettingsCard.Header" xml:space="preserve"> <value>Keep screen on</value> </data> <data name="Awake_DisplaySettingsCard.Description" xml:space="preserve"> <value>This setting is only available when keeping the PC awake</value> </data> <data name="Awake_ExpirationSettingsExpander.Description" xml:space="preserve"> <value>Keep custom awake state until a specific date and time</value> </data> <data name="Awake_ModeSettingsCard.Header" xml:space="preserve"> <value>Mode</value> </data> <data name="Awake_BehaviorSettingsGroup.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="Awake_IntervalHoursInput.Header" xml:space="preserve"> <value>Hours</value> </data> <data name="Awake_IntervalMinutesInput.Header" xml:space="preserve"> <value>Minutes</value> </data> <data name="Awake_ExpirationSettingsExpander_Date.Header" xml:space="preserve"> <value>End date</value> </data> <data name="Awake_ExpirationSettingsExpander_Time.Header" xml:space="preserve"> <value>End time</value> </data> <data name="Oobe_Awake.Title" xml:space="preserve"> <value>Awake</value> <comment>Module name, do not loc</comment> </data> <data name="Oobe_Awake.Description" xml:space="preserve"> <value>Awake is a Windows tool designed to keep your PC awake on-demand without having to manage its power settings. This behavior can be helpful when running time-consuming tasks while ensuring that your PC does not go to sleep or turn off its screens.</value> </data> <data name="Oobe_Awake_HowToUse.Text" xml:space="preserve"> <value>Open **PowerToys Settings** and enable Awake</value> </data> <data name="Oobe_Awake_TipsAndTricks.Text" xml:space="preserve"> <value>You can always change modes quickly by **right-clicking the Awake icon** in the system tray.</value> </data> <data name="General_FailedToDownloadTheNewVersion.Title" xml:space="preserve"> <value>An error occurred trying to install this update:</value> </data> <data name="General_InstallNow.Content" xml:space="preserve"> <value>Install now</value> </data> <data name="General_ReadMore.Text" xml:space="preserve"> <value>Read more</value> </data> <data name="General_NewVersionAvailable.Title" xml:space="preserve"> <value>An update is available:</value> </data> <data name="General_Downloading.Text" xml:space="preserve"> <value>Downloading...</value> </data> <data name="General_TryAgainToDownloadAndInstall.Content" xml:space="preserve"> <value>Try again to download and install</value> </data> <data name="General_CheckingForUpdates.Text" xml:space="preserve"> <value>Checking for updates...</value> </data> <data name="General_NewVersionReadyToInstall.Title" xml:space="preserve"> <value>An update is ready to install:</value> </data> <data name="General_UpToDate.Title" xml:space="preserve"> <value>PowerToys is up to date</value> </data> <data name="General_CantCheck.Title" xml:space="preserve"> <value>Network error. Please try again later</value> </data> <data name="General_DownloadAndInstall.Content" xml:space="preserve"> <value>Download &amp; install</value> </data> <data name="ImageResizer_Fit_Fill_ThirdPersonSingular" xml:space="preserve"> <value>Fills</value> </data> <data name="ImageResizer_Fit_Fit_ThirdPersonSingular" xml:space="preserve"> <value>Fits within</value> </data> <data name="ImageResizer_Fit_Stretch_ThirdPersonSingular" xml:space="preserve"> <value>Stretches to</value> </data> <data name="ImageResizer_Unit_Centimeter" xml:space="preserve"> <value>Centimeters</value> </data> <data name="ImageResizer_Unit_Inch" xml:space="preserve"> <value>Inches</value> </data> <data name="ImageResizer_Unit_Percent" xml:space="preserve"> <value>Percent</value> </data> <data name="ImageResizer_Unit_Pixel" xml:space="preserve"> <value>Pixels</value> </data> <data name="EditButton.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Edit</value> </data> <data name="ImageResizer_EditSize.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Edit size</value> </data> <data name="No" xml:space="preserve"> <value>No</value> <comment>Label of a cancel button</comment> </data> <data name="Delete_Dialog_Description" xml:space="preserve"> <value>Are you sure you want to delete this item?</value> </data> <data name="Yes" xml:space="preserve"> <value>Yes</value> <comment>Label of a confirmation button</comment> </data> <data name="SeeWhatsNew.Content" xml:space="preserve"> <value>See what's new</value> </data> <data name="Awake_ModeSettingsCard.Description" xml:space="preserve"> <value>Manage the state of your device when Awake is active</value> </data> <data name="ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="Enable_ColorFormat.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Enable colorformat</value> </data> <data name="More_Options_Button.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>More options</value> </data> <data name="More_Options_ButtonTooltip.Text" xml:space="preserve"> <value>More options</value> </data> <data name="To.Text" xml:space="preserve"> <value>to</value> <comment>as in: from x to y</comment> </data> <data name="LearnMore_Awake.Text" xml:space="preserve"> <value>Learn more about Awake</value> <comment>Awake is a product name, do not loc</comment> </data> <data name="LearnMore_ColorPicker.Text" xml:space="preserve"> <value>Learn more about Color Picker</value> <comment>Color Picker is a product name, do not loc</comment> </data> <data name="LearnMore_FancyZones.Text" xml:space="preserve"> <value>Learn more about FancyZones</value> <comment>FancyZones is a product name, do not loc</comment> </data> <data name="LearnMore_FileLocksmith.Text" xml:space="preserve"> <value>Learn more about File Locksmith</value> </data> <data name="LearnMore_ImageResizer.Text" xml:space="preserve"> <value>Learn more about Image Resizer</value> <comment>Image Resizer is a product name, do not loc</comment> </data> <data name="LearnMore_KBM.Text" xml:space="preserve"> <value>Learn more about Keyboard Manager</value> <comment>Keyboard Manager is a product name, do not loc</comment> </data> <data name="LearnMore_MouseUtils.Text" xml:space="preserve"> <value>Learn more about Mouse utilities</value> <comment>Mouse utilities is a product name, do not loc</comment> </data> <data name="LearnMore_PastePlain.Text" xml:space="preserve"> <value>Learn more about Paste as Plain Text</value> <comment> Paste as Plain Text is the name of the module. </comment> </data> <data name="LearnMore_MouseWithoutBorders.Text" xml:space="preserve"> <value>Learn more about Mouse Without Borders</value> <comment>Mouse Without Borders is the name of the module. </comment> </data> <data name="LearnMore_PowerPreview.Text" xml:space="preserve"> <value>Learn more about File Explorer add-ons</value> <comment>File Explorer is a product name, localize as Windows does</comment> </data> <data name="LearnMore_Peek.Text" xml:space="preserve"> <value>Learn more about Peek</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="LearnMore_PowerRename.Text" xml:space="preserve"> <value>Learn more about PowerRename</value> <comment>PowerRename is a product name, do not loc</comment> </data> <data name="LearnMore_Run.Text" xml:space="preserve"> <value>Learn more about PowerToys Run</value> <comment>PowerToys Run is a product name, do not loc</comment> </data> <data name="LearnMore_MeasureTool.Text" xml:space="preserve"> <value>Learn more about Screen Ruler</value> <comment>Screen Ruler is a product name, do not loc</comment> </data> <data name="LearnMore_ShortcutGuide.Text" xml:space="preserve"> <value>Learn more about Shortcut Guide</value> <comment>Shortcut Guide is a product name, do not loc</comment> </data> <data name="LearnMore_VCM.Text" xml:space="preserve"> <value>Learn more about Video Conference Mute</value> <comment>Video Conference Mute is a product name, do not loc</comment> </data> <data name="Oobe_FileExplorer.Title" xml:space="preserve"> <value>File Explorer add-ons</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_MouseUtils.Title" xml:space="preserve"> <value>Mouse utilities</value> <comment>Mouse as in the hardware peripheral</comment> </data> <data name="Oobe_MouseUtils_FindMyMouse.Text" xml:space="preserve"> <value>Find My Mouse</value> <comment>Mouse as in the hardware peripheral</comment> </data> <data name="Oobe_MouseUtils_FindMyMouse_Description.Text" xml:space="preserve"> <value>Focus the mouse pointer pressing the Ctrl key twice, using a custom shortcut or shaking the mouse.</value> <comment>Mouse as in the hardware peripheral. Key as in a keyboard key</comment> </data> <data name="Oobe_MouseUtils_MouseHighlighter.Text" xml:space="preserve"> <value>Mouse Highlighter</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MouseHighlighter_Description.Text" xml:space="preserve"> <value>Use a keyboard shortcut to highlight left and right mouse clicks.</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MousePointerCrosshairs.Text" xml:space="preserve"> <value>Mouse Pointer Crosshairs</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MousePointerCrosshairs_Description.Text" xml:space="preserve"> <value>Draw crosshairs centered around the mouse pointer.</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MouseJump.Text" xml:space="preserve"> <value>Mouse Jump</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MouseJump_Description.Text" xml:space="preserve"> <value>Jump the mouse pointer quickly to anywhere on your desktop.</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Launch_Run.Content" xml:space="preserve"> <value>Launch PowerToys Run</value> </data> <data name="Launch_ShortcutGuide.Content" xml:space="preserve"> <value>Launch Shortcut Guide</value> </data> <data name="ColorPicker_ColorFormat_ToggleSwitch.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Show format in editor</value> </data> <data name="GeneralPage_Documentation.Text" xml:space="preserve"> <value>Documentation</value> </data> <data name="PowerLauncher_SearchList.PlaceholderText" xml:space="preserve"> <value>Search this list</value> </data> <data name="PowerLauncher_SearchList.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Search this list</value> </data> <data name="Awake.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="ColorPicker.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="General.SecondaryLinksHeader" xml:space="preserve"> <value>Related information</value> </data> <data name="ImageResizer.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="MouseUtils.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="PowerLauncher.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="PowerRename.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="EditTooltip.Text" xml:space="preserve"> <value>Edit</value> </data> <data name="RemoveTooltip.Text" xml:space="preserve"> <value>Remove</value> </data> <data name="Activation_Shortcut_Cancel" xml:space="preserve"> <value>Cancel</value> </data> <data name="Activation_Shortcut_Description" xml:space="preserve"> <value>Press a combination of keys to change this shortcut</value> </data> <data name="Activation_Shortcut_With_Disable_Description" xml:space="preserve"> <value>Press a combination of keys to change this shortcut. Right-click to remove the key combination, thereby deactivating the shortcut.</value> </data> <data name="Activation_Shortcut_Reset" xml:space="preserve"> <value>Reset</value> </data> <data name="Activation_Shortcut_Save" xml:space="preserve"> <value>Save</value> </data> <data name="Activation_Shortcut_Title" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="InvalidShortcut.Title" xml:space="preserve"> <value>Invalid shortcut</value> </data> <data name="InvalidShortcutWarningLabel.Text" xml:space="preserve"> <value>Only shortcuts that start with **Windows key**, **Ctrl**, **Alt** or **Shift** are valid.</value> <comment>The ** sequences are used for text formatting of the key names. Don't remove them on translation.</comment> </data> <data name="FancyZones_SpanZonesAcrossMonitors.Description" xml:space="preserve"> <value>All monitors must have the same DPI scaling and will be treated as one large combined rectangle which contains all monitors</value> </data> <data name="ImageResizer_DefaultSize_NewSizePrefix" xml:space="preserve"> <value>New size</value> <comment>First part of the default name of new sizes that can be added in PT's settings ui.</comment> </data> <data name="Awake_IntervalSettingsCard.Header" xml:space="preserve"> <value>Interval before returning to the previous awakeness state</value> </data> <data name="Awake_ExpirationSettingsExpander.Header" xml:space="preserve"> <value>End date and time</value> </data> <data name="MouseUtils.ModuleTitle" xml:space="preserve"> <value>Mouse utilities</value> </data> <data name="MouseUtils.ModuleDescription" xml:space="preserve"> <value>A collection of mouse utilities.</value> </data> <data name="MouseUtils_FindMyMouse.Header" xml:space="preserve"> <value>Find My Mouse</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_FindMyMouse.Description" xml:space="preserve"> <value>Find My Mouse highlights the position of the cursor when pressing the Ctrl key twice, using a custom shortcut or when shaking the mouse.</value> <comment>"Ctrl" is a keyboard key. "Find My Mouse" is the name of the utility</comment> </data> <data name="MouseUtils_Enable_FindMyMouse.Header" xml:space="preserve"> <value>Enable Find My Mouse</value> <comment>"Find My Mouse" is the name of the utility.</comment> </data> <data name="MouseUtils_FindMyMouse_ActivationMethod.Header" xml:space="preserve"> <value>Activation method</value> </data> <data name="MouseUtils_FindMyMouse_ActivationDoubleControlPress.Content" xml:space="preserve"> <value>Press Left Control twice</value> <comment>Left control is the physical key on the keyboard.</comment> </data> <data name="MouseUtils_FindMyMouse_ActivationShakeMouse.Content" xml:space="preserve"> <value>Shake mouse</value> <comment>Mouse is the hardware peripheral.</comment> </data> <data name="MouseUtils_FindMyMouse_ExcludedApps.Description" xml:space="preserve"> <value>Prevents module activation when an excluded application is the foreground application</value> </data> <data name="MouseUtils_FindMyMouse_ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="MouseUtils_FindMyMouse_ExcludedApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> </data> <data name="MouseUtils_Prevent_Activation_On_Game_Mode.Content" xml:space="preserve"> <value>Do not activate when Game Mode is on</value> <comment>"Game mode" is the Windows feature to prevent notification when playing a game.</comment> </data> <data name="MouseUtils_FindMyMouse_BackgroundColor.Header" xml:space="preserve"> <value>Background color</value> </data> <data name="MouseUtils_FindMyMouse_SpotlightColor.Header" xml:space="preserve"> <value>Spotlight color</value> </data> <data name="MouseUtils_FindMyMouse_OverlayOpacity.Header" xml:space="preserve"> <value>Overlay opacity (%)</value> </data> <data name="MouseUtils_FindMyMouse_SpotlightRadius.Header" xml:space="preserve"> <value>Spotlight radius (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_FindMyMouse_SpotlightInitialZoom.Header" xml:space="preserve"> <value>Spotlight initial zoom</value> </data> <data name="MouseUtils_FindMyMouse_SpotlightInitialZoom.Description" xml:space="preserve"> <value>Spotlight zoom factor at animation start</value> </data> <data name="MouseUtils_FindMyMouse_AnimationDurationMs.Header" xml:space="preserve"> <value>Animation duration (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_FindMyMouse_AnimationDurationMs.Description" xml:space="preserve"> <value>Time before the spotlight appears (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_FindMyMouse_AnimationDurationMs_Disabled.Message" xml:space="preserve"> <value>Animations are disabled by OS. See Settings &gt; Accessibility &gt; Visual effects</value> </data> <data name="MouseUtils_FindMyMouse_ShakingMinimumDistance.Header" xml:space="preserve"> <value>Shake minimum distance</value> </data> <data name="MouseUtils_FindMyMouse_ShakingMinimumDistance.Description" xml:space="preserve"> <value>The minimum distance for mouse shaking activation, for adjusting sensitivity</value> </data> <data name="MouseUtils_MouseHighlighter.Header" xml:space="preserve"> <value>Mouse Highlighter</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_MouseHighlighter.Description" xml:space="preserve"> <value>Mouse Highlighter mode will highlight mouse clicks.</value> <comment>"Mouse Highlighter" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_Enable_MouseHighlighter.Header" xml:space="preserve"> <value>Enable Mouse Highlighter</value> <comment>"Find My Mouse" is the name of the utility.</comment> </data> <data name="MouseUtils_MouseHighlighter_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MouseUtils_MouseHighlighter_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to turn on or off this mode</value> <comment>"Mouse Highlighter" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_MouseHighlighter_PrimaryButtonClickColor.Header" xml:space="preserve"> <value>Primary button highlight color</value> </data> <data name="MouseUtils_MouseHighlighter_SecondaryButtonClickColor.Header" xml:space="preserve"> <value>Secondary button highlight color</value> </data> <data name="MouseUtils_MouseHighlighter_HighlightRadius.Header" xml:space="preserve"> <value>Radius (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDelayMs.Header" xml:space="preserve"> <value>Fade delay (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDelayMs.Description" xml:space="preserve"> <value>Time before the highlight begins to fade (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDurationMs.Header" xml:space="preserve"> <value>Fade duration (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDurationMs.Description" xml:space="preserve"> <value>Duration of the disappear animation (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MousePointerCrosshairs.Header" xml:space="preserve"> <value>Mouse Pointer Crosshairs</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_MousePointerCrosshairs.Description" xml:space="preserve"> <value>Mouse Pointer Crosshairs draws crosshairs centered on the mouse pointer.</value> <comment>"Mouse Pointer Crosshairs" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_Enable_MousePointerCrosshairs.Header" xml:space="preserve"> <value>Enable Mouse Pointer Crosshairs</value> <comment>"Mouse Pointer Crosshairs" is the name of the utility.</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MouseUtils_MousePointerCrosshairs_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to show/hide the crosshairs</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsColor.Header" xml:space="preserve"> <value>Crosshairs color</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsOpacity.Header" xml:space="preserve"> <value>Crosshairs opacity (%)</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsRadius.Header" xml:space="preserve"> <value>Crosshairs center radius (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsThickness.Header" xml:space="preserve"> <value>Crosshairs thickness (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsBorderColor.Header" xml:space="preserve"> <value>Crosshairs border color</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsBorderSize.Header" xml:space="preserve"> <value>Crosshairs border size (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_IsCrosshairsFixedLengthEnabled.Header" xml:space="preserve"> <value>Fix crosshairs length</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsFixedLength.Header" xml:space="preserve"> <value>Crosshairs fixed length (px)</value> <comment>px = pixels</comment> </data> <data name="FancyZones_Radio_Custom_Colors.Content" xml:space="preserve"> <value>Custom colors</value> </data> <data name="FancyZones_Radio_Default_Theme.Content" xml:space="preserve"> <value>Windows default</value> </data> <data name="ColorModeHeader.Header" xml:space="preserve"> <value>App theme</value> </data> <data name="FancyZones_Zone_Appearance.Description" xml:space="preserve"> <value>Customize the way zones look</value> </data> <data name="FancyZones_Zone_Appearance.Header" xml:space="preserve"> <value>Zone appearance</value> </data> <data name="VideoConference_DeprecationWarning.Title" xml:space="preserve"> <value>VCM is moving into legacy mode (maintenance only).</value> </data> <data name="VideoConference_DeprecationWarningButton.Content" xml:space="preserve"> <value>Learn more</value> </data> <data name="LearnMore.Content" xml:space="preserve"> <value>Learn more</value> </data> <data name="VideoConference_RunAsAdminRequired.Title" xml:space="preserve"> <value>You need to run as administrator to modify these settings.</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_GCODE.Header" xml:space="preserve"> <value>Geometric Code</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_GCODE.Description" xml:space="preserve"> <value>Only .gcode files with embedded thumbnails are supported</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_GCODE.Header" xml:space="preserve"> <value>Geometric Code</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_GCODE.Description" xml:space="preserve"> <value>Only .gcode files with embedded thumbnails are supported</value> </data> <data name="FancyZones_NumberColor.Header" xml:space="preserve"> <value>Number color</value> </data> <data name="FancyZones_ShowZoneNumberCheckBoxControl.Content" xml:space="preserve"> <value>Show zone number</value> </data> <data name="ToggleSwitch.OffContent" xml:space="preserve"> <value>Off</value> <comment>The state of a ToggleSwitch when it's off</comment> </data> <data name="ToggleSwitch.OnContent" xml:space="preserve"> <value>On</value> <comment>The state of a ToggleSwitch when it's on</comment> </data> <data name="CropAndLock.ModuleDescription" xml:space="preserve"> <value>Crop And Lock allows you to crop a current application into a smaller window or just create a thumbnail. Focus the target window and press the shortcut to start cropping.</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="CropAndLock.ModuleTitle" xml:space="preserve"> <value>Crop And Lock </value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="CropAndLock_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="CropAndLock_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="Shell_CropAndLock.Content" xml:space="preserve"> <value>Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="LearnMore_CropAndLock.Text" xml:space="preserve"> <value>Learn more about Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="CropAndLock_ReparentActivation_Shortcut.Header" xml:space="preserve"> <value>Reparent shortcut</value> </data> <data name="CropAndLock_ReparentActivation_Shortcut.Description" xml:space="preserve"> <value>Shortcut to crop an application's window into a cropped window. This is experimental and can cause issues with some applications, since the cropped window will contain the original application window.</value> </data> <data name="CropAndLock_ThumbnailActivation_Shortcut.Header" xml:space="preserve"> <value>Thumbnail shortcut</value> </data> <data name="CropAndLock_ThumbnailActivation_Shortcut.Description" xml:space="preserve"> <value>Shortcut to crop and create a thumbnail of another window. The application isn't controllable through the thumbnail but it'll have less compatibility issues. </value> </data> <data name="CropAndLock.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="Oobe_CropAndLock.Title" xml:space="preserve"> <value>Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="Oobe_CropAndLock.Description" xml:space="preserve"> <value>Crop And Lock allows you to crop a current application into a smaller window or just create a thumbnail. Focus the target window and press the shortcut to start cropping.</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="Oobe_CropAndLock_HowToUse_Thumbnail.Text" xml:space="preserve"> <value>to crop and create a thumbnail of another window. The application isn't controllable through the thumbnail but it'll have less compatibility issues.</value> </data> <data name="Oobe_CropAndLock_HowToUse_Reparent.Text" xml:space="preserve"> <value>to crop an application's window into a cropped window. This is experimental and can cause issues with some applications, since the cropped window will contain the original application window.</value> </data> <data name="AlwaysOnTop.ModuleDescription" xml:space="preserve"> <value>Always On Top is a quick and easy way to pin windows on top.</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop.ModuleTitle" xml:space="preserve"> <value>Always On Top </value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="Peek_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="AlwaysOnTop_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_ExcludedApps.Description" xml:space="preserve"> <value>Excludes an application from pinning on top</value> </data> <data name="AlwaysOnTop_ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="AlwaysOnTop_ExcludedApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> </data> <data name="AlwaysOnTop_FrameColor.Header" xml:space="preserve"> <value>Color</value> </data> <data name="AlwaysOnTop_FrameEnabled.Header" xml:space="preserve"> <value>Show a border around the pinned window</value> </data> <data name="AlwaysOnTop_FrameThickness.Header" xml:space="preserve"> <value>Thickness (px)</value> <comment>px = pixels</comment> </data> <data name="AlwaysOnTop_Behavior_GroupSettings.Header" xml:space="preserve"> <value>Appearance &amp; behavior</value> </data> <data name="Shell_AlwaysOnTop.Content" xml:space="preserve"> <value>Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_GameMode.Content" xml:space="preserve"> <value>Do not activate when Game Mode is on</value> <comment>Game Mode is a Windows feature</comment> </data> <data name="AlwaysOnTop_SoundTitle.Header" xml:space="preserve"> <value>Sound</value> </data> <data name="AlwaysOnTop_Sound.Content" xml:space="preserve"> <value>Play a sound when pinning a window</value> </data> <data name="AlwaysOnTop_Behavior.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="LearnMore_AlwaysOnTop.Text" xml:space="preserve"> <value>Learn more about Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="AlwaysOnTop_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to pin or unpin an app window</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="Oobe_AlwaysOnTop.Title" xml:space="preserve"> <value>Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="Oobe_AlwaysOnTop.Description" xml:space="preserve"> <value>Always On Top improves your multitasking workflow by pinning an application window so it's always in front - even when focus changes to another window after that.</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="Oobe_AlwaysOnTop_HowToUse.Text" xml:space="preserve"> <value>to pin or unpin the selected window so it's always on top of all other windows.</value> </data> <data name="Oobe_AlwaysOnTop_TipsAndTricks.Text" xml:space="preserve"> <value>You can tweak the visual outline of the pinned windows in PowerToys settings.</value> </data> <data name="AlwaysOnTop_FrameColor_Mode.Header" xml:space="preserve"> <value>Color mode</value> </data> <data name="AlwaysOnTop_Radio_Custom_Color.Content" xml:space="preserve"> <value>Custom color</value> </data> <data name="AlwaysOnTop_Radio_Windows_Default.Content" xml:space="preserve"> <value>Windows default</value> </data> <data name="FileExplorerPreview.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Monaco_Wrap_Text.Content" xml:space="preserve"> <value>Wrap text</value> <comment>Feature on or off</comment> </data> <data name="FancyZones_AllowPopupWindowSnap.Description" xml:space="preserve"> <value>This setting can affect all popup windows including notifications</value> </data> <data name="FancyZones_AllowPopupWindowSnap.Header" xml:space="preserve"> <value>Allow popup windows snapping</value> </data> <data name="FancyZones_AllowChildWindowSnap.Content" xml:space="preserve"> <value>Allow child windows snapping</value> </data> <data name="Shell_WhatsNew.Content" xml:space="preserve"> <value>What's new</value> </data> <data name="Shell_Peek.Content" xml:space="preserve"> <value>Peek</value> <comment>Product name: Navigation view item name for Peek</comment> </data> <data name="Peek.ModuleTitle" xml:space="preserve"> <value>Peek</value> </data> <data name="Peek.ModuleDescription" xml:space="preserve"> <value>Peek is a quick and easy way to preview files. Select a file in File Explorer and press the shortcut to open the file preview.</value> </data> <data name="Peek_EnablePeek.Header" xml:space="preserve"> <value>Enable Peek</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="Peek_BehaviorHeader.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="Peek_AlwaysRunNotElevated.Header" xml:space="preserve"> <value>Always run not elevated, even when PowerToys is elevated</value> </data> <data name="Peek_AlwaysRunNotElevated.Description" xml:space="preserve"> <value>Tries to run Peek without elevated permissions, to fix access to network shares. You need to disable and re-enable Peek for changes to this value to take effect.</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="Peek_CloseAfterLosingFocus.Header" xml:space="preserve"> <value>Automatically close the Peek window after it loses focus</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="FancyZones_DisableRoundCornersOnWindowSnap.Content" xml:space="preserve"> <value>Disable round corners when window is snapped</value> </data> <data name="PowerLauncher_SearchQueryTuningEnabled.Description" xml:space="preserve"> <value>Fine tune results ordering</value> </data> <data name="PowerLauncher_SearchQueryTuningEnabled.Header" xml:space="preserve"> <value>Results order tuning</value> </data> <data name="PowerLauncher_SearchClickedItemWeight.Description" xml:space="preserve"> <value>Use a higher number to get selected results to rise faster. The default is 5, 0 to disable.</value> </data> <data name="PowerLauncher_SearchClickedItemWeight.Header" xml:space="preserve"> <value>Selected item weight</value> </data> <data name="PowerLauncher_WaitForSlowResults.Description" xml:space="preserve"> <value>Selecting this can help preselect the top, more relevant result, but at the risk of jumpiness</value> </data> <data name="PowerLauncher_WaitForSlowResults.Header" xml:space="preserve"> <value>Wait on slower plugin results before selecting top item in results</value> </data> <data name="PowerLauncher_PluginWeightBoost.Description" xml:space="preserve"> <value>Use a higher number to have this plugin's result show higher in the global results. Default is 0.</value> </data> <data name="PowerLauncher_PluginWeightBoost.Header" xml:space="preserve"> <value>Global sort order score modifier</value> </data> <data name="AlwaysOnTop_RoundCorners.Content" xml:space="preserve"> <value>Enable round corners</value> </data> <data name="LearnMore_QuickAccent.Text" xml:space="preserve"> <value>Learn more about Quick Accent</value> <comment>Quick Accent is a product name, do not loc</comment> </data> <data name="QuickAccent_EnableQuickAccent.Header" xml:space="preserve"> <value>Enable Quick Accent</value> </data> <data name="Shell_QuickAccent.Content" xml:space="preserve"> <value>Quick Accent</value> </data> <data name="QuickAccent.ModuleDescription" xml:space="preserve"> <value>Quick Accent is an alternative way to type accented characters, useful for when a keyboard doesn't support that specific accent. Activate by holding the key for the character you want to add an accent to, then press the activation key (space, left or right arrow keys) and an overlay to select accented characters will appear!</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent.ModuleTitle" xml:space="preserve"> <value>Quick Accent</value> </data> <data name="QuickAccent.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> </data> <data name="AlwaysOnTop_ShortDescription" xml:space="preserve"> <value>Pin a window</value> </data> <data name="Awake_ShortDescription" xml:space="preserve"> <value>Keep your PC awake</value> </data> <data name="ColorPicker_ShortDescription" xml:space="preserve"> <value>Pick a color</value> </data> <data name="CropAndLock_Thumbnail" xml:space="preserve"> <value>Thumbnail</value> </data> <data name="CropAndLock_Reparent" xml:space="preserve"> <value>Reparent</value> </data> <data name="FancyZones_OpenEditor" xml:space="preserve"> <value>Open editor</value> </data> <data name="FileLocksmith_ShortDescription" xml:space="preserve"> <value>Right-click on files or directories to show running processes</value> </data> <data name="FindMyMouse_ShortDescription" xml:space="preserve"> <value>Find the mouse</value> </data> <data name="ImageResizer_ShortDescription" xml:space="preserve"> <value>Select Image Resizer in the right-click context menu</value> </data> <data name="MouseHighlighter_ShortDescription" xml:space="preserve"> <value>Highlight clicks</value> </data> <data name="MouseJump_ShortDescription" xml:space="preserve"> <value>Quickly move the mouse pointer</value> </data> <data name="MouseCrosshairs_ShortDescription" xml:space="preserve"> <value>Draw crosshairs centered on the mouse pointer</value> </data> <data name="MouseWithoutBorders_ShortDescription" xml:space="preserve"> <value>Move your cursor across multiple devices</value> </data> <data name="PastePlain_ShortDescription" xml:space="preserve"> <value>Paste clipboard content without formatting</value> </data> <data name="Peek_ShortDescription" xml:space="preserve"> <value>Quick and easy previewer</value> </data> <data name="PowerRename_ShortDescription" xml:space="preserve"> <value>Select Power Rename in right-click context menu</value> </data> <data name="Run_ShortDescription" xml:space="preserve"> <value>A quick launcher</value> </data> <data name="PowerAccent_ShortDescription" xml:space="preserve"> <value>An alternative way to type accented characters</value> </data> <data name="RegistryPreview_ShortDescription" xml:space="preserve"> <value>Visualize and edit Windows Registry files</value> </data> <data name="ScreenRuler_ShortDescription" xml:space="preserve"> <value>Measure pixels on your screen</value> </data> <data name="ShortcutGuide_ShortDescription" xml:space="preserve"> <value>Show a help overlay with Windows shortcuts</value> </data> <data name="PowerOcr_ShortDescription" xml:space="preserve"> <value>A convenient way to copy text from anywhere on screen</value> </data> <data name="Dashboard_Activation" xml:space="preserve"> <value>Activation</value> </data> <data name="DashboardKBMShowMappingsButton.Content" xml:space="preserve"> <value>Show remappings</value> </data> <data name="Oobe_QuickAccent.Description" xml:space="preserve"> <value>Quick Accent is an easy way to write letters with accents, like on a smartphone.</value> </data> <data name="Oobe_QuickAccent.Title" xml:space="preserve"> <value>Quick Accent</value> </data> <data name="Oobe_QuickAccent_HowToUse.Text" xml:space="preserve"> <value>Open **PowerToys Settings** and enable Quick Accent. While holding the key for the character you want to add an accent to, press the Activation Key and an overlay to select the accented character will appear.</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="QuickAccent_Activation_Shortcut.Header" xml:space="preserve"> <value>Activation key</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent_Activation_Shortcut.Description" xml:space="preserve"> <value>Press this key after holding down the target letter</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent_Activation_Key_Arrows.Content" xml:space="preserve"> <value>Left/Right Arrow</value> <comment>Left/Right arrow keyboard keys</comment> </data> <data name="QuickAccent_Activation_Key_Space.Content" xml:space="preserve"> <value>Space</value> <comment>Space is the space keyboard key</comment> </data> <data name="QuickAccent_Activation_Key_Either.Content" xml:space="preserve"> <value>Left, Right or Space</value> <comment>All are keys on a keyboard</comment> </data> <data name="QuickAccent_Toolbar.Header" xml:space="preserve"> <value>Toolbar</value> </data> <data name="QuickAccent_ToolbarPosition.Header" xml:space="preserve"> <value>Toolbar position</value> </data> <data name="QuickAccent_ToolbarPosition_TopCenter.Content" xml:space="preserve"> <value>Top center</value> </data> <data name="QuickAccent_ToolbarPosition_TopLeftCorner.Content" xml:space="preserve"> <value>Top left corner</value> </data> <data name="QuickAccent_ToolbarPosition_TopRightCorner.Content" xml:space="preserve"> <value>Top right corner</value> </data> <data name="QuickAccent_ToolbarPosition_BottomLeftCorner.Content" xml:space="preserve"> <value>Bottom left corner</value> </data> <data name="QuickAccent_ToolbarPosition_BottomCenter.Content" xml:space="preserve"> <value>Bottom center</value> </data> <data name="QuickAccent_ToolbarPosition_BottomRightCorner.Content" xml:space="preserve"> <value>Bottom right corner</value> </data> <data name="QuickAccent_ToolbarPosition_Center.Content" xml:space="preserve"> <value>Center</value> </data> <data name="QuickAccent_ToolbarPosition_Left.Content" xml:space="preserve"> <value>Left</value> </data> <data name="QuickAccent_ToolbarPosition_Right.Content" xml:space="preserve"> <value>Right</value> </data> <data name="QuickAccent_Behavior.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="QuickAccent_InputTimeMs.Header" xml:space="preserve"> <value>Input delay (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="QuickAccent_InputTimeMs.Description" xml:space="preserve"> <value>Hold the key down for this much time to make the accent menu appear (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="QuickAccent_ExcludedApps.Description" xml:space="preserve"> <value>Prevents module activation if a foreground application is excluded. Add one application name per line.</value> </data> <data name="QuickAccent_ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="QuickAccent_ExcludedApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: Teams.exe</value> </data> <data name="LearnMore_TextExtractor.Text" xml:space="preserve"> <value>Learn more about Text Extractor</value> </data> <data name="TextExtractor_Cancel" xml:space="preserve"> <value>cancel</value> </data> <data name="General_SettingsBackupAndRestore_NothingToBackup" xml:space="preserve"> <value>A new backup was not created because no settings have been changed since last backup.</value> </data> <data name="General_SettingsBackupAndRestore_NoBackupFound" xml:space="preserve"> <value>No backup found</value> </data> <data name="General_SettingsBackupAndRestore_FailedToParseTime" xml:space="preserve"> <value>Failed to parse time</value> </data> <data name="General_SettingsBackupAndRestore_UnknownBackupTime" xml:space="preserve"> <value>Unknown</value> </data> <data name="General_SettingsBackupAndRestore_UnknownBackupSource" xml:space="preserve"> <value>Unknown</value> </data> <data name="General_SettingsBackupAndRestore_ThisMachine" xml:space="preserve"> <value>This computer</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsMatch" xml:space="preserve"> <value>Current settings match</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsStatusAt" xml:space="preserve"> <value>at</value> <comment>E.g., Food was served 'at' noon.</comment> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsDiffer" xml:space="preserve"> <value>Current settings differ</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsNoChecked" xml:space="preserve"> <value>Checking...</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsUnknown" xml:space="preserve"> <value>Unknown</value> </data> <data name="General_SettingsBackupAndRestore_NeverRestored" xml:space="preserve"> <value>Never restored</value> </data> <data name="General_SettingsBackupAndRestore_NothingToRestore" xml:space="preserve"> <value>Nothing to restore.</value> </data> <data name="General_SettingsBackupAndRestore_NoSettingsFilesFound" xml:space="preserve"> <value>No settings files found.</value> </data> <data name="General_SettingsBackupAndRestore_BackupError" xml:space="preserve"> <value>There was an error. Try another backup location.</value> </data> <data name="General_SettingsBackupAndRestore_SettingsFormatError" xml:space="preserve"> <value>There was an error in the settings format. Please check the settings file:</value> </data> <data name="General_SettingsBackupAndRestore_BackupComplete" xml:space="preserve"> <value>Backup completed.</value> </data> <data name="General_SettingsBackupAndRestore_NoBackupSyncPath" xml:space="preserve"> <value>No backup location selected.</value> </data> <data name="General_SettingsBackupAndRestore_NoBackupsFound" xml:space="preserve"> <value>No backups found to restore.</value> </data> <data name="General_SettingsBackupAndRestore_InvalidBackupLocation" xml:space="preserve"> <value>Invalid backup location.</value> </data> <data name="TextExtractor.ModuleDescription" xml:space="preserve"> <value>Text Extractor is a convenient way to copy text from anywhere on screen</value> </data> <data name="TextExtractor.ModuleTitle" xml:space="preserve"> <value>Text Extractor</value> </data> <data name="TextExtractor_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Text Extractor</value> </data> <data name="TextExtractor_SupportedLanguages.Title" xml:space="preserve"> <value>Text Extractor can only recognize languages that have the OCR pack installed.</value> </data> <data name="TextExtractor_SupportedLanguages_Link.Content" xml:space="preserve"> <value>Learn more about supported languages</value> </data> <data name="Shell_TextExtractor.Content" xml:space="preserve"> <value>Text Extractor</value> </data> <data name="Launch_TextExtractor.Content" xml:space="preserve"> <value>Launch Text Extractor</value> </data> <data name="Oobe_TextExtractor.Title" xml:space="preserve"> <value>Text Extractor</value> </data> <data name="Oobe_TextExtractor_HowToUse.Text" xml:space="preserve"> <value>to open Text Extractor and then selecting a region to copy the text from.</value> </data> <data name="Oobe_TextExtractor_TipsAndTricks.Text" xml:space="preserve"> <value>Hold the shift key to move the selection region around.</value> </data> <data name="TextExtractor.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> </data> <data name="Oobe_TextExtractor.Description" xml:space="preserve"> <value>Text Extractor works like Snipping Tool, but copies the text out of the selected region using OCR and puts it on the clipboard.</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Monaco_Try_Format.Description" xml:space="preserve"> <value>Applies to json and xml. Files remain unchanged.</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Monaco_Try_Format.Header" xml:space="preserve"> <value>Try to format the source for preview</value> </data> <data name="Run_ConflictingKeywordInfo.Title" xml:space="preserve"> <value>Some characters and phrases may conflict with global queries of other plugins if you use them as activation command.</value> </data> <data name="Run_ConflictingKeywordInfo_Link.Content" xml:space="preserve"> <value>Learn more about conflicting activation commands</value> </data> <data name="MeasureTool_ContinuousCapture_Information.Title" xml:space="preserve"> <value>The continuous capture mode will consume more resources when in use. Also, measurements will be excluded from screenshots and screen capture.</value> <comment>pointer as in mouse pointer. Resources refer to things like CPU, GPU, RAM</comment> </data> <data name="QuickAccent_Description_Indicator.Header" xml:space="preserve"> <value>Show the Unicode code and name of the currently selected character</value> </data> <data name="QuickAccent_SortByUsageFrequency_Indicator.Header" xml:space="preserve"> <value>Sort characters by usage frequency</value> </data> <data name="QuickAccent_SortByUsageFrequency_Indicator.Description" xml:space="preserve"> <value>Track characters usage frequency and sort them accordingly</value> </data> <data name="QuickAccent_StartSelectionFromTheLeft_Indicator.Header" xml:space="preserve"> <value>Start selection from the left</value> </data> <data name="QuickAccent_StartSelectionFromTheLeft_Indicator.Description" xml:space="preserve"> <value>Start selection from the leftmost character for all activation keys, including left and right arrows</value> </data> <data name="QuickAccent_DisableFullscreen.Header" xml:space="preserve"> <value>Disable when Game Mode is On</value> </data> <data name="QuickAccent_Language.Header" xml:space="preserve"> <value>Characters</value> </data> <data name="QuickAccent_SelectedLanguage.Header" xml:space="preserve"> <value>Choose a character set</value> </data> <data name="QuickAccent_SelectedLanguage.Description" xml:space="preserve"> <value>Show only accented characters common to the selected set</value> </data> <data name="QuickAccent_SelectedLanguage_All.Content" xml:space="preserve"> <value>All available</value> </data> <data name="QuickAccent_SelectedLanguage_Catalan.Content" xml:space="preserve"> <value>Catalan</value> </data> <data name="QuickAccent_SelectedLanguage_Currency.Content" xml:space="preserve"> <value>Currency</value> </data> <data name="QuickAccent_SelectedLanguage_Croatian.Content" xml:space="preserve"> <value>Croatian</value> </data> <data name="QuickAccent_SelectedLanguage_Czech.Content" xml:space="preserve"> <value>Czech</value> </data> <data name="QuickAccent_SelectedLanguage_Gaeilge.Content" xml:space="preserve"> <value>Gaeilge</value> <comment>Gaelic language spoken in Ireland</comment> </data> <data name="QuickAccent_SelectedLanguage_Gaidhlig.Content" xml:space="preserve"> <value>Gàidhlig</value> <comment>Scottish Gaelic</comment> </data> <data name="QuickAccent_SelectedLanguage_German.Content" xml:space="preserve"> <value>German</value> </data> <data name="QuickAccent_SelectedLanguage_Hebrew.Content" xml:space="preserve"> <value>Hebrew</value> </data> <data name="QuickAccent_SelectedLanguage_French.Content" xml:space="preserve"> <value>French</value> </data> <data name="QuickAccent_SelectedLanguage_Estonian.Content" xml:space="preserve"> <value>Estonian</value> </data> <data name="QuickAccent_SelectedLanguage_Lithuanian.Content" xml:space="preserve"> <value>Lithuanian</value> </data> <data name="QuickAccent_SelectedLanguage_Macedonian.Content" xml:space="preserve"> <value>Macedonian</value> </data> <data name="QuickAccent_SelectedLanguage_Maori.Content" xml:space="preserve"> <value>Maori</value> </data> <data name="QuickAccent_SelectedLanguage_Dutch.Content" xml:space="preserve"> <value>Dutch</value> </data> <data name="QuickAccent_SelectedLanguage_Norwegian.Content" xml:space="preserve"> <value>Norwegian</value> </data> <data name="QuickAccent_SelectedLanguage_Pinyin.Content" xml:space="preserve"> <value>Pinyin</value> </data> <data name="QuickAccent_SelectedLanguage_Polish.Content" xml:space="preserve"> <value>Polish</value> </data> <data name="QuickAccent_SelectedLanguage_Portuguese.Content" xml:space="preserve"> <value>Portuguese</value> </data> <data name="QuickAccent_SelectedLanguage_Slovakian.Content" xml:space="preserve"> <value>Slovakian</value> </data> <data name="QuickAccent_SelectedLanguage_Spanish.Content" xml:space="preserve"> <value>Spanish</value> </data> <data name="QuickAccent_SelectedLanguage_Swedish.Content" xml:space="preserve"> <value>Swedish</value> </data> <data name="QuickAccent_SelectedLanguage_Turkish.Content" xml:space="preserve"> <value>Turkish</value> </data> <data name="QuickAccent_SelectedLanguage_Icelandic.Content" xml:space="preserve"> <value>Icelandic</value> </data> <data name="QuickAccent_SelectedLanguage_Romanian.Content" xml:space="preserve"> <value>Romanian</value> </data> <data name="QuickAccent_SelectedLanguage_Serbian.Content" xml:space="preserve"> <value>Serbian</value> </data> <data name="QuickAccent_SelectedLanguage_Hungarian.Content" xml:space="preserve"> <value>Hungarian</value> </data> <data name="QuickAccent_SelectedLanguage_Italian.Content" xml:space="preserve"> <value>Italian</value> </data> <data name="QuickAccent_SelectedLanguage_Kurdish.Content" xml:space="preserve"> <value>Kurdish</value> </data> <data name="QuickAccent_SelectedLanguage_Welsh.Content" xml:space="preserve"> <value>Welsh</value> </data> <data name="Hosts.ModuleDescription" xml:space="preserve"> <value>Quick and simple utility for managing hosts file.</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Hosts.ModuleTitle" xml:space="preserve"> <value>Hosts File Editor</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Shell_Hosts.Content" xml:space="preserve"> <value>Hosts File Editor</value> <comment>Products name: Navigation view item name for Hosts File Editor</comment> </data> <data name="Hosts_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Hosts_Toggle_ShowStartupWarning.Header" xml:space="preserve"> <value>Show a warning at startup</value> </data> <data name="Hosts_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="Hosts_LaunchButtonControl.Description" xml:space="preserve"> <value>Manage your hosts file</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Hosts_LaunchButtonControl.Header" xml:space="preserve"> <value>Launch Host File Editor</value> <comment>"Host File Editor" is a product name</comment> </data> <data name="Hosts_LaunchButton_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Launch Host File Editor</value> <comment>"Host File Editor" is a product name</comment> </data> <data name="Hosts_AdditionalLinesPosition.Header" xml:space="preserve"> <value>Position of additional content</value> </data> <data name="Hosts_AdditionalLinesPosition_Bottom.Content" xml:space="preserve"> <value>Bottom</value> </data> <data name="Hosts_AdditionalLinesPosition_Top.Content" xml:space="preserve"> <value>Top</value> </data> <data name="Hosts_Behavior_GroupSettings.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="Launch_Hosts.Content" xml:space="preserve"> <value>Launch Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="LearnMore_Hosts.Text" xml:space="preserve"> <value>Learn more about Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Oobe_Hosts.Description" xml:space="preserve"> <value>Hosts File Editor is a quick and simple utility for managing hosts file.</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Oobe_Hosts.Title" xml:space="preserve"> <value>Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Hosts_Toggle_LaunchAdministrator.Description" xml:space="preserve"> <value>Needs to be launched as administrator in order to make changes to the hosts file</value> </data> <data name="Hosts_Toggle_LaunchAdministrator.Header" xml:space="preserve"> <value>Launch as administrator</value> </data> <data name="ShortcutGuide_PressTimeForTaskbarIconShortcuts.Header" xml:space="preserve"> <value>Press duration before showing taskbar icon shortcuts (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="FileLocksmith.ModuleDescription" xml:space="preserve"> <value>A Windows shell extension to find out which processes are using the selected files and directories.</value> </data> <data name="FileLocksmith.ModuleTitle" xml:space="preserve"> <value>File Locksmith</value> </data> <data name="Shell_FileLocksmith.Content" xml:space="preserve"> <value>File Locksmith</value> <comment>Product name: Navigation view item name for FileLocksmith</comment> </data> <data name="FileLocksmith_Enable_FileLocksmith.Header" xml:space="preserve"> <value>Enable File Locksmith</value> <comment>File Locksmith is the name of the utility</comment> </data> <data name="FileLocksmith_Toggle_StandardContextMenu.Content" xml:space="preserve"> <value>Default and extended context menu</value> </data> <data name="FileLocksmith_Toggle_ExtendedContextMenu.Content" xml:space="preserve"> <value>Extended context menu only</value> </data> <data name="FileLocksmith_Toggle_ContextMenu.Header" xml:space="preserve"> <value>Show File Locksmith in</value> </data> <data name="FileLocksmith_ShellIntegration.Header" xml:space="preserve"> <value>Shell integration</value> <comment>This refers to directly integrating in with Windows</comment> </data> <data name="GPO_IsSettingForced.Title" xml:space="preserve"> <value>This setting is enforced by your System Administrator.</value> </data> <data name="Hosts_AdditionalLinesPosition.Description" xml:space="preserve"> <value>Additional content includes the file header and lines that can't parse</value> </data> <data name="TextExtractor_Languages.Header" xml:space="preserve"> <value>Preferred language</value> </data> <data name="Alternate_OOBE_AlwaysOnTop_Description.Text" xml:space="preserve"> <value>Pin a window so that:</value> </data> <data name="Alternate_OOBE_AlwaysOnTop_Title.Text" xml:space="preserve"> <value>Always On Top</value> </data> <data name="Alternate_OOBE_ColorPicker_Description.Text" xml:space="preserve"> <value>To pick a color:</value> </data> <data name="Alternate_OOBE_ColorPicker_Title.Text" xml:space="preserve"> <value>Color Picker</value> </data> <data name="Alternate_OOBE_Description.Text" xml:space="preserve"> <value>Here are a few shortcuts to get you started:</value> </data> <data name="Alternate_OOBE_FancyZones_Description.Text" xml:space="preserve"> <value>To open the FancyZones editor, press:</value> </data> <data name="Alternate_OOBE_FancyZones_Title.Text" xml:space="preserve"> <value>FancyZones</value> </data> <data name="Alternate_OOBE_Run_Description.Text" xml:space="preserve"> <value>Get access to your files and more:</value> </data> <data name="Alternate_OOBE_Run_Title.Text" xml:space="preserve"> <value>PowerToys Run</value> </data> <data name="General_Experimentation.Header" xml:space="preserve"> <value>Experimentation</value> </data> <data name="GeneralPage_EnableExperimentation.Description" xml:space="preserve"> <value>Note: Only Windows Insider builds may be selected for experimentation</value> </data> <data name="GeneralPage_EnableExperimentation.Header" xml:space="preserve"> <value>Allow experimentation with new features</value> </data> <data name="GPO_ExperimentationIsDisallowed.Title" xml:space="preserve"> <value>The system administrator has disabled experimentation.</value> </data> <data name="Shell_PastePlain.Content" xml:space="preserve"> <value>Paste As Plain Text</value> <comment>Product name: Navigation view item name for Paste as Plain Text</comment> </data> <data name="PastePlain.ModuleDescription" xml:space="preserve"> <value>Paste As Plain Text is a quick shortcut for pasting the text contents of your clipboard without formatting. Note: the formatted text in the clipboard is replaced with the unformatted text.</value> </data> <data name="PastePlain.ModuleTitle" xml:space="preserve"> <value>Paste As Plain Text</value> </data> <data name="PastePlain_Cancel" xml:space="preserve"> <value>cancel</value> </data> <data name="PastePlain_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Paste As Plain Text</value> </data> <data name="Oobe_PastePlain.Description" xml:space="preserve"> <value>Paste As Plain Text strips rich formatting from your clipboard data and pastes it as non-formatted text.</value> </data> <data name="Oobe_PastePlain.Title" xml:space="preserve"> <value>Paste As Plain Text</value> </data> <data name="Oobe_PastePlain_HowToUse.Text" xml:space="preserve"> <value>to paste your clipboard data as plain text. Note: this will replace the formatted text in your clipboard with the plain text.</value> </data> <data name="AllAppsTxt.Text" xml:space="preserve"> <value>All apps</value> </data> <data name="BackBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Back</value> </data> <data name="BackLabel.Text" xml:space="preserve"> <value>Back</value> </data> <data name="BugReportBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Bug report</value> </data> <data name="BugReportTooltip.Text" xml:space="preserve"> <value>Bug report</value> </data> <data name="DocsBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Documentation</value> </data> <data name="DocsTooltip.Text" xml:space="preserve"> <value>Documentation</value> </data> <data name="FZEditorString" xml:space="preserve"> <value>FancyZones Editor</value> <comment>Do not localize this string</comment> </data> <data name="MoreBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>More</value> </data> <data name="MoreLabel.Text" xml:space="preserve"> <value>More</value> </data> <data name="SettingsBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Settings</value> </data> <data name="SettingsTooltip.Text" xml:space="preserve"> <value>Settings</value> </data> <data name="ShortcutsTxt.Text" xml:space="preserve"> <value>Shortcuts</value> </data> <data name="UpdateAvailable.Title" xml:space="preserve"> <value>Update available</value> </data> <data name="FileExplorerPreview_Toggle_Monaco_Max_File_Size.Header" xml:space="preserve"> <value>Maximum file size to preview</value> <comment>Size refers to the disk space used by a file</comment> </data> <data name="FileExplorerPreview_Toggle_Monaco_Max_File_Size.Description" xml:space="preserve"> <value>The maximum size, in kilobytes, for files to be displayed. This is a safety mechanism to prevent loading large files into RAM.</value> <comment>"RAM" refers to random access memory; "size" refers to disk space; "bytes" refer to the measurement unit</comment> </data> <data name="RegistryPreview.ModuleDescription" xml:space="preserve"> <value>A quick little utility to visualize and edit complex Windows Registry files.</value> </data> <data name="RegistryPreview.ModuleTitle" xml:space="preserve"> <value>Registry Preview</value> </data> <data name="Shell_RegistryPreview.Content" xml:space="preserve"> <value>Registry Preview</value> <comment>Product name: Navigation view item name for Registry Preview</comment> </data> <data name="RegistryPreview_Enable_RegistryPreview.Header" xml:space="preserve"> <value>Enable Registry Preview</value> <comment>Registry Preview is the name of the utility</comment> </data> <data name="Oobe_RegistryPreview_HowToUse.Text" xml:space="preserve"> <value>In File Explorer, right-click a .REG file and select **Preview** from the context menu.</value> </data> <data name="Oobe_RegistryPreview_TipsAndTricks.Text" xml:space="preserve"> <value>You can preview or edit Registry files in File Explorer or by opening the app from the PowerToys launcher.</value> </data> <data name="Oobe_RegistryPreview.Description" xml:space="preserve"> <value>Registry Preview is a quick little utility to visualize and edit complex Windows Registry files.</value> </data> <data name="Oobe_RegistryPreview.Title" xml:space="preserve"> <value>Registry Preview</value> <comment>Do not localize this string</comment> </data> <data name="LearnMore_RegistryPreview.Text" xml:space="preserve"> <value>Learn more about Registry Preview</value> <comment>Registry Preview is a product name, do not loc</comment> </data> <data name="Launch_RegistryPreview.Content" xml:space="preserve"> <value>Launch Registry Preview</value> <comment>"Registry Preview" is the name of the utility</comment> </data> <data name="MouseUtils_MouseJump.Description" xml:space="preserve"> <value>Quickly move the mouse pointer long distances.</value> <comment>"Mouse Jump" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_MouseJump.Header" xml:space="preserve"> <value>Mouse Jump</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_MouseJump_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to turn on or off this mode</value> </data> <data name="MouseUtils_MouseJump_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MouseUtils_Enable_MouseJump.Header" xml:space="preserve"> <value>Enable Mouse Jump</value> <comment>"Mouse Jump" is the name of the utility.</comment> </data> <data name="GPO_AutoDownloadUpdatesIsDisabled.Title" xml:space="preserve"> <value>The system administrator has disabled the automatic download of updates.</value> </data> <data name="Hosts_Toggle_LoopbackDuplicates.Description" xml:space="preserve"> <value>127.0.0.1, ::1, ...</value> <comment>"127.0.0.1 and ::1" are well known loopback addresses, do not loc</comment> </data> <data name="Hosts_Toggle_LoopbackDuplicates.Header" xml:space="preserve"> <value>Consider loopback addresses as duplicates</value> </data> <data name="RegistryPreview_Launch_GroupSettings.Header" xml:space="preserve"> <value>Launch</value> </data> <data name="RegistryPreview_LaunchButton_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Launch Registry Preview</value> </data> <data name="RegistryPreview_LaunchButtonControl.Header" xml:space="preserve"> <value>Launch Registry Preview</value> </data> <data name="RegistryPreview_DefaultRegApp.Header" xml:space="preserve"> <value>Default app</value> </data> <data name="RegistryPreview_DefaultRegApp.Description" xml:space="preserve"> <value>Make Registry Preview default app for opening .reg files</value> <comment>Registry Preview is app name. Do not localize.</comment> </data> <data name="PastePlain_ShortcutWarning.Title" xml:space="preserve"> <value>Using this shortcut may prevent non-text paste actions (e.g. images, files) or built-in paste plain text actions in other applications from functioning.</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize.Header" xml:space="preserve"> <value>Thumbnail Size</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Description_Prefix.Text" xml:space="preserve"> <value>Constrain thumbnail image size to a maximum of</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Description_Suffix.Text" xml:space="preserve"> <value>pixels</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Edit_Height.Header" xml:space="preserve"> <value>Maximum height (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Edit_Width.Header" xml:space="preserve"> <value>Maximum width (px)</value> <comment>px = pixels</comment> </data> <data name="Oobe_Peek.Description" xml:space="preserve"> <value>A lightning fast file preview feature for Windows.</value> </data> <data name="Oobe_Peek.Title" xml:space="preserve"> <value>Peek</value> </data> <data name="Oobe_Peek_HowToUse.Text" xml:space="preserve"> <value>to preview the file that's currently selected in File Explorer.</value> </data> <data name="MWB_PCNameLabel.PlaceholderText" xml:space="preserve"> <value>Device name</value> </data> <data name="MWB_SecurityKeyLabel.PlaceholderText" xml:space="preserve"> <value>Security key</value> </data> <data name="Hosts_Encoding.Description" xml:space="preserve"> <value>Choose the encoding of the hosts file</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Hosts_Encoding.Header" xml:space="preserve"> <value>Encoding</value> </data> <data name="Hosts_Encoding_Utf8.Content" xml:space="preserve"> <value>UTF-8</value> </data> <data name="Hosts_Encoding_Utf8Bom.Content" xml:space="preserve"> <value>UTF-8 with BOM</value> </data> <data name="MouseUtils_MouseHighlighter_AlwaysColor.Header" xml:space="preserve"> <value>Always highlight color</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsAutoHide.Content" xml:space="preserve"> <value>Automatically hide crosshairs when the mouse pointer is hidden</value> </data> <data name="MouseUtils_AutoActivate.Content" xml:space="preserve"> <value>Automatically activate on utility startup</value> </data> <data name="Run_FindMorePlugins.Text" xml:space="preserve"> <value>Find more plugins</value> </data> <data name="Run_PluginUseFindMorePlugins.Content" xml:space="preserve"> <value>Find more plugins</value> </data> <data name="Run_SomePluginsAreGpoManaged.Title" xml:space="preserve"> <value>The system administrator is managing the enabled state of some plugins.</value> </data> <data name="AlwaysOnTop_FrameOpacity.Header" xml:space="preserve"> <value>Opacity (%)</value> </data> <data name="MouseUtils_FindMyMouse_ActivationCustomizedShortcut.Content" xml:space="preserve"> <value>Custom shortcut</value> </data> <data name="MouseUtils_FindMyMouse_ActivationDoubleRightControlPress.Content" xml:space="preserve"> <value>Press Right Control twice</value> <comment>Right control is the physical key on the keyboard.</comment> </data> <data name="MouseUtils_FindMyMouse_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to turn on or off this mode</value> </data> <data name="MouseUtils_FindMyMouse_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="SettingsWindow_AdminTitle" xml:space="preserve"> <value>Administrator: PowerToys Settings</value> <comment>Title of the settings window when running as administrator</comment> </data> <data name="DashboardTitle.Text" xml:space="preserve"> <value>Dashboard</value> </data> <data name="Shell_Dashboard.Content" xml:space="preserve"> <value>Dashboard</value> </data> <data name="GPO_IsSettingForcedText.Text" xml:space="preserve"> <value>This setting is enforced by your System Administrator.</value> </data> <data name="DisabledModules.Text" xml:space="preserve"> <value>Disabled modules</value> </data> <data name="EnabledModules.Text" xml:space="preserve"> <value>Enabled modules</value> </data> </root>
donlaci
8c22f0c48540793452b70d913b2a6a719c881a33
1f936df3ebce73b726ed11c9fa38fd477b4b0fbd
This resource has been deleted, this one is used: <data name="Launch_RegistryPreview.Content" xml:space="preserve"> <value>Launch Registry Preview</value>
donlaci
354
microsoft/PowerToys
29,023
[Settings] Adding a Dashboard Panel
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request Adding a new Dashboard panel to the settings app. It contains the active modules with a brief description, activation shortcut if present, launch button if reasonable and a quick link button to the module's settings page. The new dashboard panel contains a list of all the modules as well, where the user can toggle the modules' enabled/disabled state. ![Dashboard](https://github.com/microsoft/PowerToys/assets/9866362/a773ff5b-0321-4eb3-9c3d-b5b4df9a25f5) <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [X] **Closes:** #26816 - [ ] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected - [ ] **Tests:** Added/updated and all pass - [ ] **Localization:** All end user facing strings can be localized - [ ] **Dev docs:** Added/updated - [ ] **New binaries:** Added on the required places - [ ] [JSON for signing](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ESRPSigning_core.json) for new binaries - [ ] [WXS for installer](https://github.com/microsoft/PowerToys/blob/main/installer/PowerToysSetup/Product.wxs) for new binaries and localization folder - [ ] [YML for CI pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ci/templates/build-powertoys-steps.yml) for new test projects - [ ] [YML for signed pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/release.yml) - [ ] **Documentation updated:** If checked, please file a pull request on [our docs repo](https://github.com/MicrosoftDocs/windows-uwp/tree/docs/hub/powertoys) and link it here: #xxx <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed Tested locally
null
2023-10-04 18:35:54+00:00
2023-10-20 12:23:25+00:00
src/settings-ui/Settings.UI/Strings/en-us/Resources.resw
<?xml version="1.0" encoding="utf-8"?> <root> <!-- Microsoft ResX Schema Version 2.0 The primary goals of this format is to allow a simple XML format that is mostly human readable. The generation and parsing of the various data types are done through the TypeConverter classes associated with the data types. Example: ... ado.net/XML headers & schema ... <resheader name="resmimetype">text/microsoft-resx</resheader> <resheader name="version">2.0</resheader> <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader> <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader> <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data> <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data> <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64"> <value>[base64 mime encoded serialized .NET Framework object]</value> </data> <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value> <comment>This is a comment</comment> </data> There are any number of "resheader" rows that contain simple name/value pairs. Each data row contains a name, and value. The row also contains a type or mimetype. Type corresponds to a .NET class that support text/value conversion through the TypeConverter architecture. Classes that don't support this are serialized and stored with the mimetype set. The mimetype is used for serialized objects, and tells the ResXResourceReader how to depersist the object. This is currently not extensible. For a given mimetype the value must be set accordingly: Note - application/x-microsoft.net.object.binary.base64 is the format that the ResXResourceWriter will generate, however the reader can read any of the formats listed below. mimetype: application/x-microsoft.net.object.binary.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.soap.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Soap.SoapFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.bytearray.base64 value : The object must be serialized into a byte array : using a System.ComponentModel.TypeConverter : and then encoded with base64 encoding. --> <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> <xsd:import namespace="http://www.w3.org/XML/1998/namespace" /> <xsd:element name="root" msdata:IsDataSet="true"> <xsd:complexType> <xsd:choice maxOccurs="unbounded"> <xsd:element name="metadata"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" /> </xsd:sequence> <xsd:attribute name="name" use="required" type="xsd:string" /> <xsd:attribute name="type" type="xsd:string" /> <xsd:attribute name="mimetype" type="xsd:string" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="assembly"> <xsd:complexType> <xsd:attribute name="alias" type="xsd:string" /> <xsd:attribute name="name" type="xsd:string" /> </xsd:complexType> </xsd:element> <xsd:element name="data"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" /> <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="resheader"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" /> </xsd:complexType> </xsd:element> </xsd:choice> </xsd:complexType> </xsd:element> </xsd:schema> <resheader name="resmimetype"> <value>text/microsoft-resx</value> </resheader> <resheader name="version"> <value>2.0</value> </resheader> <resheader name="reader"> <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <resheader name="writer"> <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <data name="Attribution_Rooler.Text" xml:space="preserve"> <value>Inspired by Rooler</value> <comment>Rooler is a name of the tool.</comment> </data> <data name="Shell_VideoConference.Content" xml:space="preserve"> <value>Video Conference Mute</value> <comment>Navigation view item name for Video Conference</comment> </data> <data name="Shell_MeasureTool.Content" xml:space="preserve"> <value>Screen Ruler</value> <comment>Product name: Navigation view item name for Screen Ruler</comment> </data> <data name="MeasureTool.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="MeasureTool.ModuleDescription" xml:space="preserve"> <value>Screen Ruler is a quick and easy way to measure pixels on your screen.</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool.ModuleTitle" xml:space="preserve"> <value>Screen Ruler</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool_ActivationSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="MeasureTool_Settings.Header" xml:space="preserve"> <value>Behavior</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MeasureTool_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to bring up the command bar</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool_DefaultMeasureStyle.Header" xml:space="preserve"> <value>Default measure style</value> </data> <data name="MeasureTool_DefaultMeasureStyle.Description" xml:space="preserve"> <value>The utility will start having the selected style activated</value> </data> <data name="MeasureTool_DefaultMeasureStyle_None.Content" xml:space="preserve"> <value>None</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Bounds.Content" xml:space="preserve"> <value>Bounds</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Spacing.Content" xml:space="preserve"> <value>Spacing</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Horizontal_Spacing.Content" xml:space="preserve"> <value>Horizontal spacing</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Vertical_Spacing.Content" xml:space="preserve"> <value>Vertical spacing</value> </data> <data name="MeasureTool_UnitsOfMeasure.Header" xml:space="preserve"> <value>Units of measurement</value> </data> <data name="MeasureTool_UnitsOfMeasure_Pixels.Content" xml:space="preserve"> <value>Pixels</value> </data> <data name="MeasureTool_UnitsOfMeasure_Inches.Content" xml:space="preserve"> <value>Inches</value> </data> <data name="MeasureTool_UnitsOfMeasure_Centimeters.Content" xml:space="preserve"> <value>Centimeters</value> </data> <data name="MeasureTool_PixelTolerance.Header" xml:space="preserve"> <value>Pixel tolerance for edge detection</value> </data> <data name="MeasureTool_MeasureCrossColor.Header" xml:space="preserve"> <value>Line color</value> </data> <data name="MeasureTool_ContinuousCapture.Header" xml:space="preserve"> <value>Capture screen continuously during measuring</value> </data> <data name="MeasureTool_ContinuousCapture.Description" xml:space="preserve"> <value>Refresh screen contexts in real-time instead of making a screenshot once</value> </data> <data name="MeasureTool_PerColorChannelEdgeDetection.Header" xml:space="preserve"> <value>Per color channel edge detection</value> </data> <data name="MeasureTool_PerColorChannelEdgeDetection.Description" xml:space="preserve"> <value>If enabled, test that all color channels are within a tolerance distance from each other. Otherwise, check that the sum of all color channels differences is smaller than the tolerance.</value> </data> <data name="MeasureTool_DrawFeetOnCross.Header" xml:space="preserve"> <value>Draw feet on cross</value> </data> <data name="MeasureTool_DrawFeetOnCross.Description" xml:space="preserve"> <value>Adds feet to the end of cross lines</value> </data> <data name="MeasureTool_EnableMeasureTool.Header" xml:space="preserve"> <value>Enable Screen Ruler</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MouseWithoutBorders_ActivationSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="MouseWithoutBorders_DeviceLayoutSettings.Header" xml:space="preserve"> <value>Device layout</value> </data> <data name="MouseWithoutBorders_DeviceLayoutSettings.Description" xml:space="preserve"> <value>Drag and drop a machine to rearrange the order.</value> </data> <data name="MouseWithoutBorders_CannotDragDropAsAdmin.Title" xml:space="preserve"> <value>It is not possible to use drag and drop while running PowerToys elevated. As a workaround, please restart PowerToys without elevation to edit the device layout.</value> </data> <data name="MouseWithoutBorders_KeySettings.Header" xml:space="preserve"> <value>Encryption key</value> </data> <data name="MouseWithoutBorders_SecurityKey.Header" xml:space="preserve"> <value>Security key</value> </data> <data name="MouseWithoutBorders_SecurityKey.Description" xml:space="preserve"> <value>The key must be auto generated in one machine by clicking on New Key, then typed in other machines</value> </data> <data name="MouseWithoutBorders_NewKey.Content" xml:space="preserve"> <value>New key</value> </data> <data name="MouseWithoutBorders_CopyMachineName.Text" xml:space="preserve"> <value>Copy to clipboard</value> </data> <data name="MouseWithoutBorders_ReconnectButton.Text" xml:space="preserve"> <value>Refresh connections</value> </data> <data name="MouseWithoutBorders_ReconnectTooltip.Text" xml:space="preserve"> <value>Reestablishes connections with other devices if you are experiencing issues.</value> </data> <data name="MouseWithoutBorders_ThisMachineNameLabel.Header" xml:space="preserve"> <value>Host name of this device</value> </data> <data name="MouseWithoutBorders_Connect.Content" xml:space="preserve"> <value>Connect</value> </data> <data name="MouseWithoutBorders_UninstallService.Header" xml:space="preserve"> <value>Uninstall service</value> </data> <data name="MouseWithoutBorders_UninstallService.Description" xml:space="preserve"> <value>Removes the service from the computer. Needs to run as administrator.</value> </data> <data name="MouseWithoutBorders_Settings.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="MouseWithoutBorders_TroubleShooting.Header" xml:space="preserve"> <value>Troubleshooting</value> </data> <data name="MouseWithoutBorders_AddFirewallRuleButtonControl.Header" xml:space="preserve"> <value>Add a firewall rule for Mouse Without Borders</value> <comment>"Mouse Without Borders" is a product name</comment> </data> <data name="MouseWithoutBorders_AddFirewallRuleButtonControl.Description" xml:space="preserve"> <value>Adding a firewall rule might help solve connection issues.</value> </data> <data name="MouseWithoutBorders_RunAsAdminText.Title" xml:space="preserve"> <value>You need to run as administrator to modify this setting.</value> </data> <data name="MouseWithoutBorders_ServiceUserUninstallWarning.Title" xml:space="preserve"> <value>If PowerToys is installed as a user, uninstalling/upgrading may require the Mouse Without Borders service to be removed manually later.</value> </data> <data name="MouseWithoutBorders_ServiceSettings.Header" xml:space="preserve"> <value>Service</value> </data> <data name="MouseWithoutBorders_Toggle_Enable.Header" xml:space="preserve"> <value>Enable Mouse Without Borders</value> </data> <data name="MouseWithoutBorders.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="MouseWithoutBorders.ModuleDescription" xml:space="preserve"> <value>Mouse Without Borders is a quick and easy way to move your cursor across multiple devices.</value> <comment>"Mouse Without Borders" is the name of the utility</comment> </data> <data name="MouseWithoutBorders.ModuleTitle" xml:space="preserve"> <value>Mouse Without Borders</value> <comment>"Mouse Without Borders" is the name of the utility</comment> </data> <data name="MouseWithoutBorders_UseService.Header" xml:space="preserve"> <value>Use Service</value> </data> <data name="MouseWithoutBorders_UseService.Description" xml:space="preserve"> <value>Runs in service mode, that allows MWB to control remote machines when they're locked. Also allows control of system and administrator applications.</value> </data> <data name="MouseWithoutBorders_MatrixOneRow.Header" xml:space="preserve"> <value>Devices in a single row</value> </data> <data name="MouseWithoutBorders_MatrixOneRow.Description" xml:space="preserve"> <value>Sets whether the devices are aligned on a single row. A two by two matrix is considered otherwise.</value> </data> <data name="MouseWithoutBorders_WrapMouse.Header" xml:space="preserve"> <value>Wrap mouse</value> </data> <data name="MouseWithoutBorders_WrapMouse.Description" xml:space="preserve"> <value>Move control back to the first machine when mouse moves past the last one.</value> </data> <data name="MouseWithoutBorders_ShareClipboard.Header" xml:space="preserve"> <value>Share clipboard</value> </data> <data name="MouseWithoutBorders_TransferFile.Header" xml:space="preserve"> <value>Transfer file</value> </data> <data name="MouseWithoutBorders_HideMouseAtScreenEdge.Header" xml:space="preserve"> <value>Hide mouse at the screen edge</value> </data> <data name="MouseWithoutBorders_DrawMouseCursor.Header" xml:space="preserve"> <value>Draw mouse cursor</value> </data> <data name="MouseWithoutBorders_ValidateRemoteMachineIP.Header" xml:space="preserve"> <value>Validate remote machine IP</value> </data> <data name="MouseWithoutBorders_SameSubnetOnly.Header" xml:space="preserve"> <value>Same subnet only</value> </data> <data name="MouseWithoutBorders_BlockScreenSaverOnOtherMachines.Header" xml:space="preserve"> <value>Block screen saver on other machines</value> </data> <data name="MouseWithoutBorders_MoveMouseRelatively.Header" xml:space="preserve"> <value>Move mouse relatively</value> </data> <data name="MouseWithoutBorders_BlockMouseAtScreenCorners.Header" xml:space="preserve"> <value>Block mouse at screen corners</value> </data> <data name="MouseWithoutBorders_ShowClipboardAndNetworkStatusMessages.Header" xml:space="preserve"> <value>Show clipboard and network status messages</value> </data> <data name="MouseWithoutBorders_ShowOriginalUI.Header" xml:space="preserve"> <value>Show the original Mouse Without Borders UI</value> </data> <data name="MouseWithoutBorders_ShowOriginalUI.Description" xml:space="preserve"> <value>This is accessible from the system tray and requires a restart.</value> </data> <data name="MouseWithoutBorders_ShareClipboard.Description" xml:space="preserve"> <value>If share clipboard stops working, Ctrl+Alt+Del then Esc may solve the problem.</value> </data> <data name="MouseWithoutBorders_TransferFile.Description" xml:space="preserve"> <value>If a file (&lt;100MB) is copied, it will be transferred to the remote machine clipboard.</value> </data> <data name="MouseWithoutBorders_HideMouseAtScreenEdge.Description" xml:space="preserve"> <value>Hide the mouse cursor at the top edge of the screen when switching to other machine. This option also steals the focus from any full-screen app to ensure the keyboard input is redirected.</value> </data> <data name="MouseWithoutBorders_DrawMouseCursor.Description" xml:space="preserve"> <value>Mouse cursor may not be visible in Windows 10 and later versions of Windows when there is no physical mouse attached.</value> </data> <data name="MouseWithoutBorders_ValidateRemoteMachineIP.Description" xml:space="preserve"> <value>Reverse DNS lookup to validate machine IP Address.</value> </data> <data name="MouseWithoutBorders_SameSubnetOnly.Description" xml:space="preserve"> <value>Only connect to machines in the same intranet NNN.NNN.*.* (only works when both machines have IPv4 enabled)</value> </data> <data name="MouseWithoutBorders_IPAddressMapping_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: MyLaptop 192.168.0.24</value> <comment>Don't translate MyLaptop</comment> </data> <data name="MouseWithoutBorders_IPAddressMapping.Header" xml:space="preserve"> <value>IP address mapping</value> </data> <data name="MouseWithoutBorders_IPAddressMapping.Description" xml:space="preserve"> <value>Resolve machine's IP address using manually entered mappings below.</value> </data> <data name="MouseWithoutBorders_BlockScreenSaverOnOtherMachines.Description" xml:space="preserve"> <value>Prevent screen saver from starting on other machines when user is actively working on this machine.</value> </data> <data name="MouseWithoutBorders_MoveMouseRelatively.Description" xml:space="preserve"> <value>Use this option when remote machine's monitor settings are different, or remote machine has multiple monitors.</value> </data> <data name="MouseWithoutBorders_BlockMouseAtScreenCorners.Description" xml:space="preserve"> <value>To avoid accident machine-switch at screen corners.</value> </data> <data name="MouseWithoutBorders_ShowClipboardAndNetworkStatusMessages.Description" xml:space="preserve"> <value>Show clipboard activities and network status in system tray notifications</value> </data> <data name="MouseWithoutBorders_KeyboardShortcuts_Group.Header" xml:space="preserve"> <value>Keyboard shortcuts</value> <comment>keyboard is the hardware peripheral</comment> </data> <data name="MouseWithoutBorders_AdvancedSettings_Group.Header" xml:space="preserve"> <value>Advanced Settings</value> </data> <data name="MouseWithoutBorders_EasyMouseOption.Header" xml:space="preserve"> <value>Easy Mouse: move between machines by moving the mouse pointer to the screen edges.</value> </data> <data name="MouseWithoutBorders_EasyMouseOption.Description" xml:space="preserve"> <value>Can also be set to move only when pressing Shift or Ctrl.</value> <comment>Shift and Ctrl are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_EasyMouseOption_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_EasyMouseOption_Enabled.Content" xml:space="preserve"> <value>Enabled</value> </data> <data name="MouseWithoutBorders_EasyMouseOption_Ctrl.Content" xml:space="preserve"> <value>Ctrl</value> <comment>This is the Ctrl keyboard key</comment> </data> <data name="MouseWithoutBorders_EasyMouseOption_Shift.Content" xml:space="preserve"> <value>Shift</value> <comment>This is the Shift keyboard key</comment> </data> <data name="MouseWithoutBorders_LockMachinesShortcut.Header" xml:space="preserve"> <value>Shortcut to lock all machines.</value> </data> <data name="MouseWithoutBorders_LockMachinesShortcut.Description" xml:space="preserve"> <value>Hit this hotkey twice to lock all machines. Note: Only the machines which have the same shortcut configured will be locked.</value> </data> <data name="MouseWithoutBorders_ToggleEasyMouseShortcut.Header" xml:space="preserve"> <value>Shortcut to toggle Easy Mouse.</value> <comment>Ctrl and Alt are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_ToggleEasyMouseShortcut.Description" xml:space="preserve"> <value>Only works if EasyMouse is set to Enabled or Disabled.</value> </data> <data name="MouseWithoutBorders_ToggleEasyMouseShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut.Header" xml:space="preserve"> <value>Shortcut to switch between machines. Ctrl+Alt+:</value> <comment>Ctrl and Alt are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut.Description" xml:space="preserve"> <value>Click on Ctrl+Alt+ the chosen option to switch between machines.</value> <comment>Ctrl and Alt are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut_F1.Content" xml:space="preserve"> <value>F1, F2, F3, F4</value> <comment>Don't localize. These are keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut_1.Content" xml:space="preserve"> <value>1, 2, 3, 4</value> <comment>Don't localize. These are keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_LockMachinesShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_ReconnectShortcut.Header" xml:space="preserve"> <value>Shortcut to try reconnecting</value> </data> <data name="MouseWithoutBorders_ReconnectShortcut.Description" xml:space="preserve"> <value>Just in case the connection is lost for any reason.</value> </data> <data name="MouseWithoutBorders_ReconnectShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut.Header" xml:space="preserve"> <value>Shortcut to switch to multiple machine mode.</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut.Description" xml:space="preserve"> <value>Allows controlling all computers at once.</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut_Ctrl3.Content" xml:space="preserve"> <value>Ctrl three times</value> <comment>This is the Ctrl keyboard key</comment> </data> <data name="VideoConference_Enable.Header" xml:space="preserve"> <value>Enable Video Conference Mute</value> </data> <data name="VideoConference.ModuleDescription" xml:space="preserve"> <value>Video Conference Mute is a quick and easy way to do a global "mute" of both your microphone and webcam. Disabling this module or closing PowerToys will unmute the microphone and camera.</value> </data> <data name="VideoConference_CameraAndMicrophoneMuteHotkeyControl_Header.Header" xml:space="preserve"> <value>Mute camera &amp; microphone</value> </data> <data name="VideoConference_MicrophoneMuteHotkeyControl_Header.Header" xml:space="preserve"> <value>Mute microphone</value> </data> <data name="VideoConference_MicrophonePushToTalkHotkeyControl_Header.Header" xml:space="preserve"> <value>Push to talk</value> </data> <data name="VideoConference_CameraMuteHotkeyControl_Header.Header" xml:space="preserve"> <value>Mute camera</value> </data> <data name="VideoConference_SelectedCamera.Header" xml:space="preserve"> <value>Selected camera</value> </data> <data name="VideoConference_SelectedMicrophone.Header" xml:space="preserve"> <value>Selected microphone</value> </data> <data name="VideoConference_PushToReverse.Header" xml:space="preserve"> <value>Push to reverse</value> </data> <data name="VideoConference_PushToReverse.Description" xml:space="preserve"> <value>If enabled, allows both push to talk and push to mute, depending on microphone state</value> </data> <data name="VideoConference_CameraOverlayImagePathHeader.Header" xml:space="preserve"> <value>Image displayed when camera is muted</value> </data> <data name="VideoConference_ToolbarPosition.Header" xml:space="preserve"> <value>Toolbar position</value> </data> <data name="VideoConference_ToolbarPosition_TopCenter.Content" xml:space="preserve"> <value>Top center</value> </data> <data name="VideoConference_ToolbarPosition_TopLeftCorner.Content" xml:space="preserve"> <value>Top left corner</value> </data> <data name="VideoConference_ToolbarPosition_TopRightCorner.Content" xml:space="preserve"> <value>Top right corner</value> </data> <data name="VideoConference_ToolbarPosition_BottomLeftCorner.Content" xml:space="preserve"> <value>Bottom left corner</value> </data> <data name="VideoConference_ToolbarPosition_BottomCenter.Content" xml:space="preserve"> <value>Bottom center</value> </data> <data name="VideoConference_ToolbarPosition_BottomRightCorner.Content" xml:space="preserve"> <value>Bottom right corner</value> </data> <data name="VideoConference_ToolbarMonitor.Header" xml:space="preserve"> <value>Show toolbar on</value> </data> <data name="VideoConference_ToolbarMonitor_Main.Content" xml:space="preserve"> <value>Main monitor</value> </data> <data name="VideoConference_ToolbarMonitor_UnderCursor.Content" xml:space="preserve"> <value>Monitor under cursor</value> </data> <data name="VideoConference_ToolbarMonitor_ActiveWindow.Content" xml:space="preserve"> <value>Active window monitor</value> </data> <data name="VideoConference_ToolbarMonitor_All.Content" xml:space="preserve"> <value>All monitors</value> </data> <data name="VideoConference_ToolbarHide.Header" xml:space="preserve"> <value>Hide toolbar</value> </data> <data name="VideoConference_ToolbarHideMuted.Content" xml:space="preserve"> <value>When both camera and microphone are muted</value> </data> <data name="VideoConference_ToolbarHideNever.Content" xml:space="preserve"> <value>Never</value> </data> <data name="VideoConference_ToolbarHideUnmuted.Content" xml:space="preserve"> <value>When both camera and microphone are unmuted</value> </data> <data name="VideoConference_ToolbarHideTimeout.Content" xml:space="preserve"> <value>After timeout</value> </data> <data name="VideoConference.ModuleTitle" xml:space="preserve"> <value>Video Conference Mute</value> </data> <data name="VideoConference_Camera.Header" xml:space="preserve"> <value>Camera</value> </data> <data name="VideoConference_Camera.Description" xml:space="preserve"> <value>To use this feature, make sure to select PowerToys VideoConference Mute as your camera source in your apps.</value> </data> <data name="VideoConference_Microphone.Header" xml:space="preserve"> <value>Microphone</value> </data> <data name="VideoConference_Toolbar.Header" xml:space="preserve"> <value>Toolbar</value> </data> <data name="VideoConference_Behavior.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="VideoConference_StartupAction.Header" xml:space="preserve"> <value>Startup action</value> </data> <data name="VideoConference_StartupActionNothing.Content" xml:space="preserve"> <value>Nothing</value> </data> <data name="VideoConference_StartupActionUnmute.Content" xml:space="preserve"> <value>Unmute</value> </data> <data name="VideoConference_StartupActionMute.Content" xml:space="preserve"> <value>Mute</value> </data> <data name="VideoConference_Shortcuts.Header" xml:space="preserve"> <value>Shortcuts</value> </data> <data name="VideoConference_CameraOverlayImageAlt.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Camera overlay image preview</value> </data> <data name="VideoConference_CameraOverlayImageBrowse.Content" xml:space="preserve"> <value>Browse</value> </data> <data name="VideoConference_CameraOverlayImageClear.Content" xml:space="preserve"> <value>Clear</value> </data> <data name="Shell_General.Content" xml:space="preserve"> <value>General</value> <comment>Navigation view item name for General</comment> </data> <data name="Shell_Awake.Content" xml:space="preserve"> <value>Awake</value> <comment>Product name: Navigation view item name for Awake</comment> </data> <data name="Shell_PowerLauncher.Content" xml:space="preserve"> <value>PowerToys Run</value> <comment>Product name: Navigation view item name for PowerToys Run</comment> </data> <data name="Shell_PowerRename.Content" xml:space="preserve"> <value>PowerRename</value> <comment>Product name: Navigation view item name for PowerRename</comment> </data> <data name="Shell_ShortcutGuide.Content" xml:space="preserve"> <value>Shortcut Guide</value> <comment>Product name: Navigation view item name for Shortcut Guide</comment> </data> <data name="Shell_PowerPreview.Content" xml:space="preserve"> <value>File Explorer add-ons</value> <comment>Product name: Navigation view item name for File Explorer. Please use File Explorer as in the context of File Explorer in Windows</comment> </data> <data name="Shell_FancyZones.Content" xml:space="preserve"> <value>FancyZones</value> <comment>Product name: Navigation view item name for FancyZones</comment> </data> <data name="Shell_ImageResizer.Content" xml:space="preserve"> <value>Image Resizer</value> <comment>Product name: Navigation view item name for Image Resizer</comment> </data> <data name="Shell_ColorPicker.Content" xml:space="preserve"> <value>Color Picker</value> <comment>Product name: Navigation view item name for Color Picker</comment> </data> <data name="Shell_KeyboardManager.Content" xml:space="preserve"> <value>Keyboard Manager</value> <comment>Product name: Navigation view item name for Keyboard Manager</comment> </data> <data name="Shell_MouseWithoutBorders.Content" xml:space="preserve"> <value>Mouse Without Borders</value> <comment>Product name: Navigation view item name for Mouse Without Borders</comment> </data> <data name="Shell_MouseUtilities.Content" xml:space="preserve"> <value>Mouse utilities</value> <comment>Product name: Navigation view item name for Mouse utilities</comment> </data> <data name="Shell_NavigationMenu_Announce_Collapse" xml:space="preserve"> <value>Navigation closed</value> <comment>Accessibility announcement when the navigation pane collapses</comment> </data> <data name="Shell_NavigationMenu_Announce_Open" xml:space="preserve"> <value>Navigation opened</value> <comment>Accessibility announcement when the navigation pane opens</comment> </data> <data name="KeyboardManager_ConfigHeader.Text" xml:space="preserve"> <value>Current configuration</value> <comment>Keyboard Manager current configuration header</comment> </data> <data name="KeyboardManager.ModuleDescription" xml:space="preserve"> <value>Reconfigure your keyboard by remapping keys and shortcuts</value> <comment>Keyboard Manager page description</comment> </data> <data name="KeyboardManager_EnableToggle.Header" xml:space="preserve"> <value>Enable Keyboard Manager</value> <comment>Keyboard Manager enable toggle header. Do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="KeyboardManager_ProfileDescription.Text" xml:space="preserve"> <value>Select the profile to display the active key remap and shortcuts</value> <comment>Keyboard Manager configuration dropdown description</comment> </data> <data name="KeyboardManager_RemapKeyboardButton.Header" xml:space="preserve"> <value>Remap a key</value> <comment>Keyboard Manager remap keyboard button content</comment> </data> <data name="KeyboardManager_Keys.Header" xml:space="preserve"> <value>Keys</value> <comment>Keyboard Manager remap keyboard header</comment> </data> <data name="KeyboardManager_RemapShortcutsButton.Header" xml:space="preserve"> <value>Remap a shortcut</value> <comment>Keyboard Manager remap shortcuts button</comment> </data> <data name="KeyboardManager_Shortcuts.Header" xml:space="preserve"> <value>Shortcuts</value> <comment>Keyboard Manager remap keyboard header</comment> </data> <data name="KeyboardManager_All_Apps_Description" xml:space="preserve"> <value>All Apps</value> <comment>Should be the same as EditShortcuts_AllApps from keyboard manager editor</comment> </data> <data name="Shortcuts.Header" xml:space="preserve"> <value>Shortcuts</value> </data> <data name="Shortcut.Header" xml:space="preserve"> <value>Shortcut</value> </data> <data name="RemapKeysList.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Current Key Remappings</value> </data> <data name="RemapShortcutsList.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Current Shortcut Remappings</value> </data> <data name="KeyboardManager_RemappedKeysListItem.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Key Remapping</value> <comment>key as in keyboard key</comment> </data> <data name="KeyboardManager_RemappedShortcutsListItem.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Shortcut Remapping</value> </data> <data name="KeyboardManager_RemappedTo.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Remapped to</value> </data> <data name="KeyboardManager_ShortcutRemappedTo.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Remapped to</value> </data> <data name="KeyboardManager_TargetApp.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>For Target Application</value> <comment>What computer application would this be for</comment> </data> <data name="KeyboardManager_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Keyboard Manager</value> <comment>do not loc, product name</comment> </data> <data name="ColorPicker.ModuleDescription" xml:space="preserve"> <value>Quick and simple system-wide color picker.</value> </data> <data name="ColorPicker_EnableColorPicker.Header" xml:space="preserve"> <value>Enable Color Picker</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="ColorPicker_ChangeCursor.Content" xml:space="preserve"> <value>Change cursor when picking a color</value> </data> <data name="PowerLauncher.ModuleDescription" xml:space="preserve"> <value>A quick launcher that has additional capabilities without sacrificing performance.</value> </data> <data name="PowerLauncher_EnablePowerLauncher.Header" xml:space="preserve"> <value>Enable PowerToys Run</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="PowerLauncher_SearchResults.Header" xml:space="preserve"> <value>Search &amp; results</value> </data> <data name="PowerLauncher_SearchResultPreference.Header" xml:space="preserve"> <value>Search result preference</value> </data> <data name="PowerLauncher_UsePinyin.Header" xml:space="preserve"> <value>Use Pinyin</value> </data> <data name="PowerLauncher_UsePinyin.Description" xml:space="preserve"> <value>Experimental: Use Pinyin on the search query. May not work for every plugin.</value> </data> <data name="PowerLauncher_SearchResultPreference_MostRecentlyUsed" xml:space="preserve"> <value>Most recently used</value> </data> <data name="PowerLauncher_SearchResultPreference_AlphabeticalOrder" xml:space="preserve"> <value>Alphabetical order</value> </data> <data name="PowerLauncher_SearchResultPreference_RunningProcessesOpenApplications" xml:space="preserve"> <value>Running processes/open applications</value> </data> <data name="PowerLauncher_SearchTypePreference.Header" xml:space="preserve"> <value>Search type preference</value> </data> <data name="PowerLauncher_SearchTypePreference_ApplicationName" xml:space="preserve"> <value>Application name</value> </data> <data name="PowerLauncher_SearchTypePreference_StringInApplication" xml:space="preserve"> <value>A string that is contained in the application</value> </data> <data name="PowerLauncher_SearchTypePreference_ExecutableName" xml:space="preserve"> <value>Executable name</value> </data> <data name="PowerLauncher_MaximumNumberOfResults.Header" xml:space="preserve"> <value>Number of results shown before scrolling</value> </data> <data name="PowerLauncher_OpenPowerLauncher.Header" xml:space="preserve"> <value>Open PowerToys Run</value> </data> <data name="PowerLauncher_OpenFileLocation.Header" xml:space="preserve"> <value>Open file location</value> </data> <data name="PowerLauncher_CopyPathLocation.Header" xml:space="preserve"> <value>Copy path location</value> </data> <data name="PowerLauncher_OpenConsole.Header" xml:space="preserve"> <value>Open console</value> <comment>console refers to Windows command prompt</comment> </data> <data name="PowerLauncher_OverrideWinRKey.Content" xml:space="preserve"> <value>Override Win+R shortcut</value> </data> <data name="PowerLauncher_OverrideWinSKey.Content" xml:space="preserve"> <value>Override Win+S shortcut</value> </data> <data name="PowerLauncher_IgnoreHotkeysInFullScreen.Content" xml:space="preserve"> <value>Ignore shortcuts in fullscreen mode</value> </data> <data name="PowerLauncher_UseCentralizedKeyboardHook.Header" xml:space="preserve"> <value>Use centralized keyboard hook</value> </data> <data name="PowerLauncher_UseCentralizedKeyboardHook.Description" xml:space="preserve"> <value>Try this if there are issues with the shortcut (PowerToys Run might not get focus when triggered from an elevated window)</value> </data> <data name="PowerLauncher_ClearInputOnLaunch.Content" xml:space="preserve"> <value>Clear the previous query on launch</value> </data> <data name="PowerLauncher_TabSelectsContextButtons.Header" xml:space="preserve"> <value>Tab through context buttons</value> </data> <data name="PowerLauncher_TabSelectsContextButtons.Description" xml:space="preserve"> <value>Pressing tab will first select through the available context buttons of the current selection before moving onto the next result</value> </data> <data name="PowerLauncher_GenerateThumbnailsFromFiles.Header" xml:space="preserve"> <value>Generate thumbnails from files</value> </data> <data name="PowerLauncher_GenerateThumbnailsFromFiles.Description" xml:space="preserve"> <value>Results will try to generate thumbnails for files. Disabling this setting may increase stability and speed</value> </data> <data name="PowerLauncher_SearchQueryResultsWithDelay.Header" xml:space="preserve"> <value>Input Smoothing</value> <comment>This is about adding a delay to wait for more input before executing a search</comment> </data> <data name="PowerLauncher_SearchQueryResultsWithDelay.Description" xml:space="preserve"> <value>Wait for more input before searching. This reduces interface jumpiness and system load.</value> </data> <data name="PowerLauncher_FastSearchInputDelayMs.Header" xml:space="preserve"> <value>Immediate plugins</value> </data> <data name="PowerLauncher_FastSearchInputDelayMs.Description" xml:space="preserve"> <value>Affects the plugins that make the UI wait for their results by this amount. Recommended: 30-50 ms.</value> </data> <data name="PowerLauncher_SlowSearchInputDelayMs.Header" xml:space="preserve"> <value>Background execution plugins</value> </data> <data name="PowerLauncher_SlowSearchInputDelayMs.Description" xml:space="preserve"> <value>Affects the plugins that execute in the background by this amount. Recommended: 100-150 ms.</value> </data> <data name="PowerLauncher_SearchInputDelayMs.Header" xml:space="preserve"> <value>Fast plugin throttle (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="KeyboardManager_KeysMappingLayoutRightHeader.Text" xml:space="preserve"> <value>To:</value> <comment>Keyboard Manager mapping keys view right header</comment> </data> <data name="Appearance_GroupSettings.Text" xml:space="preserve"> <value>Appearance</value> </data> <data name="Fancyzones_ImageHyperlinkToDocs.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>FancyZones windows</value> <comment>do not loc the Product name</comment> </data> <data name="FancyZones.ModuleDescription" xml:space="preserve"> <value>Create window layouts to help make multi-tasking easy.</value> <comment>windows refers to application windows</comment> </data> <data name="FancyZones_DisplayOrWorkAreaChangeMoveWindowsCheckBoxControl.Content" xml:space="preserve"> <value>Keep windows in their zones when the screen resolution or work area changes</value> <comment>windows refers to application windows</comment> </data> <data name="FancyZones_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable FancyZones</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="FancyZones_ExcludeApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="FancyZones_ExcludeApps.Description" xml:space="preserve"> <value>Excludes an application from snapping to zones and will only react to Windows Snap - add one application name per line</value> </data> <data name="FancyZones_HighlightOpacity.Header" xml:space="preserve"> <value>Opacity (%)</value> </data> <data name="FancyZones_HotkeyEditorControl.Header" xml:space="preserve"> <value>Open layout editor</value> <comment>Shortcut to launch the FancyZones layout editor application</comment> </data> <data name="FancyZones_WindowSwitching_GroupSettings.Header" xml:space="preserve"> <value>Switch between windows in the current zone</value> </data> <data name="FancyZones_HotkeyNextTabControl.Header" xml:space="preserve"> <value>Next window</value> </data> <data name="FancyZones_HotkeyPrevTabControl.Header" xml:space="preserve"> <value>Previous window</value> </data> <data name="SettingsPage_SetShortcut.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Shortcut setting</value> </data> <data name="SettingsPage_SetShortcut_Glyph.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Information Symbol</value> </data> <data name="FancyZones_LaunchEditorButtonControl.Header" xml:space="preserve"> <value>Launch layout editor</value> <comment>launches the FancyZones layout editor application</comment> </data> <data name="FancyZones_LaunchEditorButtonControl.Description" xml:space="preserve"> <value>Set and manage your layouts</value> <comment>launches the FancyZones layout editor application</comment> </data> <data name="FancyZones_MakeDraggedWindowTransparentCheckBoxControl.Content" xml:space="preserve"> <value>Make dragged window transparent</value> </data> <data name="FancyZones_MouseDragCheckBoxControl_Header.Content" xml:space="preserve"> <value>Use a non-primary mouse button to toggle zone activation</value> </data> <data name="FancyZones_MouseMiddleClickSpanningMultipleZonesCheckBoxControl_Header.Content" xml:space="preserve"> <value>Use middle-click mouse button to toggle multiple zones spanning</value> </data> <data name="FancyZones_MoveWindowsAcrossAllMonitorsCheckBoxControl.Content" xml:space="preserve"> <value>Move windows between zones across all monitors</value> </data> <data name="FancyZones_OverrideSnapHotkeys.Header" xml:space="preserve"> <value>Override Windows Snap</value> </data> <data name="FancyZones_OverrideSnapHotkeys.Description" xml:space="preserve"> <value>This overrides the Windows Snap shortcut (Win + arrow) to move windows between zones</value> </data> <data name="FancyZones_ShiftDragCheckBoxControl_Header.Content" xml:space="preserve"> <value>Hold Shift key to activate zones while dragging</value> </data> <data name="FancyZones_ShowZonesOnAllMonitorsCheckBoxControl.Content" xml:space="preserve"> <value>Show zones on all monitors while dragging a window</value> </data> <data name="FancyZones_AppLastZoneMoveWindows.Content" xml:space="preserve"> <value>Move newly created windows to their last known zone</value> <comment>windows refers to application windows</comment> </data> <data name="FancyZones_OpenWindowOnActiveMonitor.Content" xml:space="preserve"> <value>Move newly created windows to the current active monitor (Experimental)</value> </data> <data name="FancyZones_UseCursorPosEditorStartupScreen.Header" xml:space="preserve"> <value>Launch editor on the display</value> </data> <data name="FancyZones_UseCursorPosEditorStartupScreen.Description" xml:space="preserve"> <value>When using multiple displays</value> </data> <data name="FancyZones_LaunchPositionMouse.Content" xml:space="preserve"> <value>Where the mouse pointer is</value> </data> <data name="FancyZones_LaunchPositionScreen.Content" xml:space="preserve"> <value>With active focus</value> </data> <data name="FancyZones_ZoneBehavior_GroupSettings.Header" xml:space="preserve"> <value>Zone behavior</value> </data> <data name="FancyZones_ZoneBehavior_GroupSettings.Description" xml:space="preserve"> <value>Manage how zones behave when using FancyZones</value> </data> <data name="FancyZones_Zones.Header" xml:space="preserve"> <value>Zones</value> </data> <data name="FancyZones_ZoneHighlightColor.Header" xml:space="preserve"> <value>Highlight color</value> </data> <data name="FancyZones_ZoneSetChangeMoveWindows.Content" xml:space="preserve"> <value>During zone layout changes, windows assigned to a zone will match new size/positions</value> </data> <data name="AttributionTitle.Text" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="General.ModuleTitle" xml:space="preserve"> <value>General</value> </data> <data name="GeneralPage_CheckForUpdates.Content" xml:space="preserve"> <value>Check for updates</value> </data> <data name="General_SettingsBackupAndRestoreLocationText.Header" xml:space="preserve"> <value>Location</value> </data> <data name="General_SettingsBackupAndRestore_ButtonBackup.Content" xml:space="preserve"> <value>Backup</value> </data> <data name="General_SettingsBackupInfo_FileNameHeader.Text" xml:space="preserve"> <value>File name:</value> </data> <data name="General_SettingsBackupAndRestore_LinkRefresh.Text" xml:space="preserve"> <value>Refresh</value> </data> <data name="General_SettingsBackupAndRestore_ButtonRestore.Content" xml:space="preserve"> <value>Restore</value> </data> <data name="General_SettingsBackupAndRestore_ButtonSelectLocation.Text" xml:space="preserve"> <value>Select folder</value> </data> <data name="GeneralPage_UpdateNow.Content" xml:space="preserve"> <value>Update now</value> </data> <data name="GeneralPage_PrivacyStatement_URL.Text" xml:space="preserve"> <value>Privacy statement</value> </data> <data name="GeneralPage_ReportAbug.Text" xml:space="preserve"> <value>Report a bug</value> <comment>Report an issue inside powertoys</comment> </data> <data name="GeneralPage_RequestAFeature_URL.Text" xml:space="preserve"> <value>Request a feature</value> <comment>Tell our team what we should build</comment> </data> <data name="GeneralPage_RestartAsAdmin_Button.Content" xml:space="preserve"> <value>Restart PowerToys as administrator</value> <comment>running PowerToys as a higher level user, account is typically referred to as an admin / administrator</comment> </data> <data name="GeneralPage_RunAtStartUp.Header" xml:space="preserve"> <value>Run at startup</value> </data> <data name="GeneralPage_RunAtStartUp.Description" xml:space="preserve"> <value>PowerToys will launch automatically</value> </data> <data name="PowerRename.ModuleDescription" xml:space="preserve"> <value>A Windows Shell extension for more advanced bulk renaming using search &amp; replace or regular expressions.</value> </data> <data name="PowerRename_ShellIntegration.Header" xml:space="preserve"> <value>Shell integration</value> <comment>This refers to directly integrating in with Windows</comment> </data> <data name="PowerRename_Toggle_Enable.Header" xml:space="preserve"> <value>Enable PowerRename</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="RadioButtons_Name_Theme.Text" xml:space="preserve"> <value>Settings theme</value> </data> <data name="PowerRename_Toggle_HideIcon.Content" xml:space="preserve"> <value>Hide icon in context menu</value> </data> <data name="PowerRename_Toggle_ContextMenu.Header" xml:space="preserve"> <value>Show PowerRename in</value> </data> <data name="PowerRename_Toggle_StandardContextMenu.Content" xml:space="preserve"> <value>Default and extended context menu</value> </data> <data name="PowerRename_Toggle_ExtendedContextMenu.Content" xml:space="preserve"> <value>Extended context menu only</value> </data> <data name="ExtendedContextMenuInfo.Title" xml:space="preserve"> <value>Press Shift + right-click on files to open the extended context menu</value> </data> <data name="PowerRename_Toggle_MaxDispListNum.Header" xml:space="preserve"> <value>Maximum number of items</value> </data> <data name="PowerRename_Toggle_RestoreFlagsOnLaunch.Header" xml:space="preserve"> <value>Show recently used strings</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_MD.Header" xml:space="preserve"> <value>Markdown</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_MD.Description" xml:space="preserve"> <value>.md, .markdown, .mdown, .mkdn, .mkd, .mdwn, .mdtxt, .mdtext</value> <comment>File extensions, should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_Monaco.Header" xml:space="preserve"> <value>Source code files (Monaco)</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_Monaco.Description" xml:space="preserve"> <value>.cpp, .py, .json, .xml, .csproj, ...</value> <comment>File extensions should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_SVG.Header" xml:space="preserve"> <value>Scalable Vector Graphics</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_SVG.Description" xml:space="preserve"> <value>.svg</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_Preview_SVG_Color_Mode.Header" xml:space="preserve"> <value>Color mode</value> </data> <data name="FileExplorerPreview_Preview_SVG_Color_Mode_Default.Content" xml:space="preserve"> <value>Windows default</value> </data> <data name="FileExplorerPreview_Preview_SVG_Color_Solid_Color.Content" xml:space="preserve"> <value>Solid color</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade.Content" xml:space="preserve"> <value>Checkered pattern</value> </data> <data name="FileExplorerPreview_Preview_SVG_Background_Color.Header" xml:space="preserve"> <value>Color</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_Mode.Header" xml:space="preserve"> <value>Checkered shade</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_1.Content" xml:space="preserve"> <value>Light</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_2.Content" xml:space="preserve"> <value>Medium</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_3.Content" xml:space="preserve"> <value>Dark</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_PDF.Header" xml:space="preserve"> <value>Portable Document Format</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_PDF.Description" xml:space="preserve"> <value>.pdf</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_SVG.Header" xml:space="preserve"> <value>Scalable Vector Graphics</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_SVG.Description" xml:space="preserve"> <value>.svg</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_STL.Header" xml:space="preserve"> <value>Stereolithography</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_STL.Description" xml:space="preserve"> <value>.stl</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_Color_Thumbnail_STL.Header" xml:space="preserve"> <value>Color</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_PDF.Header" xml:space="preserve"> <value>Portable Document Format</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_PDF.Description" xml:space="preserve"> <value>.pdf</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview.ModuleDescription" xml:space="preserve"> <value>These settings allow you to manage your Windows File Explorer custom preview handlers.</value> </data> <data name="PowerRename_AutoCompleteHeader.Header" xml:space="preserve"> <value>Auto-complete</value> </data> <data name="OpenSource_Notice.Text" xml:space="preserve"> <value>Open-source notice</value> </data> <data name="PowerRename_Toggle_AutoComplete.Header" xml:space="preserve"> <value>Enable auto-complete for the search &amp; replace fields</value> </data> <data name="FancyZones_BorderColor.Header" xml:space="preserve"> <value>Border color</value> </data> <data name="FancyZones_InActiveColor.Header" xml:space="preserve"> <value>Inactive color</value> </data> <data name="ShortcutGuide.ModuleDescription" xml:space="preserve"> <value>Shows a help overlay with Windows shortcuts.</value> </data> <data name="ShortcutGuide_PressTimeForGlobalWindowsShortcuts.Header" xml:space="preserve"> <value>Press duration before showing global Windows shortcuts (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="ShortcutGuide_ActivationMethod.Header" xml:space="preserve"> <value>Activation method</value> </data> <data name="ShortcutGuide_ActivationMethod.Description" xml:space="preserve"> <value>Use a shortcut or press the Windows key for some time to activate</value> </data> <data name="Radio_ShortcutGuide_ActivationMethod_CustomizedShortcut.Content" xml:space="preserve"> <value>Custom shortcut</value> </data> <data name="Radio_ShortcutGuide_ActivationMethod_LongPressWindowsKey.Content" xml:space="preserve"> <value>Hold down Windows key</value> </data> <data name="ShortcutGuide_PressWinKeyWarning.Title" xml:space="preserve"> <value>In some edge cases Shortcut Guide might not function correctly when using this activation method</value> </data> <data name="Appearance_Behavior.Header" xml:space="preserve"> <value>Appearance &amp; behavior</value> </data> <data name="General_SettingsBackupAndRestoreTitle.Header" xml:space="preserve"> <value>Backup &amp; restore</value> </data> <data name="General_SettingsBackupAndRestore.Header" xml:space="preserve"> <value>Backup and restore your settings</value> </data> <data name="General_SettingsBackupAndRestore.Description" xml:space="preserve"> <value>PowerToys will restart automatically if needed</value> </data> <data name="ShortcutGuide_Enable.Header" xml:space="preserve"> <value>Enable Shortcut Guide</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="ShortcutGuide_OverlayOpacity.Header" xml:space="preserve"> <value>Background opacity (%)</value> </data> <data name="ShortcutGuide_DisabledApps.Header" xml:space="preserve"> <value>Exclude apps</value> </data> <data name="ShortcutGuide_DisabledApps.Description" xml:space="preserve"> <value>Turns off Shortcut Guide when these applications have focus - add one application name per line</value> </data> <data name="ShortcutGuide_DisabledApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> <comment>Don't translate outlook.exe</comment> </data> <data name="ImageResizer_CustomSizes.Header" xml:space="preserve"> <value>Image sizes</value> </data> <data name="ImageResizer_Presets.Header" xml:space="preserve"> <value>Presets</value> </data> <data name="ImageResizer_Presets.Description" xml:space="preserve"> <value>Manage preset sizes that can be used in the editor</value> </data> <data name="ImageResizer_FilenameFormatHeader.Description" xml:space="preserve"> <value>This format is used as the filename for resized images</value> </data> <data name="ImageResizer.ModuleDescription" xml:space="preserve"> <value>Lets you resize images by right-clicking.</value> </data> <data name="ImageResizer_EnableToggle.Header" xml:space="preserve"> <value>Enable Image Resizer</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="ImagesSizesListView.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Image Size</value> </data> <data name="ImageResizer_Configurations.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Configurations</value> </data> <data name="ImageResizer_Name.Header" xml:space="preserve"> <value>Name</value> </data> <data name="ImageResizer_Fit.Header" xml:space="preserve"> <value>Fit</value> </data> <data name="ImageResizer_Width.Header" xml:space="preserve"> <value>Width</value> </data> <data name="ImageResizer_Height.Header" xml:space="preserve"> <value>Height</value> </data> <data name="ImageResizer_Size.Header" xml:space="preserve"> <value>Unit</value> </data> <data name="RemoveButton.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Remove</value> <comment>Removes a user defined setting group for Image Resizer</comment> </data> <data name="RemoveItem.Text" xml:space="preserve"> <value>Delete</value> </data> <data name="ImageResizer_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Image Resizer</value> </data> <data name="ImageResizer_AddSizeButton.Content" xml:space="preserve"> <value>Add new size</value> </data> <data name="ImageResizer_SaveSizeButton.Label" xml:space="preserve"> <value>Save sizes</value> </data> <data name="ImageResizer_Encoding.Header" xml:space="preserve"> <value>JPEG quality level (%)</value> </data> <data name="ImageResizer_PNGInterlacing.Header" xml:space="preserve"> <value>PNG interlacing</value> </data> <data name="ImageResizer_TIFFCompression.Header" xml:space="preserve"> <value>TIFF compression</value> </data> <data name="File.Header" xml:space="preserve"> <value>File</value> <comment>as in a computer file</comment> </data> <data name="Default.Content" xml:space="preserve"> <value>Default</value> </data> <data name="ImageResizer_ENCODER_TIFF_CCITT3.Content" xml:space="preserve"> <value>CCITT3</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_CCITT4.Content" xml:space="preserve"> <value>CCITT4</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_Default.Content" xml:space="preserve"> <value>Default</value> </data> <data name="ImageResizer_ENCODER_TIFF_LZW.Content" xml:space="preserve"> <value>LZW</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_None.Content" xml:space="preserve"> <value>None</value> </data> <data name="ImageResizer_ENCODER_TIFF_RLE.Content" xml:space="preserve"> <value>RLE</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_Zip.Content" xml:space="preserve"> <value>Zip</value> <comment>do not loc</comment> </data> <data name="ImageResizer_FallbackEncoder_BMP.Content" xml:space="preserve"> <value>BMP encoder</value> </data> <data name="ImageResizer_FallbackEncoder_GIF.Content" xml:space="preserve"> <value>GIF encoder</value> </data> <data name="ImageResizer_FallbackEncoder_JPEG.Content" xml:space="preserve"> <value>JPEG encoder</value> </data> <data name="ImageResizer_FallbackEncoder_PNG.Content" xml:space="preserve"> <value>PNG encoder</value> </data> <data name="ImageResizer_FallbackEncoder_TIFF.Content" xml:space="preserve"> <value>TIFF encoder</value> </data> <data name="ImageResizer_FallbackEncoder_WMPhoto.Content" xml:space="preserve"> <value>WMPhoto encoder</value> </data> <data name="ImageResizer_Sizes_Fit_Fill.Content" xml:space="preserve"> <value>Fill</value> <comment>Refers to filling an image into a certain size. It could overflow</comment> </data> <data name="ImageResizer_Sizes_Fit_Fill_ThirdPersonSingular.Text" xml:space="preserve"> <value>Fill</value> <comment>Refers to filling an image into a certain size. It could overflow</comment> </data> <data name="ImageResizer_Sizes_Fit_Fit.Content" xml:space="preserve"> <value>Fit</value> <comment>Refers to fitting an image into a certain size. It won't overflow</comment> </data> <data name="ImageResizer_Sizes_Fit_Stretch.Content" xml:space="preserve"> <value>Stretch</value> <comment>Refers to stretching an image into a certain size. Won't overflow but could distort.</comment> </data> <data name="ImageResizer_Sizes_Units_CM.Content" xml:space="preserve"> <value>Centimeters</value> </data> <data name="ImageResizer_Sizes_Units_Inches.Content" xml:space="preserve"> <value>Inches</value> </data> <data name="ImageResizer_Sizes_Units_Percent.Content" xml:space="preserve"> <value>Percent</value> </data> <data name="ImageResizer_Sizes_Units_Pixels.Content" xml:space="preserve"> <value>Pixels</value> </data> <data name="Off.Content" xml:space="preserve"> <value>Off</value> </data> <data name="On.Content" xml:space="preserve"> <value>On</value> </data> <data name="GeneralPage_ToggleSwitch_AlwaysRunElevated_Link.Content" xml:space="preserve"> <value>Learn more about administrator mode</value> </data> <data name="GeneralPage_ToggleSwitch_AutoDownloadUpdates.Header" xml:space="preserve"> <value>Download updates automatically</value> </data> <data name="GeneralPage_ToggleSwitch_AutoDownloadUpdates.Description" xml:space="preserve"> <value>Except on metered connections</value> </data> <data name="GeneralPage_ToggleSwitch_RunningAsAdminNote.Text" xml:space="preserve"> <value>Currently running as administrator</value> </data> <data name="GeneralSettings_AlwaysRunAsAdminText.Header" xml:space="preserve"> <value>Always run as administrator</value> </data> <data name="GeneralSettings_AlwaysRunAsAdminText.Description" xml:space="preserve"> <value>You need to run as administrator to use this setting</value> </data> <data name="GeneralSettings_RunningAsUserText" xml:space="preserve"> <value>Running as user</value> </data> <data name="GeneralSettings_RunningAsAdminText" xml:space="preserve"> <value>Running as administrator</value> </data> <data name="FancyZones.ModuleTitle" xml:space="preserve"> <value>FancyZones</value> </data> <data name="FileExplorerPreview.ModuleTitle" xml:space="preserve"> <value>File Explorer</value> </data> <data name="FileExplorerPreview_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>File Explorer</value> <comment>Use same translation as Windows does for File Explorer</comment> </data> <data name="ImageResizer.ModuleTitle" xml:space="preserve"> <value>Image Resizer</value> </data> <data name="KeyboardManager.ModuleTitle" xml:space="preserve"> <value>Keyboard Manager</value> </data> <data name="ColorPicker.ModuleTitle" xml:space="preserve"> <value>Color Picker</value> </data> <data name="PowerLauncher.ModuleTitle" xml:space="preserve"> <value>PowerToys Run</value> </data> <data name="PowerToys_Run_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>PowerToys Run</value> </data> <data name="PowerRename.ModuleTitle" xml:space="preserve"> <value>PowerRename</value> <comment>do not loc the product name</comment> </data> <data name="PowerRename_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>PowerRename</value> <comment>do not loc</comment> </data> <data name="ShortcutGuide.ModuleTitle" xml:space="preserve"> <value>Shortcut Guide</value> </data> <data name="Shortcut_Guide_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Shortcut Guide</value> </data> <data name="General_Repository.Text" xml:space="preserve"> <value>GitHub repository</value> </data> <data name="General_Version.Header" xml:space="preserve"> <value>Version</value> </data> <data name="General_VersionLastChecked.Text" xml:space="preserve"> <value>Last checked: </value> </data> <data name="General_SettingsBackupInfo_DateHeader.Text" xml:space="preserve"> <value>Created at:</value> </data> <data name="General_SettingsBackupAndRestoreStatusInfo.Header" xml:space="preserve"> <value>Backup information</value> </data> <data name="General_SettingsBackupInfo_SourceHeader.Text" xml:space="preserve"> <value>Source machine:</value> </data> <data name="General_SettingsBackupInfo_StatusHeader.Text" xml:space="preserve"> <value>Status:</value> </data> <data name="General_Version.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Version</value> </data> <data name="Admin_mode.Header" xml:space="preserve"> <value>Administrator mode</value> </data> <data name="FancyZones_RestoreSize.Content" xml:space="preserve"> <value>Restore the original size of windows when unsnapping</value> </data> <data name="ImageResizer_FallBackEncoderText.Header" xml:space="preserve"> <value>Fallback encoder</value> </data> <data name="ImageResizer_FileFormatDescription.Text" xml:space="preserve"> <value>The following parameters can be used:</value> </data> <data name="ImageResizer_FilenameFormatHeader.Header" xml:space="preserve"> <value>Filename format</value> </data> <data name="ImageResizer_FileModifiedDate.Header" xml:space="preserve"> <value>File modified timestamp</value> </data> <data name="ImageResizer_FileModifiedDate.Description" xml:space="preserve"> <value>Used as the 'modified timestamp' in the file properties</value> </data> <data name="ImageResizer_UseOriginalDate.Content" xml:space="preserve"> <value>Original file timestamp</value> </data> <data name="ImageResizer_UseResizeDate.Content" xml:space="preserve"> <value>Timestamp of resize action</value> </data> <data name="Encoding.Header" xml:space="preserve"> <value>Encoding</value> </data> <data name="KeyboardManager_RemapKeyboardButton.Description" xml:space="preserve"> <value>Remap keys to other keys or shortcuts</value> </data> <data name="KeyboardManager_RemapShortcutsButton.Description" xml:space="preserve"> <value>Remap shortcuts to other shortcuts or keys for all or specific applications</value> </data> <data name="General.ModuleDescription" xml:space="preserve"> <value>Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. Made with 💗 by Microsoft and the PowerToys community.</value> <comment>Windows refers to the OS</comment> </data> <data name="FancyZones_SpanZonesAcrossMonitors.Header" xml:space="preserve"> <value>Allow zones to span across monitors</value> </data> <data name="ImageResizer_Formatting_ActualHeight.Text" xml:space="preserve"> <value>Actual height</value> </data> <data name="ImageResizer_Formatting_ActualWidth.Text" xml:space="preserve"> <value>Actual width</value> </data> <data name="ImageResizer_Formatting_Filename.Text" xml:space="preserve"> <value>Original filename</value> </data> <data name="ImageResizer_Formatting_SelectedHeight.Text" xml:space="preserve"> <value>Selected height</value> </data> <data name="ImageResizer_Formatting_SelectedWidth.Text" xml:space="preserve"> <value>Selected width</value> </data> <data name="ImageResizer_Formatting_Sizename.Text" xml:space="preserve"> <value>Size name</value> </data> <data name="FancyZones_MoveWindowsBasedOnPositionCheckBoxControl.Content" xml:space="preserve"> <value>Move windows based on their position</value> <comment>Windows refers to application windows</comment> </data> <data name="GeneralSettings_NewVersionIsAvailable" xml:space="preserve"> <value>New update available</value> </data> <data name="GeneralSettings_VersionIsLatest" xml:space="preserve"> <value>PowerToys is up to date.</value> </data> <data name="FileExplorerPreview_IconThumbnail_GroupSettings.Header" xml:space="preserve"> <value>Thumbnail icon Preview</value> </data> <data name="FileExplorerPreview_IconThumbnail_GroupSettings.Description" xml:space="preserve"> <value>Select the file types for which thumbnail previews must be rendered.</value> </data> <data name="FileExplorerPreview_PreviewPane.Header" xml:space="preserve"> <value>Preview Pane</value> </data> <data name="FileExplorerPreview_PreviewPane.Description" xml:space="preserve"> <value>Select the file types which must be rendered in the Preview Pane. Ensure that Preview Pane is open by toggling the view with Alt + P in File Explorer.</value> <comment>Preview Pane and File Explorer are app/feature names in Windows. 'Alt + P' is a shortcut</comment> </data> <data name="FileExplorerPreview_RunAsAdminRequired.Title" xml:space="preserve"> <value>You need to run as administrator to modify these settings.</value> </data> <data name="FileExplorerPreview_RebootRequired.Title" xml:space="preserve"> <value>A reboot may be required for changes to these settings to take effect</value> </data> <data name="FileExplorerPreview_PreviewHandlerOutlookIncompatibility.Title" xml:space="preserve"> <value>Enabling the preview handlers will override other preview handlers already installed - there have been reports of incompatibility between Outlook and the PDF Preview Handler.</value> <comment>Outlook is the name of a Microsoft product</comment> </data> <data name="FileExplorerPreview_ThumbnailsMightNotAppearOnRemoteFolders.Title" xml:space="preserve"> <value>Thumbnails might not appear on paths managed by cloud storage solutions like OneDrive, since these solutions may get their thumbnails from the cloud instead of generating them locally.</value> <comment>OneDrive is the name of a Microsoft product</comment> </data> <data name="FancyZones_ExcludeApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> <comment>Don't translate outlook.exe</comment> </data> <data name="ImageResizer_FilenameFormatPlaceholder.PlaceholderText" xml:space="preserve"> <value>Example: %1 (%2)</value> </data> <data name="ImageResizer_FilenameParameters.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Filename parameters</value> </data> <data name="Radio_Theme_Dark.Content" xml:space="preserve"> <value>Dark</value> <comment>Dark refers to color, not weight</comment> </data> <data name="Radio_Theme_Light.Content" xml:space="preserve"> <value>Light</value> <comment>Light refers to color, not weight</comment> </data> <data name="Radio_Theme_Default.Content" xml:space="preserve"> <value>Windows default</value> <comment>Windows refers to the Operating system</comment> </data> <data name="Windows_Color_Settings.Content" xml:space="preserve"> <value>Windows color settings</value> <comment>Windows refers to the Operating system</comment> </data> <data name="ColorPicker_CopiedColorRepresentation.Header" xml:space="preserve"> <value>Default color format</value> </data> <data name="ColorPickerFirst.Content" xml:space="preserve"> <value>Pick a color and open editor</value> </data> <data name="EditorFirst.Content" xml:space="preserve"> <value>Open editor</value> </data> <data name="ColorPickerOnly.Content" xml:space="preserve"> <value>Only pick a color</value> </data> <data name="ColorPicker_ActivationAction.Header" xml:space="preserve"> <value>Activation behavior</value> </data> <data name="ColorFormats.Header" xml:space="preserve"> <value>Picker behavior</value> </data> <data name="ColorPicker_CopiedColorRepresentation.Description" xml:space="preserve"> <value>This format will be copied to your clipboard</value> </data> <data name="KBM_KeysCannotBeRemapped.Text" xml:space="preserve"> <value>Learn more about remapping limitations</value> <comment>This is a link that will discuss what is and is not possible for Keyboard manager to remap</comment> </data> <data name="FancyZones_Editor_GroupSettings.Header" xml:space="preserve"> <value>Editor</value> <comment>refers to the FancyZone editor</comment> </data> <data name="FancyZones_WindowBehavior_GroupSettings.Header" xml:space="preserve"> <value>Window behavior</value> </data> <data name="FancyZones_WindowBehavior_GroupSettings.Description" xml:space="preserve"> <value>Manage how windows behave when using FancyZones</value> </data> <data name="FancyZones_Windows.Header" xml:space="preserve"> <value>Windows</value> <comment>Do translate: refers to a set of application windows, not the product name</comment> </data> <data name="PowerRename_BehaviorHeader.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="PowerRename_Toggle_UseBoostLib.Header" xml:space="preserve"> <value>Use Boost library</value> <comment>Boost is a product name, should not be translated</comment> </data> <data name="PowerRename_Toggle_UseBoostLib.Description" xml:space="preserve"> <value>Provides extended features but may use different regex syntax</value> <comment>Boost is a product name, should not be translated</comment> </data> <data name="MadeWithOssLove.Text" xml:space="preserve"> <value>Made with 💗 by Microsoft and the PowerToys community.</value> </data> <data name="ColorPicker_ColorFormats.Header" xml:space="preserve"> <value>Color formats</value> </data> <data name="ColorPicker_ColorFormats.Description" xml:space="preserve"> <value>Configure the color formats (edit, delete, hide, reorder them)</value> </data> <data name="MoveUp.Text" xml:space="preserve"> <value>Move up</value> </data> <data name="MoveDown.Text" xml:space="preserve"> <value>Move down</value> </data> <data name="ColorPickerAddNewFormat.Content" xml:space="preserve"> <value>Add new format</value> </data> <data name="NewColorFormat.Header" xml:space="preserve"> <value>Format</value> </data> <data name="NewColorName.Header" xml:space="preserve"> <value>Name</value> </data> <data name="AddCustomColorFormat" xml:space="preserve"> <value>Add custom color format</value> </data> <data name="ColorFormatSave" xml:space="preserve"> <value>Save</value> </data> <data name="EditCustomColorFormat" xml:space="preserve"> <value>Edit custom color format</value> </data> <data name="ColorFormatUpdate" xml:space="preserve"> <value>Update</value> </data> <data name="CustomColorFormatDefaultName" xml:space="preserve"> <value>My Format</value> </data> <data name="ColorFormatDialog.SecondaryButtonText" xml:space="preserve"> <value>Cancel</value> </data> <data name="ColorFormatEditorHelpline1.Text" xml:space="preserve"> <value>The following parameters can be used:</value> </data> <data name="Help_red" xml:space="preserve"> <value>red</value> </data> <data name="Help_green" xml:space="preserve"> <value>green</value> </data> <data name="Help_blue" xml:space="preserve"> <value>blue</value> </data> <data name="Help_alpha" xml:space="preserve"> <value>alpha</value> </data> <data name="Help_cyan" xml:space="preserve"> <value>cyan</value> </data> <data name="Help_magenta" xml:space="preserve"> <value>magenta</value> </data> <data name="Help_yellow" xml:space="preserve"> <value>yellow</value> </data> <data name="Help_black_key" xml:space="preserve"> <value>black key</value> </data> <data name="Help_hue" xml:space="preserve"> <value>hue</value> </data> <data name="Help_hueNat" xml:space="preserve"> <value>hue (natural)</value> </data> <data name="Help_saturationI" xml:space="preserve"> <value>saturation (HSI)</value> </data> <data name="Help_saturationL" xml:space="preserve"> <value>saturation (HSL)</value> </data> <data name="Help_saturationB" xml:space="preserve"> <value>saturation (HSB)</value> </data> <data name="Help_brightness" xml:space="preserve"> <value>brightness</value> </data> <data name="Help_intensity" xml:space="preserve"> <value>intensity</value> </data> <data name="Help_lightnessNat" xml:space="preserve"> <value>lightness (nat)</value> </data> <data name="Help_lightnessCIE" xml:space="preserve"> <value>lightness (CIE)</value> </data> <data name="Help_value" xml:space="preserve"> <value>value</value> </data> <data name="Help_whiteness" xml:space="preserve"> <value>whiteness</value> </data> <data name="Help_blackness" xml:space="preserve"> <value>blackness</value> </data> <data name="Help_chromaticityA" xml:space="preserve"> <value>chromaticityA</value> </data> <data name="Help_chromaticityB" xml:space="preserve"> <value>chromaticityB</value> </data> <data name="Help_X_value" xml:space="preserve"> <value>X value</value> </data> <data name="Help_Y_value" xml:space="preserve"> <value>Y value</value> </data> <data name="Help_Z_value" xml:space="preserve"> <value>Z value</value> </data> <data name="Help_decimal_value_RGB" xml:space="preserve"> <value>decimal value (RGB)</value> </data> <data name="Help_decimal_value_BGR" xml:space="preserve"> <value>decimal value (BGR)</value> </data> <data name="Help_color_name" xml:space="preserve"> <value>color name</value> </data> <data name="ColorFormatEditorHelpline2.Text" xml:space="preserve"> <value>The red, green, blue and alpha values can be formatted to the following formats:</value> </data> <data name="Help_byte" xml:space="preserve"> <value>byte value (default)</value> </data> <data name="Help_hexL1" xml:space="preserve"> <value>hex lowercase one digit</value> </data> <data name="Help_hexU1" xml:space="preserve"> <value>hex uppercase one digit</value> </data> <data name="Help_hexL2" xml:space="preserve"> <value>hex lowercase two digits</value> </data> <data name="Help_hexU2" xml:space="preserve"> <value>hex uppercase two digits</value> </data> <data name="Help_floatWith" xml:space="preserve"> <value>float with leading zero</value> </data> <data name="Help_floatWithout" xml:space="preserve"> <value>float without leading zero</value> </data> <data name="ColorFormatEditorHelpline3.Text" xml:space="preserve"> <value>Example: %ReX means red value in hex uppercase two digits format.</value> </data> <data name="ColorPicker_ShowColorName.Header" xml:space="preserve"> <value>Show color name</value> </data> <data name="ColorPicker_ShowColorName.Description" xml:space="preserve"> <value>This will show the name of the color when picking a color</value> </data> <data name="ImageResizer_DefaultSize_Large" xml:space="preserve"> <value>Large</value> <comment>The size of the image</comment> </data> <data name="ImageResizer_DefaultSize_Medium" xml:space="preserve"> <value>Medium</value> <comment>The size of the image</comment> </data> <data name="ImageResizer_DefaultSize_Phone" xml:space="preserve"> <value>Phone</value> <comment>The size of the image referring to a Mobile Phone typical image size</comment> </data> <data name="ImageResizer_DefaultSize_Small" xml:space="preserve"> <value>Small</value> <comment>The size of the image</comment> </data> <data name="FancyZones_MoveWindowBasedOnRelativePosition_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Windows key + Up, down, left or right arrow key to move windows based on relative position</value> </data> <data name="FancyZones_MoveWindowLeftRightBasedOnZoneIndex_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Windows key + Left or right arrow keys to move windows based on zone index</value> </data> <data name="FancyZones_MoveWindowBasedOnRelativePosition_Description.Text" xml:space="preserve"> <value>Windows key +    or </value> <comment>Do not loc the icons (hex numbers)</comment> </data> <data name="FancyZones_MoveWindowLeftRightBasedOnZoneIndex_Description.Text" xml:space="preserve"> <value>Windows key +  or </value> <comment>Do not loc the icons (hex numbers)</comment> </data> <data name="FancyZones_MoveWindowBasedOnRelativePosition.Text" xml:space="preserve"> <value>Relative position</value> </data> <data name="FancyZones_MoveWindow.Header" xml:space="preserve"> <value>Move windows based on</value> </data> <data name="FancyZones_MoveWindowLeftRightBasedOnZoneIndex.Text" xml:space="preserve"> <value>Zone index</value> </data> <data name="ColorPicker_Editor.Header" xml:space="preserve"> <value>Color formats</value> </data> <data name="FancyZones_OverlappingZonesClosestCenter.Content" xml:space="preserve"> <value>Activate the zone whose center is closest to the cursor</value> </data> <data name="FancyZones_OverlappingZonesLargest.Content" xml:space="preserve"> <value>Activate the largest zone by area</value> </data> <data name="FancyZones_OverlappingZonesPositional.Content" xml:space="preserve"> <value>Split the overlapped area into multiple activation targets</value> </data> <data name="FancyZones_OverlappingZonesSmallest.Content" xml:space="preserve"> <value>Activate the smallest zone by area</value> </data> <data name="FancyZones_OverlappingZones.Header" xml:space="preserve"> <value>When multiple zones overlap</value> </data> <data name="PowerLauncher_Plugins.Header" xml:space="preserve"> <value>Plugins</value> </data> <data name="PowerLauncher_ActionKeyword.Header" xml:space="preserve"> <value>Direct activation command</value> </data> <data name="PowerLauncher_AuthoredBy.Text" xml:space="preserve"> <value>Authored by</value> <comment>example: Authored by Microsoft</comment> </data> <data name="PowerLauncher_IncludeInGlobalResultTitle.Text" xml:space="preserve"> <value>Include in global result</value> </data> <data name="PowerLauncher_IncludeInGlobalResultDescription.Text" xml:space="preserve"> <value>Show results on queries without direct activation command</value> </data> <data name="PowerLauncher_EnablePluginToggle.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Enable plugin</value> </data> <data name="PowerLauncher_EnablePluginToggle.OnContent" xml:space="preserve"> <value>On</value> </data> <data name="PowerLauncher_EnablePluginToggle.OffContent" xml:space="preserve"> <value>Off</value> </data> <data name="Run_AdditionalOptions.Text" xml:space="preserve"> <value>Additional options</value> </data> <data name="Run_NotAccessibleWarning.Title" xml:space="preserve"> <value>Please define an activation command or allow this plugin to be used in the global results.</value> </data> <data name="Run_AllPluginsDisabled.Title" xml:space="preserve"> <value>PowerToys Run can't provide any results without plugins</value> </data> <data name="Run_AllPluginsDisabled.Message" xml:space="preserve"> <value>Enable at least one plugin to get started</value> </data> <data name="Run_PluginUse.Header" xml:space="preserve"> <value>Plugins</value> </data> <data name="Run_PluginUseDescription.Text" xml:space="preserve"> <value>Include or remove plugins from the global results, change the direct activation phrase and configure additional options</value> </data> <data name="Run_PositionAppearance_GroupSettings.Header" xml:space="preserve"> <value>Position &amp; appearance</value> </data> <data name="Run_PositionHeader.Header" xml:space="preserve"> <value>Preferred monitor position</value> <comment>as in Show PowerToys Run on primary monitor</comment> </data> <data name="Run_PositionHeader.Description" xml:space="preserve"> <value>If multiple monitors are in use, PowerToys Run can be launched on the desired monitor</value> <comment>as in Show PowerToys Run on primary monitor</comment> </data> <data name="Run_Radio_Position_Cursor.Content" xml:space="preserve"> <value>Monitor with mouse cursor</value> </data> <data name="Run_Radio_Position_Focus.Content" xml:space="preserve"> <value>Monitor with focused window</value> </data> <data name="Run_Radio_Position_Primary_Monitor.Content" xml:space="preserve"> <value>Primary monitor</value> </data> <data name="Run_PluginsLoading.Text" xml:space="preserve"> <value>Plugins are loading...</value> </data> <data name="ColorPicker_ButtonDown.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Move the color down</value> </data> <data name="ColorPicker_ButtonUp.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Move the color up</value> </data> <data name="FancyZones_FlashZonesOnQuickSwitch.Content" xml:space="preserve"> <value>Flash zones when switching layout</value> </data> <data name="FancyZones_Layouts.Header" xml:space="preserve"> <value>Layouts</value> </data> <data name="FancyZones_QuickLayoutSwitch.Header" xml:space="preserve"> <value>Enable quick layout switch</value> </data> <data name="FancyZones_QuickLayoutSwitch.Description" xml:space="preserve"> <value>Layout-specific shortcuts can be configured in the editor</value> </data> <data name="FancyZones_QuickLayoutSwitch_GroupSettings.Text" xml:space="preserve"> <value>Quick layout switch</value> </data> <data name="Activation_Shortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="Activation_Shortcut.Description" xml:space="preserve"> <value>Customize the shortcut to activate this module</value> </data> <data name="Oobe_GetStarted.Text" xml:space="preserve"> <value>Let's get started!</value> </data> <data name="Oobe_PowerToysDescription.Text" xml:space="preserve"> <value>Welcome to PowerToys! These overviews will help you quickly learn the basics of all our utilities.</value> </data> <data name="Oobe_GettingStarted.Text" xml:space="preserve"> <value>Getting started</value> </data> <data name="Oobe_Launch.Text" xml:space="preserve"> <value>Launch</value> </data> <data name="Launch_ColorPicker.Content" xml:space="preserve"> <value>Launch Color Picker</value> </data> <data name="Oobe_LearnMore.Text" xml:space="preserve"> <value>Learn more about</value> </data> <data name="Oobe_ColorPicker.Description" xml:space="preserve"> <value>Color Picker is a system-wide color selection tool for Windows that enables you to pick colors from any currently running application and automatically copies it in a configurable format to your clipboard.</value> </data> <data name="Oobe_FancyZones.Description" xml:space="preserve"> <value>FancyZones is a window manager that makes it easy to create complex window layouts and quickly position windows into those layouts.</value> </data> <data name="Oobe_FileLocksmith.Description" xml:space="preserve"> <value>File Locksmith lists which processes are using the selected files or directories and allows closing those processes.</value> </data> <data name="Oobe_FileExplorer.Description" xml:space="preserve"> <value>PowerToys introduces add-ons to the Windows File Explorer that will enable files like Markdown (.md), PDF (.pdf), SVG (.svg), STL (.stl), G-code (.gcode) and developer files to be viewed in the preview pane. It introduces File Explorer thumbnail support for a number of these file types as well.</value> </data> <data name="Oobe_ImageResizer.Description" xml:space="preserve"> <value>Image Resizer is a Windows shell extension for simple bulk image-resizing.</value> </data> <data name="Oobe_KBM.Description" xml:space="preserve"> <value>Keyboard Manager allows you to customize the keyboard to be more productive by remapping keys and creating your own keyboard shortcuts.</value> </data> <data name="Oobe_MouseWithoutBorders.Description" xml:space="preserve"> <value>Mouse Without Borders enables using the mouse pointer, keyboard, clipboard and drag and drop between machines in the same local network.</value> </data> <data name="Oobe_PowerRename.Description" xml:space="preserve"> <value>PowerRename enables you to perform simple bulk renaming, searching and replacing file names.</value> </data> <data name="Oobe_Run.Description" xml:space="preserve"> <value>PowerToys Run is a quick launcher for power users that contains some additional features without sacrificing performance.</value> </data> <data name="Oobe_MeasureTool.Description" xml:space="preserve"> <value>Screen Ruler is a quick and easy way to measure pixels on your screen.</value> </data> <data name="Oobe_ShortcutGuide.Description" xml:space="preserve"> <value>Shortcut Guide presents the user with a listing of available shortcuts for the current state of the desktop.</value> </data> <data name="Oobe_VideoConference.Description" xml:space="preserve"> <value>Video Conference Mute allows users to quickly mute the microphone and turn off the camera while on a conference call with a single keystroke, regardless of what application has focus on your computer.</value> </data> <data name="Oobe_MouseUtils.Description" xml:space="preserve"> <value>A collection of utilities to enhance your mouse.</value> <comment>Mouse as in the hardware peripheral</comment> </data> <data name="Oobe_Overview.Description" xml:space="preserve"> <value>Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. Take a moment to preview the various utilities listed or view our comprehensive documentation.</value> </data> <data name="Oobe_Overview_DescriptionLinkText.Text" xml:space="preserve"> <value>Documentation on Microsoft Docs</value> </data> <data name="ReleaseNotes.Content" xml:space="preserve"> <value>Release notes</value> </data> <data name="Oobe_ColorPicker_HowToUse.Text" xml:space="preserve"> <value>to open Color Picker.</value> </data> <data name="Oobe_ColorPicker_TipsAndTricks.Text" xml:space="preserve"> <value>To select a color with more precision, **scroll the mouse wheel** to zoom in.</value> </data> <data name="Oobe_FancyZones_HowToUse.Text" xml:space="preserve"> <value>**Shift** + **drag the window** to snap a window to a zone, and release the window in the desired zone.</value> </data> <data name="Oobe_FancyZones_HowToUse_Shortcut.Text" xml:space="preserve"> <value>to open the FancyZones editor.</value> </data> <data name="Oobe_FancyZones_TipsAndTricks.Text" xml:space="preserve"> <value>Snap a window to multiple zones by holding the **Ctrl** key (while also holding **Shift**) when dragging a window.</value> </data> <data name="Oobe_FileLocksmith_HowToUse.Text" xml:space="preserve"> <value>In File Explorer, right-click one or more selected files and select **What's using this file?** from the context menu.</value> </data> <data name="Oobe_FileLocksmith_TipsAndTricks.Text" xml:space="preserve"> <value>Press the **Restart Elevated** button from the File Locksmith UI to also get information on elevated processes that might be using the files.</value> </data> <data name="Oobe_FileExplorer_HowToEnable.Text" xml:space="preserve"> <value>Select **View** which is located at the top of File Explorer, followed by **Show**, and then **Preview pane**. From there, simply click on one of the supported files in the File Explorer and observe the content on the preview pane!</value> </data> <data name="Oobe_HowToCreateMappings.Text" xml:space="preserve"> <value>How to create mappings</value> </data> <data name="Oobe_HowToEnable.Text" xml:space="preserve"> <value>How to enable</value> </data> <data name="Oobe_HowToLaunch.Text" xml:space="preserve"> <value>How to launch</value> </data> <data name="Oobe_HowToUse.Text" xml:space="preserve"> <value>How to use</value> </data> <data name="Oobe_ImageResizer_HowToLaunch.Text" xml:space="preserve"> <value>In File Explorer, right-click one or more image files and select **Resize pictures** from the context menu.</value> </data> <data name="Oobe_ImageResizer_TipsAndTricks.Text" xml:space="preserve"> <value>Want a custom size? You can add them in the PowerToys Settings!</value> </data> <data name="Oobe_KBM_HowToCreateMappings.Text" xml:space="preserve"> <value>Launch **PowerToys Settings**, navigate to the Keyboard Manager menu, and select either **Remap a key** or **Remap a shortcut**.</value> </data> <data name="Oobe_KBM_TipsAndTricks.Text" xml:space="preserve"> <value>Want to only have a shortcut work for a single application? Use the Target App field when creating the shortcut remapping.</value> </data> <data name="Oobe_MouseWithoutBorders_HowToUse.Text" xml:space="preserve"> <value>Use the Settings screen on each machine to connect to the other machines using the same key. If a connection is not working, it may be necessary to add an exception to the Windows Firewall.</value> </data> <data name="Oobe_MouseWithoutBorders_TipsAndTricks.Text" xml:space="preserve"> <value>Use the service option in Settings to install a service enabling Mouse Without Borders to function even in the lock screen.</value> </data> <data name="Oobe_PowerRename_HowToUse.Text" xml:space="preserve"> <value>In File Explorer, right-click one or more selected files and select **PowerRename** from the context menu.</value> </data> <data name="Oobe_PowerRename_TipsAndTricks.Text" xml:space="preserve"> <value>PowerRename supports searching for files using regular expressions to enable more advanced renaming functionalities.</value> </data> <data name="Oobe_Run_HowToLaunch.Text" xml:space="preserve"> <value>to open Run and just start typing.</value> </data> <data name="Oobe_Run_TipsAndTricks.Text" xml:space="preserve"> <value>PowerToys Run supports various action keys to funnel search queries for a specific subset of results. Typing `&lt;` searches for running processes only, `?` will search only for file, or `.` for installed applications! See PowerToys documentation for the complete set of 'Action Keys' available.</value> </data> <data name="Oobe_ShortcutGuide_HowToLaunch.Text" xml:space="preserve"> <value>to open Shortcut Guide, press it again to close or press **Esc**.</value> </data> <data name="Oobe_TipsAndTricks.Text" xml:space="preserve"> <value>Tips &amp; tricks</value> </data> <data name="Oobe_VideoConference_ToggleMicVid.Text" xml:space="preserve"> <value>to toggle both your microphone and video</value> </data> <data name="Oobe_VideoConference_ToggleMic.Text" xml:space="preserve"> <value>to toggle your microphone</value> </data> <data name="Oobe_VideoConference_PushToTalkMic.Text" xml:space="preserve"> <value>to toggle your microphone until key release</value> </data> <data name="Oobe_VideoConference_ToggleVid.Text" xml:space="preserve"> <value>to toggle your video</value> </data> <data name="Oobe_MeasureTool_Activation.Text" xml:space="preserve"> <value>to bring up the Screen Ruler command bar.</value> </data> <data name="Oobe_MeasureTool_HowToLaunch.Text" xml:space="preserve"> <value>The Bounds mode lets you select a specific area to measure. You can also shift-drag an area to persist in on screen. The various Spacing modes allows tracing similar pixels along horizontal and vertical axes with a customizable pixel tolerance threshold (use settings or mouse wheel to adjust it).</value> </data> <data name="Oobe_MeasureTool.Title" xml:space="preserve"> <value>Screen Ruler</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_ColorPicker.Title" xml:space="preserve"> <value>Color Picker</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_FancyZones.Title" xml:space="preserve"> <value>FancyZones</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_FileLocksmith.Title" xml:space="preserve"> <value>File Locksmith</value> </data> <data name="Oobe_ImageResizer.Title" xml:space="preserve"> <value>Image Resizer</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_KBM.Title" xml:space="preserve"> <value>Keyboard Manager</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_MouseWithoutBorders.Title" xml:space="preserve"> <value>Mouse Without Borders</value> <comment>Product name. Do not localize this string</comment> </data> <data name="Oobe_PowerRename.Title" xml:space="preserve"> <value>PowerRename</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_Run.Title" xml:space="preserve"> <value>PowerToys Run</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_ShortcutGuide.Title" xml:space="preserve"> <value>Shortcut Guide</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_VideoConference.Title" xml:space="preserve"> <value>Video Conference Mute</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_Overview.Title" xml:space="preserve"> <value>Welcome</value> </data> <data name="Oobe_WhatsNew.Text" xml:space="preserve"> <value>What's new</value> </data> <data name="Oobe_WhatsNew_LoadingError.Title" xml:space="preserve"> <value>Couldn't load the release notes.</value> </data> <data name="Oobe_WhatsNew_LoadingError.Message" xml:space="preserve"> <value>Please check your internet connection.</value> </data> <data name="Oobe_WhatsNew_ProxyAuthenticationWarning.Title" xml:space="preserve"> <value>Couldn't load the release notes.</value> </data> <data name="Oobe_WhatsNew_ProxyAuthenticationWarning.Message" xml:space="preserve"> <value>Your proxy server requires authentication.</value> </data> <data name="Oobe_WhatsNew_DetailedReleaseNotesLink.Text" xml:space="preserve"> <value>See more detailed release notes on GitHub</value> <comment>Don't loc "GitHub", it's the name of a product</comment> </data> <data name="OOBE_Settings.Content" xml:space="preserve"> <value>Open Settings</value> </data> <data name="Oobe_NavViewItem.Content" xml:space="preserve"> <value>Welcome to PowerToys</value> <comment>Don't loc "PowerToys"</comment> </data> <data name="Feedback_NavViewItem.Content" xml:space="preserve"> <value>Give feedback</value> </data> <data name="OobeWindow_Title" xml:space="preserve"> <value>Welcome to PowerToys</value> </data> <data name="OobeWindow_TitleTxt.Text" xml:space="preserve"> <value>Welcome to PowerToys</value> </data> <data name="SettingsWindow_Title" xml:space="preserve"> <value>PowerToys Settings</value> <comment>Title of the settings window when running as user</comment> </data> <data name="Awake.ModuleTitle" xml:space="preserve"> <value>Awake</value> </data> <data name="Awake.ModuleDescription" xml:space="preserve"> <value>A convenient way to keep your PC awake on-demand.</value> </data> <data name="Awake_EnableSettingsCard.Header" xml:space="preserve"> <value>Enable Awake</value> <comment>Awake is a product name, do not loc</comment> </data> <data name="Awake_NoKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep using the selected power plan</value> </data> <data name="Awake_IndefiniteKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep awake indefinitely</value> </data> <data name="Awake_TemporaryKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep awake for a time interval</value> </data> <data name="Awake_ExpirableKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep awake until expiration</value> </data> <data name="Awake_DisplaySettingsCard.Header" xml:space="preserve"> <value>Keep screen on</value> </data> <data name="Awake_DisplaySettingsCard.Description" xml:space="preserve"> <value>This setting is only available when keeping the PC awake</value> </data> <data name="Awake_ExpirationSettingsExpander.Description" xml:space="preserve"> <value>Keep custom awake state until a specific date and time</value> </data> <data name="Awake_ModeSettingsCard.Header" xml:space="preserve"> <value>Mode</value> </data> <data name="Awake_BehaviorSettingsGroup.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="Awake_IntervalHoursInput.Header" xml:space="preserve"> <value>Hours</value> </data> <data name="Awake_IntervalMinutesInput.Header" xml:space="preserve"> <value>Minutes</value> </data> <data name="Awake_ExpirationSettingsExpander_Date.Header" xml:space="preserve"> <value>End date</value> </data> <data name="Awake_ExpirationSettingsExpander_Time.Header" xml:space="preserve"> <value>End time</value> </data> <data name="Oobe_Awake.Title" xml:space="preserve"> <value>Awake</value> <comment>Module name, do not loc</comment> </data> <data name="Oobe_Awake.Description" xml:space="preserve"> <value>Awake is a Windows tool designed to keep your PC awake on-demand without having to manage its power settings. This behavior can be helpful when running time-consuming tasks while ensuring that your PC does not go to sleep or turn off its screens.</value> </data> <data name="Oobe_Awake_HowToUse.Text" xml:space="preserve"> <value>Open **PowerToys Settings** and enable Awake</value> </data> <data name="Oobe_Awake_TipsAndTricks.Text" xml:space="preserve"> <value>You can always change modes quickly by **right-clicking the Awake icon** in the system tray.</value> </data> <data name="General_FailedToDownloadTheNewVersion.Title" xml:space="preserve"> <value>An error occurred trying to install this update:</value> </data> <data name="General_InstallNow.Content" xml:space="preserve"> <value>Install now</value> </data> <data name="General_ReadMore.Text" xml:space="preserve"> <value>Read more</value> </data> <data name="General_NewVersionAvailable.Title" xml:space="preserve"> <value>An update is available:</value> </data> <data name="General_Downloading.Text" xml:space="preserve"> <value>Downloading...</value> </data> <data name="General_TryAgainToDownloadAndInstall.Content" xml:space="preserve"> <value>Try again to download and install</value> </data> <data name="General_CheckingForUpdates.Text" xml:space="preserve"> <value>Checking for updates...</value> </data> <data name="General_NewVersionReadyToInstall.Title" xml:space="preserve"> <value>An update is ready to install:</value> </data> <data name="General_UpToDate.Title" xml:space="preserve"> <value>PowerToys is up to date</value> </data> <data name="General_CantCheck.Title" xml:space="preserve"> <value>Network error. Please try again later</value> </data> <data name="General_DownloadAndInstall.Content" xml:space="preserve"> <value>Download &amp; install</value> </data> <data name="ImageResizer_Fit_Fill_ThirdPersonSingular" xml:space="preserve"> <value>Fills</value> </data> <data name="ImageResizer_Fit_Fit_ThirdPersonSingular" xml:space="preserve"> <value>Fits within</value> </data> <data name="ImageResizer_Fit_Stretch_ThirdPersonSingular" xml:space="preserve"> <value>Stretches to</value> </data> <data name="ImageResizer_Unit_Centimeter" xml:space="preserve"> <value>Centimeters</value> </data> <data name="ImageResizer_Unit_Inch" xml:space="preserve"> <value>Inches</value> </data> <data name="ImageResizer_Unit_Percent" xml:space="preserve"> <value>Percent</value> </data> <data name="ImageResizer_Unit_Pixel" xml:space="preserve"> <value>Pixels</value> </data> <data name="EditButton.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Edit</value> </data> <data name="ImageResizer_EditSize.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Edit size</value> </data> <data name="No" xml:space="preserve"> <value>No</value> <comment>Label of a cancel button</comment> </data> <data name="Delete_Dialog_Description" xml:space="preserve"> <value>Are you sure you want to delete this item?</value> </data> <data name="Yes" xml:space="preserve"> <value>Yes</value> <comment>Label of a confirmation button</comment> </data> <data name="SeeWhatsNew.Content" xml:space="preserve"> <value>See what's new</value> </data> <data name="Awake_ModeSettingsCard.Description" xml:space="preserve"> <value>Manage the state of your device when Awake is active</value> </data> <data name="ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="Enable_ColorFormat.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Enable colorformat</value> </data> <data name="More_Options_Button.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>More options</value> </data> <data name="More_Options_ButtonTooltip.Text" xml:space="preserve"> <value>More options</value> </data> <data name="To.Text" xml:space="preserve"> <value>to</value> <comment>as in: from x to y</comment> </data> <data name="LearnMore_Awake.Text" xml:space="preserve"> <value>Learn more about Awake</value> <comment>Awake is a product name, do not loc</comment> </data> <data name="LearnMore_ColorPicker.Text" xml:space="preserve"> <value>Learn more about Color Picker</value> <comment>Color Picker is a product name, do not loc</comment> </data> <data name="LearnMore_FancyZones.Text" xml:space="preserve"> <value>Learn more about FancyZones</value> <comment>FancyZones is a product name, do not loc</comment> </data> <data name="LearnMore_FileLocksmith.Text" xml:space="preserve"> <value>Learn more about File Locksmith</value> </data> <data name="LearnMore_ImageResizer.Text" xml:space="preserve"> <value>Learn more about Image Resizer</value> <comment>Image Resizer is a product name, do not loc</comment> </data> <data name="LearnMore_KBM.Text" xml:space="preserve"> <value>Learn more about Keyboard Manager</value> <comment>Keyboard Manager is a product name, do not loc</comment> </data> <data name="LearnMore_MouseUtils.Text" xml:space="preserve"> <value>Learn more about Mouse utilities</value> <comment>Mouse utilities is a product name, do not loc</comment> </data> <data name="LearnMore_PastePlain.Text" xml:space="preserve"> <value>Learn more about Paste as Plain Text</value> <comment> Paste as Plain Text is the name of the module. </comment> </data> <data name="LearnMore_MouseWithoutBorders.Text" xml:space="preserve"> <value>Learn more about Mouse Without Borders</value> <comment>Mouse Without Borders is the name of the module. </comment> </data> <data name="LearnMore_PowerPreview.Text" xml:space="preserve"> <value>Learn more about File Explorer add-ons</value> <comment>File Explorer is a product name, localize as Windows does</comment> </data> <data name="LearnMore_Peek.Text" xml:space="preserve"> <value>Learn more about Peek</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="LearnMore_PowerRename.Text" xml:space="preserve"> <value>Learn more about PowerRename</value> <comment>PowerRename is a product name, do not loc</comment> </data> <data name="LearnMore_Run.Text" xml:space="preserve"> <value>Learn more about PowerToys Run</value> <comment>PowerToys Run is a product name, do not loc</comment> </data> <data name="LearnMore_MeasureTool.Text" xml:space="preserve"> <value>Learn more about Screen Ruler</value> <comment>Screen Ruler is a product name, do not loc</comment> </data> <data name="LearnMore_ShortcutGuide.Text" xml:space="preserve"> <value>Learn more about Shortcut Guide</value> <comment>Shortcut Guide is a product name, do not loc</comment> </data> <data name="LearnMore_VCM.Text" xml:space="preserve"> <value>Learn more about Video Conference Mute</value> <comment>Video Conference Mute is a product name, do not loc</comment> </data> <data name="Oobe_FileExplorer.Title" xml:space="preserve"> <value>File Explorer add-ons</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_MouseUtils.Title" xml:space="preserve"> <value>Mouse utilities</value> <comment>Mouse as in the hardware peripheral</comment> </data> <data name="Oobe_MouseUtils_FindMyMouse.Text" xml:space="preserve"> <value>Find My Mouse</value> <comment>Mouse as in the hardware peripheral</comment> </data> <data name="Oobe_MouseUtils_FindMyMouse_Description.Text" xml:space="preserve"> <value>Focus the mouse pointer pressing the Ctrl key twice, using a custom shortcut or shaking the mouse.</value> <comment>Mouse as in the hardware peripheral. Key as in a keyboard key</comment> </data> <data name="Oobe_MouseUtils_MouseHighlighter.Text" xml:space="preserve"> <value>Mouse Highlighter</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MouseHighlighter_Description.Text" xml:space="preserve"> <value>Use a keyboard shortcut to highlight left and right mouse clicks.</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MousePointerCrosshairs.Text" xml:space="preserve"> <value>Mouse Pointer Crosshairs</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MousePointerCrosshairs_Description.Text" xml:space="preserve"> <value>Draw crosshairs centered around the mouse pointer.</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MouseJump.Text" xml:space="preserve"> <value>Mouse Jump</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MouseJump_Description.Text" xml:space="preserve"> <value>Jump the mouse pointer quickly to anywhere on your desktop.</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Launch_Run.Content" xml:space="preserve"> <value>Launch PowerToys Run</value> </data> <data name="Launch_ShortcutGuide.Content" xml:space="preserve"> <value>Launch Shortcut Guide</value> </data> <data name="ColorPicker_ColorFormat_ToggleSwitch.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Show format in editor</value> </data> <data name="GeneralPage_Documentation.Text" xml:space="preserve"> <value>Documentation</value> </data> <data name="PowerLauncher_SearchList.PlaceholderText" xml:space="preserve"> <value>Search this list</value> </data> <data name="PowerLauncher_SearchList.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Search this list</value> </data> <data name="Awake.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="ColorPicker.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="General.SecondaryLinksHeader" xml:space="preserve"> <value>Related information</value> </data> <data name="ImageResizer.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="MouseUtils.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="PowerLauncher.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="PowerRename.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="EditTooltip.Text" xml:space="preserve"> <value>Edit</value> </data> <data name="RemoveTooltip.Text" xml:space="preserve"> <value>Remove</value> </data> <data name="Activation_Shortcut_Cancel" xml:space="preserve"> <value>Cancel</value> </data> <data name="Activation_Shortcut_Description" xml:space="preserve"> <value>Press a combination of keys to change this shortcut</value> </data> <data name="Activation_Shortcut_With_Disable_Description" xml:space="preserve"> <value>Press a combination of keys to change this shortcut. Right-click to remove the key combination, thereby deactivating the shortcut.</value> </data> <data name="Activation_Shortcut_Reset" xml:space="preserve"> <value>Reset</value> </data> <data name="Activation_Shortcut_Save" xml:space="preserve"> <value>Save</value> </data> <data name="Activation_Shortcut_Title" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="InvalidShortcut.Title" xml:space="preserve"> <value>Invalid shortcut</value> </data> <data name="InvalidShortcutWarningLabel.Text" xml:space="preserve"> <value>Only shortcuts that start with **Windows key**, **Ctrl**, **Alt** or **Shift** are valid.</value> <comment>The ** sequences are used for text formatting of the key names. Don't remove them on translation.</comment> </data> <data name="FancyZones_SpanZonesAcrossMonitors.Description" xml:space="preserve"> <value>All monitors must have the same DPI scaling and will be treated as one large combined rectangle which contains all monitors</value> </data> <data name="ImageResizer_DefaultSize_NewSizePrefix" xml:space="preserve"> <value>New size</value> <comment>First part of the default name of new sizes that can be added in PT's settings ui.</comment> </data> <data name="Awake_IntervalSettingsCard.Header" xml:space="preserve"> <value>Interval before returning to the previous awakeness state</value> </data> <data name="Awake_ExpirationSettingsExpander.Header" xml:space="preserve"> <value>End date and time</value> </data> <data name="MouseUtils.ModuleTitle" xml:space="preserve"> <value>Mouse utilities</value> </data> <data name="MouseUtils.ModuleDescription" xml:space="preserve"> <value>A collection of mouse utilities.</value> </data> <data name="MouseUtils_FindMyMouse.Header" xml:space="preserve"> <value>Find My Mouse</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_FindMyMouse.Description" xml:space="preserve"> <value>Find My Mouse highlights the position of the cursor when pressing the Ctrl key twice, using a custom shortcut or when shaking the mouse.</value> <comment>"Ctrl" is a keyboard key. "Find My Mouse" is the name of the utility</comment> </data> <data name="MouseUtils_Enable_FindMyMouse.Header" xml:space="preserve"> <value>Enable Find My Mouse</value> <comment>"Find My Mouse" is the name of the utility.</comment> </data> <data name="MouseUtils_FindMyMouse_ActivationMethod.Header" xml:space="preserve"> <value>Activation method</value> </data> <data name="MouseUtils_FindMyMouse_ActivationDoubleControlPress.Content" xml:space="preserve"> <value>Press Left Control twice</value> <comment>Left control is the physical key on the keyboard.</comment> </data> <data name="MouseUtils_FindMyMouse_ActivationShakeMouse.Content" xml:space="preserve"> <value>Shake mouse</value> <comment>Mouse is the hardware peripheral.</comment> </data> <data name="MouseUtils_FindMyMouse_ExcludedApps.Description" xml:space="preserve"> <value>Prevents module activation when an excluded application is the foreground application</value> </data> <data name="MouseUtils_FindMyMouse_ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="MouseUtils_FindMyMouse_ExcludedApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> </data> <data name="MouseUtils_Prevent_Activation_On_Game_Mode.Content" xml:space="preserve"> <value>Do not activate when Game Mode is on</value> <comment>"Game mode" is the Windows feature to prevent notification when playing a game.</comment> </data> <data name="MouseUtils_FindMyMouse_BackgroundColor.Header" xml:space="preserve"> <value>Background color</value> </data> <data name="MouseUtils_FindMyMouse_SpotlightColor.Header" xml:space="preserve"> <value>Spotlight color</value> </data> <data name="MouseUtils_FindMyMouse_OverlayOpacity.Header" xml:space="preserve"> <value>Overlay opacity (%)</value> </data> <data name="MouseUtils_FindMyMouse_SpotlightRadius.Header" xml:space="preserve"> <value>Spotlight radius (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_FindMyMouse_SpotlightInitialZoom.Header" xml:space="preserve"> <value>Spotlight initial zoom</value> </data> <data name="MouseUtils_FindMyMouse_SpotlightInitialZoom.Description" xml:space="preserve"> <value>Spotlight zoom factor at animation start</value> </data> <data name="MouseUtils_FindMyMouse_AnimationDurationMs.Header" xml:space="preserve"> <value>Animation duration (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_FindMyMouse_AnimationDurationMs.Description" xml:space="preserve"> <value>Time before the spotlight appears (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_FindMyMouse_AnimationDurationMs_Disabled.Message" xml:space="preserve"> <value>Animations are disabled by OS. See Settings &gt; Accessibility &gt; Visual effects</value> </data> <data name="MouseUtils_FindMyMouse_ShakingMinimumDistance.Header" xml:space="preserve"> <value>Shake minimum distance</value> </data> <data name="MouseUtils_FindMyMouse_ShakingMinimumDistance.Description" xml:space="preserve"> <value>The minimum distance for mouse shaking activation, for adjusting sensitivity</value> </data> <data name="MouseUtils_MouseHighlighter.Header" xml:space="preserve"> <value>Mouse Highlighter</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_MouseHighlighter.Description" xml:space="preserve"> <value>Mouse Highlighter mode will highlight mouse clicks.</value> <comment>"Mouse Highlighter" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_Enable_MouseHighlighter.Header" xml:space="preserve"> <value>Enable Mouse Highlighter</value> <comment>"Find My Mouse" is the name of the utility.</comment> </data> <data name="MouseUtils_MouseHighlighter_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MouseUtils_MouseHighlighter_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to turn on or off this mode</value> <comment>"Mouse Highlighter" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_MouseHighlighter_PrimaryButtonClickColor.Header" xml:space="preserve"> <value>Primary button highlight color</value> </data> <data name="MouseUtils_MouseHighlighter_SecondaryButtonClickColor.Header" xml:space="preserve"> <value>Secondary button highlight color</value> </data> <data name="MouseUtils_MouseHighlighter_HighlightRadius.Header" xml:space="preserve"> <value>Radius (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDelayMs.Header" xml:space="preserve"> <value>Fade delay (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDelayMs.Description" xml:space="preserve"> <value>Time before the highlight begins to fade (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDurationMs.Header" xml:space="preserve"> <value>Fade duration (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDurationMs.Description" xml:space="preserve"> <value>Duration of the disappear animation (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MousePointerCrosshairs.Header" xml:space="preserve"> <value>Mouse Pointer Crosshairs</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_MousePointerCrosshairs.Description" xml:space="preserve"> <value>Mouse Pointer Crosshairs draws crosshairs centered on the mouse pointer.</value> <comment>"Mouse Pointer Crosshairs" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_Enable_MousePointerCrosshairs.Header" xml:space="preserve"> <value>Enable Mouse Pointer Crosshairs</value> <comment>"Mouse Pointer Crosshairs" is the name of the utility.</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MouseUtils_MousePointerCrosshairs_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to show/hide the crosshairs</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsColor.Header" xml:space="preserve"> <value>Crosshairs color</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsOpacity.Header" xml:space="preserve"> <value>Crosshairs opacity (%)</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsRadius.Header" xml:space="preserve"> <value>Crosshairs center radius (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsThickness.Header" xml:space="preserve"> <value>Crosshairs thickness (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsBorderColor.Header" xml:space="preserve"> <value>Crosshairs border color</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsBorderSize.Header" xml:space="preserve"> <value>Crosshairs border size (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_IsCrosshairsFixedLengthEnabled.Header" xml:space="preserve"> <value>Fix crosshairs length</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsFixedLength.Header" xml:space="preserve"> <value>Crosshairs fixed length (px)</value> <comment>px = pixels</comment> </data> <data name="FancyZones_Radio_Custom_Colors.Content" xml:space="preserve"> <value>Custom colors</value> </data> <data name="FancyZones_Radio_Default_Theme.Content" xml:space="preserve"> <value>Windows default</value> </data> <data name="ColorModeHeader.Header" xml:space="preserve"> <value>App theme</value> </data> <data name="FancyZones_Zone_Appearance.Description" xml:space="preserve"> <value>Customize the way zones look</value> </data> <data name="FancyZones_Zone_Appearance.Header" xml:space="preserve"> <value>Zone appearance</value> </data> <data name="VideoConference_DeprecationWarning.Title" xml:space="preserve"> <value>VCM is moving into legacy mode (maintenance only).</value> </data> <data name="VideoConference_DeprecationWarningButton.Content" xml:space="preserve"> <value>Learn more</value> </data> <data name="VideoConference_RunAsAdminRequired.Title" xml:space="preserve"> <value>You need to run as administrator to modify these settings.</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_GCODE.Header" xml:space="preserve"> <value>Geometric Code</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_GCODE.Description" xml:space="preserve"> <value>Only .gcode files with embedded thumbnails are supported</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_GCODE.Header" xml:space="preserve"> <value>Geometric Code</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_GCODE.Description" xml:space="preserve"> <value>Only .gcode files with embedded thumbnails are supported</value> </data> <data name="FancyZones_NumberColor.Header" xml:space="preserve"> <value>Number color</value> </data> <data name="FancyZones_ShowZoneNumberCheckBoxControl.Content" xml:space="preserve"> <value>Show zone number</value> </data> <data name="ToggleSwitch.OffContent" xml:space="preserve"> <value>Off</value> <comment>The state of a ToggleSwitch when it's off</comment> </data> <data name="ToggleSwitch.OnContent" xml:space="preserve"> <value>On</value> <comment>The state of a ToggleSwitch when it's on</comment> </data> <data name="CropAndLock.ModuleDescription" xml:space="preserve"> <value>Crop And Lock allows you to crop a current application into a smaller window or just create a thumbnail. Focus the target window and press the shortcut to start cropping.</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="CropAndLock.ModuleTitle" xml:space="preserve"> <value>Crop And Lock </value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="CropAndLock_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="CropAndLock_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="Shell_CropAndLock.Content" xml:space="preserve"> <value>Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="LearnMore_CropAndLock.Text" xml:space="preserve"> <value>Learn more about Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="CropAndLock_ReparentActivation_Shortcut.Header" xml:space="preserve"> <value>Reparent shortcut</value> </data> <data name="CropAndLock_ReparentActivation_Shortcut.Description" xml:space="preserve"> <value>Shortcut to crop an application's window into a cropped window. This is experimental and can cause issues with some applications, since the cropped window will contain the original application window.</value> </data> <data name="CropAndLock_ThumbnailActivation_Shortcut.Header" xml:space="preserve"> <value>Thumbnail shortcut</value> </data> <data name="CropAndLock_ThumbnailActivation_Shortcut.Description" xml:space="preserve"> <value>Shortcut to crop and create a thumbnail of another window. The application isn't controllable through the thumbnail but it'll have less compatibility issues. </value> </data> <data name="CropAndLock.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="Oobe_CropAndLock.Title" xml:space="preserve"> <value>Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="Oobe_CropAndLock.Description" xml:space="preserve"> <value>Crop And Lock allows you to crop a current application into a smaller window or just create a thumbnail. Focus the target window and press the shortcut to start cropping.</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="Oobe_CropAndLock_HowToUse_Thumbnail.Text" xml:space="preserve"> <value>to crop and create a thumbnail of another window. The application isn't controllable through the thumbnail but it'll have less compatibility issues.</value> </data> <data name="Oobe_CropAndLock_HowToUse_Reparent.Text" xml:space="preserve"> <value>to crop an application's window into a cropped window. This is experimental and can cause issues with some applications, since the cropped window will contain the original application window.</value> </data> <data name="AlwaysOnTop.ModuleDescription" xml:space="preserve"> <value>Always On Top is a quick and easy way to pin windows on top.</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop.ModuleTitle" xml:space="preserve"> <value>Always On Top </value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="Peek_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="AlwaysOnTop_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_ExcludedApps.Description" xml:space="preserve"> <value>Excludes an application from pinning on top</value> </data> <data name="AlwaysOnTop_ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="AlwaysOnTop_ExcludedApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> </data> <data name="AlwaysOnTop_FrameColor.Header" xml:space="preserve"> <value>Color</value> </data> <data name="AlwaysOnTop_FrameEnabled.Header" xml:space="preserve"> <value>Show a border around the pinned window</value> </data> <data name="AlwaysOnTop_FrameThickness.Header" xml:space="preserve"> <value>Thickness (px)</value> <comment>px = pixels</comment> </data> <data name="AlwaysOnTop_Behavior_GroupSettings.Header" xml:space="preserve"> <value>Appearance &amp; behavior</value> </data> <data name="Shell_AlwaysOnTop.Content" xml:space="preserve"> <value>Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_GameMode.Content" xml:space="preserve"> <value>Do not activate when Game Mode is on</value> <comment>Game Mode is a Windows feature</comment> </data> <data name="AlwaysOnTop_SoundTitle.Header" xml:space="preserve"> <value>Sound</value> </data> <data name="AlwaysOnTop_Sound.Content" xml:space="preserve"> <value>Play a sound when pinning a window</value> </data> <data name="AlwaysOnTop_Behavior.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="LearnMore_AlwaysOnTop.Text" xml:space="preserve"> <value>Learn more about Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="AlwaysOnTop_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to pin or unpin an app window</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="Oobe_AlwaysOnTop.Title" xml:space="preserve"> <value>Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="Oobe_AlwaysOnTop.Description" xml:space="preserve"> <value>Always On Top improves your multitasking workflow by pinning an application window so it's always in front - even when focus changes to another window after that.</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="Oobe_AlwaysOnTop_HowToUse.Text" xml:space="preserve"> <value>to pin or unpin the selected window so it's always on top of all other windows.</value> </data> <data name="Oobe_AlwaysOnTop_TipsAndTricks.Text" xml:space="preserve"> <value>You can tweak the visual outline of the pinned windows in PowerToys settings.</value> </data> <data name="AlwaysOnTop_FrameColor_Mode.Header" xml:space="preserve"> <value>Color mode</value> </data> <data name="AlwaysOnTop_Radio_Custom_Color.Content" xml:space="preserve"> <value>Custom color</value> </data> <data name="AlwaysOnTop_Radio_Windows_Default.Content" xml:space="preserve"> <value>Windows default</value> </data> <data name="FileExplorerPreview.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Monaco_Wrap_Text.Content" xml:space="preserve"> <value>Wrap text</value> <comment>Feature on or off</comment> </data> <data name="FancyZones_AllowPopupWindowSnap.Description" xml:space="preserve"> <value>This setting can affect all popup windows including notifications</value> </data> <data name="FancyZones_AllowPopupWindowSnap.Header" xml:space="preserve"> <value>Allow popup windows snapping</value> </data> <data name="FancyZones_AllowChildWindowSnap.Content" xml:space="preserve"> <value>Allow child windows snapping</value> </data> <data name="Shell_WhatsNew.Content" xml:space="preserve"> <value>What's new</value> </data> <data name="Shell_Peek.Content" xml:space="preserve"> <value>Peek</value> <comment>Product name: Navigation view item name for Peek</comment> </data> <data name="Peek.ModuleTitle" xml:space="preserve"> <value>Peek</value> </data> <data name="Peek.ModuleDescription" xml:space="preserve"> <value>Peek is a quick and easy way to preview files. Select a file in File Explorer and press the shortcut to open the file preview.</value> </data> <data name="Peek_EnablePeek.Header" xml:space="preserve"> <value>Enable Peek</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="Peek_BehaviorHeader.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="Peek_AlwaysRunNotElevated.Header" xml:space="preserve"> <value>Always run not elevated, even when PowerToys is elevated</value> </data> <data name="Peek_AlwaysRunNotElevated.Description" xml:space="preserve"> <value>Tries to run Peek without elevated permissions, to fix access to network shares. You need to disable and re-enable Peek for changes to this value to take effect.</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="Peek_CloseAfterLosingFocus.Header" xml:space="preserve"> <value>Automatically close the Peek window after it loses focus</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="FancyZones_DisableRoundCornersOnWindowSnap.Content" xml:space="preserve"> <value>Disable round corners when window is snapped</value> </data> <data name="PowerLauncher_SearchQueryTuningEnabled.Description" xml:space="preserve"> <value>Fine tune results ordering</value> </data> <data name="PowerLauncher_SearchQueryTuningEnabled.Header" xml:space="preserve"> <value>Results order tuning</value> </data> <data name="PowerLauncher_SearchClickedItemWeight.Description" xml:space="preserve"> <value>Use a higher number to get selected results to rise faster. The default is 5, 0 to disable.</value> </data> <data name="PowerLauncher_SearchClickedItemWeight.Header" xml:space="preserve"> <value>Selected item weight</value> </data> <data name="PowerLauncher_WaitForSlowResults.Description" xml:space="preserve"> <value>Selecting this can help preselect the top, more relevant result, but at the risk of jumpiness</value> </data> <data name="PowerLauncher_WaitForSlowResults.Header" xml:space="preserve"> <value>Wait on slower plugin results before selecting top item in results</value> </data> <data name="PowerLauncher_PluginWeightBoost.Description" xml:space="preserve"> <value>Use a higher number to have this plugin's result show higher in the global results. Default is 0.</value> </data> <data name="PowerLauncher_PluginWeightBoost.Header" xml:space="preserve"> <value>Global sort order score modifier</value> </data> <data name="AlwaysOnTop_RoundCorners.Content" xml:space="preserve"> <value>Enable round corners</value> </data> <data name="LearnMore_QuickAccent.Text" xml:space="preserve"> <value>Learn more about Quick Accent</value> <comment>Quick Accent is a product name, do not loc</comment> </data> <data name="QuickAccent_EnableQuickAccent.Header" xml:space="preserve"> <value>Enable Quick Accent</value> </data> <data name="Shell_QuickAccent.Content" xml:space="preserve"> <value>Quick Accent</value> </data> <data name="QuickAccent.ModuleDescription" xml:space="preserve"> <value>Quick Accent is an alternative way to type accented characters, useful for when a keyboard doesn't support that specific accent. Activate by holding the key for the character you want to add an accent to, then press the activation key (space, left or right arrow keys) and an overlay to select accented characters will appear!</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent.ModuleTitle" xml:space="preserve"> <value>Quick Accent</value> </data> <data name="QuickAccent.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> </data> <data name="Oobe_QuickAccent.Description" xml:space="preserve"> <value>Quick Accent is an easy way to write letters with accents, like on a smartphone.</value> </data> <data name="Oobe_QuickAccent.Title" xml:space="preserve"> <value>Quick Accent</value> </data> <data name="Oobe_QuickAccent_HowToUse.Text" xml:space="preserve"> <value>Open **PowerToys Settings** and enable Quick Accent. While holding the key for the character you want to add an accent to, press the Activation Key and an overlay to select the accented character will appear.</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="QuickAccent_Activation_Shortcut.Header" xml:space="preserve"> <value>Activation key</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent_Activation_Shortcut.Description" xml:space="preserve"> <value>Press this key after holding down the target letter</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent_Activation_Key_Arrows.Content" xml:space="preserve"> <value>Left/Right Arrow</value> <comment>Left/Right arrow keyboard keys</comment> </data> <data name="QuickAccent_Activation_Key_Space.Content" xml:space="preserve"> <value>Space</value> <comment>Space is the space keyboard key</comment> </data> <data name="QuickAccent_Activation_Key_Either.Content" xml:space="preserve"> <value>Left, Right or Space</value> <comment>All are keys on a keyboard</comment> </data> <data name="QuickAccent_Toolbar.Header" xml:space="preserve"> <value>Toolbar</value> </data> <data name="QuickAccent_ToolbarPosition.Header" xml:space="preserve"> <value>Toolbar position</value> </data> <data name="QuickAccent_ToolbarPosition_TopCenter.Content" xml:space="preserve"> <value>Top center</value> </data> <data name="QuickAccent_ToolbarPosition_TopLeftCorner.Content" xml:space="preserve"> <value>Top left corner</value> </data> <data name="QuickAccent_ToolbarPosition_TopRightCorner.Content" xml:space="preserve"> <value>Top right corner</value> </data> <data name="QuickAccent_ToolbarPosition_BottomLeftCorner.Content" xml:space="preserve"> <value>Bottom left corner</value> </data> <data name="QuickAccent_ToolbarPosition_BottomCenter.Content" xml:space="preserve"> <value>Bottom center</value> </data> <data name="QuickAccent_ToolbarPosition_BottomRightCorner.Content" xml:space="preserve"> <value>Bottom right corner</value> </data> <data name="QuickAccent_ToolbarPosition_Center.Content" xml:space="preserve"> <value>Center</value> </data> <data name="QuickAccent_ToolbarPosition_Left.Content" xml:space="preserve"> <value>Left</value> </data> <data name="QuickAccent_ToolbarPosition_Right.Content" xml:space="preserve"> <value>Right</value> </data> <data name="QuickAccent_Behavior.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="QuickAccent_InputTimeMs.Header" xml:space="preserve"> <value>Input delay (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="QuickAccent_InputTimeMs.Description" xml:space="preserve"> <value>Hold the key down for this much time to make the accent menu appear (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="QuickAccent_ExcludedApps.Description" xml:space="preserve"> <value>Prevents module activation if a foreground application is excluded. Add one application name per line.</value> </data> <data name="QuickAccent_ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="QuickAccent_ExcludedApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: Teams.exe</value> </data> <data name="LearnMore_TextExtractor.Text" xml:space="preserve"> <value>Learn more about Text Extractor</value> </data> <data name="TextExtractor_Cancel" xml:space="preserve"> <value>cancel</value> </data> <data name="General_SettingsBackupAndRestore_NothingToBackup" xml:space="preserve"> <value>A new backup was not created because no settings have been changed since last backup.</value> </data> <data name="General_SettingsBackupAndRestore_NoBackupFound" xml:space="preserve"> <value>No backup found</value> </data> <data name="General_SettingsBackupAndRestore_FailedToParseTime" xml:space="preserve"> <value>Failed to parse time</value> </data> <data name="General_SettingsBackupAndRestore_UnknownBackupTime" xml:space="preserve"> <value>Unknown</value> </data> <data name="General_SettingsBackupAndRestore_UnknownBackupSource" xml:space="preserve"> <value>Unknown</value> </data> <data name="General_SettingsBackupAndRestore_ThisMachine" xml:space="preserve"> <value>This computer</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsMatch" xml:space="preserve"> <value>Current settings match</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsStatusAt" xml:space="preserve"> <value>at</value> <comment>E.g., Food was served 'at' noon.</comment> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsDiffer" xml:space="preserve"> <value>Current settings differ</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsNoChecked" xml:space="preserve"> <value>Checking...</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsUnknown" xml:space="preserve"> <value>Unknown</value> </data> <data name="General_SettingsBackupAndRestore_NeverRestored" xml:space="preserve"> <value>Never restored</value> </data> <data name="General_SettingsBackupAndRestore_NothingToRestore" xml:space="preserve"> <value>Nothing to restore.</value> </data> <data name="General_SettingsBackupAndRestore_NoSettingsFilesFound" xml:space="preserve"> <value>No settings files found.</value> </data> <data name="General_SettingsBackupAndRestore_BackupError" xml:space="preserve"> <value>There was an error. Try another backup location.</value> </data> <data name="General_SettingsBackupAndRestore_SettingsFormatError" xml:space="preserve"> <value>There was an error in the settings format. Please check the settings file:</value> </data> <data name="General_SettingsBackupAndRestore_BackupComplete" xml:space="preserve"> <value>Backup completed.</value> </data> <data name="General_SettingsBackupAndRestore_NoBackupSyncPath" xml:space="preserve"> <value>No backup location selected.</value> </data> <data name="General_SettingsBackupAndRestore_NoBackupsFound" xml:space="preserve"> <value>No backups found to restore.</value> </data> <data name="General_SettingsBackupAndRestore_InvalidBackupLocation" xml:space="preserve"> <value>Invalid backup location.</value> </data> <data name="TextExtractor.ModuleDescription" xml:space="preserve"> <value>Text Extractor is a convenient way to copy text from anywhere on screen</value> </data> <data name="TextExtractor.ModuleTitle" xml:space="preserve"> <value>Text Extractor</value> </data> <data name="TextExtractor_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Text Extractor</value> </data> <data name="TextExtractor_SupportedLanguages.Title" xml:space="preserve"> <value>Text Extractor can only recognize languages that have the OCR pack installed.</value> </data> <data name="TextExtractor_SupportedLanguages_Link.Content" xml:space="preserve"> <value>Learn more about supported languages</value> </data> <data name="Shell_TextExtractor.Content" xml:space="preserve"> <value>Text Extractor</value> </data> <data name="Launch_TextExtractor.Content" xml:space="preserve"> <value>Launch Text Extractor</value> </data> <data name="Oobe_TextExtractor.Title" xml:space="preserve"> <value>Text Extractor</value> </data> <data name="Oobe_TextExtractor_HowToUse.Text" xml:space="preserve"> <value>to open Text Extractor and then selecting a region to copy the text from.</value> </data> <data name="Oobe_TextExtractor_TipsAndTricks.Text" xml:space="preserve"> <value>Hold the shift key to move the selection region around.</value> </data> <data name="TextExtractor.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> </data> <data name="Oobe_TextExtractor.Description" xml:space="preserve"> <value>Text Extractor works like Snipping Tool, but copies the text out of the selected region using OCR and puts it on the clipboard.</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Monaco_Try_Format.Description" xml:space="preserve"> <value>Applies to json and xml. Files remain unchanged.</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Monaco_Try_Format.Header" xml:space="preserve"> <value>Try to format the source for preview</value> </data> <data name="Run_ConflictingKeywordInfo.Title" xml:space="preserve"> <value>Some characters and phrases may conflict with global queries of other plugins if you use them as activation command.</value> </data> <data name="Run_ConflictingKeywordInfo_Link.Content" xml:space="preserve"> <value>Learn more about conflicting activation commands</value> </data> <data name="MeasureTool_ContinuousCapture_Information.Title" xml:space="preserve"> <value>The continuous capture mode will consume more resources when in use. Also, measurements will be excluded from screenshots and screen capture.</value> <comment>pointer as in mouse pointer. Resources refer to things like CPU, GPU, RAM</comment> </data> <data name="QuickAccent_Description_Indicator.Header" xml:space="preserve"> <value>Show the Unicode code and name of the currently selected character</value> </data> <data name="QuickAccent_SortByUsageFrequency_Indicator.Header" xml:space="preserve"> <value>Sort characters by usage frequency</value> </data> <data name="QuickAccent_SortByUsageFrequency_Indicator.Description" xml:space="preserve"> <value>Track characters usage frequency and sort them accordingly</value> </data> <data name="QuickAccent_StartSelectionFromTheLeft_Indicator.Header" xml:space="preserve"> <value>Start selection from the left</value> </data> <data name="QuickAccent_StartSelectionFromTheLeft_Indicator.Description" xml:space="preserve"> <value>Start selection from the leftmost character for all activation keys, including left and right arrows</value> </data> <data name="QuickAccent_DisableFullscreen.Header" xml:space="preserve"> <value>Disable when Game Mode is On</value> </data> <data name="QuickAccent_Language.Header" xml:space="preserve"> <value>Characters</value> </data> <data name="QuickAccent_SelectedLanguage.Header" xml:space="preserve"> <value>Choose a character set</value> </data> <data name="QuickAccent_SelectedLanguage.Description" xml:space="preserve"> <value>Show only accented characters common to the selected set</value> </data> <data name="QuickAccent_SelectedLanguage_All.Content" xml:space="preserve"> <value>All available</value> </data> <data name="QuickAccent_SelectedLanguage_Catalan.Content" xml:space="preserve"> <value>Catalan</value> </data> <data name="QuickAccent_SelectedLanguage_Currency.Content" xml:space="preserve"> <value>Currency</value> </data> <data name="QuickAccent_SelectedLanguage_Croatian.Content" xml:space="preserve"> <value>Croatian</value> </data> <data name="QuickAccent_SelectedLanguage_Czech.Content" xml:space="preserve"> <value>Czech</value> </data> <data name="QuickAccent_SelectedLanguage_Gaeilge.Content" xml:space="preserve"> <value>Gaeilge</value> <comment>Gaelic language spoken in Ireland</comment> </data> <data name="QuickAccent_SelectedLanguage_Gaidhlig.Content" xml:space="preserve"> <value>Gàidhlig</value> <comment>Scottish Gaelic</comment> </data> <data name="QuickAccent_SelectedLanguage_German.Content" xml:space="preserve"> <value>German</value> </data> <data name="QuickAccent_SelectedLanguage_Hebrew.Content" xml:space="preserve"> <value>Hebrew</value> </data> <data name="QuickAccent_SelectedLanguage_French.Content" xml:space="preserve"> <value>French</value> </data> <data name="QuickAccent_SelectedLanguage_Estonian.Content" xml:space="preserve"> <value>Estonian</value> </data> <data name="QuickAccent_SelectedLanguage_Lithuanian.Content" xml:space="preserve"> <value>Lithuanian</value> </data> <data name="QuickAccent_SelectedLanguage_Macedonian.Content" xml:space="preserve"> <value>Macedonian</value> </data> <data name="QuickAccent_SelectedLanguage_Maori.Content" xml:space="preserve"> <value>Maori</value> </data> <data name="QuickAccent_SelectedLanguage_Dutch.Content" xml:space="preserve"> <value>Dutch</value> </data> <data name="QuickAccent_SelectedLanguage_Norwegian.Content" xml:space="preserve"> <value>Norwegian</value> </data> <data name="QuickAccent_SelectedLanguage_Pinyin.Content" xml:space="preserve"> <value>Pinyin</value> </data> <data name="QuickAccent_SelectedLanguage_Polish.Content" xml:space="preserve"> <value>Polish</value> </data> <data name="QuickAccent_SelectedLanguage_Portuguese.Content" xml:space="preserve"> <value>Portuguese</value> </data> <data name="QuickAccent_SelectedLanguage_Slovakian.Content" xml:space="preserve"> <value>Slovakian</value> </data> <data name="QuickAccent_SelectedLanguage_Spanish.Content" xml:space="preserve"> <value>Spanish</value> </data> <data name="QuickAccent_SelectedLanguage_Swedish.Content" xml:space="preserve"> <value>Swedish</value> </data> <data name="QuickAccent_SelectedLanguage_Turkish.Content" xml:space="preserve"> <value>Turkish</value> </data> <data name="QuickAccent_SelectedLanguage_Icelandic.Content" xml:space="preserve"> <value>Icelandic</value> </data> <data name="QuickAccent_SelectedLanguage_Romanian.Content" xml:space="preserve"> <value>Romanian</value> </data> <data name="QuickAccent_SelectedLanguage_Serbian.Content" xml:space="preserve"> <value>Serbian</value> </data> <data name="QuickAccent_SelectedLanguage_Hungarian.Content" xml:space="preserve"> <value>Hungarian</value> </data> <data name="QuickAccent_SelectedLanguage_Italian.Content" xml:space="preserve"> <value>Italian</value> </data> <data name="QuickAccent_SelectedLanguage_Kurdish.Content" xml:space="preserve"> <value>Kurdish</value> </data> <data name="QuickAccent_SelectedLanguage_Welsh.Content" xml:space="preserve"> <value>Welsh</value> </data> <data name="Hosts.ModuleDescription" xml:space="preserve"> <value>Quick and simple utility for managing hosts file.</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Hosts.ModuleTitle" xml:space="preserve"> <value>Hosts File Editor</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Shell_Hosts.Content" xml:space="preserve"> <value>Hosts File Editor</value> <comment>Products name: Navigation view item name for Hosts File Editor</comment> </data> <data name="Hosts_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Hosts_Toggle_ShowStartupWarning.Header" xml:space="preserve"> <value>Show a warning at startup</value> </data> <data name="Hosts_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="Hosts_LaunchButtonControl.Description" xml:space="preserve"> <value>Manage your hosts file</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Hosts_LaunchButtonControl.Header" xml:space="preserve"> <value>Launch Host File Editor</value> <comment>"Host File Editor" is a product name</comment> </data> <data name="Hosts_LaunchButton_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Launch Host File Editor</value> <comment>"Host File Editor" is a product name</comment> </data> <data name="Hosts_AdditionalLinesPosition.Header" xml:space="preserve"> <value>Position of additional content</value> </data> <data name="Hosts_AdditionalLinesPosition_Bottom.Content" xml:space="preserve"> <value>Bottom</value> </data> <data name="Hosts_AdditionalLinesPosition_Top.Content" xml:space="preserve"> <value>Top</value> </data> <data name="Hosts_Behavior_GroupSettings.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="Launch_Hosts.Content" xml:space="preserve"> <value>Launch Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="LearnMore_Hosts.Text" xml:space="preserve"> <value>Learn more about Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Oobe_Hosts.Description" xml:space="preserve"> <value>Hosts File Editor is a quick and simple utility for managing hosts file.</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Oobe_Hosts.Title" xml:space="preserve"> <value>Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Hosts_Toggle_LaunchAdministrator.Description" xml:space="preserve"> <value>Needs to be launched as administrator in order to make changes to the hosts file</value> </data> <data name="Hosts_Toggle_LaunchAdministrator.Header" xml:space="preserve"> <value>Launch as administrator</value> </data> <data name="ShortcutGuide_PressTimeForTaskbarIconShortcuts.Header" xml:space="preserve"> <value>Press duration before showing taskbar icon shortcuts (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="FileLocksmith.ModuleDescription" xml:space="preserve"> <value>A Windows shell extension to find out which processes are using the selected files and directories.</value> </data> <data name="FileLocksmith.ModuleTitle" xml:space="preserve"> <value>File Locksmith</value> </data> <data name="Shell_FileLocksmith.Content" xml:space="preserve"> <value>File Locksmith</value> <comment>Product name: Navigation view item name for FileLocksmith</comment> </data> <data name="FileLocksmith_Enable_FileLocksmith.Header" xml:space="preserve"> <value>Enable File Locksmith</value> <comment>File Locksmith is the name of the utility</comment> </data> <data name="FileLocksmith_Toggle_StandardContextMenu.Content" xml:space="preserve"> <value>Default and extended context menu</value> </data> <data name="FileLocksmith_Toggle_ExtendedContextMenu.Content" xml:space="preserve"> <value>Extended context menu only</value> </data> <data name="FileLocksmith_Toggle_ContextMenu.Header" xml:space="preserve"> <value>Show File Locksmith in</value> </data> <data name="FileLocksmith_ShellIntegration.Header" xml:space="preserve"> <value>Shell integration</value> <comment>This refers to directly integrating in with Windows</comment> </data> <data name="GPO_IsSettingForced.Title" xml:space="preserve"> <value>The system administrator is forcing this setting.</value> </data> <data name="Hosts_AdditionalLinesPosition.Description" xml:space="preserve"> <value>Additional content includes the file header and lines that can't parse</value> </data> <data name="TextExtractor_Languages.Header" xml:space="preserve"> <value>Preferred language</value> </data> <data name="Alternate_OOBE_AlwaysOnTop_Description.Text" xml:space="preserve"> <value>Pin a window so that:</value> </data> <data name="Alternate_OOBE_AlwaysOnTop_Title.Text" xml:space="preserve"> <value>Always On Top</value> </data> <data name="Alternate_OOBE_ColorPicker_Description.Text" xml:space="preserve"> <value>To pick a color:</value> </data> <data name="Alternate_OOBE_ColorPicker_Title.Text" xml:space="preserve"> <value>Color Picker</value> </data> <data name="Alternate_OOBE_Description.Text" xml:space="preserve"> <value>Here are a few shortcuts to get you started:</value> </data> <data name="Alternate_OOBE_FancyZones_Description.Text" xml:space="preserve"> <value>To open the FancyZones editor, press:</value> </data> <data name="Alternate_OOBE_FancyZones_Title.Text" xml:space="preserve"> <value>FancyZones</value> </data> <data name="Alternate_OOBE_Run_Description.Text" xml:space="preserve"> <value>Get access to your files and more:</value> </data> <data name="Alternate_OOBE_Run_Title.Text" xml:space="preserve"> <value>PowerToys Run</value> </data> <data name="General_Experimentation.Header" xml:space="preserve"> <value>Experimentation</value> </data> <data name="GeneralPage_EnableExperimentation.Description" xml:space="preserve"> <value>Note: Only Windows Insider builds may be selected for experimentation</value> </data> <data name="GeneralPage_EnableExperimentation.Header" xml:space="preserve"> <value>Allow experimentation with new features</value> </data> <data name="GPO_ExperimentationIsDisallowed.Title" xml:space="preserve"> <value>The system administrator has disabled experimentation.</value> </data> <data name="Shell_PastePlain.Content" xml:space="preserve"> <value>Paste As Plain Text</value> <comment>Product name: Navigation view item name for Paste as Plain Text</comment> </data> <data name="PastePlain.ModuleDescription" xml:space="preserve"> <value>Paste As Plain Text is a quick shortcut for pasting the text contents of your clipboard without formatting. Note: the formatted text in the clipboard is replaced with the unformatted text.</value> </data> <data name="PastePlain.ModuleTitle" xml:space="preserve"> <value>Paste As Plain Text</value> </data> <data name="PastePlain_Cancel" xml:space="preserve"> <value>cancel</value> </data> <data name="PastePlain_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Paste As Plain Text</value> </data> <data name="Oobe_PastePlain.Description" xml:space="preserve"> <value>Paste As Plain Text strips rich formatting from your clipboard data and pastes it as non-formatted text.</value> </data> <data name="Oobe_PastePlain.Title" xml:space="preserve"> <value>Paste As Plain Text</value> </data> <data name="Oobe_PastePlain_HowToUse.Text" xml:space="preserve"> <value>to paste your clipboard data as plain text. Note: this will replace the formatted text in your clipboard with the plain text.</value> </data> <data name="AllAppsTxt.Text" xml:space="preserve"> <value>All apps</value> </data> <data name="BackBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Back</value> </data> <data name="BackLabel.Text" xml:space="preserve"> <value>Back</value> </data> <data name="BugReportBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Bug report</value> </data> <data name="BugReportTooltip.Text" xml:space="preserve"> <value>Bug report</value> </data> <data name="DocsBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Documentation</value> </data> <data name="DocsTooltip.Text" xml:space="preserve"> <value>Documentation</value> </data> <data name="FZEditorString" xml:space="preserve"> <value>FancyZones Editor</value> <comment>Do not localize this string</comment> </data> <data name="MoreBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>More</value> </data> <data name="MoreLabel.Text" xml:space="preserve"> <value>More</value> </data> <data name="SettingsBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Settings</value> </data> <data name="SettingsTooltip.Text" xml:space="preserve"> <value>Settings</value> </data> <data name="ShortcutsTxt.Text" xml:space="preserve"> <value>Shortcuts</value> </data> <data name="UpdateAvailable.Title" xml:space="preserve"> <value>Update available</value> </data> <data name="FileExplorerPreview_Toggle_Monaco_Max_File_Size.Header" xml:space="preserve"> <value>Maximum file size to preview</value> <comment>Size refers to the disk space used by a file</comment> </data> <data name="FileExplorerPreview_Toggle_Monaco_Max_File_Size.Description" xml:space="preserve"> <value>The maximum size, in kilobytes, for files to be displayed. This is a safety mechanism to prevent loading large files into RAM.</value> <comment>"RAM" refers to random access memory; "size" refers to disk space; "bytes" refer to the measurement unit</comment> </data> <data name="RegistryPreview.ModuleDescription" xml:space="preserve"> <value>A quick little utility to visualize and edit complex Windows Registry files.</value> </data> <data name="RegistryPreview.ModuleTitle" xml:space="preserve"> <value>Registry Preview</value> </data> <data name="Shell_RegistryPreview.Content" xml:space="preserve"> <value>Registry Preview</value> <comment>Product name: Navigation view item name for Registry Preview</comment> </data> <data name="RegistryPreview_Enable_RegistryPreview.Header" xml:space="preserve"> <value>Enable Registry Preview</value> <comment>Registry Preview is the name of the utility</comment> </data> <data name="Oobe_RegistryPreview_HowToUse.Text" xml:space="preserve"> <value>In File Explorer, right-click a .REG file and select **Preview** from the context menu.</value> </data> <data name="Oobe_RegistryPreview_TipsAndTricks.Text" xml:space="preserve"> <value>You can preview or edit Registry files in File Explorer or by opening the app from the PowerToys launcher.</value> </data> <data name="Oobe_RegistryPreview.Description" xml:space="preserve"> <value>Registry Preview is a quick little utility to visualize and edit complex Windows Registry files.</value> </data> <data name="Oobe_RegistryPreview.Title" xml:space="preserve"> <value>Registry Preview</value> <comment>Do not localize this string</comment> </data> <data name="LearnMore_RegistryPreview.Text" xml:space="preserve"> <value>Learn more about Registry Preview</value> <comment>Registry Preview is a product name, do not loc</comment> </data> <data name="Launch_RegistryPreview.Content" xml:space="preserve"> <value>Launch Registry Preview</value> <comment>"Registry Preview" is the name of the utility</comment> </data> <data name="MouseUtils_MouseJump.Description" xml:space="preserve"> <value>Quickly move the mouse pointer long distances.</value> <comment>"Mouse Jump" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_MouseJump.Header" xml:space="preserve"> <value>Mouse Jump</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_MouseJump_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to turn on or off this mode</value> </data> <data name="MouseUtils_MouseJump_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MouseUtils_Enable_MouseJump.Header" xml:space="preserve"> <value>Enable Mouse Jump</value> <comment>"Mouse Jump" is the name of the utility.</comment> </data> <data name="GPO_AutoDownloadUpdatesIsDisabled.Title" xml:space="preserve"> <value>The system administrator has disabled the automatic download of updates.</value> </data> <data name="Hosts_Toggle_LoopbackDuplicates.Description" xml:space="preserve"> <value>127.0.0.1, ::1, ...</value> <comment>"127.0.0.1 and ::1" are well known loopback addresses, do not loc</comment> </data> <data name="Hosts_Toggle_LoopbackDuplicates.Header" xml:space="preserve"> <value>Consider loopback addresses as duplicates</value> </data> <data name="RegistryPreview_Launch_GroupSettings.Header" xml:space="preserve"> <value>Launch</value> </data> <data name="RegistryPreview_LaunchButton_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Launch Registry Preview</value> </data> <data name="RegistryPreview_LaunchButtonControl.Header" xml:space="preserve"> <value>Launch Registry Preview</value> </data> <data name="RegistryPreview_DefaultRegApp.Header" xml:space="preserve"> <value>Default app</value> </data> <data name="RegistryPreview_DefaultRegApp.Description" xml:space="preserve"> <value>Make Registry Preview default app for opening .reg files</value> <comment>Registry Preview is app name. Do not localize.</comment> </data> <data name="PastePlain_ShortcutWarning.Title" xml:space="preserve"> <value>Using this shortcut may prevent non-text paste actions (e.g. images, files) or built-in paste plain text actions in other applications from functioning.</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize.Header" xml:space="preserve"> <value>Thumbnail Size</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Description_Prefix.Text" xml:space="preserve"> <value>Constrain thumbnail image size to a maximum of</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Description_Suffix.Text" xml:space="preserve"> <value>pixels</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Edit_Height.Header" xml:space="preserve"> <value>Maximum height (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Edit_Width.Header" xml:space="preserve"> <value>Maximum width (px)</value> <comment>px = pixels</comment> </data> <data name="Oobe_Peek.Description" xml:space="preserve"> <value>A lightning fast file preview feature for Windows.</value> </data> <data name="Oobe_Peek.Title" xml:space="preserve"> <value>Peek</value> </data> <data name="Oobe_Peek_HowToUse.Text" xml:space="preserve"> <value>to preview the file that's currently selected in File Explorer.</value> </data> <data name="MWB_PCNameLabel.PlaceholderText" xml:space="preserve"> <value>Device name</value> </data> <data name="MWB_SecurityKeyLabel.PlaceholderText" xml:space="preserve"> <value>Security key</value> </data> <data name="Hosts_Encoding.Description" xml:space="preserve"> <value>Choose the encoding of the hosts file</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Hosts_Encoding.Header" xml:space="preserve"> <value>Encoding</value> </data> <data name="Hosts_Encoding_Utf8.Content" xml:space="preserve"> <value>UTF-8</value> </data> <data name="Hosts_Encoding_Utf8Bom.Content" xml:space="preserve"> <value>UTF-8 with BOM</value> </data> <data name="MouseUtils_MouseHighlighter_AlwaysColor.Header" xml:space="preserve"> <value>Always highlight color</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsAutoHide.Content" xml:space="preserve"> <value>Automatically hide crosshairs when the mouse pointer is hidden</value> </data> <data name="MouseUtils_AutoActivate.Content" xml:space="preserve"> <value>Automatically activate on utility startup</value> </data> <data name="Run_FindMorePlugins.Text" xml:space="preserve"> <value>Find more plugins</value> </data> <data name="Run_PluginUseFindMorePlugins.Content" xml:space="preserve"> <value>Find more plugins</value> </data> <data name="Run_SomePluginsAreGpoManaged.Title" xml:space="preserve"> <value>The system administrator is managing the enabled state of some plugins.</value> </data> <data name="AlwaysOnTop_FrameOpacity.Header" xml:space="preserve"> <value>Opacity (%)</value> </data> <data name="MouseUtils_FindMyMouse_ActivationCustomizedShortcut.Content" xml:space="preserve"> <value>Custom shortcut</value> </data> <data name="MouseUtils_FindMyMouse_ActivationDoubleRightControlPress.Content" xml:space="preserve"> <value>Press Right Control twice</value> <comment>Right control is the physical key on the keyboard.</comment> </data> <data name="MouseUtils_FindMyMouse_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to turn on or off this mode</value> </data> <data name="MouseUtils_FindMyMouse_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="SettingsWindow_AdminTitle" xml:space="preserve"> <value>Administrator: PowerToys Settings</value> <comment>Title of the settings window when running as administrator</comment> </data> </root>
<?xml version="1.0" encoding="utf-8"?> <root> <!-- Microsoft ResX Schema Version 2.0 The primary goals of this format is to allow a simple XML format that is mostly human readable. The generation and parsing of the various data types are done through the TypeConverter classes associated with the data types. Example: ... ado.net/XML headers & schema ... <resheader name="resmimetype">text/microsoft-resx</resheader> <resheader name="version">2.0</resheader> <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader> <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader> <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data> <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data> <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64"> <value>[base64 mime encoded serialized .NET Framework object]</value> </data> <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value> <comment>This is a comment</comment> </data> There are any number of "resheader" rows that contain simple name/value pairs. Each data row contains a name, and value. The row also contains a type or mimetype. Type corresponds to a .NET class that support text/value conversion through the TypeConverter architecture. Classes that don't support this are serialized and stored with the mimetype set. The mimetype is used for serialized objects, and tells the ResXResourceReader how to depersist the object. This is currently not extensible. For a given mimetype the value must be set accordingly: Note - application/x-microsoft.net.object.binary.base64 is the format that the ResXResourceWriter will generate, however the reader can read any of the formats listed below. mimetype: application/x-microsoft.net.object.binary.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.soap.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Soap.SoapFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.bytearray.base64 value : The object must be serialized into a byte array : using a System.ComponentModel.TypeConverter : and then encoded with base64 encoding. --> <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> <xsd:import namespace="http://www.w3.org/XML/1998/namespace" /> <xsd:element name="root" msdata:IsDataSet="true"> <xsd:complexType> <xsd:choice maxOccurs="unbounded"> <xsd:element name="metadata"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" /> </xsd:sequence> <xsd:attribute name="name" use="required" type="xsd:string" /> <xsd:attribute name="type" type="xsd:string" /> <xsd:attribute name="mimetype" type="xsd:string" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="assembly"> <xsd:complexType> <xsd:attribute name="alias" type="xsd:string" /> <xsd:attribute name="name" type="xsd:string" /> </xsd:complexType> </xsd:element> <xsd:element name="data"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" /> <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="resheader"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" /> </xsd:complexType> </xsd:element> </xsd:choice> </xsd:complexType> </xsd:element> </xsd:schema> <resheader name="resmimetype"> <value>text/microsoft-resx</value> </resheader> <resheader name="version"> <value>2.0</value> </resheader> <resheader name="reader"> <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <resheader name="writer"> <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <data name="Attribution_Rooler.Text" xml:space="preserve"> <value>Inspired by Rooler</value> <comment>Rooler is a name of the tool.</comment> </data> <data name="Shell_VideoConference.Content" xml:space="preserve"> <value>Video Conference Mute</value> <comment>Navigation view item name for Video Conference</comment> </data> <data name="Shell_MeasureTool.Content" xml:space="preserve"> <value>Screen Ruler</value> <comment>Product name: Navigation view item name for Screen Ruler</comment> </data> <data name="MeasureTool.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="MeasureTool.ModuleDescription" xml:space="preserve"> <value>Screen Ruler is a quick and easy way to measure pixels on your screen.</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool.ModuleTitle" xml:space="preserve"> <value>Screen Ruler</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool_ActivationSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="MeasureTool_Settings.Header" xml:space="preserve"> <value>Behavior</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MeasureTool_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to bring up the command bar</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool_DefaultMeasureStyle.Header" xml:space="preserve"> <value>Default measure style</value> </data> <data name="MeasureTool_DefaultMeasureStyle.Description" xml:space="preserve"> <value>The utility will start having the selected style activated</value> </data> <data name="MeasureTool_DefaultMeasureStyle_None.Content" xml:space="preserve"> <value>None</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Bounds.Content" xml:space="preserve"> <value>Bounds</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Spacing.Content" xml:space="preserve"> <value>Spacing</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Horizontal_Spacing.Content" xml:space="preserve"> <value>Horizontal spacing</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Vertical_Spacing.Content" xml:space="preserve"> <value>Vertical spacing</value> </data> <data name="MeasureTool_UnitsOfMeasure.Header" xml:space="preserve"> <value>Units of measurement</value> </data> <data name="MeasureTool_UnitsOfMeasure_Pixels.Content" xml:space="preserve"> <value>Pixels</value> </data> <data name="MeasureTool_UnitsOfMeasure_Inches.Content" xml:space="preserve"> <value>Inches</value> </data> <data name="MeasureTool_UnitsOfMeasure_Centimeters.Content" xml:space="preserve"> <value>Centimeters</value> </data> <data name="MeasureTool_PixelTolerance.Header" xml:space="preserve"> <value>Pixel tolerance for edge detection</value> </data> <data name="MeasureTool_MeasureCrossColor.Header" xml:space="preserve"> <value>Line color</value> </data> <data name="MeasureTool_ContinuousCapture.Header" xml:space="preserve"> <value>Capture screen continuously during measuring</value> </data> <data name="MeasureTool_ContinuousCapture.Description" xml:space="preserve"> <value>Refresh screen contexts in real-time instead of making a screenshot once</value> </data> <data name="MeasureTool_PerColorChannelEdgeDetection.Header" xml:space="preserve"> <value>Per color channel edge detection</value> </data> <data name="MeasureTool_PerColorChannelEdgeDetection.Description" xml:space="preserve"> <value>If enabled, test that all color channels are within a tolerance distance from each other. Otherwise, check that the sum of all color channels differences is smaller than the tolerance.</value> </data> <data name="MeasureTool_DrawFeetOnCross.Header" xml:space="preserve"> <value>Draw feet on cross</value> </data> <data name="MeasureTool_DrawFeetOnCross.Description" xml:space="preserve"> <value>Adds feet to the end of cross lines</value> </data> <data name="MeasureTool_EnableMeasureTool.Header" xml:space="preserve"> <value>Enable Screen Ruler</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MouseWithoutBorders_ActivationSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="MouseWithoutBorders_DeviceLayoutSettings.Header" xml:space="preserve"> <value>Device layout</value> </data> <data name="MouseWithoutBorders_DeviceLayoutSettings.Description" xml:space="preserve"> <value>Drag and drop a machine to rearrange the order.</value> </data> <data name="MouseWithoutBorders_CannotDragDropAsAdmin.Title" xml:space="preserve"> <value>It is not possible to use drag and drop while running PowerToys elevated. As a workaround, please restart PowerToys without elevation to edit the device layout.</value> </data> <data name="MouseWithoutBorders_KeySettings.Header" xml:space="preserve"> <value>Encryption key</value> </data> <data name="MouseWithoutBorders_SecurityKey.Header" xml:space="preserve"> <value>Security key</value> </data> <data name="MouseWithoutBorders_SecurityKey.Description" xml:space="preserve"> <value>The key must be auto generated in one machine by clicking on New Key, then typed in other machines</value> </data> <data name="MouseWithoutBorders_NewKey.Content" xml:space="preserve"> <value>New key</value> </data> <data name="MouseWithoutBorders_CopyMachineName.Text" xml:space="preserve"> <value>Copy to clipboard</value> </data> <data name="MouseWithoutBorders_ReconnectButton.Text" xml:space="preserve"> <value>Refresh connections</value> </data> <data name="MouseWithoutBorders_ReconnectTooltip.Text" xml:space="preserve"> <value>Reestablishes connections with other devices if you are experiencing issues.</value> </data> <data name="MouseWithoutBorders_ThisMachineNameLabel.Header" xml:space="preserve"> <value>Host name of this device</value> </data> <data name="MouseWithoutBorders_Connect.Content" xml:space="preserve"> <value>Connect</value> </data> <data name="MouseWithoutBorders_UninstallService.Header" xml:space="preserve"> <value>Uninstall service</value> </data> <data name="MouseWithoutBorders_UninstallService.Description" xml:space="preserve"> <value>Removes the service from the computer. Needs to run as administrator.</value> </data> <data name="MouseWithoutBorders_Settings.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="MouseWithoutBorders_TroubleShooting.Header" xml:space="preserve"> <value>Troubleshooting</value> </data> <data name="MouseWithoutBorders_AddFirewallRuleButtonControl.Header" xml:space="preserve"> <value>Add a firewall rule for Mouse Without Borders</value> <comment>"Mouse Without Borders" is a product name</comment> </data> <data name="MouseWithoutBorders_AddFirewallRuleButtonControl.Description" xml:space="preserve"> <value>Adding a firewall rule might help solve connection issues.</value> </data> <data name="MouseWithoutBorders_RunAsAdminText.Title" xml:space="preserve"> <value>You need to run as administrator to modify this setting.</value> </data> <data name="MouseWithoutBorders_ServiceUserUninstallWarning.Title" xml:space="preserve"> <value>If PowerToys is installed as a user, uninstalling/upgrading may require the Mouse Without Borders service to be removed manually later.</value> </data> <data name="MouseWithoutBorders_ServiceSettings.Header" xml:space="preserve"> <value>Service</value> </data> <data name="MouseWithoutBorders_Toggle_Enable.Header" xml:space="preserve"> <value>Enable Mouse Without Borders</value> </data> <data name="MouseWithoutBorders.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="MouseWithoutBorders.ModuleDescription" xml:space="preserve"> <value>Mouse Without Borders is a quick and easy way to move your cursor across multiple devices.</value> <comment>"Mouse Without Borders" is the name of the utility</comment> </data> <data name="MouseWithoutBorders.ModuleTitle" xml:space="preserve"> <value>Mouse Without Borders</value> <comment>"Mouse Without Borders" is the name of the utility</comment> </data> <data name="MouseWithoutBorders_UseService.Header" xml:space="preserve"> <value>Use Service</value> </data> <data name="MouseWithoutBorders_UseService.Description" xml:space="preserve"> <value>Runs in service mode, that allows MWB to control remote machines when they're locked. Also allows control of system and administrator applications.</value> </data> <data name="MouseWithoutBorders_MatrixOneRow.Header" xml:space="preserve"> <value>Devices in a single row</value> </data> <data name="MouseWithoutBorders_MatrixOneRow.Description" xml:space="preserve"> <value>Sets whether the devices are aligned on a single row. A two by two matrix is considered otherwise.</value> </data> <data name="MouseWithoutBorders_WrapMouse.Header" xml:space="preserve"> <value>Wrap mouse</value> </data> <data name="MouseWithoutBorders_WrapMouse.Description" xml:space="preserve"> <value>Move control back to the first machine when mouse moves past the last one.</value> </data> <data name="MouseWithoutBorders_ShareClipboard.Header" xml:space="preserve"> <value>Share clipboard</value> </data> <data name="MouseWithoutBorders_TransferFile.Header" xml:space="preserve"> <value>Transfer file</value> </data> <data name="MouseWithoutBorders_HideMouseAtScreenEdge.Header" xml:space="preserve"> <value>Hide mouse at the screen edge</value> </data> <data name="MouseWithoutBorders_DrawMouseCursor.Header" xml:space="preserve"> <value>Draw mouse cursor</value> </data> <data name="MouseWithoutBorders_ValidateRemoteMachineIP.Header" xml:space="preserve"> <value>Validate remote machine IP</value> </data> <data name="MouseWithoutBorders_SameSubnetOnly.Header" xml:space="preserve"> <value>Same subnet only</value> </data> <data name="MouseWithoutBorders_BlockScreenSaverOnOtherMachines.Header" xml:space="preserve"> <value>Block screen saver on other machines</value> </data> <data name="MouseWithoutBorders_MoveMouseRelatively.Header" xml:space="preserve"> <value>Move mouse relatively</value> </data> <data name="MouseWithoutBorders_BlockMouseAtScreenCorners.Header" xml:space="preserve"> <value>Block mouse at screen corners</value> </data> <data name="MouseWithoutBorders_ShowClipboardAndNetworkStatusMessages.Header" xml:space="preserve"> <value>Show clipboard and network status messages</value> </data> <data name="MouseWithoutBorders_ShowOriginalUI.Header" xml:space="preserve"> <value>Show the original Mouse Without Borders UI</value> </data> <data name="MouseWithoutBorders_ShowOriginalUI.Description" xml:space="preserve"> <value>This is accessible from the system tray and requires a restart.</value> </data> <data name="MouseWithoutBorders_ShareClipboard.Description" xml:space="preserve"> <value>If share clipboard stops working, Ctrl+Alt+Del then Esc may solve the problem.</value> </data> <data name="MouseWithoutBorders_TransferFile.Description" xml:space="preserve"> <value>If a file (&lt;100MB) is copied, it will be transferred to the remote machine clipboard.</value> </data> <data name="MouseWithoutBorders_HideMouseAtScreenEdge.Description" xml:space="preserve"> <value>Hide the mouse cursor at the top edge of the screen when switching to other machine. This option also steals the focus from any full-screen app to ensure the keyboard input is redirected.</value> </data> <data name="MouseWithoutBorders_DrawMouseCursor.Description" xml:space="preserve"> <value>Mouse cursor may not be visible in Windows 10 and later versions of Windows when there is no physical mouse attached.</value> </data> <data name="MouseWithoutBorders_ValidateRemoteMachineIP.Description" xml:space="preserve"> <value>Reverse DNS lookup to validate machine IP Address.</value> </data> <data name="MouseWithoutBorders_SameSubnetOnly.Description" xml:space="preserve"> <value>Only connect to machines in the same intranet NNN.NNN.*.* (only works when both machines have IPv4 enabled)</value> </data> <data name="MouseWithoutBorders_IPAddressMapping_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: MyLaptop 192.168.0.24</value> <comment>Don't translate MyLaptop</comment> </data> <data name="MouseWithoutBorders_IPAddressMapping.Header" xml:space="preserve"> <value>IP address mapping</value> </data> <data name="MouseWithoutBorders_IPAddressMapping.Description" xml:space="preserve"> <value>Resolve machine's IP address using manually entered mappings below.</value> </data> <data name="MouseWithoutBorders_BlockScreenSaverOnOtherMachines.Description" xml:space="preserve"> <value>Prevent screen saver from starting on other machines when user is actively working on this machine.</value> </data> <data name="MouseWithoutBorders_MoveMouseRelatively.Description" xml:space="preserve"> <value>Use this option when remote machine's monitor settings are different, or remote machine has multiple monitors.</value> </data> <data name="MouseWithoutBorders_BlockMouseAtScreenCorners.Description" xml:space="preserve"> <value>To avoid accident machine-switch at screen corners.</value> </data> <data name="MouseWithoutBorders_ShowClipboardAndNetworkStatusMessages.Description" xml:space="preserve"> <value>Show clipboard activities and network status in system tray notifications</value> </data> <data name="MouseWithoutBorders_KeyboardShortcuts_Group.Header" xml:space="preserve"> <value>Keyboard shortcuts</value> <comment>keyboard is the hardware peripheral</comment> </data> <data name="MouseWithoutBorders_AdvancedSettings_Group.Header" xml:space="preserve"> <value>Advanced Settings</value> </data> <data name="MouseWithoutBorders_EasyMouseOption.Header" xml:space="preserve"> <value>Easy Mouse: move between machines by moving the mouse pointer to the screen edges.</value> </data> <data name="MouseWithoutBorders_EasyMouseOption.Description" xml:space="preserve"> <value>Can also be set to move only when pressing Shift or Ctrl.</value> <comment>Shift and Ctrl are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_EasyMouseOption_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_EasyMouseOption_Enabled.Content" xml:space="preserve"> <value>Enabled</value> </data> <data name="MouseWithoutBorders_EasyMouseOption_Ctrl.Content" xml:space="preserve"> <value>Ctrl</value> <comment>This is the Ctrl keyboard key</comment> </data> <data name="MouseWithoutBorders_EasyMouseOption_Shift.Content" xml:space="preserve"> <value>Shift</value> <comment>This is the Shift keyboard key</comment> </data> <data name="MouseWithoutBorders_LockMachinesShortcut.Header" xml:space="preserve"> <value>Shortcut to lock all machines.</value> </data> <data name="MouseWithoutBorders_LockMachinesShortcut.Description" xml:space="preserve"> <value>Hit this hotkey twice to lock all machines. Note: Only the machines which have the same shortcut configured will be locked.</value> </data> <data name="MouseWithoutBorders_ToggleEasyMouseShortcut.Header" xml:space="preserve"> <value>Shortcut to toggle Easy Mouse.</value> <comment>Ctrl and Alt are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_ToggleEasyMouseShortcut.Description" xml:space="preserve"> <value>Only works if EasyMouse is set to Enabled or Disabled.</value> </data> <data name="MouseWithoutBorders_ToggleEasyMouseShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut.Header" xml:space="preserve"> <value>Shortcut to switch between machines. Ctrl+Alt+:</value> <comment>Ctrl and Alt are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut.Description" xml:space="preserve"> <value>Click on Ctrl+Alt+ the chosen option to switch between machines.</value> <comment>Ctrl and Alt are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut_F1.Content" xml:space="preserve"> <value>F1, F2, F3, F4</value> <comment>Don't localize. These are keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut_1.Content" xml:space="preserve"> <value>1, 2, 3, 4</value> <comment>Don't localize. These are keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_LockMachinesShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_ReconnectShortcut.Header" xml:space="preserve"> <value>Shortcut to try reconnecting</value> </data> <data name="MouseWithoutBorders_ReconnectShortcut.Description" xml:space="preserve"> <value>Just in case the connection is lost for any reason.</value> </data> <data name="MouseWithoutBorders_ReconnectShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut.Header" xml:space="preserve"> <value>Shortcut to switch to multiple machine mode.</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut.Description" xml:space="preserve"> <value>Allows controlling all computers at once.</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut_Ctrl3.Content" xml:space="preserve"> <value>Ctrl three times</value> <comment>This is the Ctrl keyboard key</comment> </data> <data name="VideoConference_Enable.Header" xml:space="preserve"> <value>Enable Video Conference Mute</value> </data> <data name="VideoConference.ModuleDescription" xml:space="preserve"> <value>Video Conference Mute is a quick and easy way to do a global "mute" of both your microphone and webcam. Disabling this module or closing PowerToys will unmute the microphone and camera.</value> </data> <data name="VideoConference_CameraAndMicrophoneMuteHotkeyControl_Header.Header" xml:space="preserve"> <value>Mute camera &amp; microphone</value> </data> <data name="VideoConference_MicrophoneMuteHotkeyControl_Header.Header" xml:space="preserve"> <value>Mute microphone</value> </data> <data name="VideoConference_MicrophonePushToTalkHotkeyControl_Header.Header" xml:space="preserve"> <value>Push to talk</value> </data> <data name="VideoConference_CameraMuteHotkeyControl_Header.Header" xml:space="preserve"> <value>Mute camera</value> </data> <data name="VideoConference_SelectedCamera.Header" xml:space="preserve"> <value>Selected camera</value> </data> <data name="VideoConference_SelectedMicrophone.Header" xml:space="preserve"> <value>Selected microphone</value> </data> <data name="VideoConference_PushToReverse.Header" xml:space="preserve"> <value>Push to reverse</value> </data> <data name="VideoConference_PushToReverse.Description" xml:space="preserve"> <value>If enabled, allows both push to talk and push to mute, depending on microphone state</value> </data> <data name="VideoConference_CameraOverlayImagePathHeader.Header" xml:space="preserve"> <value>Image displayed when camera is muted</value> </data> <data name="VideoConference_ToolbarPosition.Header" xml:space="preserve"> <value>Toolbar position</value> </data> <data name="VideoConference_ToolbarPosition_TopCenter.Content" xml:space="preserve"> <value>Top center</value> </data> <data name="VideoConference_ToolbarPosition_TopLeftCorner.Content" xml:space="preserve"> <value>Top left corner</value> </data> <data name="VideoConference_ToolbarPosition_TopRightCorner.Content" xml:space="preserve"> <value>Top right corner</value> </data> <data name="VideoConference_ToolbarPosition_BottomLeftCorner.Content" xml:space="preserve"> <value>Bottom left corner</value> </data> <data name="VideoConference_ToolbarPosition_BottomCenter.Content" xml:space="preserve"> <value>Bottom center</value> </data> <data name="VideoConference_ToolbarPosition_BottomRightCorner.Content" xml:space="preserve"> <value>Bottom right corner</value> </data> <data name="VideoConference_ToolbarMonitor.Header" xml:space="preserve"> <value>Show toolbar on</value> </data> <data name="VideoConference_ToolbarMonitor_Main.Content" xml:space="preserve"> <value>Main monitor</value> </data> <data name="VideoConference_ToolbarMonitor_UnderCursor.Content" xml:space="preserve"> <value>Monitor under cursor</value> </data> <data name="VideoConference_ToolbarMonitor_ActiveWindow.Content" xml:space="preserve"> <value>Active window monitor</value> </data> <data name="VideoConference_ToolbarMonitor_All.Content" xml:space="preserve"> <value>All monitors</value> </data> <data name="VideoConference_ToolbarHide.Header" xml:space="preserve"> <value>Hide toolbar</value> </data> <data name="VideoConference_ToolbarHideMuted.Content" xml:space="preserve"> <value>When both camera and microphone are muted</value> </data> <data name="VideoConference_ToolbarHideNever.Content" xml:space="preserve"> <value>Never</value> </data> <data name="VideoConference_ToolbarHideUnmuted.Content" xml:space="preserve"> <value>When both camera and microphone are unmuted</value> </data> <data name="VideoConference_ToolbarHideTimeout.Content" xml:space="preserve"> <value>After timeout</value> </data> <data name="VideoConference.ModuleTitle" xml:space="preserve"> <value>Video Conference Mute</value> </data> <data name="VideoConference_Camera.Header" xml:space="preserve"> <value>Camera</value> </data> <data name="VideoConference_Camera.Description" xml:space="preserve"> <value>To use this feature, make sure to select PowerToys VideoConference Mute as your camera source in your apps.</value> </data> <data name="VideoConference_Microphone.Header" xml:space="preserve"> <value>Microphone</value> </data> <data name="VideoConference_Toolbar.Header" xml:space="preserve"> <value>Toolbar</value> </data> <data name="VideoConference_Behavior.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="VideoConference_StartupAction.Header" xml:space="preserve"> <value>Startup action</value> </data> <data name="VideoConference_StartupActionNothing.Content" xml:space="preserve"> <value>Nothing</value> </data> <data name="VideoConference_StartupActionUnmute.Content" xml:space="preserve"> <value>Unmute</value> </data> <data name="VideoConference_StartupActionMute.Content" xml:space="preserve"> <value>Mute</value> </data> <data name="VideoConference_Shortcuts.Header" xml:space="preserve"> <value>Shortcuts</value> </data> <data name="VideoConference_CameraOverlayImageAlt.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Camera overlay image preview</value> </data> <data name="VideoConference_CameraOverlayImageBrowse.Content" xml:space="preserve"> <value>Browse</value> </data> <data name="VideoConference_CameraOverlayImageClear.Content" xml:space="preserve"> <value>Clear</value> </data> <data name="Shell_General.Content" xml:space="preserve"> <value>General</value> <comment>Navigation view item name for General</comment> </data> <data name="Shell_Awake.Content" xml:space="preserve"> <value>Awake</value> <comment>Product name: Navigation view item name for Awake</comment> </data> <data name="Shell_PowerLauncher.Content" xml:space="preserve"> <value>PowerToys Run</value> <comment>Product name: Navigation view item name for PowerToys Run</comment> </data> <data name="Shell_PowerRename.Content" xml:space="preserve"> <value>PowerRename</value> <comment>Product name: Navigation view item name for PowerRename</comment> </data> <data name="Shell_ShortcutGuide.Content" xml:space="preserve"> <value>Shortcut Guide</value> <comment>Product name: Navigation view item name for Shortcut Guide</comment> </data> <data name="Shell_PowerPreview.Content" xml:space="preserve"> <value>File Explorer add-ons</value> <comment>Product name: Navigation view item name for File Explorer. Please use File Explorer as in the context of File Explorer in Windows</comment> </data> <data name="Shell_FancyZones.Content" xml:space="preserve"> <value>FancyZones</value> <comment>Product name: Navigation view item name for FancyZones</comment> </data> <data name="Shell_ImageResizer.Content" xml:space="preserve"> <value>Image Resizer</value> <comment>Product name: Navigation view item name for Image Resizer</comment> </data> <data name="Shell_ColorPicker.Content" xml:space="preserve"> <value>Color Picker</value> <comment>Product name: Navigation view item name for Color Picker</comment> </data> <data name="Shell_KeyboardManager.Content" xml:space="preserve"> <value>Keyboard Manager</value> <comment>Product name: Navigation view item name for Keyboard Manager</comment> </data> <data name="Shell_MouseWithoutBorders.Content" xml:space="preserve"> <value>Mouse Without Borders</value> <comment>Product name: Navigation view item name for Mouse Without Borders</comment> </data> <data name="Shell_MouseUtilities.Content" xml:space="preserve"> <value>Mouse utilities</value> <comment>Product name: Navigation view item name for Mouse utilities</comment> </data> <data name="Shell_NavigationMenu_Announce_Collapse" xml:space="preserve"> <value>Navigation closed</value> <comment>Accessibility announcement when the navigation pane collapses</comment> </data> <data name="Shell_NavigationMenu_Announce_Open" xml:space="preserve"> <value>Navigation opened</value> <comment>Accessibility announcement when the navigation pane opens</comment> </data> <data name="KeyboardManager_ConfigHeader.Text" xml:space="preserve"> <value>Current configuration</value> <comment>Keyboard Manager current configuration header</comment> </data> <data name="KeyboardManager.ModuleDescription" xml:space="preserve"> <value>Reconfigure your keyboard by remapping keys and shortcuts</value> <comment>Keyboard Manager page description</comment> </data> <data name="KeyboardManager_EnableToggle.Header" xml:space="preserve"> <value>Enable Keyboard Manager</value> <comment>Keyboard Manager enable toggle header. Do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="KeyboardManager_ProfileDescription.Text" xml:space="preserve"> <value>Select the profile to display the active key remap and shortcuts</value> <comment>Keyboard Manager configuration dropdown description</comment> </data> <data name="KeyboardManager_RemapKeyboardButton.Header" xml:space="preserve"> <value>Remap a key</value> <comment>Keyboard Manager remap keyboard button content</comment> </data> <data name="KeyboardManager_Keys.Header" xml:space="preserve"> <value>Keys</value> <comment>Keyboard Manager remap keyboard header</comment> </data> <data name="KeyboardManager_RemapShortcutsButton.Header" xml:space="preserve"> <value>Remap a shortcut</value> <comment>Keyboard Manager remap shortcuts button</comment> </data> <data name="KeyboardManager_Shortcuts.Header" xml:space="preserve"> <value>Shortcuts</value> <comment>Keyboard Manager remap keyboard header</comment> </data> <data name="KeyboardManager_All_Apps_Description" xml:space="preserve"> <value>All Apps</value> <comment>Should be the same as EditShortcuts_AllApps from keyboard manager editor</comment> </data> <data name="Shortcuts.Header" xml:space="preserve"> <value>Shortcuts</value> </data> <data name="Shortcut.Header" xml:space="preserve"> <value>Shortcut</value> </data> <data name="RemapKeysList.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Current Key Remappings</value> </data> <data name="RemapShortcutsList.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Current Shortcut Remappings</value> </data> <data name="KeyboardManager_RemappedKeysListItem.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Key Remapping</value> <comment>key as in keyboard key</comment> </data> <data name="KeyboardManager_RemappedShortcutsListItem.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Shortcut Remapping</value> </data> <data name="KeyboardManager_RemappedTo.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Remapped to</value> </data> <data name="KeyboardManager_ShortcutRemappedTo.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Remapped to</value> </data> <data name="KeyboardManager_TargetApp.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>For Target Application</value> <comment>What computer application would this be for</comment> </data> <data name="KeyboardManager_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Keyboard Manager</value> <comment>do not loc, product name</comment> </data> <data name="ColorPicker.ModuleDescription" xml:space="preserve"> <value>Quick and simple system-wide color picker.</value> </data> <data name="ColorPicker_EnableColorPicker.Header" xml:space="preserve"> <value>Enable Color Picker</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="ColorPicker_ChangeCursor.Content" xml:space="preserve"> <value>Change cursor when picking a color</value> </data> <data name="PowerLauncher.ModuleDescription" xml:space="preserve"> <value>A quick launcher that has additional capabilities without sacrificing performance.</value> </data> <data name="PowerLauncher_EnablePowerLauncher.Header" xml:space="preserve"> <value>Enable PowerToys Run</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="PowerLauncher_SearchResults.Header" xml:space="preserve"> <value>Search &amp; results</value> </data> <data name="PowerLauncher_SearchResultPreference.Header" xml:space="preserve"> <value>Search result preference</value> </data> <data name="PowerLauncher_UsePinyin.Header" xml:space="preserve"> <value>Use Pinyin</value> </data> <data name="PowerLauncher_UsePinyin.Description" xml:space="preserve"> <value>Experimental: Use Pinyin on the search query. May not work for every plugin.</value> </data> <data name="PowerLauncher_SearchResultPreference_MostRecentlyUsed" xml:space="preserve"> <value>Most recently used</value> </data> <data name="PowerLauncher_SearchResultPreference_AlphabeticalOrder" xml:space="preserve"> <value>Alphabetical order</value> </data> <data name="PowerLauncher_SearchResultPreference_RunningProcessesOpenApplications" xml:space="preserve"> <value>Running processes/open applications</value> </data> <data name="PowerLauncher_SearchTypePreference.Header" xml:space="preserve"> <value>Search type preference</value> </data> <data name="PowerLauncher_SearchTypePreference_ApplicationName" xml:space="preserve"> <value>Application name</value> </data> <data name="PowerLauncher_SearchTypePreference_StringInApplication" xml:space="preserve"> <value>A string that is contained in the application</value> </data> <data name="PowerLauncher_SearchTypePreference_ExecutableName" xml:space="preserve"> <value>Executable name</value> </data> <data name="PowerLauncher_MaximumNumberOfResults.Header" xml:space="preserve"> <value>Number of results shown before scrolling</value> </data> <data name="PowerLauncher_OpenPowerLauncher.Header" xml:space="preserve"> <value>Open PowerToys Run</value> </data> <data name="PowerLauncher_OpenFileLocation.Header" xml:space="preserve"> <value>Open file location</value> </data> <data name="PowerLauncher_CopyPathLocation.Header" xml:space="preserve"> <value>Copy path location</value> </data> <data name="PowerLauncher_OpenConsole.Header" xml:space="preserve"> <value>Open console</value> <comment>console refers to Windows command prompt</comment> </data> <data name="PowerLauncher_OverrideWinRKey.Content" xml:space="preserve"> <value>Override Win+R shortcut</value> </data> <data name="PowerLauncher_OverrideWinSKey.Content" xml:space="preserve"> <value>Override Win+S shortcut</value> </data> <data name="PowerLauncher_IgnoreHotkeysInFullScreen.Content" xml:space="preserve"> <value>Ignore shortcuts in fullscreen mode</value> </data> <data name="PowerLauncher_UseCentralizedKeyboardHook.Header" xml:space="preserve"> <value>Use centralized keyboard hook</value> </data> <data name="PowerLauncher_UseCentralizedKeyboardHook.Description" xml:space="preserve"> <value>Try this if there are issues with the shortcut (PowerToys Run might not get focus when triggered from an elevated window)</value> </data> <data name="PowerLauncher_ClearInputOnLaunch.Content" xml:space="preserve"> <value>Clear the previous query on launch</value> </data> <data name="PowerLauncher_TabSelectsContextButtons.Header" xml:space="preserve"> <value>Tab through context buttons</value> </data> <data name="PowerLauncher_TabSelectsContextButtons.Description" xml:space="preserve"> <value>Pressing tab will first select through the available context buttons of the current selection before moving onto the next result</value> </data> <data name="PowerLauncher_GenerateThumbnailsFromFiles.Header" xml:space="preserve"> <value>Generate thumbnails from files</value> </data> <data name="PowerLauncher_GenerateThumbnailsFromFiles.Description" xml:space="preserve"> <value>Results will try to generate thumbnails for files. Disabling this setting may increase stability and speed</value> </data> <data name="PowerLauncher_SearchQueryResultsWithDelay.Header" xml:space="preserve"> <value>Input Smoothing</value> <comment>This is about adding a delay to wait for more input before executing a search</comment> </data> <data name="PowerLauncher_SearchQueryResultsWithDelay.Description" xml:space="preserve"> <value>Wait for more input before searching. This reduces interface jumpiness and system load.</value> </data> <data name="PowerLauncher_FastSearchInputDelayMs.Header" xml:space="preserve"> <value>Immediate plugins</value> </data> <data name="PowerLauncher_FastSearchInputDelayMs.Description" xml:space="preserve"> <value>Affects the plugins that make the UI wait for their results by this amount. Recommended: 30-50 ms.</value> </data> <data name="PowerLauncher_SlowSearchInputDelayMs.Header" xml:space="preserve"> <value>Background execution plugins</value> </data> <data name="PowerLauncher_SlowSearchInputDelayMs.Description" xml:space="preserve"> <value>Affects the plugins that execute in the background by this amount. Recommended: 100-150 ms.</value> </data> <data name="PowerLauncher_SearchInputDelayMs.Header" xml:space="preserve"> <value>Fast plugin throttle (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="KeyboardManager_KeysMappingLayoutRightHeader.Text" xml:space="preserve"> <value>To:</value> <comment>Keyboard Manager mapping keys view right header</comment> </data> <data name="Appearance_GroupSettings.Text" xml:space="preserve"> <value>Appearance</value> </data> <data name="Fancyzones_ImageHyperlinkToDocs.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>FancyZones windows</value> <comment>do not loc the Product name</comment> </data> <data name="FancyZones.ModuleDescription" xml:space="preserve"> <value>Create window layouts to help make multi-tasking easy.</value> <comment>windows refers to application windows</comment> </data> <data name="FancyZones_DisplayOrWorkAreaChangeMoveWindowsCheckBoxControl.Content" xml:space="preserve"> <value>Keep windows in their zones when the screen resolution or work area changes</value> <comment>windows refers to application windows</comment> </data> <data name="FancyZones_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable FancyZones</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="FancyZones_ExcludeApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="FancyZones_ExcludeApps.Description" xml:space="preserve"> <value>Excludes an application from snapping to zones and will only react to Windows Snap - add one application name per line</value> </data> <data name="FancyZones_HighlightOpacity.Header" xml:space="preserve"> <value>Opacity (%)</value> </data> <data name="FancyZones_HotkeyEditorControl.Header" xml:space="preserve"> <value>Open layout editor</value> <comment>Shortcut to launch the FancyZones layout editor application</comment> </data> <data name="FancyZones_WindowSwitching_GroupSettings.Header" xml:space="preserve"> <value>Switch between windows in the current zone</value> </data> <data name="FancyZones_HotkeyNextTabControl.Header" xml:space="preserve"> <value>Next window</value> </data> <data name="FancyZones_HotkeyPrevTabControl.Header" xml:space="preserve"> <value>Previous window</value> </data> <data name="SettingsPage_SetShortcut.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Shortcut setting</value> </data> <data name="SettingsPage_SetShortcut_Glyph.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Information Symbol</value> </data> <data name="FancyZones_LaunchEditorButtonControl.Header" xml:space="preserve"> <value>Launch layout editor</value> <comment>launches the FancyZones layout editor application</comment> </data> <data name="FancyZones_LaunchEditorButtonControl.Description" xml:space="preserve"> <value>Set and manage your layouts</value> <comment>launches the FancyZones layout editor application</comment> </data> <data name="FancyZones_MakeDraggedWindowTransparentCheckBoxControl.Content" xml:space="preserve"> <value>Make dragged window transparent</value> </data> <data name="FancyZones_MouseDragCheckBoxControl_Header.Content" xml:space="preserve"> <value>Use a non-primary mouse button to toggle zone activation</value> </data> <data name="FancyZones_MouseMiddleClickSpanningMultipleZonesCheckBoxControl_Header.Content" xml:space="preserve"> <value>Use middle-click mouse button to toggle multiple zones spanning</value> </data> <data name="FancyZones_MoveWindowsAcrossAllMonitorsCheckBoxControl.Content" xml:space="preserve"> <value>Move windows between zones across all monitors</value> </data> <data name="FancyZones_OverrideSnapHotkeys.Header" xml:space="preserve"> <value>Override Windows Snap</value> </data> <data name="FancyZones_OverrideSnapHotkeys.Description" xml:space="preserve"> <value>This overrides the Windows Snap shortcut (Win + arrow) to move windows between zones</value> </data> <data name="FancyZones_ShiftDragCheckBoxControl_Header.Content" xml:space="preserve"> <value>Hold Shift key to activate zones while dragging a window</value> </data> <data name="FancyZones_ActivationNoShiftDrag" xml:space="preserve"> <value>Drag windows to activate zones</value> </data> <data name="FancyZones_ShowZonesOnAllMonitorsCheckBoxControl.Content" xml:space="preserve"> <value>Show zones on all monitors while dragging a window</value> </data> <data name="FancyZones_AppLastZoneMoveWindows.Content" xml:space="preserve"> <value>Move newly created windows to their last known zone</value> <comment>windows refers to application windows</comment> </data> <data name="FancyZones_OpenWindowOnActiveMonitor.Content" xml:space="preserve"> <value>Move newly created windows to the current active monitor (Experimental)</value> </data> <data name="FancyZones_UseCursorPosEditorStartupScreen.Header" xml:space="preserve"> <value>Launch editor on the display</value> </data> <data name="FancyZones_UseCursorPosEditorStartupScreen.Description" xml:space="preserve"> <value>When using multiple displays</value> </data> <data name="FancyZones_LaunchPositionMouse.Content" xml:space="preserve"> <value>Where the mouse pointer is</value> </data> <data name="FancyZones_LaunchPositionScreen.Content" xml:space="preserve"> <value>With active focus</value> </data> <data name="FancyZones_ZoneBehavior_GroupSettings.Header" xml:space="preserve"> <value>Zone behavior</value> </data> <data name="FancyZones_ZoneBehavior_GroupSettings.Description" xml:space="preserve"> <value>Manage how zones behave when using FancyZones</value> </data> <data name="FancyZones_Zones.Header" xml:space="preserve"> <value>Zones</value> </data> <data name="FancyZones_ZoneHighlightColor.Header" xml:space="preserve"> <value>Highlight color</value> </data> <data name="FancyZones_ZoneSetChangeMoveWindows.Content" xml:space="preserve"> <value>During zone layout changes, windows assigned to a zone will match new size/positions</value> </data> <data name="AttributionTitle.Text" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="General.ModuleTitle" xml:space="preserve"> <value>General</value> </data> <data name="GeneralPage_CheckForUpdates.Content" xml:space="preserve"> <value>Check for updates</value> </data> <data name="General_SettingsBackupAndRestoreLocationText.Header" xml:space="preserve"> <value>Location</value> </data> <data name="General_SettingsBackupAndRestore_ButtonBackup.Content" xml:space="preserve"> <value>Backup</value> </data> <data name="General_SettingsBackupInfo_FileNameHeader.Text" xml:space="preserve"> <value>File name:</value> </data> <data name="General_SettingsBackupAndRestore_LinkRefresh.Text" xml:space="preserve"> <value>Refresh</value> </data> <data name="General_SettingsBackupAndRestore_ButtonRestore.Content" xml:space="preserve"> <value>Restore</value> </data> <data name="General_SettingsBackupAndRestore_ButtonSelectLocation.Text" xml:space="preserve"> <value>Select folder</value> </data> <data name="GeneralPage_UpdateNow.Content" xml:space="preserve"> <value>Update now</value> </data> <data name="GeneralPage_PrivacyStatement_URL.Text" xml:space="preserve"> <value>Privacy statement</value> </data> <data name="GeneralPage_ReportAbug.Text" xml:space="preserve"> <value>Report a bug</value> <comment>Report an issue inside powertoys</comment> </data> <data name="GeneralPage_RequestAFeature_URL.Text" xml:space="preserve"> <value>Request a feature</value> <comment>Tell our team what we should build</comment> </data> <data name="GeneralPage_RestartAsAdmin_Button.Content" xml:space="preserve"> <value>Restart PowerToys as administrator</value> <comment>running PowerToys as a higher level user, account is typically referred to as an admin / administrator</comment> </data> <data name="GeneralPage_RunAtStartUp.Header" xml:space="preserve"> <value>Run at startup</value> </data> <data name="GeneralPage_RunAtStartUp.Description" xml:space="preserve"> <value>PowerToys will launch automatically</value> </data> <data name="PowerRename.ModuleDescription" xml:space="preserve"> <value>A Windows Shell extension for more advanced bulk renaming using search &amp; replace or regular expressions.</value> </data> <data name="PowerRename_ShellIntegration.Header" xml:space="preserve"> <value>Shell integration</value> <comment>This refers to directly integrating in with Windows</comment> </data> <data name="PowerRename_Toggle_Enable.Header" xml:space="preserve"> <value>Enable PowerRename</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="RadioButtons_Name_Theme.Text" xml:space="preserve"> <value>Settings theme</value> </data> <data name="PowerRename_Toggle_HideIcon.Content" xml:space="preserve"> <value>Hide icon in context menu</value> </data> <data name="PowerRename_Toggle_ContextMenu.Header" xml:space="preserve"> <value>Show PowerRename in</value> </data> <data name="PowerRename_Toggle_StandardContextMenu.Content" xml:space="preserve"> <value>Default and extended context menu</value> </data> <data name="PowerRename_Toggle_ExtendedContextMenu.Content" xml:space="preserve"> <value>Extended context menu only</value> </data> <data name="ExtendedContextMenuInfo.Title" xml:space="preserve"> <value>Press Shift + right-click on files to open the extended context menu</value> </data> <data name="PowerRename_Toggle_MaxDispListNum.Header" xml:space="preserve"> <value>Maximum number of items</value> </data> <data name="PowerRename_Toggle_RestoreFlagsOnLaunch.Header" xml:space="preserve"> <value>Show recently used strings</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_MD.Header" xml:space="preserve"> <value>Markdown</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_MD.Description" xml:space="preserve"> <value>.md, .markdown, .mdown, .mkdn, .mkd, .mdwn, .mdtxt, .mdtext</value> <comment>File extensions, should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_Monaco.Header" xml:space="preserve"> <value>Source code files (Monaco)</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_Monaco.Description" xml:space="preserve"> <value>.cpp, .py, .json, .xml, .csproj, ...</value> <comment>File extensions should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_SVG.Header" xml:space="preserve"> <value>Scalable Vector Graphics</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_SVG.Description" xml:space="preserve"> <value>.svg</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_Preview_SVG_Color_Mode.Header" xml:space="preserve"> <value>Color mode</value> </data> <data name="FileExplorerPreview_Preview_SVG_Color_Mode_Default.Content" xml:space="preserve"> <value>Windows default</value> </data> <data name="FileExplorerPreview_Preview_SVG_Color_Solid_Color.Content" xml:space="preserve"> <value>Solid color</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade.Content" xml:space="preserve"> <value>Checkered pattern</value> </data> <data name="FileExplorerPreview_Preview_SVG_Background_Color.Header" xml:space="preserve"> <value>Color</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_Mode.Header" xml:space="preserve"> <value>Checkered shade</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_1.Content" xml:space="preserve"> <value>Light</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_2.Content" xml:space="preserve"> <value>Medium</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_3.Content" xml:space="preserve"> <value>Dark</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_PDF.Header" xml:space="preserve"> <value>Portable Document Format</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_PDF.Description" xml:space="preserve"> <value>.pdf</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_SVG.Header" xml:space="preserve"> <value>Scalable Vector Graphics</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_SVG.Description" xml:space="preserve"> <value>.svg</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_STL.Header" xml:space="preserve"> <value>Stereolithography</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_STL.Description" xml:space="preserve"> <value>.stl</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_Color_Thumbnail_STL.Header" xml:space="preserve"> <value>Color</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_PDF.Header" xml:space="preserve"> <value>Portable Document Format</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_PDF.Description" xml:space="preserve"> <value>.pdf</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview.ModuleDescription" xml:space="preserve"> <value>These settings allow you to manage your Windows File Explorer custom preview handlers.</value> </data> <data name="PowerRename_AutoCompleteHeader.Header" xml:space="preserve"> <value>Auto-complete</value> </data> <data name="OpenSource_Notice.Text" xml:space="preserve"> <value>Open-source notice</value> </data> <data name="PowerRename_Toggle_AutoComplete.Header" xml:space="preserve"> <value>Enable auto-complete for the search &amp; replace fields</value> </data> <data name="FancyZones_BorderColor.Header" xml:space="preserve"> <value>Border color</value> </data> <data name="FancyZones_InActiveColor.Header" xml:space="preserve"> <value>Inactive color</value> </data> <data name="ShortcutGuide.ModuleDescription" xml:space="preserve"> <value>Shows a help overlay with Windows shortcuts.</value> </data> <data name="ShortcutGuide_PressTimeForGlobalWindowsShortcuts.Header" xml:space="preserve"> <value>Press duration before showing global Windows shortcuts (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="ShortcutGuide_ActivationMethod.Header" xml:space="preserve"> <value>Activation method</value> </data> <data name="ShortcutGuide_ActivationMethod.Description" xml:space="preserve"> <value>Use a shortcut or press the Windows key for some time to activate</value> </data> <data name="Radio_ShortcutGuide_ActivationMethod_CustomizedShortcut.Content" xml:space="preserve"> <value>Custom shortcut</value> </data> <data name="Radio_ShortcutGuide_ActivationMethod_LongPressWindowsKey.Content" xml:space="preserve"> <value>Hold down Windows key</value> </data> <data name="ShortcutGuide_PressWinKeyWarning.Title" xml:space="preserve"> <value>In some edge cases Shortcut Guide might not function correctly when using this activation method</value> </data> <data name="Appearance_Behavior.Header" xml:space="preserve"> <value>Appearance &amp; behavior</value> </data> <data name="General_SettingsBackupAndRestoreTitle.Header" xml:space="preserve"> <value>Backup &amp; restore</value> </data> <data name="General_SettingsBackupAndRestore.Header" xml:space="preserve"> <value>Backup and restore your settings</value> </data> <data name="General_SettingsBackupAndRestore.Description" xml:space="preserve"> <value>PowerToys will restart automatically if needed</value> </data> <data name="ShortcutGuide_Enable.Header" xml:space="preserve"> <value>Enable Shortcut Guide</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="ShortcutGuide_OverlayOpacity.Header" xml:space="preserve"> <value>Background opacity (%)</value> </data> <data name="ShortcutGuide_DisabledApps.Header" xml:space="preserve"> <value>Exclude apps</value> </data> <data name="ShortcutGuide_DisabledApps.Description" xml:space="preserve"> <value>Turns off Shortcut Guide when these applications have focus - add one application name per line</value> </data> <data name="ShortcutGuide_DisabledApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> <comment>Don't translate outlook.exe</comment> </data> <data name="ImageResizer_CustomSizes.Header" xml:space="preserve"> <value>Image sizes</value> </data> <data name="ImageResizer_Presets.Header" xml:space="preserve"> <value>Presets</value> </data> <data name="ImageResizer_Presets.Description" xml:space="preserve"> <value>Manage preset sizes that can be used in the editor</value> </data> <data name="ImageResizer_FilenameFormatHeader.Description" xml:space="preserve"> <value>This format is used as the filename for resized images</value> </data> <data name="ImageResizer.ModuleDescription" xml:space="preserve"> <value>Lets you resize images by right-clicking.</value> </data> <data name="ImageResizer_EnableToggle.Header" xml:space="preserve"> <value>Enable Image Resizer</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="ImagesSizesListView.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Image Size</value> </data> <data name="ImageResizer_Configurations.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Configurations</value> </data> <data name="ImageResizer_Name.Header" xml:space="preserve"> <value>Name</value> </data> <data name="ImageResizer_Fit.Header" xml:space="preserve"> <value>Fit</value> </data> <data name="ImageResizer_Width.Header" xml:space="preserve"> <value>Width</value> </data> <data name="ImageResizer_Height.Header" xml:space="preserve"> <value>Height</value> </data> <data name="ImageResizer_Size.Header" xml:space="preserve"> <value>Unit</value> </data> <data name="RemoveButton.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Remove</value> <comment>Removes a user defined setting group for Image Resizer</comment> </data> <data name="RemoveItem.Text" xml:space="preserve"> <value>Delete</value> </data> <data name="ImageResizer_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Image Resizer</value> </data> <data name="ImageResizer_AddSizeButton.Content" xml:space="preserve"> <value>Add new size</value> </data> <data name="ImageResizer_SaveSizeButton.Label" xml:space="preserve"> <value>Save sizes</value> </data> <data name="ImageResizer_Encoding.Header" xml:space="preserve"> <value>JPEG quality level (%)</value> </data> <data name="ImageResizer_PNGInterlacing.Header" xml:space="preserve"> <value>PNG interlacing</value> </data> <data name="ImageResizer_TIFFCompression.Header" xml:space="preserve"> <value>TIFF compression</value> </data> <data name="File.Header" xml:space="preserve"> <value>File</value> <comment>as in a computer file</comment> </data> <data name="Default.Content" xml:space="preserve"> <value>Default</value> </data> <data name="ImageResizer_ENCODER_TIFF_CCITT3.Content" xml:space="preserve"> <value>CCITT3</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_CCITT4.Content" xml:space="preserve"> <value>CCITT4</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_Default.Content" xml:space="preserve"> <value>Default</value> </data> <data name="ImageResizer_ENCODER_TIFF_LZW.Content" xml:space="preserve"> <value>LZW</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_None.Content" xml:space="preserve"> <value>None</value> </data> <data name="ImageResizer_ENCODER_TIFF_RLE.Content" xml:space="preserve"> <value>RLE</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_Zip.Content" xml:space="preserve"> <value>Zip</value> <comment>do not loc</comment> </data> <data name="ImageResizer_FallbackEncoder_BMP.Content" xml:space="preserve"> <value>BMP encoder</value> </data> <data name="ImageResizer_FallbackEncoder_GIF.Content" xml:space="preserve"> <value>GIF encoder</value> </data> <data name="ImageResizer_FallbackEncoder_JPEG.Content" xml:space="preserve"> <value>JPEG encoder</value> </data> <data name="ImageResizer_FallbackEncoder_PNG.Content" xml:space="preserve"> <value>PNG encoder</value> </data> <data name="ImageResizer_FallbackEncoder_TIFF.Content" xml:space="preserve"> <value>TIFF encoder</value> </data> <data name="ImageResizer_FallbackEncoder_WMPhoto.Content" xml:space="preserve"> <value>WMPhoto encoder</value> </data> <data name="ImageResizer_Sizes_Fit_Fill.Content" xml:space="preserve"> <value>Fill</value> <comment>Refers to filling an image into a certain size. It could overflow</comment> </data> <data name="ImageResizer_Sizes_Fit_Fill_ThirdPersonSingular.Text" xml:space="preserve"> <value>Fill</value> <comment>Refers to filling an image into a certain size. It could overflow</comment> </data> <data name="ImageResizer_Sizes_Fit_Fit.Content" xml:space="preserve"> <value>Fit</value> <comment>Refers to fitting an image into a certain size. It won't overflow</comment> </data> <data name="ImageResizer_Sizes_Fit_Stretch.Content" xml:space="preserve"> <value>Stretch</value> <comment>Refers to stretching an image into a certain size. Won't overflow but could distort.</comment> </data> <data name="ImageResizer_Sizes_Units_CM.Content" xml:space="preserve"> <value>Centimeters</value> </data> <data name="ImageResizer_Sizes_Units_Inches.Content" xml:space="preserve"> <value>Inches</value> </data> <data name="ImageResizer_Sizes_Units_Percent.Content" xml:space="preserve"> <value>Percent</value> </data> <data name="ImageResizer_Sizes_Units_Pixels.Content" xml:space="preserve"> <value>Pixels</value> </data> <data name="Off.Content" xml:space="preserve"> <value>Off</value> </data> <data name="On.Content" xml:space="preserve"> <value>On</value> </data> <data name="GeneralPage_ToggleSwitch_AlwaysRunElevated_Link.Content" xml:space="preserve"> <value>Learn more about administrator mode</value> </data> <data name="GeneralPage_ToggleSwitch_AutoDownloadUpdates.Header" xml:space="preserve"> <value>Download updates automatically</value> </data> <data name="GeneralPage_ToggleSwitch_AutoDownloadUpdates.Description" xml:space="preserve"> <value>Except on metered connections</value> </data> <data name="GeneralPage_ToggleSwitch_RunningAsAdminNote.Text" xml:space="preserve"> <value>Currently running as administrator</value> </data> <data name="GeneralSettings_AlwaysRunAsAdminText.Header" xml:space="preserve"> <value>Always run as administrator</value> </data> <data name="GeneralSettings_AlwaysRunAsAdminText.Description" xml:space="preserve"> <value>You need to run as administrator to use this setting</value> </data> <data name="GeneralSettings_RunningAsUserText" xml:space="preserve"> <value>Running as user</value> </data> <data name="GeneralSettings_RunningAsAdminText" xml:space="preserve"> <value>Running as administrator</value> </data> <data name="FancyZones.ModuleTitle" xml:space="preserve"> <value>FancyZones</value> </data> <data name="FileExplorerPreview.ModuleTitle" xml:space="preserve"> <value>File Explorer</value> </data> <data name="FileExplorerPreview_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>File Explorer</value> <comment>Use same translation as Windows does for File Explorer</comment> </data> <data name="ImageResizer.ModuleTitle" xml:space="preserve"> <value>Image Resizer</value> </data> <data name="KeyboardManager.ModuleTitle" xml:space="preserve"> <value>Keyboard Manager</value> </data> <data name="ColorPicker.ModuleTitle" xml:space="preserve"> <value>Color Picker</value> </data> <data name="PowerLauncher.ModuleTitle" xml:space="preserve"> <value>PowerToys Run</value> </data> <data name="PowerToys_Run_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>PowerToys Run</value> </data> <data name="PowerRename.ModuleTitle" xml:space="preserve"> <value>PowerRename</value> <comment>do not loc the product name</comment> </data> <data name="PowerRename_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>PowerRename</value> <comment>do not loc</comment> </data> <data name="ShortcutGuide.ModuleTitle" xml:space="preserve"> <value>Shortcut Guide</value> </data> <data name="Shortcut_Guide_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Shortcut Guide</value> </data> <data name="General_Repository.Text" xml:space="preserve"> <value>GitHub repository</value> </data> <data name="General_Version.Header" xml:space="preserve"> <value>Version</value> </data> <data name="General_VersionLastChecked.Text" xml:space="preserve"> <value>Last checked: </value> </data> <data name="General_SettingsBackupInfo_DateHeader.Text" xml:space="preserve"> <value>Created at:</value> </data> <data name="General_SettingsBackupAndRestoreStatusInfo.Header" xml:space="preserve"> <value>Backup information</value> </data> <data name="General_SettingsBackupInfo_SourceHeader.Text" xml:space="preserve"> <value>Source machine:</value> </data> <data name="General_SettingsBackupInfo_StatusHeader.Text" xml:space="preserve"> <value>Status:</value> </data> <data name="General_Version.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Version</value> </data> <data name="Admin_mode.Header" xml:space="preserve"> <value>Administrator mode</value> </data> <data name="FancyZones_RestoreSize.Content" xml:space="preserve"> <value>Restore the original size of windows when unsnapping</value> </data> <data name="ImageResizer_FallBackEncoderText.Header" xml:space="preserve"> <value>Fallback encoder</value> </data> <data name="ImageResizer_FileFormatDescription.Text" xml:space="preserve"> <value>The following parameters can be used:</value> </data> <data name="ImageResizer_FilenameFormatHeader.Header" xml:space="preserve"> <value>Filename format</value> </data> <data name="ImageResizer_FileModifiedDate.Header" xml:space="preserve"> <value>File modified timestamp</value> </data> <data name="ImageResizer_FileModifiedDate.Description" xml:space="preserve"> <value>Used as the 'modified timestamp' in the file properties</value> </data> <data name="ImageResizer_UseOriginalDate.Content" xml:space="preserve"> <value>Original file timestamp</value> </data> <data name="ImageResizer_UseResizeDate.Content" xml:space="preserve"> <value>Timestamp of resize action</value> </data> <data name="Encoding.Header" xml:space="preserve"> <value>Encoding</value> </data> <data name="KeyboardManager_RemapKeyboardButton.Description" xml:space="preserve"> <value>Remap keys to other keys or shortcuts</value> </data> <data name="KeyboardManager_RemapShortcutsButton.Description" xml:space="preserve"> <value>Remap shortcuts to other shortcuts or keys for all or specific applications</value> </data> <data name="General.ModuleDescription" xml:space="preserve"> <value>Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. Made with 💗 by Microsoft and the PowerToys community.</value> <comment>Windows refers to the OS</comment> </data> <data name="FancyZones_SpanZonesAcrossMonitors.Header" xml:space="preserve"> <value>Allow zones to span across monitors</value> </data> <data name="ImageResizer_Formatting_ActualHeight.Text" xml:space="preserve"> <value>Actual height</value> </data> <data name="ImageResizer_Formatting_ActualWidth.Text" xml:space="preserve"> <value>Actual width</value> </data> <data name="ImageResizer_Formatting_Filename.Text" xml:space="preserve"> <value>Original filename</value> </data> <data name="ImageResizer_Formatting_SelectedHeight.Text" xml:space="preserve"> <value>Selected height</value> </data> <data name="ImageResizer_Formatting_SelectedWidth.Text" xml:space="preserve"> <value>Selected width</value> </data> <data name="ImageResizer_Formatting_Sizename.Text" xml:space="preserve"> <value>Size name</value> </data> <data name="FancyZones_MoveWindowsBasedOnPositionCheckBoxControl.Content" xml:space="preserve"> <value>Move windows based on their position</value> <comment>Windows refers to application windows</comment> </data> <data name="GeneralSettings_NewVersionIsAvailable" xml:space="preserve"> <value>New update available</value> </data> <data name="GeneralSettings_VersionIsLatest" xml:space="preserve"> <value>PowerToys is up to date.</value> </data> <data name="FileExplorerPreview_IconThumbnail_GroupSettings.Header" xml:space="preserve"> <value>Thumbnail icon Preview</value> </data> <data name="FileExplorerPreview_IconThumbnail_GroupSettings.Description" xml:space="preserve"> <value>Select the file types for which thumbnail previews must be rendered.</value> </data> <data name="FileExplorerPreview_PreviewPane.Header" xml:space="preserve"> <value>Preview Pane</value> </data> <data name="FileExplorerPreview_PreviewPane.Description" xml:space="preserve"> <value>Select the file types which must be rendered in the Preview Pane. Ensure that Preview Pane is open by toggling the view with Alt + P in File Explorer.</value> <comment>Preview Pane and File Explorer are app/feature names in Windows. 'Alt + P' is a shortcut</comment> </data> <data name="FileExplorerPreview_RunAsAdminRequired.Title" xml:space="preserve"> <value>You need to run as administrator to modify these settings.</value> </data> <data name="FileExplorerPreview_RebootRequired.Title" xml:space="preserve"> <value>A reboot may be required for changes to these settings to take effect</value> </data> <data name="FileExplorerPreview_PreviewHandlerOutlookIncompatibility.Title" xml:space="preserve"> <value>Enabling the preview handlers will override other preview handlers already installed - there have been reports of incompatibility between Outlook and the PDF Preview Handler.</value> <comment>Outlook is the name of a Microsoft product</comment> </data> <data name="FileExplorerPreview_ThumbnailsMightNotAppearOnRemoteFolders.Title" xml:space="preserve"> <value>Thumbnails might not appear on paths managed by cloud storage solutions like OneDrive, since these solutions may get their thumbnails from the cloud instead of generating them locally.</value> <comment>OneDrive is the name of a Microsoft product</comment> </data> <data name="FancyZones_ExcludeApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> <comment>Don't translate outlook.exe</comment> </data> <data name="ImageResizer_FilenameFormatPlaceholder.PlaceholderText" xml:space="preserve"> <value>Example: %1 (%2)</value> </data> <data name="ImageResizer_FilenameParameters.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Filename parameters</value> </data> <data name="Radio_Theme_Dark.Content" xml:space="preserve"> <value>Dark</value> <comment>Dark refers to color, not weight</comment> </data> <data name="Radio_Theme_Light.Content" xml:space="preserve"> <value>Light</value> <comment>Light refers to color, not weight</comment> </data> <data name="Radio_Theme_Default.Content" xml:space="preserve"> <value>Windows default</value> <comment>Windows refers to the Operating system</comment> </data> <data name="Windows_Color_Settings.Content" xml:space="preserve"> <value>Windows color settings</value> <comment>Windows refers to the Operating system</comment> </data> <data name="ColorPicker_CopiedColorRepresentation.Header" xml:space="preserve"> <value>Default color format</value> </data> <data name="ColorPickerFirst.Content" xml:space="preserve"> <value>Pick a color and open editor</value> </data> <data name="EditorFirst.Content" xml:space="preserve"> <value>Open editor</value> </data> <data name="ColorPickerOnly.Content" xml:space="preserve"> <value>Only pick a color</value> </data> <data name="ColorPicker_ActivationAction.Header" xml:space="preserve"> <value>Activation behavior</value> </data> <data name="ColorFormats.Header" xml:space="preserve"> <value>Picker behavior</value> </data> <data name="ColorPicker_CopiedColorRepresentation.Description" xml:space="preserve"> <value>This format will be copied to your clipboard</value> </data> <data name="KBM_KeysCannotBeRemapped.Text" xml:space="preserve"> <value>Learn more about remapping limitations</value> <comment>This is a link that will discuss what is and is not possible for Keyboard manager to remap</comment> </data> <data name="FancyZones_Editor_GroupSettings.Header" xml:space="preserve"> <value>Editor</value> <comment>refers to the FancyZone editor</comment> </data> <data name="FancyZones_WindowBehavior_GroupSettings.Header" xml:space="preserve"> <value>Window behavior</value> </data> <data name="FancyZones_WindowBehavior_GroupSettings.Description" xml:space="preserve"> <value>Manage how windows behave when using FancyZones</value> </data> <data name="FancyZones_Windows.Header" xml:space="preserve"> <value>Windows</value> <comment>Do translate: refers to a set of application windows, not the product name</comment> </data> <data name="PowerRename_BehaviorHeader.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="PowerRename_Toggle_UseBoostLib.Header" xml:space="preserve"> <value>Use Boost library</value> <comment>Boost is a product name, should not be translated</comment> </data> <data name="PowerRename_Toggle_UseBoostLib.Description" xml:space="preserve"> <value>Provides extended features but may use different regex syntax</value> <comment>Boost is a product name, should not be translated</comment> </data> <data name="MadeWithOssLove.Text" xml:space="preserve"> <value>Made with 💗 by Microsoft and the PowerToys community.</value> </data> <data name="ColorPicker_ColorFormats.Header" xml:space="preserve"> <value>Color formats</value> </data> <data name="ColorPicker_ColorFormats.Description" xml:space="preserve"> <value>Configure the color formats (edit, delete, hide, reorder them)</value> </data> <data name="MoveUp.Text" xml:space="preserve"> <value>Move up</value> </data> <data name="MoveDown.Text" xml:space="preserve"> <value>Move down</value> </data> <data name="ColorPickerAddNewFormat.Content" xml:space="preserve"> <value>Add new format</value> </data> <data name="NewColorFormat.Header" xml:space="preserve"> <value>Format</value> </data> <data name="NewColorName.Header" xml:space="preserve"> <value>Name</value> </data> <data name="AddCustomColorFormat" xml:space="preserve"> <value>Add custom color format</value> </data> <data name="ColorFormatSave" xml:space="preserve"> <value>Save</value> </data> <data name="EditCustomColorFormat" xml:space="preserve"> <value>Edit custom color format</value> </data> <data name="ColorFormatUpdate" xml:space="preserve"> <value>Update</value> </data> <data name="CustomColorFormatDefaultName" xml:space="preserve"> <value>My Format</value> </data> <data name="ColorFormatDialog.SecondaryButtonText" xml:space="preserve"> <value>Cancel</value> </data> <data name="ColorFormatEditorHelpline1.Text" xml:space="preserve"> <value>The following parameters can be used:</value> </data> <data name="Help_red" xml:space="preserve"> <value>red</value> </data> <data name="Help_green" xml:space="preserve"> <value>green</value> </data> <data name="Help_blue" xml:space="preserve"> <value>blue</value> </data> <data name="Help_alpha" xml:space="preserve"> <value>alpha</value> </data> <data name="Help_cyan" xml:space="preserve"> <value>cyan</value> </data> <data name="Help_magenta" xml:space="preserve"> <value>magenta</value> </data> <data name="Help_yellow" xml:space="preserve"> <value>yellow</value> </data> <data name="Help_black_key" xml:space="preserve"> <value>black key</value> </data> <data name="Help_hue" xml:space="preserve"> <value>hue</value> </data> <data name="Help_hueNat" xml:space="preserve"> <value>hue (natural)</value> </data> <data name="Help_saturationI" xml:space="preserve"> <value>saturation (HSI)</value> </data> <data name="Help_saturationL" xml:space="preserve"> <value>saturation (HSL)</value> </data> <data name="Help_saturationB" xml:space="preserve"> <value>saturation (HSB)</value> </data> <data name="Help_brightness" xml:space="preserve"> <value>brightness</value> </data> <data name="Help_intensity" xml:space="preserve"> <value>intensity</value> </data> <data name="Help_lightnessNat" xml:space="preserve"> <value>lightness (nat)</value> </data> <data name="Help_lightnessCIE" xml:space="preserve"> <value>lightness (CIE)</value> </data> <data name="Help_value" xml:space="preserve"> <value>value</value> </data> <data name="Help_whiteness" xml:space="preserve"> <value>whiteness</value> </data> <data name="Help_blackness" xml:space="preserve"> <value>blackness</value> </data> <data name="Help_chromaticityA" xml:space="preserve"> <value>chromaticityA</value> </data> <data name="Help_chromaticityB" xml:space="preserve"> <value>chromaticityB</value> </data> <data name="Help_X_value" xml:space="preserve"> <value>X value</value> </data> <data name="Help_Y_value" xml:space="preserve"> <value>Y value</value> </data> <data name="Help_Z_value" xml:space="preserve"> <value>Z value</value> </data> <data name="Help_decimal_value_RGB" xml:space="preserve"> <value>decimal value (RGB)</value> </data> <data name="Help_decimal_value_BGR" xml:space="preserve"> <value>decimal value (BGR)</value> </data> <data name="Help_color_name" xml:space="preserve"> <value>color name</value> </data> <data name="ColorFormatEditorHelpline2.Text" xml:space="preserve"> <value>The red, green, blue and alpha values can be formatted to the following formats:</value> </data> <data name="Help_byte" xml:space="preserve"> <value>byte value (default)</value> </data> <data name="Help_hexL1" xml:space="preserve"> <value>hex lowercase one digit</value> </data> <data name="Help_hexU1" xml:space="preserve"> <value>hex uppercase one digit</value> </data> <data name="Help_hexL2" xml:space="preserve"> <value>hex lowercase two digits</value> </data> <data name="Help_hexU2" xml:space="preserve"> <value>hex uppercase two digits</value> </data> <data name="Help_floatWith" xml:space="preserve"> <value>float with leading zero</value> </data> <data name="Help_floatWithout" xml:space="preserve"> <value>float without leading zero</value> </data> <data name="ColorFormatEditorHelpline3.Text" xml:space="preserve"> <value>Example: %ReX means red value in hex uppercase two digits format.</value> </data> <data name="ColorPicker_ShowColorName.Header" xml:space="preserve"> <value>Show color name</value> </data> <data name="ColorPicker_ShowColorName.Description" xml:space="preserve"> <value>This will show the name of the color when picking a color</value> </data> <data name="ImageResizer_DefaultSize_Large" xml:space="preserve"> <value>Large</value> <comment>The size of the image</comment> </data> <data name="ImageResizer_DefaultSize_Medium" xml:space="preserve"> <value>Medium</value> <comment>The size of the image</comment> </data> <data name="ImageResizer_DefaultSize_Phone" xml:space="preserve"> <value>Phone</value> <comment>The size of the image referring to a Mobile Phone typical image size</comment> </data> <data name="ImageResizer_DefaultSize_Small" xml:space="preserve"> <value>Small</value> <comment>The size of the image</comment> </data> <data name="FancyZones_MoveWindowBasedOnRelativePosition_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Windows key + Up, down, left or right arrow key to move windows based on relative position</value> </data> <data name="FancyZones_MoveWindowLeftRightBasedOnZoneIndex_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Windows key + Left or right arrow keys to move windows based on zone index</value> </data> <data name="FancyZones_MoveWindowBasedOnRelativePosition_Description.Text" xml:space="preserve"> <value>Windows key +    or </value> <comment>Do not loc the icons (hex numbers)</comment> </data> <data name="FancyZones_MoveWindowLeftRightBasedOnZoneIndex_Description.Text" xml:space="preserve"> <value>Windows key +  or </value> <comment>Do not loc the icons (hex numbers)</comment> </data> <data name="FancyZones_MoveWindowBasedOnRelativePosition.Text" xml:space="preserve"> <value>Relative position</value> </data> <data name="FancyZones_MoveWindow.Header" xml:space="preserve"> <value>Move windows based on</value> </data> <data name="FancyZones_MoveWindowLeftRightBasedOnZoneIndex.Text" xml:space="preserve"> <value>Zone index</value> </data> <data name="ColorPicker_Editor.Header" xml:space="preserve"> <value>Color formats</value> </data> <data name="FancyZones_OverlappingZonesClosestCenter.Content" xml:space="preserve"> <value>Activate the zone whose center is closest to the cursor</value> </data> <data name="FancyZones_OverlappingZonesLargest.Content" xml:space="preserve"> <value>Activate the largest zone by area</value> </data> <data name="FancyZones_OverlappingZonesPositional.Content" xml:space="preserve"> <value>Split the overlapped area into multiple activation targets</value> </data> <data name="FancyZones_OverlappingZonesSmallest.Content" xml:space="preserve"> <value>Activate the smallest zone by area</value> </data> <data name="FancyZones_OverlappingZones.Header" xml:space="preserve"> <value>When multiple zones overlap</value> </data> <data name="PowerLauncher_Plugins.Header" xml:space="preserve"> <value>Plugins</value> </data> <data name="PowerLauncher_ActionKeyword.Header" xml:space="preserve"> <value>Direct activation command</value> </data> <data name="PowerLauncher_AuthoredBy.Text" xml:space="preserve"> <value>Authored by</value> <comment>example: Authored by Microsoft</comment> </data> <data name="PowerLauncher_IncludeInGlobalResultTitle.Text" xml:space="preserve"> <value>Include in global result</value> </data> <data name="PowerLauncher_IncludeInGlobalResultDescription.Text" xml:space="preserve"> <value>Show results on queries without direct activation command</value> </data> <data name="PowerLauncher_EnablePluginToggle.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Enable plugin</value> </data> <data name="PowerLauncher_EnablePluginToggle.OnContent" xml:space="preserve"> <value>On</value> </data> <data name="PowerLauncher_EnablePluginToggle.OffContent" xml:space="preserve"> <value>Off</value> </data> <data name="Run_AdditionalOptions.Text" xml:space="preserve"> <value>Additional options</value> </data> <data name="Run_NotAccessibleWarning.Title" xml:space="preserve"> <value>Please define an activation command or allow this plugin to be used in the global results.</value> </data> <data name="Run_AllPluginsDisabled.Title" xml:space="preserve"> <value>PowerToys Run can't provide any results without plugins</value> </data> <data name="Run_AllPluginsDisabled.Message" xml:space="preserve"> <value>Enable at least one plugin to get started</value> </data> <data name="Run_PluginUse.Header" xml:space="preserve"> <value>Plugins</value> </data> <data name="Run_PluginUseDescription.Text" xml:space="preserve"> <value>Include or remove plugins from the global results, change the direct activation phrase and configure additional options</value> </data> <data name="Run_PositionAppearance_GroupSettings.Header" xml:space="preserve"> <value>Position &amp; appearance</value> </data> <data name="Run_PositionHeader.Header" xml:space="preserve"> <value>Preferred monitor position</value> <comment>as in Show PowerToys Run on primary monitor</comment> </data> <data name="Run_PositionHeader.Description" xml:space="preserve"> <value>If multiple monitors are in use, PowerToys Run can be launched on the desired monitor</value> <comment>as in Show PowerToys Run on primary monitor</comment> </data> <data name="Run_Radio_Position_Cursor.Content" xml:space="preserve"> <value>Monitor with mouse cursor</value> </data> <data name="Run_Radio_Position_Focus.Content" xml:space="preserve"> <value>Monitor with focused window</value> </data> <data name="Run_Radio_Position_Primary_Monitor.Content" xml:space="preserve"> <value>Primary monitor</value> </data> <data name="Run_PluginsLoading.Text" xml:space="preserve"> <value>Plugins are loading...</value> </data> <data name="ColorPicker_ButtonDown.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Move the color down</value> </data> <data name="ColorPicker_ButtonUp.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Move the color up</value> </data> <data name="FancyZones_FlashZonesOnQuickSwitch.Content" xml:space="preserve"> <value>Flash zones when switching layout</value> </data> <data name="FancyZones_Layouts.Header" xml:space="preserve"> <value>Layouts</value> </data> <data name="FancyZones_QuickLayoutSwitch.Header" xml:space="preserve"> <value>Enable quick layout switch</value> </data> <data name="FancyZones_QuickLayoutSwitch.Description" xml:space="preserve"> <value>Layout-specific shortcuts can be configured in the editor</value> </data> <data name="FancyZones_QuickLayoutSwitch_GroupSettings.Text" xml:space="preserve"> <value>Quick layout switch</value> </data> <data name="Activation_Shortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="Activation_Shortcut.Description" xml:space="preserve"> <value>Customize the shortcut to activate this module</value> </data> <data name="Oobe_GetStarted.Text" xml:space="preserve"> <value>Let's get started!</value> </data> <data name="Oobe_PowerToysDescription.Text" xml:space="preserve"> <value>Welcome to PowerToys! These overviews will help you quickly learn the basics of all our utilities.</value> </data> <data name="Oobe_GettingStarted.Text" xml:space="preserve"> <value>Getting started</value> </data> <data name="Oobe_Launch.Text" xml:space="preserve"> <value>Launch</value> </data> <data name="Launch_ColorPicker.Content" xml:space="preserve"> <value>Launch Color Picker</value> </data> <data name="Oobe_LearnMore.Text" xml:space="preserve"> <value>Learn more about</value> </data> <data name="Oobe_ColorPicker.Description" xml:space="preserve"> <value>Color Picker is a system-wide color selection tool for Windows that enables you to pick colors from any currently running application and automatically copies it in a configurable format to your clipboard.</value> </data> <data name="Oobe_FancyZones.Description" xml:space="preserve"> <value>FancyZones is a window manager that makes it easy to create complex window layouts and quickly position windows into those layouts.</value> </data> <data name="Oobe_FileLocksmith.Description" xml:space="preserve"> <value>File Locksmith lists which processes are using the selected files or directories and allows closing those processes.</value> </data> <data name="Oobe_FileExplorer.Description" xml:space="preserve"> <value>PowerToys introduces add-ons to the Windows File Explorer that will enable files like Markdown (.md), PDF (.pdf), SVG (.svg), STL (.stl), G-code (.gcode) and developer files to be viewed in the preview pane. It introduces File Explorer thumbnail support for a number of these file types as well.</value> </data> <data name="Oobe_ImageResizer.Description" xml:space="preserve"> <value>Image Resizer is a Windows shell extension for simple bulk image-resizing.</value> </data> <data name="Oobe_KBM.Description" xml:space="preserve"> <value>Keyboard Manager allows you to customize the keyboard to be more productive by remapping keys and creating your own keyboard shortcuts.</value> </data> <data name="Oobe_MouseWithoutBorders.Description" xml:space="preserve"> <value>Mouse Without Borders enables using the mouse pointer, keyboard, clipboard and drag and drop between machines in the same local network.</value> </data> <data name="Oobe_PowerRename.Description" xml:space="preserve"> <value>PowerRename enables you to perform simple bulk renaming, searching and replacing file names.</value> </data> <data name="Oobe_Run.Description" xml:space="preserve"> <value>PowerToys Run is a quick launcher for power users that contains some additional features without sacrificing performance.</value> </data> <data name="Oobe_MeasureTool.Description" xml:space="preserve"> <value>Screen Ruler is a quick and easy way to measure pixels on your screen.</value> </data> <data name="Oobe_ShortcutGuide.Description" xml:space="preserve"> <value>Shortcut Guide presents the user with a listing of available shortcuts for the current state of the desktop.</value> </data> <data name="Oobe_VideoConference.Description" xml:space="preserve"> <value>Video Conference Mute allows users to quickly mute the microphone and turn off the camera while on a conference call with a single keystroke, regardless of what application has focus on your computer.</value> </data> <data name="Oobe_MouseUtils.Description" xml:space="preserve"> <value>A collection of utilities to enhance your mouse.</value> <comment>Mouse as in the hardware peripheral</comment> </data> <data name="Oobe_Overview.Description" xml:space="preserve"> <value>Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. Take a moment to preview the various utilities listed or view our comprehensive documentation.</value> </data> <data name="Oobe_Overview_DescriptionLinkText.Text" xml:space="preserve"> <value>Documentation on Microsoft Docs</value> </data> <data name="ReleaseNotes.Content" xml:space="preserve"> <value>Release notes</value> </data> <data name="Oobe_ColorPicker_HowToUse.Text" xml:space="preserve"> <value>to open Color Picker.</value> </data> <data name="Oobe_ColorPicker_TipsAndTricks.Text" xml:space="preserve"> <value>To select a color with more precision, **scroll the mouse wheel** to zoom in.</value> </data> <data name="Oobe_FancyZones_HowToUse.Text" xml:space="preserve"> <value>**Shift** + **drag the window** to snap a window to a zone, and release the window in the desired zone.</value> </data> <data name="Oobe_FancyZones_HowToUse_Shortcut.Text" xml:space="preserve"> <value>to open the FancyZones editor.</value> </data> <data name="Oobe_FancyZones_TipsAndTricks.Text" xml:space="preserve"> <value>Snap a window to multiple zones by holding the **Ctrl** key (while also holding **Shift**) when dragging a window.</value> </data> <data name="Oobe_FileLocksmith_HowToUse.Text" xml:space="preserve"> <value>In File Explorer, right-click one or more selected files and select **What's using this file?** from the context menu.</value> </data> <data name="Oobe_FileLocksmith_TipsAndTricks.Text" xml:space="preserve"> <value>Press the **Restart Elevated** button from the File Locksmith UI to also get information on elevated processes that might be using the files.</value> </data> <data name="Oobe_FileExplorer_HowToEnable.Text" xml:space="preserve"> <value>Select **View** which is located at the top of File Explorer, followed by **Show**, and then **Preview pane**. From there, simply click on one of the supported files in the File Explorer and observe the content on the preview pane!</value> </data> <data name="Oobe_HowToCreateMappings.Text" xml:space="preserve"> <value>How to create mappings</value> </data> <data name="Oobe_HowToEnable.Text" xml:space="preserve"> <value>How to enable</value> </data> <data name="Oobe_HowToLaunch.Text" xml:space="preserve"> <value>How to launch</value> </data> <data name="Oobe_HowToUse.Text" xml:space="preserve"> <value>How to use</value> </data> <data name="Oobe_ImageResizer_HowToLaunch.Text" xml:space="preserve"> <value>In File Explorer, right-click one or more image files and select **Resize pictures** from the context menu.</value> </data> <data name="Oobe_ImageResizer_TipsAndTricks.Text" xml:space="preserve"> <value>Want a custom size? You can add them in the PowerToys Settings!</value> </data> <data name="Oobe_KBM_HowToCreateMappings.Text" xml:space="preserve"> <value>Launch **PowerToys Settings**, navigate to the Keyboard Manager menu, and select either **Remap a key** or **Remap a shortcut**.</value> </data> <data name="Oobe_KBM_TipsAndTricks.Text" xml:space="preserve"> <value>Want to only have a shortcut work for a single application? Use the Target App field when creating the shortcut remapping.</value> </data> <data name="Oobe_MouseWithoutBorders_HowToUse.Text" xml:space="preserve"> <value>Use the Settings screen on each machine to connect to the other machines using the same key. If a connection is not working, it may be necessary to add an exception to the Windows Firewall.</value> </data> <data name="Oobe_MouseWithoutBorders_TipsAndTricks.Text" xml:space="preserve"> <value>Use the service option in Settings to install a service enabling Mouse Without Borders to function even in the lock screen.</value> </data> <data name="Oobe_PowerRename_HowToUse.Text" xml:space="preserve"> <value>In File Explorer, right-click one or more selected files and select **PowerRename** from the context menu.</value> </data> <data name="Oobe_PowerRename_TipsAndTricks.Text" xml:space="preserve"> <value>PowerRename supports searching for files using regular expressions to enable more advanced renaming functionalities.</value> </data> <data name="Oobe_Run_HowToLaunch.Text" xml:space="preserve"> <value>to open Run and just start typing.</value> </data> <data name="Oobe_Run_TipsAndTricks.Text" xml:space="preserve"> <value>PowerToys Run supports various action keys to funnel search queries for a specific subset of results. Typing `&lt;` searches for running processes only, `?` will search only for file, or `.` for installed applications! See PowerToys documentation for the complete set of 'Action Keys' available.</value> </data> <data name="Oobe_ShortcutGuide_HowToLaunch.Text" xml:space="preserve"> <value>to open Shortcut Guide, press it again to close or press **Esc**.</value> </data> <data name="Oobe_TipsAndTricks.Text" xml:space="preserve"> <value>Tips &amp; tricks</value> </data> <data name="Oobe_VideoConference_ToggleMicVid.Text" xml:space="preserve"> <value>to toggle both your microphone and video</value> </data> <data name="Oobe_VideoConference_ToggleMic.Text" xml:space="preserve"> <value>to toggle your microphone</value> </data> <data name="Oobe_VideoConference_PushToTalkMic.Text" xml:space="preserve"> <value>to toggle your microphone until key release</value> </data> <data name="Oobe_VideoConference_ToggleVid.Text" xml:space="preserve"> <value>to toggle your video</value> </data> <data name="Oobe_MeasureTool_Activation.Text" xml:space="preserve"> <value>to bring up the Screen Ruler command bar.</value> </data> <data name="Oobe_MeasureTool_HowToLaunch.Text" xml:space="preserve"> <value>The Bounds mode lets you select a specific area to measure. You can also shift-drag an area to persist in on screen. The various Spacing modes allows tracing similar pixels along horizontal and vertical axes with a customizable pixel tolerance threshold (use settings or mouse wheel to adjust it).</value> </data> <data name="Oobe_MeasureTool.Title" xml:space="preserve"> <value>Screen Ruler</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_ColorPicker.Title" xml:space="preserve"> <value>Color Picker</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_FancyZones.Title" xml:space="preserve"> <value>FancyZones</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_FileLocksmith.Title" xml:space="preserve"> <value>File Locksmith</value> </data> <data name="Oobe_ImageResizer.Title" xml:space="preserve"> <value>Image Resizer</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_KBM.Title" xml:space="preserve"> <value>Keyboard Manager</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_MouseWithoutBorders.Title" xml:space="preserve"> <value>Mouse Without Borders</value> <comment>Product name. Do not localize this string</comment> </data> <data name="Oobe_PowerRename.Title" xml:space="preserve"> <value>PowerRename</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_Run.Title" xml:space="preserve"> <value>PowerToys Run</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_ShortcutGuide.Title" xml:space="preserve"> <value>Shortcut Guide</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_VideoConference.Title" xml:space="preserve"> <value>Video Conference Mute</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_Overview.Title" xml:space="preserve"> <value>Welcome</value> </data> <data name="Oobe_WhatsNew.Text" xml:space="preserve"> <value>What's new</value> </data> <data name="Oobe_WhatsNew_LoadingError.Title" xml:space="preserve"> <value>Couldn't load the release notes.</value> </data> <data name="Oobe_WhatsNew_LoadingError.Message" xml:space="preserve"> <value>Please check your internet connection.</value> </data> <data name="Oobe_WhatsNew_ProxyAuthenticationWarning.Title" xml:space="preserve"> <value>Couldn't load the release notes.</value> </data> <data name="Oobe_WhatsNew_ProxyAuthenticationWarning.Message" xml:space="preserve"> <value>Your proxy server requires authentication.</value> </data> <data name="Oobe_WhatsNew_DetailedReleaseNotesLink.Text" xml:space="preserve"> <value>See more detailed release notes on GitHub</value> <comment>Don't loc "GitHub", it's the name of a product</comment> </data> <data name="OOBE_Settings.Content" xml:space="preserve"> <value>Open Settings</value> </data> <data name="Oobe_NavViewItem.Content" xml:space="preserve"> <value>Welcome to PowerToys</value> <comment>Don't loc "PowerToys"</comment> </data> <data name="Feedback_NavViewItem.Content" xml:space="preserve"> <value>Give feedback</value> </data> <data name="OobeWindow_Title" xml:space="preserve"> <value>Welcome to PowerToys</value> </data> <data name="OobeWindow_TitleTxt.Text" xml:space="preserve"> <value>Welcome to PowerToys</value> </data> <data name="SettingsWindow_Title" xml:space="preserve"> <value>PowerToys Settings</value> <comment>Title of the settings window when running as user</comment> </data> <data name="Awake.ModuleTitle" xml:space="preserve"> <value>Awake</value> </data> <data name="Awake.ModuleDescription" xml:space="preserve"> <value>A convenient way to keep your PC awake on-demand.</value> </data> <data name="Awake_EnableSettingsCard.Header" xml:space="preserve"> <value>Enable Awake</value> <comment>Awake is a product name, do not loc</comment> </data> <data name="Awake_NoKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep using the selected power plan</value> </data> <data name="Awake_IndefiniteKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep awake indefinitely</value> </data> <data name="Awake_TemporaryKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep awake for a time interval</value> </data> <data name="Awake_ExpirableKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep awake until expiration</value> </data> <data name="Awake_DisplaySettingsCard.Header" xml:space="preserve"> <value>Keep screen on</value> </data> <data name="Awake_DisplaySettingsCard.Description" xml:space="preserve"> <value>This setting is only available when keeping the PC awake</value> </data> <data name="Awake_ExpirationSettingsExpander.Description" xml:space="preserve"> <value>Keep custom awake state until a specific date and time</value> </data> <data name="Awake_ModeSettingsCard.Header" xml:space="preserve"> <value>Mode</value> </data> <data name="Awake_BehaviorSettingsGroup.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="Awake_IntervalHoursInput.Header" xml:space="preserve"> <value>Hours</value> </data> <data name="Awake_IntervalMinutesInput.Header" xml:space="preserve"> <value>Minutes</value> </data> <data name="Awake_ExpirationSettingsExpander_Date.Header" xml:space="preserve"> <value>End date</value> </data> <data name="Awake_ExpirationSettingsExpander_Time.Header" xml:space="preserve"> <value>End time</value> </data> <data name="Oobe_Awake.Title" xml:space="preserve"> <value>Awake</value> <comment>Module name, do not loc</comment> </data> <data name="Oobe_Awake.Description" xml:space="preserve"> <value>Awake is a Windows tool designed to keep your PC awake on-demand without having to manage its power settings. This behavior can be helpful when running time-consuming tasks while ensuring that your PC does not go to sleep or turn off its screens.</value> </data> <data name="Oobe_Awake_HowToUse.Text" xml:space="preserve"> <value>Open **PowerToys Settings** and enable Awake</value> </data> <data name="Oobe_Awake_TipsAndTricks.Text" xml:space="preserve"> <value>You can always change modes quickly by **right-clicking the Awake icon** in the system tray.</value> </data> <data name="General_FailedToDownloadTheNewVersion.Title" xml:space="preserve"> <value>An error occurred trying to install this update:</value> </data> <data name="General_InstallNow.Content" xml:space="preserve"> <value>Install now</value> </data> <data name="General_ReadMore.Text" xml:space="preserve"> <value>Read more</value> </data> <data name="General_NewVersionAvailable.Title" xml:space="preserve"> <value>An update is available:</value> </data> <data name="General_Downloading.Text" xml:space="preserve"> <value>Downloading...</value> </data> <data name="General_TryAgainToDownloadAndInstall.Content" xml:space="preserve"> <value>Try again to download and install</value> </data> <data name="General_CheckingForUpdates.Text" xml:space="preserve"> <value>Checking for updates...</value> </data> <data name="General_NewVersionReadyToInstall.Title" xml:space="preserve"> <value>An update is ready to install:</value> </data> <data name="General_UpToDate.Title" xml:space="preserve"> <value>PowerToys is up to date</value> </data> <data name="General_CantCheck.Title" xml:space="preserve"> <value>Network error. Please try again later</value> </data> <data name="General_DownloadAndInstall.Content" xml:space="preserve"> <value>Download &amp; install</value> </data> <data name="ImageResizer_Fit_Fill_ThirdPersonSingular" xml:space="preserve"> <value>Fills</value> </data> <data name="ImageResizer_Fit_Fit_ThirdPersonSingular" xml:space="preserve"> <value>Fits within</value> </data> <data name="ImageResizer_Fit_Stretch_ThirdPersonSingular" xml:space="preserve"> <value>Stretches to</value> </data> <data name="ImageResizer_Unit_Centimeter" xml:space="preserve"> <value>Centimeters</value> </data> <data name="ImageResizer_Unit_Inch" xml:space="preserve"> <value>Inches</value> </data> <data name="ImageResizer_Unit_Percent" xml:space="preserve"> <value>Percent</value> </data> <data name="ImageResizer_Unit_Pixel" xml:space="preserve"> <value>Pixels</value> </data> <data name="EditButton.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Edit</value> </data> <data name="ImageResizer_EditSize.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Edit size</value> </data> <data name="No" xml:space="preserve"> <value>No</value> <comment>Label of a cancel button</comment> </data> <data name="Delete_Dialog_Description" xml:space="preserve"> <value>Are you sure you want to delete this item?</value> </data> <data name="Yes" xml:space="preserve"> <value>Yes</value> <comment>Label of a confirmation button</comment> </data> <data name="SeeWhatsNew.Content" xml:space="preserve"> <value>See what's new</value> </data> <data name="Awake_ModeSettingsCard.Description" xml:space="preserve"> <value>Manage the state of your device when Awake is active</value> </data> <data name="ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="Enable_ColorFormat.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Enable colorformat</value> </data> <data name="More_Options_Button.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>More options</value> </data> <data name="More_Options_ButtonTooltip.Text" xml:space="preserve"> <value>More options</value> </data> <data name="To.Text" xml:space="preserve"> <value>to</value> <comment>as in: from x to y</comment> </data> <data name="LearnMore_Awake.Text" xml:space="preserve"> <value>Learn more about Awake</value> <comment>Awake is a product name, do not loc</comment> </data> <data name="LearnMore_ColorPicker.Text" xml:space="preserve"> <value>Learn more about Color Picker</value> <comment>Color Picker is a product name, do not loc</comment> </data> <data name="LearnMore_FancyZones.Text" xml:space="preserve"> <value>Learn more about FancyZones</value> <comment>FancyZones is a product name, do not loc</comment> </data> <data name="LearnMore_FileLocksmith.Text" xml:space="preserve"> <value>Learn more about File Locksmith</value> </data> <data name="LearnMore_ImageResizer.Text" xml:space="preserve"> <value>Learn more about Image Resizer</value> <comment>Image Resizer is a product name, do not loc</comment> </data> <data name="LearnMore_KBM.Text" xml:space="preserve"> <value>Learn more about Keyboard Manager</value> <comment>Keyboard Manager is a product name, do not loc</comment> </data> <data name="LearnMore_MouseUtils.Text" xml:space="preserve"> <value>Learn more about Mouse utilities</value> <comment>Mouse utilities is a product name, do not loc</comment> </data> <data name="LearnMore_PastePlain.Text" xml:space="preserve"> <value>Learn more about Paste as Plain Text</value> <comment> Paste as Plain Text is the name of the module. </comment> </data> <data name="LearnMore_MouseWithoutBorders.Text" xml:space="preserve"> <value>Learn more about Mouse Without Borders</value> <comment>Mouse Without Borders is the name of the module. </comment> </data> <data name="LearnMore_PowerPreview.Text" xml:space="preserve"> <value>Learn more about File Explorer add-ons</value> <comment>File Explorer is a product name, localize as Windows does</comment> </data> <data name="LearnMore_Peek.Text" xml:space="preserve"> <value>Learn more about Peek</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="LearnMore_PowerRename.Text" xml:space="preserve"> <value>Learn more about PowerRename</value> <comment>PowerRename is a product name, do not loc</comment> </data> <data name="LearnMore_Run.Text" xml:space="preserve"> <value>Learn more about PowerToys Run</value> <comment>PowerToys Run is a product name, do not loc</comment> </data> <data name="LearnMore_MeasureTool.Text" xml:space="preserve"> <value>Learn more about Screen Ruler</value> <comment>Screen Ruler is a product name, do not loc</comment> </data> <data name="LearnMore_ShortcutGuide.Text" xml:space="preserve"> <value>Learn more about Shortcut Guide</value> <comment>Shortcut Guide is a product name, do not loc</comment> </data> <data name="LearnMore_VCM.Text" xml:space="preserve"> <value>Learn more about Video Conference Mute</value> <comment>Video Conference Mute is a product name, do not loc</comment> </data> <data name="Oobe_FileExplorer.Title" xml:space="preserve"> <value>File Explorer add-ons</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_MouseUtils.Title" xml:space="preserve"> <value>Mouse utilities</value> <comment>Mouse as in the hardware peripheral</comment> </data> <data name="Oobe_MouseUtils_FindMyMouse.Text" xml:space="preserve"> <value>Find My Mouse</value> <comment>Mouse as in the hardware peripheral</comment> </data> <data name="Oobe_MouseUtils_FindMyMouse_Description.Text" xml:space="preserve"> <value>Focus the mouse pointer pressing the Ctrl key twice, using a custom shortcut or shaking the mouse.</value> <comment>Mouse as in the hardware peripheral. Key as in a keyboard key</comment> </data> <data name="Oobe_MouseUtils_MouseHighlighter.Text" xml:space="preserve"> <value>Mouse Highlighter</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MouseHighlighter_Description.Text" xml:space="preserve"> <value>Use a keyboard shortcut to highlight left and right mouse clicks.</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MousePointerCrosshairs.Text" xml:space="preserve"> <value>Mouse Pointer Crosshairs</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MousePointerCrosshairs_Description.Text" xml:space="preserve"> <value>Draw crosshairs centered around the mouse pointer.</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MouseJump.Text" xml:space="preserve"> <value>Mouse Jump</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MouseJump_Description.Text" xml:space="preserve"> <value>Jump the mouse pointer quickly to anywhere on your desktop.</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Launch_Run.Content" xml:space="preserve"> <value>Launch PowerToys Run</value> </data> <data name="Launch_ShortcutGuide.Content" xml:space="preserve"> <value>Launch Shortcut Guide</value> </data> <data name="ColorPicker_ColorFormat_ToggleSwitch.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Show format in editor</value> </data> <data name="GeneralPage_Documentation.Text" xml:space="preserve"> <value>Documentation</value> </data> <data name="PowerLauncher_SearchList.PlaceholderText" xml:space="preserve"> <value>Search this list</value> </data> <data name="PowerLauncher_SearchList.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Search this list</value> </data> <data name="Awake.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="ColorPicker.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="General.SecondaryLinksHeader" xml:space="preserve"> <value>Related information</value> </data> <data name="ImageResizer.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="MouseUtils.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="PowerLauncher.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="PowerRename.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="EditTooltip.Text" xml:space="preserve"> <value>Edit</value> </data> <data name="RemoveTooltip.Text" xml:space="preserve"> <value>Remove</value> </data> <data name="Activation_Shortcut_Cancel" xml:space="preserve"> <value>Cancel</value> </data> <data name="Activation_Shortcut_Description" xml:space="preserve"> <value>Press a combination of keys to change this shortcut</value> </data> <data name="Activation_Shortcut_With_Disable_Description" xml:space="preserve"> <value>Press a combination of keys to change this shortcut. Right-click to remove the key combination, thereby deactivating the shortcut.</value> </data> <data name="Activation_Shortcut_Reset" xml:space="preserve"> <value>Reset</value> </data> <data name="Activation_Shortcut_Save" xml:space="preserve"> <value>Save</value> </data> <data name="Activation_Shortcut_Title" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="InvalidShortcut.Title" xml:space="preserve"> <value>Invalid shortcut</value> </data> <data name="InvalidShortcutWarningLabel.Text" xml:space="preserve"> <value>Only shortcuts that start with **Windows key**, **Ctrl**, **Alt** or **Shift** are valid.</value> <comment>The ** sequences are used for text formatting of the key names. Don't remove them on translation.</comment> </data> <data name="FancyZones_SpanZonesAcrossMonitors.Description" xml:space="preserve"> <value>All monitors must have the same DPI scaling and will be treated as one large combined rectangle which contains all monitors</value> </data> <data name="ImageResizer_DefaultSize_NewSizePrefix" xml:space="preserve"> <value>New size</value> <comment>First part of the default name of new sizes that can be added in PT's settings ui.</comment> </data> <data name="Awake_IntervalSettingsCard.Header" xml:space="preserve"> <value>Interval before returning to the previous awakeness state</value> </data> <data name="Awake_ExpirationSettingsExpander.Header" xml:space="preserve"> <value>End date and time</value> </data> <data name="MouseUtils.ModuleTitle" xml:space="preserve"> <value>Mouse utilities</value> </data> <data name="MouseUtils.ModuleDescription" xml:space="preserve"> <value>A collection of mouse utilities.</value> </data> <data name="MouseUtils_FindMyMouse.Header" xml:space="preserve"> <value>Find My Mouse</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_FindMyMouse.Description" xml:space="preserve"> <value>Find My Mouse highlights the position of the cursor when pressing the Ctrl key twice, using a custom shortcut or when shaking the mouse.</value> <comment>"Ctrl" is a keyboard key. "Find My Mouse" is the name of the utility</comment> </data> <data name="MouseUtils_Enable_FindMyMouse.Header" xml:space="preserve"> <value>Enable Find My Mouse</value> <comment>"Find My Mouse" is the name of the utility.</comment> </data> <data name="MouseUtils_FindMyMouse_ActivationMethod.Header" xml:space="preserve"> <value>Activation method</value> </data> <data name="MouseUtils_FindMyMouse_ActivationDoubleControlPress.Content" xml:space="preserve"> <value>Press Left Control twice</value> <comment>Left control is the physical key on the keyboard.</comment> </data> <data name="MouseUtils_FindMyMouse_ActivationShakeMouse.Content" xml:space="preserve"> <value>Shake mouse</value> <comment>Mouse is the hardware peripheral.</comment> </data> <data name="MouseUtils_FindMyMouse_ExcludedApps.Description" xml:space="preserve"> <value>Prevents module activation when an excluded application is the foreground application</value> </data> <data name="MouseUtils_FindMyMouse_ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="MouseUtils_FindMyMouse_ExcludedApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> </data> <data name="MouseUtils_Prevent_Activation_On_Game_Mode.Content" xml:space="preserve"> <value>Do not activate when Game Mode is on</value> <comment>"Game mode" is the Windows feature to prevent notification when playing a game.</comment> </data> <data name="MouseUtils_FindMyMouse_BackgroundColor.Header" xml:space="preserve"> <value>Background color</value> </data> <data name="MouseUtils_FindMyMouse_SpotlightColor.Header" xml:space="preserve"> <value>Spotlight color</value> </data> <data name="MouseUtils_FindMyMouse_OverlayOpacity.Header" xml:space="preserve"> <value>Overlay opacity (%)</value> </data> <data name="MouseUtils_FindMyMouse_SpotlightRadius.Header" xml:space="preserve"> <value>Spotlight radius (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_FindMyMouse_SpotlightInitialZoom.Header" xml:space="preserve"> <value>Spotlight initial zoom</value> </data> <data name="MouseUtils_FindMyMouse_SpotlightInitialZoom.Description" xml:space="preserve"> <value>Spotlight zoom factor at animation start</value> </data> <data name="MouseUtils_FindMyMouse_AnimationDurationMs.Header" xml:space="preserve"> <value>Animation duration (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_FindMyMouse_AnimationDurationMs.Description" xml:space="preserve"> <value>Time before the spotlight appears (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_FindMyMouse_AnimationDurationMs_Disabled.Message" xml:space="preserve"> <value>Animations are disabled by OS. See Settings &gt; Accessibility &gt; Visual effects</value> </data> <data name="MouseUtils_FindMyMouse_ShakingMinimumDistance.Header" xml:space="preserve"> <value>Shake minimum distance</value> </data> <data name="MouseUtils_FindMyMouse_ShakingMinimumDistance.Description" xml:space="preserve"> <value>The minimum distance for mouse shaking activation, for adjusting sensitivity</value> </data> <data name="MouseUtils_MouseHighlighter.Header" xml:space="preserve"> <value>Mouse Highlighter</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_MouseHighlighter.Description" xml:space="preserve"> <value>Mouse Highlighter mode will highlight mouse clicks.</value> <comment>"Mouse Highlighter" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_Enable_MouseHighlighter.Header" xml:space="preserve"> <value>Enable Mouse Highlighter</value> <comment>"Find My Mouse" is the name of the utility.</comment> </data> <data name="MouseUtils_MouseHighlighter_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MouseUtils_MouseHighlighter_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to turn on or off this mode</value> <comment>"Mouse Highlighter" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_MouseHighlighter_PrimaryButtonClickColor.Header" xml:space="preserve"> <value>Primary button highlight color</value> </data> <data name="MouseUtils_MouseHighlighter_SecondaryButtonClickColor.Header" xml:space="preserve"> <value>Secondary button highlight color</value> </data> <data name="MouseUtils_MouseHighlighter_HighlightRadius.Header" xml:space="preserve"> <value>Radius (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDelayMs.Header" xml:space="preserve"> <value>Fade delay (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDelayMs.Description" xml:space="preserve"> <value>Time before the highlight begins to fade (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDurationMs.Header" xml:space="preserve"> <value>Fade duration (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDurationMs.Description" xml:space="preserve"> <value>Duration of the disappear animation (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MousePointerCrosshairs.Header" xml:space="preserve"> <value>Mouse Pointer Crosshairs</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_MousePointerCrosshairs.Description" xml:space="preserve"> <value>Mouse Pointer Crosshairs draws crosshairs centered on the mouse pointer.</value> <comment>"Mouse Pointer Crosshairs" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_Enable_MousePointerCrosshairs.Header" xml:space="preserve"> <value>Enable Mouse Pointer Crosshairs</value> <comment>"Mouse Pointer Crosshairs" is the name of the utility.</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MouseUtils_MousePointerCrosshairs_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to show/hide the crosshairs</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsColor.Header" xml:space="preserve"> <value>Crosshairs color</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsOpacity.Header" xml:space="preserve"> <value>Crosshairs opacity (%)</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsRadius.Header" xml:space="preserve"> <value>Crosshairs center radius (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsThickness.Header" xml:space="preserve"> <value>Crosshairs thickness (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsBorderColor.Header" xml:space="preserve"> <value>Crosshairs border color</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsBorderSize.Header" xml:space="preserve"> <value>Crosshairs border size (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_IsCrosshairsFixedLengthEnabled.Header" xml:space="preserve"> <value>Fix crosshairs length</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsFixedLength.Header" xml:space="preserve"> <value>Crosshairs fixed length (px)</value> <comment>px = pixels</comment> </data> <data name="FancyZones_Radio_Custom_Colors.Content" xml:space="preserve"> <value>Custom colors</value> </data> <data name="FancyZones_Radio_Default_Theme.Content" xml:space="preserve"> <value>Windows default</value> </data> <data name="ColorModeHeader.Header" xml:space="preserve"> <value>App theme</value> </data> <data name="FancyZones_Zone_Appearance.Description" xml:space="preserve"> <value>Customize the way zones look</value> </data> <data name="FancyZones_Zone_Appearance.Header" xml:space="preserve"> <value>Zone appearance</value> </data> <data name="VideoConference_DeprecationWarning.Title" xml:space="preserve"> <value>VCM is moving into legacy mode (maintenance only).</value> </data> <data name="VideoConference_DeprecationWarningButton.Content" xml:space="preserve"> <value>Learn more</value> </data> <data name="LearnMore.Content" xml:space="preserve"> <value>Learn more</value> </data> <data name="VideoConference_RunAsAdminRequired.Title" xml:space="preserve"> <value>You need to run as administrator to modify these settings.</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_GCODE.Header" xml:space="preserve"> <value>Geometric Code</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_GCODE.Description" xml:space="preserve"> <value>Only .gcode files with embedded thumbnails are supported</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_GCODE.Header" xml:space="preserve"> <value>Geometric Code</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_GCODE.Description" xml:space="preserve"> <value>Only .gcode files with embedded thumbnails are supported</value> </data> <data name="FancyZones_NumberColor.Header" xml:space="preserve"> <value>Number color</value> </data> <data name="FancyZones_ShowZoneNumberCheckBoxControl.Content" xml:space="preserve"> <value>Show zone number</value> </data> <data name="ToggleSwitch.OffContent" xml:space="preserve"> <value>Off</value> <comment>The state of a ToggleSwitch when it's off</comment> </data> <data name="ToggleSwitch.OnContent" xml:space="preserve"> <value>On</value> <comment>The state of a ToggleSwitch when it's on</comment> </data> <data name="CropAndLock.ModuleDescription" xml:space="preserve"> <value>Crop And Lock allows you to crop a current application into a smaller window or just create a thumbnail. Focus the target window and press the shortcut to start cropping.</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="CropAndLock.ModuleTitle" xml:space="preserve"> <value>Crop And Lock </value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="CropAndLock_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="CropAndLock_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="Shell_CropAndLock.Content" xml:space="preserve"> <value>Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="LearnMore_CropAndLock.Text" xml:space="preserve"> <value>Learn more about Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="CropAndLock_ReparentActivation_Shortcut.Header" xml:space="preserve"> <value>Reparent shortcut</value> </data> <data name="CropAndLock_ReparentActivation_Shortcut.Description" xml:space="preserve"> <value>Shortcut to crop an application's window into a cropped window. This is experimental and can cause issues with some applications, since the cropped window will contain the original application window.</value> </data> <data name="CropAndLock_ThumbnailActivation_Shortcut.Header" xml:space="preserve"> <value>Thumbnail shortcut</value> </data> <data name="CropAndLock_ThumbnailActivation_Shortcut.Description" xml:space="preserve"> <value>Shortcut to crop and create a thumbnail of another window. The application isn't controllable through the thumbnail but it'll have less compatibility issues. </value> </data> <data name="CropAndLock.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="Oobe_CropAndLock.Title" xml:space="preserve"> <value>Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="Oobe_CropAndLock.Description" xml:space="preserve"> <value>Crop And Lock allows you to crop a current application into a smaller window or just create a thumbnail. Focus the target window and press the shortcut to start cropping.</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="Oobe_CropAndLock_HowToUse_Thumbnail.Text" xml:space="preserve"> <value>to crop and create a thumbnail of another window. The application isn't controllable through the thumbnail but it'll have less compatibility issues.</value> </data> <data name="Oobe_CropAndLock_HowToUse_Reparent.Text" xml:space="preserve"> <value>to crop an application's window into a cropped window. This is experimental and can cause issues with some applications, since the cropped window will contain the original application window.</value> </data> <data name="AlwaysOnTop.ModuleDescription" xml:space="preserve"> <value>Always On Top is a quick and easy way to pin windows on top.</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop.ModuleTitle" xml:space="preserve"> <value>Always On Top </value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="Peek_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="AlwaysOnTop_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_ExcludedApps.Description" xml:space="preserve"> <value>Excludes an application from pinning on top</value> </data> <data name="AlwaysOnTop_ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="AlwaysOnTop_ExcludedApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> </data> <data name="AlwaysOnTop_FrameColor.Header" xml:space="preserve"> <value>Color</value> </data> <data name="AlwaysOnTop_FrameEnabled.Header" xml:space="preserve"> <value>Show a border around the pinned window</value> </data> <data name="AlwaysOnTop_FrameThickness.Header" xml:space="preserve"> <value>Thickness (px)</value> <comment>px = pixels</comment> </data> <data name="AlwaysOnTop_Behavior_GroupSettings.Header" xml:space="preserve"> <value>Appearance &amp; behavior</value> </data> <data name="Shell_AlwaysOnTop.Content" xml:space="preserve"> <value>Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_GameMode.Content" xml:space="preserve"> <value>Do not activate when Game Mode is on</value> <comment>Game Mode is a Windows feature</comment> </data> <data name="AlwaysOnTop_SoundTitle.Header" xml:space="preserve"> <value>Sound</value> </data> <data name="AlwaysOnTop_Sound.Content" xml:space="preserve"> <value>Play a sound when pinning a window</value> </data> <data name="AlwaysOnTop_Behavior.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="LearnMore_AlwaysOnTop.Text" xml:space="preserve"> <value>Learn more about Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="AlwaysOnTop_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to pin or unpin an app window</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="Oobe_AlwaysOnTop.Title" xml:space="preserve"> <value>Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="Oobe_AlwaysOnTop.Description" xml:space="preserve"> <value>Always On Top improves your multitasking workflow by pinning an application window so it's always in front - even when focus changes to another window after that.</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="Oobe_AlwaysOnTop_HowToUse.Text" xml:space="preserve"> <value>to pin or unpin the selected window so it's always on top of all other windows.</value> </data> <data name="Oobe_AlwaysOnTop_TipsAndTricks.Text" xml:space="preserve"> <value>You can tweak the visual outline of the pinned windows in PowerToys settings.</value> </data> <data name="AlwaysOnTop_FrameColor_Mode.Header" xml:space="preserve"> <value>Color mode</value> </data> <data name="AlwaysOnTop_Radio_Custom_Color.Content" xml:space="preserve"> <value>Custom color</value> </data> <data name="AlwaysOnTop_Radio_Windows_Default.Content" xml:space="preserve"> <value>Windows default</value> </data> <data name="FileExplorerPreview.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Monaco_Wrap_Text.Content" xml:space="preserve"> <value>Wrap text</value> <comment>Feature on or off</comment> </data> <data name="FancyZones_AllowPopupWindowSnap.Description" xml:space="preserve"> <value>This setting can affect all popup windows including notifications</value> </data> <data name="FancyZones_AllowPopupWindowSnap.Header" xml:space="preserve"> <value>Allow popup windows snapping</value> </data> <data name="FancyZones_AllowChildWindowSnap.Content" xml:space="preserve"> <value>Allow child windows snapping</value> </data> <data name="Shell_WhatsNew.Content" xml:space="preserve"> <value>What's new</value> </data> <data name="Shell_Peek.Content" xml:space="preserve"> <value>Peek</value> <comment>Product name: Navigation view item name for Peek</comment> </data> <data name="Peek.ModuleTitle" xml:space="preserve"> <value>Peek</value> </data> <data name="Peek.ModuleDescription" xml:space="preserve"> <value>Peek is a quick and easy way to preview files. Select a file in File Explorer and press the shortcut to open the file preview.</value> </data> <data name="Peek_EnablePeek.Header" xml:space="preserve"> <value>Enable Peek</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="Peek_BehaviorHeader.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="Peek_AlwaysRunNotElevated.Header" xml:space="preserve"> <value>Always run not elevated, even when PowerToys is elevated</value> </data> <data name="Peek_AlwaysRunNotElevated.Description" xml:space="preserve"> <value>Tries to run Peek without elevated permissions, to fix access to network shares. You need to disable and re-enable Peek for changes to this value to take effect.</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="Peek_CloseAfterLosingFocus.Header" xml:space="preserve"> <value>Automatically close the Peek window after it loses focus</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="FancyZones_DisableRoundCornersOnWindowSnap.Content" xml:space="preserve"> <value>Disable round corners when window is snapped</value> </data> <data name="PowerLauncher_SearchQueryTuningEnabled.Description" xml:space="preserve"> <value>Fine tune results ordering</value> </data> <data name="PowerLauncher_SearchQueryTuningEnabled.Header" xml:space="preserve"> <value>Results order tuning</value> </data> <data name="PowerLauncher_SearchClickedItemWeight.Description" xml:space="preserve"> <value>Use a higher number to get selected results to rise faster. The default is 5, 0 to disable.</value> </data> <data name="PowerLauncher_SearchClickedItemWeight.Header" xml:space="preserve"> <value>Selected item weight</value> </data> <data name="PowerLauncher_WaitForSlowResults.Description" xml:space="preserve"> <value>Selecting this can help preselect the top, more relevant result, but at the risk of jumpiness</value> </data> <data name="PowerLauncher_WaitForSlowResults.Header" xml:space="preserve"> <value>Wait on slower plugin results before selecting top item in results</value> </data> <data name="PowerLauncher_PluginWeightBoost.Description" xml:space="preserve"> <value>Use a higher number to have this plugin's result show higher in the global results. Default is 0.</value> </data> <data name="PowerLauncher_PluginWeightBoost.Header" xml:space="preserve"> <value>Global sort order score modifier</value> </data> <data name="AlwaysOnTop_RoundCorners.Content" xml:space="preserve"> <value>Enable round corners</value> </data> <data name="LearnMore_QuickAccent.Text" xml:space="preserve"> <value>Learn more about Quick Accent</value> <comment>Quick Accent is a product name, do not loc</comment> </data> <data name="QuickAccent_EnableQuickAccent.Header" xml:space="preserve"> <value>Enable Quick Accent</value> </data> <data name="Shell_QuickAccent.Content" xml:space="preserve"> <value>Quick Accent</value> </data> <data name="QuickAccent.ModuleDescription" xml:space="preserve"> <value>Quick Accent is an alternative way to type accented characters, useful for when a keyboard doesn't support that specific accent. Activate by holding the key for the character you want to add an accent to, then press the activation key (space, left or right arrow keys) and an overlay to select accented characters will appear!</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent.ModuleTitle" xml:space="preserve"> <value>Quick Accent</value> </data> <data name="QuickAccent.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> </data> <data name="AlwaysOnTop_ShortDescription" xml:space="preserve"> <value>Pin a window</value> </data> <data name="Awake_ShortDescription" xml:space="preserve"> <value>Keep your PC awake</value> </data> <data name="ColorPicker_ShortDescription" xml:space="preserve"> <value>Pick a color</value> </data> <data name="CropAndLock_Thumbnail" xml:space="preserve"> <value>Thumbnail</value> </data> <data name="CropAndLock_Reparent" xml:space="preserve"> <value>Reparent</value> </data> <data name="FancyZones_OpenEditor" xml:space="preserve"> <value>Open editor</value> </data> <data name="FileLocksmith_ShortDescription" xml:space="preserve"> <value>Right-click on files or directories to show running processes</value> </data> <data name="FindMyMouse_ShortDescription" xml:space="preserve"> <value>Find the mouse</value> </data> <data name="ImageResizer_ShortDescription" xml:space="preserve"> <value>Select Image Resizer in the right-click context menu</value> </data> <data name="MouseHighlighter_ShortDescription" xml:space="preserve"> <value>Highlight clicks</value> </data> <data name="MouseJump_ShortDescription" xml:space="preserve"> <value>Quickly move the mouse pointer</value> </data> <data name="MouseCrosshairs_ShortDescription" xml:space="preserve"> <value>Draw crosshairs centered on the mouse pointer</value> </data> <data name="MouseWithoutBorders_ShortDescription" xml:space="preserve"> <value>Move your cursor across multiple devices</value> </data> <data name="PastePlain_ShortDescription" xml:space="preserve"> <value>Paste clipboard content without formatting</value> </data> <data name="Peek_ShortDescription" xml:space="preserve"> <value>Quick and easy previewer</value> </data> <data name="PowerRename_ShortDescription" xml:space="preserve"> <value>Select Power Rename in right-click context menu</value> </data> <data name="Run_ShortDescription" xml:space="preserve"> <value>A quick launcher</value> </data> <data name="PowerAccent_ShortDescription" xml:space="preserve"> <value>An alternative way to type accented characters</value> </data> <data name="RegistryPreview_ShortDescription" xml:space="preserve"> <value>Visualize and edit Windows Registry files</value> </data> <data name="ScreenRuler_ShortDescription" xml:space="preserve"> <value>Measure pixels on your screen</value> </data> <data name="ShortcutGuide_ShortDescription" xml:space="preserve"> <value>Show a help overlay with Windows shortcuts</value> </data> <data name="PowerOcr_ShortDescription" xml:space="preserve"> <value>A convenient way to copy text from anywhere on screen</value> </data> <data name="Dashboard_Activation" xml:space="preserve"> <value>Activation</value> </data> <data name="DashboardKBMShowMappingsButton.Content" xml:space="preserve"> <value>Show remappings</value> </data> <data name="Oobe_QuickAccent.Description" xml:space="preserve"> <value>Quick Accent is an easy way to write letters with accents, like on a smartphone.</value> </data> <data name="Oobe_QuickAccent.Title" xml:space="preserve"> <value>Quick Accent</value> </data> <data name="Oobe_QuickAccent_HowToUse.Text" xml:space="preserve"> <value>Open **PowerToys Settings** and enable Quick Accent. While holding the key for the character you want to add an accent to, press the Activation Key and an overlay to select the accented character will appear.</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="QuickAccent_Activation_Shortcut.Header" xml:space="preserve"> <value>Activation key</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent_Activation_Shortcut.Description" xml:space="preserve"> <value>Press this key after holding down the target letter</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent_Activation_Key_Arrows.Content" xml:space="preserve"> <value>Left/Right Arrow</value> <comment>Left/Right arrow keyboard keys</comment> </data> <data name="QuickAccent_Activation_Key_Space.Content" xml:space="preserve"> <value>Space</value> <comment>Space is the space keyboard key</comment> </data> <data name="QuickAccent_Activation_Key_Either.Content" xml:space="preserve"> <value>Left, Right or Space</value> <comment>All are keys on a keyboard</comment> </data> <data name="QuickAccent_Toolbar.Header" xml:space="preserve"> <value>Toolbar</value> </data> <data name="QuickAccent_ToolbarPosition.Header" xml:space="preserve"> <value>Toolbar position</value> </data> <data name="QuickAccent_ToolbarPosition_TopCenter.Content" xml:space="preserve"> <value>Top center</value> </data> <data name="QuickAccent_ToolbarPosition_TopLeftCorner.Content" xml:space="preserve"> <value>Top left corner</value> </data> <data name="QuickAccent_ToolbarPosition_TopRightCorner.Content" xml:space="preserve"> <value>Top right corner</value> </data> <data name="QuickAccent_ToolbarPosition_BottomLeftCorner.Content" xml:space="preserve"> <value>Bottom left corner</value> </data> <data name="QuickAccent_ToolbarPosition_BottomCenter.Content" xml:space="preserve"> <value>Bottom center</value> </data> <data name="QuickAccent_ToolbarPosition_BottomRightCorner.Content" xml:space="preserve"> <value>Bottom right corner</value> </data> <data name="QuickAccent_ToolbarPosition_Center.Content" xml:space="preserve"> <value>Center</value> </data> <data name="QuickAccent_ToolbarPosition_Left.Content" xml:space="preserve"> <value>Left</value> </data> <data name="QuickAccent_ToolbarPosition_Right.Content" xml:space="preserve"> <value>Right</value> </data> <data name="QuickAccent_Behavior.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="QuickAccent_InputTimeMs.Header" xml:space="preserve"> <value>Input delay (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="QuickAccent_InputTimeMs.Description" xml:space="preserve"> <value>Hold the key down for this much time to make the accent menu appear (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="QuickAccent_ExcludedApps.Description" xml:space="preserve"> <value>Prevents module activation if a foreground application is excluded. Add one application name per line.</value> </data> <data name="QuickAccent_ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="QuickAccent_ExcludedApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: Teams.exe</value> </data> <data name="LearnMore_TextExtractor.Text" xml:space="preserve"> <value>Learn more about Text Extractor</value> </data> <data name="TextExtractor_Cancel" xml:space="preserve"> <value>cancel</value> </data> <data name="General_SettingsBackupAndRestore_NothingToBackup" xml:space="preserve"> <value>A new backup was not created because no settings have been changed since last backup.</value> </data> <data name="General_SettingsBackupAndRestore_NoBackupFound" xml:space="preserve"> <value>No backup found</value> </data> <data name="General_SettingsBackupAndRestore_FailedToParseTime" xml:space="preserve"> <value>Failed to parse time</value> </data> <data name="General_SettingsBackupAndRestore_UnknownBackupTime" xml:space="preserve"> <value>Unknown</value> </data> <data name="General_SettingsBackupAndRestore_UnknownBackupSource" xml:space="preserve"> <value>Unknown</value> </data> <data name="General_SettingsBackupAndRestore_ThisMachine" xml:space="preserve"> <value>This computer</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsMatch" xml:space="preserve"> <value>Current settings match</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsStatusAt" xml:space="preserve"> <value>at</value> <comment>E.g., Food was served 'at' noon.</comment> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsDiffer" xml:space="preserve"> <value>Current settings differ</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsNoChecked" xml:space="preserve"> <value>Checking...</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsUnknown" xml:space="preserve"> <value>Unknown</value> </data> <data name="General_SettingsBackupAndRestore_NeverRestored" xml:space="preserve"> <value>Never restored</value> </data> <data name="General_SettingsBackupAndRestore_NothingToRestore" xml:space="preserve"> <value>Nothing to restore.</value> </data> <data name="General_SettingsBackupAndRestore_NoSettingsFilesFound" xml:space="preserve"> <value>No settings files found.</value> </data> <data name="General_SettingsBackupAndRestore_BackupError" xml:space="preserve"> <value>There was an error. Try another backup location.</value> </data> <data name="General_SettingsBackupAndRestore_SettingsFormatError" xml:space="preserve"> <value>There was an error in the settings format. Please check the settings file:</value> </data> <data name="General_SettingsBackupAndRestore_BackupComplete" xml:space="preserve"> <value>Backup completed.</value> </data> <data name="General_SettingsBackupAndRestore_NoBackupSyncPath" xml:space="preserve"> <value>No backup location selected.</value> </data> <data name="General_SettingsBackupAndRestore_NoBackupsFound" xml:space="preserve"> <value>No backups found to restore.</value> </data> <data name="General_SettingsBackupAndRestore_InvalidBackupLocation" xml:space="preserve"> <value>Invalid backup location.</value> </data> <data name="TextExtractor.ModuleDescription" xml:space="preserve"> <value>Text Extractor is a convenient way to copy text from anywhere on screen</value> </data> <data name="TextExtractor.ModuleTitle" xml:space="preserve"> <value>Text Extractor</value> </data> <data name="TextExtractor_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Text Extractor</value> </data> <data name="TextExtractor_SupportedLanguages.Title" xml:space="preserve"> <value>Text Extractor can only recognize languages that have the OCR pack installed.</value> </data> <data name="TextExtractor_SupportedLanguages_Link.Content" xml:space="preserve"> <value>Learn more about supported languages</value> </data> <data name="Shell_TextExtractor.Content" xml:space="preserve"> <value>Text Extractor</value> </data> <data name="Launch_TextExtractor.Content" xml:space="preserve"> <value>Launch Text Extractor</value> </data> <data name="Oobe_TextExtractor.Title" xml:space="preserve"> <value>Text Extractor</value> </data> <data name="Oobe_TextExtractor_HowToUse.Text" xml:space="preserve"> <value>to open Text Extractor and then selecting a region to copy the text from.</value> </data> <data name="Oobe_TextExtractor_TipsAndTricks.Text" xml:space="preserve"> <value>Hold the shift key to move the selection region around.</value> </data> <data name="TextExtractor.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> </data> <data name="Oobe_TextExtractor.Description" xml:space="preserve"> <value>Text Extractor works like Snipping Tool, but copies the text out of the selected region using OCR and puts it on the clipboard.</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Monaco_Try_Format.Description" xml:space="preserve"> <value>Applies to json and xml. Files remain unchanged.</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Monaco_Try_Format.Header" xml:space="preserve"> <value>Try to format the source for preview</value> </data> <data name="Run_ConflictingKeywordInfo.Title" xml:space="preserve"> <value>Some characters and phrases may conflict with global queries of other plugins if you use them as activation command.</value> </data> <data name="Run_ConflictingKeywordInfo_Link.Content" xml:space="preserve"> <value>Learn more about conflicting activation commands</value> </data> <data name="MeasureTool_ContinuousCapture_Information.Title" xml:space="preserve"> <value>The continuous capture mode will consume more resources when in use. Also, measurements will be excluded from screenshots and screen capture.</value> <comment>pointer as in mouse pointer. Resources refer to things like CPU, GPU, RAM</comment> </data> <data name="QuickAccent_Description_Indicator.Header" xml:space="preserve"> <value>Show the Unicode code and name of the currently selected character</value> </data> <data name="QuickAccent_SortByUsageFrequency_Indicator.Header" xml:space="preserve"> <value>Sort characters by usage frequency</value> </data> <data name="QuickAccent_SortByUsageFrequency_Indicator.Description" xml:space="preserve"> <value>Track characters usage frequency and sort them accordingly</value> </data> <data name="QuickAccent_StartSelectionFromTheLeft_Indicator.Header" xml:space="preserve"> <value>Start selection from the left</value> </data> <data name="QuickAccent_StartSelectionFromTheLeft_Indicator.Description" xml:space="preserve"> <value>Start selection from the leftmost character for all activation keys, including left and right arrows</value> </data> <data name="QuickAccent_DisableFullscreen.Header" xml:space="preserve"> <value>Disable when Game Mode is On</value> </data> <data name="QuickAccent_Language.Header" xml:space="preserve"> <value>Characters</value> </data> <data name="QuickAccent_SelectedLanguage.Header" xml:space="preserve"> <value>Choose a character set</value> </data> <data name="QuickAccent_SelectedLanguage.Description" xml:space="preserve"> <value>Show only accented characters common to the selected set</value> </data> <data name="QuickAccent_SelectedLanguage_All.Content" xml:space="preserve"> <value>All available</value> </data> <data name="QuickAccent_SelectedLanguage_Catalan.Content" xml:space="preserve"> <value>Catalan</value> </data> <data name="QuickAccent_SelectedLanguage_Currency.Content" xml:space="preserve"> <value>Currency</value> </data> <data name="QuickAccent_SelectedLanguage_Croatian.Content" xml:space="preserve"> <value>Croatian</value> </data> <data name="QuickAccent_SelectedLanguage_Czech.Content" xml:space="preserve"> <value>Czech</value> </data> <data name="QuickAccent_SelectedLanguage_Gaeilge.Content" xml:space="preserve"> <value>Gaeilge</value> <comment>Gaelic language spoken in Ireland</comment> </data> <data name="QuickAccent_SelectedLanguage_Gaidhlig.Content" xml:space="preserve"> <value>Gàidhlig</value> <comment>Scottish Gaelic</comment> </data> <data name="QuickAccent_SelectedLanguage_German.Content" xml:space="preserve"> <value>German</value> </data> <data name="QuickAccent_SelectedLanguage_Hebrew.Content" xml:space="preserve"> <value>Hebrew</value> </data> <data name="QuickAccent_SelectedLanguage_French.Content" xml:space="preserve"> <value>French</value> </data> <data name="QuickAccent_SelectedLanguage_Estonian.Content" xml:space="preserve"> <value>Estonian</value> </data> <data name="QuickAccent_SelectedLanguage_Lithuanian.Content" xml:space="preserve"> <value>Lithuanian</value> </data> <data name="QuickAccent_SelectedLanguage_Macedonian.Content" xml:space="preserve"> <value>Macedonian</value> </data> <data name="QuickAccent_SelectedLanguage_Maori.Content" xml:space="preserve"> <value>Maori</value> </data> <data name="QuickAccent_SelectedLanguage_Dutch.Content" xml:space="preserve"> <value>Dutch</value> </data> <data name="QuickAccent_SelectedLanguage_Norwegian.Content" xml:space="preserve"> <value>Norwegian</value> </data> <data name="QuickAccent_SelectedLanguage_Pinyin.Content" xml:space="preserve"> <value>Pinyin</value> </data> <data name="QuickAccent_SelectedLanguage_Polish.Content" xml:space="preserve"> <value>Polish</value> </data> <data name="QuickAccent_SelectedLanguage_Portuguese.Content" xml:space="preserve"> <value>Portuguese</value> </data> <data name="QuickAccent_SelectedLanguage_Slovakian.Content" xml:space="preserve"> <value>Slovakian</value> </data> <data name="QuickAccent_SelectedLanguage_Spanish.Content" xml:space="preserve"> <value>Spanish</value> </data> <data name="QuickAccent_SelectedLanguage_Swedish.Content" xml:space="preserve"> <value>Swedish</value> </data> <data name="QuickAccent_SelectedLanguage_Turkish.Content" xml:space="preserve"> <value>Turkish</value> </data> <data name="QuickAccent_SelectedLanguage_Icelandic.Content" xml:space="preserve"> <value>Icelandic</value> </data> <data name="QuickAccent_SelectedLanguage_Romanian.Content" xml:space="preserve"> <value>Romanian</value> </data> <data name="QuickAccent_SelectedLanguage_Serbian.Content" xml:space="preserve"> <value>Serbian</value> </data> <data name="QuickAccent_SelectedLanguage_Hungarian.Content" xml:space="preserve"> <value>Hungarian</value> </data> <data name="QuickAccent_SelectedLanguage_Italian.Content" xml:space="preserve"> <value>Italian</value> </data> <data name="QuickAccent_SelectedLanguage_Kurdish.Content" xml:space="preserve"> <value>Kurdish</value> </data> <data name="QuickAccent_SelectedLanguage_Welsh.Content" xml:space="preserve"> <value>Welsh</value> </data> <data name="Hosts.ModuleDescription" xml:space="preserve"> <value>Quick and simple utility for managing hosts file.</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Hosts.ModuleTitle" xml:space="preserve"> <value>Hosts File Editor</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Shell_Hosts.Content" xml:space="preserve"> <value>Hosts File Editor</value> <comment>Products name: Navigation view item name for Hosts File Editor</comment> </data> <data name="Hosts_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Hosts_Toggle_ShowStartupWarning.Header" xml:space="preserve"> <value>Show a warning at startup</value> </data> <data name="Hosts_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="Hosts_LaunchButtonControl.Description" xml:space="preserve"> <value>Manage your hosts file</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Hosts_LaunchButtonControl.Header" xml:space="preserve"> <value>Launch Host File Editor</value> <comment>"Host File Editor" is a product name</comment> </data> <data name="Hosts_LaunchButton_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Launch Host File Editor</value> <comment>"Host File Editor" is a product name</comment> </data> <data name="Hosts_AdditionalLinesPosition.Header" xml:space="preserve"> <value>Position of additional content</value> </data> <data name="Hosts_AdditionalLinesPosition_Bottom.Content" xml:space="preserve"> <value>Bottom</value> </data> <data name="Hosts_AdditionalLinesPosition_Top.Content" xml:space="preserve"> <value>Top</value> </data> <data name="Hosts_Behavior_GroupSettings.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="Launch_Hosts.Content" xml:space="preserve"> <value>Launch Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="LearnMore_Hosts.Text" xml:space="preserve"> <value>Learn more about Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Oobe_Hosts.Description" xml:space="preserve"> <value>Hosts File Editor is a quick and simple utility for managing hosts file.</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Oobe_Hosts.Title" xml:space="preserve"> <value>Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Hosts_Toggle_LaunchAdministrator.Description" xml:space="preserve"> <value>Needs to be launched as administrator in order to make changes to the hosts file</value> </data> <data name="Hosts_Toggle_LaunchAdministrator.Header" xml:space="preserve"> <value>Launch as administrator</value> </data> <data name="ShortcutGuide_PressTimeForTaskbarIconShortcuts.Header" xml:space="preserve"> <value>Press duration before showing taskbar icon shortcuts (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="FileLocksmith.ModuleDescription" xml:space="preserve"> <value>A Windows shell extension to find out which processes are using the selected files and directories.</value> </data> <data name="FileLocksmith.ModuleTitle" xml:space="preserve"> <value>File Locksmith</value> </data> <data name="Shell_FileLocksmith.Content" xml:space="preserve"> <value>File Locksmith</value> <comment>Product name: Navigation view item name for FileLocksmith</comment> </data> <data name="FileLocksmith_Enable_FileLocksmith.Header" xml:space="preserve"> <value>Enable File Locksmith</value> <comment>File Locksmith is the name of the utility</comment> </data> <data name="FileLocksmith_Toggle_StandardContextMenu.Content" xml:space="preserve"> <value>Default and extended context menu</value> </data> <data name="FileLocksmith_Toggle_ExtendedContextMenu.Content" xml:space="preserve"> <value>Extended context menu only</value> </data> <data name="FileLocksmith_Toggle_ContextMenu.Header" xml:space="preserve"> <value>Show File Locksmith in</value> </data> <data name="FileLocksmith_ShellIntegration.Header" xml:space="preserve"> <value>Shell integration</value> <comment>This refers to directly integrating in with Windows</comment> </data> <data name="GPO_IsSettingForced.Title" xml:space="preserve"> <value>This setting is enforced by your System Administrator.</value> </data> <data name="Hosts_AdditionalLinesPosition.Description" xml:space="preserve"> <value>Additional content includes the file header and lines that can't parse</value> </data> <data name="TextExtractor_Languages.Header" xml:space="preserve"> <value>Preferred language</value> </data> <data name="Alternate_OOBE_AlwaysOnTop_Description.Text" xml:space="preserve"> <value>Pin a window so that:</value> </data> <data name="Alternate_OOBE_AlwaysOnTop_Title.Text" xml:space="preserve"> <value>Always On Top</value> </data> <data name="Alternate_OOBE_ColorPicker_Description.Text" xml:space="preserve"> <value>To pick a color:</value> </data> <data name="Alternate_OOBE_ColorPicker_Title.Text" xml:space="preserve"> <value>Color Picker</value> </data> <data name="Alternate_OOBE_Description.Text" xml:space="preserve"> <value>Here are a few shortcuts to get you started:</value> </data> <data name="Alternate_OOBE_FancyZones_Description.Text" xml:space="preserve"> <value>To open the FancyZones editor, press:</value> </data> <data name="Alternate_OOBE_FancyZones_Title.Text" xml:space="preserve"> <value>FancyZones</value> </data> <data name="Alternate_OOBE_Run_Description.Text" xml:space="preserve"> <value>Get access to your files and more:</value> </data> <data name="Alternate_OOBE_Run_Title.Text" xml:space="preserve"> <value>PowerToys Run</value> </data> <data name="General_Experimentation.Header" xml:space="preserve"> <value>Experimentation</value> </data> <data name="GeneralPage_EnableExperimentation.Description" xml:space="preserve"> <value>Note: Only Windows Insider builds may be selected for experimentation</value> </data> <data name="GeneralPage_EnableExperimentation.Header" xml:space="preserve"> <value>Allow experimentation with new features</value> </data> <data name="GPO_ExperimentationIsDisallowed.Title" xml:space="preserve"> <value>The system administrator has disabled experimentation.</value> </data> <data name="Shell_PastePlain.Content" xml:space="preserve"> <value>Paste As Plain Text</value> <comment>Product name: Navigation view item name for Paste as Plain Text</comment> </data> <data name="PastePlain.ModuleDescription" xml:space="preserve"> <value>Paste As Plain Text is a quick shortcut for pasting the text contents of your clipboard without formatting. Note: the formatted text in the clipboard is replaced with the unformatted text.</value> </data> <data name="PastePlain.ModuleTitle" xml:space="preserve"> <value>Paste As Plain Text</value> </data> <data name="PastePlain_Cancel" xml:space="preserve"> <value>cancel</value> </data> <data name="PastePlain_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Paste As Plain Text</value> </data> <data name="Oobe_PastePlain.Description" xml:space="preserve"> <value>Paste As Plain Text strips rich formatting from your clipboard data and pastes it as non-formatted text.</value> </data> <data name="Oobe_PastePlain.Title" xml:space="preserve"> <value>Paste As Plain Text</value> </data> <data name="Oobe_PastePlain_HowToUse.Text" xml:space="preserve"> <value>to paste your clipboard data as plain text. Note: this will replace the formatted text in your clipboard with the plain text.</value> </data> <data name="AllAppsTxt.Text" xml:space="preserve"> <value>All apps</value> </data> <data name="BackBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Back</value> </data> <data name="BackLabel.Text" xml:space="preserve"> <value>Back</value> </data> <data name="BugReportBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Bug report</value> </data> <data name="BugReportTooltip.Text" xml:space="preserve"> <value>Bug report</value> </data> <data name="DocsBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Documentation</value> </data> <data name="DocsTooltip.Text" xml:space="preserve"> <value>Documentation</value> </data> <data name="FZEditorString" xml:space="preserve"> <value>FancyZones Editor</value> <comment>Do not localize this string</comment> </data> <data name="MoreBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>More</value> </data> <data name="MoreLabel.Text" xml:space="preserve"> <value>More</value> </data> <data name="SettingsBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Settings</value> </data> <data name="SettingsTooltip.Text" xml:space="preserve"> <value>Settings</value> </data> <data name="ShortcutsTxt.Text" xml:space="preserve"> <value>Shortcuts</value> </data> <data name="UpdateAvailable.Title" xml:space="preserve"> <value>Update available</value> </data> <data name="FileExplorerPreview_Toggle_Monaco_Max_File_Size.Header" xml:space="preserve"> <value>Maximum file size to preview</value> <comment>Size refers to the disk space used by a file</comment> </data> <data name="FileExplorerPreview_Toggle_Monaco_Max_File_Size.Description" xml:space="preserve"> <value>The maximum size, in kilobytes, for files to be displayed. This is a safety mechanism to prevent loading large files into RAM.</value> <comment>"RAM" refers to random access memory; "size" refers to disk space; "bytes" refer to the measurement unit</comment> </data> <data name="RegistryPreview.ModuleDescription" xml:space="preserve"> <value>A quick little utility to visualize and edit complex Windows Registry files.</value> </data> <data name="RegistryPreview.ModuleTitle" xml:space="preserve"> <value>Registry Preview</value> </data> <data name="Shell_RegistryPreview.Content" xml:space="preserve"> <value>Registry Preview</value> <comment>Product name: Navigation view item name for Registry Preview</comment> </data> <data name="RegistryPreview_Enable_RegistryPreview.Header" xml:space="preserve"> <value>Enable Registry Preview</value> <comment>Registry Preview is the name of the utility</comment> </data> <data name="Oobe_RegistryPreview_HowToUse.Text" xml:space="preserve"> <value>In File Explorer, right-click a .REG file and select **Preview** from the context menu.</value> </data> <data name="Oobe_RegistryPreview_TipsAndTricks.Text" xml:space="preserve"> <value>You can preview or edit Registry files in File Explorer or by opening the app from the PowerToys launcher.</value> </data> <data name="Oobe_RegistryPreview.Description" xml:space="preserve"> <value>Registry Preview is a quick little utility to visualize and edit complex Windows Registry files.</value> </data> <data name="Oobe_RegistryPreview.Title" xml:space="preserve"> <value>Registry Preview</value> <comment>Do not localize this string</comment> </data> <data name="LearnMore_RegistryPreview.Text" xml:space="preserve"> <value>Learn more about Registry Preview</value> <comment>Registry Preview is a product name, do not loc</comment> </data> <data name="Launch_RegistryPreview.Content" xml:space="preserve"> <value>Launch Registry Preview</value> <comment>"Registry Preview" is the name of the utility</comment> </data> <data name="MouseUtils_MouseJump.Description" xml:space="preserve"> <value>Quickly move the mouse pointer long distances.</value> <comment>"Mouse Jump" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_MouseJump.Header" xml:space="preserve"> <value>Mouse Jump</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_MouseJump_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to turn on or off this mode</value> </data> <data name="MouseUtils_MouseJump_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MouseUtils_Enable_MouseJump.Header" xml:space="preserve"> <value>Enable Mouse Jump</value> <comment>"Mouse Jump" is the name of the utility.</comment> </data> <data name="GPO_AutoDownloadUpdatesIsDisabled.Title" xml:space="preserve"> <value>The system administrator has disabled the automatic download of updates.</value> </data> <data name="Hosts_Toggle_LoopbackDuplicates.Description" xml:space="preserve"> <value>127.0.0.1, ::1, ...</value> <comment>"127.0.0.1 and ::1" are well known loopback addresses, do not loc</comment> </data> <data name="Hosts_Toggle_LoopbackDuplicates.Header" xml:space="preserve"> <value>Consider loopback addresses as duplicates</value> </data> <data name="RegistryPreview_Launch_GroupSettings.Header" xml:space="preserve"> <value>Launch</value> </data> <data name="RegistryPreview_LaunchButton_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Launch Registry Preview</value> </data> <data name="RegistryPreview_LaunchButtonControl.Header" xml:space="preserve"> <value>Launch Registry Preview</value> </data> <data name="RegistryPreview_DefaultRegApp.Header" xml:space="preserve"> <value>Default app</value> </data> <data name="RegistryPreview_DefaultRegApp.Description" xml:space="preserve"> <value>Make Registry Preview default app for opening .reg files</value> <comment>Registry Preview is app name. Do not localize.</comment> </data> <data name="PastePlain_ShortcutWarning.Title" xml:space="preserve"> <value>Using this shortcut may prevent non-text paste actions (e.g. images, files) or built-in paste plain text actions in other applications from functioning.</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize.Header" xml:space="preserve"> <value>Thumbnail Size</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Description_Prefix.Text" xml:space="preserve"> <value>Constrain thumbnail image size to a maximum of</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Description_Suffix.Text" xml:space="preserve"> <value>pixels</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Edit_Height.Header" xml:space="preserve"> <value>Maximum height (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Edit_Width.Header" xml:space="preserve"> <value>Maximum width (px)</value> <comment>px = pixels</comment> </data> <data name="Oobe_Peek.Description" xml:space="preserve"> <value>A lightning fast file preview feature for Windows.</value> </data> <data name="Oobe_Peek.Title" xml:space="preserve"> <value>Peek</value> </data> <data name="Oobe_Peek_HowToUse.Text" xml:space="preserve"> <value>to preview the file that's currently selected in File Explorer.</value> </data> <data name="MWB_PCNameLabel.PlaceholderText" xml:space="preserve"> <value>Device name</value> </data> <data name="MWB_SecurityKeyLabel.PlaceholderText" xml:space="preserve"> <value>Security key</value> </data> <data name="Hosts_Encoding.Description" xml:space="preserve"> <value>Choose the encoding of the hosts file</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Hosts_Encoding.Header" xml:space="preserve"> <value>Encoding</value> </data> <data name="Hosts_Encoding_Utf8.Content" xml:space="preserve"> <value>UTF-8</value> </data> <data name="Hosts_Encoding_Utf8Bom.Content" xml:space="preserve"> <value>UTF-8 with BOM</value> </data> <data name="MouseUtils_MouseHighlighter_AlwaysColor.Header" xml:space="preserve"> <value>Always highlight color</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsAutoHide.Content" xml:space="preserve"> <value>Automatically hide crosshairs when the mouse pointer is hidden</value> </data> <data name="MouseUtils_AutoActivate.Content" xml:space="preserve"> <value>Automatically activate on utility startup</value> </data> <data name="Run_FindMorePlugins.Text" xml:space="preserve"> <value>Find more plugins</value> </data> <data name="Run_PluginUseFindMorePlugins.Content" xml:space="preserve"> <value>Find more plugins</value> </data> <data name="Run_SomePluginsAreGpoManaged.Title" xml:space="preserve"> <value>The system administrator is managing the enabled state of some plugins.</value> </data> <data name="AlwaysOnTop_FrameOpacity.Header" xml:space="preserve"> <value>Opacity (%)</value> </data> <data name="MouseUtils_FindMyMouse_ActivationCustomizedShortcut.Content" xml:space="preserve"> <value>Custom shortcut</value> </data> <data name="MouseUtils_FindMyMouse_ActivationDoubleRightControlPress.Content" xml:space="preserve"> <value>Press Right Control twice</value> <comment>Right control is the physical key on the keyboard.</comment> </data> <data name="MouseUtils_FindMyMouse_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to turn on or off this mode</value> </data> <data name="MouseUtils_FindMyMouse_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="SettingsWindow_AdminTitle" xml:space="preserve"> <value>Administrator: PowerToys Settings</value> <comment>Title of the settings window when running as administrator</comment> </data> <data name="DashboardTitle.Text" xml:space="preserve"> <value>Dashboard</value> </data> <data name="Shell_Dashboard.Content" xml:space="preserve"> <value>Dashboard</value> </data> <data name="GPO_IsSettingForcedText.Text" xml:space="preserve"> <value>This setting is enforced by your System Administrator.</value> </data> <data name="DisabledModules.Text" xml:space="preserve"> <value>Disabled modules</value> </data> <data name="EnabledModules.Text" xml:space="preserve"> <value>Enabled modules</value> </data> </root>
donlaci
8c22f0c48540793452b70d913b2a6a719c881a33
1f936df3ebce73b726ed11c9fa38fd477b4b0fbd
This resource is used for the <TextBlock x:Uid="GPO_IsSettingForcedText" ...> to set its Text. I'm not sure about the .Title you mentioned. Please let me know if you see a problem with it. Thanks a lot for the review!
donlaci
355
microsoft/PowerToys
29,023
[Settings] Adding a Dashboard Panel
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request Adding a new Dashboard panel to the settings app. It contains the active modules with a brief description, activation shortcut if present, launch button if reasonable and a quick link button to the module's settings page. The new dashboard panel contains a list of all the modules as well, where the user can toggle the modules' enabled/disabled state. ![Dashboard](https://github.com/microsoft/PowerToys/assets/9866362/a773ff5b-0321-4eb3-9c3d-b5b4df9a25f5) <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [X] **Closes:** #26816 - [ ] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected - [ ] **Tests:** Added/updated and all pass - [ ] **Localization:** All end user facing strings can be localized - [ ] **Dev docs:** Added/updated - [ ] **New binaries:** Added on the required places - [ ] [JSON for signing](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ESRPSigning_core.json) for new binaries - [ ] [WXS for installer](https://github.com/microsoft/PowerToys/blob/main/installer/PowerToysSetup/Product.wxs) for new binaries and localization folder - [ ] [YML for CI pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ci/templates/build-powertoys-steps.yml) for new test projects - [ ] [YML for signed pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/release.yml) - [ ] **Documentation updated:** If checked, please file a pull request on [our docs repo](https://github.com/MicrosoftDocs/windows-uwp/tree/docs/hub/powertoys) and link it here: #xxx <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed Tested locally
null
2023-10-04 18:35:54+00:00
2023-10-20 12:23:25+00:00
src/settings-ui/Settings.UI/Strings/en-us/Resources.resw
<?xml version="1.0" encoding="utf-8"?> <root> <!-- Microsoft ResX Schema Version 2.0 The primary goals of this format is to allow a simple XML format that is mostly human readable. The generation and parsing of the various data types are done through the TypeConverter classes associated with the data types. Example: ... ado.net/XML headers & schema ... <resheader name="resmimetype">text/microsoft-resx</resheader> <resheader name="version">2.0</resheader> <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader> <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader> <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data> <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data> <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64"> <value>[base64 mime encoded serialized .NET Framework object]</value> </data> <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value> <comment>This is a comment</comment> </data> There are any number of "resheader" rows that contain simple name/value pairs. Each data row contains a name, and value. The row also contains a type or mimetype. Type corresponds to a .NET class that support text/value conversion through the TypeConverter architecture. Classes that don't support this are serialized and stored with the mimetype set. The mimetype is used for serialized objects, and tells the ResXResourceReader how to depersist the object. This is currently not extensible. For a given mimetype the value must be set accordingly: Note - application/x-microsoft.net.object.binary.base64 is the format that the ResXResourceWriter will generate, however the reader can read any of the formats listed below. mimetype: application/x-microsoft.net.object.binary.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.soap.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Soap.SoapFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.bytearray.base64 value : The object must be serialized into a byte array : using a System.ComponentModel.TypeConverter : and then encoded with base64 encoding. --> <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> <xsd:import namespace="http://www.w3.org/XML/1998/namespace" /> <xsd:element name="root" msdata:IsDataSet="true"> <xsd:complexType> <xsd:choice maxOccurs="unbounded"> <xsd:element name="metadata"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" /> </xsd:sequence> <xsd:attribute name="name" use="required" type="xsd:string" /> <xsd:attribute name="type" type="xsd:string" /> <xsd:attribute name="mimetype" type="xsd:string" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="assembly"> <xsd:complexType> <xsd:attribute name="alias" type="xsd:string" /> <xsd:attribute name="name" type="xsd:string" /> </xsd:complexType> </xsd:element> <xsd:element name="data"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" /> <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="resheader"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" /> </xsd:complexType> </xsd:element> </xsd:choice> </xsd:complexType> </xsd:element> </xsd:schema> <resheader name="resmimetype"> <value>text/microsoft-resx</value> </resheader> <resheader name="version"> <value>2.0</value> </resheader> <resheader name="reader"> <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <resheader name="writer"> <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <data name="Attribution_Rooler.Text" xml:space="preserve"> <value>Inspired by Rooler</value> <comment>Rooler is a name of the tool.</comment> </data> <data name="Shell_VideoConference.Content" xml:space="preserve"> <value>Video Conference Mute</value> <comment>Navigation view item name for Video Conference</comment> </data> <data name="Shell_MeasureTool.Content" xml:space="preserve"> <value>Screen Ruler</value> <comment>Product name: Navigation view item name for Screen Ruler</comment> </data> <data name="MeasureTool.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="MeasureTool.ModuleDescription" xml:space="preserve"> <value>Screen Ruler is a quick and easy way to measure pixels on your screen.</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool.ModuleTitle" xml:space="preserve"> <value>Screen Ruler</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool_ActivationSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="MeasureTool_Settings.Header" xml:space="preserve"> <value>Behavior</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MeasureTool_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to bring up the command bar</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool_DefaultMeasureStyle.Header" xml:space="preserve"> <value>Default measure style</value> </data> <data name="MeasureTool_DefaultMeasureStyle.Description" xml:space="preserve"> <value>The utility will start having the selected style activated</value> </data> <data name="MeasureTool_DefaultMeasureStyle_None.Content" xml:space="preserve"> <value>None</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Bounds.Content" xml:space="preserve"> <value>Bounds</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Spacing.Content" xml:space="preserve"> <value>Spacing</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Horizontal_Spacing.Content" xml:space="preserve"> <value>Horizontal spacing</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Vertical_Spacing.Content" xml:space="preserve"> <value>Vertical spacing</value> </data> <data name="MeasureTool_UnitsOfMeasure.Header" xml:space="preserve"> <value>Units of measurement</value> </data> <data name="MeasureTool_UnitsOfMeasure_Pixels.Content" xml:space="preserve"> <value>Pixels</value> </data> <data name="MeasureTool_UnitsOfMeasure_Inches.Content" xml:space="preserve"> <value>Inches</value> </data> <data name="MeasureTool_UnitsOfMeasure_Centimeters.Content" xml:space="preserve"> <value>Centimeters</value> </data> <data name="MeasureTool_PixelTolerance.Header" xml:space="preserve"> <value>Pixel tolerance for edge detection</value> </data> <data name="MeasureTool_MeasureCrossColor.Header" xml:space="preserve"> <value>Line color</value> </data> <data name="MeasureTool_ContinuousCapture.Header" xml:space="preserve"> <value>Capture screen continuously during measuring</value> </data> <data name="MeasureTool_ContinuousCapture.Description" xml:space="preserve"> <value>Refresh screen contexts in real-time instead of making a screenshot once</value> </data> <data name="MeasureTool_PerColorChannelEdgeDetection.Header" xml:space="preserve"> <value>Per color channel edge detection</value> </data> <data name="MeasureTool_PerColorChannelEdgeDetection.Description" xml:space="preserve"> <value>If enabled, test that all color channels are within a tolerance distance from each other. Otherwise, check that the sum of all color channels differences is smaller than the tolerance.</value> </data> <data name="MeasureTool_DrawFeetOnCross.Header" xml:space="preserve"> <value>Draw feet on cross</value> </data> <data name="MeasureTool_DrawFeetOnCross.Description" xml:space="preserve"> <value>Adds feet to the end of cross lines</value> </data> <data name="MeasureTool_EnableMeasureTool.Header" xml:space="preserve"> <value>Enable Screen Ruler</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MouseWithoutBorders_ActivationSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="MouseWithoutBorders_DeviceLayoutSettings.Header" xml:space="preserve"> <value>Device layout</value> </data> <data name="MouseWithoutBorders_DeviceLayoutSettings.Description" xml:space="preserve"> <value>Drag and drop a machine to rearrange the order.</value> </data> <data name="MouseWithoutBorders_CannotDragDropAsAdmin.Title" xml:space="preserve"> <value>It is not possible to use drag and drop while running PowerToys elevated. As a workaround, please restart PowerToys without elevation to edit the device layout.</value> </data> <data name="MouseWithoutBorders_KeySettings.Header" xml:space="preserve"> <value>Encryption key</value> </data> <data name="MouseWithoutBorders_SecurityKey.Header" xml:space="preserve"> <value>Security key</value> </data> <data name="MouseWithoutBorders_SecurityKey.Description" xml:space="preserve"> <value>The key must be auto generated in one machine by clicking on New Key, then typed in other machines</value> </data> <data name="MouseWithoutBorders_NewKey.Content" xml:space="preserve"> <value>New key</value> </data> <data name="MouseWithoutBorders_CopyMachineName.Text" xml:space="preserve"> <value>Copy to clipboard</value> </data> <data name="MouseWithoutBorders_ReconnectButton.Text" xml:space="preserve"> <value>Refresh connections</value> </data> <data name="MouseWithoutBorders_ReconnectTooltip.Text" xml:space="preserve"> <value>Reestablishes connections with other devices if you are experiencing issues.</value> </data> <data name="MouseWithoutBorders_ThisMachineNameLabel.Header" xml:space="preserve"> <value>Host name of this device</value> </data> <data name="MouseWithoutBorders_Connect.Content" xml:space="preserve"> <value>Connect</value> </data> <data name="MouseWithoutBorders_UninstallService.Header" xml:space="preserve"> <value>Uninstall service</value> </data> <data name="MouseWithoutBorders_UninstallService.Description" xml:space="preserve"> <value>Removes the service from the computer. Needs to run as administrator.</value> </data> <data name="MouseWithoutBorders_Settings.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="MouseWithoutBorders_TroubleShooting.Header" xml:space="preserve"> <value>Troubleshooting</value> </data> <data name="MouseWithoutBorders_AddFirewallRuleButtonControl.Header" xml:space="preserve"> <value>Add a firewall rule for Mouse Without Borders</value> <comment>"Mouse Without Borders" is a product name</comment> </data> <data name="MouseWithoutBorders_AddFirewallRuleButtonControl.Description" xml:space="preserve"> <value>Adding a firewall rule might help solve connection issues.</value> </data> <data name="MouseWithoutBorders_RunAsAdminText.Title" xml:space="preserve"> <value>You need to run as administrator to modify this setting.</value> </data> <data name="MouseWithoutBorders_ServiceUserUninstallWarning.Title" xml:space="preserve"> <value>If PowerToys is installed as a user, uninstalling/upgrading may require the Mouse Without Borders service to be removed manually later.</value> </data> <data name="MouseWithoutBorders_ServiceSettings.Header" xml:space="preserve"> <value>Service</value> </data> <data name="MouseWithoutBorders_Toggle_Enable.Header" xml:space="preserve"> <value>Enable Mouse Without Borders</value> </data> <data name="MouseWithoutBorders.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="MouseWithoutBorders.ModuleDescription" xml:space="preserve"> <value>Mouse Without Borders is a quick and easy way to move your cursor across multiple devices.</value> <comment>"Mouse Without Borders" is the name of the utility</comment> </data> <data name="MouseWithoutBorders.ModuleTitle" xml:space="preserve"> <value>Mouse Without Borders</value> <comment>"Mouse Without Borders" is the name of the utility</comment> </data> <data name="MouseWithoutBorders_UseService.Header" xml:space="preserve"> <value>Use Service</value> </data> <data name="MouseWithoutBorders_UseService.Description" xml:space="preserve"> <value>Runs in service mode, that allows MWB to control remote machines when they're locked. Also allows control of system and administrator applications.</value> </data> <data name="MouseWithoutBorders_MatrixOneRow.Header" xml:space="preserve"> <value>Devices in a single row</value> </data> <data name="MouseWithoutBorders_MatrixOneRow.Description" xml:space="preserve"> <value>Sets whether the devices are aligned on a single row. A two by two matrix is considered otherwise.</value> </data> <data name="MouseWithoutBorders_WrapMouse.Header" xml:space="preserve"> <value>Wrap mouse</value> </data> <data name="MouseWithoutBorders_WrapMouse.Description" xml:space="preserve"> <value>Move control back to the first machine when mouse moves past the last one.</value> </data> <data name="MouseWithoutBorders_ShareClipboard.Header" xml:space="preserve"> <value>Share clipboard</value> </data> <data name="MouseWithoutBorders_TransferFile.Header" xml:space="preserve"> <value>Transfer file</value> </data> <data name="MouseWithoutBorders_HideMouseAtScreenEdge.Header" xml:space="preserve"> <value>Hide mouse at the screen edge</value> </data> <data name="MouseWithoutBorders_DrawMouseCursor.Header" xml:space="preserve"> <value>Draw mouse cursor</value> </data> <data name="MouseWithoutBorders_ValidateRemoteMachineIP.Header" xml:space="preserve"> <value>Validate remote machine IP</value> </data> <data name="MouseWithoutBorders_SameSubnetOnly.Header" xml:space="preserve"> <value>Same subnet only</value> </data> <data name="MouseWithoutBorders_BlockScreenSaverOnOtherMachines.Header" xml:space="preserve"> <value>Block screen saver on other machines</value> </data> <data name="MouseWithoutBorders_MoveMouseRelatively.Header" xml:space="preserve"> <value>Move mouse relatively</value> </data> <data name="MouseWithoutBorders_BlockMouseAtScreenCorners.Header" xml:space="preserve"> <value>Block mouse at screen corners</value> </data> <data name="MouseWithoutBorders_ShowClipboardAndNetworkStatusMessages.Header" xml:space="preserve"> <value>Show clipboard and network status messages</value> </data> <data name="MouseWithoutBorders_ShowOriginalUI.Header" xml:space="preserve"> <value>Show the original Mouse Without Borders UI</value> </data> <data name="MouseWithoutBorders_ShowOriginalUI.Description" xml:space="preserve"> <value>This is accessible from the system tray and requires a restart.</value> </data> <data name="MouseWithoutBorders_ShareClipboard.Description" xml:space="preserve"> <value>If share clipboard stops working, Ctrl+Alt+Del then Esc may solve the problem.</value> </data> <data name="MouseWithoutBorders_TransferFile.Description" xml:space="preserve"> <value>If a file (&lt;100MB) is copied, it will be transferred to the remote machine clipboard.</value> </data> <data name="MouseWithoutBorders_HideMouseAtScreenEdge.Description" xml:space="preserve"> <value>Hide the mouse cursor at the top edge of the screen when switching to other machine. This option also steals the focus from any full-screen app to ensure the keyboard input is redirected.</value> </data> <data name="MouseWithoutBorders_DrawMouseCursor.Description" xml:space="preserve"> <value>Mouse cursor may not be visible in Windows 10 and later versions of Windows when there is no physical mouse attached.</value> </data> <data name="MouseWithoutBorders_ValidateRemoteMachineIP.Description" xml:space="preserve"> <value>Reverse DNS lookup to validate machine IP Address.</value> </data> <data name="MouseWithoutBorders_SameSubnetOnly.Description" xml:space="preserve"> <value>Only connect to machines in the same intranet NNN.NNN.*.* (only works when both machines have IPv4 enabled)</value> </data> <data name="MouseWithoutBorders_IPAddressMapping_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: MyLaptop 192.168.0.24</value> <comment>Don't translate MyLaptop</comment> </data> <data name="MouseWithoutBorders_IPAddressMapping.Header" xml:space="preserve"> <value>IP address mapping</value> </data> <data name="MouseWithoutBorders_IPAddressMapping.Description" xml:space="preserve"> <value>Resolve machine's IP address using manually entered mappings below.</value> </data> <data name="MouseWithoutBorders_BlockScreenSaverOnOtherMachines.Description" xml:space="preserve"> <value>Prevent screen saver from starting on other machines when user is actively working on this machine.</value> </data> <data name="MouseWithoutBorders_MoveMouseRelatively.Description" xml:space="preserve"> <value>Use this option when remote machine's monitor settings are different, or remote machine has multiple monitors.</value> </data> <data name="MouseWithoutBorders_BlockMouseAtScreenCorners.Description" xml:space="preserve"> <value>To avoid accident machine-switch at screen corners.</value> </data> <data name="MouseWithoutBorders_ShowClipboardAndNetworkStatusMessages.Description" xml:space="preserve"> <value>Show clipboard activities and network status in system tray notifications</value> </data> <data name="MouseWithoutBorders_KeyboardShortcuts_Group.Header" xml:space="preserve"> <value>Keyboard shortcuts</value> <comment>keyboard is the hardware peripheral</comment> </data> <data name="MouseWithoutBorders_AdvancedSettings_Group.Header" xml:space="preserve"> <value>Advanced Settings</value> </data> <data name="MouseWithoutBorders_EasyMouseOption.Header" xml:space="preserve"> <value>Easy Mouse: move between machines by moving the mouse pointer to the screen edges.</value> </data> <data name="MouseWithoutBorders_EasyMouseOption.Description" xml:space="preserve"> <value>Can also be set to move only when pressing Shift or Ctrl.</value> <comment>Shift and Ctrl are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_EasyMouseOption_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_EasyMouseOption_Enabled.Content" xml:space="preserve"> <value>Enabled</value> </data> <data name="MouseWithoutBorders_EasyMouseOption_Ctrl.Content" xml:space="preserve"> <value>Ctrl</value> <comment>This is the Ctrl keyboard key</comment> </data> <data name="MouseWithoutBorders_EasyMouseOption_Shift.Content" xml:space="preserve"> <value>Shift</value> <comment>This is the Shift keyboard key</comment> </data> <data name="MouseWithoutBorders_LockMachinesShortcut.Header" xml:space="preserve"> <value>Shortcut to lock all machines.</value> </data> <data name="MouseWithoutBorders_LockMachinesShortcut.Description" xml:space="preserve"> <value>Hit this hotkey twice to lock all machines. Note: Only the machines which have the same shortcut configured will be locked.</value> </data> <data name="MouseWithoutBorders_ToggleEasyMouseShortcut.Header" xml:space="preserve"> <value>Shortcut to toggle Easy Mouse.</value> <comment>Ctrl and Alt are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_ToggleEasyMouseShortcut.Description" xml:space="preserve"> <value>Only works if EasyMouse is set to Enabled or Disabled.</value> </data> <data name="MouseWithoutBorders_ToggleEasyMouseShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut.Header" xml:space="preserve"> <value>Shortcut to switch between machines. Ctrl+Alt+:</value> <comment>Ctrl and Alt are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut.Description" xml:space="preserve"> <value>Click on Ctrl+Alt+ the chosen option to switch between machines.</value> <comment>Ctrl and Alt are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut_F1.Content" xml:space="preserve"> <value>F1, F2, F3, F4</value> <comment>Don't localize. These are keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut_1.Content" xml:space="preserve"> <value>1, 2, 3, 4</value> <comment>Don't localize. These are keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_LockMachinesShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_ReconnectShortcut.Header" xml:space="preserve"> <value>Shortcut to try reconnecting</value> </data> <data name="MouseWithoutBorders_ReconnectShortcut.Description" xml:space="preserve"> <value>Just in case the connection is lost for any reason.</value> </data> <data name="MouseWithoutBorders_ReconnectShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut.Header" xml:space="preserve"> <value>Shortcut to switch to multiple machine mode.</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut.Description" xml:space="preserve"> <value>Allows controlling all computers at once.</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut_Ctrl3.Content" xml:space="preserve"> <value>Ctrl three times</value> <comment>This is the Ctrl keyboard key</comment> </data> <data name="VideoConference_Enable.Header" xml:space="preserve"> <value>Enable Video Conference Mute</value> </data> <data name="VideoConference.ModuleDescription" xml:space="preserve"> <value>Video Conference Mute is a quick and easy way to do a global "mute" of both your microphone and webcam. Disabling this module or closing PowerToys will unmute the microphone and camera.</value> </data> <data name="VideoConference_CameraAndMicrophoneMuteHotkeyControl_Header.Header" xml:space="preserve"> <value>Mute camera &amp; microphone</value> </data> <data name="VideoConference_MicrophoneMuteHotkeyControl_Header.Header" xml:space="preserve"> <value>Mute microphone</value> </data> <data name="VideoConference_MicrophonePushToTalkHotkeyControl_Header.Header" xml:space="preserve"> <value>Push to talk</value> </data> <data name="VideoConference_CameraMuteHotkeyControl_Header.Header" xml:space="preserve"> <value>Mute camera</value> </data> <data name="VideoConference_SelectedCamera.Header" xml:space="preserve"> <value>Selected camera</value> </data> <data name="VideoConference_SelectedMicrophone.Header" xml:space="preserve"> <value>Selected microphone</value> </data> <data name="VideoConference_PushToReverse.Header" xml:space="preserve"> <value>Push to reverse</value> </data> <data name="VideoConference_PushToReverse.Description" xml:space="preserve"> <value>If enabled, allows both push to talk and push to mute, depending on microphone state</value> </data> <data name="VideoConference_CameraOverlayImagePathHeader.Header" xml:space="preserve"> <value>Image displayed when camera is muted</value> </data> <data name="VideoConference_ToolbarPosition.Header" xml:space="preserve"> <value>Toolbar position</value> </data> <data name="VideoConference_ToolbarPosition_TopCenter.Content" xml:space="preserve"> <value>Top center</value> </data> <data name="VideoConference_ToolbarPosition_TopLeftCorner.Content" xml:space="preserve"> <value>Top left corner</value> </data> <data name="VideoConference_ToolbarPosition_TopRightCorner.Content" xml:space="preserve"> <value>Top right corner</value> </data> <data name="VideoConference_ToolbarPosition_BottomLeftCorner.Content" xml:space="preserve"> <value>Bottom left corner</value> </data> <data name="VideoConference_ToolbarPosition_BottomCenter.Content" xml:space="preserve"> <value>Bottom center</value> </data> <data name="VideoConference_ToolbarPosition_BottomRightCorner.Content" xml:space="preserve"> <value>Bottom right corner</value> </data> <data name="VideoConference_ToolbarMonitor.Header" xml:space="preserve"> <value>Show toolbar on</value> </data> <data name="VideoConference_ToolbarMonitor_Main.Content" xml:space="preserve"> <value>Main monitor</value> </data> <data name="VideoConference_ToolbarMonitor_UnderCursor.Content" xml:space="preserve"> <value>Monitor under cursor</value> </data> <data name="VideoConference_ToolbarMonitor_ActiveWindow.Content" xml:space="preserve"> <value>Active window monitor</value> </data> <data name="VideoConference_ToolbarMonitor_All.Content" xml:space="preserve"> <value>All monitors</value> </data> <data name="VideoConference_ToolbarHide.Header" xml:space="preserve"> <value>Hide toolbar</value> </data> <data name="VideoConference_ToolbarHideMuted.Content" xml:space="preserve"> <value>When both camera and microphone are muted</value> </data> <data name="VideoConference_ToolbarHideNever.Content" xml:space="preserve"> <value>Never</value> </data> <data name="VideoConference_ToolbarHideUnmuted.Content" xml:space="preserve"> <value>When both camera and microphone are unmuted</value> </data> <data name="VideoConference_ToolbarHideTimeout.Content" xml:space="preserve"> <value>After timeout</value> </data> <data name="VideoConference.ModuleTitle" xml:space="preserve"> <value>Video Conference Mute</value> </data> <data name="VideoConference_Camera.Header" xml:space="preserve"> <value>Camera</value> </data> <data name="VideoConference_Camera.Description" xml:space="preserve"> <value>To use this feature, make sure to select PowerToys VideoConference Mute as your camera source in your apps.</value> </data> <data name="VideoConference_Microphone.Header" xml:space="preserve"> <value>Microphone</value> </data> <data name="VideoConference_Toolbar.Header" xml:space="preserve"> <value>Toolbar</value> </data> <data name="VideoConference_Behavior.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="VideoConference_StartupAction.Header" xml:space="preserve"> <value>Startup action</value> </data> <data name="VideoConference_StartupActionNothing.Content" xml:space="preserve"> <value>Nothing</value> </data> <data name="VideoConference_StartupActionUnmute.Content" xml:space="preserve"> <value>Unmute</value> </data> <data name="VideoConference_StartupActionMute.Content" xml:space="preserve"> <value>Mute</value> </data> <data name="VideoConference_Shortcuts.Header" xml:space="preserve"> <value>Shortcuts</value> </data> <data name="VideoConference_CameraOverlayImageAlt.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Camera overlay image preview</value> </data> <data name="VideoConference_CameraOverlayImageBrowse.Content" xml:space="preserve"> <value>Browse</value> </data> <data name="VideoConference_CameraOverlayImageClear.Content" xml:space="preserve"> <value>Clear</value> </data> <data name="Shell_General.Content" xml:space="preserve"> <value>General</value> <comment>Navigation view item name for General</comment> </data> <data name="Shell_Awake.Content" xml:space="preserve"> <value>Awake</value> <comment>Product name: Navigation view item name for Awake</comment> </data> <data name="Shell_PowerLauncher.Content" xml:space="preserve"> <value>PowerToys Run</value> <comment>Product name: Navigation view item name for PowerToys Run</comment> </data> <data name="Shell_PowerRename.Content" xml:space="preserve"> <value>PowerRename</value> <comment>Product name: Navigation view item name for PowerRename</comment> </data> <data name="Shell_ShortcutGuide.Content" xml:space="preserve"> <value>Shortcut Guide</value> <comment>Product name: Navigation view item name for Shortcut Guide</comment> </data> <data name="Shell_PowerPreview.Content" xml:space="preserve"> <value>File Explorer add-ons</value> <comment>Product name: Navigation view item name for File Explorer. Please use File Explorer as in the context of File Explorer in Windows</comment> </data> <data name="Shell_FancyZones.Content" xml:space="preserve"> <value>FancyZones</value> <comment>Product name: Navigation view item name for FancyZones</comment> </data> <data name="Shell_ImageResizer.Content" xml:space="preserve"> <value>Image Resizer</value> <comment>Product name: Navigation view item name for Image Resizer</comment> </data> <data name="Shell_ColorPicker.Content" xml:space="preserve"> <value>Color Picker</value> <comment>Product name: Navigation view item name for Color Picker</comment> </data> <data name="Shell_KeyboardManager.Content" xml:space="preserve"> <value>Keyboard Manager</value> <comment>Product name: Navigation view item name for Keyboard Manager</comment> </data> <data name="Shell_MouseWithoutBorders.Content" xml:space="preserve"> <value>Mouse Without Borders</value> <comment>Product name: Navigation view item name for Mouse Without Borders</comment> </data> <data name="Shell_MouseUtilities.Content" xml:space="preserve"> <value>Mouse utilities</value> <comment>Product name: Navigation view item name for Mouse utilities</comment> </data> <data name="Shell_NavigationMenu_Announce_Collapse" xml:space="preserve"> <value>Navigation closed</value> <comment>Accessibility announcement when the navigation pane collapses</comment> </data> <data name="Shell_NavigationMenu_Announce_Open" xml:space="preserve"> <value>Navigation opened</value> <comment>Accessibility announcement when the navigation pane opens</comment> </data> <data name="KeyboardManager_ConfigHeader.Text" xml:space="preserve"> <value>Current configuration</value> <comment>Keyboard Manager current configuration header</comment> </data> <data name="KeyboardManager.ModuleDescription" xml:space="preserve"> <value>Reconfigure your keyboard by remapping keys and shortcuts</value> <comment>Keyboard Manager page description</comment> </data> <data name="KeyboardManager_EnableToggle.Header" xml:space="preserve"> <value>Enable Keyboard Manager</value> <comment>Keyboard Manager enable toggle header. Do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="KeyboardManager_ProfileDescription.Text" xml:space="preserve"> <value>Select the profile to display the active key remap and shortcuts</value> <comment>Keyboard Manager configuration dropdown description</comment> </data> <data name="KeyboardManager_RemapKeyboardButton.Header" xml:space="preserve"> <value>Remap a key</value> <comment>Keyboard Manager remap keyboard button content</comment> </data> <data name="KeyboardManager_Keys.Header" xml:space="preserve"> <value>Keys</value> <comment>Keyboard Manager remap keyboard header</comment> </data> <data name="KeyboardManager_RemapShortcutsButton.Header" xml:space="preserve"> <value>Remap a shortcut</value> <comment>Keyboard Manager remap shortcuts button</comment> </data> <data name="KeyboardManager_Shortcuts.Header" xml:space="preserve"> <value>Shortcuts</value> <comment>Keyboard Manager remap keyboard header</comment> </data> <data name="KeyboardManager_All_Apps_Description" xml:space="preserve"> <value>All Apps</value> <comment>Should be the same as EditShortcuts_AllApps from keyboard manager editor</comment> </data> <data name="Shortcuts.Header" xml:space="preserve"> <value>Shortcuts</value> </data> <data name="Shortcut.Header" xml:space="preserve"> <value>Shortcut</value> </data> <data name="RemapKeysList.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Current Key Remappings</value> </data> <data name="RemapShortcutsList.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Current Shortcut Remappings</value> </data> <data name="KeyboardManager_RemappedKeysListItem.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Key Remapping</value> <comment>key as in keyboard key</comment> </data> <data name="KeyboardManager_RemappedShortcutsListItem.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Shortcut Remapping</value> </data> <data name="KeyboardManager_RemappedTo.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Remapped to</value> </data> <data name="KeyboardManager_ShortcutRemappedTo.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Remapped to</value> </data> <data name="KeyboardManager_TargetApp.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>For Target Application</value> <comment>What computer application would this be for</comment> </data> <data name="KeyboardManager_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Keyboard Manager</value> <comment>do not loc, product name</comment> </data> <data name="ColorPicker.ModuleDescription" xml:space="preserve"> <value>Quick and simple system-wide color picker.</value> </data> <data name="ColorPicker_EnableColorPicker.Header" xml:space="preserve"> <value>Enable Color Picker</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="ColorPicker_ChangeCursor.Content" xml:space="preserve"> <value>Change cursor when picking a color</value> </data> <data name="PowerLauncher.ModuleDescription" xml:space="preserve"> <value>A quick launcher that has additional capabilities without sacrificing performance.</value> </data> <data name="PowerLauncher_EnablePowerLauncher.Header" xml:space="preserve"> <value>Enable PowerToys Run</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="PowerLauncher_SearchResults.Header" xml:space="preserve"> <value>Search &amp; results</value> </data> <data name="PowerLauncher_SearchResultPreference.Header" xml:space="preserve"> <value>Search result preference</value> </data> <data name="PowerLauncher_UsePinyin.Header" xml:space="preserve"> <value>Use Pinyin</value> </data> <data name="PowerLauncher_UsePinyin.Description" xml:space="preserve"> <value>Experimental: Use Pinyin on the search query. May not work for every plugin.</value> </data> <data name="PowerLauncher_SearchResultPreference_MostRecentlyUsed" xml:space="preserve"> <value>Most recently used</value> </data> <data name="PowerLauncher_SearchResultPreference_AlphabeticalOrder" xml:space="preserve"> <value>Alphabetical order</value> </data> <data name="PowerLauncher_SearchResultPreference_RunningProcessesOpenApplications" xml:space="preserve"> <value>Running processes/open applications</value> </data> <data name="PowerLauncher_SearchTypePreference.Header" xml:space="preserve"> <value>Search type preference</value> </data> <data name="PowerLauncher_SearchTypePreference_ApplicationName" xml:space="preserve"> <value>Application name</value> </data> <data name="PowerLauncher_SearchTypePreference_StringInApplication" xml:space="preserve"> <value>A string that is contained in the application</value> </data> <data name="PowerLauncher_SearchTypePreference_ExecutableName" xml:space="preserve"> <value>Executable name</value> </data> <data name="PowerLauncher_MaximumNumberOfResults.Header" xml:space="preserve"> <value>Number of results shown before scrolling</value> </data> <data name="PowerLauncher_OpenPowerLauncher.Header" xml:space="preserve"> <value>Open PowerToys Run</value> </data> <data name="PowerLauncher_OpenFileLocation.Header" xml:space="preserve"> <value>Open file location</value> </data> <data name="PowerLauncher_CopyPathLocation.Header" xml:space="preserve"> <value>Copy path location</value> </data> <data name="PowerLauncher_OpenConsole.Header" xml:space="preserve"> <value>Open console</value> <comment>console refers to Windows command prompt</comment> </data> <data name="PowerLauncher_OverrideWinRKey.Content" xml:space="preserve"> <value>Override Win+R shortcut</value> </data> <data name="PowerLauncher_OverrideWinSKey.Content" xml:space="preserve"> <value>Override Win+S shortcut</value> </data> <data name="PowerLauncher_IgnoreHotkeysInFullScreen.Content" xml:space="preserve"> <value>Ignore shortcuts in fullscreen mode</value> </data> <data name="PowerLauncher_UseCentralizedKeyboardHook.Header" xml:space="preserve"> <value>Use centralized keyboard hook</value> </data> <data name="PowerLauncher_UseCentralizedKeyboardHook.Description" xml:space="preserve"> <value>Try this if there are issues with the shortcut (PowerToys Run might not get focus when triggered from an elevated window)</value> </data> <data name="PowerLauncher_ClearInputOnLaunch.Content" xml:space="preserve"> <value>Clear the previous query on launch</value> </data> <data name="PowerLauncher_TabSelectsContextButtons.Header" xml:space="preserve"> <value>Tab through context buttons</value> </data> <data name="PowerLauncher_TabSelectsContextButtons.Description" xml:space="preserve"> <value>Pressing tab will first select through the available context buttons of the current selection before moving onto the next result</value> </data> <data name="PowerLauncher_GenerateThumbnailsFromFiles.Header" xml:space="preserve"> <value>Generate thumbnails from files</value> </data> <data name="PowerLauncher_GenerateThumbnailsFromFiles.Description" xml:space="preserve"> <value>Results will try to generate thumbnails for files. Disabling this setting may increase stability and speed</value> </data> <data name="PowerLauncher_SearchQueryResultsWithDelay.Header" xml:space="preserve"> <value>Input Smoothing</value> <comment>This is about adding a delay to wait for more input before executing a search</comment> </data> <data name="PowerLauncher_SearchQueryResultsWithDelay.Description" xml:space="preserve"> <value>Wait for more input before searching. This reduces interface jumpiness and system load.</value> </data> <data name="PowerLauncher_FastSearchInputDelayMs.Header" xml:space="preserve"> <value>Immediate plugins</value> </data> <data name="PowerLauncher_FastSearchInputDelayMs.Description" xml:space="preserve"> <value>Affects the plugins that make the UI wait for their results by this amount. Recommended: 30-50 ms.</value> </data> <data name="PowerLauncher_SlowSearchInputDelayMs.Header" xml:space="preserve"> <value>Background execution plugins</value> </data> <data name="PowerLauncher_SlowSearchInputDelayMs.Description" xml:space="preserve"> <value>Affects the plugins that execute in the background by this amount. Recommended: 100-150 ms.</value> </data> <data name="PowerLauncher_SearchInputDelayMs.Header" xml:space="preserve"> <value>Fast plugin throttle (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="KeyboardManager_KeysMappingLayoutRightHeader.Text" xml:space="preserve"> <value>To:</value> <comment>Keyboard Manager mapping keys view right header</comment> </data> <data name="Appearance_GroupSettings.Text" xml:space="preserve"> <value>Appearance</value> </data> <data name="Fancyzones_ImageHyperlinkToDocs.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>FancyZones windows</value> <comment>do not loc the Product name</comment> </data> <data name="FancyZones.ModuleDescription" xml:space="preserve"> <value>Create window layouts to help make multi-tasking easy.</value> <comment>windows refers to application windows</comment> </data> <data name="FancyZones_DisplayOrWorkAreaChangeMoveWindowsCheckBoxControl.Content" xml:space="preserve"> <value>Keep windows in their zones when the screen resolution or work area changes</value> <comment>windows refers to application windows</comment> </data> <data name="FancyZones_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable FancyZones</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="FancyZones_ExcludeApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="FancyZones_ExcludeApps.Description" xml:space="preserve"> <value>Excludes an application from snapping to zones and will only react to Windows Snap - add one application name per line</value> </data> <data name="FancyZones_HighlightOpacity.Header" xml:space="preserve"> <value>Opacity (%)</value> </data> <data name="FancyZones_HotkeyEditorControl.Header" xml:space="preserve"> <value>Open layout editor</value> <comment>Shortcut to launch the FancyZones layout editor application</comment> </data> <data name="FancyZones_WindowSwitching_GroupSettings.Header" xml:space="preserve"> <value>Switch between windows in the current zone</value> </data> <data name="FancyZones_HotkeyNextTabControl.Header" xml:space="preserve"> <value>Next window</value> </data> <data name="FancyZones_HotkeyPrevTabControl.Header" xml:space="preserve"> <value>Previous window</value> </data> <data name="SettingsPage_SetShortcut.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Shortcut setting</value> </data> <data name="SettingsPage_SetShortcut_Glyph.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Information Symbol</value> </data> <data name="FancyZones_LaunchEditorButtonControl.Header" xml:space="preserve"> <value>Launch layout editor</value> <comment>launches the FancyZones layout editor application</comment> </data> <data name="FancyZones_LaunchEditorButtonControl.Description" xml:space="preserve"> <value>Set and manage your layouts</value> <comment>launches the FancyZones layout editor application</comment> </data> <data name="FancyZones_MakeDraggedWindowTransparentCheckBoxControl.Content" xml:space="preserve"> <value>Make dragged window transparent</value> </data> <data name="FancyZones_MouseDragCheckBoxControl_Header.Content" xml:space="preserve"> <value>Use a non-primary mouse button to toggle zone activation</value> </data> <data name="FancyZones_MouseMiddleClickSpanningMultipleZonesCheckBoxControl_Header.Content" xml:space="preserve"> <value>Use middle-click mouse button to toggle multiple zones spanning</value> </data> <data name="FancyZones_MoveWindowsAcrossAllMonitorsCheckBoxControl.Content" xml:space="preserve"> <value>Move windows between zones across all monitors</value> </data> <data name="FancyZones_OverrideSnapHotkeys.Header" xml:space="preserve"> <value>Override Windows Snap</value> </data> <data name="FancyZones_OverrideSnapHotkeys.Description" xml:space="preserve"> <value>This overrides the Windows Snap shortcut (Win + arrow) to move windows between zones</value> </data> <data name="FancyZones_ShiftDragCheckBoxControl_Header.Content" xml:space="preserve"> <value>Hold Shift key to activate zones while dragging</value> </data> <data name="FancyZones_ShowZonesOnAllMonitorsCheckBoxControl.Content" xml:space="preserve"> <value>Show zones on all monitors while dragging a window</value> </data> <data name="FancyZones_AppLastZoneMoveWindows.Content" xml:space="preserve"> <value>Move newly created windows to their last known zone</value> <comment>windows refers to application windows</comment> </data> <data name="FancyZones_OpenWindowOnActiveMonitor.Content" xml:space="preserve"> <value>Move newly created windows to the current active monitor (Experimental)</value> </data> <data name="FancyZones_UseCursorPosEditorStartupScreen.Header" xml:space="preserve"> <value>Launch editor on the display</value> </data> <data name="FancyZones_UseCursorPosEditorStartupScreen.Description" xml:space="preserve"> <value>When using multiple displays</value> </data> <data name="FancyZones_LaunchPositionMouse.Content" xml:space="preserve"> <value>Where the mouse pointer is</value> </data> <data name="FancyZones_LaunchPositionScreen.Content" xml:space="preserve"> <value>With active focus</value> </data> <data name="FancyZones_ZoneBehavior_GroupSettings.Header" xml:space="preserve"> <value>Zone behavior</value> </data> <data name="FancyZones_ZoneBehavior_GroupSettings.Description" xml:space="preserve"> <value>Manage how zones behave when using FancyZones</value> </data> <data name="FancyZones_Zones.Header" xml:space="preserve"> <value>Zones</value> </data> <data name="FancyZones_ZoneHighlightColor.Header" xml:space="preserve"> <value>Highlight color</value> </data> <data name="FancyZones_ZoneSetChangeMoveWindows.Content" xml:space="preserve"> <value>During zone layout changes, windows assigned to a zone will match new size/positions</value> </data> <data name="AttributionTitle.Text" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="General.ModuleTitle" xml:space="preserve"> <value>General</value> </data> <data name="GeneralPage_CheckForUpdates.Content" xml:space="preserve"> <value>Check for updates</value> </data> <data name="General_SettingsBackupAndRestoreLocationText.Header" xml:space="preserve"> <value>Location</value> </data> <data name="General_SettingsBackupAndRestore_ButtonBackup.Content" xml:space="preserve"> <value>Backup</value> </data> <data name="General_SettingsBackupInfo_FileNameHeader.Text" xml:space="preserve"> <value>File name:</value> </data> <data name="General_SettingsBackupAndRestore_LinkRefresh.Text" xml:space="preserve"> <value>Refresh</value> </data> <data name="General_SettingsBackupAndRestore_ButtonRestore.Content" xml:space="preserve"> <value>Restore</value> </data> <data name="General_SettingsBackupAndRestore_ButtonSelectLocation.Text" xml:space="preserve"> <value>Select folder</value> </data> <data name="GeneralPage_UpdateNow.Content" xml:space="preserve"> <value>Update now</value> </data> <data name="GeneralPage_PrivacyStatement_URL.Text" xml:space="preserve"> <value>Privacy statement</value> </data> <data name="GeneralPage_ReportAbug.Text" xml:space="preserve"> <value>Report a bug</value> <comment>Report an issue inside powertoys</comment> </data> <data name="GeneralPage_RequestAFeature_URL.Text" xml:space="preserve"> <value>Request a feature</value> <comment>Tell our team what we should build</comment> </data> <data name="GeneralPage_RestartAsAdmin_Button.Content" xml:space="preserve"> <value>Restart PowerToys as administrator</value> <comment>running PowerToys as a higher level user, account is typically referred to as an admin / administrator</comment> </data> <data name="GeneralPage_RunAtStartUp.Header" xml:space="preserve"> <value>Run at startup</value> </data> <data name="GeneralPage_RunAtStartUp.Description" xml:space="preserve"> <value>PowerToys will launch automatically</value> </data> <data name="PowerRename.ModuleDescription" xml:space="preserve"> <value>A Windows Shell extension for more advanced bulk renaming using search &amp; replace or regular expressions.</value> </data> <data name="PowerRename_ShellIntegration.Header" xml:space="preserve"> <value>Shell integration</value> <comment>This refers to directly integrating in with Windows</comment> </data> <data name="PowerRename_Toggle_Enable.Header" xml:space="preserve"> <value>Enable PowerRename</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="RadioButtons_Name_Theme.Text" xml:space="preserve"> <value>Settings theme</value> </data> <data name="PowerRename_Toggle_HideIcon.Content" xml:space="preserve"> <value>Hide icon in context menu</value> </data> <data name="PowerRename_Toggle_ContextMenu.Header" xml:space="preserve"> <value>Show PowerRename in</value> </data> <data name="PowerRename_Toggle_StandardContextMenu.Content" xml:space="preserve"> <value>Default and extended context menu</value> </data> <data name="PowerRename_Toggle_ExtendedContextMenu.Content" xml:space="preserve"> <value>Extended context menu only</value> </data> <data name="ExtendedContextMenuInfo.Title" xml:space="preserve"> <value>Press Shift + right-click on files to open the extended context menu</value> </data> <data name="PowerRename_Toggle_MaxDispListNum.Header" xml:space="preserve"> <value>Maximum number of items</value> </data> <data name="PowerRename_Toggle_RestoreFlagsOnLaunch.Header" xml:space="preserve"> <value>Show recently used strings</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_MD.Header" xml:space="preserve"> <value>Markdown</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_MD.Description" xml:space="preserve"> <value>.md, .markdown, .mdown, .mkdn, .mkd, .mdwn, .mdtxt, .mdtext</value> <comment>File extensions, should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_Monaco.Header" xml:space="preserve"> <value>Source code files (Monaco)</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_Monaco.Description" xml:space="preserve"> <value>.cpp, .py, .json, .xml, .csproj, ...</value> <comment>File extensions should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_SVG.Header" xml:space="preserve"> <value>Scalable Vector Graphics</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_SVG.Description" xml:space="preserve"> <value>.svg</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_Preview_SVG_Color_Mode.Header" xml:space="preserve"> <value>Color mode</value> </data> <data name="FileExplorerPreview_Preview_SVG_Color_Mode_Default.Content" xml:space="preserve"> <value>Windows default</value> </data> <data name="FileExplorerPreview_Preview_SVG_Color_Solid_Color.Content" xml:space="preserve"> <value>Solid color</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade.Content" xml:space="preserve"> <value>Checkered pattern</value> </data> <data name="FileExplorerPreview_Preview_SVG_Background_Color.Header" xml:space="preserve"> <value>Color</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_Mode.Header" xml:space="preserve"> <value>Checkered shade</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_1.Content" xml:space="preserve"> <value>Light</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_2.Content" xml:space="preserve"> <value>Medium</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_3.Content" xml:space="preserve"> <value>Dark</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_PDF.Header" xml:space="preserve"> <value>Portable Document Format</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_PDF.Description" xml:space="preserve"> <value>.pdf</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_SVG.Header" xml:space="preserve"> <value>Scalable Vector Graphics</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_SVG.Description" xml:space="preserve"> <value>.svg</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_STL.Header" xml:space="preserve"> <value>Stereolithography</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_STL.Description" xml:space="preserve"> <value>.stl</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_Color_Thumbnail_STL.Header" xml:space="preserve"> <value>Color</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_PDF.Header" xml:space="preserve"> <value>Portable Document Format</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_PDF.Description" xml:space="preserve"> <value>.pdf</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview.ModuleDescription" xml:space="preserve"> <value>These settings allow you to manage your Windows File Explorer custom preview handlers.</value> </data> <data name="PowerRename_AutoCompleteHeader.Header" xml:space="preserve"> <value>Auto-complete</value> </data> <data name="OpenSource_Notice.Text" xml:space="preserve"> <value>Open-source notice</value> </data> <data name="PowerRename_Toggle_AutoComplete.Header" xml:space="preserve"> <value>Enable auto-complete for the search &amp; replace fields</value> </data> <data name="FancyZones_BorderColor.Header" xml:space="preserve"> <value>Border color</value> </data> <data name="FancyZones_InActiveColor.Header" xml:space="preserve"> <value>Inactive color</value> </data> <data name="ShortcutGuide.ModuleDescription" xml:space="preserve"> <value>Shows a help overlay with Windows shortcuts.</value> </data> <data name="ShortcutGuide_PressTimeForGlobalWindowsShortcuts.Header" xml:space="preserve"> <value>Press duration before showing global Windows shortcuts (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="ShortcutGuide_ActivationMethod.Header" xml:space="preserve"> <value>Activation method</value> </data> <data name="ShortcutGuide_ActivationMethod.Description" xml:space="preserve"> <value>Use a shortcut or press the Windows key for some time to activate</value> </data> <data name="Radio_ShortcutGuide_ActivationMethod_CustomizedShortcut.Content" xml:space="preserve"> <value>Custom shortcut</value> </data> <data name="Radio_ShortcutGuide_ActivationMethod_LongPressWindowsKey.Content" xml:space="preserve"> <value>Hold down Windows key</value> </data> <data name="ShortcutGuide_PressWinKeyWarning.Title" xml:space="preserve"> <value>In some edge cases Shortcut Guide might not function correctly when using this activation method</value> </data> <data name="Appearance_Behavior.Header" xml:space="preserve"> <value>Appearance &amp; behavior</value> </data> <data name="General_SettingsBackupAndRestoreTitle.Header" xml:space="preserve"> <value>Backup &amp; restore</value> </data> <data name="General_SettingsBackupAndRestore.Header" xml:space="preserve"> <value>Backup and restore your settings</value> </data> <data name="General_SettingsBackupAndRestore.Description" xml:space="preserve"> <value>PowerToys will restart automatically if needed</value> </data> <data name="ShortcutGuide_Enable.Header" xml:space="preserve"> <value>Enable Shortcut Guide</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="ShortcutGuide_OverlayOpacity.Header" xml:space="preserve"> <value>Background opacity (%)</value> </data> <data name="ShortcutGuide_DisabledApps.Header" xml:space="preserve"> <value>Exclude apps</value> </data> <data name="ShortcutGuide_DisabledApps.Description" xml:space="preserve"> <value>Turns off Shortcut Guide when these applications have focus - add one application name per line</value> </data> <data name="ShortcutGuide_DisabledApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> <comment>Don't translate outlook.exe</comment> </data> <data name="ImageResizer_CustomSizes.Header" xml:space="preserve"> <value>Image sizes</value> </data> <data name="ImageResizer_Presets.Header" xml:space="preserve"> <value>Presets</value> </data> <data name="ImageResizer_Presets.Description" xml:space="preserve"> <value>Manage preset sizes that can be used in the editor</value> </data> <data name="ImageResizer_FilenameFormatHeader.Description" xml:space="preserve"> <value>This format is used as the filename for resized images</value> </data> <data name="ImageResizer.ModuleDescription" xml:space="preserve"> <value>Lets you resize images by right-clicking.</value> </data> <data name="ImageResizer_EnableToggle.Header" xml:space="preserve"> <value>Enable Image Resizer</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="ImagesSizesListView.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Image Size</value> </data> <data name="ImageResizer_Configurations.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Configurations</value> </data> <data name="ImageResizer_Name.Header" xml:space="preserve"> <value>Name</value> </data> <data name="ImageResizer_Fit.Header" xml:space="preserve"> <value>Fit</value> </data> <data name="ImageResizer_Width.Header" xml:space="preserve"> <value>Width</value> </data> <data name="ImageResizer_Height.Header" xml:space="preserve"> <value>Height</value> </data> <data name="ImageResizer_Size.Header" xml:space="preserve"> <value>Unit</value> </data> <data name="RemoveButton.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Remove</value> <comment>Removes a user defined setting group for Image Resizer</comment> </data> <data name="RemoveItem.Text" xml:space="preserve"> <value>Delete</value> </data> <data name="ImageResizer_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Image Resizer</value> </data> <data name="ImageResizer_AddSizeButton.Content" xml:space="preserve"> <value>Add new size</value> </data> <data name="ImageResizer_SaveSizeButton.Label" xml:space="preserve"> <value>Save sizes</value> </data> <data name="ImageResizer_Encoding.Header" xml:space="preserve"> <value>JPEG quality level (%)</value> </data> <data name="ImageResizer_PNGInterlacing.Header" xml:space="preserve"> <value>PNG interlacing</value> </data> <data name="ImageResizer_TIFFCompression.Header" xml:space="preserve"> <value>TIFF compression</value> </data> <data name="File.Header" xml:space="preserve"> <value>File</value> <comment>as in a computer file</comment> </data> <data name="Default.Content" xml:space="preserve"> <value>Default</value> </data> <data name="ImageResizer_ENCODER_TIFF_CCITT3.Content" xml:space="preserve"> <value>CCITT3</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_CCITT4.Content" xml:space="preserve"> <value>CCITT4</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_Default.Content" xml:space="preserve"> <value>Default</value> </data> <data name="ImageResizer_ENCODER_TIFF_LZW.Content" xml:space="preserve"> <value>LZW</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_None.Content" xml:space="preserve"> <value>None</value> </data> <data name="ImageResizer_ENCODER_TIFF_RLE.Content" xml:space="preserve"> <value>RLE</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_Zip.Content" xml:space="preserve"> <value>Zip</value> <comment>do not loc</comment> </data> <data name="ImageResizer_FallbackEncoder_BMP.Content" xml:space="preserve"> <value>BMP encoder</value> </data> <data name="ImageResizer_FallbackEncoder_GIF.Content" xml:space="preserve"> <value>GIF encoder</value> </data> <data name="ImageResizer_FallbackEncoder_JPEG.Content" xml:space="preserve"> <value>JPEG encoder</value> </data> <data name="ImageResizer_FallbackEncoder_PNG.Content" xml:space="preserve"> <value>PNG encoder</value> </data> <data name="ImageResizer_FallbackEncoder_TIFF.Content" xml:space="preserve"> <value>TIFF encoder</value> </data> <data name="ImageResizer_FallbackEncoder_WMPhoto.Content" xml:space="preserve"> <value>WMPhoto encoder</value> </data> <data name="ImageResizer_Sizes_Fit_Fill.Content" xml:space="preserve"> <value>Fill</value> <comment>Refers to filling an image into a certain size. It could overflow</comment> </data> <data name="ImageResizer_Sizes_Fit_Fill_ThirdPersonSingular.Text" xml:space="preserve"> <value>Fill</value> <comment>Refers to filling an image into a certain size. It could overflow</comment> </data> <data name="ImageResizer_Sizes_Fit_Fit.Content" xml:space="preserve"> <value>Fit</value> <comment>Refers to fitting an image into a certain size. It won't overflow</comment> </data> <data name="ImageResizer_Sizes_Fit_Stretch.Content" xml:space="preserve"> <value>Stretch</value> <comment>Refers to stretching an image into a certain size. Won't overflow but could distort.</comment> </data> <data name="ImageResizer_Sizes_Units_CM.Content" xml:space="preserve"> <value>Centimeters</value> </data> <data name="ImageResizer_Sizes_Units_Inches.Content" xml:space="preserve"> <value>Inches</value> </data> <data name="ImageResizer_Sizes_Units_Percent.Content" xml:space="preserve"> <value>Percent</value> </data> <data name="ImageResizer_Sizes_Units_Pixels.Content" xml:space="preserve"> <value>Pixels</value> </data> <data name="Off.Content" xml:space="preserve"> <value>Off</value> </data> <data name="On.Content" xml:space="preserve"> <value>On</value> </data> <data name="GeneralPage_ToggleSwitch_AlwaysRunElevated_Link.Content" xml:space="preserve"> <value>Learn more about administrator mode</value> </data> <data name="GeneralPage_ToggleSwitch_AutoDownloadUpdates.Header" xml:space="preserve"> <value>Download updates automatically</value> </data> <data name="GeneralPage_ToggleSwitch_AutoDownloadUpdates.Description" xml:space="preserve"> <value>Except on metered connections</value> </data> <data name="GeneralPage_ToggleSwitch_RunningAsAdminNote.Text" xml:space="preserve"> <value>Currently running as administrator</value> </data> <data name="GeneralSettings_AlwaysRunAsAdminText.Header" xml:space="preserve"> <value>Always run as administrator</value> </data> <data name="GeneralSettings_AlwaysRunAsAdminText.Description" xml:space="preserve"> <value>You need to run as administrator to use this setting</value> </data> <data name="GeneralSettings_RunningAsUserText" xml:space="preserve"> <value>Running as user</value> </data> <data name="GeneralSettings_RunningAsAdminText" xml:space="preserve"> <value>Running as administrator</value> </data> <data name="FancyZones.ModuleTitle" xml:space="preserve"> <value>FancyZones</value> </data> <data name="FileExplorerPreview.ModuleTitle" xml:space="preserve"> <value>File Explorer</value> </data> <data name="FileExplorerPreview_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>File Explorer</value> <comment>Use same translation as Windows does for File Explorer</comment> </data> <data name="ImageResizer.ModuleTitle" xml:space="preserve"> <value>Image Resizer</value> </data> <data name="KeyboardManager.ModuleTitle" xml:space="preserve"> <value>Keyboard Manager</value> </data> <data name="ColorPicker.ModuleTitle" xml:space="preserve"> <value>Color Picker</value> </data> <data name="PowerLauncher.ModuleTitle" xml:space="preserve"> <value>PowerToys Run</value> </data> <data name="PowerToys_Run_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>PowerToys Run</value> </data> <data name="PowerRename.ModuleTitle" xml:space="preserve"> <value>PowerRename</value> <comment>do not loc the product name</comment> </data> <data name="PowerRename_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>PowerRename</value> <comment>do not loc</comment> </data> <data name="ShortcutGuide.ModuleTitle" xml:space="preserve"> <value>Shortcut Guide</value> </data> <data name="Shortcut_Guide_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Shortcut Guide</value> </data> <data name="General_Repository.Text" xml:space="preserve"> <value>GitHub repository</value> </data> <data name="General_Version.Header" xml:space="preserve"> <value>Version</value> </data> <data name="General_VersionLastChecked.Text" xml:space="preserve"> <value>Last checked: </value> </data> <data name="General_SettingsBackupInfo_DateHeader.Text" xml:space="preserve"> <value>Created at:</value> </data> <data name="General_SettingsBackupAndRestoreStatusInfo.Header" xml:space="preserve"> <value>Backup information</value> </data> <data name="General_SettingsBackupInfo_SourceHeader.Text" xml:space="preserve"> <value>Source machine:</value> </data> <data name="General_SettingsBackupInfo_StatusHeader.Text" xml:space="preserve"> <value>Status:</value> </data> <data name="General_Version.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Version</value> </data> <data name="Admin_mode.Header" xml:space="preserve"> <value>Administrator mode</value> </data> <data name="FancyZones_RestoreSize.Content" xml:space="preserve"> <value>Restore the original size of windows when unsnapping</value> </data> <data name="ImageResizer_FallBackEncoderText.Header" xml:space="preserve"> <value>Fallback encoder</value> </data> <data name="ImageResizer_FileFormatDescription.Text" xml:space="preserve"> <value>The following parameters can be used:</value> </data> <data name="ImageResizer_FilenameFormatHeader.Header" xml:space="preserve"> <value>Filename format</value> </data> <data name="ImageResizer_FileModifiedDate.Header" xml:space="preserve"> <value>File modified timestamp</value> </data> <data name="ImageResizer_FileModifiedDate.Description" xml:space="preserve"> <value>Used as the 'modified timestamp' in the file properties</value> </data> <data name="ImageResizer_UseOriginalDate.Content" xml:space="preserve"> <value>Original file timestamp</value> </data> <data name="ImageResizer_UseResizeDate.Content" xml:space="preserve"> <value>Timestamp of resize action</value> </data> <data name="Encoding.Header" xml:space="preserve"> <value>Encoding</value> </data> <data name="KeyboardManager_RemapKeyboardButton.Description" xml:space="preserve"> <value>Remap keys to other keys or shortcuts</value> </data> <data name="KeyboardManager_RemapShortcutsButton.Description" xml:space="preserve"> <value>Remap shortcuts to other shortcuts or keys for all or specific applications</value> </data> <data name="General.ModuleDescription" xml:space="preserve"> <value>Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. Made with 💗 by Microsoft and the PowerToys community.</value> <comment>Windows refers to the OS</comment> </data> <data name="FancyZones_SpanZonesAcrossMonitors.Header" xml:space="preserve"> <value>Allow zones to span across monitors</value> </data> <data name="ImageResizer_Formatting_ActualHeight.Text" xml:space="preserve"> <value>Actual height</value> </data> <data name="ImageResizer_Formatting_ActualWidth.Text" xml:space="preserve"> <value>Actual width</value> </data> <data name="ImageResizer_Formatting_Filename.Text" xml:space="preserve"> <value>Original filename</value> </data> <data name="ImageResizer_Formatting_SelectedHeight.Text" xml:space="preserve"> <value>Selected height</value> </data> <data name="ImageResizer_Formatting_SelectedWidth.Text" xml:space="preserve"> <value>Selected width</value> </data> <data name="ImageResizer_Formatting_Sizename.Text" xml:space="preserve"> <value>Size name</value> </data> <data name="FancyZones_MoveWindowsBasedOnPositionCheckBoxControl.Content" xml:space="preserve"> <value>Move windows based on their position</value> <comment>Windows refers to application windows</comment> </data> <data name="GeneralSettings_NewVersionIsAvailable" xml:space="preserve"> <value>New update available</value> </data> <data name="GeneralSettings_VersionIsLatest" xml:space="preserve"> <value>PowerToys is up to date.</value> </data> <data name="FileExplorerPreview_IconThumbnail_GroupSettings.Header" xml:space="preserve"> <value>Thumbnail icon Preview</value> </data> <data name="FileExplorerPreview_IconThumbnail_GroupSettings.Description" xml:space="preserve"> <value>Select the file types for which thumbnail previews must be rendered.</value> </data> <data name="FileExplorerPreview_PreviewPane.Header" xml:space="preserve"> <value>Preview Pane</value> </data> <data name="FileExplorerPreview_PreviewPane.Description" xml:space="preserve"> <value>Select the file types which must be rendered in the Preview Pane. Ensure that Preview Pane is open by toggling the view with Alt + P in File Explorer.</value> <comment>Preview Pane and File Explorer are app/feature names in Windows. 'Alt + P' is a shortcut</comment> </data> <data name="FileExplorerPreview_RunAsAdminRequired.Title" xml:space="preserve"> <value>You need to run as administrator to modify these settings.</value> </data> <data name="FileExplorerPreview_RebootRequired.Title" xml:space="preserve"> <value>A reboot may be required for changes to these settings to take effect</value> </data> <data name="FileExplorerPreview_PreviewHandlerOutlookIncompatibility.Title" xml:space="preserve"> <value>Enabling the preview handlers will override other preview handlers already installed - there have been reports of incompatibility between Outlook and the PDF Preview Handler.</value> <comment>Outlook is the name of a Microsoft product</comment> </data> <data name="FileExplorerPreview_ThumbnailsMightNotAppearOnRemoteFolders.Title" xml:space="preserve"> <value>Thumbnails might not appear on paths managed by cloud storage solutions like OneDrive, since these solutions may get their thumbnails from the cloud instead of generating them locally.</value> <comment>OneDrive is the name of a Microsoft product</comment> </data> <data name="FancyZones_ExcludeApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> <comment>Don't translate outlook.exe</comment> </data> <data name="ImageResizer_FilenameFormatPlaceholder.PlaceholderText" xml:space="preserve"> <value>Example: %1 (%2)</value> </data> <data name="ImageResizer_FilenameParameters.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Filename parameters</value> </data> <data name="Radio_Theme_Dark.Content" xml:space="preserve"> <value>Dark</value> <comment>Dark refers to color, not weight</comment> </data> <data name="Radio_Theme_Light.Content" xml:space="preserve"> <value>Light</value> <comment>Light refers to color, not weight</comment> </data> <data name="Radio_Theme_Default.Content" xml:space="preserve"> <value>Windows default</value> <comment>Windows refers to the Operating system</comment> </data> <data name="Windows_Color_Settings.Content" xml:space="preserve"> <value>Windows color settings</value> <comment>Windows refers to the Operating system</comment> </data> <data name="ColorPicker_CopiedColorRepresentation.Header" xml:space="preserve"> <value>Default color format</value> </data> <data name="ColorPickerFirst.Content" xml:space="preserve"> <value>Pick a color and open editor</value> </data> <data name="EditorFirst.Content" xml:space="preserve"> <value>Open editor</value> </data> <data name="ColorPickerOnly.Content" xml:space="preserve"> <value>Only pick a color</value> </data> <data name="ColorPicker_ActivationAction.Header" xml:space="preserve"> <value>Activation behavior</value> </data> <data name="ColorFormats.Header" xml:space="preserve"> <value>Picker behavior</value> </data> <data name="ColorPicker_CopiedColorRepresentation.Description" xml:space="preserve"> <value>This format will be copied to your clipboard</value> </data> <data name="KBM_KeysCannotBeRemapped.Text" xml:space="preserve"> <value>Learn more about remapping limitations</value> <comment>This is a link that will discuss what is and is not possible for Keyboard manager to remap</comment> </data> <data name="FancyZones_Editor_GroupSettings.Header" xml:space="preserve"> <value>Editor</value> <comment>refers to the FancyZone editor</comment> </data> <data name="FancyZones_WindowBehavior_GroupSettings.Header" xml:space="preserve"> <value>Window behavior</value> </data> <data name="FancyZones_WindowBehavior_GroupSettings.Description" xml:space="preserve"> <value>Manage how windows behave when using FancyZones</value> </data> <data name="FancyZones_Windows.Header" xml:space="preserve"> <value>Windows</value> <comment>Do translate: refers to a set of application windows, not the product name</comment> </data> <data name="PowerRename_BehaviorHeader.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="PowerRename_Toggle_UseBoostLib.Header" xml:space="preserve"> <value>Use Boost library</value> <comment>Boost is a product name, should not be translated</comment> </data> <data name="PowerRename_Toggle_UseBoostLib.Description" xml:space="preserve"> <value>Provides extended features but may use different regex syntax</value> <comment>Boost is a product name, should not be translated</comment> </data> <data name="MadeWithOssLove.Text" xml:space="preserve"> <value>Made with 💗 by Microsoft and the PowerToys community.</value> </data> <data name="ColorPicker_ColorFormats.Header" xml:space="preserve"> <value>Color formats</value> </data> <data name="ColorPicker_ColorFormats.Description" xml:space="preserve"> <value>Configure the color formats (edit, delete, hide, reorder them)</value> </data> <data name="MoveUp.Text" xml:space="preserve"> <value>Move up</value> </data> <data name="MoveDown.Text" xml:space="preserve"> <value>Move down</value> </data> <data name="ColorPickerAddNewFormat.Content" xml:space="preserve"> <value>Add new format</value> </data> <data name="NewColorFormat.Header" xml:space="preserve"> <value>Format</value> </data> <data name="NewColorName.Header" xml:space="preserve"> <value>Name</value> </data> <data name="AddCustomColorFormat" xml:space="preserve"> <value>Add custom color format</value> </data> <data name="ColorFormatSave" xml:space="preserve"> <value>Save</value> </data> <data name="EditCustomColorFormat" xml:space="preserve"> <value>Edit custom color format</value> </data> <data name="ColorFormatUpdate" xml:space="preserve"> <value>Update</value> </data> <data name="CustomColorFormatDefaultName" xml:space="preserve"> <value>My Format</value> </data> <data name="ColorFormatDialog.SecondaryButtonText" xml:space="preserve"> <value>Cancel</value> </data> <data name="ColorFormatEditorHelpline1.Text" xml:space="preserve"> <value>The following parameters can be used:</value> </data> <data name="Help_red" xml:space="preserve"> <value>red</value> </data> <data name="Help_green" xml:space="preserve"> <value>green</value> </data> <data name="Help_blue" xml:space="preserve"> <value>blue</value> </data> <data name="Help_alpha" xml:space="preserve"> <value>alpha</value> </data> <data name="Help_cyan" xml:space="preserve"> <value>cyan</value> </data> <data name="Help_magenta" xml:space="preserve"> <value>magenta</value> </data> <data name="Help_yellow" xml:space="preserve"> <value>yellow</value> </data> <data name="Help_black_key" xml:space="preserve"> <value>black key</value> </data> <data name="Help_hue" xml:space="preserve"> <value>hue</value> </data> <data name="Help_hueNat" xml:space="preserve"> <value>hue (natural)</value> </data> <data name="Help_saturationI" xml:space="preserve"> <value>saturation (HSI)</value> </data> <data name="Help_saturationL" xml:space="preserve"> <value>saturation (HSL)</value> </data> <data name="Help_saturationB" xml:space="preserve"> <value>saturation (HSB)</value> </data> <data name="Help_brightness" xml:space="preserve"> <value>brightness</value> </data> <data name="Help_intensity" xml:space="preserve"> <value>intensity</value> </data> <data name="Help_lightnessNat" xml:space="preserve"> <value>lightness (nat)</value> </data> <data name="Help_lightnessCIE" xml:space="preserve"> <value>lightness (CIE)</value> </data> <data name="Help_value" xml:space="preserve"> <value>value</value> </data> <data name="Help_whiteness" xml:space="preserve"> <value>whiteness</value> </data> <data name="Help_blackness" xml:space="preserve"> <value>blackness</value> </data> <data name="Help_chromaticityA" xml:space="preserve"> <value>chromaticityA</value> </data> <data name="Help_chromaticityB" xml:space="preserve"> <value>chromaticityB</value> </data> <data name="Help_X_value" xml:space="preserve"> <value>X value</value> </data> <data name="Help_Y_value" xml:space="preserve"> <value>Y value</value> </data> <data name="Help_Z_value" xml:space="preserve"> <value>Z value</value> </data> <data name="Help_decimal_value_RGB" xml:space="preserve"> <value>decimal value (RGB)</value> </data> <data name="Help_decimal_value_BGR" xml:space="preserve"> <value>decimal value (BGR)</value> </data> <data name="Help_color_name" xml:space="preserve"> <value>color name</value> </data> <data name="ColorFormatEditorHelpline2.Text" xml:space="preserve"> <value>The red, green, blue and alpha values can be formatted to the following formats:</value> </data> <data name="Help_byte" xml:space="preserve"> <value>byte value (default)</value> </data> <data name="Help_hexL1" xml:space="preserve"> <value>hex lowercase one digit</value> </data> <data name="Help_hexU1" xml:space="preserve"> <value>hex uppercase one digit</value> </data> <data name="Help_hexL2" xml:space="preserve"> <value>hex lowercase two digits</value> </data> <data name="Help_hexU2" xml:space="preserve"> <value>hex uppercase two digits</value> </data> <data name="Help_floatWith" xml:space="preserve"> <value>float with leading zero</value> </data> <data name="Help_floatWithout" xml:space="preserve"> <value>float without leading zero</value> </data> <data name="ColorFormatEditorHelpline3.Text" xml:space="preserve"> <value>Example: %ReX means red value in hex uppercase two digits format.</value> </data> <data name="ColorPicker_ShowColorName.Header" xml:space="preserve"> <value>Show color name</value> </data> <data name="ColorPicker_ShowColorName.Description" xml:space="preserve"> <value>This will show the name of the color when picking a color</value> </data> <data name="ImageResizer_DefaultSize_Large" xml:space="preserve"> <value>Large</value> <comment>The size of the image</comment> </data> <data name="ImageResizer_DefaultSize_Medium" xml:space="preserve"> <value>Medium</value> <comment>The size of the image</comment> </data> <data name="ImageResizer_DefaultSize_Phone" xml:space="preserve"> <value>Phone</value> <comment>The size of the image referring to a Mobile Phone typical image size</comment> </data> <data name="ImageResizer_DefaultSize_Small" xml:space="preserve"> <value>Small</value> <comment>The size of the image</comment> </data> <data name="FancyZones_MoveWindowBasedOnRelativePosition_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Windows key + Up, down, left or right arrow key to move windows based on relative position</value> </data> <data name="FancyZones_MoveWindowLeftRightBasedOnZoneIndex_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Windows key + Left or right arrow keys to move windows based on zone index</value> </data> <data name="FancyZones_MoveWindowBasedOnRelativePosition_Description.Text" xml:space="preserve"> <value>Windows key +    or </value> <comment>Do not loc the icons (hex numbers)</comment> </data> <data name="FancyZones_MoveWindowLeftRightBasedOnZoneIndex_Description.Text" xml:space="preserve"> <value>Windows key +  or </value> <comment>Do not loc the icons (hex numbers)</comment> </data> <data name="FancyZones_MoveWindowBasedOnRelativePosition.Text" xml:space="preserve"> <value>Relative position</value> </data> <data name="FancyZones_MoveWindow.Header" xml:space="preserve"> <value>Move windows based on</value> </data> <data name="FancyZones_MoveWindowLeftRightBasedOnZoneIndex.Text" xml:space="preserve"> <value>Zone index</value> </data> <data name="ColorPicker_Editor.Header" xml:space="preserve"> <value>Color formats</value> </data> <data name="FancyZones_OverlappingZonesClosestCenter.Content" xml:space="preserve"> <value>Activate the zone whose center is closest to the cursor</value> </data> <data name="FancyZones_OverlappingZonesLargest.Content" xml:space="preserve"> <value>Activate the largest zone by area</value> </data> <data name="FancyZones_OverlappingZonesPositional.Content" xml:space="preserve"> <value>Split the overlapped area into multiple activation targets</value> </data> <data name="FancyZones_OverlappingZonesSmallest.Content" xml:space="preserve"> <value>Activate the smallest zone by area</value> </data> <data name="FancyZones_OverlappingZones.Header" xml:space="preserve"> <value>When multiple zones overlap</value> </data> <data name="PowerLauncher_Plugins.Header" xml:space="preserve"> <value>Plugins</value> </data> <data name="PowerLauncher_ActionKeyword.Header" xml:space="preserve"> <value>Direct activation command</value> </data> <data name="PowerLauncher_AuthoredBy.Text" xml:space="preserve"> <value>Authored by</value> <comment>example: Authored by Microsoft</comment> </data> <data name="PowerLauncher_IncludeInGlobalResultTitle.Text" xml:space="preserve"> <value>Include in global result</value> </data> <data name="PowerLauncher_IncludeInGlobalResultDescription.Text" xml:space="preserve"> <value>Show results on queries without direct activation command</value> </data> <data name="PowerLauncher_EnablePluginToggle.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Enable plugin</value> </data> <data name="PowerLauncher_EnablePluginToggle.OnContent" xml:space="preserve"> <value>On</value> </data> <data name="PowerLauncher_EnablePluginToggle.OffContent" xml:space="preserve"> <value>Off</value> </data> <data name="Run_AdditionalOptions.Text" xml:space="preserve"> <value>Additional options</value> </data> <data name="Run_NotAccessibleWarning.Title" xml:space="preserve"> <value>Please define an activation command or allow this plugin to be used in the global results.</value> </data> <data name="Run_AllPluginsDisabled.Title" xml:space="preserve"> <value>PowerToys Run can't provide any results without plugins</value> </data> <data name="Run_AllPluginsDisabled.Message" xml:space="preserve"> <value>Enable at least one plugin to get started</value> </data> <data name="Run_PluginUse.Header" xml:space="preserve"> <value>Plugins</value> </data> <data name="Run_PluginUseDescription.Text" xml:space="preserve"> <value>Include or remove plugins from the global results, change the direct activation phrase and configure additional options</value> </data> <data name="Run_PositionAppearance_GroupSettings.Header" xml:space="preserve"> <value>Position &amp; appearance</value> </data> <data name="Run_PositionHeader.Header" xml:space="preserve"> <value>Preferred monitor position</value> <comment>as in Show PowerToys Run on primary monitor</comment> </data> <data name="Run_PositionHeader.Description" xml:space="preserve"> <value>If multiple monitors are in use, PowerToys Run can be launched on the desired monitor</value> <comment>as in Show PowerToys Run on primary monitor</comment> </data> <data name="Run_Radio_Position_Cursor.Content" xml:space="preserve"> <value>Monitor with mouse cursor</value> </data> <data name="Run_Radio_Position_Focus.Content" xml:space="preserve"> <value>Monitor with focused window</value> </data> <data name="Run_Radio_Position_Primary_Monitor.Content" xml:space="preserve"> <value>Primary monitor</value> </data> <data name="Run_PluginsLoading.Text" xml:space="preserve"> <value>Plugins are loading...</value> </data> <data name="ColorPicker_ButtonDown.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Move the color down</value> </data> <data name="ColorPicker_ButtonUp.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Move the color up</value> </data> <data name="FancyZones_FlashZonesOnQuickSwitch.Content" xml:space="preserve"> <value>Flash zones when switching layout</value> </data> <data name="FancyZones_Layouts.Header" xml:space="preserve"> <value>Layouts</value> </data> <data name="FancyZones_QuickLayoutSwitch.Header" xml:space="preserve"> <value>Enable quick layout switch</value> </data> <data name="FancyZones_QuickLayoutSwitch.Description" xml:space="preserve"> <value>Layout-specific shortcuts can be configured in the editor</value> </data> <data name="FancyZones_QuickLayoutSwitch_GroupSettings.Text" xml:space="preserve"> <value>Quick layout switch</value> </data> <data name="Activation_Shortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="Activation_Shortcut.Description" xml:space="preserve"> <value>Customize the shortcut to activate this module</value> </data> <data name="Oobe_GetStarted.Text" xml:space="preserve"> <value>Let's get started!</value> </data> <data name="Oobe_PowerToysDescription.Text" xml:space="preserve"> <value>Welcome to PowerToys! These overviews will help you quickly learn the basics of all our utilities.</value> </data> <data name="Oobe_GettingStarted.Text" xml:space="preserve"> <value>Getting started</value> </data> <data name="Oobe_Launch.Text" xml:space="preserve"> <value>Launch</value> </data> <data name="Launch_ColorPicker.Content" xml:space="preserve"> <value>Launch Color Picker</value> </data> <data name="Oobe_LearnMore.Text" xml:space="preserve"> <value>Learn more about</value> </data> <data name="Oobe_ColorPicker.Description" xml:space="preserve"> <value>Color Picker is a system-wide color selection tool for Windows that enables you to pick colors from any currently running application and automatically copies it in a configurable format to your clipboard.</value> </data> <data name="Oobe_FancyZones.Description" xml:space="preserve"> <value>FancyZones is a window manager that makes it easy to create complex window layouts and quickly position windows into those layouts.</value> </data> <data name="Oobe_FileLocksmith.Description" xml:space="preserve"> <value>File Locksmith lists which processes are using the selected files or directories and allows closing those processes.</value> </data> <data name="Oobe_FileExplorer.Description" xml:space="preserve"> <value>PowerToys introduces add-ons to the Windows File Explorer that will enable files like Markdown (.md), PDF (.pdf), SVG (.svg), STL (.stl), G-code (.gcode) and developer files to be viewed in the preview pane. It introduces File Explorer thumbnail support for a number of these file types as well.</value> </data> <data name="Oobe_ImageResizer.Description" xml:space="preserve"> <value>Image Resizer is a Windows shell extension for simple bulk image-resizing.</value> </data> <data name="Oobe_KBM.Description" xml:space="preserve"> <value>Keyboard Manager allows you to customize the keyboard to be more productive by remapping keys and creating your own keyboard shortcuts.</value> </data> <data name="Oobe_MouseWithoutBorders.Description" xml:space="preserve"> <value>Mouse Without Borders enables using the mouse pointer, keyboard, clipboard and drag and drop between machines in the same local network.</value> </data> <data name="Oobe_PowerRename.Description" xml:space="preserve"> <value>PowerRename enables you to perform simple bulk renaming, searching and replacing file names.</value> </data> <data name="Oobe_Run.Description" xml:space="preserve"> <value>PowerToys Run is a quick launcher for power users that contains some additional features without sacrificing performance.</value> </data> <data name="Oobe_MeasureTool.Description" xml:space="preserve"> <value>Screen Ruler is a quick and easy way to measure pixels on your screen.</value> </data> <data name="Oobe_ShortcutGuide.Description" xml:space="preserve"> <value>Shortcut Guide presents the user with a listing of available shortcuts for the current state of the desktop.</value> </data> <data name="Oobe_VideoConference.Description" xml:space="preserve"> <value>Video Conference Mute allows users to quickly mute the microphone and turn off the camera while on a conference call with a single keystroke, regardless of what application has focus on your computer.</value> </data> <data name="Oobe_MouseUtils.Description" xml:space="preserve"> <value>A collection of utilities to enhance your mouse.</value> <comment>Mouse as in the hardware peripheral</comment> </data> <data name="Oobe_Overview.Description" xml:space="preserve"> <value>Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. Take a moment to preview the various utilities listed or view our comprehensive documentation.</value> </data> <data name="Oobe_Overview_DescriptionLinkText.Text" xml:space="preserve"> <value>Documentation on Microsoft Docs</value> </data> <data name="ReleaseNotes.Content" xml:space="preserve"> <value>Release notes</value> </data> <data name="Oobe_ColorPicker_HowToUse.Text" xml:space="preserve"> <value>to open Color Picker.</value> </data> <data name="Oobe_ColorPicker_TipsAndTricks.Text" xml:space="preserve"> <value>To select a color with more precision, **scroll the mouse wheel** to zoom in.</value> </data> <data name="Oobe_FancyZones_HowToUse.Text" xml:space="preserve"> <value>**Shift** + **drag the window** to snap a window to a zone, and release the window in the desired zone.</value> </data> <data name="Oobe_FancyZones_HowToUse_Shortcut.Text" xml:space="preserve"> <value>to open the FancyZones editor.</value> </data> <data name="Oobe_FancyZones_TipsAndTricks.Text" xml:space="preserve"> <value>Snap a window to multiple zones by holding the **Ctrl** key (while also holding **Shift**) when dragging a window.</value> </data> <data name="Oobe_FileLocksmith_HowToUse.Text" xml:space="preserve"> <value>In File Explorer, right-click one or more selected files and select **What's using this file?** from the context menu.</value> </data> <data name="Oobe_FileLocksmith_TipsAndTricks.Text" xml:space="preserve"> <value>Press the **Restart Elevated** button from the File Locksmith UI to also get information on elevated processes that might be using the files.</value> </data> <data name="Oobe_FileExplorer_HowToEnable.Text" xml:space="preserve"> <value>Select **View** which is located at the top of File Explorer, followed by **Show**, and then **Preview pane**. From there, simply click on one of the supported files in the File Explorer and observe the content on the preview pane!</value> </data> <data name="Oobe_HowToCreateMappings.Text" xml:space="preserve"> <value>How to create mappings</value> </data> <data name="Oobe_HowToEnable.Text" xml:space="preserve"> <value>How to enable</value> </data> <data name="Oobe_HowToLaunch.Text" xml:space="preserve"> <value>How to launch</value> </data> <data name="Oobe_HowToUse.Text" xml:space="preserve"> <value>How to use</value> </data> <data name="Oobe_ImageResizer_HowToLaunch.Text" xml:space="preserve"> <value>In File Explorer, right-click one or more image files and select **Resize pictures** from the context menu.</value> </data> <data name="Oobe_ImageResizer_TipsAndTricks.Text" xml:space="preserve"> <value>Want a custom size? You can add them in the PowerToys Settings!</value> </data> <data name="Oobe_KBM_HowToCreateMappings.Text" xml:space="preserve"> <value>Launch **PowerToys Settings**, navigate to the Keyboard Manager menu, and select either **Remap a key** or **Remap a shortcut**.</value> </data> <data name="Oobe_KBM_TipsAndTricks.Text" xml:space="preserve"> <value>Want to only have a shortcut work for a single application? Use the Target App field when creating the shortcut remapping.</value> </data> <data name="Oobe_MouseWithoutBorders_HowToUse.Text" xml:space="preserve"> <value>Use the Settings screen on each machine to connect to the other machines using the same key. If a connection is not working, it may be necessary to add an exception to the Windows Firewall.</value> </data> <data name="Oobe_MouseWithoutBorders_TipsAndTricks.Text" xml:space="preserve"> <value>Use the service option in Settings to install a service enabling Mouse Without Borders to function even in the lock screen.</value> </data> <data name="Oobe_PowerRename_HowToUse.Text" xml:space="preserve"> <value>In File Explorer, right-click one or more selected files and select **PowerRename** from the context menu.</value> </data> <data name="Oobe_PowerRename_TipsAndTricks.Text" xml:space="preserve"> <value>PowerRename supports searching for files using regular expressions to enable more advanced renaming functionalities.</value> </data> <data name="Oobe_Run_HowToLaunch.Text" xml:space="preserve"> <value>to open Run and just start typing.</value> </data> <data name="Oobe_Run_TipsAndTricks.Text" xml:space="preserve"> <value>PowerToys Run supports various action keys to funnel search queries for a specific subset of results. Typing `&lt;` searches for running processes only, `?` will search only for file, or `.` for installed applications! See PowerToys documentation for the complete set of 'Action Keys' available.</value> </data> <data name="Oobe_ShortcutGuide_HowToLaunch.Text" xml:space="preserve"> <value>to open Shortcut Guide, press it again to close or press **Esc**.</value> </data> <data name="Oobe_TipsAndTricks.Text" xml:space="preserve"> <value>Tips &amp; tricks</value> </data> <data name="Oobe_VideoConference_ToggleMicVid.Text" xml:space="preserve"> <value>to toggle both your microphone and video</value> </data> <data name="Oobe_VideoConference_ToggleMic.Text" xml:space="preserve"> <value>to toggle your microphone</value> </data> <data name="Oobe_VideoConference_PushToTalkMic.Text" xml:space="preserve"> <value>to toggle your microphone until key release</value> </data> <data name="Oobe_VideoConference_ToggleVid.Text" xml:space="preserve"> <value>to toggle your video</value> </data> <data name="Oobe_MeasureTool_Activation.Text" xml:space="preserve"> <value>to bring up the Screen Ruler command bar.</value> </data> <data name="Oobe_MeasureTool_HowToLaunch.Text" xml:space="preserve"> <value>The Bounds mode lets you select a specific area to measure. You can also shift-drag an area to persist in on screen. The various Spacing modes allows tracing similar pixels along horizontal and vertical axes with a customizable pixel tolerance threshold (use settings or mouse wheel to adjust it).</value> </data> <data name="Oobe_MeasureTool.Title" xml:space="preserve"> <value>Screen Ruler</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_ColorPicker.Title" xml:space="preserve"> <value>Color Picker</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_FancyZones.Title" xml:space="preserve"> <value>FancyZones</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_FileLocksmith.Title" xml:space="preserve"> <value>File Locksmith</value> </data> <data name="Oobe_ImageResizer.Title" xml:space="preserve"> <value>Image Resizer</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_KBM.Title" xml:space="preserve"> <value>Keyboard Manager</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_MouseWithoutBorders.Title" xml:space="preserve"> <value>Mouse Without Borders</value> <comment>Product name. Do not localize this string</comment> </data> <data name="Oobe_PowerRename.Title" xml:space="preserve"> <value>PowerRename</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_Run.Title" xml:space="preserve"> <value>PowerToys Run</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_ShortcutGuide.Title" xml:space="preserve"> <value>Shortcut Guide</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_VideoConference.Title" xml:space="preserve"> <value>Video Conference Mute</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_Overview.Title" xml:space="preserve"> <value>Welcome</value> </data> <data name="Oobe_WhatsNew.Text" xml:space="preserve"> <value>What's new</value> </data> <data name="Oobe_WhatsNew_LoadingError.Title" xml:space="preserve"> <value>Couldn't load the release notes.</value> </data> <data name="Oobe_WhatsNew_LoadingError.Message" xml:space="preserve"> <value>Please check your internet connection.</value> </data> <data name="Oobe_WhatsNew_ProxyAuthenticationWarning.Title" xml:space="preserve"> <value>Couldn't load the release notes.</value> </data> <data name="Oobe_WhatsNew_ProxyAuthenticationWarning.Message" xml:space="preserve"> <value>Your proxy server requires authentication.</value> </data> <data name="Oobe_WhatsNew_DetailedReleaseNotesLink.Text" xml:space="preserve"> <value>See more detailed release notes on GitHub</value> <comment>Don't loc "GitHub", it's the name of a product</comment> </data> <data name="OOBE_Settings.Content" xml:space="preserve"> <value>Open Settings</value> </data> <data name="Oobe_NavViewItem.Content" xml:space="preserve"> <value>Welcome to PowerToys</value> <comment>Don't loc "PowerToys"</comment> </data> <data name="Feedback_NavViewItem.Content" xml:space="preserve"> <value>Give feedback</value> </data> <data name="OobeWindow_Title" xml:space="preserve"> <value>Welcome to PowerToys</value> </data> <data name="OobeWindow_TitleTxt.Text" xml:space="preserve"> <value>Welcome to PowerToys</value> </data> <data name="SettingsWindow_Title" xml:space="preserve"> <value>PowerToys Settings</value> <comment>Title of the settings window when running as user</comment> </data> <data name="Awake.ModuleTitle" xml:space="preserve"> <value>Awake</value> </data> <data name="Awake.ModuleDescription" xml:space="preserve"> <value>A convenient way to keep your PC awake on-demand.</value> </data> <data name="Awake_EnableSettingsCard.Header" xml:space="preserve"> <value>Enable Awake</value> <comment>Awake is a product name, do not loc</comment> </data> <data name="Awake_NoKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep using the selected power plan</value> </data> <data name="Awake_IndefiniteKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep awake indefinitely</value> </data> <data name="Awake_TemporaryKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep awake for a time interval</value> </data> <data name="Awake_ExpirableKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep awake until expiration</value> </data> <data name="Awake_DisplaySettingsCard.Header" xml:space="preserve"> <value>Keep screen on</value> </data> <data name="Awake_DisplaySettingsCard.Description" xml:space="preserve"> <value>This setting is only available when keeping the PC awake</value> </data> <data name="Awake_ExpirationSettingsExpander.Description" xml:space="preserve"> <value>Keep custom awake state until a specific date and time</value> </data> <data name="Awake_ModeSettingsCard.Header" xml:space="preserve"> <value>Mode</value> </data> <data name="Awake_BehaviorSettingsGroup.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="Awake_IntervalHoursInput.Header" xml:space="preserve"> <value>Hours</value> </data> <data name="Awake_IntervalMinutesInput.Header" xml:space="preserve"> <value>Minutes</value> </data> <data name="Awake_ExpirationSettingsExpander_Date.Header" xml:space="preserve"> <value>End date</value> </data> <data name="Awake_ExpirationSettingsExpander_Time.Header" xml:space="preserve"> <value>End time</value> </data> <data name="Oobe_Awake.Title" xml:space="preserve"> <value>Awake</value> <comment>Module name, do not loc</comment> </data> <data name="Oobe_Awake.Description" xml:space="preserve"> <value>Awake is a Windows tool designed to keep your PC awake on-demand without having to manage its power settings. This behavior can be helpful when running time-consuming tasks while ensuring that your PC does not go to sleep or turn off its screens.</value> </data> <data name="Oobe_Awake_HowToUse.Text" xml:space="preserve"> <value>Open **PowerToys Settings** and enable Awake</value> </data> <data name="Oobe_Awake_TipsAndTricks.Text" xml:space="preserve"> <value>You can always change modes quickly by **right-clicking the Awake icon** in the system tray.</value> </data> <data name="General_FailedToDownloadTheNewVersion.Title" xml:space="preserve"> <value>An error occurred trying to install this update:</value> </data> <data name="General_InstallNow.Content" xml:space="preserve"> <value>Install now</value> </data> <data name="General_ReadMore.Text" xml:space="preserve"> <value>Read more</value> </data> <data name="General_NewVersionAvailable.Title" xml:space="preserve"> <value>An update is available:</value> </data> <data name="General_Downloading.Text" xml:space="preserve"> <value>Downloading...</value> </data> <data name="General_TryAgainToDownloadAndInstall.Content" xml:space="preserve"> <value>Try again to download and install</value> </data> <data name="General_CheckingForUpdates.Text" xml:space="preserve"> <value>Checking for updates...</value> </data> <data name="General_NewVersionReadyToInstall.Title" xml:space="preserve"> <value>An update is ready to install:</value> </data> <data name="General_UpToDate.Title" xml:space="preserve"> <value>PowerToys is up to date</value> </data> <data name="General_CantCheck.Title" xml:space="preserve"> <value>Network error. Please try again later</value> </data> <data name="General_DownloadAndInstall.Content" xml:space="preserve"> <value>Download &amp; install</value> </data> <data name="ImageResizer_Fit_Fill_ThirdPersonSingular" xml:space="preserve"> <value>Fills</value> </data> <data name="ImageResizer_Fit_Fit_ThirdPersonSingular" xml:space="preserve"> <value>Fits within</value> </data> <data name="ImageResizer_Fit_Stretch_ThirdPersonSingular" xml:space="preserve"> <value>Stretches to</value> </data> <data name="ImageResizer_Unit_Centimeter" xml:space="preserve"> <value>Centimeters</value> </data> <data name="ImageResizer_Unit_Inch" xml:space="preserve"> <value>Inches</value> </data> <data name="ImageResizer_Unit_Percent" xml:space="preserve"> <value>Percent</value> </data> <data name="ImageResizer_Unit_Pixel" xml:space="preserve"> <value>Pixels</value> </data> <data name="EditButton.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Edit</value> </data> <data name="ImageResizer_EditSize.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Edit size</value> </data> <data name="No" xml:space="preserve"> <value>No</value> <comment>Label of a cancel button</comment> </data> <data name="Delete_Dialog_Description" xml:space="preserve"> <value>Are you sure you want to delete this item?</value> </data> <data name="Yes" xml:space="preserve"> <value>Yes</value> <comment>Label of a confirmation button</comment> </data> <data name="SeeWhatsNew.Content" xml:space="preserve"> <value>See what's new</value> </data> <data name="Awake_ModeSettingsCard.Description" xml:space="preserve"> <value>Manage the state of your device when Awake is active</value> </data> <data name="ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="Enable_ColorFormat.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Enable colorformat</value> </data> <data name="More_Options_Button.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>More options</value> </data> <data name="More_Options_ButtonTooltip.Text" xml:space="preserve"> <value>More options</value> </data> <data name="To.Text" xml:space="preserve"> <value>to</value> <comment>as in: from x to y</comment> </data> <data name="LearnMore_Awake.Text" xml:space="preserve"> <value>Learn more about Awake</value> <comment>Awake is a product name, do not loc</comment> </data> <data name="LearnMore_ColorPicker.Text" xml:space="preserve"> <value>Learn more about Color Picker</value> <comment>Color Picker is a product name, do not loc</comment> </data> <data name="LearnMore_FancyZones.Text" xml:space="preserve"> <value>Learn more about FancyZones</value> <comment>FancyZones is a product name, do not loc</comment> </data> <data name="LearnMore_FileLocksmith.Text" xml:space="preserve"> <value>Learn more about File Locksmith</value> </data> <data name="LearnMore_ImageResizer.Text" xml:space="preserve"> <value>Learn more about Image Resizer</value> <comment>Image Resizer is a product name, do not loc</comment> </data> <data name="LearnMore_KBM.Text" xml:space="preserve"> <value>Learn more about Keyboard Manager</value> <comment>Keyboard Manager is a product name, do not loc</comment> </data> <data name="LearnMore_MouseUtils.Text" xml:space="preserve"> <value>Learn more about Mouse utilities</value> <comment>Mouse utilities is a product name, do not loc</comment> </data> <data name="LearnMore_PastePlain.Text" xml:space="preserve"> <value>Learn more about Paste as Plain Text</value> <comment> Paste as Plain Text is the name of the module. </comment> </data> <data name="LearnMore_MouseWithoutBorders.Text" xml:space="preserve"> <value>Learn more about Mouse Without Borders</value> <comment>Mouse Without Borders is the name of the module. </comment> </data> <data name="LearnMore_PowerPreview.Text" xml:space="preserve"> <value>Learn more about File Explorer add-ons</value> <comment>File Explorer is a product name, localize as Windows does</comment> </data> <data name="LearnMore_Peek.Text" xml:space="preserve"> <value>Learn more about Peek</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="LearnMore_PowerRename.Text" xml:space="preserve"> <value>Learn more about PowerRename</value> <comment>PowerRename is a product name, do not loc</comment> </data> <data name="LearnMore_Run.Text" xml:space="preserve"> <value>Learn more about PowerToys Run</value> <comment>PowerToys Run is a product name, do not loc</comment> </data> <data name="LearnMore_MeasureTool.Text" xml:space="preserve"> <value>Learn more about Screen Ruler</value> <comment>Screen Ruler is a product name, do not loc</comment> </data> <data name="LearnMore_ShortcutGuide.Text" xml:space="preserve"> <value>Learn more about Shortcut Guide</value> <comment>Shortcut Guide is a product name, do not loc</comment> </data> <data name="LearnMore_VCM.Text" xml:space="preserve"> <value>Learn more about Video Conference Mute</value> <comment>Video Conference Mute is a product name, do not loc</comment> </data> <data name="Oobe_FileExplorer.Title" xml:space="preserve"> <value>File Explorer add-ons</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_MouseUtils.Title" xml:space="preserve"> <value>Mouse utilities</value> <comment>Mouse as in the hardware peripheral</comment> </data> <data name="Oobe_MouseUtils_FindMyMouse.Text" xml:space="preserve"> <value>Find My Mouse</value> <comment>Mouse as in the hardware peripheral</comment> </data> <data name="Oobe_MouseUtils_FindMyMouse_Description.Text" xml:space="preserve"> <value>Focus the mouse pointer pressing the Ctrl key twice, using a custom shortcut or shaking the mouse.</value> <comment>Mouse as in the hardware peripheral. Key as in a keyboard key</comment> </data> <data name="Oobe_MouseUtils_MouseHighlighter.Text" xml:space="preserve"> <value>Mouse Highlighter</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MouseHighlighter_Description.Text" xml:space="preserve"> <value>Use a keyboard shortcut to highlight left and right mouse clicks.</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MousePointerCrosshairs.Text" xml:space="preserve"> <value>Mouse Pointer Crosshairs</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MousePointerCrosshairs_Description.Text" xml:space="preserve"> <value>Draw crosshairs centered around the mouse pointer.</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MouseJump.Text" xml:space="preserve"> <value>Mouse Jump</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MouseJump_Description.Text" xml:space="preserve"> <value>Jump the mouse pointer quickly to anywhere on your desktop.</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Launch_Run.Content" xml:space="preserve"> <value>Launch PowerToys Run</value> </data> <data name="Launch_ShortcutGuide.Content" xml:space="preserve"> <value>Launch Shortcut Guide</value> </data> <data name="ColorPicker_ColorFormat_ToggleSwitch.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Show format in editor</value> </data> <data name="GeneralPage_Documentation.Text" xml:space="preserve"> <value>Documentation</value> </data> <data name="PowerLauncher_SearchList.PlaceholderText" xml:space="preserve"> <value>Search this list</value> </data> <data name="PowerLauncher_SearchList.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Search this list</value> </data> <data name="Awake.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="ColorPicker.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="General.SecondaryLinksHeader" xml:space="preserve"> <value>Related information</value> </data> <data name="ImageResizer.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="MouseUtils.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="PowerLauncher.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="PowerRename.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="EditTooltip.Text" xml:space="preserve"> <value>Edit</value> </data> <data name="RemoveTooltip.Text" xml:space="preserve"> <value>Remove</value> </data> <data name="Activation_Shortcut_Cancel" xml:space="preserve"> <value>Cancel</value> </data> <data name="Activation_Shortcut_Description" xml:space="preserve"> <value>Press a combination of keys to change this shortcut</value> </data> <data name="Activation_Shortcut_With_Disable_Description" xml:space="preserve"> <value>Press a combination of keys to change this shortcut. Right-click to remove the key combination, thereby deactivating the shortcut.</value> </data> <data name="Activation_Shortcut_Reset" xml:space="preserve"> <value>Reset</value> </data> <data name="Activation_Shortcut_Save" xml:space="preserve"> <value>Save</value> </data> <data name="Activation_Shortcut_Title" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="InvalidShortcut.Title" xml:space="preserve"> <value>Invalid shortcut</value> </data> <data name="InvalidShortcutWarningLabel.Text" xml:space="preserve"> <value>Only shortcuts that start with **Windows key**, **Ctrl**, **Alt** or **Shift** are valid.</value> <comment>The ** sequences are used for text formatting of the key names. Don't remove them on translation.</comment> </data> <data name="FancyZones_SpanZonesAcrossMonitors.Description" xml:space="preserve"> <value>All monitors must have the same DPI scaling and will be treated as one large combined rectangle which contains all monitors</value> </data> <data name="ImageResizer_DefaultSize_NewSizePrefix" xml:space="preserve"> <value>New size</value> <comment>First part of the default name of new sizes that can be added in PT's settings ui.</comment> </data> <data name="Awake_IntervalSettingsCard.Header" xml:space="preserve"> <value>Interval before returning to the previous awakeness state</value> </data> <data name="Awake_ExpirationSettingsExpander.Header" xml:space="preserve"> <value>End date and time</value> </data> <data name="MouseUtils.ModuleTitle" xml:space="preserve"> <value>Mouse utilities</value> </data> <data name="MouseUtils.ModuleDescription" xml:space="preserve"> <value>A collection of mouse utilities.</value> </data> <data name="MouseUtils_FindMyMouse.Header" xml:space="preserve"> <value>Find My Mouse</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_FindMyMouse.Description" xml:space="preserve"> <value>Find My Mouse highlights the position of the cursor when pressing the Ctrl key twice, using a custom shortcut or when shaking the mouse.</value> <comment>"Ctrl" is a keyboard key. "Find My Mouse" is the name of the utility</comment> </data> <data name="MouseUtils_Enable_FindMyMouse.Header" xml:space="preserve"> <value>Enable Find My Mouse</value> <comment>"Find My Mouse" is the name of the utility.</comment> </data> <data name="MouseUtils_FindMyMouse_ActivationMethod.Header" xml:space="preserve"> <value>Activation method</value> </data> <data name="MouseUtils_FindMyMouse_ActivationDoubleControlPress.Content" xml:space="preserve"> <value>Press Left Control twice</value> <comment>Left control is the physical key on the keyboard.</comment> </data> <data name="MouseUtils_FindMyMouse_ActivationShakeMouse.Content" xml:space="preserve"> <value>Shake mouse</value> <comment>Mouse is the hardware peripheral.</comment> </data> <data name="MouseUtils_FindMyMouse_ExcludedApps.Description" xml:space="preserve"> <value>Prevents module activation when an excluded application is the foreground application</value> </data> <data name="MouseUtils_FindMyMouse_ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="MouseUtils_FindMyMouse_ExcludedApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> </data> <data name="MouseUtils_Prevent_Activation_On_Game_Mode.Content" xml:space="preserve"> <value>Do not activate when Game Mode is on</value> <comment>"Game mode" is the Windows feature to prevent notification when playing a game.</comment> </data> <data name="MouseUtils_FindMyMouse_BackgroundColor.Header" xml:space="preserve"> <value>Background color</value> </data> <data name="MouseUtils_FindMyMouse_SpotlightColor.Header" xml:space="preserve"> <value>Spotlight color</value> </data> <data name="MouseUtils_FindMyMouse_OverlayOpacity.Header" xml:space="preserve"> <value>Overlay opacity (%)</value> </data> <data name="MouseUtils_FindMyMouse_SpotlightRadius.Header" xml:space="preserve"> <value>Spotlight radius (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_FindMyMouse_SpotlightInitialZoom.Header" xml:space="preserve"> <value>Spotlight initial zoom</value> </data> <data name="MouseUtils_FindMyMouse_SpotlightInitialZoom.Description" xml:space="preserve"> <value>Spotlight zoom factor at animation start</value> </data> <data name="MouseUtils_FindMyMouse_AnimationDurationMs.Header" xml:space="preserve"> <value>Animation duration (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_FindMyMouse_AnimationDurationMs.Description" xml:space="preserve"> <value>Time before the spotlight appears (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_FindMyMouse_AnimationDurationMs_Disabled.Message" xml:space="preserve"> <value>Animations are disabled by OS. See Settings &gt; Accessibility &gt; Visual effects</value> </data> <data name="MouseUtils_FindMyMouse_ShakingMinimumDistance.Header" xml:space="preserve"> <value>Shake minimum distance</value> </data> <data name="MouseUtils_FindMyMouse_ShakingMinimumDistance.Description" xml:space="preserve"> <value>The minimum distance for mouse shaking activation, for adjusting sensitivity</value> </data> <data name="MouseUtils_MouseHighlighter.Header" xml:space="preserve"> <value>Mouse Highlighter</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_MouseHighlighter.Description" xml:space="preserve"> <value>Mouse Highlighter mode will highlight mouse clicks.</value> <comment>"Mouse Highlighter" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_Enable_MouseHighlighter.Header" xml:space="preserve"> <value>Enable Mouse Highlighter</value> <comment>"Find My Mouse" is the name of the utility.</comment> </data> <data name="MouseUtils_MouseHighlighter_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MouseUtils_MouseHighlighter_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to turn on or off this mode</value> <comment>"Mouse Highlighter" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_MouseHighlighter_PrimaryButtonClickColor.Header" xml:space="preserve"> <value>Primary button highlight color</value> </data> <data name="MouseUtils_MouseHighlighter_SecondaryButtonClickColor.Header" xml:space="preserve"> <value>Secondary button highlight color</value> </data> <data name="MouseUtils_MouseHighlighter_HighlightRadius.Header" xml:space="preserve"> <value>Radius (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDelayMs.Header" xml:space="preserve"> <value>Fade delay (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDelayMs.Description" xml:space="preserve"> <value>Time before the highlight begins to fade (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDurationMs.Header" xml:space="preserve"> <value>Fade duration (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDurationMs.Description" xml:space="preserve"> <value>Duration of the disappear animation (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MousePointerCrosshairs.Header" xml:space="preserve"> <value>Mouse Pointer Crosshairs</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_MousePointerCrosshairs.Description" xml:space="preserve"> <value>Mouse Pointer Crosshairs draws crosshairs centered on the mouse pointer.</value> <comment>"Mouse Pointer Crosshairs" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_Enable_MousePointerCrosshairs.Header" xml:space="preserve"> <value>Enable Mouse Pointer Crosshairs</value> <comment>"Mouse Pointer Crosshairs" is the name of the utility.</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MouseUtils_MousePointerCrosshairs_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to show/hide the crosshairs</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsColor.Header" xml:space="preserve"> <value>Crosshairs color</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsOpacity.Header" xml:space="preserve"> <value>Crosshairs opacity (%)</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsRadius.Header" xml:space="preserve"> <value>Crosshairs center radius (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsThickness.Header" xml:space="preserve"> <value>Crosshairs thickness (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsBorderColor.Header" xml:space="preserve"> <value>Crosshairs border color</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsBorderSize.Header" xml:space="preserve"> <value>Crosshairs border size (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_IsCrosshairsFixedLengthEnabled.Header" xml:space="preserve"> <value>Fix crosshairs length</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsFixedLength.Header" xml:space="preserve"> <value>Crosshairs fixed length (px)</value> <comment>px = pixels</comment> </data> <data name="FancyZones_Radio_Custom_Colors.Content" xml:space="preserve"> <value>Custom colors</value> </data> <data name="FancyZones_Radio_Default_Theme.Content" xml:space="preserve"> <value>Windows default</value> </data> <data name="ColorModeHeader.Header" xml:space="preserve"> <value>App theme</value> </data> <data name="FancyZones_Zone_Appearance.Description" xml:space="preserve"> <value>Customize the way zones look</value> </data> <data name="FancyZones_Zone_Appearance.Header" xml:space="preserve"> <value>Zone appearance</value> </data> <data name="VideoConference_DeprecationWarning.Title" xml:space="preserve"> <value>VCM is moving into legacy mode (maintenance only).</value> </data> <data name="VideoConference_DeprecationWarningButton.Content" xml:space="preserve"> <value>Learn more</value> </data> <data name="VideoConference_RunAsAdminRequired.Title" xml:space="preserve"> <value>You need to run as administrator to modify these settings.</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_GCODE.Header" xml:space="preserve"> <value>Geometric Code</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_GCODE.Description" xml:space="preserve"> <value>Only .gcode files with embedded thumbnails are supported</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_GCODE.Header" xml:space="preserve"> <value>Geometric Code</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_GCODE.Description" xml:space="preserve"> <value>Only .gcode files with embedded thumbnails are supported</value> </data> <data name="FancyZones_NumberColor.Header" xml:space="preserve"> <value>Number color</value> </data> <data name="FancyZones_ShowZoneNumberCheckBoxControl.Content" xml:space="preserve"> <value>Show zone number</value> </data> <data name="ToggleSwitch.OffContent" xml:space="preserve"> <value>Off</value> <comment>The state of a ToggleSwitch when it's off</comment> </data> <data name="ToggleSwitch.OnContent" xml:space="preserve"> <value>On</value> <comment>The state of a ToggleSwitch when it's on</comment> </data> <data name="CropAndLock.ModuleDescription" xml:space="preserve"> <value>Crop And Lock allows you to crop a current application into a smaller window or just create a thumbnail. Focus the target window and press the shortcut to start cropping.</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="CropAndLock.ModuleTitle" xml:space="preserve"> <value>Crop And Lock </value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="CropAndLock_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="CropAndLock_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="Shell_CropAndLock.Content" xml:space="preserve"> <value>Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="LearnMore_CropAndLock.Text" xml:space="preserve"> <value>Learn more about Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="CropAndLock_ReparentActivation_Shortcut.Header" xml:space="preserve"> <value>Reparent shortcut</value> </data> <data name="CropAndLock_ReparentActivation_Shortcut.Description" xml:space="preserve"> <value>Shortcut to crop an application's window into a cropped window. This is experimental and can cause issues with some applications, since the cropped window will contain the original application window.</value> </data> <data name="CropAndLock_ThumbnailActivation_Shortcut.Header" xml:space="preserve"> <value>Thumbnail shortcut</value> </data> <data name="CropAndLock_ThumbnailActivation_Shortcut.Description" xml:space="preserve"> <value>Shortcut to crop and create a thumbnail of another window. The application isn't controllable through the thumbnail but it'll have less compatibility issues. </value> </data> <data name="CropAndLock.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="Oobe_CropAndLock.Title" xml:space="preserve"> <value>Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="Oobe_CropAndLock.Description" xml:space="preserve"> <value>Crop And Lock allows you to crop a current application into a smaller window or just create a thumbnail. Focus the target window and press the shortcut to start cropping.</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="Oobe_CropAndLock_HowToUse_Thumbnail.Text" xml:space="preserve"> <value>to crop and create a thumbnail of another window. The application isn't controllable through the thumbnail but it'll have less compatibility issues.</value> </data> <data name="Oobe_CropAndLock_HowToUse_Reparent.Text" xml:space="preserve"> <value>to crop an application's window into a cropped window. This is experimental and can cause issues with some applications, since the cropped window will contain the original application window.</value> </data> <data name="AlwaysOnTop.ModuleDescription" xml:space="preserve"> <value>Always On Top is a quick and easy way to pin windows on top.</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop.ModuleTitle" xml:space="preserve"> <value>Always On Top </value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="Peek_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="AlwaysOnTop_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_ExcludedApps.Description" xml:space="preserve"> <value>Excludes an application from pinning on top</value> </data> <data name="AlwaysOnTop_ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="AlwaysOnTop_ExcludedApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> </data> <data name="AlwaysOnTop_FrameColor.Header" xml:space="preserve"> <value>Color</value> </data> <data name="AlwaysOnTop_FrameEnabled.Header" xml:space="preserve"> <value>Show a border around the pinned window</value> </data> <data name="AlwaysOnTop_FrameThickness.Header" xml:space="preserve"> <value>Thickness (px)</value> <comment>px = pixels</comment> </data> <data name="AlwaysOnTop_Behavior_GroupSettings.Header" xml:space="preserve"> <value>Appearance &amp; behavior</value> </data> <data name="Shell_AlwaysOnTop.Content" xml:space="preserve"> <value>Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_GameMode.Content" xml:space="preserve"> <value>Do not activate when Game Mode is on</value> <comment>Game Mode is a Windows feature</comment> </data> <data name="AlwaysOnTop_SoundTitle.Header" xml:space="preserve"> <value>Sound</value> </data> <data name="AlwaysOnTop_Sound.Content" xml:space="preserve"> <value>Play a sound when pinning a window</value> </data> <data name="AlwaysOnTop_Behavior.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="LearnMore_AlwaysOnTop.Text" xml:space="preserve"> <value>Learn more about Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="AlwaysOnTop_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to pin or unpin an app window</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="Oobe_AlwaysOnTop.Title" xml:space="preserve"> <value>Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="Oobe_AlwaysOnTop.Description" xml:space="preserve"> <value>Always On Top improves your multitasking workflow by pinning an application window so it's always in front - even when focus changes to another window after that.</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="Oobe_AlwaysOnTop_HowToUse.Text" xml:space="preserve"> <value>to pin or unpin the selected window so it's always on top of all other windows.</value> </data> <data name="Oobe_AlwaysOnTop_TipsAndTricks.Text" xml:space="preserve"> <value>You can tweak the visual outline of the pinned windows in PowerToys settings.</value> </data> <data name="AlwaysOnTop_FrameColor_Mode.Header" xml:space="preserve"> <value>Color mode</value> </data> <data name="AlwaysOnTop_Radio_Custom_Color.Content" xml:space="preserve"> <value>Custom color</value> </data> <data name="AlwaysOnTop_Radio_Windows_Default.Content" xml:space="preserve"> <value>Windows default</value> </data> <data name="FileExplorerPreview.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Monaco_Wrap_Text.Content" xml:space="preserve"> <value>Wrap text</value> <comment>Feature on or off</comment> </data> <data name="FancyZones_AllowPopupWindowSnap.Description" xml:space="preserve"> <value>This setting can affect all popup windows including notifications</value> </data> <data name="FancyZones_AllowPopupWindowSnap.Header" xml:space="preserve"> <value>Allow popup windows snapping</value> </data> <data name="FancyZones_AllowChildWindowSnap.Content" xml:space="preserve"> <value>Allow child windows snapping</value> </data> <data name="Shell_WhatsNew.Content" xml:space="preserve"> <value>What's new</value> </data> <data name="Shell_Peek.Content" xml:space="preserve"> <value>Peek</value> <comment>Product name: Navigation view item name for Peek</comment> </data> <data name="Peek.ModuleTitle" xml:space="preserve"> <value>Peek</value> </data> <data name="Peek.ModuleDescription" xml:space="preserve"> <value>Peek is a quick and easy way to preview files. Select a file in File Explorer and press the shortcut to open the file preview.</value> </data> <data name="Peek_EnablePeek.Header" xml:space="preserve"> <value>Enable Peek</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="Peek_BehaviorHeader.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="Peek_AlwaysRunNotElevated.Header" xml:space="preserve"> <value>Always run not elevated, even when PowerToys is elevated</value> </data> <data name="Peek_AlwaysRunNotElevated.Description" xml:space="preserve"> <value>Tries to run Peek without elevated permissions, to fix access to network shares. You need to disable and re-enable Peek for changes to this value to take effect.</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="Peek_CloseAfterLosingFocus.Header" xml:space="preserve"> <value>Automatically close the Peek window after it loses focus</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="FancyZones_DisableRoundCornersOnWindowSnap.Content" xml:space="preserve"> <value>Disable round corners when window is snapped</value> </data> <data name="PowerLauncher_SearchQueryTuningEnabled.Description" xml:space="preserve"> <value>Fine tune results ordering</value> </data> <data name="PowerLauncher_SearchQueryTuningEnabled.Header" xml:space="preserve"> <value>Results order tuning</value> </data> <data name="PowerLauncher_SearchClickedItemWeight.Description" xml:space="preserve"> <value>Use a higher number to get selected results to rise faster. The default is 5, 0 to disable.</value> </data> <data name="PowerLauncher_SearchClickedItemWeight.Header" xml:space="preserve"> <value>Selected item weight</value> </data> <data name="PowerLauncher_WaitForSlowResults.Description" xml:space="preserve"> <value>Selecting this can help preselect the top, more relevant result, but at the risk of jumpiness</value> </data> <data name="PowerLauncher_WaitForSlowResults.Header" xml:space="preserve"> <value>Wait on slower plugin results before selecting top item in results</value> </data> <data name="PowerLauncher_PluginWeightBoost.Description" xml:space="preserve"> <value>Use a higher number to have this plugin's result show higher in the global results. Default is 0.</value> </data> <data name="PowerLauncher_PluginWeightBoost.Header" xml:space="preserve"> <value>Global sort order score modifier</value> </data> <data name="AlwaysOnTop_RoundCorners.Content" xml:space="preserve"> <value>Enable round corners</value> </data> <data name="LearnMore_QuickAccent.Text" xml:space="preserve"> <value>Learn more about Quick Accent</value> <comment>Quick Accent is a product name, do not loc</comment> </data> <data name="QuickAccent_EnableQuickAccent.Header" xml:space="preserve"> <value>Enable Quick Accent</value> </data> <data name="Shell_QuickAccent.Content" xml:space="preserve"> <value>Quick Accent</value> </data> <data name="QuickAccent.ModuleDescription" xml:space="preserve"> <value>Quick Accent is an alternative way to type accented characters, useful for when a keyboard doesn't support that specific accent. Activate by holding the key for the character you want to add an accent to, then press the activation key (space, left or right arrow keys) and an overlay to select accented characters will appear!</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent.ModuleTitle" xml:space="preserve"> <value>Quick Accent</value> </data> <data name="QuickAccent.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> </data> <data name="Oobe_QuickAccent.Description" xml:space="preserve"> <value>Quick Accent is an easy way to write letters with accents, like on a smartphone.</value> </data> <data name="Oobe_QuickAccent.Title" xml:space="preserve"> <value>Quick Accent</value> </data> <data name="Oobe_QuickAccent_HowToUse.Text" xml:space="preserve"> <value>Open **PowerToys Settings** and enable Quick Accent. While holding the key for the character you want to add an accent to, press the Activation Key and an overlay to select the accented character will appear.</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="QuickAccent_Activation_Shortcut.Header" xml:space="preserve"> <value>Activation key</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent_Activation_Shortcut.Description" xml:space="preserve"> <value>Press this key after holding down the target letter</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent_Activation_Key_Arrows.Content" xml:space="preserve"> <value>Left/Right Arrow</value> <comment>Left/Right arrow keyboard keys</comment> </data> <data name="QuickAccent_Activation_Key_Space.Content" xml:space="preserve"> <value>Space</value> <comment>Space is the space keyboard key</comment> </data> <data name="QuickAccent_Activation_Key_Either.Content" xml:space="preserve"> <value>Left, Right or Space</value> <comment>All are keys on a keyboard</comment> </data> <data name="QuickAccent_Toolbar.Header" xml:space="preserve"> <value>Toolbar</value> </data> <data name="QuickAccent_ToolbarPosition.Header" xml:space="preserve"> <value>Toolbar position</value> </data> <data name="QuickAccent_ToolbarPosition_TopCenter.Content" xml:space="preserve"> <value>Top center</value> </data> <data name="QuickAccent_ToolbarPosition_TopLeftCorner.Content" xml:space="preserve"> <value>Top left corner</value> </data> <data name="QuickAccent_ToolbarPosition_TopRightCorner.Content" xml:space="preserve"> <value>Top right corner</value> </data> <data name="QuickAccent_ToolbarPosition_BottomLeftCorner.Content" xml:space="preserve"> <value>Bottom left corner</value> </data> <data name="QuickAccent_ToolbarPosition_BottomCenter.Content" xml:space="preserve"> <value>Bottom center</value> </data> <data name="QuickAccent_ToolbarPosition_BottomRightCorner.Content" xml:space="preserve"> <value>Bottom right corner</value> </data> <data name="QuickAccent_ToolbarPosition_Center.Content" xml:space="preserve"> <value>Center</value> </data> <data name="QuickAccent_ToolbarPosition_Left.Content" xml:space="preserve"> <value>Left</value> </data> <data name="QuickAccent_ToolbarPosition_Right.Content" xml:space="preserve"> <value>Right</value> </data> <data name="QuickAccent_Behavior.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="QuickAccent_InputTimeMs.Header" xml:space="preserve"> <value>Input delay (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="QuickAccent_InputTimeMs.Description" xml:space="preserve"> <value>Hold the key down for this much time to make the accent menu appear (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="QuickAccent_ExcludedApps.Description" xml:space="preserve"> <value>Prevents module activation if a foreground application is excluded. Add one application name per line.</value> </data> <data name="QuickAccent_ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="QuickAccent_ExcludedApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: Teams.exe</value> </data> <data name="LearnMore_TextExtractor.Text" xml:space="preserve"> <value>Learn more about Text Extractor</value> </data> <data name="TextExtractor_Cancel" xml:space="preserve"> <value>cancel</value> </data> <data name="General_SettingsBackupAndRestore_NothingToBackup" xml:space="preserve"> <value>A new backup was not created because no settings have been changed since last backup.</value> </data> <data name="General_SettingsBackupAndRestore_NoBackupFound" xml:space="preserve"> <value>No backup found</value> </data> <data name="General_SettingsBackupAndRestore_FailedToParseTime" xml:space="preserve"> <value>Failed to parse time</value> </data> <data name="General_SettingsBackupAndRestore_UnknownBackupTime" xml:space="preserve"> <value>Unknown</value> </data> <data name="General_SettingsBackupAndRestore_UnknownBackupSource" xml:space="preserve"> <value>Unknown</value> </data> <data name="General_SettingsBackupAndRestore_ThisMachine" xml:space="preserve"> <value>This computer</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsMatch" xml:space="preserve"> <value>Current settings match</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsStatusAt" xml:space="preserve"> <value>at</value> <comment>E.g., Food was served 'at' noon.</comment> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsDiffer" xml:space="preserve"> <value>Current settings differ</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsNoChecked" xml:space="preserve"> <value>Checking...</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsUnknown" xml:space="preserve"> <value>Unknown</value> </data> <data name="General_SettingsBackupAndRestore_NeverRestored" xml:space="preserve"> <value>Never restored</value> </data> <data name="General_SettingsBackupAndRestore_NothingToRestore" xml:space="preserve"> <value>Nothing to restore.</value> </data> <data name="General_SettingsBackupAndRestore_NoSettingsFilesFound" xml:space="preserve"> <value>No settings files found.</value> </data> <data name="General_SettingsBackupAndRestore_BackupError" xml:space="preserve"> <value>There was an error. Try another backup location.</value> </data> <data name="General_SettingsBackupAndRestore_SettingsFormatError" xml:space="preserve"> <value>There was an error in the settings format. Please check the settings file:</value> </data> <data name="General_SettingsBackupAndRestore_BackupComplete" xml:space="preserve"> <value>Backup completed.</value> </data> <data name="General_SettingsBackupAndRestore_NoBackupSyncPath" xml:space="preserve"> <value>No backup location selected.</value> </data> <data name="General_SettingsBackupAndRestore_NoBackupsFound" xml:space="preserve"> <value>No backups found to restore.</value> </data> <data name="General_SettingsBackupAndRestore_InvalidBackupLocation" xml:space="preserve"> <value>Invalid backup location.</value> </data> <data name="TextExtractor.ModuleDescription" xml:space="preserve"> <value>Text Extractor is a convenient way to copy text from anywhere on screen</value> </data> <data name="TextExtractor.ModuleTitle" xml:space="preserve"> <value>Text Extractor</value> </data> <data name="TextExtractor_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Text Extractor</value> </data> <data name="TextExtractor_SupportedLanguages.Title" xml:space="preserve"> <value>Text Extractor can only recognize languages that have the OCR pack installed.</value> </data> <data name="TextExtractor_SupportedLanguages_Link.Content" xml:space="preserve"> <value>Learn more about supported languages</value> </data> <data name="Shell_TextExtractor.Content" xml:space="preserve"> <value>Text Extractor</value> </data> <data name="Launch_TextExtractor.Content" xml:space="preserve"> <value>Launch Text Extractor</value> </data> <data name="Oobe_TextExtractor.Title" xml:space="preserve"> <value>Text Extractor</value> </data> <data name="Oobe_TextExtractor_HowToUse.Text" xml:space="preserve"> <value>to open Text Extractor and then selecting a region to copy the text from.</value> </data> <data name="Oobe_TextExtractor_TipsAndTricks.Text" xml:space="preserve"> <value>Hold the shift key to move the selection region around.</value> </data> <data name="TextExtractor.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> </data> <data name="Oobe_TextExtractor.Description" xml:space="preserve"> <value>Text Extractor works like Snipping Tool, but copies the text out of the selected region using OCR and puts it on the clipboard.</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Monaco_Try_Format.Description" xml:space="preserve"> <value>Applies to json and xml. Files remain unchanged.</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Monaco_Try_Format.Header" xml:space="preserve"> <value>Try to format the source for preview</value> </data> <data name="Run_ConflictingKeywordInfo.Title" xml:space="preserve"> <value>Some characters and phrases may conflict with global queries of other plugins if you use them as activation command.</value> </data> <data name="Run_ConflictingKeywordInfo_Link.Content" xml:space="preserve"> <value>Learn more about conflicting activation commands</value> </data> <data name="MeasureTool_ContinuousCapture_Information.Title" xml:space="preserve"> <value>The continuous capture mode will consume more resources when in use. Also, measurements will be excluded from screenshots and screen capture.</value> <comment>pointer as in mouse pointer. Resources refer to things like CPU, GPU, RAM</comment> </data> <data name="QuickAccent_Description_Indicator.Header" xml:space="preserve"> <value>Show the Unicode code and name of the currently selected character</value> </data> <data name="QuickAccent_SortByUsageFrequency_Indicator.Header" xml:space="preserve"> <value>Sort characters by usage frequency</value> </data> <data name="QuickAccent_SortByUsageFrequency_Indicator.Description" xml:space="preserve"> <value>Track characters usage frequency and sort them accordingly</value> </data> <data name="QuickAccent_StartSelectionFromTheLeft_Indicator.Header" xml:space="preserve"> <value>Start selection from the left</value> </data> <data name="QuickAccent_StartSelectionFromTheLeft_Indicator.Description" xml:space="preserve"> <value>Start selection from the leftmost character for all activation keys, including left and right arrows</value> </data> <data name="QuickAccent_DisableFullscreen.Header" xml:space="preserve"> <value>Disable when Game Mode is On</value> </data> <data name="QuickAccent_Language.Header" xml:space="preserve"> <value>Characters</value> </data> <data name="QuickAccent_SelectedLanguage.Header" xml:space="preserve"> <value>Choose a character set</value> </data> <data name="QuickAccent_SelectedLanguage.Description" xml:space="preserve"> <value>Show only accented characters common to the selected set</value> </data> <data name="QuickAccent_SelectedLanguage_All.Content" xml:space="preserve"> <value>All available</value> </data> <data name="QuickAccent_SelectedLanguage_Catalan.Content" xml:space="preserve"> <value>Catalan</value> </data> <data name="QuickAccent_SelectedLanguage_Currency.Content" xml:space="preserve"> <value>Currency</value> </data> <data name="QuickAccent_SelectedLanguage_Croatian.Content" xml:space="preserve"> <value>Croatian</value> </data> <data name="QuickAccent_SelectedLanguage_Czech.Content" xml:space="preserve"> <value>Czech</value> </data> <data name="QuickAccent_SelectedLanguage_Gaeilge.Content" xml:space="preserve"> <value>Gaeilge</value> <comment>Gaelic language spoken in Ireland</comment> </data> <data name="QuickAccent_SelectedLanguage_Gaidhlig.Content" xml:space="preserve"> <value>Gàidhlig</value> <comment>Scottish Gaelic</comment> </data> <data name="QuickAccent_SelectedLanguage_German.Content" xml:space="preserve"> <value>German</value> </data> <data name="QuickAccent_SelectedLanguage_Hebrew.Content" xml:space="preserve"> <value>Hebrew</value> </data> <data name="QuickAccent_SelectedLanguage_French.Content" xml:space="preserve"> <value>French</value> </data> <data name="QuickAccent_SelectedLanguage_Estonian.Content" xml:space="preserve"> <value>Estonian</value> </data> <data name="QuickAccent_SelectedLanguage_Lithuanian.Content" xml:space="preserve"> <value>Lithuanian</value> </data> <data name="QuickAccent_SelectedLanguage_Macedonian.Content" xml:space="preserve"> <value>Macedonian</value> </data> <data name="QuickAccent_SelectedLanguage_Maori.Content" xml:space="preserve"> <value>Maori</value> </data> <data name="QuickAccent_SelectedLanguage_Dutch.Content" xml:space="preserve"> <value>Dutch</value> </data> <data name="QuickAccent_SelectedLanguage_Norwegian.Content" xml:space="preserve"> <value>Norwegian</value> </data> <data name="QuickAccent_SelectedLanguage_Pinyin.Content" xml:space="preserve"> <value>Pinyin</value> </data> <data name="QuickAccent_SelectedLanguage_Polish.Content" xml:space="preserve"> <value>Polish</value> </data> <data name="QuickAccent_SelectedLanguage_Portuguese.Content" xml:space="preserve"> <value>Portuguese</value> </data> <data name="QuickAccent_SelectedLanguage_Slovakian.Content" xml:space="preserve"> <value>Slovakian</value> </data> <data name="QuickAccent_SelectedLanguage_Spanish.Content" xml:space="preserve"> <value>Spanish</value> </data> <data name="QuickAccent_SelectedLanguage_Swedish.Content" xml:space="preserve"> <value>Swedish</value> </data> <data name="QuickAccent_SelectedLanguage_Turkish.Content" xml:space="preserve"> <value>Turkish</value> </data> <data name="QuickAccent_SelectedLanguage_Icelandic.Content" xml:space="preserve"> <value>Icelandic</value> </data> <data name="QuickAccent_SelectedLanguage_Romanian.Content" xml:space="preserve"> <value>Romanian</value> </data> <data name="QuickAccent_SelectedLanguage_Serbian.Content" xml:space="preserve"> <value>Serbian</value> </data> <data name="QuickAccent_SelectedLanguage_Hungarian.Content" xml:space="preserve"> <value>Hungarian</value> </data> <data name="QuickAccent_SelectedLanguage_Italian.Content" xml:space="preserve"> <value>Italian</value> </data> <data name="QuickAccent_SelectedLanguage_Kurdish.Content" xml:space="preserve"> <value>Kurdish</value> </data> <data name="QuickAccent_SelectedLanguage_Welsh.Content" xml:space="preserve"> <value>Welsh</value> </data> <data name="Hosts.ModuleDescription" xml:space="preserve"> <value>Quick and simple utility for managing hosts file.</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Hosts.ModuleTitle" xml:space="preserve"> <value>Hosts File Editor</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Shell_Hosts.Content" xml:space="preserve"> <value>Hosts File Editor</value> <comment>Products name: Navigation view item name for Hosts File Editor</comment> </data> <data name="Hosts_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Hosts_Toggle_ShowStartupWarning.Header" xml:space="preserve"> <value>Show a warning at startup</value> </data> <data name="Hosts_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="Hosts_LaunchButtonControl.Description" xml:space="preserve"> <value>Manage your hosts file</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Hosts_LaunchButtonControl.Header" xml:space="preserve"> <value>Launch Host File Editor</value> <comment>"Host File Editor" is a product name</comment> </data> <data name="Hosts_LaunchButton_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Launch Host File Editor</value> <comment>"Host File Editor" is a product name</comment> </data> <data name="Hosts_AdditionalLinesPosition.Header" xml:space="preserve"> <value>Position of additional content</value> </data> <data name="Hosts_AdditionalLinesPosition_Bottom.Content" xml:space="preserve"> <value>Bottom</value> </data> <data name="Hosts_AdditionalLinesPosition_Top.Content" xml:space="preserve"> <value>Top</value> </data> <data name="Hosts_Behavior_GroupSettings.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="Launch_Hosts.Content" xml:space="preserve"> <value>Launch Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="LearnMore_Hosts.Text" xml:space="preserve"> <value>Learn more about Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Oobe_Hosts.Description" xml:space="preserve"> <value>Hosts File Editor is a quick and simple utility for managing hosts file.</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Oobe_Hosts.Title" xml:space="preserve"> <value>Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Hosts_Toggle_LaunchAdministrator.Description" xml:space="preserve"> <value>Needs to be launched as administrator in order to make changes to the hosts file</value> </data> <data name="Hosts_Toggle_LaunchAdministrator.Header" xml:space="preserve"> <value>Launch as administrator</value> </data> <data name="ShortcutGuide_PressTimeForTaskbarIconShortcuts.Header" xml:space="preserve"> <value>Press duration before showing taskbar icon shortcuts (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="FileLocksmith.ModuleDescription" xml:space="preserve"> <value>A Windows shell extension to find out which processes are using the selected files and directories.</value> </data> <data name="FileLocksmith.ModuleTitle" xml:space="preserve"> <value>File Locksmith</value> </data> <data name="Shell_FileLocksmith.Content" xml:space="preserve"> <value>File Locksmith</value> <comment>Product name: Navigation view item name for FileLocksmith</comment> </data> <data name="FileLocksmith_Enable_FileLocksmith.Header" xml:space="preserve"> <value>Enable File Locksmith</value> <comment>File Locksmith is the name of the utility</comment> </data> <data name="FileLocksmith_Toggle_StandardContextMenu.Content" xml:space="preserve"> <value>Default and extended context menu</value> </data> <data name="FileLocksmith_Toggle_ExtendedContextMenu.Content" xml:space="preserve"> <value>Extended context menu only</value> </data> <data name="FileLocksmith_Toggle_ContextMenu.Header" xml:space="preserve"> <value>Show File Locksmith in</value> </data> <data name="FileLocksmith_ShellIntegration.Header" xml:space="preserve"> <value>Shell integration</value> <comment>This refers to directly integrating in with Windows</comment> </data> <data name="GPO_IsSettingForced.Title" xml:space="preserve"> <value>The system administrator is forcing this setting.</value> </data> <data name="Hosts_AdditionalLinesPosition.Description" xml:space="preserve"> <value>Additional content includes the file header and lines that can't parse</value> </data> <data name="TextExtractor_Languages.Header" xml:space="preserve"> <value>Preferred language</value> </data> <data name="Alternate_OOBE_AlwaysOnTop_Description.Text" xml:space="preserve"> <value>Pin a window so that:</value> </data> <data name="Alternate_OOBE_AlwaysOnTop_Title.Text" xml:space="preserve"> <value>Always On Top</value> </data> <data name="Alternate_OOBE_ColorPicker_Description.Text" xml:space="preserve"> <value>To pick a color:</value> </data> <data name="Alternate_OOBE_ColorPicker_Title.Text" xml:space="preserve"> <value>Color Picker</value> </data> <data name="Alternate_OOBE_Description.Text" xml:space="preserve"> <value>Here are a few shortcuts to get you started:</value> </data> <data name="Alternate_OOBE_FancyZones_Description.Text" xml:space="preserve"> <value>To open the FancyZones editor, press:</value> </data> <data name="Alternate_OOBE_FancyZones_Title.Text" xml:space="preserve"> <value>FancyZones</value> </data> <data name="Alternate_OOBE_Run_Description.Text" xml:space="preserve"> <value>Get access to your files and more:</value> </data> <data name="Alternate_OOBE_Run_Title.Text" xml:space="preserve"> <value>PowerToys Run</value> </data> <data name="General_Experimentation.Header" xml:space="preserve"> <value>Experimentation</value> </data> <data name="GeneralPage_EnableExperimentation.Description" xml:space="preserve"> <value>Note: Only Windows Insider builds may be selected for experimentation</value> </data> <data name="GeneralPage_EnableExperimentation.Header" xml:space="preserve"> <value>Allow experimentation with new features</value> </data> <data name="GPO_ExperimentationIsDisallowed.Title" xml:space="preserve"> <value>The system administrator has disabled experimentation.</value> </data> <data name="Shell_PastePlain.Content" xml:space="preserve"> <value>Paste As Plain Text</value> <comment>Product name: Navigation view item name for Paste as Plain Text</comment> </data> <data name="PastePlain.ModuleDescription" xml:space="preserve"> <value>Paste As Plain Text is a quick shortcut for pasting the text contents of your clipboard without formatting. Note: the formatted text in the clipboard is replaced with the unformatted text.</value> </data> <data name="PastePlain.ModuleTitle" xml:space="preserve"> <value>Paste As Plain Text</value> </data> <data name="PastePlain_Cancel" xml:space="preserve"> <value>cancel</value> </data> <data name="PastePlain_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Paste As Plain Text</value> </data> <data name="Oobe_PastePlain.Description" xml:space="preserve"> <value>Paste As Plain Text strips rich formatting from your clipboard data and pastes it as non-formatted text.</value> </data> <data name="Oobe_PastePlain.Title" xml:space="preserve"> <value>Paste As Plain Text</value> </data> <data name="Oobe_PastePlain_HowToUse.Text" xml:space="preserve"> <value>to paste your clipboard data as plain text. Note: this will replace the formatted text in your clipboard with the plain text.</value> </data> <data name="AllAppsTxt.Text" xml:space="preserve"> <value>All apps</value> </data> <data name="BackBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Back</value> </data> <data name="BackLabel.Text" xml:space="preserve"> <value>Back</value> </data> <data name="BugReportBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Bug report</value> </data> <data name="BugReportTooltip.Text" xml:space="preserve"> <value>Bug report</value> </data> <data name="DocsBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Documentation</value> </data> <data name="DocsTooltip.Text" xml:space="preserve"> <value>Documentation</value> </data> <data name="FZEditorString" xml:space="preserve"> <value>FancyZones Editor</value> <comment>Do not localize this string</comment> </data> <data name="MoreBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>More</value> </data> <data name="MoreLabel.Text" xml:space="preserve"> <value>More</value> </data> <data name="SettingsBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Settings</value> </data> <data name="SettingsTooltip.Text" xml:space="preserve"> <value>Settings</value> </data> <data name="ShortcutsTxt.Text" xml:space="preserve"> <value>Shortcuts</value> </data> <data name="UpdateAvailable.Title" xml:space="preserve"> <value>Update available</value> </data> <data name="FileExplorerPreview_Toggle_Monaco_Max_File_Size.Header" xml:space="preserve"> <value>Maximum file size to preview</value> <comment>Size refers to the disk space used by a file</comment> </data> <data name="FileExplorerPreview_Toggle_Monaco_Max_File_Size.Description" xml:space="preserve"> <value>The maximum size, in kilobytes, for files to be displayed. This is a safety mechanism to prevent loading large files into RAM.</value> <comment>"RAM" refers to random access memory; "size" refers to disk space; "bytes" refer to the measurement unit</comment> </data> <data name="RegistryPreview.ModuleDescription" xml:space="preserve"> <value>A quick little utility to visualize and edit complex Windows Registry files.</value> </data> <data name="RegistryPreview.ModuleTitle" xml:space="preserve"> <value>Registry Preview</value> </data> <data name="Shell_RegistryPreview.Content" xml:space="preserve"> <value>Registry Preview</value> <comment>Product name: Navigation view item name for Registry Preview</comment> </data> <data name="RegistryPreview_Enable_RegistryPreview.Header" xml:space="preserve"> <value>Enable Registry Preview</value> <comment>Registry Preview is the name of the utility</comment> </data> <data name="Oobe_RegistryPreview_HowToUse.Text" xml:space="preserve"> <value>In File Explorer, right-click a .REG file and select **Preview** from the context menu.</value> </data> <data name="Oobe_RegistryPreview_TipsAndTricks.Text" xml:space="preserve"> <value>You can preview or edit Registry files in File Explorer or by opening the app from the PowerToys launcher.</value> </data> <data name="Oobe_RegistryPreview.Description" xml:space="preserve"> <value>Registry Preview is a quick little utility to visualize and edit complex Windows Registry files.</value> </data> <data name="Oobe_RegistryPreview.Title" xml:space="preserve"> <value>Registry Preview</value> <comment>Do not localize this string</comment> </data> <data name="LearnMore_RegistryPreview.Text" xml:space="preserve"> <value>Learn more about Registry Preview</value> <comment>Registry Preview is a product name, do not loc</comment> </data> <data name="Launch_RegistryPreview.Content" xml:space="preserve"> <value>Launch Registry Preview</value> <comment>"Registry Preview" is the name of the utility</comment> </data> <data name="MouseUtils_MouseJump.Description" xml:space="preserve"> <value>Quickly move the mouse pointer long distances.</value> <comment>"Mouse Jump" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_MouseJump.Header" xml:space="preserve"> <value>Mouse Jump</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_MouseJump_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to turn on or off this mode</value> </data> <data name="MouseUtils_MouseJump_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MouseUtils_Enable_MouseJump.Header" xml:space="preserve"> <value>Enable Mouse Jump</value> <comment>"Mouse Jump" is the name of the utility.</comment> </data> <data name="GPO_AutoDownloadUpdatesIsDisabled.Title" xml:space="preserve"> <value>The system administrator has disabled the automatic download of updates.</value> </data> <data name="Hosts_Toggle_LoopbackDuplicates.Description" xml:space="preserve"> <value>127.0.0.1, ::1, ...</value> <comment>"127.0.0.1 and ::1" are well known loopback addresses, do not loc</comment> </data> <data name="Hosts_Toggle_LoopbackDuplicates.Header" xml:space="preserve"> <value>Consider loopback addresses as duplicates</value> </data> <data name="RegistryPreview_Launch_GroupSettings.Header" xml:space="preserve"> <value>Launch</value> </data> <data name="RegistryPreview_LaunchButton_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Launch Registry Preview</value> </data> <data name="RegistryPreview_LaunchButtonControl.Header" xml:space="preserve"> <value>Launch Registry Preview</value> </data> <data name="RegistryPreview_DefaultRegApp.Header" xml:space="preserve"> <value>Default app</value> </data> <data name="RegistryPreview_DefaultRegApp.Description" xml:space="preserve"> <value>Make Registry Preview default app for opening .reg files</value> <comment>Registry Preview is app name. Do not localize.</comment> </data> <data name="PastePlain_ShortcutWarning.Title" xml:space="preserve"> <value>Using this shortcut may prevent non-text paste actions (e.g. images, files) or built-in paste plain text actions in other applications from functioning.</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize.Header" xml:space="preserve"> <value>Thumbnail Size</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Description_Prefix.Text" xml:space="preserve"> <value>Constrain thumbnail image size to a maximum of</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Description_Suffix.Text" xml:space="preserve"> <value>pixels</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Edit_Height.Header" xml:space="preserve"> <value>Maximum height (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Edit_Width.Header" xml:space="preserve"> <value>Maximum width (px)</value> <comment>px = pixels</comment> </data> <data name="Oobe_Peek.Description" xml:space="preserve"> <value>A lightning fast file preview feature for Windows.</value> </data> <data name="Oobe_Peek.Title" xml:space="preserve"> <value>Peek</value> </data> <data name="Oobe_Peek_HowToUse.Text" xml:space="preserve"> <value>to preview the file that's currently selected in File Explorer.</value> </data> <data name="MWB_PCNameLabel.PlaceholderText" xml:space="preserve"> <value>Device name</value> </data> <data name="MWB_SecurityKeyLabel.PlaceholderText" xml:space="preserve"> <value>Security key</value> </data> <data name="Hosts_Encoding.Description" xml:space="preserve"> <value>Choose the encoding of the hosts file</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Hosts_Encoding.Header" xml:space="preserve"> <value>Encoding</value> </data> <data name="Hosts_Encoding_Utf8.Content" xml:space="preserve"> <value>UTF-8</value> </data> <data name="Hosts_Encoding_Utf8Bom.Content" xml:space="preserve"> <value>UTF-8 with BOM</value> </data> <data name="MouseUtils_MouseHighlighter_AlwaysColor.Header" xml:space="preserve"> <value>Always highlight color</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsAutoHide.Content" xml:space="preserve"> <value>Automatically hide crosshairs when the mouse pointer is hidden</value> </data> <data name="MouseUtils_AutoActivate.Content" xml:space="preserve"> <value>Automatically activate on utility startup</value> </data> <data name="Run_FindMorePlugins.Text" xml:space="preserve"> <value>Find more plugins</value> </data> <data name="Run_PluginUseFindMorePlugins.Content" xml:space="preserve"> <value>Find more plugins</value> </data> <data name="Run_SomePluginsAreGpoManaged.Title" xml:space="preserve"> <value>The system administrator is managing the enabled state of some plugins.</value> </data> <data name="AlwaysOnTop_FrameOpacity.Header" xml:space="preserve"> <value>Opacity (%)</value> </data> <data name="MouseUtils_FindMyMouse_ActivationCustomizedShortcut.Content" xml:space="preserve"> <value>Custom shortcut</value> </data> <data name="MouseUtils_FindMyMouse_ActivationDoubleRightControlPress.Content" xml:space="preserve"> <value>Press Right Control twice</value> <comment>Right control is the physical key on the keyboard.</comment> </data> <data name="MouseUtils_FindMyMouse_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to turn on or off this mode</value> </data> <data name="MouseUtils_FindMyMouse_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="SettingsWindow_AdminTitle" xml:space="preserve"> <value>Administrator: PowerToys Settings</value> <comment>Title of the settings window when running as administrator</comment> </data> </root>
<?xml version="1.0" encoding="utf-8"?> <root> <!-- Microsoft ResX Schema Version 2.0 The primary goals of this format is to allow a simple XML format that is mostly human readable. The generation and parsing of the various data types are done through the TypeConverter classes associated with the data types. Example: ... ado.net/XML headers & schema ... <resheader name="resmimetype">text/microsoft-resx</resheader> <resheader name="version">2.0</resheader> <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader> <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader> <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data> <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data> <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64"> <value>[base64 mime encoded serialized .NET Framework object]</value> </data> <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value> <comment>This is a comment</comment> </data> There are any number of "resheader" rows that contain simple name/value pairs. Each data row contains a name, and value. The row also contains a type or mimetype. Type corresponds to a .NET class that support text/value conversion through the TypeConverter architecture. Classes that don't support this are serialized and stored with the mimetype set. The mimetype is used for serialized objects, and tells the ResXResourceReader how to depersist the object. This is currently not extensible. For a given mimetype the value must be set accordingly: Note - application/x-microsoft.net.object.binary.base64 is the format that the ResXResourceWriter will generate, however the reader can read any of the formats listed below. mimetype: application/x-microsoft.net.object.binary.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.soap.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Soap.SoapFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.bytearray.base64 value : The object must be serialized into a byte array : using a System.ComponentModel.TypeConverter : and then encoded with base64 encoding. --> <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> <xsd:import namespace="http://www.w3.org/XML/1998/namespace" /> <xsd:element name="root" msdata:IsDataSet="true"> <xsd:complexType> <xsd:choice maxOccurs="unbounded"> <xsd:element name="metadata"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" /> </xsd:sequence> <xsd:attribute name="name" use="required" type="xsd:string" /> <xsd:attribute name="type" type="xsd:string" /> <xsd:attribute name="mimetype" type="xsd:string" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="assembly"> <xsd:complexType> <xsd:attribute name="alias" type="xsd:string" /> <xsd:attribute name="name" type="xsd:string" /> </xsd:complexType> </xsd:element> <xsd:element name="data"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" /> <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="resheader"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" /> </xsd:complexType> </xsd:element> </xsd:choice> </xsd:complexType> </xsd:element> </xsd:schema> <resheader name="resmimetype"> <value>text/microsoft-resx</value> </resheader> <resheader name="version"> <value>2.0</value> </resheader> <resheader name="reader"> <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <resheader name="writer"> <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <data name="Attribution_Rooler.Text" xml:space="preserve"> <value>Inspired by Rooler</value> <comment>Rooler is a name of the tool.</comment> </data> <data name="Shell_VideoConference.Content" xml:space="preserve"> <value>Video Conference Mute</value> <comment>Navigation view item name for Video Conference</comment> </data> <data name="Shell_MeasureTool.Content" xml:space="preserve"> <value>Screen Ruler</value> <comment>Product name: Navigation view item name for Screen Ruler</comment> </data> <data name="MeasureTool.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="MeasureTool.ModuleDescription" xml:space="preserve"> <value>Screen Ruler is a quick and easy way to measure pixels on your screen.</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool.ModuleTitle" xml:space="preserve"> <value>Screen Ruler</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool_ActivationSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="MeasureTool_Settings.Header" xml:space="preserve"> <value>Behavior</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MeasureTool_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to bring up the command bar</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool_DefaultMeasureStyle.Header" xml:space="preserve"> <value>Default measure style</value> </data> <data name="MeasureTool_DefaultMeasureStyle.Description" xml:space="preserve"> <value>The utility will start having the selected style activated</value> </data> <data name="MeasureTool_DefaultMeasureStyle_None.Content" xml:space="preserve"> <value>None</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Bounds.Content" xml:space="preserve"> <value>Bounds</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Spacing.Content" xml:space="preserve"> <value>Spacing</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Horizontal_Spacing.Content" xml:space="preserve"> <value>Horizontal spacing</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Vertical_Spacing.Content" xml:space="preserve"> <value>Vertical spacing</value> </data> <data name="MeasureTool_UnitsOfMeasure.Header" xml:space="preserve"> <value>Units of measurement</value> </data> <data name="MeasureTool_UnitsOfMeasure_Pixels.Content" xml:space="preserve"> <value>Pixels</value> </data> <data name="MeasureTool_UnitsOfMeasure_Inches.Content" xml:space="preserve"> <value>Inches</value> </data> <data name="MeasureTool_UnitsOfMeasure_Centimeters.Content" xml:space="preserve"> <value>Centimeters</value> </data> <data name="MeasureTool_PixelTolerance.Header" xml:space="preserve"> <value>Pixel tolerance for edge detection</value> </data> <data name="MeasureTool_MeasureCrossColor.Header" xml:space="preserve"> <value>Line color</value> </data> <data name="MeasureTool_ContinuousCapture.Header" xml:space="preserve"> <value>Capture screen continuously during measuring</value> </data> <data name="MeasureTool_ContinuousCapture.Description" xml:space="preserve"> <value>Refresh screen contexts in real-time instead of making a screenshot once</value> </data> <data name="MeasureTool_PerColorChannelEdgeDetection.Header" xml:space="preserve"> <value>Per color channel edge detection</value> </data> <data name="MeasureTool_PerColorChannelEdgeDetection.Description" xml:space="preserve"> <value>If enabled, test that all color channels are within a tolerance distance from each other. Otherwise, check that the sum of all color channels differences is smaller than the tolerance.</value> </data> <data name="MeasureTool_DrawFeetOnCross.Header" xml:space="preserve"> <value>Draw feet on cross</value> </data> <data name="MeasureTool_DrawFeetOnCross.Description" xml:space="preserve"> <value>Adds feet to the end of cross lines</value> </data> <data name="MeasureTool_EnableMeasureTool.Header" xml:space="preserve"> <value>Enable Screen Ruler</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MouseWithoutBorders_ActivationSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="MouseWithoutBorders_DeviceLayoutSettings.Header" xml:space="preserve"> <value>Device layout</value> </data> <data name="MouseWithoutBorders_DeviceLayoutSettings.Description" xml:space="preserve"> <value>Drag and drop a machine to rearrange the order.</value> </data> <data name="MouseWithoutBorders_CannotDragDropAsAdmin.Title" xml:space="preserve"> <value>It is not possible to use drag and drop while running PowerToys elevated. As a workaround, please restart PowerToys without elevation to edit the device layout.</value> </data> <data name="MouseWithoutBorders_KeySettings.Header" xml:space="preserve"> <value>Encryption key</value> </data> <data name="MouseWithoutBorders_SecurityKey.Header" xml:space="preserve"> <value>Security key</value> </data> <data name="MouseWithoutBorders_SecurityKey.Description" xml:space="preserve"> <value>The key must be auto generated in one machine by clicking on New Key, then typed in other machines</value> </data> <data name="MouseWithoutBorders_NewKey.Content" xml:space="preserve"> <value>New key</value> </data> <data name="MouseWithoutBorders_CopyMachineName.Text" xml:space="preserve"> <value>Copy to clipboard</value> </data> <data name="MouseWithoutBorders_ReconnectButton.Text" xml:space="preserve"> <value>Refresh connections</value> </data> <data name="MouseWithoutBorders_ReconnectTooltip.Text" xml:space="preserve"> <value>Reestablishes connections with other devices if you are experiencing issues.</value> </data> <data name="MouseWithoutBorders_ThisMachineNameLabel.Header" xml:space="preserve"> <value>Host name of this device</value> </data> <data name="MouseWithoutBorders_Connect.Content" xml:space="preserve"> <value>Connect</value> </data> <data name="MouseWithoutBorders_UninstallService.Header" xml:space="preserve"> <value>Uninstall service</value> </data> <data name="MouseWithoutBorders_UninstallService.Description" xml:space="preserve"> <value>Removes the service from the computer. Needs to run as administrator.</value> </data> <data name="MouseWithoutBorders_Settings.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="MouseWithoutBorders_TroubleShooting.Header" xml:space="preserve"> <value>Troubleshooting</value> </data> <data name="MouseWithoutBorders_AddFirewallRuleButtonControl.Header" xml:space="preserve"> <value>Add a firewall rule for Mouse Without Borders</value> <comment>"Mouse Without Borders" is a product name</comment> </data> <data name="MouseWithoutBorders_AddFirewallRuleButtonControl.Description" xml:space="preserve"> <value>Adding a firewall rule might help solve connection issues.</value> </data> <data name="MouseWithoutBorders_RunAsAdminText.Title" xml:space="preserve"> <value>You need to run as administrator to modify this setting.</value> </data> <data name="MouseWithoutBorders_ServiceUserUninstallWarning.Title" xml:space="preserve"> <value>If PowerToys is installed as a user, uninstalling/upgrading may require the Mouse Without Borders service to be removed manually later.</value> </data> <data name="MouseWithoutBorders_ServiceSettings.Header" xml:space="preserve"> <value>Service</value> </data> <data name="MouseWithoutBorders_Toggle_Enable.Header" xml:space="preserve"> <value>Enable Mouse Without Borders</value> </data> <data name="MouseWithoutBorders.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="MouseWithoutBorders.ModuleDescription" xml:space="preserve"> <value>Mouse Without Borders is a quick and easy way to move your cursor across multiple devices.</value> <comment>"Mouse Without Borders" is the name of the utility</comment> </data> <data name="MouseWithoutBorders.ModuleTitle" xml:space="preserve"> <value>Mouse Without Borders</value> <comment>"Mouse Without Borders" is the name of the utility</comment> </data> <data name="MouseWithoutBorders_UseService.Header" xml:space="preserve"> <value>Use Service</value> </data> <data name="MouseWithoutBorders_UseService.Description" xml:space="preserve"> <value>Runs in service mode, that allows MWB to control remote machines when they're locked. Also allows control of system and administrator applications.</value> </data> <data name="MouseWithoutBorders_MatrixOneRow.Header" xml:space="preserve"> <value>Devices in a single row</value> </data> <data name="MouseWithoutBorders_MatrixOneRow.Description" xml:space="preserve"> <value>Sets whether the devices are aligned on a single row. A two by two matrix is considered otherwise.</value> </data> <data name="MouseWithoutBorders_WrapMouse.Header" xml:space="preserve"> <value>Wrap mouse</value> </data> <data name="MouseWithoutBorders_WrapMouse.Description" xml:space="preserve"> <value>Move control back to the first machine when mouse moves past the last one.</value> </data> <data name="MouseWithoutBorders_ShareClipboard.Header" xml:space="preserve"> <value>Share clipboard</value> </data> <data name="MouseWithoutBorders_TransferFile.Header" xml:space="preserve"> <value>Transfer file</value> </data> <data name="MouseWithoutBorders_HideMouseAtScreenEdge.Header" xml:space="preserve"> <value>Hide mouse at the screen edge</value> </data> <data name="MouseWithoutBorders_DrawMouseCursor.Header" xml:space="preserve"> <value>Draw mouse cursor</value> </data> <data name="MouseWithoutBorders_ValidateRemoteMachineIP.Header" xml:space="preserve"> <value>Validate remote machine IP</value> </data> <data name="MouseWithoutBorders_SameSubnetOnly.Header" xml:space="preserve"> <value>Same subnet only</value> </data> <data name="MouseWithoutBorders_BlockScreenSaverOnOtherMachines.Header" xml:space="preserve"> <value>Block screen saver on other machines</value> </data> <data name="MouseWithoutBorders_MoveMouseRelatively.Header" xml:space="preserve"> <value>Move mouse relatively</value> </data> <data name="MouseWithoutBorders_BlockMouseAtScreenCorners.Header" xml:space="preserve"> <value>Block mouse at screen corners</value> </data> <data name="MouseWithoutBorders_ShowClipboardAndNetworkStatusMessages.Header" xml:space="preserve"> <value>Show clipboard and network status messages</value> </data> <data name="MouseWithoutBorders_ShowOriginalUI.Header" xml:space="preserve"> <value>Show the original Mouse Without Borders UI</value> </data> <data name="MouseWithoutBorders_ShowOriginalUI.Description" xml:space="preserve"> <value>This is accessible from the system tray and requires a restart.</value> </data> <data name="MouseWithoutBorders_ShareClipboard.Description" xml:space="preserve"> <value>If share clipboard stops working, Ctrl+Alt+Del then Esc may solve the problem.</value> </data> <data name="MouseWithoutBorders_TransferFile.Description" xml:space="preserve"> <value>If a file (&lt;100MB) is copied, it will be transferred to the remote machine clipboard.</value> </data> <data name="MouseWithoutBorders_HideMouseAtScreenEdge.Description" xml:space="preserve"> <value>Hide the mouse cursor at the top edge of the screen when switching to other machine. This option also steals the focus from any full-screen app to ensure the keyboard input is redirected.</value> </data> <data name="MouseWithoutBorders_DrawMouseCursor.Description" xml:space="preserve"> <value>Mouse cursor may not be visible in Windows 10 and later versions of Windows when there is no physical mouse attached.</value> </data> <data name="MouseWithoutBorders_ValidateRemoteMachineIP.Description" xml:space="preserve"> <value>Reverse DNS lookup to validate machine IP Address.</value> </data> <data name="MouseWithoutBorders_SameSubnetOnly.Description" xml:space="preserve"> <value>Only connect to machines in the same intranet NNN.NNN.*.* (only works when both machines have IPv4 enabled)</value> </data> <data name="MouseWithoutBorders_IPAddressMapping_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: MyLaptop 192.168.0.24</value> <comment>Don't translate MyLaptop</comment> </data> <data name="MouseWithoutBorders_IPAddressMapping.Header" xml:space="preserve"> <value>IP address mapping</value> </data> <data name="MouseWithoutBorders_IPAddressMapping.Description" xml:space="preserve"> <value>Resolve machine's IP address using manually entered mappings below.</value> </data> <data name="MouseWithoutBorders_BlockScreenSaverOnOtherMachines.Description" xml:space="preserve"> <value>Prevent screen saver from starting on other machines when user is actively working on this machine.</value> </data> <data name="MouseWithoutBorders_MoveMouseRelatively.Description" xml:space="preserve"> <value>Use this option when remote machine's monitor settings are different, or remote machine has multiple monitors.</value> </data> <data name="MouseWithoutBorders_BlockMouseAtScreenCorners.Description" xml:space="preserve"> <value>To avoid accident machine-switch at screen corners.</value> </data> <data name="MouseWithoutBorders_ShowClipboardAndNetworkStatusMessages.Description" xml:space="preserve"> <value>Show clipboard activities and network status in system tray notifications</value> </data> <data name="MouseWithoutBorders_KeyboardShortcuts_Group.Header" xml:space="preserve"> <value>Keyboard shortcuts</value> <comment>keyboard is the hardware peripheral</comment> </data> <data name="MouseWithoutBorders_AdvancedSettings_Group.Header" xml:space="preserve"> <value>Advanced Settings</value> </data> <data name="MouseWithoutBorders_EasyMouseOption.Header" xml:space="preserve"> <value>Easy Mouse: move between machines by moving the mouse pointer to the screen edges.</value> </data> <data name="MouseWithoutBorders_EasyMouseOption.Description" xml:space="preserve"> <value>Can also be set to move only when pressing Shift or Ctrl.</value> <comment>Shift and Ctrl are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_EasyMouseOption_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_EasyMouseOption_Enabled.Content" xml:space="preserve"> <value>Enabled</value> </data> <data name="MouseWithoutBorders_EasyMouseOption_Ctrl.Content" xml:space="preserve"> <value>Ctrl</value> <comment>This is the Ctrl keyboard key</comment> </data> <data name="MouseWithoutBorders_EasyMouseOption_Shift.Content" xml:space="preserve"> <value>Shift</value> <comment>This is the Shift keyboard key</comment> </data> <data name="MouseWithoutBorders_LockMachinesShortcut.Header" xml:space="preserve"> <value>Shortcut to lock all machines.</value> </data> <data name="MouseWithoutBorders_LockMachinesShortcut.Description" xml:space="preserve"> <value>Hit this hotkey twice to lock all machines. Note: Only the machines which have the same shortcut configured will be locked.</value> </data> <data name="MouseWithoutBorders_ToggleEasyMouseShortcut.Header" xml:space="preserve"> <value>Shortcut to toggle Easy Mouse.</value> <comment>Ctrl and Alt are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_ToggleEasyMouseShortcut.Description" xml:space="preserve"> <value>Only works if EasyMouse is set to Enabled or Disabled.</value> </data> <data name="MouseWithoutBorders_ToggleEasyMouseShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut.Header" xml:space="preserve"> <value>Shortcut to switch between machines. Ctrl+Alt+:</value> <comment>Ctrl and Alt are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut.Description" xml:space="preserve"> <value>Click on Ctrl+Alt+ the chosen option to switch between machines.</value> <comment>Ctrl and Alt are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut_F1.Content" xml:space="preserve"> <value>F1, F2, F3, F4</value> <comment>Don't localize. These are keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut_1.Content" xml:space="preserve"> <value>1, 2, 3, 4</value> <comment>Don't localize. These are keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_LockMachinesShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_ReconnectShortcut.Header" xml:space="preserve"> <value>Shortcut to try reconnecting</value> </data> <data name="MouseWithoutBorders_ReconnectShortcut.Description" xml:space="preserve"> <value>Just in case the connection is lost for any reason.</value> </data> <data name="MouseWithoutBorders_ReconnectShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut.Header" xml:space="preserve"> <value>Shortcut to switch to multiple machine mode.</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut.Description" xml:space="preserve"> <value>Allows controlling all computers at once.</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut_Ctrl3.Content" xml:space="preserve"> <value>Ctrl three times</value> <comment>This is the Ctrl keyboard key</comment> </data> <data name="VideoConference_Enable.Header" xml:space="preserve"> <value>Enable Video Conference Mute</value> </data> <data name="VideoConference.ModuleDescription" xml:space="preserve"> <value>Video Conference Mute is a quick and easy way to do a global "mute" of both your microphone and webcam. Disabling this module or closing PowerToys will unmute the microphone and camera.</value> </data> <data name="VideoConference_CameraAndMicrophoneMuteHotkeyControl_Header.Header" xml:space="preserve"> <value>Mute camera &amp; microphone</value> </data> <data name="VideoConference_MicrophoneMuteHotkeyControl_Header.Header" xml:space="preserve"> <value>Mute microphone</value> </data> <data name="VideoConference_MicrophonePushToTalkHotkeyControl_Header.Header" xml:space="preserve"> <value>Push to talk</value> </data> <data name="VideoConference_CameraMuteHotkeyControl_Header.Header" xml:space="preserve"> <value>Mute camera</value> </data> <data name="VideoConference_SelectedCamera.Header" xml:space="preserve"> <value>Selected camera</value> </data> <data name="VideoConference_SelectedMicrophone.Header" xml:space="preserve"> <value>Selected microphone</value> </data> <data name="VideoConference_PushToReverse.Header" xml:space="preserve"> <value>Push to reverse</value> </data> <data name="VideoConference_PushToReverse.Description" xml:space="preserve"> <value>If enabled, allows both push to talk and push to mute, depending on microphone state</value> </data> <data name="VideoConference_CameraOverlayImagePathHeader.Header" xml:space="preserve"> <value>Image displayed when camera is muted</value> </data> <data name="VideoConference_ToolbarPosition.Header" xml:space="preserve"> <value>Toolbar position</value> </data> <data name="VideoConference_ToolbarPosition_TopCenter.Content" xml:space="preserve"> <value>Top center</value> </data> <data name="VideoConference_ToolbarPosition_TopLeftCorner.Content" xml:space="preserve"> <value>Top left corner</value> </data> <data name="VideoConference_ToolbarPosition_TopRightCorner.Content" xml:space="preserve"> <value>Top right corner</value> </data> <data name="VideoConference_ToolbarPosition_BottomLeftCorner.Content" xml:space="preserve"> <value>Bottom left corner</value> </data> <data name="VideoConference_ToolbarPosition_BottomCenter.Content" xml:space="preserve"> <value>Bottom center</value> </data> <data name="VideoConference_ToolbarPosition_BottomRightCorner.Content" xml:space="preserve"> <value>Bottom right corner</value> </data> <data name="VideoConference_ToolbarMonitor.Header" xml:space="preserve"> <value>Show toolbar on</value> </data> <data name="VideoConference_ToolbarMonitor_Main.Content" xml:space="preserve"> <value>Main monitor</value> </data> <data name="VideoConference_ToolbarMonitor_UnderCursor.Content" xml:space="preserve"> <value>Monitor under cursor</value> </data> <data name="VideoConference_ToolbarMonitor_ActiveWindow.Content" xml:space="preserve"> <value>Active window monitor</value> </data> <data name="VideoConference_ToolbarMonitor_All.Content" xml:space="preserve"> <value>All monitors</value> </data> <data name="VideoConference_ToolbarHide.Header" xml:space="preserve"> <value>Hide toolbar</value> </data> <data name="VideoConference_ToolbarHideMuted.Content" xml:space="preserve"> <value>When both camera and microphone are muted</value> </data> <data name="VideoConference_ToolbarHideNever.Content" xml:space="preserve"> <value>Never</value> </data> <data name="VideoConference_ToolbarHideUnmuted.Content" xml:space="preserve"> <value>When both camera and microphone are unmuted</value> </data> <data name="VideoConference_ToolbarHideTimeout.Content" xml:space="preserve"> <value>After timeout</value> </data> <data name="VideoConference.ModuleTitle" xml:space="preserve"> <value>Video Conference Mute</value> </data> <data name="VideoConference_Camera.Header" xml:space="preserve"> <value>Camera</value> </data> <data name="VideoConference_Camera.Description" xml:space="preserve"> <value>To use this feature, make sure to select PowerToys VideoConference Mute as your camera source in your apps.</value> </data> <data name="VideoConference_Microphone.Header" xml:space="preserve"> <value>Microphone</value> </data> <data name="VideoConference_Toolbar.Header" xml:space="preserve"> <value>Toolbar</value> </data> <data name="VideoConference_Behavior.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="VideoConference_StartupAction.Header" xml:space="preserve"> <value>Startup action</value> </data> <data name="VideoConference_StartupActionNothing.Content" xml:space="preserve"> <value>Nothing</value> </data> <data name="VideoConference_StartupActionUnmute.Content" xml:space="preserve"> <value>Unmute</value> </data> <data name="VideoConference_StartupActionMute.Content" xml:space="preserve"> <value>Mute</value> </data> <data name="VideoConference_Shortcuts.Header" xml:space="preserve"> <value>Shortcuts</value> </data> <data name="VideoConference_CameraOverlayImageAlt.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Camera overlay image preview</value> </data> <data name="VideoConference_CameraOverlayImageBrowse.Content" xml:space="preserve"> <value>Browse</value> </data> <data name="VideoConference_CameraOverlayImageClear.Content" xml:space="preserve"> <value>Clear</value> </data> <data name="Shell_General.Content" xml:space="preserve"> <value>General</value> <comment>Navigation view item name for General</comment> </data> <data name="Shell_Awake.Content" xml:space="preserve"> <value>Awake</value> <comment>Product name: Navigation view item name for Awake</comment> </data> <data name="Shell_PowerLauncher.Content" xml:space="preserve"> <value>PowerToys Run</value> <comment>Product name: Navigation view item name for PowerToys Run</comment> </data> <data name="Shell_PowerRename.Content" xml:space="preserve"> <value>PowerRename</value> <comment>Product name: Navigation view item name for PowerRename</comment> </data> <data name="Shell_ShortcutGuide.Content" xml:space="preserve"> <value>Shortcut Guide</value> <comment>Product name: Navigation view item name for Shortcut Guide</comment> </data> <data name="Shell_PowerPreview.Content" xml:space="preserve"> <value>File Explorer add-ons</value> <comment>Product name: Navigation view item name for File Explorer. Please use File Explorer as in the context of File Explorer in Windows</comment> </data> <data name="Shell_FancyZones.Content" xml:space="preserve"> <value>FancyZones</value> <comment>Product name: Navigation view item name for FancyZones</comment> </data> <data name="Shell_ImageResizer.Content" xml:space="preserve"> <value>Image Resizer</value> <comment>Product name: Navigation view item name for Image Resizer</comment> </data> <data name="Shell_ColorPicker.Content" xml:space="preserve"> <value>Color Picker</value> <comment>Product name: Navigation view item name for Color Picker</comment> </data> <data name="Shell_KeyboardManager.Content" xml:space="preserve"> <value>Keyboard Manager</value> <comment>Product name: Navigation view item name for Keyboard Manager</comment> </data> <data name="Shell_MouseWithoutBorders.Content" xml:space="preserve"> <value>Mouse Without Borders</value> <comment>Product name: Navigation view item name for Mouse Without Borders</comment> </data> <data name="Shell_MouseUtilities.Content" xml:space="preserve"> <value>Mouse utilities</value> <comment>Product name: Navigation view item name for Mouse utilities</comment> </data> <data name="Shell_NavigationMenu_Announce_Collapse" xml:space="preserve"> <value>Navigation closed</value> <comment>Accessibility announcement when the navigation pane collapses</comment> </data> <data name="Shell_NavigationMenu_Announce_Open" xml:space="preserve"> <value>Navigation opened</value> <comment>Accessibility announcement when the navigation pane opens</comment> </data> <data name="KeyboardManager_ConfigHeader.Text" xml:space="preserve"> <value>Current configuration</value> <comment>Keyboard Manager current configuration header</comment> </data> <data name="KeyboardManager.ModuleDescription" xml:space="preserve"> <value>Reconfigure your keyboard by remapping keys and shortcuts</value> <comment>Keyboard Manager page description</comment> </data> <data name="KeyboardManager_EnableToggle.Header" xml:space="preserve"> <value>Enable Keyboard Manager</value> <comment>Keyboard Manager enable toggle header. Do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="KeyboardManager_ProfileDescription.Text" xml:space="preserve"> <value>Select the profile to display the active key remap and shortcuts</value> <comment>Keyboard Manager configuration dropdown description</comment> </data> <data name="KeyboardManager_RemapKeyboardButton.Header" xml:space="preserve"> <value>Remap a key</value> <comment>Keyboard Manager remap keyboard button content</comment> </data> <data name="KeyboardManager_Keys.Header" xml:space="preserve"> <value>Keys</value> <comment>Keyboard Manager remap keyboard header</comment> </data> <data name="KeyboardManager_RemapShortcutsButton.Header" xml:space="preserve"> <value>Remap a shortcut</value> <comment>Keyboard Manager remap shortcuts button</comment> </data> <data name="KeyboardManager_Shortcuts.Header" xml:space="preserve"> <value>Shortcuts</value> <comment>Keyboard Manager remap keyboard header</comment> </data> <data name="KeyboardManager_All_Apps_Description" xml:space="preserve"> <value>All Apps</value> <comment>Should be the same as EditShortcuts_AllApps from keyboard manager editor</comment> </data> <data name="Shortcuts.Header" xml:space="preserve"> <value>Shortcuts</value> </data> <data name="Shortcut.Header" xml:space="preserve"> <value>Shortcut</value> </data> <data name="RemapKeysList.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Current Key Remappings</value> </data> <data name="RemapShortcutsList.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Current Shortcut Remappings</value> </data> <data name="KeyboardManager_RemappedKeysListItem.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Key Remapping</value> <comment>key as in keyboard key</comment> </data> <data name="KeyboardManager_RemappedShortcutsListItem.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Shortcut Remapping</value> </data> <data name="KeyboardManager_RemappedTo.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Remapped to</value> </data> <data name="KeyboardManager_ShortcutRemappedTo.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Remapped to</value> </data> <data name="KeyboardManager_TargetApp.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>For Target Application</value> <comment>What computer application would this be for</comment> </data> <data name="KeyboardManager_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Keyboard Manager</value> <comment>do not loc, product name</comment> </data> <data name="ColorPicker.ModuleDescription" xml:space="preserve"> <value>Quick and simple system-wide color picker.</value> </data> <data name="ColorPicker_EnableColorPicker.Header" xml:space="preserve"> <value>Enable Color Picker</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="ColorPicker_ChangeCursor.Content" xml:space="preserve"> <value>Change cursor when picking a color</value> </data> <data name="PowerLauncher.ModuleDescription" xml:space="preserve"> <value>A quick launcher that has additional capabilities without sacrificing performance.</value> </data> <data name="PowerLauncher_EnablePowerLauncher.Header" xml:space="preserve"> <value>Enable PowerToys Run</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="PowerLauncher_SearchResults.Header" xml:space="preserve"> <value>Search &amp; results</value> </data> <data name="PowerLauncher_SearchResultPreference.Header" xml:space="preserve"> <value>Search result preference</value> </data> <data name="PowerLauncher_UsePinyin.Header" xml:space="preserve"> <value>Use Pinyin</value> </data> <data name="PowerLauncher_UsePinyin.Description" xml:space="preserve"> <value>Experimental: Use Pinyin on the search query. May not work for every plugin.</value> </data> <data name="PowerLauncher_SearchResultPreference_MostRecentlyUsed" xml:space="preserve"> <value>Most recently used</value> </data> <data name="PowerLauncher_SearchResultPreference_AlphabeticalOrder" xml:space="preserve"> <value>Alphabetical order</value> </data> <data name="PowerLauncher_SearchResultPreference_RunningProcessesOpenApplications" xml:space="preserve"> <value>Running processes/open applications</value> </data> <data name="PowerLauncher_SearchTypePreference.Header" xml:space="preserve"> <value>Search type preference</value> </data> <data name="PowerLauncher_SearchTypePreference_ApplicationName" xml:space="preserve"> <value>Application name</value> </data> <data name="PowerLauncher_SearchTypePreference_StringInApplication" xml:space="preserve"> <value>A string that is contained in the application</value> </data> <data name="PowerLauncher_SearchTypePreference_ExecutableName" xml:space="preserve"> <value>Executable name</value> </data> <data name="PowerLauncher_MaximumNumberOfResults.Header" xml:space="preserve"> <value>Number of results shown before scrolling</value> </data> <data name="PowerLauncher_OpenPowerLauncher.Header" xml:space="preserve"> <value>Open PowerToys Run</value> </data> <data name="PowerLauncher_OpenFileLocation.Header" xml:space="preserve"> <value>Open file location</value> </data> <data name="PowerLauncher_CopyPathLocation.Header" xml:space="preserve"> <value>Copy path location</value> </data> <data name="PowerLauncher_OpenConsole.Header" xml:space="preserve"> <value>Open console</value> <comment>console refers to Windows command prompt</comment> </data> <data name="PowerLauncher_OverrideWinRKey.Content" xml:space="preserve"> <value>Override Win+R shortcut</value> </data> <data name="PowerLauncher_OverrideWinSKey.Content" xml:space="preserve"> <value>Override Win+S shortcut</value> </data> <data name="PowerLauncher_IgnoreHotkeysInFullScreen.Content" xml:space="preserve"> <value>Ignore shortcuts in fullscreen mode</value> </data> <data name="PowerLauncher_UseCentralizedKeyboardHook.Header" xml:space="preserve"> <value>Use centralized keyboard hook</value> </data> <data name="PowerLauncher_UseCentralizedKeyboardHook.Description" xml:space="preserve"> <value>Try this if there are issues with the shortcut (PowerToys Run might not get focus when triggered from an elevated window)</value> </data> <data name="PowerLauncher_ClearInputOnLaunch.Content" xml:space="preserve"> <value>Clear the previous query on launch</value> </data> <data name="PowerLauncher_TabSelectsContextButtons.Header" xml:space="preserve"> <value>Tab through context buttons</value> </data> <data name="PowerLauncher_TabSelectsContextButtons.Description" xml:space="preserve"> <value>Pressing tab will first select through the available context buttons of the current selection before moving onto the next result</value> </data> <data name="PowerLauncher_GenerateThumbnailsFromFiles.Header" xml:space="preserve"> <value>Generate thumbnails from files</value> </data> <data name="PowerLauncher_GenerateThumbnailsFromFiles.Description" xml:space="preserve"> <value>Results will try to generate thumbnails for files. Disabling this setting may increase stability and speed</value> </data> <data name="PowerLauncher_SearchQueryResultsWithDelay.Header" xml:space="preserve"> <value>Input Smoothing</value> <comment>This is about adding a delay to wait for more input before executing a search</comment> </data> <data name="PowerLauncher_SearchQueryResultsWithDelay.Description" xml:space="preserve"> <value>Wait for more input before searching. This reduces interface jumpiness and system load.</value> </data> <data name="PowerLauncher_FastSearchInputDelayMs.Header" xml:space="preserve"> <value>Immediate plugins</value> </data> <data name="PowerLauncher_FastSearchInputDelayMs.Description" xml:space="preserve"> <value>Affects the plugins that make the UI wait for their results by this amount. Recommended: 30-50 ms.</value> </data> <data name="PowerLauncher_SlowSearchInputDelayMs.Header" xml:space="preserve"> <value>Background execution plugins</value> </data> <data name="PowerLauncher_SlowSearchInputDelayMs.Description" xml:space="preserve"> <value>Affects the plugins that execute in the background by this amount. Recommended: 100-150 ms.</value> </data> <data name="PowerLauncher_SearchInputDelayMs.Header" xml:space="preserve"> <value>Fast plugin throttle (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="KeyboardManager_KeysMappingLayoutRightHeader.Text" xml:space="preserve"> <value>To:</value> <comment>Keyboard Manager mapping keys view right header</comment> </data> <data name="Appearance_GroupSettings.Text" xml:space="preserve"> <value>Appearance</value> </data> <data name="Fancyzones_ImageHyperlinkToDocs.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>FancyZones windows</value> <comment>do not loc the Product name</comment> </data> <data name="FancyZones.ModuleDescription" xml:space="preserve"> <value>Create window layouts to help make multi-tasking easy.</value> <comment>windows refers to application windows</comment> </data> <data name="FancyZones_DisplayOrWorkAreaChangeMoveWindowsCheckBoxControl.Content" xml:space="preserve"> <value>Keep windows in their zones when the screen resolution or work area changes</value> <comment>windows refers to application windows</comment> </data> <data name="FancyZones_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable FancyZones</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="FancyZones_ExcludeApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="FancyZones_ExcludeApps.Description" xml:space="preserve"> <value>Excludes an application from snapping to zones and will only react to Windows Snap - add one application name per line</value> </data> <data name="FancyZones_HighlightOpacity.Header" xml:space="preserve"> <value>Opacity (%)</value> </data> <data name="FancyZones_HotkeyEditorControl.Header" xml:space="preserve"> <value>Open layout editor</value> <comment>Shortcut to launch the FancyZones layout editor application</comment> </data> <data name="FancyZones_WindowSwitching_GroupSettings.Header" xml:space="preserve"> <value>Switch between windows in the current zone</value> </data> <data name="FancyZones_HotkeyNextTabControl.Header" xml:space="preserve"> <value>Next window</value> </data> <data name="FancyZones_HotkeyPrevTabControl.Header" xml:space="preserve"> <value>Previous window</value> </data> <data name="SettingsPage_SetShortcut.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Shortcut setting</value> </data> <data name="SettingsPage_SetShortcut_Glyph.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Information Symbol</value> </data> <data name="FancyZones_LaunchEditorButtonControl.Header" xml:space="preserve"> <value>Launch layout editor</value> <comment>launches the FancyZones layout editor application</comment> </data> <data name="FancyZones_LaunchEditorButtonControl.Description" xml:space="preserve"> <value>Set and manage your layouts</value> <comment>launches the FancyZones layout editor application</comment> </data> <data name="FancyZones_MakeDraggedWindowTransparentCheckBoxControl.Content" xml:space="preserve"> <value>Make dragged window transparent</value> </data> <data name="FancyZones_MouseDragCheckBoxControl_Header.Content" xml:space="preserve"> <value>Use a non-primary mouse button to toggle zone activation</value> </data> <data name="FancyZones_MouseMiddleClickSpanningMultipleZonesCheckBoxControl_Header.Content" xml:space="preserve"> <value>Use middle-click mouse button to toggle multiple zones spanning</value> </data> <data name="FancyZones_MoveWindowsAcrossAllMonitorsCheckBoxControl.Content" xml:space="preserve"> <value>Move windows between zones across all monitors</value> </data> <data name="FancyZones_OverrideSnapHotkeys.Header" xml:space="preserve"> <value>Override Windows Snap</value> </data> <data name="FancyZones_OverrideSnapHotkeys.Description" xml:space="preserve"> <value>This overrides the Windows Snap shortcut (Win + arrow) to move windows between zones</value> </data> <data name="FancyZones_ShiftDragCheckBoxControl_Header.Content" xml:space="preserve"> <value>Hold Shift key to activate zones while dragging a window</value> </data> <data name="FancyZones_ActivationNoShiftDrag" xml:space="preserve"> <value>Drag windows to activate zones</value> </data> <data name="FancyZones_ShowZonesOnAllMonitorsCheckBoxControl.Content" xml:space="preserve"> <value>Show zones on all monitors while dragging a window</value> </data> <data name="FancyZones_AppLastZoneMoveWindows.Content" xml:space="preserve"> <value>Move newly created windows to their last known zone</value> <comment>windows refers to application windows</comment> </data> <data name="FancyZones_OpenWindowOnActiveMonitor.Content" xml:space="preserve"> <value>Move newly created windows to the current active monitor (Experimental)</value> </data> <data name="FancyZones_UseCursorPosEditorStartupScreen.Header" xml:space="preserve"> <value>Launch editor on the display</value> </data> <data name="FancyZones_UseCursorPosEditorStartupScreen.Description" xml:space="preserve"> <value>When using multiple displays</value> </data> <data name="FancyZones_LaunchPositionMouse.Content" xml:space="preserve"> <value>Where the mouse pointer is</value> </data> <data name="FancyZones_LaunchPositionScreen.Content" xml:space="preserve"> <value>With active focus</value> </data> <data name="FancyZones_ZoneBehavior_GroupSettings.Header" xml:space="preserve"> <value>Zone behavior</value> </data> <data name="FancyZones_ZoneBehavior_GroupSettings.Description" xml:space="preserve"> <value>Manage how zones behave when using FancyZones</value> </data> <data name="FancyZones_Zones.Header" xml:space="preserve"> <value>Zones</value> </data> <data name="FancyZones_ZoneHighlightColor.Header" xml:space="preserve"> <value>Highlight color</value> </data> <data name="FancyZones_ZoneSetChangeMoveWindows.Content" xml:space="preserve"> <value>During zone layout changes, windows assigned to a zone will match new size/positions</value> </data> <data name="AttributionTitle.Text" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="General.ModuleTitle" xml:space="preserve"> <value>General</value> </data> <data name="GeneralPage_CheckForUpdates.Content" xml:space="preserve"> <value>Check for updates</value> </data> <data name="General_SettingsBackupAndRestoreLocationText.Header" xml:space="preserve"> <value>Location</value> </data> <data name="General_SettingsBackupAndRestore_ButtonBackup.Content" xml:space="preserve"> <value>Backup</value> </data> <data name="General_SettingsBackupInfo_FileNameHeader.Text" xml:space="preserve"> <value>File name:</value> </data> <data name="General_SettingsBackupAndRestore_LinkRefresh.Text" xml:space="preserve"> <value>Refresh</value> </data> <data name="General_SettingsBackupAndRestore_ButtonRestore.Content" xml:space="preserve"> <value>Restore</value> </data> <data name="General_SettingsBackupAndRestore_ButtonSelectLocation.Text" xml:space="preserve"> <value>Select folder</value> </data> <data name="GeneralPage_UpdateNow.Content" xml:space="preserve"> <value>Update now</value> </data> <data name="GeneralPage_PrivacyStatement_URL.Text" xml:space="preserve"> <value>Privacy statement</value> </data> <data name="GeneralPage_ReportAbug.Text" xml:space="preserve"> <value>Report a bug</value> <comment>Report an issue inside powertoys</comment> </data> <data name="GeneralPage_RequestAFeature_URL.Text" xml:space="preserve"> <value>Request a feature</value> <comment>Tell our team what we should build</comment> </data> <data name="GeneralPage_RestartAsAdmin_Button.Content" xml:space="preserve"> <value>Restart PowerToys as administrator</value> <comment>running PowerToys as a higher level user, account is typically referred to as an admin / administrator</comment> </data> <data name="GeneralPage_RunAtStartUp.Header" xml:space="preserve"> <value>Run at startup</value> </data> <data name="GeneralPage_RunAtStartUp.Description" xml:space="preserve"> <value>PowerToys will launch automatically</value> </data> <data name="PowerRename.ModuleDescription" xml:space="preserve"> <value>A Windows Shell extension for more advanced bulk renaming using search &amp; replace or regular expressions.</value> </data> <data name="PowerRename_ShellIntegration.Header" xml:space="preserve"> <value>Shell integration</value> <comment>This refers to directly integrating in with Windows</comment> </data> <data name="PowerRename_Toggle_Enable.Header" xml:space="preserve"> <value>Enable PowerRename</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="RadioButtons_Name_Theme.Text" xml:space="preserve"> <value>Settings theme</value> </data> <data name="PowerRename_Toggle_HideIcon.Content" xml:space="preserve"> <value>Hide icon in context menu</value> </data> <data name="PowerRename_Toggle_ContextMenu.Header" xml:space="preserve"> <value>Show PowerRename in</value> </data> <data name="PowerRename_Toggle_StandardContextMenu.Content" xml:space="preserve"> <value>Default and extended context menu</value> </data> <data name="PowerRename_Toggle_ExtendedContextMenu.Content" xml:space="preserve"> <value>Extended context menu only</value> </data> <data name="ExtendedContextMenuInfo.Title" xml:space="preserve"> <value>Press Shift + right-click on files to open the extended context menu</value> </data> <data name="PowerRename_Toggle_MaxDispListNum.Header" xml:space="preserve"> <value>Maximum number of items</value> </data> <data name="PowerRename_Toggle_RestoreFlagsOnLaunch.Header" xml:space="preserve"> <value>Show recently used strings</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_MD.Header" xml:space="preserve"> <value>Markdown</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_MD.Description" xml:space="preserve"> <value>.md, .markdown, .mdown, .mkdn, .mkd, .mdwn, .mdtxt, .mdtext</value> <comment>File extensions, should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_Monaco.Header" xml:space="preserve"> <value>Source code files (Monaco)</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_Monaco.Description" xml:space="preserve"> <value>.cpp, .py, .json, .xml, .csproj, ...</value> <comment>File extensions should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_SVG.Header" xml:space="preserve"> <value>Scalable Vector Graphics</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_SVG.Description" xml:space="preserve"> <value>.svg</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_Preview_SVG_Color_Mode.Header" xml:space="preserve"> <value>Color mode</value> </data> <data name="FileExplorerPreview_Preview_SVG_Color_Mode_Default.Content" xml:space="preserve"> <value>Windows default</value> </data> <data name="FileExplorerPreview_Preview_SVG_Color_Solid_Color.Content" xml:space="preserve"> <value>Solid color</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade.Content" xml:space="preserve"> <value>Checkered pattern</value> </data> <data name="FileExplorerPreview_Preview_SVG_Background_Color.Header" xml:space="preserve"> <value>Color</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_Mode.Header" xml:space="preserve"> <value>Checkered shade</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_1.Content" xml:space="preserve"> <value>Light</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_2.Content" xml:space="preserve"> <value>Medium</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_3.Content" xml:space="preserve"> <value>Dark</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_PDF.Header" xml:space="preserve"> <value>Portable Document Format</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_PDF.Description" xml:space="preserve"> <value>.pdf</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_SVG.Header" xml:space="preserve"> <value>Scalable Vector Graphics</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_SVG.Description" xml:space="preserve"> <value>.svg</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_STL.Header" xml:space="preserve"> <value>Stereolithography</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_STL.Description" xml:space="preserve"> <value>.stl</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_Color_Thumbnail_STL.Header" xml:space="preserve"> <value>Color</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_PDF.Header" xml:space="preserve"> <value>Portable Document Format</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_PDF.Description" xml:space="preserve"> <value>.pdf</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview.ModuleDescription" xml:space="preserve"> <value>These settings allow you to manage your Windows File Explorer custom preview handlers.</value> </data> <data name="PowerRename_AutoCompleteHeader.Header" xml:space="preserve"> <value>Auto-complete</value> </data> <data name="OpenSource_Notice.Text" xml:space="preserve"> <value>Open-source notice</value> </data> <data name="PowerRename_Toggle_AutoComplete.Header" xml:space="preserve"> <value>Enable auto-complete for the search &amp; replace fields</value> </data> <data name="FancyZones_BorderColor.Header" xml:space="preserve"> <value>Border color</value> </data> <data name="FancyZones_InActiveColor.Header" xml:space="preserve"> <value>Inactive color</value> </data> <data name="ShortcutGuide.ModuleDescription" xml:space="preserve"> <value>Shows a help overlay with Windows shortcuts.</value> </data> <data name="ShortcutGuide_PressTimeForGlobalWindowsShortcuts.Header" xml:space="preserve"> <value>Press duration before showing global Windows shortcuts (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="ShortcutGuide_ActivationMethod.Header" xml:space="preserve"> <value>Activation method</value> </data> <data name="ShortcutGuide_ActivationMethod.Description" xml:space="preserve"> <value>Use a shortcut or press the Windows key for some time to activate</value> </data> <data name="Radio_ShortcutGuide_ActivationMethod_CustomizedShortcut.Content" xml:space="preserve"> <value>Custom shortcut</value> </data> <data name="Radio_ShortcutGuide_ActivationMethod_LongPressWindowsKey.Content" xml:space="preserve"> <value>Hold down Windows key</value> </data> <data name="ShortcutGuide_PressWinKeyWarning.Title" xml:space="preserve"> <value>In some edge cases Shortcut Guide might not function correctly when using this activation method</value> </data> <data name="Appearance_Behavior.Header" xml:space="preserve"> <value>Appearance &amp; behavior</value> </data> <data name="General_SettingsBackupAndRestoreTitle.Header" xml:space="preserve"> <value>Backup &amp; restore</value> </data> <data name="General_SettingsBackupAndRestore.Header" xml:space="preserve"> <value>Backup and restore your settings</value> </data> <data name="General_SettingsBackupAndRestore.Description" xml:space="preserve"> <value>PowerToys will restart automatically if needed</value> </data> <data name="ShortcutGuide_Enable.Header" xml:space="preserve"> <value>Enable Shortcut Guide</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="ShortcutGuide_OverlayOpacity.Header" xml:space="preserve"> <value>Background opacity (%)</value> </data> <data name="ShortcutGuide_DisabledApps.Header" xml:space="preserve"> <value>Exclude apps</value> </data> <data name="ShortcutGuide_DisabledApps.Description" xml:space="preserve"> <value>Turns off Shortcut Guide when these applications have focus - add one application name per line</value> </data> <data name="ShortcutGuide_DisabledApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> <comment>Don't translate outlook.exe</comment> </data> <data name="ImageResizer_CustomSizes.Header" xml:space="preserve"> <value>Image sizes</value> </data> <data name="ImageResizer_Presets.Header" xml:space="preserve"> <value>Presets</value> </data> <data name="ImageResizer_Presets.Description" xml:space="preserve"> <value>Manage preset sizes that can be used in the editor</value> </data> <data name="ImageResizer_FilenameFormatHeader.Description" xml:space="preserve"> <value>This format is used as the filename for resized images</value> </data> <data name="ImageResizer.ModuleDescription" xml:space="preserve"> <value>Lets you resize images by right-clicking.</value> </data> <data name="ImageResizer_EnableToggle.Header" xml:space="preserve"> <value>Enable Image Resizer</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="ImagesSizesListView.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Image Size</value> </data> <data name="ImageResizer_Configurations.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Configurations</value> </data> <data name="ImageResizer_Name.Header" xml:space="preserve"> <value>Name</value> </data> <data name="ImageResizer_Fit.Header" xml:space="preserve"> <value>Fit</value> </data> <data name="ImageResizer_Width.Header" xml:space="preserve"> <value>Width</value> </data> <data name="ImageResizer_Height.Header" xml:space="preserve"> <value>Height</value> </data> <data name="ImageResizer_Size.Header" xml:space="preserve"> <value>Unit</value> </data> <data name="RemoveButton.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Remove</value> <comment>Removes a user defined setting group for Image Resizer</comment> </data> <data name="RemoveItem.Text" xml:space="preserve"> <value>Delete</value> </data> <data name="ImageResizer_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Image Resizer</value> </data> <data name="ImageResizer_AddSizeButton.Content" xml:space="preserve"> <value>Add new size</value> </data> <data name="ImageResizer_SaveSizeButton.Label" xml:space="preserve"> <value>Save sizes</value> </data> <data name="ImageResizer_Encoding.Header" xml:space="preserve"> <value>JPEG quality level (%)</value> </data> <data name="ImageResizer_PNGInterlacing.Header" xml:space="preserve"> <value>PNG interlacing</value> </data> <data name="ImageResizer_TIFFCompression.Header" xml:space="preserve"> <value>TIFF compression</value> </data> <data name="File.Header" xml:space="preserve"> <value>File</value> <comment>as in a computer file</comment> </data> <data name="Default.Content" xml:space="preserve"> <value>Default</value> </data> <data name="ImageResizer_ENCODER_TIFF_CCITT3.Content" xml:space="preserve"> <value>CCITT3</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_CCITT4.Content" xml:space="preserve"> <value>CCITT4</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_Default.Content" xml:space="preserve"> <value>Default</value> </data> <data name="ImageResizer_ENCODER_TIFF_LZW.Content" xml:space="preserve"> <value>LZW</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_None.Content" xml:space="preserve"> <value>None</value> </data> <data name="ImageResizer_ENCODER_TIFF_RLE.Content" xml:space="preserve"> <value>RLE</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_Zip.Content" xml:space="preserve"> <value>Zip</value> <comment>do not loc</comment> </data> <data name="ImageResizer_FallbackEncoder_BMP.Content" xml:space="preserve"> <value>BMP encoder</value> </data> <data name="ImageResizer_FallbackEncoder_GIF.Content" xml:space="preserve"> <value>GIF encoder</value> </data> <data name="ImageResizer_FallbackEncoder_JPEG.Content" xml:space="preserve"> <value>JPEG encoder</value> </data> <data name="ImageResizer_FallbackEncoder_PNG.Content" xml:space="preserve"> <value>PNG encoder</value> </data> <data name="ImageResizer_FallbackEncoder_TIFF.Content" xml:space="preserve"> <value>TIFF encoder</value> </data> <data name="ImageResizer_FallbackEncoder_WMPhoto.Content" xml:space="preserve"> <value>WMPhoto encoder</value> </data> <data name="ImageResizer_Sizes_Fit_Fill.Content" xml:space="preserve"> <value>Fill</value> <comment>Refers to filling an image into a certain size. It could overflow</comment> </data> <data name="ImageResizer_Sizes_Fit_Fill_ThirdPersonSingular.Text" xml:space="preserve"> <value>Fill</value> <comment>Refers to filling an image into a certain size. It could overflow</comment> </data> <data name="ImageResizer_Sizes_Fit_Fit.Content" xml:space="preserve"> <value>Fit</value> <comment>Refers to fitting an image into a certain size. It won't overflow</comment> </data> <data name="ImageResizer_Sizes_Fit_Stretch.Content" xml:space="preserve"> <value>Stretch</value> <comment>Refers to stretching an image into a certain size. Won't overflow but could distort.</comment> </data> <data name="ImageResizer_Sizes_Units_CM.Content" xml:space="preserve"> <value>Centimeters</value> </data> <data name="ImageResizer_Sizes_Units_Inches.Content" xml:space="preserve"> <value>Inches</value> </data> <data name="ImageResizer_Sizes_Units_Percent.Content" xml:space="preserve"> <value>Percent</value> </data> <data name="ImageResizer_Sizes_Units_Pixels.Content" xml:space="preserve"> <value>Pixels</value> </data> <data name="Off.Content" xml:space="preserve"> <value>Off</value> </data> <data name="On.Content" xml:space="preserve"> <value>On</value> </data> <data name="GeneralPage_ToggleSwitch_AlwaysRunElevated_Link.Content" xml:space="preserve"> <value>Learn more about administrator mode</value> </data> <data name="GeneralPage_ToggleSwitch_AutoDownloadUpdates.Header" xml:space="preserve"> <value>Download updates automatically</value> </data> <data name="GeneralPage_ToggleSwitch_AutoDownloadUpdates.Description" xml:space="preserve"> <value>Except on metered connections</value> </data> <data name="GeneralPage_ToggleSwitch_RunningAsAdminNote.Text" xml:space="preserve"> <value>Currently running as administrator</value> </data> <data name="GeneralSettings_AlwaysRunAsAdminText.Header" xml:space="preserve"> <value>Always run as administrator</value> </data> <data name="GeneralSettings_AlwaysRunAsAdminText.Description" xml:space="preserve"> <value>You need to run as administrator to use this setting</value> </data> <data name="GeneralSettings_RunningAsUserText" xml:space="preserve"> <value>Running as user</value> </data> <data name="GeneralSettings_RunningAsAdminText" xml:space="preserve"> <value>Running as administrator</value> </data> <data name="FancyZones.ModuleTitle" xml:space="preserve"> <value>FancyZones</value> </data> <data name="FileExplorerPreview.ModuleTitle" xml:space="preserve"> <value>File Explorer</value> </data> <data name="FileExplorerPreview_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>File Explorer</value> <comment>Use same translation as Windows does for File Explorer</comment> </data> <data name="ImageResizer.ModuleTitle" xml:space="preserve"> <value>Image Resizer</value> </data> <data name="KeyboardManager.ModuleTitle" xml:space="preserve"> <value>Keyboard Manager</value> </data> <data name="ColorPicker.ModuleTitle" xml:space="preserve"> <value>Color Picker</value> </data> <data name="PowerLauncher.ModuleTitle" xml:space="preserve"> <value>PowerToys Run</value> </data> <data name="PowerToys_Run_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>PowerToys Run</value> </data> <data name="PowerRename.ModuleTitle" xml:space="preserve"> <value>PowerRename</value> <comment>do not loc the product name</comment> </data> <data name="PowerRename_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>PowerRename</value> <comment>do not loc</comment> </data> <data name="ShortcutGuide.ModuleTitle" xml:space="preserve"> <value>Shortcut Guide</value> </data> <data name="Shortcut_Guide_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Shortcut Guide</value> </data> <data name="General_Repository.Text" xml:space="preserve"> <value>GitHub repository</value> </data> <data name="General_Version.Header" xml:space="preserve"> <value>Version</value> </data> <data name="General_VersionLastChecked.Text" xml:space="preserve"> <value>Last checked: </value> </data> <data name="General_SettingsBackupInfo_DateHeader.Text" xml:space="preserve"> <value>Created at:</value> </data> <data name="General_SettingsBackupAndRestoreStatusInfo.Header" xml:space="preserve"> <value>Backup information</value> </data> <data name="General_SettingsBackupInfo_SourceHeader.Text" xml:space="preserve"> <value>Source machine:</value> </data> <data name="General_SettingsBackupInfo_StatusHeader.Text" xml:space="preserve"> <value>Status:</value> </data> <data name="General_Version.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Version</value> </data> <data name="Admin_mode.Header" xml:space="preserve"> <value>Administrator mode</value> </data> <data name="FancyZones_RestoreSize.Content" xml:space="preserve"> <value>Restore the original size of windows when unsnapping</value> </data> <data name="ImageResizer_FallBackEncoderText.Header" xml:space="preserve"> <value>Fallback encoder</value> </data> <data name="ImageResizer_FileFormatDescription.Text" xml:space="preserve"> <value>The following parameters can be used:</value> </data> <data name="ImageResizer_FilenameFormatHeader.Header" xml:space="preserve"> <value>Filename format</value> </data> <data name="ImageResizer_FileModifiedDate.Header" xml:space="preserve"> <value>File modified timestamp</value> </data> <data name="ImageResizer_FileModifiedDate.Description" xml:space="preserve"> <value>Used as the 'modified timestamp' in the file properties</value> </data> <data name="ImageResizer_UseOriginalDate.Content" xml:space="preserve"> <value>Original file timestamp</value> </data> <data name="ImageResizer_UseResizeDate.Content" xml:space="preserve"> <value>Timestamp of resize action</value> </data> <data name="Encoding.Header" xml:space="preserve"> <value>Encoding</value> </data> <data name="KeyboardManager_RemapKeyboardButton.Description" xml:space="preserve"> <value>Remap keys to other keys or shortcuts</value> </data> <data name="KeyboardManager_RemapShortcutsButton.Description" xml:space="preserve"> <value>Remap shortcuts to other shortcuts or keys for all or specific applications</value> </data> <data name="General.ModuleDescription" xml:space="preserve"> <value>Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. Made with 💗 by Microsoft and the PowerToys community.</value> <comment>Windows refers to the OS</comment> </data> <data name="FancyZones_SpanZonesAcrossMonitors.Header" xml:space="preserve"> <value>Allow zones to span across monitors</value> </data> <data name="ImageResizer_Formatting_ActualHeight.Text" xml:space="preserve"> <value>Actual height</value> </data> <data name="ImageResizer_Formatting_ActualWidth.Text" xml:space="preserve"> <value>Actual width</value> </data> <data name="ImageResizer_Formatting_Filename.Text" xml:space="preserve"> <value>Original filename</value> </data> <data name="ImageResizer_Formatting_SelectedHeight.Text" xml:space="preserve"> <value>Selected height</value> </data> <data name="ImageResizer_Formatting_SelectedWidth.Text" xml:space="preserve"> <value>Selected width</value> </data> <data name="ImageResizer_Formatting_Sizename.Text" xml:space="preserve"> <value>Size name</value> </data> <data name="FancyZones_MoveWindowsBasedOnPositionCheckBoxControl.Content" xml:space="preserve"> <value>Move windows based on their position</value> <comment>Windows refers to application windows</comment> </data> <data name="GeneralSettings_NewVersionIsAvailable" xml:space="preserve"> <value>New update available</value> </data> <data name="GeneralSettings_VersionIsLatest" xml:space="preserve"> <value>PowerToys is up to date.</value> </data> <data name="FileExplorerPreview_IconThumbnail_GroupSettings.Header" xml:space="preserve"> <value>Thumbnail icon Preview</value> </data> <data name="FileExplorerPreview_IconThumbnail_GroupSettings.Description" xml:space="preserve"> <value>Select the file types for which thumbnail previews must be rendered.</value> </data> <data name="FileExplorerPreview_PreviewPane.Header" xml:space="preserve"> <value>Preview Pane</value> </data> <data name="FileExplorerPreview_PreviewPane.Description" xml:space="preserve"> <value>Select the file types which must be rendered in the Preview Pane. Ensure that Preview Pane is open by toggling the view with Alt + P in File Explorer.</value> <comment>Preview Pane and File Explorer are app/feature names in Windows. 'Alt + P' is a shortcut</comment> </data> <data name="FileExplorerPreview_RunAsAdminRequired.Title" xml:space="preserve"> <value>You need to run as administrator to modify these settings.</value> </data> <data name="FileExplorerPreview_RebootRequired.Title" xml:space="preserve"> <value>A reboot may be required for changes to these settings to take effect</value> </data> <data name="FileExplorerPreview_PreviewHandlerOutlookIncompatibility.Title" xml:space="preserve"> <value>Enabling the preview handlers will override other preview handlers already installed - there have been reports of incompatibility between Outlook and the PDF Preview Handler.</value> <comment>Outlook is the name of a Microsoft product</comment> </data> <data name="FileExplorerPreview_ThumbnailsMightNotAppearOnRemoteFolders.Title" xml:space="preserve"> <value>Thumbnails might not appear on paths managed by cloud storage solutions like OneDrive, since these solutions may get their thumbnails from the cloud instead of generating them locally.</value> <comment>OneDrive is the name of a Microsoft product</comment> </data> <data name="FancyZones_ExcludeApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> <comment>Don't translate outlook.exe</comment> </data> <data name="ImageResizer_FilenameFormatPlaceholder.PlaceholderText" xml:space="preserve"> <value>Example: %1 (%2)</value> </data> <data name="ImageResizer_FilenameParameters.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Filename parameters</value> </data> <data name="Radio_Theme_Dark.Content" xml:space="preserve"> <value>Dark</value> <comment>Dark refers to color, not weight</comment> </data> <data name="Radio_Theme_Light.Content" xml:space="preserve"> <value>Light</value> <comment>Light refers to color, not weight</comment> </data> <data name="Radio_Theme_Default.Content" xml:space="preserve"> <value>Windows default</value> <comment>Windows refers to the Operating system</comment> </data> <data name="Windows_Color_Settings.Content" xml:space="preserve"> <value>Windows color settings</value> <comment>Windows refers to the Operating system</comment> </data> <data name="ColorPicker_CopiedColorRepresentation.Header" xml:space="preserve"> <value>Default color format</value> </data> <data name="ColorPickerFirst.Content" xml:space="preserve"> <value>Pick a color and open editor</value> </data> <data name="EditorFirst.Content" xml:space="preserve"> <value>Open editor</value> </data> <data name="ColorPickerOnly.Content" xml:space="preserve"> <value>Only pick a color</value> </data> <data name="ColorPicker_ActivationAction.Header" xml:space="preserve"> <value>Activation behavior</value> </data> <data name="ColorFormats.Header" xml:space="preserve"> <value>Picker behavior</value> </data> <data name="ColorPicker_CopiedColorRepresentation.Description" xml:space="preserve"> <value>This format will be copied to your clipboard</value> </data> <data name="KBM_KeysCannotBeRemapped.Text" xml:space="preserve"> <value>Learn more about remapping limitations</value> <comment>This is a link that will discuss what is and is not possible for Keyboard manager to remap</comment> </data> <data name="FancyZones_Editor_GroupSettings.Header" xml:space="preserve"> <value>Editor</value> <comment>refers to the FancyZone editor</comment> </data> <data name="FancyZones_WindowBehavior_GroupSettings.Header" xml:space="preserve"> <value>Window behavior</value> </data> <data name="FancyZones_WindowBehavior_GroupSettings.Description" xml:space="preserve"> <value>Manage how windows behave when using FancyZones</value> </data> <data name="FancyZones_Windows.Header" xml:space="preserve"> <value>Windows</value> <comment>Do translate: refers to a set of application windows, not the product name</comment> </data> <data name="PowerRename_BehaviorHeader.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="PowerRename_Toggle_UseBoostLib.Header" xml:space="preserve"> <value>Use Boost library</value> <comment>Boost is a product name, should not be translated</comment> </data> <data name="PowerRename_Toggle_UseBoostLib.Description" xml:space="preserve"> <value>Provides extended features but may use different regex syntax</value> <comment>Boost is a product name, should not be translated</comment> </data> <data name="MadeWithOssLove.Text" xml:space="preserve"> <value>Made with 💗 by Microsoft and the PowerToys community.</value> </data> <data name="ColorPicker_ColorFormats.Header" xml:space="preserve"> <value>Color formats</value> </data> <data name="ColorPicker_ColorFormats.Description" xml:space="preserve"> <value>Configure the color formats (edit, delete, hide, reorder them)</value> </data> <data name="MoveUp.Text" xml:space="preserve"> <value>Move up</value> </data> <data name="MoveDown.Text" xml:space="preserve"> <value>Move down</value> </data> <data name="ColorPickerAddNewFormat.Content" xml:space="preserve"> <value>Add new format</value> </data> <data name="NewColorFormat.Header" xml:space="preserve"> <value>Format</value> </data> <data name="NewColorName.Header" xml:space="preserve"> <value>Name</value> </data> <data name="AddCustomColorFormat" xml:space="preserve"> <value>Add custom color format</value> </data> <data name="ColorFormatSave" xml:space="preserve"> <value>Save</value> </data> <data name="EditCustomColorFormat" xml:space="preserve"> <value>Edit custom color format</value> </data> <data name="ColorFormatUpdate" xml:space="preserve"> <value>Update</value> </data> <data name="CustomColorFormatDefaultName" xml:space="preserve"> <value>My Format</value> </data> <data name="ColorFormatDialog.SecondaryButtonText" xml:space="preserve"> <value>Cancel</value> </data> <data name="ColorFormatEditorHelpline1.Text" xml:space="preserve"> <value>The following parameters can be used:</value> </data> <data name="Help_red" xml:space="preserve"> <value>red</value> </data> <data name="Help_green" xml:space="preserve"> <value>green</value> </data> <data name="Help_blue" xml:space="preserve"> <value>blue</value> </data> <data name="Help_alpha" xml:space="preserve"> <value>alpha</value> </data> <data name="Help_cyan" xml:space="preserve"> <value>cyan</value> </data> <data name="Help_magenta" xml:space="preserve"> <value>magenta</value> </data> <data name="Help_yellow" xml:space="preserve"> <value>yellow</value> </data> <data name="Help_black_key" xml:space="preserve"> <value>black key</value> </data> <data name="Help_hue" xml:space="preserve"> <value>hue</value> </data> <data name="Help_hueNat" xml:space="preserve"> <value>hue (natural)</value> </data> <data name="Help_saturationI" xml:space="preserve"> <value>saturation (HSI)</value> </data> <data name="Help_saturationL" xml:space="preserve"> <value>saturation (HSL)</value> </data> <data name="Help_saturationB" xml:space="preserve"> <value>saturation (HSB)</value> </data> <data name="Help_brightness" xml:space="preserve"> <value>brightness</value> </data> <data name="Help_intensity" xml:space="preserve"> <value>intensity</value> </data> <data name="Help_lightnessNat" xml:space="preserve"> <value>lightness (nat)</value> </data> <data name="Help_lightnessCIE" xml:space="preserve"> <value>lightness (CIE)</value> </data> <data name="Help_value" xml:space="preserve"> <value>value</value> </data> <data name="Help_whiteness" xml:space="preserve"> <value>whiteness</value> </data> <data name="Help_blackness" xml:space="preserve"> <value>blackness</value> </data> <data name="Help_chromaticityA" xml:space="preserve"> <value>chromaticityA</value> </data> <data name="Help_chromaticityB" xml:space="preserve"> <value>chromaticityB</value> </data> <data name="Help_X_value" xml:space="preserve"> <value>X value</value> </data> <data name="Help_Y_value" xml:space="preserve"> <value>Y value</value> </data> <data name="Help_Z_value" xml:space="preserve"> <value>Z value</value> </data> <data name="Help_decimal_value_RGB" xml:space="preserve"> <value>decimal value (RGB)</value> </data> <data name="Help_decimal_value_BGR" xml:space="preserve"> <value>decimal value (BGR)</value> </data> <data name="Help_color_name" xml:space="preserve"> <value>color name</value> </data> <data name="ColorFormatEditorHelpline2.Text" xml:space="preserve"> <value>The red, green, blue and alpha values can be formatted to the following formats:</value> </data> <data name="Help_byte" xml:space="preserve"> <value>byte value (default)</value> </data> <data name="Help_hexL1" xml:space="preserve"> <value>hex lowercase one digit</value> </data> <data name="Help_hexU1" xml:space="preserve"> <value>hex uppercase one digit</value> </data> <data name="Help_hexL2" xml:space="preserve"> <value>hex lowercase two digits</value> </data> <data name="Help_hexU2" xml:space="preserve"> <value>hex uppercase two digits</value> </data> <data name="Help_floatWith" xml:space="preserve"> <value>float with leading zero</value> </data> <data name="Help_floatWithout" xml:space="preserve"> <value>float without leading zero</value> </data> <data name="ColorFormatEditorHelpline3.Text" xml:space="preserve"> <value>Example: %ReX means red value in hex uppercase two digits format.</value> </data> <data name="ColorPicker_ShowColorName.Header" xml:space="preserve"> <value>Show color name</value> </data> <data name="ColorPicker_ShowColorName.Description" xml:space="preserve"> <value>This will show the name of the color when picking a color</value> </data> <data name="ImageResizer_DefaultSize_Large" xml:space="preserve"> <value>Large</value> <comment>The size of the image</comment> </data> <data name="ImageResizer_DefaultSize_Medium" xml:space="preserve"> <value>Medium</value> <comment>The size of the image</comment> </data> <data name="ImageResizer_DefaultSize_Phone" xml:space="preserve"> <value>Phone</value> <comment>The size of the image referring to a Mobile Phone typical image size</comment> </data> <data name="ImageResizer_DefaultSize_Small" xml:space="preserve"> <value>Small</value> <comment>The size of the image</comment> </data> <data name="FancyZones_MoveWindowBasedOnRelativePosition_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Windows key + Up, down, left or right arrow key to move windows based on relative position</value> </data> <data name="FancyZones_MoveWindowLeftRightBasedOnZoneIndex_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Windows key + Left or right arrow keys to move windows based on zone index</value> </data> <data name="FancyZones_MoveWindowBasedOnRelativePosition_Description.Text" xml:space="preserve"> <value>Windows key +    or </value> <comment>Do not loc the icons (hex numbers)</comment> </data> <data name="FancyZones_MoveWindowLeftRightBasedOnZoneIndex_Description.Text" xml:space="preserve"> <value>Windows key +  or </value> <comment>Do not loc the icons (hex numbers)</comment> </data> <data name="FancyZones_MoveWindowBasedOnRelativePosition.Text" xml:space="preserve"> <value>Relative position</value> </data> <data name="FancyZones_MoveWindow.Header" xml:space="preserve"> <value>Move windows based on</value> </data> <data name="FancyZones_MoveWindowLeftRightBasedOnZoneIndex.Text" xml:space="preserve"> <value>Zone index</value> </data> <data name="ColorPicker_Editor.Header" xml:space="preserve"> <value>Color formats</value> </data> <data name="FancyZones_OverlappingZonesClosestCenter.Content" xml:space="preserve"> <value>Activate the zone whose center is closest to the cursor</value> </data> <data name="FancyZones_OverlappingZonesLargest.Content" xml:space="preserve"> <value>Activate the largest zone by area</value> </data> <data name="FancyZones_OverlappingZonesPositional.Content" xml:space="preserve"> <value>Split the overlapped area into multiple activation targets</value> </data> <data name="FancyZones_OverlappingZonesSmallest.Content" xml:space="preserve"> <value>Activate the smallest zone by area</value> </data> <data name="FancyZones_OverlappingZones.Header" xml:space="preserve"> <value>When multiple zones overlap</value> </data> <data name="PowerLauncher_Plugins.Header" xml:space="preserve"> <value>Plugins</value> </data> <data name="PowerLauncher_ActionKeyword.Header" xml:space="preserve"> <value>Direct activation command</value> </data> <data name="PowerLauncher_AuthoredBy.Text" xml:space="preserve"> <value>Authored by</value> <comment>example: Authored by Microsoft</comment> </data> <data name="PowerLauncher_IncludeInGlobalResultTitle.Text" xml:space="preserve"> <value>Include in global result</value> </data> <data name="PowerLauncher_IncludeInGlobalResultDescription.Text" xml:space="preserve"> <value>Show results on queries without direct activation command</value> </data> <data name="PowerLauncher_EnablePluginToggle.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Enable plugin</value> </data> <data name="PowerLauncher_EnablePluginToggle.OnContent" xml:space="preserve"> <value>On</value> </data> <data name="PowerLauncher_EnablePluginToggle.OffContent" xml:space="preserve"> <value>Off</value> </data> <data name="Run_AdditionalOptions.Text" xml:space="preserve"> <value>Additional options</value> </data> <data name="Run_NotAccessibleWarning.Title" xml:space="preserve"> <value>Please define an activation command or allow this plugin to be used in the global results.</value> </data> <data name="Run_AllPluginsDisabled.Title" xml:space="preserve"> <value>PowerToys Run can't provide any results without plugins</value> </data> <data name="Run_AllPluginsDisabled.Message" xml:space="preserve"> <value>Enable at least one plugin to get started</value> </data> <data name="Run_PluginUse.Header" xml:space="preserve"> <value>Plugins</value> </data> <data name="Run_PluginUseDescription.Text" xml:space="preserve"> <value>Include or remove plugins from the global results, change the direct activation phrase and configure additional options</value> </data> <data name="Run_PositionAppearance_GroupSettings.Header" xml:space="preserve"> <value>Position &amp; appearance</value> </data> <data name="Run_PositionHeader.Header" xml:space="preserve"> <value>Preferred monitor position</value> <comment>as in Show PowerToys Run on primary monitor</comment> </data> <data name="Run_PositionHeader.Description" xml:space="preserve"> <value>If multiple monitors are in use, PowerToys Run can be launched on the desired monitor</value> <comment>as in Show PowerToys Run on primary monitor</comment> </data> <data name="Run_Radio_Position_Cursor.Content" xml:space="preserve"> <value>Monitor with mouse cursor</value> </data> <data name="Run_Radio_Position_Focus.Content" xml:space="preserve"> <value>Monitor with focused window</value> </data> <data name="Run_Radio_Position_Primary_Monitor.Content" xml:space="preserve"> <value>Primary monitor</value> </data> <data name="Run_PluginsLoading.Text" xml:space="preserve"> <value>Plugins are loading...</value> </data> <data name="ColorPicker_ButtonDown.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Move the color down</value> </data> <data name="ColorPicker_ButtonUp.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Move the color up</value> </data> <data name="FancyZones_FlashZonesOnQuickSwitch.Content" xml:space="preserve"> <value>Flash zones when switching layout</value> </data> <data name="FancyZones_Layouts.Header" xml:space="preserve"> <value>Layouts</value> </data> <data name="FancyZones_QuickLayoutSwitch.Header" xml:space="preserve"> <value>Enable quick layout switch</value> </data> <data name="FancyZones_QuickLayoutSwitch.Description" xml:space="preserve"> <value>Layout-specific shortcuts can be configured in the editor</value> </data> <data name="FancyZones_QuickLayoutSwitch_GroupSettings.Text" xml:space="preserve"> <value>Quick layout switch</value> </data> <data name="Activation_Shortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="Activation_Shortcut.Description" xml:space="preserve"> <value>Customize the shortcut to activate this module</value> </data> <data name="Oobe_GetStarted.Text" xml:space="preserve"> <value>Let's get started!</value> </data> <data name="Oobe_PowerToysDescription.Text" xml:space="preserve"> <value>Welcome to PowerToys! These overviews will help you quickly learn the basics of all our utilities.</value> </data> <data name="Oobe_GettingStarted.Text" xml:space="preserve"> <value>Getting started</value> </data> <data name="Oobe_Launch.Text" xml:space="preserve"> <value>Launch</value> </data> <data name="Launch_ColorPicker.Content" xml:space="preserve"> <value>Launch Color Picker</value> </data> <data name="Oobe_LearnMore.Text" xml:space="preserve"> <value>Learn more about</value> </data> <data name="Oobe_ColorPicker.Description" xml:space="preserve"> <value>Color Picker is a system-wide color selection tool for Windows that enables you to pick colors from any currently running application and automatically copies it in a configurable format to your clipboard.</value> </data> <data name="Oobe_FancyZones.Description" xml:space="preserve"> <value>FancyZones is a window manager that makes it easy to create complex window layouts and quickly position windows into those layouts.</value> </data> <data name="Oobe_FileLocksmith.Description" xml:space="preserve"> <value>File Locksmith lists which processes are using the selected files or directories and allows closing those processes.</value> </data> <data name="Oobe_FileExplorer.Description" xml:space="preserve"> <value>PowerToys introduces add-ons to the Windows File Explorer that will enable files like Markdown (.md), PDF (.pdf), SVG (.svg), STL (.stl), G-code (.gcode) and developer files to be viewed in the preview pane. It introduces File Explorer thumbnail support for a number of these file types as well.</value> </data> <data name="Oobe_ImageResizer.Description" xml:space="preserve"> <value>Image Resizer is a Windows shell extension for simple bulk image-resizing.</value> </data> <data name="Oobe_KBM.Description" xml:space="preserve"> <value>Keyboard Manager allows you to customize the keyboard to be more productive by remapping keys and creating your own keyboard shortcuts.</value> </data> <data name="Oobe_MouseWithoutBorders.Description" xml:space="preserve"> <value>Mouse Without Borders enables using the mouse pointer, keyboard, clipboard and drag and drop between machines in the same local network.</value> </data> <data name="Oobe_PowerRename.Description" xml:space="preserve"> <value>PowerRename enables you to perform simple bulk renaming, searching and replacing file names.</value> </data> <data name="Oobe_Run.Description" xml:space="preserve"> <value>PowerToys Run is a quick launcher for power users that contains some additional features without sacrificing performance.</value> </data> <data name="Oobe_MeasureTool.Description" xml:space="preserve"> <value>Screen Ruler is a quick and easy way to measure pixels on your screen.</value> </data> <data name="Oobe_ShortcutGuide.Description" xml:space="preserve"> <value>Shortcut Guide presents the user with a listing of available shortcuts for the current state of the desktop.</value> </data> <data name="Oobe_VideoConference.Description" xml:space="preserve"> <value>Video Conference Mute allows users to quickly mute the microphone and turn off the camera while on a conference call with a single keystroke, regardless of what application has focus on your computer.</value> </data> <data name="Oobe_MouseUtils.Description" xml:space="preserve"> <value>A collection of utilities to enhance your mouse.</value> <comment>Mouse as in the hardware peripheral</comment> </data> <data name="Oobe_Overview.Description" xml:space="preserve"> <value>Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. Take a moment to preview the various utilities listed or view our comprehensive documentation.</value> </data> <data name="Oobe_Overview_DescriptionLinkText.Text" xml:space="preserve"> <value>Documentation on Microsoft Docs</value> </data> <data name="ReleaseNotes.Content" xml:space="preserve"> <value>Release notes</value> </data> <data name="Oobe_ColorPicker_HowToUse.Text" xml:space="preserve"> <value>to open Color Picker.</value> </data> <data name="Oobe_ColorPicker_TipsAndTricks.Text" xml:space="preserve"> <value>To select a color with more precision, **scroll the mouse wheel** to zoom in.</value> </data> <data name="Oobe_FancyZones_HowToUse.Text" xml:space="preserve"> <value>**Shift** + **drag the window** to snap a window to a zone, and release the window in the desired zone.</value> </data> <data name="Oobe_FancyZones_HowToUse_Shortcut.Text" xml:space="preserve"> <value>to open the FancyZones editor.</value> </data> <data name="Oobe_FancyZones_TipsAndTricks.Text" xml:space="preserve"> <value>Snap a window to multiple zones by holding the **Ctrl** key (while also holding **Shift**) when dragging a window.</value> </data> <data name="Oobe_FileLocksmith_HowToUse.Text" xml:space="preserve"> <value>In File Explorer, right-click one or more selected files and select **What's using this file?** from the context menu.</value> </data> <data name="Oobe_FileLocksmith_TipsAndTricks.Text" xml:space="preserve"> <value>Press the **Restart Elevated** button from the File Locksmith UI to also get information on elevated processes that might be using the files.</value> </data> <data name="Oobe_FileExplorer_HowToEnable.Text" xml:space="preserve"> <value>Select **View** which is located at the top of File Explorer, followed by **Show**, and then **Preview pane**. From there, simply click on one of the supported files in the File Explorer and observe the content on the preview pane!</value> </data> <data name="Oobe_HowToCreateMappings.Text" xml:space="preserve"> <value>How to create mappings</value> </data> <data name="Oobe_HowToEnable.Text" xml:space="preserve"> <value>How to enable</value> </data> <data name="Oobe_HowToLaunch.Text" xml:space="preserve"> <value>How to launch</value> </data> <data name="Oobe_HowToUse.Text" xml:space="preserve"> <value>How to use</value> </data> <data name="Oobe_ImageResizer_HowToLaunch.Text" xml:space="preserve"> <value>In File Explorer, right-click one or more image files and select **Resize pictures** from the context menu.</value> </data> <data name="Oobe_ImageResizer_TipsAndTricks.Text" xml:space="preserve"> <value>Want a custom size? You can add them in the PowerToys Settings!</value> </data> <data name="Oobe_KBM_HowToCreateMappings.Text" xml:space="preserve"> <value>Launch **PowerToys Settings**, navigate to the Keyboard Manager menu, and select either **Remap a key** or **Remap a shortcut**.</value> </data> <data name="Oobe_KBM_TipsAndTricks.Text" xml:space="preserve"> <value>Want to only have a shortcut work for a single application? Use the Target App field when creating the shortcut remapping.</value> </data> <data name="Oobe_MouseWithoutBorders_HowToUse.Text" xml:space="preserve"> <value>Use the Settings screen on each machine to connect to the other machines using the same key. If a connection is not working, it may be necessary to add an exception to the Windows Firewall.</value> </data> <data name="Oobe_MouseWithoutBorders_TipsAndTricks.Text" xml:space="preserve"> <value>Use the service option in Settings to install a service enabling Mouse Without Borders to function even in the lock screen.</value> </data> <data name="Oobe_PowerRename_HowToUse.Text" xml:space="preserve"> <value>In File Explorer, right-click one or more selected files and select **PowerRename** from the context menu.</value> </data> <data name="Oobe_PowerRename_TipsAndTricks.Text" xml:space="preserve"> <value>PowerRename supports searching for files using regular expressions to enable more advanced renaming functionalities.</value> </data> <data name="Oobe_Run_HowToLaunch.Text" xml:space="preserve"> <value>to open Run and just start typing.</value> </data> <data name="Oobe_Run_TipsAndTricks.Text" xml:space="preserve"> <value>PowerToys Run supports various action keys to funnel search queries for a specific subset of results. Typing `&lt;` searches for running processes only, `?` will search only for file, or `.` for installed applications! See PowerToys documentation for the complete set of 'Action Keys' available.</value> </data> <data name="Oobe_ShortcutGuide_HowToLaunch.Text" xml:space="preserve"> <value>to open Shortcut Guide, press it again to close or press **Esc**.</value> </data> <data name="Oobe_TipsAndTricks.Text" xml:space="preserve"> <value>Tips &amp; tricks</value> </data> <data name="Oobe_VideoConference_ToggleMicVid.Text" xml:space="preserve"> <value>to toggle both your microphone and video</value> </data> <data name="Oobe_VideoConference_ToggleMic.Text" xml:space="preserve"> <value>to toggle your microphone</value> </data> <data name="Oobe_VideoConference_PushToTalkMic.Text" xml:space="preserve"> <value>to toggle your microphone until key release</value> </data> <data name="Oobe_VideoConference_ToggleVid.Text" xml:space="preserve"> <value>to toggle your video</value> </data> <data name="Oobe_MeasureTool_Activation.Text" xml:space="preserve"> <value>to bring up the Screen Ruler command bar.</value> </data> <data name="Oobe_MeasureTool_HowToLaunch.Text" xml:space="preserve"> <value>The Bounds mode lets you select a specific area to measure. You can also shift-drag an area to persist in on screen. The various Spacing modes allows tracing similar pixels along horizontal and vertical axes with a customizable pixel tolerance threshold (use settings or mouse wheel to adjust it).</value> </data> <data name="Oobe_MeasureTool.Title" xml:space="preserve"> <value>Screen Ruler</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_ColorPicker.Title" xml:space="preserve"> <value>Color Picker</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_FancyZones.Title" xml:space="preserve"> <value>FancyZones</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_FileLocksmith.Title" xml:space="preserve"> <value>File Locksmith</value> </data> <data name="Oobe_ImageResizer.Title" xml:space="preserve"> <value>Image Resizer</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_KBM.Title" xml:space="preserve"> <value>Keyboard Manager</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_MouseWithoutBorders.Title" xml:space="preserve"> <value>Mouse Without Borders</value> <comment>Product name. Do not localize this string</comment> </data> <data name="Oobe_PowerRename.Title" xml:space="preserve"> <value>PowerRename</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_Run.Title" xml:space="preserve"> <value>PowerToys Run</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_ShortcutGuide.Title" xml:space="preserve"> <value>Shortcut Guide</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_VideoConference.Title" xml:space="preserve"> <value>Video Conference Mute</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_Overview.Title" xml:space="preserve"> <value>Welcome</value> </data> <data name="Oobe_WhatsNew.Text" xml:space="preserve"> <value>What's new</value> </data> <data name="Oobe_WhatsNew_LoadingError.Title" xml:space="preserve"> <value>Couldn't load the release notes.</value> </data> <data name="Oobe_WhatsNew_LoadingError.Message" xml:space="preserve"> <value>Please check your internet connection.</value> </data> <data name="Oobe_WhatsNew_ProxyAuthenticationWarning.Title" xml:space="preserve"> <value>Couldn't load the release notes.</value> </data> <data name="Oobe_WhatsNew_ProxyAuthenticationWarning.Message" xml:space="preserve"> <value>Your proxy server requires authentication.</value> </data> <data name="Oobe_WhatsNew_DetailedReleaseNotesLink.Text" xml:space="preserve"> <value>See more detailed release notes on GitHub</value> <comment>Don't loc "GitHub", it's the name of a product</comment> </data> <data name="OOBE_Settings.Content" xml:space="preserve"> <value>Open Settings</value> </data> <data name="Oobe_NavViewItem.Content" xml:space="preserve"> <value>Welcome to PowerToys</value> <comment>Don't loc "PowerToys"</comment> </data> <data name="Feedback_NavViewItem.Content" xml:space="preserve"> <value>Give feedback</value> </data> <data name="OobeWindow_Title" xml:space="preserve"> <value>Welcome to PowerToys</value> </data> <data name="OobeWindow_TitleTxt.Text" xml:space="preserve"> <value>Welcome to PowerToys</value> </data> <data name="SettingsWindow_Title" xml:space="preserve"> <value>PowerToys Settings</value> <comment>Title of the settings window when running as user</comment> </data> <data name="Awake.ModuleTitle" xml:space="preserve"> <value>Awake</value> </data> <data name="Awake.ModuleDescription" xml:space="preserve"> <value>A convenient way to keep your PC awake on-demand.</value> </data> <data name="Awake_EnableSettingsCard.Header" xml:space="preserve"> <value>Enable Awake</value> <comment>Awake is a product name, do not loc</comment> </data> <data name="Awake_NoKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep using the selected power plan</value> </data> <data name="Awake_IndefiniteKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep awake indefinitely</value> </data> <data name="Awake_TemporaryKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep awake for a time interval</value> </data> <data name="Awake_ExpirableKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep awake until expiration</value> </data> <data name="Awake_DisplaySettingsCard.Header" xml:space="preserve"> <value>Keep screen on</value> </data> <data name="Awake_DisplaySettingsCard.Description" xml:space="preserve"> <value>This setting is only available when keeping the PC awake</value> </data> <data name="Awake_ExpirationSettingsExpander.Description" xml:space="preserve"> <value>Keep custom awake state until a specific date and time</value> </data> <data name="Awake_ModeSettingsCard.Header" xml:space="preserve"> <value>Mode</value> </data> <data name="Awake_BehaviorSettingsGroup.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="Awake_IntervalHoursInput.Header" xml:space="preserve"> <value>Hours</value> </data> <data name="Awake_IntervalMinutesInput.Header" xml:space="preserve"> <value>Minutes</value> </data> <data name="Awake_ExpirationSettingsExpander_Date.Header" xml:space="preserve"> <value>End date</value> </data> <data name="Awake_ExpirationSettingsExpander_Time.Header" xml:space="preserve"> <value>End time</value> </data> <data name="Oobe_Awake.Title" xml:space="preserve"> <value>Awake</value> <comment>Module name, do not loc</comment> </data> <data name="Oobe_Awake.Description" xml:space="preserve"> <value>Awake is a Windows tool designed to keep your PC awake on-demand without having to manage its power settings. This behavior can be helpful when running time-consuming tasks while ensuring that your PC does not go to sleep or turn off its screens.</value> </data> <data name="Oobe_Awake_HowToUse.Text" xml:space="preserve"> <value>Open **PowerToys Settings** and enable Awake</value> </data> <data name="Oobe_Awake_TipsAndTricks.Text" xml:space="preserve"> <value>You can always change modes quickly by **right-clicking the Awake icon** in the system tray.</value> </data> <data name="General_FailedToDownloadTheNewVersion.Title" xml:space="preserve"> <value>An error occurred trying to install this update:</value> </data> <data name="General_InstallNow.Content" xml:space="preserve"> <value>Install now</value> </data> <data name="General_ReadMore.Text" xml:space="preserve"> <value>Read more</value> </data> <data name="General_NewVersionAvailable.Title" xml:space="preserve"> <value>An update is available:</value> </data> <data name="General_Downloading.Text" xml:space="preserve"> <value>Downloading...</value> </data> <data name="General_TryAgainToDownloadAndInstall.Content" xml:space="preserve"> <value>Try again to download and install</value> </data> <data name="General_CheckingForUpdates.Text" xml:space="preserve"> <value>Checking for updates...</value> </data> <data name="General_NewVersionReadyToInstall.Title" xml:space="preserve"> <value>An update is ready to install:</value> </data> <data name="General_UpToDate.Title" xml:space="preserve"> <value>PowerToys is up to date</value> </data> <data name="General_CantCheck.Title" xml:space="preserve"> <value>Network error. Please try again later</value> </data> <data name="General_DownloadAndInstall.Content" xml:space="preserve"> <value>Download &amp; install</value> </data> <data name="ImageResizer_Fit_Fill_ThirdPersonSingular" xml:space="preserve"> <value>Fills</value> </data> <data name="ImageResizer_Fit_Fit_ThirdPersonSingular" xml:space="preserve"> <value>Fits within</value> </data> <data name="ImageResizer_Fit_Stretch_ThirdPersonSingular" xml:space="preserve"> <value>Stretches to</value> </data> <data name="ImageResizer_Unit_Centimeter" xml:space="preserve"> <value>Centimeters</value> </data> <data name="ImageResizer_Unit_Inch" xml:space="preserve"> <value>Inches</value> </data> <data name="ImageResizer_Unit_Percent" xml:space="preserve"> <value>Percent</value> </data> <data name="ImageResizer_Unit_Pixel" xml:space="preserve"> <value>Pixels</value> </data> <data name="EditButton.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Edit</value> </data> <data name="ImageResizer_EditSize.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Edit size</value> </data> <data name="No" xml:space="preserve"> <value>No</value> <comment>Label of a cancel button</comment> </data> <data name="Delete_Dialog_Description" xml:space="preserve"> <value>Are you sure you want to delete this item?</value> </data> <data name="Yes" xml:space="preserve"> <value>Yes</value> <comment>Label of a confirmation button</comment> </data> <data name="SeeWhatsNew.Content" xml:space="preserve"> <value>See what's new</value> </data> <data name="Awake_ModeSettingsCard.Description" xml:space="preserve"> <value>Manage the state of your device when Awake is active</value> </data> <data name="ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="Enable_ColorFormat.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Enable colorformat</value> </data> <data name="More_Options_Button.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>More options</value> </data> <data name="More_Options_ButtonTooltip.Text" xml:space="preserve"> <value>More options</value> </data> <data name="To.Text" xml:space="preserve"> <value>to</value> <comment>as in: from x to y</comment> </data> <data name="LearnMore_Awake.Text" xml:space="preserve"> <value>Learn more about Awake</value> <comment>Awake is a product name, do not loc</comment> </data> <data name="LearnMore_ColorPicker.Text" xml:space="preserve"> <value>Learn more about Color Picker</value> <comment>Color Picker is a product name, do not loc</comment> </data> <data name="LearnMore_FancyZones.Text" xml:space="preserve"> <value>Learn more about FancyZones</value> <comment>FancyZones is a product name, do not loc</comment> </data> <data name="LearnMore_FileLocksmith.Text" xml:space="preserve"> <value>Learn more about File Locksmith</value> </data> <data name="LearnMore_ImageResizer.Text" xml:space="preserve"> <value>Learn more about Image Resizer</value> <comment>Image Resizer is a product name, do not loc</comment> </data> <data name="LearnMore_KBM.Text" xml:space="preserve"> <value>Learn more about Keyboard Manager</value> <comment>Keyboard Manager is a product name, do not loc</comment> </data> <data name="LearnMore_MouseUtils.Text" xml:space="preserve"> <value>Learn more about Mouse utilities</value> <comment>Mouse utilities is a product name, do not loc</comment> </data> <data name="LearnMore_PastePlain.Text" xml:space="preserve"> <value>Learn more about Paste as Plain Text</value> <comment> Paste as Plain Text is the name of the module. </comment> </data> <data name="LearnMore_MouseWithoutBorders.Text" xml:space="preserve"> <value>Learn more about Mouse Without Borders</value> <comment>Mouse Without Borders is the name of the module. </comment> </data> <data name="LearnMore_PowerPreview.Text" xml:space="preserve"> <value>Learn more about File Explorer add-ons</value> <comment>File Explorer is a product name, localize as Windows does</comment> </data> <data name="LearnMore_Peek.Text" xml:space="preserve"> <value>Learn more about Peek</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="LearnMore_PowerRename.Text" xml:space="preserve"> <value>Learn more about PowerRename</value> <comment>PowerRename is a product name, do not loc</comment> </data> <data name="LearnMore_Run.Text" xml:space="preserve"> <value>Learn more about PowerToys Run</value> <comment>PowerToys Run is a product name, do not loc</comment> </data> <data name="LearnMore_MeasureTool.Text" xml:space="preserve"> <value>Learn more about Screen Ruler</value> <comment>Screen Ruler is a product name, do not loc</comment> </data> <data name="LearnMore_ShortcutGuide.Text" xml:space="preserve"> <value>Learn more about Shortcut Guide</value> <comment>Shortcut Guide is a product name, do not loc</comment> </data> <data name="LearnMore_VCM.Text" xml:space="preserve"> <value>Learn more about Video Conference Mute</value> <comment>Video Conference Mute is a product name, do not loc</comment> </data> <data name="Oobe_FileExplorer.Title" xml:space="preserve"> <value>File Explorer add-ons</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_MouseUtils.Title" xml:space="preserve"> <value>Mouse utilities</value> <comment>Mouse as in the hardware peripheral</comment> </data> <data name="Oobe_MouseUtils_FindMyMouse.Text" xml:space="preserve"> <value>Find My Mouse</value> <comment>Mouse as in the hardware peripheral</comment> </data> <data name="Oobe_MouseUtils_FindMyMouse_Description.Text" xml:space="preserve"> <value>Focus the mouse pointer pressing the Ctrl key twice, using a custom shortcut or shaking the mouse.</value> <comment>Mouse as in the hardware peripheral. Key as in a keyboard key</comment> </data> <data name="Oobe_MouseUtils_MouseHighlighter.Text" xml:space="preserve"> <value>Mouse Highlighter</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MouseHighlighter_Description.Text" xml:space="preserve"> <value>Use a keyboard shortcut to highlight left and right mouse clicks.</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MousePointerCrosshairs.Text" xml:space="preserve"> <value>Mouse Pointer Crosshairs</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MousePointerCrosshairs_Description.Text" xml:space="preserve"> <value>Draw crosshairs centered around the mouse pointer.</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MouseJump.Text" xml:space="preserve"> <value>Mouse Jump</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MouseJump_Description.Text" xml:space="preserve"> <value>Jump the mouse pointer quickly to anywhere on your desktop.</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Launch_Run.Content" xml:space="preserve"> <value>Launch PowerToys Run</value> </data> <data name="Launch_ShortcutGuide.Content" xml:space="preserve"> <value>Launch Shortcut Guide</value> </data> <data name="ColorPicker_ColorFormat_ToggleSwitch.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Show format in editor</value> </data> <data name="GeneralPage_Documentation.Text" xml:space="preserve"> <value>Documentation</value> </data> <data name="PowerLauncher_SearchList.PlaceholderText" xml:space="preserve"> <value>Search this list</value> </data> <data name="PowerLauncher_SearchList.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Search this list</value> </data> <data name="Awake.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="ColorPicker.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="General.SecondaryLinksHeader" xml:space="preserve"> <value>Related information</value> </data> <data name="ImageResizer.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="MouseUtils.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="PowerLauncher.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="PowerRename.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="EditTooltip.Text" xml:space="preserve"> <value>Edit</value> </data> <data name="RemoveTooltip.Text" xml:space="preserve"> <value>Remove</value> </data> <data name="Activation_Shortcut_Cancel" xml:space="preserve"> <value>Cancel</value> </data> <data name="Activation_Shortcut_Description" xml:space="preserve"> <value>Press a combination of keys to change this shortcut</value> </data> <data name="Activation_Shortcut_With_Disable_Description" xml:space="preserve"> <value>Press a combination of keys to change this shortcut. Right-click to remove the key combination, thereby deactivating the shortcut.</value> </data> <data name="Activation_Shortcut_Reset" xml:space="preserve"> <value>Reset</value> </data> <data name="Activation_Shortcut_Save" xml:space="preserve"> <value>Save</value> </data> <data name="Activation_Shortcut_Title" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="InvalidShortcut.Title" xml:space="preserve"> <value>Invalid shortcut</value> </data> <data name="InvalidShortcutWarningLabel.Text" xml:space="preserve"> <value>Only shortcuts that start with **Windows key**, **Ctrl**, **Alt** or **Shift** are valid.</value> <comment>The ** sequences are used for text formatting of the key names. Don't remove them on translation.</comment> </data> <data name="FancyZones_SpanZonesAcrossMonitors.Description" xml:space="preserve"> <value>All monitors must have the same DPI scaling and will be treated as one large combined rectangle which contains all monitors</value> </data> <data name="ImageResizer_DefaultSize_NewSizePrefix" xml:space="preserve"> <value>New size</value> <comment>First part of the default name of new sizes that can be added in PT's settings ui.</comment> </data> <data name="Awake_IntervalSettingsCard.Header" xml:space="preserve"> <value>Interval before returning to the previous awakeness state</value> </data> <data name="Awake_ExpirationSettingsExpander.Header" xml:space="preserve"> <value>End date and time</value> </data> <data name="MouseUtils.ModuleTitle" xml:space="preserve"> <value>Mouse utilities</value> </data> <data name="MouseUtils.ModuleDescription" xml:space="preserve"> <value>A collection of mouse utilities.</value> </data> <data name="MouseUtils_FindMyMouse.Header" xml:space="preserve"> <value>Find My Mouse</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_FindMyMouse.Description" xml:space="preserve"> <value>Find My Mouse highlights the position of the cursor when pressing the Ctrl key twice, using a custom shortcut or when shaking the mouse.</value> <comment>"Ctrl" is a keyboard key. "Find My Mouse" is the name of the utility</comment> </data> <data name="MouseUtils_Enable_FindMyMouse.Header" xml:space="preserve"> <value>Enable Find My Mouse</value> <comment>"Find My Mouse" is the name of the utility.</comment> </data> <data name="MouseUtils_FindMyMouse_ActivationMethod.Header" xml:space="preserve"> <value>Activation method</value> </data> <data name="MouseUtils_FindMyMouse_ActivationDoubleControlPress.Content" xml:space="preserve"> <value>Press Left Control twice</value> <comment>Left control is the physical key on the keyboard.</comment> </data> <data name="MouseUtils_FindMyMouse_ActivationShakeMouse.Content" xml:space="preserve"> <value>Shake mouse</value> <comment>Mouse is the hardware peripheral.</comment> </data> <data name="MouseUtils_FindMyMouse_ExcludedApps.Description" xml:space="preserve"> <value>Prevents module activation when an excluded application is the foreground application</value> </data> <data name="MouseUtils_FindMyMouse_ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="MouseUtils_FindMyMouse_ExcludedApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> </data> <data name="MouseUtils_Prevent_Activation_On_Game_Mode.Content" xml:space="preserve"> <value>Do not activate when Game Mode is on</value> <comment>"Game mode" is the Windows feature to prevent notification when playing a game.</comment> </data> <data name="MouseUtils_FindMyMouse_BackgroundColor.Header" xml:space="preserve"> <value>Background color</value> </data> <data name="MouseUtils_FindMyMouse_SpotlightColor.Header" xml:space="preserve"> <value>Spotlight color</value> </data> <data name="MouseUtils_FindMyMouse_OverlayOpacity.Header" xml:space="preserve"> <value>Overlay opacity (%)</value> </data> <data name="MouseUtils_FindMyMouse_SpotlightRadius.Header" xml:space="preserve"> <value>Spotlight radius (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_FindMyMouse_SpotlightInitialZoom.Header" xml:space="preserve"> <value>Spotlight initial zoom</value> </data> <data name="MouseUtils_FindMyMouse_SpotlightInitialZoom.Description" xml:space="preserve"> <value>Spotlight zoom factor at animation start</value> </data> <data name="MouseUtils_FindMyMouse_AnimationDurationMs.Header" xml:space="preserve"> <value>Animation duration (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_FindMyMouse_AnimationDurationMs.Description" xml:space="preserve"> <value>Time before the spotlight appears (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_FindMyMouse_AnimationDurationMs_Disabled.Message" xml:space="preserve"> <value>Animations are disabled by OS. See Settings &gt; Accessibility &gt; Visual effects</value> </data> <data name="MouseUtils_FindMyMouse_ShakingMinimumDistance.Header" xml:space="preserve"> <value>Shake minimum distance</value> </data> <data name="MouseUtils_FindMyMouse_ShakingMinimumDistance.Description" xml:space="preserve"> <value>The minimum distance for mouse shaking activation, for adjusting sensitivity</value> </data> <data name="MouseUtils_MouseHighlighter.Header" xml:space="preserve"> <value>Mouse Highlighter</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_MouseHighlighter.Description" xml:space="preserve"> <value>Mouse Highlighter mode will highlight mouse clicks.</value> <comment>"Mouse Highlighter" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_Enable_MouseHighlighter.Header" xml:space="preserve"> <value>Enable Mouse Highlighter</value> <comment>"Find My Mouse" is the name of the utility.</comment> </data> <data name="MouseUtils_MouseHighlighter_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MouseUtils_MouseHighlighter_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to turn on or off this mode</value> <comment>"Mouse Highlighter" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_MouseHighlighter_PrimaryButtonClickColor.Header" xml:space="preserve"> <value>Primary button highlight color</value> </data> <data name="MouseUtils_MouseHighlighter_SecondaryButtonClickColor.Header" xml:space="preserve"> <value>Secondary button highlight color</value> </data> <data name="MouseUtils_MouseHighlighter_HighlightRadius.Header" xml:space="preserve"> <value>Radius (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDelayMs.Header" xml:space="preserve"> <value>Fade delay (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDelayMs.Description" xml:space="preserve"> <value>Time before the highlight begins to fade (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDurationMs.Header" xml:space="preserve"> <value>Fade duration (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDurationMs.Description" xml:space="preserve"> <value>Duration of the disappear animation (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MousePointerCrosshairs.Header" xml:space="preserve"> <value>Mouse Pointer Crosshairs</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_MousePointerCrosshairs.Description" xml:space="preserve"> <value>Mouse Pointer Crosshairs draws crosshairs centered on the mouse pointer.</value> <comment>"Mouse Pointer Crosshairs" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_Enable_MousePointerCrosshairs.Header" xml:space="preserve"> <value>Enable Mouse Pointer Crosshairs</value> <comment>"Mouse Pointer Crosshairs" is the name of the utility.</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MouseUtils_MousePointerCrosshairs_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to show/hide the crosshairs</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsColor.Header" xml:space="preserve"> <value>Crosshairs color</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsOpacity.Header" xml:space="preserve"> <value>Crosshairs opacity (%)</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsRadius.Header" xml:space="preserve"> <value>Crosshairs center radius (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsThickness.Header" xml:space="preserve"> <value>Crosshairs thickness (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsBorderColor.Header" xml:space="preserve"> <value>Crosshairs border color</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsBorderSize.Header" xml:space="preserve"> <value>Crosshairs border size (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_IsCrosshairsFixedLengthEnabled.Header" xml:space="preserve"> <value>Fix crosshairs length</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsFixedLength.Header" xml:space="preserve"> <value>Crosshairs fixed length (px)</value> <comment>px = pixels</comment> </data> <data name="FancyZones_Radio_Custom_Colors.Content" xml:space="preserve"> <value>Custom colors</value> </data> <data name="FancyZones_Radio_Default_Theme.Content" xml:space="preserve"> <value>Windows default</value> </data> <data name="ColorModeHeader.Header" xml:space="preserve"> <value>App theme</value> </data> <data name="FancyZones_Zone_Appearance.Description" xml:space="preserve"> <value>Customize the way zones look</value> </data> <data name="FancyZones_Zone_Appearance.Header" xml:space="preserve"> <value>Zone appearance</value> </data> <data name="VideoConference_DeprecationWarning.Title" xml:space="preserve"> <value>VCM is moving into legacy mode (maintenance only).</value> </data> <data name="VideoConference_DeprecationWarningButton.Content" xml:space="preserve"> <value>Learn more</value> </data> <data name="LearnMore.Content" xml:space="preserve"> <value>Learn more</value> </data> <data name="VideoConference_RunAsAdminRequired.Title" xml:space="preserve"> <value>You need to run as administrator to modify these settings.</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_GCODE.Header" xml:space="preserve"> <value>Geometric Code</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_GCODE.Description" xml:space="preserve"> <value>Only .gcode files with embedded thumbnails are supported</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_GCODE.Header" xml:space="preserve"> <value>Geometric Code</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_GCODE.Description" xml:space="preserve"> <value>Only .gcode files with embedded thumbnails are supported</value> </data> <data name="FancyZones_NumberColor.Header" xml:space="preserve"> <value>Number color</value> </data> <data name="FancyZones_ShowZoneNumberCheckBoxControl.Content" xml:space="preserve"> <value>Show zone number</value> </data> <data name="ToggleSwitch.OffContent" xml:space="preserve"> <value>Off</value> <comment>The state of a ToggleSwitch when it's off</comment> </data> <data name="ToggleSwitch.OnContent" xml:space="preserve"> <value>On</value> <comment>The state of a ToggleSwitch when it's on</comment> </data> <data name="CropAndLock.ModuleDescription" xml:space="preserve"> <value>Crop And Lock allows you to crop a current application into a smaller window or just create a thumbnail. Focus the target window and press the shortcut to start cropping.</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="CropAndLock.ModuleTitle" xml:space="preserve"> <value>Crop And Lock </value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="CropAndLock_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="CropAndLock_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="Shell_CropAndLock.Content" xml:space="preserve"> <value>Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="LearnMore_CropAndLock.Text" xml:space="preserve"> <value>Learn more about Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="CropAndLock_ReparentActivation_Shortcut.Header" xml:space="preserve"> <value>Reparent shortcut</value> </data> <data name="CropAndLock_ReparentActivation_Shortcut.Description" xml:space="preserve"> <value>Shortcut to crop an application's window into a cropped window. This is experimental and can cause issues with some applications, since the cropped window will contain the original application window.</value> </data> <data name="CropAndLock_ThumbnailActivation_Shortcut.Header" xml:space="preserve"> <value>Thumbnail shortcut</value> </data> <data name="CropAndLock_ThumbnailActivation_Shortcut.Description" xml:space="preserve"> <value>Shortcut to crop and create a thumbnail of another window. The application isn't controllable through the thumbnail but it'll have less compatibility issues. </value> </data> <data name="CropAndLock.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="Oobe_CropAndLock.Title" xml:space="preserve"> <value>Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="Oobe_CropAndLock.Description" xml:space="preserve"> <value>Crop And Lock allows you to crop a current application into a smaller window or just create a thumbnail. Focus the target window and press the shortcut to start cropping.</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="Oobe_CropAndLock_HowToUse_Thumbnail.Text" xml:space="preserve"> <value>to crop and create a thumbnail of another window. The application isn't controllable through the thumbnail but it'll have less compatibility issues.</value> </data> <data name="Oobe_CropAndLock_HowToUse_Reparent.Text" xml:space="preserve"> <value>to crop an application's window into a cropped window. This is experimental and can cause issues with some applications, since the cropped window will contain the original application window.</value> </data> <data name="AlwaysOnTop.ModuleDescription" xml:space="preserve"> <value>Always On Top is a quick and easy way to pin windows on top.</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop.ModuleTitle" xml:space="preserve"> <value>Always On Top </value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="Peek_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="AlwaysOnTop_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_ExcludedApps.Description" xml:space="preserve"> <value>Excludes an application from pinning on top</value> </data> <data name="AlwaysOnTop_ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="AlwaysOnTop_ExcludedApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> </data> <data name="AlwaysOnTop_FrameColor.Header" xml:space="preserve"> <value>Color</value> </data> <data name="AlwaysOnTop_FrameEnabled.Header" xml:space="preserve"> <value>Show a border around the pinned window</value> </data> <data name="AlwaysOnTop_FrameThickness.Header" xml:space="preserve"> <value>Thickness (px)</value> <comment>px = pixels</comment> </data> <data name="AlwaysOnTop_Behavior_GroupSettings.Header" xml:space="preserve"> <value>Appearance &amp; behavior</value> </data> <data name="Shell_AlwaysOnTop.Content" xml:space="preserve"> <value>Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_GameMode.Content" xml:space="preserve"> <value>Do not activate when Game Mode is on</value> <comment>Game Mode is a Windows feature</comment> </data> <data name="AlwaysOnTop_SoundTitle.Header" xml:space="preserve"> <value>Sound</value> </data> <data name="AlwaysOnTop_Sound.Content" xml:space="preserve"> <value>Play a sound when pinning a window</value> </data> <data name="AlwaysOnTop_Behavior.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="LearnMore_AlwaysOnTop.Text" xml:space="preserve"> <value>Learn more about Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="AlwaysOnTop_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to pin or unpin an app window</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="Oobe_AlwaysOnTop.Title" xml:space="preserve"> <value>Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="Oobe_AlwaysOnTop.Description" xml:space="preserve"> <value>Always On Top improves your multitasking workflow by pinning an application window so it's always in front - even when focus changes to another window after that.</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="Oobe_AlwaysOnTop_HowToUse.Text" xml:space="preserve"> <value>to pin or unpin the selected window so it's always on top of all other windows.</value> </data> <data name="Oobe_AlwaysOnTop_TipsAndTricks.Text" xml:space="preserve"> <value>You can tweak the visual outline of the pinned windows in PowerToys settings.</value> </data> <data name="AlwaysOnTop_FrameColor_Mode.Header" xml:space="preserve"> <value>Color mode</value> </data> <data name="AlwaysOnTop_Radio_Custom_Color.Content" xml:space="preserve"> <value>Custom color</value> </data> <data name="AlwaysOnTop_Radio_Windows_Default.Content" xml:space="preserve"> <value>Windows default</value> </data> <data name="FileExplorerPreview.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Monaco_Wrap_Text.Content" xml:space="preserve"> <value>Wrap text</value> <comment>Feature on or off</comment> </data> <data name="FancyZones_AllowPopupWindowSnap.Description" xml:space="preserve"> <value>This setting can affect all popup windows including notifications</value> </data> <data name="FancyZones_AllowPopupWindowSnap.Header" xml:space="preserve"> <value>Allow popup windows snapping</value> </data> <data name="FancyZones_AllowChildWindowSnap.Content" xml:space="preserve"> <value>Allow child windows snapping</value> </data> <data name="Shell_WhatsNew.Content" xml:space="preserve"> <value>What's new</value> </data> <data name="Shell_Peek.Content" xml:space="preserve"> <value>Peek</value> <comment>Product name: Navigation view item name for Peek</comment> </data> <data name="Peek.ModuleTitle" xml:space="preserve"> <value>Peek</value> </data> <data name="Peek.ModuleDescription" xml:space="preserve"> <value>Peek is a quick and easy way to preview files. Select a file in File Explorer and press the shortcut to open the file preview.</value> </data> <data name="Peek_EnablePeek.Header" xml:space="preserve"> <value>Enable Peek</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="Peek_BehaviorHeader.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="Peek_AlwaysRunNotElevated.Header" xml:space="preserve"> <value>Always run not elevated, even when PowerToys is elevated</value> </data> <data name="Peek_AlwaysRunNotElevated.Description" xml:space="preserve"> <value>Tries to run Peek without elevated permissions, to fix access to network shares. You need to disable and re-enable Peek for changes to this value to take effect.</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="Peek_CloseAfterLosingFocus.Header" xml:space="preserve"> <value>Automatically close the Peek window after it loses focus</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="FancyZones_DisableRoundCornersOnWindowSnap.Content" xml:space="preserve"> <value>Disable round corners when window is snapped</value> </data> <data name="PowerLauncher_SearchQueryTuningEnabled.Description" xml:space="preserve"> <value>Fine tune results ordering</value> </data> <data name="PowerLauncher_SearchQueryTuningEnabled.Header" xml:space="preserve"> <value>Results order tuning</value> </data> <data name="PowerLauncher_SearchClickedItemWeight.Description" xml:space="preserve"> <value>Use a higher number to get selected results to rise faster. The default is 5, 0 to disable.</value> </data> <data name="PowerLauncher_SearchClickedItemWeight.Header" xml:space="preserve"> <value>Selected item weight</value> </data> <data name="PowerLauncher_WaitForSlowResults.Description" xml:space="preserve"> <value>Selecting this can help preselect the top, more relevant result, but at the risk of jumpiness</value> </data> <data name="PowerLauncher_WaitForSlowResults.Header" xml:space="preserve"> <value>Wait on slower plugin results before selecting top item in results</value> </data> <data name="PowerLauncher_PluginWeightBoost.Description" xml:space="preserve"> <value>Use a higher number to have this plugin's result show higher in the global results. Default is 0.</value> </data> <data name="PowerLauncher_PluginWeightBoost.Header" xml:space="preserve"> <value>Global sort order score modifier</value> </data> <data name="AlwaysOnTop_RoundCorners.Content" xml:space="preserve"> <value>Enable round corners</value> </data> <data name="LearnMore_QuickAccent.Text" xml:space="preserve"> <value>Learn more about Quick Accent</value> <comment>Quick Accent is a product name, do not loc</comment> </data> <data name="QuickAccent_EnableQuickAccent.Header" xml:space="preserve"> <value>Enable Quick Accent</value> </data> <data name="Shell_QuickAccent.Content" xml:space="preserve"> <value>Quick Accent</value> </data> <data name="QuickAccent.ModuleDescription" xml:space="preserve"> <value>Quick Accent is an alternative way to type accented characters, useful for when a keyboard doesn't support that specific accent. Activate by holding the key for the character you want to add an accent to, then press the activation key (space, left or right arrow keys) and an overlay to select accented characters will appear!</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent.ModuleTitle" xml:space="preserve"> <value>Quick Accent</value> </data> <data name="QuickAccent.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> </data> <data name="AlwaysOnTop_ShortDescription" xml:space="preserve"> <value>Pin a window</value> </data> <data name="Awake_ShortDescription" xml:space="preserve"> <value>Keep your PC awake</value> </data> <data name="ColorPicker_ShortDescription" xml:space="preserve"> <value>Pick a color</value> </data> <data name="CropAndLock_Thumbnail" xml:space="preserve"> <value>Thumbnail</value> </data> <data name="CropAndLock_Reparent" xml:space="preserve"> <value>Reparent</value> </data> <data name="FancyZones_OpenEditor" xml:space="preserve"> <value>Open editor</value> </data> <data name="FileLocksmith_ShortDescription" xml:space="preserve"> <value>Right-click on files or directories to show running processes</value> </data> <data name="FindMyMouse_ShortDescription" xml:space="preserve"> <value>Find the mouse</value> </data> <data name="ImageResizer_ShortDescription" xml:space="preserve"> <value>Select Image Resizer in the right-click context menu</value> </data> <data name="MouseHighlighter_ShortDescription" xml:space="preserve"> <value>Highlight clicks</value> </data> <data name="MouseJump_ShortDescription" xml:space="preserve"> <value>Quickly move the mouse pointer</value> </data> <data name="MouseCrosshairs_ShortDescription" xml:space="preserve"> <value>Draw crosshairs centered on the mouse pointer</value> </data> <data name="MouseWithoutBorders_ShortDescription" xml:space="preserve"> <value>Move your cursor across multiple devices</value> </data> <data name="PastePlain_ShortDescription" xml:space="preserve"> <value>Paste clipboard content without formatting</value> </data> <data name="Peek_ShortDescription" xml:space="preserve"> <value>Quick and easy previewer</value> </data> <data name="PowerRename_ShortDescription" xml:space="preserve"> <value>Select Power Rename in right-click context menu</value> </data> <data name="Run_ShortDescription" xml:space="preserve"> <value>A quick launcher</value> </data> <data name="PowerAccent_ShortDescription" xml:space="preserve"> <value>An alternative way to type accented characters</value> </data> <data name="RegistryPreview_ShortDescription" xml:space="preserve"> <value>Visualize and edit Windows Registry files</value> </data> <data name="ScreenRuler_ShortDescription" xml:space="preserve"> <value>Measure pixels on your screen</value> </data> <data name="ShortcutGuide_ShortDescription" xml:space="preserve"> <value>Show a help overlay with Windows shortcuts</value> </data> <data name="PowerOcr_ShortDescription" xml:space="preserve"> <value>A convenient way to copy text from anywhere on screen</value> </data> <data name="Dashboard_Activation" xml:space="preserve"> <value>Activation</value> </data> <data name="DashboardKBMShowMappingsButton.Content" xml:space="preserve"> <value>Show remappings</value> </data> <data name="Oobe_QuickAccent.Description" xml:space="preserve"> <value>Quick Accent is an easy way to write letters with accents, like on a smartphone.</value> </data> <data name="Oobe_QuickAccent.Title" xml:space="preserve"> <value>Quick Accent</value> </data> <data name="Oobe_QuickAccent_HowToUse.Text" xml:space="preserve"> <value>Open **PowerToys Settings** and enable Quick Accent. While holding the key for the character you want to add an accent to, press the Activation Key and an overlay to select the accented character will appear.</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="QuickAccent_Activation_Shortcut.Header" xml:space="preserve"> <value>Activation key</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent_Activation_Shortcut.Description" xml:space="preserve"> <value>Press this key after holding down the target letter</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent_Activation_Key_Arrows.Content" xml:space="preserve"> <value>Left/Right Arrow</value> <comment>Left/Right arrow keyboard keys</comment> </data> <data name="QuickAccent_Activation_Key_Space.Content" xml:space="preserve"> <value>Space</value> <comment>Space is the space keyboard key</comment> </data> <data name="QuickAccent_Activation_Key_Either.Content" xml:space="preserve"> <value>Left, Right or Space</value> <comment>All are keys on a keyboard</comment> </data> <data name="QuickAccent_Toolbar.Header" xml:space="preserve"> <value>Toolbar</value> </data> <data name="QuickAccent_ToolbarPosition.Header" xml:space="preserve"> <value>Toolbar position</value> </data> <data name="QuickAccent_ToolbarPosition_TopCenter.Content" xml:space="preserve"> <value>Top center</value> </data> <data name="QuickAccent_ToolbarPosition_TopLeftCorner.Content" xml:space="preserve"> <value>Top left corner</value> </data> <data name="QuickAccent_ToolbarPosition_TopRightCorner.Content" xml:space="preserve"> <value>Top right corner</value> </data> <data name="QuickAccent_ToolbarPosition_BottomLeftCorner.Content" xml:space="preserve"> <value>Bottom left corner</value> </data> <data name="QuickAccent_ToolbarPosition_BottomCenter.Content" xml:space="preserve"> <value>Bottom center</value> </data> <data name="QuickAccent_ToolbarPosition_BottomRightCorner.Content" xml:space="preserve"> <value>Bottom right corner</value> </data> <data name="QuickAccent_ToolbarPosition_Center.Content" xml:space="preserve"> <value>Center</value> </data> <data name="QuickAccent_ToolbarPosition_Left.Content" xml:space="preserve"> <value>Left</value> </data> <data name="QuickAccent_ToolbarPosition_Right.Content" xml:space="preserve"> <value>Right</value> </data> <data name="QuickAccent_Behavior.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="QuickAccent_InputTimeMs.Header" xml:space="preserve"> <value>Input delay (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="QuickAccent_InputTimeMs.Description" xml:space="preserve"> <value>Hold the key down for this much time to make the accent menu appear (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="QuickAccent_ExcludedApps.Description" xml:space="preserve"> <value>Prevents module activation if a foreground application is excluded. Add one application name per line.</value> </data> <data name="QuickAccent_ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="QuickAccent_ExcludedApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: Teams.exe</value> </data> <data name="LearnMore_TextExtractor.Text" xml:space="preserve"> <value>Learn more about Text Extractor</value> </data> <data name="TextExtractor_Cancel" xml:space="preserve"> <value>cancel</value> </data> <data name="General_SettingsBackupAndRestore_NothingToBackup" xml:space="preserve"> <value>A new backup was not created because no settings have been changed since last backup.</value> </data> <data name="General_SettingsBackupAndRestore_NoBackupFound" xml:space="preserve"> <value>No backup found</value> </data> <data name="General_SettingsBackupAndRestore_FailedToParseTime" xml:space="preserve"> <value>Failed to parse time</value> </data> <data name="General_SettingsBackupAndRestore_UnknownBackupTime" xml:space="preserve"> <value>Unknown</value> </data> <data name="General_SettingsBackupAndRestore_UnknownBackupSource" xml:space="preserve"> <value>Unknown</value> </data> <data name="General_SettingsBackupAndRestore_ThisMachine" xml:space="preserve"> <value>This computer</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsMatch" xml:space="preserve"> <value>Current settings match</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsStatusAt" xml:space="preserve"> <value>at</value> <comment>E.g., Food was served 'at' noon.</comment> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsDiffer" xml:space="preserve"> <value>Current settings differ</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsNoChecked" xml:space="preserve"> <value>Checking...</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsUnknown" xml:space="preserve"> <value>Unknown</value> </data> <data name="General_SettingsBackupAndRestore_NeverRestored" xml:space="preserve"> <value>Never restored</value> </data> <data name="General_SettingsBackupAndRestore_NothingToRestore" xml:space="preserve"> <value>Nothing to restore.</value> </data> <data name="General_SettingsBackupAndRestore_NoSettingsFilesFound" xml:space="preserve"> <value>No settings files found.</value> </data> <data name="General_SettingsBackupAndRestore_BackupError" xml:space="preserve"> <value>There was an error. Try another backup location.</value> </data> <data name="General_SettingsBackupAndRestore_SettingsFormatError" xml:space="preserve"> <value>There was an error in the settings format. Please check the settings file:</value> </data> <data name="General_SettingsBackupAndRestore_BackupComplete" xml:space="preserve"> <value>Backup completed.</value> </data> <data name="General_SettingsBackupAndRestore_NoBackupSyncPath" xml:space="preserve"> <value>No backup location selected.</value> </data> <data name="General_SettingsBackupAndRestore_NoBackupsFound" xml:space="preserve"> <value>No backups found to restore.</value> </data> <data name="General_SettingsBackupAndRestore_InvalidBackupLocation" xml:space="preserve"> <value>Invalid backup location.</value> </data> <data name="TextExtractor.ModuleDescription" xml:space="preserve"> <value>Text Extractor is a convenient way to copy text from anywhere on screen</value> </data> <data name="TextExtractor.ModuleTitle" xml:space="preserve"> <value>Text Extractor</value> </data> <data name="TextExtractor_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Text Extractor</value> </data> <data name="TextExtractor_SupportedLanguages.Title" xml:space="preserve"> <value>Text Extractor can only recognize languages that have the OCR pack installed.</value> </data> <data name="TextExtractor_SupportedLanguages_Link.Content" xml:space="preserve"> <value>Learn more about supported languages</value> </data> <data name="Shell_TextExtractor.Content" xml:space="preserve"> <value>Text Extractor</value> </data> <data name="Launch_TextExtractor.Content" xml:space="preserve"> <value>Launch Text Extractor</value> </data> <data name="Oobe_TextExtractor.Title" xml:space="preserve"> <value>Text Extractor</value> </data> <data name="Oobe_TextExtractor_HowToUse.Text" xml:space="preserve"> <value>to open Text Extractor and then selecting a region to copy the text from.</value> </data> <data name="Oobe_TextExtractor_TipsAndTricks.Text" xml:space="preserve"> <value>Hold the shift key to move the selection region around.</value> </data> <data name="TextExtractor.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> </data> <data name="Oobe_TextExtractor.Description" xml:space="preserve"> <value>Text Extractor works like Snipping Tool, but copies the text out of the selected region using OCR and puts it on the clipboard.</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Monaco_Try_Format.Description" xml:space="preserve"> <value>Applies to json and xml. Files remain unchanged.</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Monaco_Try_Format.Header" xml:space="preserve"> <value>Try to format the source for preview</value> </data> <data name="Run_ConflictingKeywordInfo.Title" xml:space="preserve"> <value>Some characters and phrases may conflict with global queries of other plugins if you use them as activation command.</value> </data> <data name="Run_ConflictingKeywordInfo_Link.Content" xml:space="preserve"> <value>Learn more about conflicting activation commands</value> </data> <data name="MeasureTool_ContinuousCapture_Information.Title" xml:space="preserve"> <value>The continuous capture mode will consume more resources when in use. Also, measurements will be excluded from screenshots and screen capture.</value> <comment>pointer as in mouse pointer. Resources refer to things like CPU, GPU, RAM</comment> </data> <data name="QuickAccent_Description_Indicator.Header" xml:space="preserve"> <value>Show the Unicode code and name of the currently selected character</value> </data> <data name="QuickAccent_SortByUsageFrequency_Indicator.Header" xml:space="preserve"> <value>Sort characters by usage frequency</value> </data> <data name="QuickAccent_SortByUsageFrequency_Indicator.Description" xml:space="preserve"> <value>Track characters usage frequency and sort them accordingly</value> </data> <data name="QuickAccent_StartSelectionFromTheLeft_Indicator.Header" xml:space="preserve"> <value>Start selection from the left</value> </data> <data name="QuickAccent_StartSelectionFromTheLeft_Indicator.Description" xml:space="preserve"> <value>Start selection from the leftmost character for all activation keys, including left and right arrows</value> </data> <data name="QuickAccent_DisableFullscreen.Header" xml:space="preserve"> <value>Disable when Game Mode is On</value> </data> <data name="QuickAccent_Language.Header" xml:space="preserve"> <value>Characters</value> </data> <data name="QuickAccent_SelectedLanguage.Header" xml:space="preserve"> <value>Choose a character set</value> </data> <data name="QuickAccent_SelectedLanguage.Description" xml:space="preserve"> <value>Show only accented characters common to the selected set</value> </data> <data name="QuickAccent_SelectedLanguage_All.Content" xml:space="preserve"> <value>All available</value> </data> <data name="QuickAccent_SelectedLanguage_Catalan.Content" xml:space="preserve"> <value>Catalan</value> </data> <data name="QuickAccent_SelectedLanguage_Currency.Content" xml:space="preserve"> <value>Currency</value> </data> <data name="QuickAccent_SelectedLanguage_Croatian.Content" xml:space="preserve"> <value>Croatian</value> </data> <data name="QuickAccent_SelectedLanguage_Czech.Content" xml:space="preserve"> <value>Czech</value> </data> <data name="QuickAccent_SelectedLanguage_Gaeilge.Content" xml:space="preserve"> <value>Gaeilge</value> <comment>Gaelic language spoken in Ireland</comment> </data> <data name="QuickAccent_SelectedLanguage_Gaidhlig.Content" xml:space="preserve"> <value>Gàidhlig</value> <comment>Scottish Gaelic</comment> </data> <data name="QuickAccent_SelectedLanguage_German.Content" xml:space="preserve"> <value>German</value> </data> <data name="QuickAccent_SelectedLanguage_Hebrew.Content" xml:space="preserve"> <value>Hebrew</value> </data> <data name="QuickAccent_SelectedLanguage_French.Content" xml:space="preserve"> <value>French</value> </data> <data name="QuickAccent_SelectedLanguage_Estonian.Content" xml:space="preserve"> <value>Estonian</value> </data> <data name="QuickAccent_SelectedLanguage_Lithuanian.Content" xml:space="preserve"> <value>Lithuanian</value> </data> <data name="QuickAccent_SelectedLanguage_Macedonian.Content" xml:space="preserve"> <value>Macedonian</value> </data> <data name="QuickAccent_SelectedLanguage_Maori.Content" xml:space="preserve"> <value>Maori</value> </data> <data name="QuickAccent_SelectedLanguage_Dutch.Content" xml:space="preserve"> <value>Dutch</value> </data> <data name="QuickAccent_SelectedLanguage_Norwegian.Content" xml:space="preserve"> <value>Norwegian</value> </data> <data name="QuickAccent_SelectedLanguage_Pinyin.Content" xml:space="preserve"> <value>Pinyin</value> </data> <data name="QuickAccent_SelectedLanguage_Polish.Content" xml:space="preserve"> <value>Polish</value> </data> <data name="QuickAccent_SelectedLanguage_Portuguese.Content" xml:space="preserve"> <value>Portuguese</value> </data> <data name="QuickAccent_SelectedLanguage_Slovakian.Content" xml:space="preserve"> <value>Slovakian</value> </data> <data name="QuickAccent_SelectedLanguage_Spanish.Content" xml:space="preserve"> <value>Spanish</value> </data> <data name="QuickAccent_SelectedLanguage_Swedish.Content" xml:space="preserve"> <value>Swedish</value> </data> <data name="QuickAccent_SelectedLanguage_Turkish.Content" xml:space="preserve"> <value>Turkish</value> </data> <data name="QuickAccent_SelectedLanguage_Icelandic.Content" xml:space="preserve"> <value>Icelandic</value> </data> <data name="QuickAccent_SelectedLanguage_Romanian.Content" xml:space="preserve"> <value>Romanian</value> </data> <data name="QuickAccent_SelectedLanguage_Serbian.Content" xml:space="preserve"> <value>Serbian</value> </data> <data name="QuickAccent_SelectedLanguage_Hungarian.Content" xml:space="preserve"> <value>Hungarian</value> </data> <data name="QuickAccent_SelectedLanguage_Italian.Content" xml:space="preserve"> <value>Italian</value> </data> <data name="QuickAccent_SelectedLanguage_Kurdish.Content" xml:space="preserve"> <value>Kurdish</value> </data> <data name="QuickAccent_SelectedLanguage_Welsh.Content" xml:space="preserve"> <value>Welsh</value> </data> <data name="Hosts.ModuleDescription" xml:space="preserve"> <value>Quick and simple utility for managing hosts file.</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Hosts.ModuleTitle" xml:space="preserve"> <value>Hosts File Editor</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Shell_Hosts.Content" xml:space="preserve"> <value>Hosts File Editor</value> <comment>Products name: Navigation view item name for Hosts File Editor</comment> </data> <data name="Hosts_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Hosts_Toggle_ShowStartupWarning.Header" xml:space="preserve"> <value>Show a warning at startup</value> </data> <data name="Hosts_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="Hosts_LaunchButtonControl.Description" xml:space="preserve"> <value>Manage your hosts file</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Hosts_LaunchButtonControl.Header" xml:space="preserve"> <value>Launch Host File Editor</value> <comment>"Host File Editor" is a product name</comment> </data> <data name="Hosts_LaunchButton_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Launch Host File Editor</value> <comment>"Host File Editor" is a product name</comment> </data> <data name="Hosts_AdditionalLinesPosition.Header" xml:space="preserve"> <value>Position of additional content</value> </data> <data name="Hosts_AdditionalLinesPosition_Bottom.Content" xml:space="preserve"> <value>Bottom</value> </data> <data name="Hosts_AdditionalLinesPosition_Top.Content" xml:space="preserve"> <value>Top</value> </data> <data name="Hosts_Behavior_GroupSettings.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="Launch_Hosts.Content" xml:space="preserve"> <value>Launch Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="LearnMore_Hosts.Text" xml:space="preserve"> <value>Learn more about Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Oobe_Hosts.Description" xml:space="preserve"> <value>Hosts File Editor is a quick and simple utility for managing hosts file.</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Oobe_Hosts.Title" xml:space="preserve"> <value>Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Hosts_Toggle_LaunchAdministrator.Description" xml:space="preserve"> <value>Needs to be launched as administrator in order to make changes to the hosts file</value> </data> <data name="Hosts_Toggle_LaunchAdministrator.Header" xml:space="preserve"> <value>Launch as administrator</value> </data> <data name="ShortcutGuide_PressTimeForTaskbarIconShortcuts.Header" xml:space="preserve"> <value>Press duration before showing taskbar icon shortcuts (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="FileLocksmith.ModuleDescription" xml:space="preserve"> <value>A Windows shell extension to find out which processes are using the selected files and directories.</value> </data> <data name="FileLocksmith.ModuleTitle" xml:space="preserve"> <value>File Locksmith</value> </data> <data name="Shell_FileLocksmith.Content" xml:space="preserve"> <value>File Locksmith</value> <comment>Product name: Navigation view item name for FileLocksmith</comment> </data> <data name="FileLocksmith_Enable_FileLocksmith.Header" xml:space="preserve"> <value>Enable File Locksmith</value> <comment>File Locksmith is the name of the utility</comment> </data> <data name="FileLocksmith_Toggle_StandardContextMenu.Content" xml:space="preserve"> <value>Default and extended context menu</value> </data> <data name="FileLocksmith_Toggle_ExtendedContextMenu.Content" xml:space="preserve"> <value>Extended context menu only</value> </data> <data name="FileLocksmith_Toggle_ContextMenu.Header" xml:space="preserve"> <value>Show File Locksmith in</value> </data> <data name="FileLocksmith_ShellIntegration.Header" xml:space="preserve"> <value>Shell integration</value> <comment>This refers to directly integrating in with Windows</comment> </data> <data name="GPO_IsSettingForced.Title" xml:space="preserve"> <value>This setting is enforced by your System Administrator.</value> </data> <data name="Hosts_AdditionalLinesPosition.Description" xml:space="preserve"> <value>Additional content includes the file header and lines that can't parse</value> </data> <data name="TextExtractor_Languages.Header" xml:space="preserve"> <value>Preferred language</value> </data> <data name="Alternate_OOBE_AlwaysOnTop_Description.Text" xml:space="preserve"> <value>Pin a window so that:</value> </data> <data name="Alternate_OOBE_AlwaysOnTop_Title.Text" xml:space="preserve"> <value>Always On Top</value> </data> <data name="Alternate_OOBE_ColorPicker_Description.Text" xml:space="preserve"> <value>To pick a color:</value> </data> <data name="Alternate_OOBE_ColorPicker_Title.Text" xml:space="preserve"> <value>Color Picker</value> </data> <data name="Alternate_OOBE_Description.Text" xml:space="preserve"> <value>Here are a few shortcuts to get you started:</value> </data> <data name="Alternate_OOBE_FancyZones_Description.Text" xml:space="preserve"> <value>To open the FancyZones editor, press:</value> </data> <data name="Alternate_OOBE_FancyZones_Title.Text" xml:space="preserve"> <value>FancyZones</value> </data> <data name="Alternate_OOBE_Run_Description.Text" xml:space="preserve"> <value>Get access to your files and more:</value> </data> <data name="Alternate_OOBE_Run_Title.Text" xml:space="preserve"> <value>PowerToys Run</value> </data> <data name="General_Experimentation.Header" xml:space="preserve"> <value>Experimentation</value> </data> <data name="GeneralPage_EnableExperimentation.Description" xml:space="preserve"> <value>Note: Only Windows Insider builds may be selected for experimentation</value> </data> <data name="GeneralPage_EnableExperimentation.Header" xml:space="preserve"> <value>Allow experimentation with new features</value> </data> <data name="GPO_ExperimentationIsDisallowed.Title" xml:space="preserve"> <value>The system administrator has disabled experimentation.</value> </data> <data name="Shell_PastePlain.Content" xml:space="preserve"> <value>Paste As Plain Text</value> <comment>Product name: Navigation view item name for Paste as Plain Text</comment> </data> <data name="PastePlain.ModuleDescription" xml:space="preserve"> <value>Paste As Plain Text is a quick shortcut for pasting the text contents of your clipboard without formatting. Note: the formatted text in the clipboard is replaced with the unformatted text.</value> </data> <data name="PastePlain.ModuleTitle" xml:space="preserve"> <value>Paste As Plain Text</value> </data> <data name="PastePlain_Cancel" xml:space="preserve"> <value>cancel</value> </data> <data name="PastePlain_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Paste As Plain Text</value> </data> <data name="Oobe_PastePlain.Description" xml:space="preserve"> <value>Paste As Plain Text strips rich formatting from your clipboard data and pastes it as non-formatted text.</value> </data> <data name="Oobe_PastePlain.Title" xml:space="preserve"> <value>Paste As Plain Text</value> </data> <data name="Oobe_PastePlain_HowToUse.Text" xml:space="preserve"> <value>to paste your clipboard data as plain text. Note: this will replace the formatted text in your clipboard with the plain text.</value> </data> <data name="AllAppsTxt.Text" xml:space="preserve"> <value>All apps</value> </data> <data name="BackBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Back</value> </data> <data name="BackLabel.Text" xml:space="preserve"> <value>Back</value> </data> <data name="BugReportBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Bug report</value> </data> <data name="BugReportTooltip.Text" xml:space="preserve"> <value>Bug report</value> </data> <data name="DocsBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Documentation</value> </data> <data name="DocsTooltip.Text" xml:space="preserve"> <value>Documentation</value> </data> <data name="FZEditorString" xml:space="preserve"> <value>FancyZones Editor</value> <comment>Do not localize this string</comment> </data> <data name="MoreBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>More</value> </data> <data name="MoreLabel.Text" xml:space="preserve"> <value>More</value> </data> <data name="SettingsBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Settings</value> </data> <data name="SettingsTooltip.Text" xml:space="preserve"> <value>Settings</value> </data> <data name="ShortcutsTxt.Text" xml:space="preserve"> <value>Shortcuts</value> </data> <data name="UpdateAvailable.Title" xml:space="preserve"> <value>Update available</value> </data> <data name="FileExplorerPreview_Toggle_Monaco_Max_File_Size.Header" xml:space="preserve"> <value>Maximum file size to preview</value> <comment>Size refers to the disk space used by a file</comment> </data> <data name="FileExplorerPreview_Toggle_Monaco_Max_File_Size.Description" xml:space="preserve"> <value>The maximum size, in kilobytes, for files to be displayed. This is a safety mechanism to prevent loading large files into RAM.</value> <comment>"RAM" refers to random access memory; "size" refers to disk space; "bytes" refer to the measurement unit</comment> </data> <data name="RegistryPreview.ModuleDescription" xml:space="preserve"> <value>A quick little utility to visualize and edit complex Windows Registry files.</value> </data> <data name="RegistryPreview.ModuleTitle" xml:space="preserve"> <value>Registry Preview</value> </data> <data name="Shell_RegistryPreview.Content" xml:space="preserve"> <value>Registry Preview</value> <comment>Product name: Navigation view item name for Registry Preview</comment> </data> <data name="RegistryPreview_Enable_RegistryPreview.Header" xml:space="preserve"> <value>Enable Registry Preview</value> <comment>Registry Preview is the name of the utility</comment> </data> <data name="Oobe_RegistryPreview_HowToUse.Text" xml:space="preserve"> <value>In File Explorer, right-click a .REG file and select **Preview** from the context menu.</value> </data> <data name="Oobe_RegistryPreview_TipsAndTricks.Text" xml:space="preserve"> <value>You can preview or edit Registry files in File Explorer or by opening the app from the PowerToys launcher.</value> </data> <data name="Oobe_RegistryPreview.Description" xml:space="preserve"> <value>Registry Preview is a quick little utility to visualize and edit complex Windows Registry files.</value> </data> <data name="Oobe_RegistryPreview.Title" xml:space="preserve"> <value>Registry Preview</value> <comment>Do not localize this string</comment> </data> <data name="LearnMore_RegistryPreview.Text" xml:space="preserve"> <value>Learn more about Registry Preview</value> <comment>Registry Preview is a product name, do not loc</comment> </data> <data name="Launch_RegistryPreview.Content" xml:space="preserve"> <value>Launch Registry Preview</value> <comment>"Registry Preview" is the name of the utility</comment> </data> <data name="MouseUtils_MouseJump.Description" xml:space="preserve"> <value>Quickly move the mouse pointer long distances.</value> <comment>"Mouse Jump" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_MouseJump.Header" xml:space="preserve"> <value>Mouse Jump</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_MouseJump_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to turn on or off this mode</value> </data> <data name="MouseUtils_MouseJump_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MouseUtils_Enable_MouseJump.Header" xml:space="preserve"> <value>Enable Mouse Jump</value> <comment>"Mouse Jump" is the name of the utility.</comment> </data> <data name="GPO_AutoDownloadUpdatesIsDisabled.Title" xml:space="preserve"> <value>The system administrator has disabled the automatic download of updates.</value> </data> <data name="Hosts_Toggle_LoopbackDuplicates.Description" xml:space="preserve"> <value>127.0.0.1, ::1, ...</value> <comment>"127.0.0.1 and ::1" are well known loopback addresses, do not loc</comment> </data> <data name="Hosts_Toggle_LoopbackDuplicates.Header" xml:space="preserve"> <value>Consider loopback addresses as duplicates</value> </data> <data name="RegistryPreview_Launch_GroupSettings.Header" xml:space="preserve"> <value>Launch</value> </data> <data name="RegistryPreview_LaunchButton_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Launch Registry Preview</value> </data> <data name="RegistryPreview_LaunchButtonControl.Header" xml:space="preserve"> <value>Launch Registry Preview</value> </data> <data name="RegistryPreview_DefaultRegApp.Header" xml:space="preserve"> <value>Default app</value> </data> <data name="RegistryPreview_DefaultRegApp.Description" xml:space="preserve"> <value>Make Registry Preview default app for opening .reg files</value> <comment>Registry Preview is app name. Do not localize.</comment> </data> <data name="PastePlain_ShortcutWarning.Title" xml:space="preserve"> <value>Using this shortcut may prevent non-text paste actions (e.g. images, files) or built-in paste plain text actions in other applications from functioning.</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize.Header" xml:space="preserve"> <value>Thumbnail Size</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Description_Prefix.Text" xml:space="preserve"> <value>Constrain thumbnail image size to a maximum of</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Description_Suffix.Text" xml:space="preserve"> <value>pixels</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Edit_Height.Header" xml:space="preserve"> <value>Maximum height (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Edit_Width.Header" xml:space="preserve"> <value>Maximum width (px)</value> <comment>px = pixels</comment> </data> <data name="Oobe_Peek.Description" xml:space="preserve"> <value>A lightning fast file preview feature for Windows.</value> </data> <data name="Oobe_Peek.Title" xml:space="preserve"> <value>Peek</value> </data> <data name="Oobe_Peek_HowToUse.Text" xml:space="preserve"> <value>to preview the file that's currently selected in File Explorer.</value> </data> <data name="MWB_PCNameLabel.PlaceholderText" xml:space="preserve"> <value>Device name</value> </data> <data name="MWB_SecurityKeyLabel.PlaceholderText" xml:space="preserve"> <value>Security key</value> </data> <data name="Hosts_Encoding.Description" xml:space="preserve"> <value>Choose the encoding of the hosts file</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Hosts_Encoding.Header" xml:space="preserve"> <value>Encoding</value> </data> <data name="Hosts_Encoding_Utf8.Content" xml:space="preserve"> <value>UTF-8</value> </data> <data name="Hosts_Encoding_Utf8Bom.Content" xml:space="preserve"> <value>UTF-8 with BOM</value> </data> <data name="MouseUtils_MouseHighlighter_AlwaysColor.Header" xml:space="preserve"> <value>Always highlight color</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsAutoHide.Content" xml:space="preserve"> <value>Automatically hide crosshairs when the mouse pointer is hidden</value> </data> <data name="MouseUtils_AutoActivate.Content" xml:space="preserve"> <value>Automatically activate on utility startup</value> </data> <data name="Run_FindMorePlugins.Text" xml:space="preserve"> <value>Find more plugins</value> </data> <data name="Run_PluginUseFindMorePlugins.Content" xml:space="preserve"> <value>Find more plugins</value> </data> <data name="Run_SomePluginsAreGpoManaged.Title" xml:space="preserve"> <value>The system administrator is managing the enabled state of some plugins.</value> </data> <data name="AlwaysOnTop_FrameOpacity.Header" xml:space="preserve"> <value>Opacity (%)</value> </data> <data name="MouseUtils_FindMyMouse_ActivationCustomizedShortcut.Content" xml:space="preserve"> <value>Custom shortcut</value> </data> <data name="MouseUtils_FindMyMouse_ActivationDoubleRightControlPress.Content" xml:space="preserve"> <value>Press Right Control twice</value> <comment>Right control is the physical key on the keyboard.</comment> </data> <data name="MouseUtils_FindMyMouse_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to turn on or off this mode</value> </data> <data name="MouseUtils_FindMyMouse_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="SettingsWindow_AdminTitle" xml:space="preserve"> <value>Administrator: PowerToys Settings</value> <comment>Title of the settings window when running as administrator</comment> </data> <data name="DashboardTitle.Text" xml:space="preserve"> <value>Dashboard</value> </data> <data name="Shell_Dashboard.Content" xml:space="preserve"> <value>Dashboard</value> </data> <data name="GPO_IsSettingForcedText.Text" xml:space="preserve"> <value>This setting is enforced by your System Administrator.</value> </data> <data name="DisabledModules.Text" xml:space="preserve"> <value>Disabled modules</value> </data> <data name="EnabledModules.Text" xml:space="preserve"> <value>Enabled modules</value> </data> </root>
donlaci
8c22f0c48540793452b70d913b2a6a719c881a33
1f936df3ebce73b726ed11c9fa38fd477b4b0fbd
> Don't use to mean opening an app or form. Use _open_ instead. https://learn.microsoft.com/en-us/style-guide/a-z-word-list-term-collections/l/launch
Jay-o-Way
356
microsoft/PowerToys
29,023
[Settings] Adding a Dashboard Panel
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request Adding a new Dashboard panel to the settings app. It contains the active modules with a brief description, activation shortcut if present, launch button if reasonable and a quick link button to the module's settings page. The new dashboard panel contains a list of all the modules as well, where the user can toggle the modules' enabled/disabled state. ![Dashboard](https://github.com/microsoft/PowerToys/assets/9866362/a773ff5b-0321-4eb3-9c3d-b5b4df9a25f5) <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [X] **Closes:** #26816 - [ ] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected - [ ] **Tests:** Added/updated and all pass - [ ] **Localization:** All end user facing strings can be localized - [ ] **Dev docs:** Added/updated - [ ] **New binaries:** Added on the required places - [ ] [JSON for signing](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ESRPSigning_core.json) for new binaries - [ ] [WXS for installer](https://github.com/microsoft/PowerToys/blob/main/installer/PowerToysSetup/Product.wxs) for new binaries and localization folder - [ ] [YML for CI pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ci/templates/build-powertoys-steps.yml) for new test projects - [ ] [YML for signed pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/release.yml) - [ ] **Documentation updated:** If checked, please file a pull request on [our docs repo](https://github.com/MicrosoftDocs/windows-uwp/tree/docs/hub/powertoys) and link it here: #xxx <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed Tested locally
null
2023-10-04 18:35:54+00:00
2023-10-20 12:23:25+00:00
src/settings-ui/Settings.UI/Strings/en-us/Resources.resw
<?xml version="1.0" encoding="utf-8"?> <root> <!-- Microsoft ResX Schema Version 2.0 The primary goals of this format is to allow a simple XML format that is mostly human readable. The generation and parsing of the various data types are done through the TypeConverter classes associated with the data types. Example: ... ado.net/XML headers & schema ... <resheader name="resmimetype">text/microsoft-resx</resheader> <resheader name="version">2.0</resheader> <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader> <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader> <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data> <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data> <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64"> <value>[base64 mime encoded serialized .NET Framework object]</value> </data> <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value> <comment>This is a comment</comment> </data> There are any number of "resheader" rows that contain simple name/value pairs. Each data row contains a name, and value. The row also contains a type or mimetype. Type corresponds to a .NET class that support text/value conversion through the TypeConverter architecture. Classes that don't support this are serialized and stored with the mimetype set. The mimetype is used for serialized objects, and tells the ResXResourceReader how to depersist the object. This is currently not extensible. For a given mimetype the value must be set accordingly: Note - application/x-microsoft.net.object.binary.base64 is the format that the ResXResourceWriter will generate, however the reader can read any of the formats listed below. mimetype: application/x-microsoft.net.object.binary.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.soap.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Soap.SoapFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.bytearray.base64 value : The object must be serialized into a byte array : using a System.ComponentModel.TypeConverter : and then encoded with base64 encoding. --> <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> <xsd:import namespace="http://www.w3.org/XML/1998/namespace" /> <xsd:element name="root" msdata:IsDataSet="true"> <xsd:complexType> <xsd:choice maxOccurs="unbounded"> <xsd:element name="metadata"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" /> </xsd:sequence> <xsd:attribute name="name" use="required" type="xsd:string" /> <xsd:attribute name="type" type="xsd:string" /> <xsd:attribute name="mimetype" type="xsd:string" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="assembly"> <xsd:complexType> <xsd:attribute name="alias" type="xsd:string" /> <xsd:attribute name="name" type="xsd:string" /> </xsd:complexType> </xsd:element> <xsd:element name="data"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" /> <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="resheader"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" /> </xsd:complexType> </xsd:element> </xsd:choice> </xsd:complexType> </xsd:element> </xsd:schema> <resheader name="resmimetype"> <value>text/microsoft-resx</value> </resheader> <resheader name="version"> <value>2.0</value> </resheader> <resheader name="reader"> <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <resheader name="writer"> <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <data name="Attribution_Rooler.Text" xml:space="preserve"> <value>Inspired by Rooler</value> <comment>Rooler is a name of the tool.</comment> </data> <data name="Shell_VideoConference.Content" xml:space="preserve"> <value>Video Conference Mute</value> <comment>Navigation view item name for Video Conference</comment> </data> <data name="Shell_MeasureTool.Content" xml:space="preserve"> <value>Screen Ruler</value> <comment>Product name: Navigation view item name for Screen Ruler</comment> </data> <data name="MeasureTool.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="MeasureTool.ModuleDescription" xml:space="preserve"> <value>Screen Ruler is a quick and easy way to measure pixels on your screen.</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool.ModuleTitle" xml:space="preserve"> <value>Screen Ruler</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool_ActivationSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="MeasureTool_Settings.Header" xml:space="preserve"> <value>Behavior</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MeasureTool_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to bring up the command bar</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool_DefaultMeasureStyle.Header" xml:space="preserve"> <value>Default measure style</value> </data> <data name="MeasureTool_DefaultMeasureStyle.Description" xml:space="preserve"> <value>The utility will start having the selected style activated</value> </data> <data name="MeasureTool_DefaultMeasureStyle_None.Content" xml:space="preserve"> <value>None</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Bounds.Content" xml:space="preserve"> <value>Bounds</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Spacing.Content" xml:space="preserve"> <value>Spacing</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Horizontal_Spacing.Content" xml:space="preserve"> <value>Horizontal spacing</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Vertical_Spacing.Content" xml:space="preserve"> <value>Vertical spacing</value> </data> <data name="MeasureTool_UnitsOfMeasure.Header" xml:space="preserve"> <value>Units of measurement</value> </data> <data name="MeasureTool_UnitsOfMeasure_Pixels.Content" xml:space="preserve"> <value>Pixels</value> </data> <data name="MeasureTool_UnitsOfMeasure_Inches.Content" xml:space="preserve"> <value>Inches</value> </data> <data name="MeasureTool_UnitsOfMeasure_Centimeters.Content" xml:space="preserve"> <value>Centimeters</value> </data> <data name="MeasureTool_PixelTolerance.Header" xml:space="preserve"> <value>Pixel tolerance for edge detection</value> </data> <data name="MeasureTool_MeasureCrossColor.Header" xml:space="preserve"> <value>Line color</value> </data> <data name="MeasureTool_ContinuousCapture.Header" xml:space="preserve"> <value>Capture screen continuously during measuring</value> </data> <data name="MeasureTool_ContinuousCapture.Description" xml:space="preserve"> <value>Refresh screen contexts in real-time instead of making a screenshot once</value> </data> <data name="MeasureTool_PerColorChannelEdgeDetection.Header" xml:space="preserve"> <value>Per color channel edge detection</value> </data> <data name="MeasureTool_PerColorChannelEdgeDetection.Description" xml:space="preserve"> <value>If enabled, test that all color channels are within a tolerance distance from each other. Otherwise, check that the sum of all color channels differences is smaller than the tolerance.</value> </data> <data name="MeasureTool_DrawFeetOnCross.Header" xml:space="preserve"> <value>Draw feet on cross</value> </data> <data name="MeasureTool_DrawFeetOnCross.Description" xml:space="preserve"> <value>Adds feet to the end of cross lines</value> </data> <data name="MeasureTool_EnableMeasureTool.Header" xml:space="preserve"> <value>Enable Screen Ruler</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MouseWithoutBorders_ActivationSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="MouseWithoutBorders_DeviceLayoutSettings.Header" xml:space="preserve"> <value>Device layout</value> </data> <data name="MouseWithoutBorders_DeviceLayoutSettings.Description" xml:space="preserve"> <value>Drag and drop a machine to rearrange the order.</value> </data> <data name="MouseWithoutBorders_CannotDragDropAsAdmin.Title" xml:space="preserve"> <value>It is not possible to use drag and drop while running PowerToys elevated. As a workaround, please restart PowerToys without elevation to edit the device layout.</value> </data> <data name="MouseWithoutBorders_KeySettings.Header" xml:space="preserve"> <value>Encryption key</value> </data> <data name="MouseWithoutBorders_SecurityKey.Header" xml:space="preserve"> <value>Security key</value> </data> <data name="MouseWithoutBorders_SecurityKey.Description" xml:space="preserve"> <value>The key must be auto generated in one machine by clicking on New Key, then typed in other machines</value> </data> <data name="MouseWithoutBorders_NewKey.Content" xml:space="preserve"> <value>New key</value> </data> <data name="MouseWithoutBorders_CopyMachineName.Text" xml:space="preserve"> <value>Copy to clipboard</value> </data> <data name="MouseWithoutBorders_ReconnectButton.Text" xml:space="preserve"> <value>Refresh connections</value> </data> <data name="MouseWithoutBorders_ReconnectTooltip.Text" xml:space="preserve"> <value>Reestablishes connections with other devices if you are experiencing issues.</value> </data> <data name="MouseWithoutBorders_ThisMachineNameLabel.Header" xml:space="preserve"> <value>Host name of this device</value> </data> <data name="MouseWithoutBorders_Connect.Content" xml:space="preserve"> <value>Connect</value> </data> <data name="MouseWithoutBorders_UninstallService.Header" xml:space="preserve"> <value>Uninstall service</value> </data> <data name="MouseWithoutBorders_UninstallService.Description" xml:space="preserve"> <value>Removes the service from the computer. Needs to run as administrator.</value> </data> <data name="MouseWithoutBorders_Settings.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="MouseWithoutBorders_TroubleShooting.Header" xml:space="preserve"> <value>Troubleshooting</value> </data> <data name="MouseWithoutBorders_AddFirewallRuleButtonControl.Header" xml:space="preserve"> <value>Add a firewall rule for Mouse Without Borders</value> <comment>"Mouse Without Borders" is a product name</comment> </data> <data name="MouseWithoutBorders_AddFirewallRuleButtonControl.Description" xml:space="preserve"> <value>Adding a firewall rule might help solve connection issues.</value> </data> <data name="MouseWithoutBorders_RunAsAdminText.Title" xml:space="preserve"> <value>You need to run as administrator to modify this setting.</value> </data> <data name="MouseWithoutBorders_ServiceUserUninstallWarning.Title" xml:space="preserve"> <value>If PowerToys is installed as a user, uninstalling/upgrading may require the Mouse Without Borders service to be removed manually later.</value> </data> <data name="MouseWithoutBorders_ServiceSettings.Header" xml:space="preserve"> <value>Service</value> </data> <data name="MouseWithoutBorders_Toggle_Enable.Header" xml:space="preserve"> <value>Enable Mouse Without Borders</value> </data> <data name="MouseWithoutBorders.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="MouseWithoutBorders.ModuleDescription" xml:space="preserve"> <value>Mouse Without Borders is a quick and easy way to move your cursor across multiple devices.</value> <comment>"Mouse Without Borders" is the name of the utility</comment> </data> <data name="MouseWithoutBorders.ModuleTitle" xml:space="preserve"> <value>Mouse Without Borders</value> <comment>"Mouse Without Borders" is the name of the utility</comment> </data> <data name="MouseWithoutBorders_UseService.Header" xml:space="preserve"> <value>Use Service</value> </data> <data name="MouseWithoutBorders_UseService.Description" xml:space="preserve"> <value>Runs in service mode, that allows MWB to control remote machines when they're locked. Also allows control of system and administrator applications.</value> </data> <data name="MouseWithoutBorders_MatrixOneRow.Header" xml:space="preserve"> <value>Devices in a single row</value> </data> <data name="MouseWithoutBorders_MatrixOneRow.Description" xml:space="preserve"> <value>Sets whether the devices are aligned on a single row. A two by two matrix is considered otherwise.</value> </data> <data name="MouseWithoutBorders_WrapMouse.Header" xml:space="preserve"> <value>Wrap mouse</value> </data> <data name="MouseWithoutBorders_WrapMouse.Description" xml:space="preserve"> <value>Move control back to the first machine when mouse moves past the last one.</value> </data> <data name="MouseWithoutBorders_ShareClipboard.Header" xml:space="preserve"> <value>Share clipboard</value> </data> <data name="MouseWithoutBorders_TransferFile.Header" xml:space="preserve"> <value>Transfer file</value> </data> <data name="MouseWithoutBorders_HideMouseAtScreenEdge.Header" xml:space="preserve"> <value>Hide mouse at the screen edge</value> </data> <data name="MouseWithoutBorders_DrawMouseCursor.Header" xml:space="preserve"> <value>Draw mouse cursor</value> </data> <data name="MouseWithoutBorders_ValidateRemoteMachineIP.Header" xml:space="preserve"> <value>Validate remote machine IP</value> </data> <data name="MouseWithoutBorders_SameSubnetOnly.Header" xml:space="preserve"> <value>Same subnet only</value> </data> <data name="MouseWithoutBorders_BlockScreenSaverOnOtherMachines.Header" xml:space="preserve"> <value>Block screen saver on other machines</value> </data> <data name="MouseWithoutBorders_MoveMouseRelatively.Header" xml:space="preserve"> <value>Move mouse relatively</value> </data> <data name="MouseWithoutBorders_BlockMouseAtScreenCorners.Header" xml:space="preserve"> <value>Block mouse at screen corners</value> </data> <data name="MouseWithoutBorders_ShowClipboardAndNetworkStatusMessages.Header" xml:space="preserve"> <value>Show clipboard and network status messages</value> </data> <data name="MouseWithoutBorders_ShowOriginalUI.Header" xml:space="preserve"> <value>Show the original Mouse Without Borders UI</value> </data> <data name="MouseWithoutBorders_ShowOriginalUI.Description" xml:space="preserve"> <value>This is accessible from the system tray and requires a restart.</value> </data> <data name="MouseWithoutBorders_ShareClipboard.Description" xml:space="preserve"> <value>If share clipboard stops working, Ctrl+Alt+Del then Esc may solve the problem.</value> </data> <data name="MouseWithoutBorders_TransferFile.Description" xml:space="preserve"> <value>If a file (&lt;100MB) is copied, it will be transferred to the remote machine clipboard.</value> </data> <data name="MouseWithoutBorders_HideMouseAtScreenEdge.Description" xml:space="preserve"> <value>Hide the mouse cursor at the top edge of the screen when switching to other machine. This option also steals the focus from any full-screen app to ensure the keyboard input is redirected.</value> </data> <data name="MouseWithoutBorders_DrawMouseCursor.Description" xml:space="preserve"> <value>Mouse cursor may not be visible in Windows 10 and later versions of Windows when there is no physical mouse attached.</value> </data> <data name="MouseWithoutBorders_ValidateRemoteMachineIP.Description" xml:space="preserve"> <value>Reverse DNS lookup to validate machine IP Address.</value> </data> <data name="MouseWithoutBorders_SameSubnetOnly.Description" xml:space="preserve"> <value>Only connect to machines in the same intranet NNN.NNN.*.* (only works when both machines have IPv4 enabled)</value> </data> <data name="MouseWithoutBorders_IPAddressMapping_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: MyLaptop 192.168.0.24</value> <comment>Don't translate MyLaptop</comment> </data> <data name="MouseWithoutBorders_IPAddressMapping.Header" xml:space="preserve"> <value>IP address mapping</value> </data> <data name="MouseWithoutBorders_IPAddressMapping.Description" xml:space="preserve"> <value>Resolve machine's IP address using manually entered mappings below.</value> </data> <data name="MouseWithoutBorders_BlockScreenSaverOnOtherMachines.Description" xml:space="preserve"> <value>Prevent screen saver from starting on other machines when user is actively working on this machine.</value> </data> <data name="MouseWithoutBorders_MoveMouseRelatively.Description" xml:space="preserve"> <value>Use this option when remote machine's monitor settings are different, or remote machine has multiple monitors.</value> </data> <data name="MouseWithoutBorders_BlockMouseAtScreenCorners.Description" xml:space="preserve"> <value>To avoid accident machine-switch at screen corners.</value> </data> <data name="MouseWithoutBorders_ShowClipboardAndNetworkStatusMessages.Description" xml:space="preserve"> <value>Show clipboard activities and network status in system tray notifications</value> </data> <data name="MouseWithoutBorders_KeyboardShortcuts_Group.Header" xml:space="preserve"> <value>Keyboard shortcuts</value> <comment>keyboard is the hardware peripheral</comment> </data> <data name="MouseWithoutBorders_AdvancedSettings_Group.Header" xml:space="preserve"> <value>Advanced Settings</value> </data> <data name="MouseWithoutBorders_EasyMouseOption.Header" xml:space="preserve"> <value>Easy Mouse: move between machines by moving the mouse pointer to the screen edges.</value> </data> <data name="MouseWithoutBorders_EasyMouseOption.Description" xml:space="preserve"> <value>Can also be set to move only when pressing Shift or Ctrl.</value> <comment>Shift and Ctrl are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_EasyMouseOption_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_EasyMouseOption_Enabled.Content" xml:space="preserve"> <value>Enabled</value> </data> <data name="MouseWithoutBorders_EasyMouseOption_Ctrl.Content" xml:space="preserve"> <value>Ctrl</value> <comment>This is the Ctrl keyboard key</comment> </data> <data name="MouseWithoutBorders_EasyMouseOption_Shift.Content" xml:space="preserve"> <value>Shift</value> <comment>This is the Shift keyboard key</comment> </data> <data name="MouseWithoutBorders_LockMachinesShortcut.Header" xml:space="preserve"> <value>Shortcut to lock all machines.</value> </data> <data name="MouseWithoutBorders_LockMachinesShortcut.Description" xml:space="preserve"> <value>Hit this hotkey twice to lock all machines. Note: Only the machines which have the same shortcut configured will be locked.</value> </data> <data name="MouseWithoutBorders_ToggleEasyMouseShortcut.Header" xml:space="preserve"> <value>Shortcut to toggle Easy Mouse.</value> <comment>Ctrl and Alt are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_ToggleEasyMouseShortcut.Description" xml:space="preserve"> <value>Only works if EasyMouse is set to Enabled or Disabled.</value> </data> <data name="MouseWithoutBorders_ToggleEasyMouseShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut.Header" xml:space="preserve"> <value>Shortcut to switch between machines. Ctrl+Alt+:</value> <comment>Ctrl and Alt are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut.Description" xml:space="preserve"> <value>Click on Ctrl+Alt+ the chosen option to switch between machines.</value> <comment>Ctrl and Alt are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut_F1.Content" xml:space="preserve"> <value>F1, F2, F3, F4</value> <comment>Don't localize. These are keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut_1.Content" xml:space="preserve"> <value>1, 2, 3, 4</value> <comment>Don't localize. These are keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_LockMachinesShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_ReconnectShortcut.Header" xml:space="preserve"> <value>Shortcut to try reconnecting</value> </data> <data name="MouseWithoutBorders_ReconnectShortcut.Description" xml:space="preserve"> <value>Just in case the connection is lost for any reason.</value> </data> <data name="MouseWithoutBorders_ReconnectShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut.Header" xml:space="preserve"> <value>Shortcut to switch to multiple machine mode.</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut.Description" xml:space="preserve"> <value>Allows controlling all computers at once.</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut_Ctrl3.Content" xml:space="preserve"> <value>Ctrl three times</value> <comment>This is the Ctrl keyboard key</comment> </data> <data name="VideoConference_Enable.Header" xml:space="preserve"> <value>Enable Video Conference Mute</value> </data> <data name="VideoConference.ModuleDescription" xml:space="preserve"> <value>Video Conference Mute is a quick and easy way to do a global "mute" of both your microphone and webcam. Disabling this module or closing PowerToys will unmute the microphone and camera.</value> </data> <data name="VideoConference_CameraAndMicrophoneMuteHotkeyControl_Header.Header" xml:space="preserve"> <value>Mute camera &amp; microphone</value> </data> <data name="VideoConference_MicrophoneMuteHotkeyControl_Header.Header" xml:space="preserve"> <value>Mute microphone</value> </data> <data name="VideoConference_MicrophonePushToTalkHotkeyControl_Header.Header" xml:space="preserve"> <value>Push to talk</value> </data> <data name="VideoConference_CameraMuteHotkeyControl_Header.Header" xml:space="preserve"> <value>Mute camera</value> </data> <data name="VideoConference_SelectedCamera.Header" xml:space="preserve"> <value>Selected camera</value> </data> <data name="VideoConference_SelectedMicrophone.Header" xml:space="preserve"> <value>Selected microphone</value> </data> <data name="VideoConference_PushToReverse.Header" xml:space="preserve"> <value>Push to reverse</value> </data> <data name="VideoConference_PushToReverse.Description" xml:space="preserve"> <value>If enabled, allows both push to talk and push to mute, depending on microphone state</value> </data> <data name="VideoConference_CameraOverlayImagePathHeader.Header" xml:space="preserve"> <value>Image displayed when camera is muted</value> </data> <data name="VideoConference_ToolbarPosition.Header" xml:space="preserve"> <value>Toolbar position</value> </data> <data name="VideoConference_ToolbarPosition_TopCenter.Content" xml:space="preserve"> <value>Top center</value> </data> <data name="VideoConference_ToolbarPosition_TopLeftCorner.Content" xml:space="preserve"> <value>Top left corner</value> </data> <data name="VideoConference_ToolbarPosition_TopRightCorner.Content" xml:space="preserve"> <value>Top right corner</value> </data> <data name="VideoConference_ToolbarPosition_BottomLeftCorner.Content" xml:space="preserve"> <value>Bottom left corner</value> </data> <data name="VideoConference_ToolbarPosition_BottomCenter.Content" xml:space="preserve"> <value>Bottom center</value> </data> <data name="VideoConference_ToolbarPosition_BottomRightCorner.Content" xml:space="preserve"> <value>Bottom right corner</value> </data> <data name="VideoConference_ToolbarMonitor.Header" xml:space="preserve"> <value>Show toolbar on</value> </data> <data name="VideoConference_ToolbarMonitor_Main.Content" xml:space="preserve"> <value>Main monitor</value> </data> <data name="VideoConference_ToolbarMonitor_UnderCursor.Content" xml:space="preserve"> <value>Monitor under cursor</value> </data> <data name="VideoConference_ToolbarMonitor_ActiveWindow.Content" xml:space="preserve"> <value>Active window monitor</value> </data> <data name="VideoConference_ToolbarMonitor_All.Content" xml:space="preserve"> <value>All monitors</value> </data> <data name="VideoConference_ToolbarHide.Header" xml:space="preserve"> <value>Hide toolbar</value> </data> <data name="VideoConference_ToolbarHideMuted.Content" xml:space="preserve"> <value>When both camera and microphone are muted</value> </data> <data name="VideoConference_ToolbarHideNever.Content" xml:space="preserve"> <value>Never</value> </data> <data name="VideoConference_ToolbarHideUnmuted.Content" xml:space="preserve"> <value>When both camera and microphone are unmuted</value> </data> <data name="VideoConference_ToolbarHideTimeout.Content" xml:space="preserve"> <value>After timeout</value> </data> <data name="VideoConference.ModuleTitle" xml:space="preserve"> <value>Video Conference Mute</value> </data> <data name="VideoConference_Camera.Header" xml:space="preserve"> <value>Camera</value> </data> <data name="VideoConference_Camera.Description" xml:space="preserve"> <value>To use this feature, make sure to select PowerToys VideoConference Mute as your camera source in your apps.</value> </data> <data name="VideoConference_Microphone.Header" xml:space="preserve"> <value>Microphone</value> </data> <data name="VideoConference_Toolbar.Header" xml:space="preserve"> <value>Toolbar</value> </data> <data name="VideoConference_Behavior.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="VideoConference_StartupAction.Header" xml:space="preserve"> <value>Startup action</value> </data> <data name="VideoConference_StartupActionNothing.Content" xml:space="preserve"> <value>Nothing</value> </data> <data name="VideoConference_StartupActionUnmute.Content" xml:space="preserve"> <value>Unmute</value> </data> <data name="VideoConference_StartupActionMute.Content" xml:space="preserve"> <value>Mute</value> </data> <data name="VideoConference_Shortcuts.Header" xml:space="preserve"> <value>Shortcuts</value> </data> <data name="VideoConference_CameraOverlayImageAlt.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Camera overlay image preview</value> </data> <data name="VideoConference_CameraOverlayImageBrowse.Content" xml:space="preserve"> <value>Browse</value> </data> <data name="VideoConference_CameraOverlayImageClear.Content" xml:space="preserve"> <value>Clear</value> </data> <data name="Shell_General.Content" xml:space="preserve"> <value>General</value> <comment>Navigation view item name for General</comment> </data> <data name="Shell_Awake.Content" xml:space="preserve"> <value>Awake</value> <comment>Product name: Navigation view item name for Awake</comment> </data> <data name="Shell_PowerLauncher.Content" xml:space="preserve"> <value>PowerToys Run</value> <comment>Product name: Navigation view item name for PowerToys Run</comment> </data> <data name="Shell_PowerRename.Content" xml:space="preserve"> <value>PowerRename</value> <comment>Product name: Navigation view item name for PowerRename</comment> </data> <data name="Shell_ShortcutGuide.Content" xml:space="preserve"> <value>Shortcut Guide</value> <comment>Product name: Navigation view item name for Shortcut Guide</comment> </data> <data name="Shell_PowerPreview.Content" xml:space="preserve"> <value>File Explorer add-ons</value> <comment>Product name: Navigation view item name for File Explorer. Please use File Explorer as in the context of File Explorer in Windows</comment> </data> <data name="Shell_FancyZones.Content" xml:space="preserve"> <value>FancyZones</value> <comment>Product name: Navigation view item name for FancyZones</comment> </data> <data name="Shell_ImageResizer.Content" xml:space="preserve"> <value>Image Resizer</value> <comment>Product name: Navigation view item name for Image Resizer</comment> </data> <data name="Shell_ColorPicker.Content" xml:space="preserve"> <value>Color Picker</value> <comment>Product name: Navigation view item name for Color Picker</comment> </data> <data name="Shell_KeyboardManager.Content" xml:space="preserve"> <value>Keyboard Manager</value> <comment>Product name: Navigation view item name for Keyboard Manager</comment> </data> <data name="Shell_MouseWithoutBorders.Content" xml:space="preserve"> <value>Mouse Without Borders</value> <comment>Product name: Navigation view item name for Mouse Without Borders</comment> </data> <data name="Shell_MouseUtilities.Content" xml:space="preserve"> <value>Mouse utilities</value> <comment>Product name: Navigation view item name for Mouse utilities</comment> </data> <data name="Shell_NavigationMenu_Announce_Collapse" xml:space="preserve"> <value>Navigation closed</value> <comment>Accessibility announcement when the navigation pane collapses</comment> </data> <data name="Shell_NavigationMenu_Announce_Open" xml:space="preserve"> <value>Navigation opened</value> <comment>Accessibility announcement when the navigation pane opens</comment> </data> <data name="KeyboardManager_ConfigHeader.Text" xml:space="preserve"> <value>Current configuration</value> <comment>Keyboard Manager current configuration header</comment> </data> <data name="KeyboardManager.ModuleDescription" xml:space="preserve"> <value>Reconfigure your keyboard by remapping keys and shortcuts</value> <comment>Keyboard Manager page description</comment> </data> <data name="KeyboardManager_EnableToggle.Header" xml:space="preserve"> <value>Enable Keyboard Manager</value> <comment>Keyboard Manager enable toggle header. Do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="KeyboardManager_ProfileDescription.Text" xml:space="preserve"> <value>Select the profile to display the active key remap and shortcuts</value> <comment>Keyboard Manager configuration dropdown description</comment> </data> <data name="KeyboardManager_RemapKeyboardButton.Header" xml:space="preserve"> <value>Remap a key</value> <comment>Keyboard Manager remap keyboard button content</comment> </data> <data name="KeyboardManager_Keys.Header" xml:space="preserve"> <value>Keys</value> <comment>Keyboard Manager remap keyboard header</comment> </data> <data name="KeyboardManager_RemapShortcutsButton.Header" xml:space="preserve"> <value>Remap a shortcut</value> <comment>Keyboard Manager remap shortcuts button</comment> </data> <data name="KeyboardManager_Shortcuts.Header" xml:space="preserve"> <value>Shortcuts</value> <comment>Keyboard Manager remap keyboard header</comment> </data> <data name="KeyboardManager_All_Apps_Description" xml:space="preserve"> <value>All Apps</value> <comment>Should be the same as EditShortcuts_AllApps from keyboard manager editor</comment> </data> <data name="Shortcuts.Header" xml:space="preserve"> <value>Shortcuts</value> </data> <data name="Shortcut.Header" xml:space="preserve"> <value>Shortcut</value> </data> <data name="RemapKeysList.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Current Key Remappings</value> </data> <data name="RemapShortcutsList.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Current Shortcut Remappings</value> </data> <data name="KeyboardManager_RemappedKeysListItem.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Key Remapping</value> <comment>key as in keyboard key</comment> </data> <data name="KeyboardManager_RemappedShortcutsListItem.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Shortcut Remapping</value> </data> <data name="KeyboardManager_RemappedTo.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Remapped to</value> </data> <data name="KeyboardManager_ShortcutRemappedTo.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Remapped to</value> </data> <data name="KeyboardManager_TargetApp.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>For Target Application</value> <comment>What computer application would this be for</comment> </data> <data name="KeyboardManager_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Keyboard Manager</value> <comment>do not loc, product name</comment> </data> <data name="ColorPicker.ModuleDescription" xml:space="preserve"> <value>Quick and simple system-wide color picker.</value> </data> <data name="ColorPicker_EnableColorPicker.Header" xml:space="preserve"> <value>Enable Color Picker</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="ColorPicker_ChangeCursor.Content" xml:space="preserve"> <value>Change cursor when picking a color</value> </data> <data name="PowerLauncher.ModuleDescription" xml:space="preserve"> <value>A quick launcher that has additional capabilities without sacrificing performance.</value> </data> <data name="PowerLauncher_EnablePowerLauncher.Header" xml:space="preserve"> <value>Enable PowerToys Run</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="PowerLauncher_SearchResults.Header" xml:space="preserve"> <value>Search &amp; results</value> </data> <data name="PowerLauncher_SearchResultPreference.Header" xml:space="preserve"> <value>Search result preference</value> </data> <data name="PowerLauncher_UsePinyin.Header" xml:space="preserve"> <value>Use Pinyin</value> </data> <data name="PowerLauncher_UsePinyin.Description" xml:space="preserve"> <value>Experimental: Use Pinyin on the search query. May not work for every plugin.</value> </data> <data name="PowerLauncher_SearchResultPreference_MostRecentlyUsed" xml:space="preserve"> <value>Most recently used</value> </data> <data name="PowerLauncher_SearchResultPreference_AlphabeticalOrder" xml:space="preserve"> <value>Alphabetical order</value> </data> <data name="PowerLauncher_SearchResultPreference_RunningProcessesOpenApplications" xml:space="preserve"> <value>Running processes/open applications</value> </data> <data name="PowerLauncher_SearchTypePreference.Header" xml:space="preserve"> <value>Search type preference</value> </data> <data name="PowerLauncher_SearchTypePreference_ApplicationName" xml:space="preserve"> <value>Application name</value> </data> <data name="PowerLauncher_SearchTypePreference_StringInApplication" xml:space="preserve"> <value>A string that is contained in the application</value> </data> <data name="PowerLauncher_SearchTypePreference_ExecutableName" xml:space="preserve"> <value>Executable name</value> </data> <data name="PowerLauncher_MaximumNumberOfResults.Header" xml:space="preserve"> <value>Number of results shown before scrolling</value> </data> <data name="PowerLauncher_OpenPowerLauncher.Header" xml:space="preserve"> <value>Open PowerToys Run</value> </data> <data name="PowerLauncher_OpenFileLocation.Header" xml:space="preserve"> <value>Open file location</value> </data> <data name="PowerLauncher_CopyPathLocation.Header" xml:space="preserve"> <value>Copy path location</value> </data> <data name="PowerLauncher_OpenConsole.Header" xml:space="preserve"> <value>Open console</value> <comment>console refers to Windows command prompt</comment> </data> <data name="PowerLauncher_OverrideWinRKey.Content" xml:space="preserve"> <value>Override Win+R shortcut</value> </data> <data name="PowerLauncher_OverrideWinSKey.Content" xml:space="preserve"> <value>Override Win+S shortcut</value> </data> <data name="PowerLauncher_IgnoreHotkeysInFullScreen.Content" xml:space="preserve"> <value>Ignore shortcuts in fullscreen mode</value> </data> <data name="PowerLauncher_UseCentralizedKeyboardHook.Header" xml:space="preserve"> <value>Use centralized keyboard hook</value> </data> <data name="PowerLauncher_UseCentralizedKeyboardHook.Description" xml:space="preserve"> <value>Try this if there are issues with the shortcut (PowerToys Run might not get focus when triggered from an elevated window)</value> </data> <data name="PowerLauncher_ClearInputOnLaunch.Content" xml:space="preserve"> <value>Clear the previous query on launch</value> </data> <data name="PowerLauncher_TabSelectsContextButtons.Header" xml:space="preserve"> <value>Tab through context buttons</value> </data> <data name="PowerLauncher_TabSelectsContextButtons.Description" xml:space="preserve"> <value>Pressing tab will first select through the available context buttons of the current selection before moving onto the next result</value> </data> <data name="PowerLauncher_GenerateThumbnailsFromFiles.Header" xml:space="preserve"> <value>Generate thumbnails from files</value> </data> <data name="PowerLauncher_GenerateThumbnailsFromFiles.Description" xml:space="preserve"> <value>Results will try to generate thumbnails for files. Disabling this setting may increase stability and speed</value> </data> <data name="PowerLauncher_SearchQueryResultsWithDelay.Header" xml:space="preserve"> <value>Input Smoothing</value> <comment>This is about adding a delay to wait for more input before executing a search</comment> </data> <data name="PowerLauncher_SearchQueryResultsWithDelay.Description" xml:space="preserve"> <value>Wait for more input before searching. This reduces interface jumpiness and system load.</value> </data> <data name="PowerLauncher_FastSearchInputDelayMs.Header" xml:space="preserve"> <value>Immediate plugins</value> </data> <data name="PowerLauncher_FastSearchInputDelayMs.Description" xml:space="preserve"> <value>Affects the plugins that make the UI wait for their results by this amount. Recommended: 30-50 ms.</value> </data> <data name="PowerLauncher_SlowSearchInputDelayMs.Header" xml:space="preserve"> <value>Background execution plugins</value> </data> <data name="PowerLauncher_SlowSearchInputDelayMs.Description" xml:space="preserve"> <value>Affects the plugins that execute in the background by this amount. Recommended: 100-150 ms.</value> </data> <data name="PowerLauncher_SearchInputDelayMs.Header" xml:space="preserve"> <value>Fast plugin throttle (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="KeyboardManager_KeysMappingLayoutRightHeader.Text" xml:space="preserve"> <value>To:</value> <comment>Keyboard Manager mapping keys view right header</comment> </data> <data name="Appearance_GroupSettings.Text" xml:space="preserve"> <value>Appearance</value> </data> <data name="Fancyzones_ImageHyperlinkToDocs.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>FancyZones windows</value> <comment>do not loc the Product name</comment> </data> <data name="FancyZones.ModuleDescription" xml:space="preserve"> <value>Create window layouts to help make multi-tasking easy.</value> <comment>windows refers to application windows</comment> </data> <data name="FancyZones_DisplayOrWorkAreaChangeMoveWindowsCheckBoxControl.Content" xml:space="preserve"> <value>Keep windows in their zones when the screen resolution or work area changes</value> <comment>windows refers to application windows</comment> </data> <data name="FancyZones_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable FancyZones</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="FancyZones_ExcludeApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="FancyZones_ExcludeApps.Description" xml:space="preserve"> <value>Excludes an application from snapping to zones and will only react to Windows Snap - add one application name per line</value> </data> <data name="FancyZones_HighlightOpacity.Header" xml:space="preserve"> <value>Opacity (%)</value> </data> <data name="FancyZones_HotkeyEditorControl.Header" xml:space="preserve"> <value>Open layout editor</value> <comment>Shortcut to launch the FancyZones layout editor application</comment> </data> <data name="FancyZones_WindowSwitching_GroupSettings.Header" xml:space="preserve"> <value>Switch between windows in the current zone</value> </data> <data name="FancyZones_HotkeyNextTabControl.Header" xml:space="preserve"> <value>Next window</value> </data> <data name="FancyZones_HotkeyPrevTabControl.Header" xml:space="preserve"> <value>Previous window</value> </data> <data name="SettingsPage_SetShortcut.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Shortcut setting</value> </data> <data name="SettingsPage_SetShortcut_Glyph.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Information Symbol</value> </data> <data name="FancyZones_LaunchEditorButtonControl.Header" xml:space="preserve"> <value>Launch layout editor</value> <comment>launches the FancyZones layout editor application</comment> </data> <data name="FancyZones_LaunchEditorButtonControl.Description" xml:space="preserve"> <value>Set and manage your layouts</value> <comment>launches the FancyZones layout editor application</comment> </data> <data name="FancyZones_MakeDraggedWindowTransparentCheckBoxControl.Content" xml:space="preserve"> <value>Make dragged window transparent</value> </data> <data name="FancyZones_MouseDragCheckBoxControl_Header.Content" xml:space="preserve"> <value>Use a non-primary mouse button to toggle zone activation</value> </data> <data name="FancyZones_MouseMiddleClickSpanningMultipleZonesCheckBoxControl_Header.Content" xml:space="preserve"> <value>Use middle-click mouse button to toggle multiple zones spanning</value> </data> <data name="FancyZones_MoveWindowsAcrossAllMonitorsCheckBoxControl.Content" xml:space="preserve"> <value>Move windows between zones across all monitors</value> </data> <data name="FancyZones_OverrideSnapHotkeys.Header" xml:space="preserve"> <value>Override Windows Snap</value> </data> <data name="FancyZones_OverrideSnapHotkeys.Description" xml:space="preserve"> <value>This overrides the Windows Snap shortcut (Win + arrow) to move windows between zones</value> </data> <data name="FancyZones_ShiftDragCheckBoxControl_Header.Content" xml:space="preserve"> <value>Hold Shift key to activate zones while dragging</value> </data> <data name="FancyZones_ShowZonesOnAllMonitorsCheckBoxControl.Content" xml:space="preserve"> <value>Show zones on all monitors while dragging a window</value> </data> <data name="FancyZones_AppLastZoneMoveWindows.Content" xml:space="preserve"> <value>Move newly created windows to their last known zone</value> <comment>windows refers to application windows</comment> </data> <data name="FancyZones_OpenWindowOnActiveMonitor.Content" xml:space="preserve"> <value>Move newly created windows to the current active monitor (Experimental)</value> </data> <data name="FancyZones_UseCursorPosEditorStartupScreen.Header" xml:space="preserve"> <value>Launch editor on the display</value> </data> <data name="FancyZones_UseCursorPosEditorStartupScreen.Description" xml:space="preserve"> <value>When using multiple displays</value> </data> <data name="FancyZones_LaunchPositionMouse.Content" xml:space="preserve"> <value>Where the mouse pointer is</value> </data> <data name="FancyZones_LaunchPositionScreen.Content" xml:space="preserve"> <value>With active focus</value> </data> <data name="FancyZones_ZoneBehavior_GroupSettings.Header" xml:space="preserve"> <value>Zone behavior</value> </data> <data name="FancyZones_ZoneBehavior_GroupSettings.Description" xml:space="preserve"> <value>Manage how zones behave when using FancyZones</value> </data> <data name="FancyZones_Zones.Header" xml:space="preserve"> <value>Zones</value> </data> <data name="FancyZones_ZoneHighlightColor.Header" xml:space="preserve"> <value>Highlight color</value> </data> <data name="FancyZones_ZoneSetChangeMoveWindows.Content" xml:space="preserve"> <value>During zone layout changes, windows assigned to a zone will match new size/positions</value> </data> <data name="AttributionTitle.Text" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="General.ModuleTitle" xml:space="preserve"> <value>General</value> </data> <data name="GeneralPage_CheckForUpdates.Content" xml:space="preserve"> <value>Check for updates</value> </data> <data name="General_SettingsBackupAndRestoreLocationText.Header" xml:space="preserve"> <value>Location</value> </data> <data name="General_SettingsBackupAndRestore_ButtonBackup.Content" xml:space="preserve"> <value>Backup</value> </data> <data name="General_SettingsBackupInfo_FileNameHeader.Text" xml:space="preserve"> <value>File name:</value> </data> <data name="General_SettingsBackupAndRestore_LinkRefresh.Text" xml:space="preserve"> <value>Refresh</value> </data> <data name="General_SettingsBackupAndRestore_ButtonRestore.Content" xml:space="preserve"> <value>Restore</value> </data> <data name="General_SettingsBackupAndRestore_ButtonSelectLocation.Text" xml:space="preserve"> <value>Select folder</value> </data> <data name="GeneralPage_UpdateNow.Content" xml:space="preserve"> <value>Update now</value> </data> <data name="GeneralPage_PrivacyStatement_URL.Text" xml:space="preserve"> <value>Privacy statement</value> </data> <data name="GeneralPage_ReportAbug.Text" xml:space="preserve"> <value>Report a bug</value> <comment>Report an issue inside powertoys</comment> </data> <data name="GeneralPage_RequestAFeature_URL.Text" xml:space="preserve"> <value>Request a feature</value> <comment>Tell our team what we should build</comment> </data> <data name="GeneralPage_RestartAsAdmin_Button.Content" xml:space="preserve"> <value>Restart PowerToys as administrator</value> <comment>running PowerToys as a higher level user, account is typically referred to as an admin / administrator</comment> </data> <data name="GeneralPage_RunAtStartUp.Header" xml:space="preserve"> <value>Run at startup</value> </data> <data name="GeneralPage_RunAtStartUp.Description" xml:space="preserve"> <value>PowerToys will launch automatically</value> </data> <data name="PowerRename.ModuleDescription" xml:space="preserve"> <value>A Windows Shell extension for more advanced bulk renaming using search &amp; replace or regular expressions.</value> </data> <data name="PowerRename_ShellIntegration.Header" xml:space="preserve"> <value>Shell integration</value> <comment>This refers to directly integrating in with Windows</comment> </data> <data name="PowerRename_Toggle_Enable.Header" xml:space="preserve"> <value>Enable PowerRename</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="RadioButtons_Name_Theme.Text" xml:space="preserve"> <value>Settings theme</value> </data> <data name="PowerRename_Toggle_HideIcon.Content" xml:space="preserve"> <value>Hide icon in context menu</value> </data> <data name="PowerRename_Toggle_ContextMenu.Header" xml:space="preserve"> <value>Show PowerRename in</value> </data> <data name="PowerRename_Toggle_StandardContextMenu.Content" xml:space="preserve"> <value>Default and extended context menu</value> </data> <data name="PowerRename_Toggle_ExtendedContextMenu.Content" xml:space="preserve"> <value>Extended context menu only</value> </data> <data name="ExtendedContextMenuInfo.Title" xml:space="preserve"> <value>Press Shift + right-click on files to open the extended context menu</value> </data> <data name="PowerRename_Toggle_MaxDispListNum.Header" xml:space="preserve"> <value>Maximum number of items</value> </data> <data name="PowerRename_Toggle_RestoreFlagsOnLaunch.Header" xml:space="preserve"> <value>Show recently used strings</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_MD.Header" xml:space="preserve"> <value>Markdown</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_MD.Description" xml:space="preserve"> <value>.md, .markdown, .mdown, .mkdn, .mkd, .mdwn, .mdtxt, .mdtext</value> <comment>File extensions, should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_Monaco.Header" xml:space="preserve"> <value>Source code files (Monaco)</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_Monaco.Description" xml:space="preserve"> <value>.cpp, .py, .json, .xml, .csproj, ...</value> <comment>File extensions should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_SVG.Header" xml:space="preserve"> <value>Scalable Vector Graphics</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_SVG.Description" xml:space="preserve"> <value>.svg</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_Preview_SVG_Color_Mode.Header" xml:space="preserve"> <value>Color mode</value> </data> <data name="FileExplorerPreview_Preview_SVG_Color_Mode_Default.Content" xml:space="preserve"> <value>Windows default</value> </data> <data name="FileExplorerPreview_Preview_SVG_Color_Solid_Color.Content" xml:space="preserve"> <value>Solid color</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade.Content" xml:space="preserve"> <value>Checkered pattern</value> </data> <data name="FileExplorerPreview_Preview_SVG_Background_Color.Header" xml:space="preserve"> <value>Color</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_Mode.Header" xml:space="preserve"> <value>Checkered shade</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_1.Content" xml:space="preserve"> <value>Light</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_2.Content" xml:space="preserve"> <value>Medium</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_3.Content" xml:space="preserve"> <value>Dark</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_PDF.Header" xml:space="preserve"> <value>Portable Document Format</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_PDF.Description" xml:space="preserve"> <value>.pdf</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_SVG.Header" xml:space="preserve"> <value>Scalable Vector Graphics</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_SVG.Description" xml:space="preserve"> <value>.svg</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_STL.Header" xml:space="preserve"> <value>Stereolithography</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_STL.Description" xml:space="preserve"> <value>.stl</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_Color_Thumbnail_STL.Header" xml:space="preserve"> <value>Color</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_PDF.Header" xml:space="preserve"> <value>Portable Document Format</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_PDF.Description" xml:space="preserve"> <value>.pdf</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview.ModuleDescription" xml:space="preserve"> <value>These settings allow you to manage your Windows File Explorer custom preview handlers.</value> </data> <data name="PowerRename_AutoCompleteHeader.Header" xml:space="preserve"> <value>Auto-complete</value> </data> <data name="OpenSource_Notice.Text" xml:space="preserve"> <value>Open-source notice</value> </data> <data name="PowerRename_Toggle_AutoComplete.Header" xml:space="preserve"> <value>Enable auto-complete for the search &amp; replace fields</value> </data> <data name="FancyZones_BorderColor.Header" xml:space="preserve"> <value>Border color</value> </data> <data name="FancyZones_InActiveColor.Header" xml:space="preserve"> <value>Inactive color</value> </data> <data name="ShortcutGuide.ModuleDescription" xml:space="preserve"> <value>Shows a help overlay with Windows shortcuts.</value> </data> <data name="ShortcutGuide_PressTimeForGlobalWindowsShortcuts.Header" xml:space="preserve"> <value>Press duration before showing global Windows shortcuts (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="ShortcutGuide_ActivationMethod.Header" xml:space="preserve"> <value>Activation method</value> </data> <data name="ShortcutGuide_ActivationMethod.Description" xml:space="preserve"> <value>Use a shortcut or press the Windows key for some time to activate</value> </data> <data name="Radio_ShortcutGuide_ActivationMethod_CustomizedShortcut.Content" xml:space="preserve"> <value>Custom shortcut</value> </data> <data name="Radio_ShortcutGuide_ActivationMethod_LongPressWindowsKey.Content" xml:space="preserve"> <value>Hold down Windows key</value> </data> <data name="ShortcutGuide_PressWinKeyWarning.Title" xml:space="preserve"> <value>In some edge cases Shortcut Guide might not function correctly when using this activation method</value> </data> <data name="Appearance_Behavior.Header" xml:space="preserve"> <value>Appearance &amp; behavior</value> </data> <data name="General_SettingsBackupAndRestoreTitle.Header" xml:space="preserve"> <value>Backup &amp; restore</value> </data> <data name="General_SettingsBackupAndRestore.Header" xml:space="preserve"> <value>Backup and restore your settings</value> </data> <data name="General_SettingsBackupAndRestore.Description" xml:space="preserve"> <value>PowerToys will restart automatically if needed</value> </data> <data name="ShortcutGuide_Enable.Header" xml:space="preserve"> <value>Enable Shortcut Guide</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="ShortcutGuide_OverlayOpacity.Header" xml:space="preserve"> <value>Background opacity (%)</value> </data> <data name="ShortcutGuide_DisabledApps.Header" xml:space="preserve"> <value>Exclude apps</value> </data> <data name="ShortcutGuide_DisabledApps.Description" xml:space="preserve"> <value>Turns off Shortcut Guide when these applications have focus - add one application name per line</value> </data> <data name="ShortcutGuide_DisabledApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> <comment>Don't translate outlook.exe</comment> </data> <data name="ImageResizer_CustomSizes.Header" xml:space="preserve"> <value>Image sizes</value> </data> <data name="ImageResizer_Presets.Header" xml:space="preserve"> <value>Presets</value> </data> <data name="ImageResizer_Presets.Description" xml:space="preserve"> <value>Manage preset sizes that can be used in the editor</value> </data> <data name="ImageResizer_FilenameFormatHeader.Description" xml:space="preserve"> <value>This format is used as the filename for resized images</value> </data> <data name="ImageResizer.ModuleDescription" xml:space="preserve"> <value>Lets you resize images by right-clicking.</value> </data> <data name="ImageResizer_EnableToggle.Header" xml:space="preserve"> <value>Enable Image Resizer</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="ImagesSizesListView.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Image Size</value> </data> <data name="ImageResizer_Configurations.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Configurations</value> </data> <data name="ImageResizer_Name.Header" xml:space="preserve"> <value>Name</value> </data> <data name="ImageResizer_Fit.Header" xml:space="preserve"> <value>Fit</value> </data> <data name="ImageResizer_Width.Header" xml:space="preserve"> <value>Width</value> </data> <data name="ImageResizer_Height.Header" xml:space="preserve"> <value>Height</value> </data> <data name="ImageResizer_Size.Header" xml:space="preserve"> <value>Unit</value> </data> <data name="RemoveButton.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Remove</value> <comment>Removes a user defined setting group for Image Resizer</comment> </data> <data name="RemoveItem.Text" xml:space="preserve"> <value>Delete</value> </data> <data name="ImageResizer_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Image Resizer</value> </data> <data name="ImageResizer_AddSizeButton.Content" xml:space="preserve"> <value>Add new size</value> </data> <data name="ImageResizer_SaveSizeButton.Label" xml:space="preserve"> <value>Save sizes</value> </data> <data name="ImageResizer_Encoding.Header" xml:space="preserve"> <value>JPEG quality level (%)</value> </data> <data name="ImageResizer_PNGInterlacing.Header" xml:space="preserve"> <value>PNG interlacing</value> </data> <data name="ImageResizer_TIFFCompression.Header" xml:space="preserve"> <value>TIFF compression</value> </data> <data name="File.Header" xml:space="preserve"> <value>File</value> <comment>as in a computer file</comment> </data> <data name="Default.Content" xml:space="preserve"> <value>Default</value> </data> <data name="ImageResizer_ENCODER_TIFF_CCITT3.Content" xml:space="preserve"> <value>CCITT3</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_CCITT4.Content" xml:space="preserve"> <value>CCITT4</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_Default.Content" xml:space="preserve"> <value>Default</value> </data> <data name="ImageResizer_ENCODER_TIFF_LZW.Content" xml:space="preserve"> <value>LZW</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_None.Content" xml:space="preserve"> <value>None</value> </data> <data name="ImageResizer_ENCODER_TIFF_RLE.Content" xml:space="preserve"> <value>RLE</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_Zip.Content" xml:space="preserve"> <value>Zip</value> <comment>do not loc</comment> </data> <data name="ImageResizer_FallbackEncoder_BMP.Content" xml:space="preserve"> <value>BMP encoder</value> </data> <data name="ImageResizer_FallbackEncoder_GIF.Content" xml:space="preserve"> <value>GIF encoder</value> </data> <data name="ImageResizer_FallbackEncoder_JPEG.Content" xml:space="preserve"> <value>JPEG encoder</value> </data> <data name="ImageResizer_FallbackEncoder_PNG.Content" xml:space="preserve"> <value>PNG encoder</value> </data> <data name="ImageResizer_FallbackEncoder_TIFF.Content" xml:space="preserve"> <value>TIFF encoder</value> </data> <data name="ImageResizer_FallbackEncoder_WMPhoto.Content" xml:space="preserve"> <value>WMPhoto encoder</value> </data> <data name="ImageResizer_Sizes_Fit_Fill.Content" xml:space="preserve"> <value>Fill</value> <comment>Refers to filling an image into a certain size. It could overflow</comment> </data> <data name="ImageResizer_Sizes_Fit_Fill_ThirdPersonSingular.Text" xml:space="preserve"> <value>Fill</value> <comment>Refers to filling an image into a certain size. It could overflow</comment> </data> <data name="ImageResizer_Sizes_Fit_Fit.Content" xml:space="preserve"> <value>Fit</value> <comment>Refers to fitting an image into a certain size. It won't overflow</comment> </data> <data name="ImageResizer_Sizes_Fit_Stretch.Content" xml:space="preserve"> <value>Stretch</value> <comment>Refers to stretching an image into a certain size. Won't overflow but could distort.</comment> </data> <data name="ImageResizer_Sizes_Units_CM.Content" xml:space="preserve"> <value>Centimeters</value> </data> <data name="ImageResizer_Sizes_Units_Inches.Content" xml:space="preserve"> <value>Inches</value> </data> <data name="ImageResizer_Sizes_Units_Percent.Content" xml:space="preserve"> <value>Percent</value> </data> <data name="ImageResizer_Sizes_Units_Pixels.Content" xml:space="preserve"> <value>Pixels</value> </data> <data name="Off.Content" xml:space="preserve"> <value>Off</value> </data> <data name="On.Content" xml:space="preserve"> <value>On</value> </data> <data name="GeneralPage_ToggleSwitch_AlwaysRunElevated_Link.Content" xml:space="preserve"> <value>Learn more about administrator mode</value> </data> <data name="GeneralPage_ToggleSwitch_AutoDownloadUpdates.Header" xml:space="preserve"> <value>Download updates automatically</value> </data> <data name="GeneralPage_ToggleSwitch_AutoDownloadUpdates.Description" xml:space="preserve"> <value>Except on metered connections</value> </data> <data name="GeneralPage_ToggleSwitch_RunningAsAdminNote.Text" xml:space="preserve"> <value>Currently running as administrator</value> </data> <data name="GeneralSettings_AlwaysRunAsAdminText.Header" xml:space="preserve"> <value>Always run as administrator</value> </data> <data name="GeneralSettings_AlwaysRunAsAdminText.Description" xml:space="preserve"> <value>You need to run as administrator to use this setting</value> </data> <data name="GeneralSettings_RunningAsUserText" xml:space="preserve"> <value>Running as user</value> </data> <data name="GeneralSettings_RunningAsAdminText" xml:space="preserve"> <value>Running as administrator</value> </data> <data name="FancyZones.ModuleTitle" xml:space="preserve"> <value>FancyZones</value> </data> <data name="FileExplorerPreview.ModuleTitle" xml:space="preserve"> <value>File Explorer</value> </data> <data name="FileExplorerPreview_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>File Explorer</value> <comment>Use same translation as Windows does for File Explorer</comment> </data> <data name="ImageResizer.ModuleTitle" xml:space="preserve"> <value>Image Resizer</value> </data> <data name="KeyboardManager.ModuleTitle" xml:space="preserve"> <value>Keyboard Manager</value> </data> <data name="ColorPicker.ModuleTitle" xml:space="preserve"> <value>Color Picker</value> </data> <data name="PowerLauncher.ModuleTitle" xml:space="preserve"> <value>PowerToys Run</value> </data> <data name="PowerToys_Run_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>PowerToys Run</value> </data> <data name="PowerRename.ModuleTitle" xml:space="preserve"> <value>PowerRename</value> <comment>do not loc the product name</comment> </data> <data name="PowerRename_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>PowerRename</value> <comment>do not loc</comment> </data> <data name="ShortcutGuide.ModuleTitle" xml:space="preserve"> <value>Shortcut Guide</value> </data> <data name="Shortcut_Guide_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Shortcut Guide</value> </data> <data name="General_Repository.Text" xml:space="preserve"> <value>GitHub repository</value> </data> <data name="General_Version.Header" xml:space="preserve"> <value>Version</value> </data> <data name="General_VersionLastChecked.Text" xml:space="preserve"> <value>Last checked: </value> </data> <data name="General_SettingsBackupInfo_DateHeader.Text" xml:space="preserve"> <value>Created at:</value> </data> <data name="General_SettingsBackupAndRestoreStatusInfo.Header" xml:space="preserve"> <value>Backup information</value> </data> <data name="General_SettingsBackupInfo_SourceHeader.Text" xml:space="preserve"> <value>Source machine:</value> </data> <data name="General_SettingsBackupInfo_StatusHeader.Text" xml:space="preserve"> <value>Status:</value> </data> <data name="General_Version.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Version</value> </data> <data name="Admin_mode.Header" xml:space="preserve"> <value>Administrator mode</value> </data> <data name="FancyZones_RestoreSize.Content" xml:space="preserve"> <value>Restore the original size of windows when unsnapping</value> </data> <data name="ImageResizer_FallBackEncoderText.Header" xml:space="preserve"> <value>Fallback encoder</value> </data> <data name="ImageResizer_FileFormatDescription.Text" xml:space="preserve"> <value>The following parameters can be used:</value> </data> <data name="ImageResizer_FilenameFormatHeader.Header" xml:space="preserve"> <value>Filename format</value> </data> <data name="ImageResizer_FileModifiedDate.Header" xml:space="preserve"> <value>File modified timestamp</value> </data> <data name="ImageResizer_FileModifiedDate.Description" xml:space="preserve"> <value>Used as the 'modified timestamp' in the file properties</value> </data> <data name="ImageResizer_UseOriginalDate.Content" xml:space="preserve"> <value>Original file timestamp</value> </data> <data name="ImageResizer_UseResizeDate.Content" xml:space="preserve"> <value>Timestamp of resize action</value> </data> <data name="Encoding.Header" xml:space="preserve"> <value>Encoding</value> </data> <data name="KeyboardManager_RemapKeyboardButton.Description" xml:space="preserve"> <value>Remap keys to other keys or shortcuts</value> </data> <data name="KeyboardManager_RemapShortcutsButton.Description" xml:space="preserve"> <value>Remap shortcuts to other shortcuts or keys for all or specific applications</value> </data> <data name="General.ModuleDescription" xml:space="preserve"> <value>Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. Made with 💗 by Microsoft and the PowerToys community.</value> <comment>Windows refers to the OS</comment> </data> <data name="FancyZones_SpanZonesAcrossMonitors.Header" xml:space="preserve"> <value>Allow zones to span across monitors</value> </data> <data name="ImageResizer_Formatting_ActualHeight.Text" xml:space="preserve"> <value>Actual height</value> </data> <data name="ImageResizer_Formatting_ActualWidth.Text" xml:space="preserve"> <value>Actual width</value> </data> <data name="ImageResizer_Formatting_Filename.Text" xml:space="preserve"> <value>Original filename</value> </data> <data name="ImageResizer_Formatting_SelectedHeight.Text" xml:space="preserve"> <value>Selected height</value> </data> <data name="ImageResizer_Formatting_SelectedWidth.Text" xml:space="preserve"> <value>Selected width</value> </data> <data name="ImageResizer_Formatting_Sizename.Text" xml:space="preserve"> <value>Size name</value> </data> <data name="FancyZones_MoveWindowsBasedOnPositionCheckBoxControl.Content" xml:space="preserve"> <value>Move windows based on their position</value> <comment>Windows refers to application windows</comment> </data> <data name="GeneralSettings_NewVersionIsAvailable" xml:space="preserve"> <value>New update available</value> </data> <data name="GeneralSettings_VersionIsLatest" xml:space="preserve"> <value>PowerToys is up to date.</value> </data> <data name="FileExplorerPreview_IconThumbnail_GroupSettings.Header" xml:space="preserve"> <value>Thumbnail icon Preview</value> </data> <data name="FileExplorerPreview_IconThumbnail_GroupSettings.Description" xml:space="preserve"> <value>Select the file types for which thumbnail previews must be rendered.</value> </data> <data name="FileExplorerPreview_PreviewPane.Header" xml:space="preserve"> <value>Preview Pane</value> </data> <data name="FileExplorerPreview_PreviewPane.Description" xml:space="preserve"> <value>Select the file types which must be rendered in the Preview Pane. Ensure that Preview Pane is open by toggling the view with Alt + P in File Explorer.</value> <comment>Preview Pane and File Explorer are app/feature names in Windows. 'Alt + P' is a shortcut</comment> </data> <data name="FileExplorerPreview_RunAsAdminRequired.Title" xml:space="preserve"> <value>You need to run as administrator to modify these settings.</value> </data> <data name="FileExplorerPreview_RebootRequired.Title" xml:space="preserve"> <value>A reboot may be required for changes to these settings to take effect</value> </data> <data name="FileExplorerPreview_PreviewHandlerOutlookIncompatibility.Title" xml:space="preserve"> <value>Enabling the preview handlers will override other preview handlers already installed - there have been reports of incompatibility between Outlook and the PDF Preview Handler.</value> <comment>Outlook is the name of a Microsoft product</comment> </data> <data name="FileExplorerPreview_ThumbnailsMightNotAppearOnRemoteFolders.Title" xml:space="preserve"> <value>Thumbnails might not appear on paths managed by cloud storage solutions like OneDrive, since these solutions may get their thumbnails from the cloud instead of generating them locally.</value> <comment>OneDrive is the name of a Microsoft product</comment> </data> <data name="FancyZones_ExcludeApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> <comment>Don't translate outlook.exe</comment> </data> <data name="ImageResizer_FilenameFormatPlaceholder.PlaceholderText" xml:space="preserve"> <value>Example: %1 (%2)</value> </data> <data name="ImageResizer_FilenameParameters.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Filename parameters</value> </data> <data name="Radio_Theme_Dark.Content" xml:space="preserve"> <value>Dark</value> <comment>Dark refers to color, not weight</comment> </data> <data name="Radio_Theme_Light.Content" xml:space="preserve"> <value>Light</value> <comment>Light refers to color, not weight</comment> </data> <data name="Radio_Theme_Default.Content" xml:space="preserve"> <value>Windows default</value> <comment>Windows refers to the Operating system</comment> </data> <data name="Windows_Color_Settings.Content" xml:space="preserve"> <value>Windows color settings</value> <comment>Windows refers to the Operating system</comment> </data> <data name="ColorPicker_CopiedColorRepresentation.Header" xml:space="preserve"> <value>Default color format</value> </data> <data name="ColorPickerFirst.Content" xml:space="preserve"> <value>Pick a color and open editor</value> </data> <data name="EditorFirst.Content" xml:space="preserve"> <value>Open editor</value> </data> <data name="ColorPickerOnly.Content" xml:space="preserve"> <value>Only pick a color</value> </data> <data name="ColorPicker_ActivationAction.Header" xml:space="preserve"> <value>Activation behavior</value> </data> <data name="ColorFormats.Header" xml:space="preserve"> <value>Picker behavior</value> </data> <data name="ColorPicker_CopiedColorRepresentation.Description" xml:space="preserve"> <value>This format will be copied to your clipboard</value> </data> <data name="KBM_KeysCannotBeRemapped.Text" xml:space="preserve"> <value>Learn more about remapping limitations</value> <comment>This is a link that will discuss what is and is not possible for Keyboard manager to remap</comment> </data> <data name="FancyZones_Editor_GroupSettings.Header" xml:space="preserve"> <value>Editor</value> <comment>refers to the FancyZone editor</comment> </data> <data name="FancyZones_WindowBehavior_GroupSettings.Header" xml:space="preserve"> <value>Window behavior</value> </data> <data name="FancyZones_WindowBehavior_GroupSettings.Description" xml:space="preserve"> <value>Manage how windows behave when using FancyZones</value> </data> <data name="FancyZones_Windows.Header" xml:space="preserve"> <value>Windows</value> <comment>Do translate: refers to a set of application windows, not the product name</comment> </data> <data name="PowerRename_BehaviorHeader.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="PowerRename_Toggle_UseBoostLib.Header" xml:space="preserve"> <value>Use Boost library</value> <comment>Boost is a product name, should not be translated</comment> </data> <data name="PowerRename_Toggle_UseBoostLib.Description" xml:space="preserve"> <value>Provides extended features but may use different regex syntax</value> <comment>Boost is a product name, should not be translated</comment> </data> <data name="MadeWithOssLove.Text" xml:space="preserve"> <value>Made with 💗 by Microsoft and the PowerToys community.</value> </data> <data name="ColorPicker_ColorFormats.Header" xml:space="preserve"> <value>Color formats</value> </data> <data name="ColorPicker_ColorFormats.Description" xml:space="preserve"> <value>Configure the color formats (edit, delete, hide, reorder them)</value> </data> <data name="MoveUp.Text" xml:space="preserve"> <value>Move up</value> </data> <data name="MoveDown.Text" xml:space="preserve"> <value>Move down</value> </data> <data name="ColorPickerAddNewFormat.Content" xml:space="preserve"> <value>Add new format</value> </data> <data name="NewColorFormat.Header" xml:space="preserve"> <value>Format</value> </data> <data name="NewColorName.Header" xml:space="preserve"> <value>Name</value> </data> <data name="AddCustomColorFormat" xml:space="preserve"> <value>Add custom color format</value> </data> <data name="ColorFormatSave" xml:space="preserve"> <value>Save</value> </data> <data name="EditCustomColorFormat" xml:space="preserve"> <value>Edit custom color format</value> </data> <data name="ColorFormatUpdate" xml:space="preserve"> <value>Update</value> </data> <data name="CustomColorFormatDefaultName" xml:space="preserve"> <value>My Format</value> </data> <data name="ColorFormatDialog.SecondaryButtonText" xml:space="preserve"> <value>Cancel</value> </data> <data name="ColorFormatEditorHelpline1.Text" xml:space="preserve"> <value>The following parameters can be used:</value> </data> <data name="Help_red" xml:space="preserve"> <value>red</value> </data> <data name="Help_green" xml:space="preserve"> <value>green</value> </data> <data name="Help_blue" xml:space="preserve"> <value>blue</value> </data> <data name="Help_alpha" xml:space="preserve"> <value>alpha</value> </data> <data name="Help_cyan" xml:space="preserve"> <value>cyan</value> </data> <data name="Help_magenta" xml:space="preserve"> <value>magenta</value> </data> <data name="Help_yellow" xml:space="preserve"> <value>yellow</value> </data> <data name="Help_black_key" xml:space="preserve"> <value>black key</value> </data> <data name="Help_hue" xml:space="preserve"> <value>hue</value> </data> <data name="Help_hueNat" xml:space="preserve"> <value>hue (natural)</value> </data> <data name="Help_saturationI" xml:space="preserve"> <value>saturation (HSI)</value> </data> <data name="Help_saturationL" xml:space="preserve"> <value>saturation (HSL)</value> </data> <data name="Help_saturationB" xml:space="preserve"> <value>saturation (HSB)</value> </data> <data name="Help_brightness" xml:space="preserve"> <value>brightness</value> </data> <data name="Help_intensity" xml:space="preserve"> <value>intensity</value> </data> <data name="Help_lightnessNat" xml:space="preserve"> <value>lightness (nat)</value> </data> <data name="Help_lightnessCIE" xml:space="preserve"> <value>lightness (CIE)</value> </data> <data name="Help_value" xml:space="preserve"> <value>value</value> </data> <data name="Help_whiteness" xml:space="preserve"> <value>whiteness</value> </data> <data name="Help_blackness" xml:space="preserve"> <value>blackness</value> </data> <data name="Help_chromaticityA" xml:space="preserve"> <value>chromaticityA</value> </data> <data name="Help_chromaticityB" xml:space="preserve"> <value>chromaticityB</value> </data> <data name="Help_X_value" xml:space="preserve"> <value>X value</value> </data> <data name="Help_Y_value" xml:space="preserve"> <value>Y value</value> </data> <data name="Help_Z_value" xml:space="preserve"> <value>Z value</value> </data> <data name="Help_decimal_value_RGB" xml:space="preserve"> <value>decimal value (RGB)</value> </data> <data name="Help_decimal_value_BGR" xml:space="preserve"> <value>decimal value (BGR)</value> </data> <data name="Help_color_name" xml:space="preserve"> <value>color name</value> </data> <data name="ColorFormatEditorHelpline2.Text" xml:space="preserve"> <value>The red, green, blue and alpha values can be formatted to the following formats:</value> </data> <data name="Help_byte" xml:space="preserve"> <value>byte value (default)</value> </data> <data name="Help_hexL1" xml:space="preserve"> <value>hex lowercase one digit</value> </data> <data name="Help_hexU1" xml:space="preserve"> <value>hex uppercase one digit</value> </data> <data name="Help_hexL2" xml:space="preserve"> <value>hex lowercase two digits</value> </data> <data name="Help_hexU2" xml:space="preserve"> <value>hex uppercase two digits</value> </data> <data name="Help_floatWith" xml:space="preserve"> <value>float with leading zero</value> </data> <data name="Help_floatWithout" xml:space="preserve"> <value>float without leading zero</value> </data> <data name="ColorFormatEditorHelpline3.Text" xml:space="preserve"> <value>Example: %ReX means red value in hex uppercase two digits format.</value> </data> <data name="ColorPicker_ShowColorName.Header" xml:space="preserve"> <value>Show color name</value> </data> <data name="ColorPicker_ShowColorName.Description" xml:space="preserve"> <value>This will show the name of the color when picking a color</value> </data> <data name="ImageResizer_DefaultSize_Large" xml:space="preserve"> <value>Large</value> <comment>The size of the image</comment> </data> <data name="ImageResizer_DefaultSize_Medium" xml:space="preserve"> <value>Medium</value> <comment>The size of the image</comment> </data> <data name="ImageResizer_DefaultSize_Phone" xml:space="preserve"> <value>Phone</value> <comment>The size of the image referring to a Mobile Phone typical image size</comment> </data> <data name="ImageResizer_DefaultSize_Small" xml:space="preserve"> <value>Small</value> <comment>The size of the image</comment> </data> <data name="FancyZones_MoveWindowBasedOnRelativePosition_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Windows key + Up, down, left or right arrow key to move windows based on relative position</value> </data> <data name="FancyZones_MoveWindowLeftRightBasedOnZoneIndex_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Windows key + Left or right arrow keys to move windows based on zone index</value> </data> <data name="FancyZones_MoveWindowBasedOnRelativePosition_Description.Text" xml:space="preserve"> <value>Windows key +    or </value> <comment>Do not loc the icons (hex numbers)</comment> </data> <data name="FancyZones_MoveWindowLeftRightBasedOnZoneIndex_Description.Text" xml:space="preserve"> <value>Windows key +  or </value> <comment>Do not loc the icons (hex numbers)</comment> </data> <data name="FancyZones_MoveWindowBasedOnRelativePosition.Text" xml:space="preserve"> <value>Relative position</value> </data> <data name="FancyZones_MoveWindow.Header" xml:space="preserve"> <value>Move windows based on</value> </data> <data name="FancyZones_MoveWindowLeftRightBasedOnZoneIndex.Text" xml:space="preserve"> <value>Zone index</value> </data> <data name="ColorPicker_Editor.Header" xml:space="preserve"> <value>Color formats</value> </data> <data name="FancyZones_OverlappingZonesClosestCenter.Content" xml:space="preserve"> <value>Activate the zone whose center is closest to the cursor</value> </data> <data name="FancyZones_OverlappingZonesLargest.Content" xml:space="preserve"> <value>Activate the largest zone by area</value> </data> <data name="FancyZones_OverlappingZonesPositional.Content" xml:space="preserve"> <value>Split the overlapped area into multiple activation targets</value> </data> <data name="FancyZones_OverlappingZonesSmallest.Content" xml:space="preserve"> <value>Activate the smallest zone by area</value> </data> <data name="FancyZones_OverlappingZones.Header" xml:space="preserve"> <value>When multiple zones overlap</value> </data> <data name="PowerLauncher_Plugins.Header" xml:space="preserve"> <value>Plugins</value> </data> <data name="PowerLauncher_ActionKeyword.Header" xml:space="preserve"> <value>Direct activation command</value> </data> <data name="PowerLauncher_AuthoredBy.Text" xml:space="preserve"> <value>Authored by</value> <comment>example: Authored by Microsoft</comment> </data> <data name="PowerLauncher_IncludeInGlobalResultTitle.Text" xml:space="preserve"> <value>Include in global result</value> </data> <data name="PowerLauncher_IncludeInGlobalResultDescription.Text" xml:space="preserve"> <value>Show results on queries without direct activation command</value> </data> <data name="PowerLauncher_EnablePluginToggle.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Enable plugin</value> </data> <data name="PowerLauncher_EnablePluginToggle.OnContent" xml:space="preserve"> <value>On</value> </data> <data name="PowerLauncher_EnablePluginToggle.OffContent" xml:space="preserve"> <value>Off</value> </data> <data name="Run_AdditionalOptions.Text" xml:space="preserve"> <value>Additional options</value> </data> <data name="Run_NotAccessibleWarning.Title" xml:space="preserve"> <value>Please define an activation command or allow this plugin to be used in the global results.</value> </data> <data name="Run_AllPluginsDisabled.Title" xml:space="preserve"> <value>PowerToys Run can't provide any results without plugins</value> </data> <data name="Run_AllPluginsDisabled.Message" xml:space="preserve"> <value>Enable at least one plugin to get started</value> </data> <data name="Run_PluginUse.Header" xml:space="preserve"> <value>Plugins</value> </data> <data name="Run_PluginUseDescription.Text" xml:space="preserve"> <value>Include or remove plugins from the global results, change the direct activation phrase and configure additional options</value> </data> <data name="Run_PositionAppearance_GroupSettings.Header" xml:space="preserve"> <value>Position &amp; appearance</value> </data> <data name="Run_PositionHeader.Header" xml:space="preserve"> <value>Preferred monitor position</value> <comment>as in Show PowerToys Run on primary monitor</comment> </data> <data name="Run_PositionHeader.Description" xml:space="preserve"> <value>If multiple monitors are in use, PowerToys Run can be launched on the desired monitor</value> <comment>as in Show PowerToys Run on primary monitor</comment> </data> <data name="Run_Radio_Position_Cursor.Content" xml:space="preserve"> <value>Monitor with mouse cursor</value> </data> <data name="Run_Radio_Position_Focus.Content" xml:space="preserve"> <value>Monitor with focused window</value> </data> <data name="Run_Radio_Position_Primary_Monitor.Content" xml:space="preserve"> <value>Primary monitor</value> </data> <data name="Run_PluginsLoading.Text" xml:space="preserve"> <value>Plugins are loading...</value> </data> <data name="ColorPicker_ButtonDown.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Move the color down</value> </data> <data name="ColorPicker_ButtonUp.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Move the color up</value> </data> <data name="FancyZones_FlashZonesOnQuickSwitch.Content" xml:space="preserve"> <value>Flash zones when switching layout</value> </data> <data name="FancyZones_Layouts.Header" xml:space="preserve"> <value>Layouts</value> </data> <data name="FancyZones_QuickLayoutSwitch.Header" xml:space="preserve"> <value>Enable quick layout switch</value> </data> <data name="FancyZones_QuickLayoutSwitch.Description" xml:space="preserve"> <value>Layout-specific shortcuts can be configured in the editor</value> </data> <data name="FancyZones_QuickLayoutSwitch_GroupSettings.Text" xml:space="preserve"> <value>Quick layout switch</value> </data> <data name="Activation_Shortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="Activation_Shortcut.Description" xml:space="preserve"> <value>Customize the shortcut to activate this module</value> </data> <data name="Oobe_GetStarted.Text" xml:space="preserve"> <value>Let's get started!</value> </data> <data name="Oobe_PowerToysDescription.Text" xml:space="preserve"> <value>Welcome to PowerToys! These overviews will help you quickly learn the basics of all our utilities.</value> </data> <data name="Oobe_GettingStarted.Text" xml:space="preserve"> <value>Getting started</value> </data> <data name="Oobe_Launch.Text" xml:space="preserve"> <value>Launch</value> </data> <data name="Launch_ColorPicker.Content" xml:space="preserve"> <value>Launch Color Picker</value> </data> <data name="Oobe_LearnMore.Text" xml:space="preserve"> <value>Learn more about</value> </data> <data name="Oobe_ColorPicker.Description" xml:space="preserve"> <value>Color Picker is a system-wide color selection tool for Windows that enables you to pick colors from any currently running application and automatically copies it in a configurable format to your clipboard.</value> </data> <data name="Oobe_FancyZones.Description" xml:space="preserve"> <value>FancyZones is a window manager that makes it easy to create complex window layouts and quickly position windows into those layouts.</value> </data> <data name="Oobe_FileLocksmith.Description" xml:space="preserve"> <value>File Locksmith lists which processes are using the selected files or directories and allows closing those processes.</value> </data> <data name="Oobe_FileExplorer.Description" xml:space="preserve"> <value>PowerToys introduces add-ons to the Windows File Explorer that will enable files like Markdown (.md), PDF (.pdf), SVG (.svg), STL (.stl), G-code (.gcode) and developer files to be viewed in the preview pane. It introduces File Explorer thumbnail support for a number of these file types as well.</value> </data> <data name="Oobe_ImageResizer.Description" xml:space="preserve"> <value>Image Resizer is a Windows shell extension for simple bulk image-resizing.</value> </data> <data name="Oobe_KBM.Description" xml:space="preserve"> <value>Keyboard Manager allows you to customize the keyboard to be more productive by remapping keys and creating your own keyboard shortcuts.</value> </data> <data name="Oobe_MouseWithoutBorders.Description" xml:space="preserve"> <value>Mouse Without Borders enables using the mouse pointer, keyboard, clipboard and drag and drop between machines in the same local network.</value> </data> <data name="Oobe_PowerRename.Description" xml:space="preserve"> <value>PowerRename enables you to perform simple bulk renaming, searching and replacing file names.</value> </data> <data name="Oobe_Run.Description" xml:space="preserve"> <value>PowerToys Run is a quick launcher for power users that contains some additional features without sacrificing performance.</value> </data> <data name="Oobe_MeasureTool.Description" xml:space="preserve"> <value>Screen Ruler is a quick and easy way to measure pixels on your screen.</value> </data> <data name="Oobe_ShortcutGuide.Description" xml:space="preserve"> <value>Shortcut Guide presents the user with a listing of available shortcuts for the current state of the desktop.</value> </data> <data name="Oobe_VideoConference.Description" xml:space="preserve"> <value>Video Conference Mute allows users to quickly mute the microphone and turn off the camera while on a conference call with a single keystroke, regardless of what application has focus on your computer.</value> </data> <data name="Oobe_MouseUtils.Description" xml:space="preserve"> <value>A collection of utilities to enhance your mouse.</value> <comment>Mouse as in the hardware peripheral</comment> </data> <data name="Oobe_Overview.Description" xml:space="preserve"> <value>Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. Take a moment to preview the various utilities listed or view our comprehensive documentation.</value> </data> <data name="Oobe_Overview_DescriptionLinkText.Text" xml:space="preserve"> <value>Documentation on Microsoft Docs</value> </data> <data name="ReleaseNotes.Content" xml:space="preserve"> <value>Release notes</value> </data> <data name="Oobe_ColorPicker_HowToUse.Text" xml:space="preserve"> <value>to open Color Picker.</value> </data> <data name="Oobe_ColorPicker_TipsAndTricks.Text" xml:space="preserve"> <value>To select a color with more precision, **scroll the mouse wheel** to zoom in.</value> </data> <data name="Oobe_FancyZones_HowToUse.Text" xml:space="preserve"> <value>**Shift** + **drag the window** to snap a window to a zone, and release the window in the desired zone.</value> </data> <data name="Oobe_FancyZones_HowToUse_Shortcut.Text" xml:space="preserve"> <value>to open the FancyZones editor.</value> </data> <data name="Oobe_FancyZones_TipsAndTricks.Text" xml:space="preserve"> <value>Snap a window to multiple zones by holding the **Ctrl** key (while also holding **Shift**) when dragging a window.</value> </data> <data name="Oobe_FileLocksmith_HowToUse.Text" xml:space="preserve"> <value>In File Explorer, right-click one or more selected files and select **What's using this file?** from the context menu.</value> </data> <data name="Oobe_FileLocksmith_TipsAndTricks.Text" xml:space="preserve"> <value>Press the **Restart Elevated** button from the File Locksmith UI to also get information on elevated processes that might be using the files.</value> </data> <data name="Oobe_FileExplorer_HowToEnable.Text" xml:space="preserve"> <value>Select **View** which is located at the top of File Explorer, followed by **Show**, and then **Preview pane**. From there, simply click on one of the supported files in the File Explorer and observe the content on the preview pane!</value> </data> <data name="Oobe_HowToCreateMappings.Text" xml:space="preserve"> <value>How to create mappings</value> </data> <data name="Oobe_HowToEnable.Text" xml:space="preserve"> <value>How to enable</value> </data> <data name="Oobe_HowToLaunch.Text" xml:space="preserve"> <value>How to launch</value> </data> <data name="Oobe_HowToUse.Text" xml:space="preserve"> <value>How to use</value> </data> <data name="Oobe_ImageResizer_HowToLaunch.Text" xml:space="preserve"> <value>In File Explorer, right-click one or more image files and select **Resize pictures** from the context menu.</value> </data> <data name="Oobe_ImageResizer_TipsAndTricks.Text" xml:space="preserve"> <value>Want a custom size? You can add them in the PowerToys Settings!</value> </data> <data name="Oobe_KBM_HowToCreateMappings.Text" xml:space="preserve"> <value>Launch **PowerToys Settings**, navigate to the Keyboard Manager menu, and select either **Remap a key** or **Remap a shortcut**.</value> </data> <data name="Oobe_KBM_TipsAndTricks.Text" xml:space="preserve"> <value>Want to only have a shortcut work for a single application? Use the Target App field when creating the shortcut remapping.</value> </data> <data name="Oobe_MouseWithoutBorders_HowToUse.Text" xml:space="preserve"> <value>Use the Settings screen on each machine to connect to the other machines using the same key. If a connection is not working, it may be necessary to add an exception to the Windows Firewall.</value> </data> <data name="Oobe_MouseWithoutBorders_TipsAndTricks.Text" xml:space="preserve"> <value>Use the service option in Settings to install a service enabling Mouse Without Borders to function even in the lock screen.</value> </data> <data name="Oobe_PowerRename_HowToUse.Text" xml:space="preserve"> <value>In File Explorer, right-click one or more selected files and select **PowerRename** from the context menu.</value> </data> <data name="Oobe_PowerRename_TipsAndTricks.Text" xml:space="preserve"> <value>PowerRename supports searching for files using regular expressions to enable more advanced renaming functionalities.</value> </data> <data name="Oobe_Run_HowToLaunch.Text" xml:space="preserve"> <value>to open Run and just start typing.</value> </data> <data name="Oobe_Run_TipsAndTricks.Text" xml:space="preserve"> <value>PowerToys Run supports various action keys to funnel search queries for a specific subset of results. Typing `&lt;` searches for running processes only, `?` will search only for file, or `.` for installed applications! See PowerToys documentation for the complete set of 'Action Keys' available.</value> </data> <data name="Oobe_ShortcutGuide_HowToLaunch.Text" xml:space="preserve"> <value>to open Shortcut Guide, press it again to close or press **Esc**.</value> </data> <data name="Oobe_TipsAndTricks.Text" xml:space="preserve"> <value>Tips &amp; tricks</value> </data> <data name="Oobe_VideoConference_ToggleMicVid.Text" xml:space="preserve"> <value>to toggle both your microphone and video</value> </data> <data name="Oobe_VideoConference_ToggleMic.Text" xml:space="preserve"> <value>to toggle your microphone</value> </data> <data name="Oobe_VideoConference_PushToTalkMic.Text" xml:space="preserve"> <value>to toggle your microphone until key release</value> </data> <data name="Oobe_VideoConference_ToggleVid.Text" xml:space="preserve"> <value>to toggle your video</value> </data> <data name="Oobe_MeasureTool_Activation.Text" xml:space="preserve"> <value>to bring up the Screen Ruler command bar.</value> </data> <data name="Oobe_MeasureTool_HowToLaunch.Text" xml:space="preserve"> <value>The Bounds mode lets you select a specific area to measure. You can also shift-drag an area to persist in on screen. The various Spacing modes allows tracing similar pixels along horizontal and vertical axes with a customizable pixel tolerance threshold (use settings or mouse wheel to adjust it).</value> </data> <data name="Oobe_MeasureTool.Title" xml:space="preserve"> <value>Screen Ruler</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_ColorPicker.Title" xml:space="preserve"> <value>Color Picker</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_FancyZones.Title" xml:space="preserve"> <value>FancyZones</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_FileLocksmith.Title" xml:space="preserve"> <value>File Locksmith</value> </data> <data name="Oobe_ImageResizer.Title" xml:space="preserve"> <value>Image Resizer</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_KBM.Title" xml:space="preserve"> <value>Keyboard Manager</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_MouseWithoutBorders.Title" xml:space="preserve"> <value>Mouse Without Borders</value> <comment>Product name. Do not localize this string</comment> </data> <data name="Oobe_PowerRename.Title" xml:space="preserve"> <value>PowerRename</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_Run.Title" xml:space="preserve"> <value>PowerToys Run</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_ShortcutGuide.Title" xml:space="preserve"> <value>Shortcut Guide</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_VideoConference.Title" xml:space="preserve"> <value>Video Conference Mute</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_Overview.Title" xml:space="preserve"> <value>Welcome</value> </data> <data name="Oobe_WhatsNew.Text" xml:space="preserve"> <value>What's new</value> </data> <data name="Oobe_WhatsNew_LoadingError.Title" xml:space="preserve"> <value>Couldn't load the release notes.</value> </data> <data name="Oobe_WhatsNew_LoadingError.Message" xml:space="preserve"> <value>Please check your internet connection.</value> </data> <data name="Oobe_WhatsNew_ProxyAuthenticationWarning.Title" xml:space="preserve"> <value>Couldn't load the release notes.</value> </data> <data name="Oobe_WhatsNew_ProxyAuthenticationWarning.Message" xml:space="preserve"> <value>Your proxy server requires authentication.</value> </data> <data name="Oobe_WhatsNew_DetailedReleaseNotesLink.Text" xml:space="preserve"> <value>See more detailed release notes on GitHub</value> <comment>Don't loc "GitHub", it's the name of a product</comment> </data> <data name="OOBE_Settings.Content" xml:space="preserve"> <value>Open Settings</value> </data> <data name="Oobe_NavViewItem.Content" xml:space="preserve"> <value>Welcome to PowerToys</value> <comment>Don't loc "PowerToys"</comment> </data> <data name="Feedback_NavViewItem.Content" xml:space="preserve"> <value>Give feedback</value> </data> <data name="OobeWindow_Title" xml:space="preserve"> <value>Welcome to PowerToys</value> </data> <data name="OobeWindow_TitleTxt.Text" xml:space="preserve"> <value>Welcome to PowerToys</value> </data> <data name="SettingsWindow_Title" xml:space="preserve"> <value>PowerToys Settings</value> <comment>Title of the settings window when running as user</comment> </data> <data name="Awake.ModuleTitle" xml:space="preserve"> <value>Awake</value> </data> <data name="Awake.ModuleDescription" xml:space="preserve"> <value>A convenient way to keep your PC awake on-demand.</value> </data> <data name="Awake_EnableSettingsCard.Header" xml:space="preserve"> <value>Enable Awake</value> <comment>Awake is a product name, do not loc</comment> </data> <data name="Awake_NoKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep using the selected power plan</value> </data> <data name="Awake_IndefiniteKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep awake indefinitely</value> </data> <data name="Awake_TemporaryKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep awake for a time interval</value> </data> <data name="Awake_ExpirableKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep awake until expiration</value> </data> <data name="Awake_DisplaySettingsCard.Header" xml:space="preserve"> <value>Keep screen on</value> </data> <data name="Awake_DisplaySettingsCard.Description" xml:space="preserve"> <value>This setting is only available when keeping the PC awake</value> </data> <data name="Awake_ExpirationSettingsExpander.Description" xml:space="preserve"> <value>Keep custom awake state until a specific date and time</value> </data> <data name="Awake_ModeSettingsCard.Header" xml:space="preserve"> <value>Mode</value> </data> <data name="Awake_BehaviorSettingsGroup.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="Awake_IntervalHoursInput.Header" xml:space="preserve"> <value>Hours</value> </data> <data name="Awake_IntervalMinutesInput.Header" xml:space="preserve"> <value>Minutes</value> </data> <data name="Awake_ExpirationSettingsExpander_Date.Header" xml:space="preserve"> <value>End date</value> </data> <data name="Awake_ExpirationSettingsExpander_Time.Header" xml:space="preserve"> <value>End time</value> </data> <data name="Oobe_Awake.Title" xml:space="preserve"> <value>Awake</value> <comment>Module name, do not loc</comment> </data> <data name="Oobe_Awake.Description" xml:space="preserve"> <value>Awake is a Windows tool designed to keep your PC awake on-demand without having to manage its power settings. This behavior can be helpful when running time-consuming tasks while ensuring that your PC does not go to sleep or turn off its screens.</value> </data> <data name="Oobe_Awake_HowToUse.Text" xml:space="preserve"> <value>Open **PowerToys Settings** and enable Awake</value> </data> <data name="Oobe_Awake_TipsAndTricks.Text" xml:space="preserve"> <value>You can always change modes quickly by **right-clicking the Awake icon** in the system tray.</value> </data> <data name="General_FailedToDownloadTheNewVersion.Title" xml:space="preserve"> <value>An error occurred trying to install this update:</value> </data> <data name="General_InstallNow.Content" xml:space="preserve"> <value>Install now</value> </data> <data name="General_ReadMore.Text" xml:space="preserve"> <value>Read more</value> </data> <data name="General_NewVersionAvailable.Title" xml:space="preserve"> <value>An update is available:</value> </data> <data name="General_Downloading.Text" xml:space="preserve"> <value>Downloading...</value> </data> <data name="General_TryAgainToDownloadAndInstall.Content" xml:space="preserve"> <value>Try again to download and install</value> </data> <data name="General_CheckingForUpdates.Text" xml:space="preserve"> <value>Checking for updates...</value> </data> <data name="General_NewVersionReadyToInstall.Title" xml:space="preserve"> <value>An update is ready to install:</value> </data> <data name="General_UpToDate.Title" xml:space="preserve"> <value>PowerToys is up to date</value> </data> <data name="General_CantCheck.Title" xml:space="preserve"> <value>Network error. Please try again later</value> </data> <data name="General_DownloadAndInstall.Content" xml:space="preserve"> <value>Download &amp; install</value> </data> <data name="ImageResizer_Fit_Fill_ThirdPersonSingular" xml:space="preserve"> <value>Fills</value> </data> <data name="ImageResizer_Fit_Fit_ThirdPersonSingular" xml:space="preserve"> <value>Fits within</value> </data> <data name="ImageResizer_Fit_Stretch_ThirdPersonSingular" xml:space="preserve"> <value>Stretches to</value> </data> <data name="ImageResizer_Unit_Centimeter" xml:space="preserve"> <value>Centimeters</value> </data> <data name="ImageResizer_Unit_Inch" xml:space="preserve"> <value>Inches</value> </data> <data name="ImageResizer_Unit_Percent" xml:space="preserve"> <value>Percent</value> </data> <data name="ImageResizer_Unit_Pixel" xml:space="preserve"> <value>Pixels</value> </data> <data name="EditButton.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Edit</value> </data> <data name="ImageResizer_EditSize.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Edit size</value> </data> <data name="No" xml:space="preserve"> <value>No</value> <comment>Label of a cancel button</comment> </data> <data name="Delete_Dialog_Description" xml:space="preserve"> <value>Are you sure you want to delete this item?</value> </data> <data name="Yes" xml:space="preserve"> <value>Yes</value> <comment>Label of a confirmation button</comment> </data> <data name="SeeWhatsNew.Content" xml:space="preserve"> <value>See what's new</value> </data> <data name="Awake_ModeSettingsCard.Description" xml:space="preserve"> <value>Manage the state of your device when Awake is active</value> </data> <data name="ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="Enable_ColorFormat.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Enable colorformat</value> </data> <data name="More_Options_Button.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>More options</value> </data> <data name="More_Options_ButtonTooltip.Text" xml:space="preserve"> <value>More options</value> </data> <data name="To.Text" xml:space="preserve"> <value>to</value> <comment>as in: from x to y</comment> </data> <data name="LearnMore_Awake.Text" xml:space="preserve"> <value>Learn more about Awake</value> <comment>Awake is a product name, do not loc</comment> </data> <data name="LearnMore_ColorPicker.Text" xml:space="preserve"> <value>Learn more about Color Picker</value> <comment>Color Picker is a product name, do not loc</comment> </data> <data name="LearnMore_FancyZones.Text" xml:space="preserve"> <value>Learn more about FancyZones</value> <comment>FancyZones is a product name, do not loc</comment> </data> <data name="LearnMore_FileLocksmith.Text" xml:space="preserve"> <value>Learn more about File Locksmith</value> </data> <data name="LearnMore_ImageResizer.Text" xml:space="preserve"> <value>Learn more about Image Resizer</value> <comment>Image Resizer is a product name, do not loc</comment> </data> <data name="LearnMore_KBM.Text" xml:space="preserve"> <value>Learn more about Keyboard Manager</value> <comment>Keyboard Manager is a product name, do not loc</comment> </data> <data name="LearnMore_MouseUtils.Text" xml:space="preserve"> <value>Learn more about Mouse utilities</value> <comment>Mouse utilities is a product name, do not loc</comment> </data> <data name="LearnMore_PastePlain.Text" xml:space="preserve"> <value>Learn more about Paste as Plain Text</value> <comment> Paste as Plain Text is the name of the module. </comment> </data> <data name="LearnMore_MouseWithoutBorders.Text" xml:space="preserve"> <value>Learn more about Mouse Without Borders</value> <comment>Mouse Without Borders is the name of the module. </comment> </data> <data name="LearnMore_PowerPreview.Text" xml:space="preserve"> <value>Learn more about File Explorer add-ons</value> <comment>File Explorer is a product name, localize as Windows does</comment> </data> <data name="LearnMore_Peek.Text" xml:space="preserve"> <value>Learn more about Peek</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="LearnMore_PowerRename.Text" xml:space="preserve"> <value>Learn more about PowerRename</value> <comment>PowerRename is a product name, do not loc</comment> </data> <data name="LearnMore_Run.Text" xml:space="preserve"> <value>Learn more about PowerToys Run</value> <comment>PowerToys Run is a product name, do not loc</comment> </data> <data name="LearnMore_MeasureTool.Text" xml:space="preserve"> <value>Learn more about Screen Ruler</value> <comment>Screen Ruler is a product name, do not loc</comment> </data> <data name="LearnMore_ShortcutGuide.Text" xml:space="preserve"> <value>Learn more about Shortcut Guide</value> <comment>Shortcut Guide is a product name, do not loc</comment> </data> <data name="LearnMore_VCM.Text" xml:space="preserve"> <value>Learn more about Video Conference Mute</value> <comment>Video Conference Mute is a product name, do not loc</comment> </data> <data name="Oobe_FileExplorer.Title" xml:space="preserve"> <value>File Explorer add-ons</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_MouseUtils.Title" xml:space="preserve"> <value>Mouse utilities</value> <comment>Mouse as in the hardware peripheral</comment> </data> <data name="Oobe_MouseUtils_FindMyMouse.Text" xml:space="preserve"> <value>Find My Mouse</value> <comment>Mouse as in the hardware peripheral</comment> </data> <data name="Oobe_MouseUtils_FindMyMouse_Description.Text" xml:space="preserve"> <value>Focus the mouse pointer pressing the Ctrl key twice, using a custom shortcut or shaking the mouse.</value> <comment>Mouse as in the hardware peripheral. Key as in a keyboard key</comment> </data> <data name="Oobe_MouseUtils_MouseHighlighter.Text" xml:space="preserve"> <value>Mouse Highlighter</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MouseHighlighter_Description.Text" xml:space="preserve"> <value>Use a keyboard shortcut to highlight left and right mouse clicks.</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MousePointerCrosshairs.Text" xml:space="preserve"> <value>Mouse Pointer Crosshairs</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MousePointerCrosshairs_Description.Text" xml:space="preserve"> <value>Draw crosshairs centered around the mouse pointer.</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MouseJump.Text" xml:space="preserve"> <value>Mouse Jump</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MouseJump_Description.Text" xml:space="preserve"> <value>Jump the mouse pointer quickly to anywhere on your desktop.</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Launch_Run.Content" xml:space="preserve"> <value>Launch PowerToys Run</value> </data> <data name="Launch_ShortcutGuide.Content" xml:space="preserve"> <value>Launch Shortcut Guide</value> </data> <data name="ColorPicker_ColorFormat_ToggleSwitch.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Show format in editor</value> </data> <data name="GeneralPage_Documentation.Text" xml:space="preserve"> <value>Documentation</value> </data> <data name="PowerLauncher_SearchList.PlaceholderText" xml:space="preserve"> <value>Search this list</value> </data> <data name="PowerLauncher_SearchList.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Search this list</value> </data> <data name="Awake.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="ColorPicker.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="General.SecondaryLinksHeader" xml:space="preserve"> <value>Related information</value> </data> <data name="ImageResizer.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="MouseUtils.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="PowerLauncher.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="PowerRename.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="EditTooltip.Text" xml:space="preserve"> <value>Edit</value> </data> <data name="RemoveTooltip.Text" xml:space="preserve"> <value>Remove</value> </data> <data name="Activation_Shortcut_Cancel" xml:space="preserve"> <value>Cancel</value> </data> <data name="Activation_Shortcut_Description" xml:space="preserve"> <value>Press a combination of keys to change this shortcut</value> </data> <data name="Activation_Shortcut_With_Disable_Description" xml:space="preserve"> <value>Press a combination of keys to change this shortcut. Right-click to remove the key combination, thereby deactivating the shortcut.</value> </data> <data name="Activation_Shortcut_Reset" xml:space="preserve"> <value>Reset</value> </data> <data name="Activation_Shortcut_Save" xml:space="preserve"> <value>Save</value> </data> <data name="Activation_Shortcut_Title" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="InvalidShortcut.Title" xml:space="preserve"> <value>Invalid shortcut</value> </data> <data name="InvalidShortcutWarningLabel.Text" xml:space="preserve"> <value>Only shortcuts that start with **Windows key**, **Ctrl**, **Alt** or **Shift** are valid.</value> <comment>The ** sequences are used for text formatting of the key names. Don't remove them on translation.</comment> </data> <data name="FancyZones_SpanZonesAcrossMonitors.Description" xml:space="preserve"> <value>All monitors must have the same DPI scaling and will be treated as one large combined rectangle which contains all monitors</value> </data> <data name="ImageResizer_DefaultSize_NewSizePrefix" xml:space="preserve"> <value>New size</value> <comment>First part of the default name of new sizes that can be added in PT's settings ui.</comment> </data> <data name="Awake_IntervalSettingsCard.Header" xml:space="preserve"> <value>Interval before returning to the previous awakeness state</value> </data> <data name="Awake_ExpirationSettingsExpander.Header" xml:space="preserve"> <value>End date and time</value> </data> <data name="MouseUtils.ModuleTitle" xml:space="preserve"> <value>Mouse utilities</value> </data> <data name="MouseUtils.ModuleDescription" xml:space="preserve"> <value>A collection of mouse utilities.</value> </data> <data name="MouseUtils_FindMyMouse.Header" xml:space="preserve"> <value>Find My Mouse</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_FindMyMouse.Description" xml:space="preserve"> <value>Find My Mouse highlights the position of the cursor when pressing the Ctrl key twice, using a custom shortcut or when shaking the mouse.</value> <comment>"Ctrl" is a keyboard key. "Find My Mouse" is the name of the utility</comment> </data> <data name="MouseUtils_Enable_FindMyMouse.Header" xml:space="preserve"> <value>Enable Find My Mouse</value> <comment>"Find My Mouse" is the name of the utility.</comment> </data> <data name="MouseUtils_FindMyMouse_ActivationMethod.Header" xml:space="preserve"> <value>Activation method</value> </data> <data name="MouseUtils_FindMyMouse_ActivationDoubleControlPress.Content" xml:space="preserve"> <value>Press Left Control twice</value> <comment>Left control is the physical key on the keyboard.</comment> </data> <data name="MouseUtils_FindMyMouse_ActivationShakeMouse.Content" xml:space="preserve"> <value>Shake mouse</value> <comment>Mouse is the hardware peripheral.</comment> </data> <data name="MouseUtils_FindMyMouse_ExcludedApps.Description" xml:space="preserve"> <value>Prevents module activation when an excluded application is the foreground application</value> </data> <data name="MouseUtils_FindMyMouse_ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="MouseUtils_FindMyMouse_ExcludedApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> </data> <data name="MouseUtils_Prevent_Activation_On_Game_Mode.Content" xml:space="preserve"> <value>Do not activate when Game Mode is on</value> <comment>"Game mode" is the Windows feature to prevent notification when playing a game.</comment> </data> <data name="MouseUtils_FindMyMouse_BackgroundColor.Header" xml:space="preserve"> <value>Background color</value> </data> <data name="MouseUtils_FindMyMouse_SpotlightColor.Header" xml:space="preserve"> <value>Spotlight color</value> </data> <data name="MouseUtils_FindMyMouse_OverlayOpacity.Header" xml:space="preserve"> <value>Overlay opacity (%)</value> </data> <data name="MouseUtils_FindMyMouse_SpotlightRadius.Header" xml:space="preserve"> <value>Spotlight radius (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_FindMyMouse_SpotlightInitialZoom.Header" xml:space="preserve"> <value>Spotlight initial zoom</value> </data> <data name="MouseUtils_FindMyMouse_SpotlightInitialZoom.Description" xml:space="preserve"> <value>Spotlight zoom factor at animation start</value> </data> <data name="MouseUtils_FindMyMouse_AnimationDurationMs.Header" xml:space="preserve"> <value>Animation duration (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_FindMyMouse_AnimationDurationMs.Description" xml:space="preserve"> <value>Time before the spotlight appears (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_FindMyMouse_AnimationDurationMs_Disabled.Message" xml:space="preserve"> <value>Animations are disabled by OS. See Settings &gt; Accessibility &gt; Visual effects</value> </data> <data name="MouseUtils_FindMyMouse_ShakingMinimumDistance.Header" xml:space="preserve"> <value>Shake minimum distance</value> </data> <data name="MouseUtils_FindMyMouse_ShakingMinimumDistance.Description" xml:space="preserve"> <value>The minimum distance for mouse shaking activation, for adjusting sensitivity</value> </data> <data name="MouseUtils_MouseHighlighter.Header" xml:space="preserve"> <value>Mouse Highlighter</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_MouseHighlighter.Description" xml:space="preserve"> <value>Mouse Highlighter mode will highlight mouse clicks.</value> <comment>"Mouse Highlighter" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_Enable_MouseHighlighter.Header" xml:space="preserve"> <value>Enable Mouse Highlighter</value> <comment>"Find My Mouse" is the name of the utility.</comment> </data> <data name="MouseUtils_MouseHighlighter_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MouseUtils_MouseHighlighter_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to turn on or off this mode</value> <comment>"Mouse Highlighter" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_MouseHighlighter_PrimaryButtonClickColor.Header" xml:space="preserve"> <value>Primary button highlight color</value> </data> <data name="MouseUtils_MouseHighlighter_SecondaryButtonClickColor.Header" xml:space="preserve"> <value>Secondary button highlight color</value> </data> <data name="MouseUtils_MouseHighlighter_HighlightRadius.Header" xml:space="preserve"> <value>Radius (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDelayMs.Header" xml:space="preserve"> <value>Fade delay (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDelayMs.Description" xml:space="preserve"> <value>Time before the highlight begins to fade (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDurationMs.Header" xml:space="preserve"> <value>Fade duration (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDurationMs.Description" xml:space="preserve"> <value>Duration of the disappear animation (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MousePointerCrosshairs.Header" xml:space="preserve"> <value>Mouse Pointer Crosshairs</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_MousePointerCrosshairs.Description" xml:space="preserve"> <value>Mouse Pointer Crosshairs draws crosshairs centered on the mouse pointer.</value> <comment>"Mouse Pointer Crosshairs" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_Enable_MousePointerCrosshairs.Header" xml:space="preserve"> <value>Enable Mouse Pointer Crosshairs</value> <comment>"Mouse Pointer Crosshairs" is the name of the utility.</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MouseUtils_MousePointerCrosshairs_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to show/hide the crosshairs</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsColor.Header" xml:space="preserve"> <value>Crosshairs color</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsOpacity.Header" xml:space="preserve"> <value>Crosshairs opacity (%)</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsRadius.Header" xml:space="preserve"> <value>Crosshairs center radius (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsThickness.Header" xml:space="preserve"> <value>Crosshairs thickness (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsBorderColor.Header" xml:space="preserve"> <value>Crosshairs border color</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsBorderSize.Header" xml:space="preserve"> <value>Crosshairs border size (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_IsCrosshairsFixedLengthEnabled.Header" xml:space="preserve"> <value>Fix crosshairs length</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsFixedLength.Header" xml:space="preserve"> <value>Crosshairs fixed length (px)</value> <comment>px = pixels</comment> </data> <data name="FancyZones_Radio_Custom_Colors.Content" xml:space="preserve"> <value>Custom colors</value> </data> <data name="FancyZones_Radio_Default_Theme.Content" xml:space="preserve"> <value>Windows default</value> </data> <data name="ColorModeHeader.Header" xml:space="preserve"> <value>App theme</value> </data> <data name="FancyZones_Zone_Appearance.Description" xml:space="preserve"> <value>Customize the way zones look</value> </data> <data name="FancyZones_Zone_Appearance.Header" xml:space="preserve"> <value>Zone appearance</value> </data> <data name="VideoConference_DeprecationWarning.Title" xml:space="preserve"> <value>VCM is moving into legacy mode (maintenance only).</value> </data> <data name="VideoConference_DeprecationWarningButton.Content" xml:space="preserve"> <value>Learn more</value> </data> <data name="VideoConference_RunAsAdminRequired.Title" xml:space="preserve"> <value>You need to run as administrator to modify these settings.</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_GCODE.Header" xml:space="preserve"> <value>Geometric Code</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_GCODE.Description" xml:space="preserve"> <value>Only .gcode files with embedded thumbnails are supported</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_GCODE.Header" xml:space="preserve"> <value>Geometric Code</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_GCODE.Description" xml:space="preserve"> <value>Only .gcode files with embedded thumbnails are supported</value> </data> <data name="FancyZones_NumberColor.Header" xml:space="preserve"> <value>Number color</value> </data> <data name="FancyZones_ShowZoneNumberCheckBoxControl.Content" xml:space="preserve"> <value>Show zone number</value> </data> <data name="ToggleSwitch.OffContent" xml:space="preserve"> <value>Off</value> <comment>The state of a ToggleSwitch when it's off</comment> </data> <data name="ToggleSwitch.OnContent" xml:space="preserve"> <value>On</value> <comment>The state of a ToggleSwitch when it's on</comment> </data> <data name="CropAndLock.ModuleDescription" xml:space="preserve"> <value>Crop And Lock allows you to crop a current application into a smaller window or just create a thumbnail. Focus the target window and press the shortcut to start cropping.</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="CropAndLock.ModuleTitle" xml:space="preserve"> <value>Crop And Lock </value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="CropAndLock_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="CropAndLock_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="Shell_CropAndLock.Content" xml:space="preserve"> <value>Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="LearnMore_CropAndLock.Text" xml:space="preserve"> <value>Learn more about Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="CropAndLock_ReparentActivation_Shortcut.Header" xml:space="preserve"> <value>Reparent shortcut</value> </data> <data name="CropAndLock_ReparentActivation_Shortcut.Description" xml:space="preserve"> <value>Shortcut to crop an application's window into a cropped window. This is experimental and can cause issues with some applications, since the cropped window will contain the original application window.</value> </data> <data name="CropAndLock_ThumbnailActivation_Shortcut.Header" xml:space="preserve"> <value>Thumbnail shortcut</value> </data> <data name="CropAndLock_ThumbnailActivation_Shortcut.Description" xml:space="preserve"> <value>Shortcut to crop and create a thumbnail of another window. The application isn't controllable through the thumbnail but it'll have less compatibility issues. </value> </data> <data name="CropAndLock.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="Oobe_CropAndLock.Title" xml:space="preserve"> <value>Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="Oobe_CropAndLock.Description" xml:space="preserve"> <value>Crop And Lock allows you to crop a current application into a smaller window or just create a thumbnail. Focus the target window and press the shortcut to start cropping.</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="Oobe_CropAndLock_HowToUse_Thumbnail.Text" xml:space="preserve"> <value>to crop and create a thumbnail of another window. The application isn't controllable through the thumbnail but it'll have less compatibility issues.</value> </data> <data name="Oobe_CropAndLock_HowToUse_Reparent.Text" xml:space="preserve"> <value>to crop an application's window into a cropped window. This is experimental and can cause issues with some applications, since the cropped window will contain the original application window.</value> </data> <data name="AlwaysOnTop.ModuleDescription" xml:space="preserve"> <value>Always On Top is a quick and easy way to pin windows on top.</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop.ModuleTitle" xml:space="preserve"> <value>Always On Top </value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="Peek_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="AlwaysOnTop_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_ExcludedApps.Description" xml:space="preserve"> <value>Excludes an application from pinning on top</value> </data> <data name="AlwaysOnTop_ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="AlwaysOnTop_ExcludedApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> </data> <data name="AlwaysOnTop_FrameColor.Header" xml:space="preserve"> <value>Color</value> </data> <data name="AlwaysOnTop_FrameEnabled.Header" xml:space="preserve"> <value>Show a border around the pinned window</value> </data> <data name="AlwaysOnTop_FrameThickness.Header" xml:space="preserve"> <value>Thickness (px)</value> <comment>px = pixels</comment> </data> <data name="AlwaysOnTop_Behavior_GroupSettings.Header" xml:space="preserve"> <value>Appearance &amp; behavior</value> </data> <data name="Shell_AlwaysOnTop.Content" xml:space="preserve"> <value>Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_GameMode.Content" xml:space="preserve"> <value>Do not activate when Game Mode is on</value> <comment>Game Mode is a Windows feature</comment> </data> <data name="AlwaysOnTop_SoundTitle.Header" xml:space="preserve"> <value>Sound</value> </data> <data name="AlwaysOnTop_Sound.Content" xml:space="preserve"> <value>Play a sound when pinning a window</value> </data> <data name="AlwaysOnTop_Behavior.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="LearnMore_AlwaysOnTop.Text" xml:space="preserve"> <value>Learn more about Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="AlwaysOnTop_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to pin or unpin an app window</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="Oobe_AlwaysOnTop.Title" xml:space="preserve"> <value>Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="Oobe_AlwaysOnTop.Description" xml:space="preserve"> <value>Always On Top improves your multitasking workflow by pinning an application window so it's always in front - even when focus changes to another window after that.</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="Oobe_AlwaysOnTop_HowToUse.Text" xml:space="preserve"> <value>to pin or unpin the selected window so it's always on top of all other windows.</value> </data> <data name="Oobe_AlwaysOnTop_TipsAndTricks.Text" xml:space="preserve"> <value>You can tweak the visual outline of the pinned windows in PowerToys settings.</value> </data> <data name="AlwaysOnTop_FrameColor_Mode.Header" xml:space="preserve"> <value>Color mode</value> </data> <data name="AlwaysOnTop_Radio_Custom_Color.Content" xml:space="preserve"> <value>Custom color</value> </data> <data name="AlwaysOnTop_Radio_Windows_Default.Content" xml:space="preserve"> <value>Windows default</value> </data> <data name="FileExplorerPreview.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Monaco_Wrap_Text.Content" xml:space="preserve"> <value>Wrap text</value> <comment>Feature on or off</comment> </data> <data name="FancyZones_AllowPopupWindowSnap.Description" xml:space="preserve"> <value>This setting can affect all popup windows including notifications</value> </data> <data name="FancyZones_AllowPopupWindowSnap.Header" xml:space="preserve"> <value>Allow popup windows snapping</value> </data> <data name="FancyZones_AllowChildWindowSnap.Content" xml:space="preserve"> <value>Allow child windows snapping</value> </data> <data name="Shell_WhatsNew.Content" xml:space="preserve"> <value>What's new</value> </data> <data name="Shell_Peek.Content" xml:space="preserve"> <value>Peek</value> <comment>Product name: Navigation view item name for Peek</comment> </data> <data name="Peek.ModuleTitle" xml:space="preserve"> <value>Peek</value> </data> <data name="Peek.ModuleDescription" xml:space="preserve"> <value>Peek is a quick and easy way to preview files. Select a file in File Explorer and press the shortcut to open the file preview.</value> </data> <data name="Peek_EnablePeek.Header" xml:space="preserve"> <value>Enable Peek</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="Peek_BehaviorHeader.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="Peek_AlwaysRunNotElevated.Header" xml:space="preserve"> <value>Always run not elevated, even when PowerToys is elevated</value> </data> <data name="Peek_AlwaysRunNotElevated.Description" xml:space="preserve"> <value>Tries to run Peek without elevated permissions, to fix access to network shares. You need to disable and re-enable Peek for changes to this value to take effect.</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="Peek_CloseAfterLosingFocus.Header" xml:space="preserve"> <value>Automatically close the Peek window after it loses focus</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="FancyZones_DisableRoundCornersOnWindowSnap.Content" xml:space="preserve"> <value>Disable round corners when window is snapped</value> </data> <data name="PowerLauncher_SearchQueryTuningEnabled.Description" xml:space="preserve"> <value>Fine tune results ordering</value> </data> <data name="PowerLauncher_SearchQueryTuningEnabled.Header" xml:space="preserve"> <value>Results order tuning</value> </data> <data name="PowerLauncher_SearchClickedItemWeight.Description" xml:space="preserve"> <value>Use a higher number to get selected results to rise faster. The default is 5, 0 to disable.</value> </data> <data name="PowerLauncher_SearchClickedItemWeight.Header" xml:space="preserve"> <value>Selected item weight</value> </data> <data name="PowerLauncher_WaitForSlowResults.Description" xml:space="preserve"> <value>Selecting this can help preselect the top, more relevant result, but at the risk of jumpiness</value> </data> <data name="PowerLauncher_WaitForSlowResults.Header" xml:space="preserve"> <value>Wait on slower plugin results before selecting top item in results</value> </data> <data name="PowerLauncher_PluginWeightBoost.Description" xml:space="preserve"> <value>Use a higher number to have this plugin's result show higher in the global results. Default is 0.</value> </data> <data name="PowerLauncher_PluginWeightBoost.Header" xml:space="preserve"> <value>Global sort order score modifier</value> </data> <data name="AlwaysOnTop_RoundCorners.Content" xml:space="preserve"> <value>Enable round corners</value> </data> <data name="LearnMore_QuickAccent.Text" xml:space="preserve"> <value>Learn more about Quick Accent</value> <comment>Quick Accent is a product name, do not loc</comment> </data> <data name="QuickAccent_EnableQuickAccent.Header" xml:space="preserve"> <value>Enable Quick Accent</value> </data> <data name="Shell_QuickAccent.Content" xml:space="preserve"> <value>Quick Accent</value> </data> <data name="QuickAccent.ModuleDescription" xml:space="preserve"> <value>Quick Accent is an alternative way to type accented characters, useful for when a keyboard doesn't support that specific accent. Activate by holding the key for the character you want to add an accent to, then press the activation key (space, left or right arrow keys) and an overlay to select accented characters will appear!</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent.ModuleTitle" xml:space="preserve"> <value>Quick Accent</value> </data> <data name="QuickAccent.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> </data> <data name="Oobe_QuickAccent.Description" xml:space="preserve"> <value>Quick Accent is an easy way to write letters with accents, like on a smartphone.</value> </data> <data name="Oobe_QuickAccent.Title" xml:space="preserve"> <value>Quick Accent</value> </data> <data name="Oobe_QuickAccent_HowToUse.Text" xml:space="preserve"> <value>Open **PowerToys Settings** and enable Quick Accent. While holding the key for the character you want to add an accent to, press the Activation Key and an overlay to select the accented character will appear.</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="QuickAccent_Activation_Shortcut.Header" xml:space="preserve"> <value>Activation key</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent_Activation_Shortcut.Description" xml:space="preserve"> <value>Press this key after holding down the target letter</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent_Activation_Key_Arrows.Content" xml:space="preserve"> <value>Left/Right Arrow</value> <comment>Left/Right arrow keyboard keys</comment> </data> <data name="QuickAccent_Activation_Key_Space.Content" xml:space="preserve"> <value>Space</value> <comment>Space is the space keyboard key</comment> </data> <data name="QuickAccent_Activation_Key_Either.Content" xml:space="preserve"> <value>Left, Right or Space</value> <comment>All are keys on a keyboard</comment> </data> <data name="QuickAccent_Toolbar.Header" xml:space="preserve"> <value>Toolbar</value> </data> <data name="QuickAccent_ToolbarPosition.Header" xml:space="preserve"> <value>Toolbar position</value> </data> <data name="QuickAccent_ToolbarPosition_TopCenter.Content" xml:space="preserve"> <value>Top center</value> </data> <data name="QuickAccent_ToolbarPosition_TopLeftCorner.Content" xml:space="preserve"> <value>Top left corner</value> </data> <data name="QuickAccent_ToolbarPosition_TopRightCorner.Content" xml:space="preserve"> <value>Top right corner</value> </data> <data name="QuickAccent_ToolbarPosition_BottomLeftCorner.Content" xml:space="preserve"> <value>Bottom left corner</value> </data> <data name="QuickAccent_ToolbarPosition_BottomCenter.Content" xml:space="preserve"> <value>Bottom center</value> </data> <data name="QuickAccent_ToolbarPosition_BottomRightCorner.Content" xml:space="preserve"> <value>Bottom right corner</value> </data> <data name="QuickAccent_ToolbarPosition_Center.Content" xml:space="preserve"> <value>Center</value> </data> <data name="QuickAccent_ToolbarPosition_Left.Content" xml:space="preserve"> <value>Left</value> </data> <data name="QuickAccent_ToolbarPosition_Right.Content" xml:space="preserve"> <value>Right</value> </data> <data name="QuickAccent_Behavior.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="QuickAccent_InputTimeMs.Header" xml:space="preserve"> <value>Input delay (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="QuickAccent_InputTimeMs.Description" xml:space="preserve"> <value>Hold the key down for this much time to make the accent menu appear (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="QuickAccent_ExcludedApps.Description" xml:space="preserve"> <value>Prevents module activation if a foreground application is excluded. Add one application name per line.</value> </data> <data name="QuickAccent_ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="QuickAccent_ExcludedApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: Teams.exe</value> </data> <data name="LearnMore_TextExtractor.Text" xml:space="preserve"> <value>Learn more about Text Extractor</value> </data> <data name="TextExtractor_Cancel" xml:space="preserve"> <value>cancel</value> </data> <data name="General_SettingsBackupAndRestore_NothingToBackup" xml:space="preserve"> <value>A new backup was not created because no settings have been changed since last backup.</value> </data> <data name="General_SettingsBackupAndRestore_NoBackupFound" xml:space="preserve"> <value>No backup found</value> </data> <data name="General_SettingsBackupAndRestore_FailedToParseTime" xml:space="preserve"> <value>Failed to parse time</value> </data> <data name="General_SettingsBackupAndRestore_UnknownBackupTime" xml:space="preserve"> <value>Unknown</value> </data> <data name="General_SettingsBackupAndRestore_UnknownBackupSource" xml:space="preserve"> <value>Unknown</value> </data> <data name="General_SettingsBackupAndRestore_ThisMachine" xml:space="preserve"> <value>This computer</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsMatch" xml:space="preserve"> <value>Current settings match</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsStatusAt" xml:space="preserve"> <value>at</value> <comment>E.g., Food was served 'at' noon.</comment> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsDiffer" xml:space="preserve"> <value>Current settings differ</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsNoChecked" xml:space="preserve"> <value>Checking...</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsUnknown" xml:space="preserve"> <value>Unknown</value> </data> <data name="General_SettingsBackupAndRestore_NeverRestored" xml:space="preserve"> <value>Never restored</value> </data> <data name="General_SettingsBackupAndRestore_NothingToRestore" xml:space="preserve"> <value>Nothing to restore.</value> </data> <data name="General_SettingsBackupAndRestore_NoSettingsFilesFound" xml:space="preserve"> <value>No settings files found.</value> </data> <data name="General_SettingsBackupAndRestore_BackupError" xml:space="preserve"> <value>There was an error. Try another backup location.</value> </data> <data name="General_SettingsBackupAndRestore_SettingsFormatError" xml:space="preserve"> <value>There was an error in the settings format. Please check the settings file:</value> </data> <data name="General_SettingsBackupAndRestore_BackupComplete" xml:space="preserve"> <value>Backup completed.</value> </data> <data name="General_SettingsBackupAndRestore_NoBackupSyncPath" xml:space="preserve"> <value>No backup location selected.</value> </data> <data name="General_SettingsBackupAndRestore_NoBackupsFound" xml:space="preserve"> <value>No backups found to restore.</value> </data> <data name="General_SettingsBackupAndRestore_InvalidBackupLocation" xml:space="preserve"> <value>Invalid backup location.</value> </data> <data name="TextExtractor.ModuleDescription" xml:space="preserve"> <value>Text Extractor is a convenient way to copy text from anywhere on screen</value> </data> <data name="TextExtractor.ModuleTitle" xml:space="preserve"> <value>Text Extractor</value> </data> <data name="TextExtractor_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Text Extractor</value> </data> <data name="TextExtractor_SupportedLanguages.Title" xml:space="preserve"> <value>Text Extractor can only recognize languages that have the OCR pack installed.</value> </data> <data name="TextExtractor_SupportedLanguages_Link.Content" xml:space="preserve"> <value>Learn more about supported languages</value> </data> <data name="Shell_TextExtractor.Content" xml:space="preserve"> <value>Text Extractor</value> </data> <data name="Launch_TextExtractor.Content" xml:space="preserve"> <value>Launch Text Extractor</value> </data> <data name="Oobe_TextExtractor.Title" xml:space="preserve"> <value>Text Extractor</value> </data> <data name="Oobe_TextExtractor_HowToUse.Text" xml:space="preserve"> <value>to open Text Extractor and then selecting a region to copy the text from.</value> </data> <data name="Oobe_TextExtractor_TipsAndTricks.Text" xml:space="preserve"> <value>Hold the shift key to move the selection region around.</value> </data> <data name="TextExtractor.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> </data> <data name="Oobe_TextExtractor.Description" xml:space="preserve"> <value>Text Extractor works like Snipping Tool, but copies the text out of the selected region using OCR and puts it on the clipboard.</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Monaco_Try_Format.Description" xml:space="preserve"> <value>Applies to json and xml. Files remain unchanged.</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Monaco_Try_Format.Header" xml:space="preserve"> <value>Try to format the source for preview</value> </data> <data name="Run_ConflictingKeywordInfo.Title" xml:space="preserve"> <value>Some characters and phrases may conflict with global queries of other plugins if you use them as activation command.</value> </data> <data name="Run_ConflictingKeywordInfo_Link.Content" xml:space="preserve"> <value>Learn more about conflicting activation commands</value> </data> <data name="MeasureTool_ContinuousCapture_Information.Title" xml:space="preserve"> <value>The continuous capture mode will consume more resources when in use. Also, measurements will be excluded from screenshots and screen capture.</value> <comment>pointer as in mouse pointer. Resources refer to things like CPU, GPU, RAM</comment> </data> <data name="QuickAccent_Description_Indicator.Header" xml:space="preserve"> <value>Show the Unicode code and name of the currently selected character</value> </data> <data name="QuickAccent_SortByUsageFrequency_Indicator.Header" xml:space="preserve"> <value>Sort characters by usage frequency</value> </data> <data name="QuickAccent_SortByUsageFrequency_Indicator.Description" xml:space="preserve"> <value>Track characters usage frequency and sort them accordingly</value> </data> <data name="QuickAccent_StartSelectionFromTheLeft_Indicator.Header" xml:space="preserve"> <value>Start selection from the left</value> </data> <data name="QuickAccent_StartSelectionFromTheLeft_Indicator.Description" xml:space="preserve"> <value>Start selection from the leftmost character for all activation keys, including left and right arrows</value> </data> <data name="QuickAccent_DisableFullscreen.Header" xml:space="preserve"> <value>Disable when Game Mode is On</value> </data> <data name="QuickAccent_Language.Header" xml:space="preserve"> <value>Characters</value> </data> <data name="QuickAccent_SelectedLanguage.Header" xml:space="preserve"> <value>Choose a character set</value> </data> <data name="QuickAccent_SelectedLanguage.Description" xml:space="preserve"> <value>Show only accented characters common to the selected set</value> </data> <data name="QuickAccent_SelectedLanguage_All.Content" xml:space="preserve"> <value>All available</value> </data> <data name="QuickAccent_SelectedLanguage_Catalan.Content" xml:space="preserve"> <value>Catalan</value> </data> <data name="QuickAccent_SelectedLanguage_Currency.Content" xml:space="preserve"> <value>Currency</value> </data> <data name="QuickAccent_SelectedLanguage_Croatian.Content" xml:space="preserve"> <value>Croatian</value> </data> <data name="QuickAccent_SelectedLanguage_Czech.Content" xml:space="preserve"> <value>Czech</value> </data> <data name="QuickAccent_SelectedLanguage_Gaeilge.Content" xml:space="preserve"> <value>Gaeilge</value> <comment>Gaelic language spoken in Ireland</comment> </data> <data name="QuickAccent_SelectedLanguage_Gaidhlig.Content" xml:space="preserve"> <value>Gàidhlig</value> <comment>Scottish Gaelic</comment> </data> <data name="QuickAccent_SelectedLanguage_German.Content" xml:space="preserve"> <value>German</value> </data> <data name="QuickAccent_SelectedLanguage_Hebrew.Content" xml:space="preserve"> <value>Hebrew</value> </data> <data name="QuickAccent_SelectedLanguage_French.Content" xml:space="preserve"> <value>French</value> </data> <data name="QuickAccent_SelectedLanguage_Estonian.Content" xml:space="preserve"> <value>Estonian</value> </data> <data name="QuickAccent_SelectedLanguage_Lithuanian.Content" xml:space="preserve"> <value>Lithuanian</value> </data> <data name="QuickAccent_SelectedLanguage_Macedonian.Content" xml:space="preserve"> <value>Macedonian</value> </data> <data name="QuickAccent_SelectedLanguage_Maori.Content" xml:space="preserve"> <value>Maori</value> </data> <data name="QuickAccent_SelectedLanguage_Dutch.Content" xml:space="preserve"> <value>Dutch</value> </data> <data name="QuickAccent_SelectedLanguage_Norwegian.Content" xml:space="preserve"> <value>Norwegian</value> </data> <data name="QuickAccent_SelectedLanguage_Pinyin.Content" xml:space="preserve"> <value>Pinyin</value> </data> <data name="QuickAccent_SelectedLanguage_Polish.Content" xml:space="preserve"> <value>Polish</value> </data> <data name="QuickAccent_SelectedLanguage_Portuguese.Content" xml:space="preserve"> <value>Portuguese</value> </data> <data name="QuickAccent_SelectedLanguage_Slovakian.Content" xml:space="preserve"> <value>Slovakian</value> </data> <data name="QuickAccent_SelectedLanguage_Spanish.Content" xml:space="preserve"> <value>Spanish</value> </data> <data name="QuickAccent_SelectedLanguage_Swedish.Content" xml:space="preserve"> <value>Swedish</value> </data> <data name="QuickAccent_SelectedLanguage_Turkish.Content" xml:space="preserve"> <value>Turkish</value> </data> <data name="QuickAccent_SelectedLanguage_Icelandic.Content" xml:space="preserve"> <value>Icelandic</value> </data> <data name="QuickAccent_SelectedLanguage_Romanian.Content" xml:space="preserve"> <value>Romanian</value> </data> <data name="QuickAccent_SelectedLanguage_Serbian.Content" xml:space="preserve"> <value>Serbian</value> </data> <data name="QuickAccent_SelectedLanguage_Hungarian.Content" xml:space="preserve"> <value>Hungarian</value> </data> <data name="QuickAccent_SelectedLanguage_Italian.Content" xml:space="preserve"> <value>Italian</value> </data> <data name="QuickAccent_SelectedLanguage_Kurdish.Content" xml:space="preserve"> <value>Kurdish</value> </data> <data name="QuickAccent_SelectedLanguage_Welsh.Content" xml:space="preserve"> <value>Welsh</value> </data> <data name="Hosts.ModuleDescription" xml:space="preserve"> <value>Quick and simple utility for managing hosts file.</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Hosts.ModuleTitle" xml:space="preserve"> <value>Hosts File Editor</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Shell_Hosts.Content" xml:space="preserve"> <value>Hosts File Editor</value> <comment>Products name: Navigation view item name for Hosts File Editor</comment> </data> <data name="Hosts_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Hosts_Toggle_ShowStartupWarning.Header" xml:space="preserve"> <value>Show a warning at startup</value> </data> <data name="Hosts_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="Hosts_LaunchButtonControl.Description" xml:space="preserve"> <value>Manage your hosts file</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Hosts_LaunchButtonControl.Header" xml:space="preserve"> <value>Launch Host File Editor</value> <comment>"Host File Editor" is a product name</comment> </data> <data name="Hosts_LaunchButton_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Launch Host File Editor</value> <comment>"Host File Editor" is a product name</comment> </data> <data name="Hosts_AdditionalLinesPosition.Header" xml:space="preserve"> <value>Position of additional content</value> </data> <data name="Hosts_AdditionalLinesPosition_Bottom.Content" xml:space="preserve"> <value>Bottom</value> </data> <data name="Hosts_AdditionalLinesPosition_Top.Content" xml:space="preserve"> <value>Top</value> </data> <data name="Hosts_Behavior_GroupSettings.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="Launch_Hosts.Content" xml:space="preserve"> <value>Launch Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="LearnMore_Hosts.Text" xml:space="preserve"> <value>Learn more about Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Oobe_Hosts.Description" xml:space="preserve"> <value>Hosts File Editor is a quick and simple utility for managing hosts file.</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Oobe_Hosts.Title" xml:space="preserve"> <value>Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Hosts_Toggle_LaunchAdministrator.Description" xml:space="preserve"> <value>Needs to be launched as administrator in order to make changes to the hosts file</value> </data> <data name="Hosts_Toggle_LaunchAdministrator.Header" xml:space="preserve"> <value>Launch as administrator</value> </data> <data name="ShortcutGuide_PressTimeForTaskbarIconShortcuts.Header" xml:space="preserve"> <value>Press duration before showing taskbar icon shortcuts (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="FileLocksmith.ModuleDescription" xml:space="preserve"> <value>A Windows shell extension to find out which processes are using the selected files and directories.</value> </data> <data name="FileLocksmith.ModuleTitle" xml:space="preserve"> <value>File Locksmith</value> </data> <data name="Shell_FileLocksmith.Content" xml:space="preserve"> <value>File Locksmith</value> <comment>Product name: Navigation view item name for FileLocksmith</comment> </data> <data name="FileLocksmith_Enable_FileLocksmith.Header" xml:space="preserve"> <value>Enable File Locksmith</value> <comment>File Locksmith is the name of the utility</comment> </data> <data name="FileLocksmith_Toggle_StandardContextMenu.Content" xml:space="preserve"> <value>Default and extended context menu</value> </data> <data name="FileLocksmith_Toggle_ExtendedContextMenu.Content" xml:space="preserve"> <value>Extended context menu only</value> </data> <data name="FileLocksmith_Toggle_ContextMenu.Header" xml:space="preserve"> <value>Show File Locksmith in</value> </data> <data name="FileLocksmith_ShellIntegration.Header" xml:space="preserve"> <value>Shell integration</value> <comment>This refers to directly integrating in with Windows</comment> </data> <data name="GPO_IsSettingForced.Title" xml:space="preserve"> <value>The system administrator is forcing this setting.</value> </data> <data name="Hosts_AdditionalLinesPosition.Description" xml:space="preserve"> <value>Additional content includes the file header and lines that can't parse</value> </data> <data name="TextExtractor_Languages.Header" xml:space="preserve"> <value>Preferred language</value> </data> <data name="Alternate_OOBE_AlwaysOnTop_Description.Text" xml:space="preserve"> <value>Pin a window so that:</value> </data> <data name="Alternate_OOBE_AlwaysOnTop_Title.Text" xml:space="preserve"> <value>Always On Top</value> </data> <data name="Alternate_OOBE_ColorPicker_Description.Text" xml:space="preserve"> <value>To pick a color:</value> </data> <data name="Alternate_OOBE_ColorPicker_Title.Text" xml:space="preserve"> <value>Color Picker</value> </data> <data name="Alternate_OOBE_Description.Text" xml:space="preserve"> <value>Here are a few shortcuts to get you started:</value> </data> <data name="Alternate_OOBE_FancyZones_Description.Text" xml:space="preserve"> <value>To open the FancyZones editor, press:</value> </data> <data name="Alternate_OOBE_FancyZones_Title.Text" xml:space="preserve"> <value>FancyZones</value> </data> <data name="Alternate_OOBE_Run_Description.Text" xml:space="preserve"> <value>Get access to your files and more:</value> </data> <data name="Alternate_OOBE_Run_Title.Text" xml:space="preserve"> <value>PowerToys Run</value> </data> <data name="General_Experimentation.Header" xml:space="preserve"> <value>Experimentation</value> </data> <data name="GeneralPage_EnableExperimentation.Description" xml:space="preserve"> <value>Note: Only Windows Insider builds may be selected for experimentation</value> </data> <data name="GeneralPage_EnableExperimentation.Header" xml:space="preserve"> <value>Allow experimentation with new features</value> </data> <data name="GPO_ExperimentationIsDisallowed.Title" xml:space="preserve"> <value>The system administrator has disabled experimentation.</value> </data> <data name="Shell_PastePlain.Content" xml:space="preserve"> <value>Paste As Plain Text</value> <comment>Product name: Navigation view item name for Paste as Plain Text</comment> </data> <data name="PastePlain.ModuleDescription" xml:space="preserve"> <value>Paste As Plain Text is a quick shortcut for pasting the text contents of your clipboard without formatting. Note: the formatted text in the clipboard is replaced with the unformatted text.</value> </data> <data name="PastePlain.ModuleTitle" xml:space="preserve"> <value>Paste As Plain Text</value> </data> <data name="PastePlain_Cancel" xml:space="preserve"> <value>cancel</value> </data> <data name="PastePlain_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Paste As Plain Text</value> </data> <data name="Oobe_PastePlain.Description" xml:space="preserve"> <value>Paste As Plain Text strips rich formatting from your clipboard data and pastes it as non-formatted text.</value> </data> <data name="Oobe_PastePlain.Title" xml:space="preserve"> <value>Paste As Plain Text</value> </data> <data name="Oobe_PastePlain_HowToUse.Text" xml:space="preserve"> <value>to paste your clipboard data as plain text. Note: this will replace the formatted text in your clipboard with the plain text.</value> </data> <data name="AllAppsTxt.Text" xml:space="preserve"> <value>All apps</value> </data> <data name="BackBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Back</value> </data> <data name="BackLabel.Text" xml:space="preserve"> <value>Back</value> </data> <data name="BugReportBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Bug report</value> </data> <data name="BugReportTooltip.Text" xml:space="preserve"> <value>Bug report</value> </data> <data name="DocsBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Documentation</value> </data> <data name="DocsTooltip.Text" xml:space="preserve"> <value>Documentation</value> </data> <data name="FZEditorString" xml:space="preserve"> <value>FancyZones Editor</value> <comment>Do not localize this string</comment> </data> <data name="MoreBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>More</value> </data> <data name="MoreLabel.Text" xml:space="preserve"> <value>More</value> </data> <data name="SettingsBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Settings</value> </data> <data name="SettingsTooltip.Text" xml:space="preserve"> <value>Settings</value> </data> <data name="ShortcutsTxt.Text" xml:space="preserve"> <value>Shortcuts</value> </data> <data name="UpdateAvailable.Title" xml:space="preserve"> <value>Update available</value> </data> <data name="FileExplorerPreview_Toggle_Monaco_Max_File_Size.Header" xml:space="preserve"> <value>Maximum file size to preview</value> <comment>Size refers to the disk space used by a file</comment> </data> <data name="FileExplorerPreview_Toggle_Monaco_Max_File_Size.Description" xml:space="preserve"> <value>The maximum size, in kilobytes, for files to be displayed. This is a safety mechanism to prevent loading large files into RAM.</value> <comment>"RAM" refers to random access memory; "size" refers to disk space; "bytes" refer to the measurement unit</comment> </data> <data name="RegistryPreview.ModuleDescription" xml:space="preserve"> <value>A quick little utility to visualize and edit complex Windows Registry files.</value> </data> <data name="RegistryPreview.ModuleTitle" xml:space="preserve"> <value>Registry Preview</value> </data> <data name="Shell_RegistryPreview.Content" xml:space="preserve"> <value>Registry Preview</value> <comment>Product name: Navigation view item name for Registry Preview</comment> </data> <data name="RegistryPreview_Enable_RegistryPreview.Header" xml:space="preserve"> <value>Enable Registry Preview</value> <comment>Registry Preview is the name of the utility</comment> </data> <data name="Oobe_RegistryPreview_HowToUse.Text" xml:space="preserve"> <value>In File Explorer, right-click a .REG file and select **Preview** from the context menu.</value> </data> <data name="Oobe_RegistryPreview_TipsAndTricks.Text" xml:space="preserve"> <value>You can preview or edit Registry files in File Explorer or by opening the app from the PowerToys launcher.</value> </data> <data name="Oobe_RegistryPreview.Description" xml:space="preserve"> <value>Registry Preview is a quick little utility to visualize and edit complex Windows Registry files.</value> </data> <data name="Oobe_RegistryPreview.Title" xml:space="preserve"> <value>Registry Preview</value> <comment>Do not localize this string</comment> </data> <data name="LearnMore_RegistryPreview.Text" xml:space="preserve"> <value>Learn more about Registry Preview</value> <comment>Registry Preview is a product name, do not loc</comment> </data> <data name="Launch_RegistryPreview.Content" xml:space="preserve"> <value>Launch Registry Preview</value> <comment>"Registry Preview" is the name of the utility</comment> </data> <data name="MouseUtils_MouseJump.Description" xml:space="preserve"> <value>Quickly move the mouse pointer long distances.</value> <comment>"Mouse Jump" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_MouseJump.Header" xml:space="preserve"> <value>Mouse Jump</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_MouseJump_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to turn on or off this mode</value> </data> <data name="MouseUtils_MouseJump_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MouseUtils_Enable_MouseJump.Header" xml:space="preserve"> <value>Enable Mouse Jump</value> <comment>"Mouse Jump" is the name of the utility.</comment> </data> <data name="GPO_AutoDownloadUpdatesIsDisabled.Title" xml:space="preserve"> <value>The system administrator has disabled the automatic download of updates.</value> </data> <data name="Hosts_Toggle_LoopbackDuplicates.Description" xml:space="preserve"> <value>127.0.0.1, ::1, ...</value> <comment>"127.0.0.1 and ::1" are well known loopback addresses, do not loc</comment> </data> <data name="Hosts_Toggle_LoopbackDuplicates.Header" xml:space="preserve"> <value>Consider loopback addresses as duplicates</value> </data> <data name="RegistryPreview_Launch_GroupSettings.Header" xml:space="preserve"> <value>Launch</value> </data> <data name="RegistryPreview_LaunchButton_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Launch Registry Preview</value> </data> <data name="RegistryPreview_LaunchButtonControl.Header" xml:space="preserve"> <value>Launch Registry Preview</value> </data> <data name="RegistryPreview_DefaultRegApp.Header" xml:space="preserve"> <value>Default app</value> </data> <data name="RegistryPreview_DefaultRegApp.Description" xml:space="preserve"> <value>Make Registry Preview default app for opening .reg files</value> <comment>Registry Preview is app name. Do not localize.</comment> </data> <data name="PastePlain_ShortcutWarning.Title" xml:space="preserve"> <value>Using this shortcut may prevent non-text paste actions (e.g. images, files) or built-in paste plain text actions in other applications from functioning.</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize.Header" xml:space="preserve"> <value>Thumbnail Size</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Description_Prefix.Text" xml:space="preserve"> <value>Constrain thumbnail image size to a maximum of</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Description_Suffix.Text" xml:space="preserve"> <value>pixels</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Edit_Height.Header" xml:space="preserve"> <value>Maximum height (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Edit_Width.Header" xml:space="preserve"> <value>Maximum width (px)</value> <comment>px = pixels</comment> </data> <data name="Oobe_Peek.Description" xml:space="preserve"> <value>A lightning fast file preview feature for Windows.</value> </data> <data name="Oobe_Peek.Title" xml:space="preserve"> <value>Peek</value> </data> <data name="Oobe_Peek_HowToUse.Text" xml:space="preserve"> <value>to preview the file that's currently selected in File Explorer.</value> </data> <data name="MWB_PCNameLabel.PlaceholderText" xml:space="preserve"> <value>Device name</value> </data> <data name="MWB_SecurityKeyLabel.PlaceholderText" xml:space="preserve"> <value>Security key</value> </data> <data name="Hosts_Encoding.Description" xml:space="preserve"> <value>Choose the encoding of the hosts file</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Hosts_Encoding.Header" xml:space="preserve"> <value>Encoding</value> </data> <data name="Hosts_Encoding_Utf8.Content" xml:space="preserve"> <value>UTF-8</value> </data> <data name="Hosts_Encoding_Utf8Bom.Content" xml:space="preserve"> <value>UTF-8 with BOM</value> </data> <data name="MouseUtils_MouseHighlighter_AlwaysColor.Header" xml:space="preserve"> <value>Always highlight color</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsAutoHide.Content" xml:space="preserve"> <value>Automatically hide crosshairs when the mouse pointer is hidden</value> </data> <data name="MouseUtils_AutoActivate.Content" xml:space="preserve"> <value>Automatically activate on utility startup</value> </data> <data name="Run_FindMorePlugins.Text" xml:space="preserve"> <value>Find more plugins</value> </data> <data name="Run_PluginUseFindMorePlugins.Content" xml:space="preserve"> <value>Find more plugins</value> </data> <data name="Run_SomePluginsAreGpoManaged.Title" xml:space="preserve"> <value>The system administrator is managing the enabled state of some plugins.</value> </data> <data name="AlwaysOnTop_FrameOpacity.Header" xml:space="preserve"> <value>Opacity (%)</value> </data> <data name="MouseUtils_FindMyMouse_ActivationCustomizedShortcut.Content" xml:space="preserve"> <value>Custom shortcut</value> </data> <data name="MouseUtils_FindMyMouse_ActivationDoubleRightControlPress.Content" xml:space="preserve"> <value>Press Right Control twice</value> <comment>Right control is the physical key on the keyboard.</comment> </data> <data name="MouseUtils_FindMyMouse_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to turn on or off this mode</value> </data> <data name="MouseUtils_FindMyMouse_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="SettingsWindow_AdminTitle" xml:space="preserve"> <value>Administrator: PowerToys Settings</value> <comment>Title of the settings window when running as administrator</comment> </data> </root>
<?xml version="1.0" encoding="utf-8"?> <root> <!-- Microsoft ResX Schema Version 2.0 The primary goals of this format is to allow a simple XML format that is mostly human readable. The generation and parsing of the various data types are done through the TypeConverter classes associated with the data types. Example: ... ado.net/XML headers & schema ... <resheader name="resmimetype">text/microsoft-resx</resheader> <resheader name="version">2.0</resheader> <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader> <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader> <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data> <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data> <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64"> <value>[base64 mime encoded serialized .NET Framework object]</value> </data> <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value> <comment>This is a comment</comment> </data> There are any number of "resheader" rows that contain simple name/value pairs. Each data row contains a name, and value. The row also contains a type or mimetype. Type corresponds to a .NET class that support text/value conversion through the TypeConverter architecture. Classes that don't support this are serialized and stored with the mimetype set. The mimetype is used for serialized objects, and tells the ResXResourceReader how to depersist the object. This is currently not extensible. For a given mimetype the value must be set accordingly: Note - application/x-microsoft.net.object.binary.base64 is the format that the ResXResourceWriter will generate, however the reader can read any of the formats listed below. mimetype: application/x-microsoft.net.object.binary.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.soap.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Soap.SoapFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.bytearray.base64 value : The object must be serialized into a byte array : using a System.ComponentModel.TypeConverter : and then encoded with base64 encoding. --> <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> <xsd:import namespace="http://www.w3.org/XML/1998/namespace" /> <xsd:element name="root" msdata:IsDataSet="true"> <xsd:complexType> <xsd:choice maxOccurs="unbounded"> <xsd:element name="metadata"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" /> </xsd:sequence> <xsd:attribute name="name" use="required" type="xsd:string" /> <xsd:attribute name="type" type="xsd:string" /> <xsd:attribute name="mimetype" type="xsd:string" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="assembly"> <xsd:complexType> <xsd:attribute name="alias" type="xsd:string" /> <xsd:attribute name="name" type="xsd:string" /> </xsd:complexType> </xsd:element> <xsd:element name="data"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" /> <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="resheader"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" /> </xsd:complexType> </xsd:element> </xsd:choice> </xsd:complexType> </xsd:element> </xsd:schema> <resheader name="resmimetype"> <value>text/microsoft-resx</value> </resheader> <resheader name="version"> <value>2.0</value> </resheader> <resheader name="reader"> <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <resheader name="writer"> <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <data name="Attribution_Rooler.Text" xml:space="preserve"> <value>Inspired by Rooler</value> <comment>Rooler is a name of the tool.</comment> </data> <data name="Shell_VideoConference.Content" xml:space="preserve"> <value>Video Conference Mute</value> <comment>Navigation view item name for Video Conference</comment> </data> <data name="Shell_MeasureTool.Content" xml:space="preserve"> <value>Screen Ruler</value> <comment>Product name: Navigation view item name for Screen Ruler</comment> </data> <data name="MeasureTool.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="MeasureTool.ModuleDescription" xml:space="preserve"> <value>Screen Ruler is a quick and easy way to measure pixels on your screen.</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool.ModuleTitle" xml:space="preserve"> <value>Screen Ruler</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool_ActivationSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="MeasureTool_Settings.Header" xml:space="preserve"> <value>Behavior</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MeasureTool_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to bring up the command bar</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool_DefaultMeasureStyle.Header" xml:space="preserve"> <value>Default measure style</value> </data> <data name="MeasureTool_DefaultMeasureStyle.Description" xml:space="preserve"> <value>The utility will start having the selected style activated</value> </data> <data name="MeasureTool_DefaultMeasureStyle_None.Content" xml:space="preserve"> <value>None</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Bounds.Content" xml:space="preserve"> <value>Bounds</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Spacing.Content" xml:space="preserve"> <value>Spacing</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Horizontal_Spacing.Content" xml:space="preserve"> <value>Horizontal spacing</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Vertical_Spacing.Content" xml:space="preserve"> <value>Vertical spacing</value> </data> <data name="MeasureTool_UnitsOfMeasure.Header" xml:space="preserve"> <value>Units of measurement</value> </data> <data name="MeasureTool_UnitsOfMeasure_Pixels.Content" xml:space="preserve"> <value>Pixels</value> </data> <data name="MeasureTool_UnitsOfMeasure_Inches.Content" xml:space="preserve"> <value>Inches</value> </data> <data name="MeasureTool_UnitsOfMeasure_Centimeters.Content" xml:space="preserve"> <value>Centimeters</value> </data> <data name="MeasureTool_PixelTolerance.Header" xml:space="preserve"> <value>Pixel tolerance for edge detection</value> </data> <data name="MeasureTool_MeasureCrossColor.Header" xml:space="preserve"> <value>Line color</value> </data> <data name="MeasureTool_ContinuousCapture.Header" xml:space="preserve"> <value>Capture screen continuously during measuring</value> </data> <data name="MeasureTool_ContinuousCapture.Description" xml:space="preserve"> <value>Refresh screen contexts in real-time instead of making a screenshot once</value> </data> <data name="MeasureTool_PerColorChannelEdgeDetection.Header" xml:space="preserve"> <value>Per color channel edge detection</value> </data> <data name="MeasureTool_PerColorChannelEdgeDetection.Description" xml:space="preserve"> <value>If enabled, test that all color channels are within a tolerance distance from each other. Otherwise, check that the sum of all color channels differences is smaller than the tolerance.</value> </data> <data name="MeasureTool_DrawFeetOnCross.Header" xml:space="preserve"> <value>Draw feet on cross</value> </data> <data name="MeasureTool_DrawFeetOnCross.Description" xml:space="preserve"> <value>Adds feet to the end of cross lines</value> </data> <data name="MeasureTool_EnableMeasureTool.Header" xml:space="preserve"> <value>Enable Screen Ruler</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MouseWithoutBorders_ActivationSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="MouseWithoutBorders_DeviceLayoutSettings.Header" xml:space="preserve"> <value>Device layout</value> </data> <data name="MouseWithoutBorders_DeviceLayoutSettings.Description" xml:space="preserve"> <value>Drag and drop a machine to rearrange the order.</value> </data> <data name="MouseWithoutBorders_CannotDragDropAsAdmin.Title" xml:space="preserve"> <value>It is not possible to use drag and drop while running PowerToys elevated. As a workaround, please restart PowerToys without elevation to edit the device layout.</value> </data> <data name="MouseWithoutBorders_KeySettings.Header" xml:space="preserve"> <value>Encryption key</value> </data> <data name="MouseWithoutBorders_SecurityKey.Header" xml:space="preserve"> <value>Security key</value> </data> <data name="MouseWithoutBorders_SecurityKey.Description" xml:space="preserve"> <value>The key must be auto generated in one machine by clicking on New Key, then typed in other machines</value> </data> <data name="MouseWithoutBorders_NewKey.Content" xml:space="preserve"> <value>New key</value> </data> <data name="MouseWithoutBorders_CopyMachineName.Text" xml:space="preserve"> <value>Copy to clipboard</value> </data> <data name="MouseWithoutBorders_ReconnectButton.Text" xml:space="preserve"> <value>Refresh connections</value> </data> <data name="MouseWithoutBorders_ReconnectTooltip.Text" xml:space="preserve"> <value>Reestablishes connections with other devices if you are experiencing issues.</value> </data> <data name="MouseWithoutBorders_ThisMachineNameLabel.Header" xml:space="preserve"> <value>Host name of this device</value> </data> <data name="MouseWithoutBorders_Connect.Content" xml:space="preserve"> <value>Connect</value> </data> <data name="MouseWithoutBorders_UninstallService.Header" xml:space="preserve"> <value>Uninstall service</value> </data> <data name="MouseWithoutBorders_UninstallService.Description" xml:space="preserve"> <value>Removes the service from the computer. Needs to run as administrator.</value> </data> <data name="MouseWithoutBorders_Settings.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="MouseWithoutBorders_TroubleShooting.Header" xml:space="preserve"> <value>Troubleshooting</value> </data> <data name="MouseWithoutBorders_AddFirewallRuleButtonControl.Header" xml:space="preserve"> <value>Add a firewall rule for Mouse Without Borders</value> <comment>"Mouse Without Borders" is a product name</comment> </data> <data name="MouseWithoutBorders_AddFirewallRuleButtonControl.Description" xml:space="preserve"> <value>Adding a firewall rule might help solve connection issues.</value> </data> <data name="MouseWithoutBorders_RunAsAdminText.Title" xml:space="preserve"> <value>You need to run as administrator to modify this setting.</value> </data> <data name="MouseWithoutBorders_ServiceUserUninstallWarning.Title" xml:space="preserve"> <value>If PowerToys is installed as a user, uninstalling/upgrading may require the Mouse Without Borders service to be removed manually later.</value> </data> <data name="MouseWithoutBorders_ServiceSettings.Header" xml:space="preserve"> <value>Service</value> </data> <data name="MouseWithoutBorders_Toggle_Enable.Header" xml:space="preserve"> <value>Enable Mouse Without Borders</value> </data> <data name="MouseWithoutBorders.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="MouseWithoutBorders.ModuleDescription" xml:space="preserve"> <value>Mouse Without Borders is a quick and easy way to move your cursor across multiple devices.</value> <comment>"Mouse Without Borders" is the name of the utility</comment> </data> <data name="MouseWithoutBorders.ModuleTitle" xml:space="preserve"> <value>Mouse Without Borders</value> <comment>"Mouse Without Borders" is the name of the utility</comment> </data> <data name="MouseWithoutBorders_UseService.Header" xml:space="preserve"> <value>Use Service</value> </data> <data name="MouseWithoutBorders_UseService.Description" xml:space="preserve"> <value>Runs in service mode, that allows MWB to control remote machines when they're locked. Also allows control of system and administrator applications.</value> </data> <data name="MouseWithoutBorders_MatrixOneRow.Header" xml:space="preserve"> <value>Devices in a single row</value> </data> <data name="MouseWithoutBorders_MatrixOneRow.Description" xml:space="preserve"> <value>Sets whether the devices are aligned on a single row. A two by two matrix is considered otherwise.</value> </data> <data name="MouseWithoutBorders_WrapMouse.Header" xml:space="preserve"> <value>Wrap mouse</value> </data> <data name="MouseWithoutBorders_WrapMouse.Description" xml:space="preserve"> <value>Move control back to the first machine when mouse moves past the last one.</value> </data> <data name="MouseWithoutBorders_ShareClipboard.Header" xml:space="preserve"> <value>Share clipboard</value> </data> <data name="MouseWithoutBorders_TransferFile.Header" xml:space="preserve"> <value>Transfer file</value> </data> <data name="MouseWithoutBorders_HideMouseAtScreenEdge.Header" xml:space="preserve"> <value>Hide mouse at the screen edge</value> </data> <data name="MouseWithoutBorders_DrawMouseCursor.Header" xml:space="preserve"> <value>Draw mouse cursor</value> </data> <data name="MouseWithoutBorders_ValidateRemoteMachineIP.Header" xml:space="preserve"> <value>Validate remote machine IP</value> </data> <data name="MouseWithoutBorders_SameSubnetOnly.Header" xml:space="preserve"> <value>Same subnet only</value> </data> <data name="MouseWithoutBorders_BlockScreenSaverOnOtherMachines.Header" xml:space="preserve"> <value>Block screen saver on other machines</value> </data> <data name="MouseWithoutBorders_MoveMouseRelatively.Header" xml:space="preserve"> <value>Move mouse relatively</value> </data> <data name="MouseWithoutBorders_BlockMouseAtScreenCorners.Header" xml:space="preserve"> <value>Block mouse at screen corners</value> </data> <data name="MouseWithoutBorders_ShowClipboardAndNetworkStatusMessages.Header" xml:space="preserve"> <value>Show clipboard and network status messages</value> </data> <data name="MouseWithoutBorders_ShowOriginalUI.Header" xml:space="preserve"> <value>Show the original Mouse Without Borders UI</value> </data> <data name="MouseWithoutBorders_ShowOriginalUI.Description" xml:space="preserve"> <value>This is accessible from the system tray and requires a restart.</value> </data> <data name="MouseWithoutBorders_ShareClipboard.Description" xml:space="preserve"> <value>If share clipboard stops working, Ctrl+Alt+Del then Esc may solve the problem.</value> </data> <data name="MouseWithoutBorders_TransferFile.Description" xml:space="preserve"> <value>If a file (&lt;100MB) is copied, it will be transferred to the remote machine clipboard.</value> </data> <data name="MouseWithoutBorders_HideMouseAtScreenEdge.Description" xml:space="preserve"> <value>Hide the mouse cursor at the top edge of the screen when switching to other machine. This option also steals the focus from any full-screen app to ensure the keyboard input is redirected.</value> </data> <data name="MouseWithoutBorders_DrawMouseCursor.Description" xml:space="preserve"> <value>Mouse cursor may not be visible in Windows 10 and later versions of Windows when there is no physical mouse attached.</value> </data> <data name="MouseWithoutBorders_ValidateRemoteMachineIP.Description" xml:space="preserve"> <value>Reverse DNS lookup to validate machine IP Address.</value> </data> <data name="MouseWithoutBorders_SameSubnetOnly.Description" xml:space="preserve"> <value>Only connect to machines in the same intranet NNN.NNN.*.* (only works when both machines have IPv4 enabled)</value> </data> <data name="MouseWithoutBorders_IPAddressMapping_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: MyLaptop 192.168.0.24</value> <comment>Don't translate MyLaptop</comment> </data> <data name="MouseWithoutBorders_IPAddressMapping.Header" xml:space="preserve"> <value>IP address mapping</value> </data> <data name="MouseWithoutBorders_IPAddressMapping.Description" xml:space="preserve"> <value>Resolve machine's IP address using manually entered mappings below.</value> </data> <data name="MouseWithoutBorders_BlockScreenSaverOnOtherMachines.Description" xml:space="preserve"> <value>Prevent screen saver from starting on other machines when user is actively working on this machine.</value> </data> <data name="MouseWithoutBorders_MoveMouseRelatively.Description" xml:space="preserve"> <value>Use this option when remote machine's monitor settings are different, or remote machine has multiple monitors.</value> </data> <data name="MouseWithoutBorders_BlockMouseAtScreenCorners.Description" xml:space="preserve"> <value>To avoid accident machine-switch at screen corners.</value> </data> <data name="MouseWithoutBorders_ShowClipboardAndNetworkStatusMessages.Description" xml:space="preserve"> <value>Show clipboard activities and network status in system tray notifications</value> </data> <data name="MouseWithoutBorders_KeyboardShortcuts_Group.Header" xml:space="preserve"> <value>Keyboard shortcuts</value> <comment>keyboard is the hardware peripheral</comment> </data> <data name="MouseWithoutBorders_AdvancedSettings_Group.Header" xml:space="preserve"> <value>Advanced Settings</value> </data> <data name="MouseWithoutBorders_EasyMouseOption.Header" xml:space="preserve"> <value>Easy Mouse: move between machines by moving the mouse pointer to the screen edges.</value> </data> <data name="MouseWithoutBorders_EasyMouseOption.Description" xml:space="preserve"> <value>Can also be set to move only when pressing Shift or Ctrl.</value> <comment>Shift and Ctrl are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_EasyMouseOption_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_EasyMouseOption_Enabled.Content" xml:space="preserve"> <value>Enabled</value> </data> <data name="MouseWithoutBorders_EasyMouseOption_Ctrl.Content" xml:space="preserve"> <value>Ctrl</value> <comment>This is the Ctrl keyboard key</comment> </data> <data name="MouseWithoutBorders_EasyMouseOption_Shift.Content" xml:space="preserve"> <value>Shift</value> <comment>This is the Shift keyboard key</comment> </data> <data name="MouseWithoutBorders_LockMachinesShortcut.Header" xml:space="preserve"> <value>Shortcut to lock all machines.</value> </data> <data name="MouseWithoutBorders_LockMachinesShortcut.Description" xml:space="preserve"> <value>Hit this hotkey twice to lock all machines. Note: Only the machines which have the same shortcut configured will be locked.</value> </data> <data name="MouseWithoutBorders_ToggleEasyMouseShortcut.Header" xml:space="preserve"> <value>Shortcut to toggle Easy Mouse.</value> <comment>Ctrl and Alt are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_ToggleEasyMouseShortcut.Description" xml:space="preserve"> <value>Only works if EasyMouse is set to Enabled or Disabled.</value> </data> <data name="MouseWithoutBorders_ToggleEasyMouseShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut.Header" xml:space="preserve"> <value>Shortcut to switch between machines. Ctrl+Alt+:</value> <comment>Ctrl and Alt are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut.Description" xml:space="preserve"> <value>Click on Ctrl+Alt+ the chosen option to switch between machines.</value> <comment>Ctrl and Alt are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut_F1.Content" xml:space="preserve"> <value>F1, F2, F3, F4</value> <comment>Don't localize. These are keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut_1.Content" xml:space="preserve"> <value>1, 2, 3, 4</value> <comment>Don't localize. These are keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_LockMachinesShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_ReconnectShortcut.Header" xml:space="preserve"> <value>Shortcut to try reconnecting</value> </data> <data name="MouseWithoutBorders_ReconnectShortcut.Description" xml:space="preserve"> <value>Just in case the connection is lost for any reason.</value> </data> <data name="MouseWithoutBorders_ReconnectShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut.Header" xml:space="preserve"> <value>Shortcut to switch to multiple machine mode.</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut.Description" xml:space="preserve"> <value>Allows controlling all computers at once.</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut_Ctrl3.Content" xml:space="preserve"> <value>Ctrl three times</value> <comment>This is the Ctrl keyboard key</comment> </data> <data name="VideoConference_Enable.Header" xml:space="preserve"> <value>Enable Video Conference Mute</value> </data> <data name="VideoConference.ModuleDescription" xml:space="preserve"> <value>Video Conference Mute is a quick and easy way to do a global "mute" of both your microphone and webcam. Disabling this module or closing PowerToys will unmute the microphone and camera.</value> </data> <data name="VideoConference_CameraAndMicrophoneMuteHotkeyControl_Header.Header" xml:space="preserve"> <value>Mute camera &amp; microphone</value> </data> <data name="VideoConference_MicrophoneMuteHotkeyControl_Header.Header" xml:space="preserve"> <value>Mute microphone</value> </data> <data name="VideoConference_MicrophonePushToTalkHotkeyControl_Header.Header" xml:space="preserve"> <value>Push to talk</value> </data> <data name="VideoConference_CameraMuteHotkeyControl_Header.Header" xml:space="preserve"> <value>Mute camera</value> </data> <data name="VideoConference_SelectedCamera.Header" xml:space="preserve"> <value>Selected camera</value> </data> <data name="VideoConference_SelectedMicrophone.Header" xml:space="preserve"> <value>Selected microphone</value> </data> <data name="VideoConference_PushToReverse.Header" xml:space="preserve"> <value>Push to reverse</value> </data> <data name="VideoConference_PushToReverse.Description" xml:space="preserve"> <value>If enabled, allows both push to talk and push to mute, depending on microphone state</value> </data> <data name="VideoConference_CameraOverlayImagePathHeader.Header" xml:space="preserve"> <value>Image displayed when camera is muted</value> </data> <data name="VideoConference_ToolbarPosition.Header" xml:space="preserve"> <value>Toolbar position</value> </data> <data name="VideoConference_ToolbarPosition_TopCenter.Content" xml:space="preserve"> <value>Top center</value> </data> <data name="VideoConference_ToolbarPosition_TopLeftCorner.Content" xml:space="preserve"> <value>Top left corner</value> </data> <data name="VideoConference_ToolbarPosition_TopRightCorner.Content" xml:space="preserve"> <value>Top right corner</value> </data> <data name="VideoConference_ToolbarPosition_BottomLeftCorner.Content" xml:space="preserve"> <value>Bottom left corner</value> </data> <data name="VideoConference_ToolbarPosition_BottomCenter.Content" xml:space="preserve"> <value>Bottom center</value> </data> <data name="VideoConference_ToolbarPosition_BottomRightCorner.Content" xml:space="preserve"> <value>Bottom right corner</value> </data> <data name="VideoConference_ToolbarMonitor.Header" xml:space="preserve"> <value>Show toolbar on</value> </data> <data name="VideoConference_ToolbarMonitor_Main.Content" xml:space="preserve"> <value>Main monitor</value> </data> <data name="VideoConference_ToolbarMonitor_UnderCursor.Content" xml:space="preserve"> <value>Monitor under cursor</value> </data> <data name="VideoConference_ToolbarMonitor_ActiveWindow.Content" xml:space="preserve"> <value>Active window monitor</value> </data> <data name="VideoConference_ToolbarMonitor_All.Content" xml:space="preserve"> <value>All monitors</value> </data> <data name="VideoConference_ToolbarHide.Header" xml:space="preserve"> <value>Hide toolbar</value> </data> <data name="VideoConference_ToolbarHideMuted.Content" xml:space="preserve"> <value>When both camera and microphone are muted</value> </data> <data name="VideoConference_ToolbarHideNever.Content" xml:space="preserve"> <value>Never</value> </data> <data name="VideoConference_ToolbarHideUnmuted.Content" xml:space="preserve"> <value>When both camera and microphone are unmuted</value> </data> <data name="VideoConference_ToolbarHideTimeout.Content" xml:space="preserve"> <value>After timeout</value> </data> <data name="VideoConference.ModuleTitle" xml:space="preserve"> <value>Video Conference Mute</value> </data> <data name="VideoConference_Camera.Header" xml:space="preserve"> <value>Camera</value> </data> <data name="VideoConference_Camera.Description" xml:space="preserve"> <value>To use this feature, make sure to select PowerToys VideoConference Mute as your camera source in your apps.</value> </data> <data name="VideoConference_Microphone.Header" xml:space="preserve"> <value>Microphone</value> </data> <data name="VideoConference_Toolbar.Header" xml:space="preserve"> <value>Toolbar</value> </data> <data name="VideoConference_Behavior.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="VideoConference_StartupAction.Header" xml:space="preserve"> <value>Startup action</value> </data> <data name="VideoConference_StartupActionNothing.Content" xml:space="preserve"> <value>Nothing</value> </data> <data name="VideoConference_StartupActionUnmute.Content" xml:space="preserve"> <value>Unmute</value> </data> <data name="VideoConference_StartupActionMute.Content" xml:space="preserve"> <value>Mute</value> </data> <data name="VideoConference_Shortcuts.Header" xml:space="preserve"> <value>Shortcuts</value> </data> <data name="VideoConference_CameraOverlayImageAlt.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Camera overlay image preview</value> </data> <data name="VideoConference_CameraOverlayImageBrowse.Content" xml:space="preserve"> <value>Browse</value> </data> <data name="VideoConference_CameraOverlayImageClear.Content" xml:space="preserve"> <value>Clear</value> </data> <data name="Shell_General.Content" xml:space="preserve"> <value>General</value> <comment>Navigation view item name for General</comment> </data> <data name="Shell_Awake.Content" xml:space="preserve"> <value>Awake</value> <comment>Product name: Navigation view item name for Awake</comment> </data> <data name="Shell_PowerLauncher.Content" xml:space="preserve"> <value>PowerToys Run</value> <comment>Product name: Navigation view item name for PowerToys Run</comment> </data> <data name="Shell_PowerRename.Content" xml:space="preserve"> <value>PowerRename</value> <comment>Product name: Navigation view item name for PowerRename</comment> </data> <data name="Shell_ShortcutGuide.Content" xml:space="preserve"> <value>Shortcut Guide</value> <comment>Product name: Navigation view item name for Shortcut Guide</comment> </data> <data name="Shell_PowerPreview.Content" xml:space="preserve"> <value>File Explorer add-ons</value> <comment>Product name: Navigation view item name for File Explorer. Please use File Explorer as in the context of File Explorer in Windows</comment> </data> <data name="Shell_FancyZones.Content" xml:space="preserve"> <value>FancyZones</value> <comment>Product name: Navigation view item name for FancyZones</comment> </data> <data name="Shell_ImageResizer.Content" xml:space="preserve"> <value>Image Resizer</value> <comment>Product name: Navigation view item name for Image Resizer</comment> </data> <data name="Shell_ColorPicker.Content" xml:space="preserve"> <value>Color Picker</value> <comment>Product name: Navigation view item name for Color Picker</comment> </data> <data name="Shell_KeyboardManager.Content" xml:space="preserve"> <value>Keyboard Manager</value> <comment>Product name: Navigation view item name for Keyboard Manager</comment> </data> <data name="Shell_MouseWithoutBorders.Content" xml:space="preserve"> <value>Mouse Without Borders</value> <comment>Product name: Navigation view item name for Mouse Without Borders</comment> </data> <data name="Shell_MouseUtilities.Content" xml:space="preserve"> <value>Mouse utilities</value> <comment>Product name: Navigation view item name for Mouse utilities</comment> </data> <data name="Shell_NavigationMenu_Announce_Collapse" xml:space="preserve"> <value>Navigation closed</value> <comment>Accessibility announcement when the navigation pane collapses</comment> </data> <data name="Shell_NavigationMenu_Announce_Open" xml:space="preserve"> <value>Navigation opened</value> <comment>Accessibility announcement when the navigation pane opens</comment> </data> <data name="KeyboardManager_ConfigHeader.Text" xml:space="preserve"> <value>Current configuration</value> <comment>Keyboard Manager current configuration header</comment> </data> <data name="KeyboardManager.ModuleDescription" xml:space="preserve"> <value>Reconfigure your keyboard by remapping keys and shortcuts</value> <comment>Keyboard Manager page description</comment> </data> <data name="KeyboardManager_EnableToggle.Header" xml:space="preserve"> <value>Enable Keyboard Manager</value> <comment>Keyboard Manager enable toggle header. Do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="KeyboardManager_ProfileDescription.Text" xml:space="preserve"> <value>Select the profile to display the active key remap and shortcuts</value> <comment>Keyboard Manager configuration dropdown description</comment> </data> <data name="KeyboardManager_RemapKeyboardButton.Header" xml:space="preserve"> <value>Remap a key</value> <comment>Keyboard Manager remap keyboard button content</comment> </data> <data name="KeyboardManager_Keys.Header" xml:space="preserve"> <value>Keys</value> <comment>Keyboard Manager remap keyboard header</comment> </data> <data name="KeyboardManager_RemapShortcutsButton.Header" xml:space="preserve"> <value>Remap a shortcut</value> <comment>Keyboard Manager remap shortcuts button</comment> </data> <data name="KeyboardManager_Shortcuts.Header" xml:space="preserve"> <value>Shortcuts</value> <comment>Keyboard Manager remap keyboard header</comment> </data> <data name="KeyboardManager_All_Apps_Description" xml:space="preserve"> <value>All Apps</value> <comment>Should be the same as EditShortcuts_AllApps from keyboard manager editor</comment> </data> <data name="Shortcuts.Header" xml:space="preserve"> <value>Shortcuts</value> </data> <data name="Shortcut.Header" xml:space="preserve"> <value>Shortcut</value> </data> <data name="RemapKeysList.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Current Key Remappings</value> </data> <data name="RemapShortcutsList.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Current Shortcut Remappings</value> </data> <data name="KeyboardManager_RemappedKeysListItem.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Key Remapping</value> <comment>key as in keyboard key</comment> </data> <data name="KeyboardManager_RemappedShortcutsListItem.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Shortcut Remapping</value> </data> <data name="KeyboardManager_RemappedTo.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Remapped to</value> </data> <data name="KeyboardManager_ShortcutRemappedTo.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Remapped to</value> </data> <data name="KeyboardManager_TargetApp.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>For Target Application</value> <comment>What computer application would this be for</comment> </data> <data name="KeyboardManager_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Keyboard Manager</value> <comment>do not loc, product name</comment> </data> <data name="ColorPicker.ModuleDescription" xml:space="preserve"> <value>Quick and simple system-wide color picker.</value> </data> <data name="ColorPicker_EnableColorPicker.Header" xml:space="preserve"> <value>Enable Color Picker</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="ColorPicker_ChangeCursor.Content" xml:space="preserve"> <value>Change cursor when picking a color</value> </data> <data name="PowerLauncher.ModuleDescription" xml:space="preserve"> <value>A quick launcher that has additional capabilities without sacrificing performance.</value> </data> <data name="PowerLauncher_EnablePowerLauncher.Header" xml:space="preserve"> <value>Enable PowerToys Run</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="PowerLauncher_SearchResults.Header" xml:space="preserve"> <value>Search &amp; results</value> </data> <data name="PowerLauncher_SearchResultPreference.Header" xml:space="preserve"> <value>Search result preference</value> </data> <data name="PowerLauncher_UsePinyin.Header" xml:space="preserve"> <value>Use Pinyin</value> </data> <data name="PowerLauncher_UsePinyin.Description" xml:space="preserve"> <value>Experimental: Use Pinyin on the search query. May not work for every plugin.</value> </data> <data name="PowerLauncher_SearchResultPreference_MostRecentlyUsed" xml:space="preserve"> <value>Most recently used</value> </data> <data name="PowerLauncher_SearchResultPreference_AlphabeticalOrder" xml:space="preserve"> <value>Alphabetical order</value> </data> <data name="PowerLauncher_SearchResultPreference_RunningProcessesOpenApplications" xml:space="preserve"> <value>Running processes/open applications</value> </data> <data name="PowerLauncher_SearchTypePreference.Header" xml:space="preserve"> <value>Search type preference</value> </data> <data name="PowerLauncher_SearchTypePreference_ApplicationName" xml:space="preserve"> <value>Application name</value> </data> <data name="PowerLauncher_SearchTypePreference_StringInApplication" xml:space="preserve"> <value>A string that is contained in the application</value> </data> <data name="PowerLauncher_SearchTypePreference_ExecutableName" xml:space="preserve"> <value>Executable name</value> </data> <data name="PowerLauncher_MaximumNumberOfResults.Header" xml:space="preserve"> <value>Number of results shown before scrolling</value> </data> <data name="PowerLauncher_OpenPowerLauncher.Header" xml:space="preserve"> <value>Open PowerToys Run</value> </data> <data name="PowerLauncher_OpenFileLocation.Header" xml:space="preserve"> <value>Open file location</value> </data> <data name="PowerLauncher_CopyPathLocation.Header" xml:space="preserve"> <value>Copy path location</value> </data> <data name="PowerLauncher_OpenConsole.Header" xml:space="preserve"> <value>Open console</value> <comment>console refers to Windows command prompt</comment> </data> <data name="PowerLauncher_OverrideWinRKey.Content" xml:space="preserve"> <value>Override Win+R shortcut</value> </data> <data name="PowerLauncher_OverrideWinSKey.Content" xml:space="preserve"> <value>Override Win+S shortcut</value> </data> <data name="PowerLauncher_IgnoreHotkeysInFullScreen.Content" xml:space="preserve"> <value>Ignore shortcuts in fullscreen mode</value> </data> <data name="PowerLauncher_UseCentralizedKeyboardHook.Header" xml:space="preserve"> <value>Use centralized keyboard hook</value> </data> <data name="PowerLauncher_UseCentralizedKeyboardHook.Description" xml:space="preserve"> <value>Try this if there are issues with the shortcut (PowerToys Run might not get focus when triggered from an elevated window)</value> </data> <data name="PowerLauncher_ClearInputOnLaunch.Content" xml:space="preserve"> <value>Clear the previous query on launch</value> </data> <data name="PowerLauncher_TabSelectsContextButtons.Header" xml:space="preserve"> <value>Tab through context buttons</value> </data> <data name="PowerLauncher_TabSelectsContextButtons.Description" xml:space="preserve"> <value>Pressing tab will first select through the available context buttons of the current selection before moving onto the next result</value> </data> <data name="PowerLauncher_GenerateThumbnailsFromFiles.Header" xml:space="preserve"> <value>Generate thumbnails from files</value> </data> <data name="PowerLauncher_GenerateThumbnailsFromFiles.Description" xml:space="preserve"> <value>Results will try to generate thumbnails for files. Disabling this setting may increase stability and speed</value> </data> <data name="PowerLauncher_SearchQueryResultsWithDelay.Header" xml:space="preserve"> <value>Input Smoothing</value> <comment>This is about adding a delay to wait for more input before executing a search</comment> </data> <data name="PowerLauncher_SearchQueryResultsWithDelay.Description" xml:space="preserve"> <value>Wait for more input before searching. This reduces interface jumpiness and system load.</value> </data> <data name="PowerLauncher_FastSearchInputDelayMs.Header" xml:space="preserve"> <value>Immediate plugins</value> </data> <data name="PowerLauncher_FastSearchInputDelayMs.Description" xml:space="preserve"> <value>Affects the plugins that make the UI wait for their results by this amount. Recommended: 30-50 ms.</value> </data> <data name="PowerLauncher_SlowSearchInputDelayMs.Header" xml:space="preserve"> <value>Background execution plugins</value> </data> <data name="PowerLauncher_SlowSearchInputDelayMs.Description" xml:space="preserve"> <value>Affects the plugins that execute in the background by this amount. Recommended: 100-150 ms.</value> </data> <data name="PowerLauncher_SearchInputDelayMs.Header" xml:space="preserve"> <value>Fast plugin throttle (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="KeyboardManager_KeysMappingLayoutRightHeader.Text" xml:space="preserve"> <value>To:</value> <comment>Keyboard Manager mapping keys view right header</comment> </data> <data name="Appearance_GroupSettings.Text" xml:space="preserve"> <value>Appearance</value> </data> <data name="Fancyzones_ImageHyperlinkToDocs.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>FancyZones windows</value> <comment>do not loc the Product name</comment> </data> <data name="FancyZones.ModuleDescription" xml:space="preserve"> <value>Create window layouts to help make multi-tasking easy.</value> <comment>windows refers to application windows</comment> </data> <data name="FancyZones_DisplayOrWorkAreaChangeMoveWindowsCheckBoxControl.Content" xml:space="preserve"> <value>Keep windows in their zones when the screen resolution or work area changes</value> <comment>windows refers to application windows</comment> </data> <data name="FancyZones_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable FancyZones</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="FancyZones_ExcludeApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="FancyZones_ExcludeApps.Description" xml:space="preserve"> <value>Excludes an application from snapping to zones and will only react to Windows Snap - add one application name per line</value> </data> <data name="FancyZones_HighlightOpacity.Header" xml:space="preserve"> <value>Opacity (%)</value> </data> <data name="FancyZones_HotkeyEditorControl.Header" xml:space="preserve"> <value>Open layout editor</value> <comment>Shortcut to launch the FancyZones layout editor application</comment> </data> <data name="FancyZones_WindowSwitching_GroupSettings.Header" xml:space="preserve"> <value>Switch between windows in the current zone</value> </data> <data name="FancyZones_HotkeyNextTabControl.Header" xml:space="preserve"> <value>Next window</value> </data> <data name="FancyZones_HotkeyPrevTabControl.Header" xml:space="preserve"> <value>Previous window</value> </data> <data name="SettingsPage_SetShortcut.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Shortcut setting</value> </data> <data name="SettingsPage_SetShortcut_Glyph.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Information Symbol</value> </data> <data name="FancyZones_LaunchEditorButtonControl.Header" xml:space="preserve"> <value>Launch layout editor</value> <comment>launches the FancyZones layout editor application</comment> </data> <data name="FancyZones_LaunchEditorButtonControl.Description" xml:space="preserve"> <value>Set and manage your layouts</value> <comment>launches the FancyZones layout editor application</comment> </data> <data name="FancyZones_MakeDraggedWindowTransparentCheckBoxControl.Content" xml:space="preserve"> <value>Make dragged window transparent</value> </data> <data name="FancyZones_MouseDragCheckBoxControl_Header.Content" xml:space="preserve"> <value>Use a non-primary mouse button to toggle zone activation</value> </data> <data name="FancyZones_MouseMiddleClickSpanningMultipleZonesCheckBoxControl_Header.Content" xml:space="preserve"> <value>Use middle-click mouse button to toggle multiple zones spanning</value> </data> <data name="FancyZones_MoveWindowsAcrossAllMonitorsCheckBoxControl.Content" xml:space="preserve"> <value>Move windows between zones across all monitors</value> </data> <data name="FancyZones_OverrideSnapHotkeys.Header" xml:space="preserve"> <value>Override Windows Snap</value> </data> <data name="FancyZones_OverrideSnapHotkeys.Description" xml:space="preserve"> <value>This overrides the Windows Snap shortcut (Win + arrow) to move windows between zones</value> </data> <data name="FancyZones_ShiftDragCheckBoxControl_Header.Content" xml:space="preserve"> <value>Hold Shift key to activate zones while dragging a window</value> </data> <data name="FancyZones_ActivationNoShiftDrag" xml:space="preserve"> <value>Drag windows to activate zones</value> </data> <data name="FancyZones_ShowZonesOnAllMonitorsCheckBoxControl.Content" xml:space="preserve"> <value>Show zones on all monitors while dragging a window</value> </data> <data name="FancyZones_AppLastZoneMoveWindows.Content" xml:space="preserve"> <value>Move newly created windows to their last known zone</value> <comment>windows refers to application windows</comment> </data> <data name="FancyZones_OpenWindowOnActiveMonitor.Content" xml:space="preserve"> <value>Move newly created windows to the current active monitor (Experimental)</value> </data> <data name="FancyZones_UseCursorPosEditorStartupScreen.Header" xml:space="preserve"> <value>Launch editor on the display</value> </data> <data name="FancyZones_UseCursorPosEditorStartupScreen.Description" xml:space="preserve"> <value>When using multiple displays</value> </data> <data name="FancyZones_LaunchPositionMouse.Content" xml:space="preserve"> <value>Where the mouse pointer is</value> </data> <data name="FancyZones_LaunchPositionScreen.Content" xml:space="preserve"> <value>With active focus</value> </data> <data name="FancyZones_ZoneBehavior_GroupSettings.Header" xml:space="preserve"> <value>Zone behavior</value> </data> <data name="FancyZones_ZoneBehavior_GroupSettings.Description" xml:space="preserve"> <value>Manage how zones behave when using FancyZones</value> </data> <data name="FancyZones_Zones.Header" xml:space="preserve"> <value>Zones</value> </data> <data name="FancyZones_ZoneHighlightColor.Header" xml:space="preserve"> <value>Highlight color</value> </data> <data name="FancyZones_ZoneSetChangeMoveWindows.Content" xml:space="preserve"> <value>During zone layout changes, windows assigned to a zone will match new size/positions</value> </data> <data name="AttributionTitle.Text" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="General.ModuleTitle" xml:space="preserve"> <value>General</value> </data> <data name="GeneralPage_CheckForUpdates.Content" xml:space="preserve"> <value>Check for updates</value> </data> <data name="General_SettingsBackupAndRestoreLocationText.Header" xml:space="preserve"> <value>Location</value> </data> <data name="General_SettingsBackupAndRestore_ButtonBackup.Content" xml:space="preserve"> <value>Backup</value> </data> <data name="General_SettingsBackupInfo_FileNameHeader.Text" xml:space="preserve"> <value>File name:</value> </data> <data name="General_SettingsBackupAndRestore_LinkRefresh.Text" xml:space="preserve"> <value>Refresh</value> </data> <data name="General_SettingsBackupAndRestore_ButtonRestore.Content" xml:space="preserve"> <value>Restore</value> </data> <data name="General_SettingsBackupAndRestore_ButtonSelectLocation.Text" xml:space="preserve"> <value>Select folder</value> </data> <data name="GeneralPage_UpdateNow.Content" xml:space="preserve"> <value>Update now</value> </data> <data name="GeneralPage_PrivacyStatement_URL.Text" xml:space="preserve"> <value>Privacy statement</value> </data> <data name="GeneralPage_ReportAbug.Text" xml:space="preserve"> <value>Report a bug</value> <comment>Report an issue inside powertoys</comment> </data> <data name="GeneralPage_RequestAFeature_URL.Text" xml:space="preserve"> <value>Request a feature</value> <comment>Tell our team what we should build</comment> </data> <data name="GeneralPage_RestartAsAdmin_Button.Content" xml:space="preserve"> <value>Restart PowerToys as administrator</value> <comment>running PowerToys as a higher level user, account is typically referred to as an admin / administrator</comment> </data> <data name="GeneralPage_RunAtStartUp.Header" xml:space="preserve"> <value>Run at startup</value> </data> <data name="GeneralPage_RunAtStartUp.Description" xml:space="preserve"> <value>PowerToys will launch automatically</value> </data> <data name="PowerRename.ModuleDescription" xml:space="preserve"> <value>A Windows Shell extension for more advanced bulk renaming using search &amp; replace or regular expressions.</value> </data> <data name="PowerRename_ShellIntegration.Header" xml:space="preserve"> <value>Shell integration</value> <comment>This refers to directly integrating in with Windows</comment> </data> <data name="PowerRename_Toggle_Enable.Header" xml:space="preserve"> <value>Enable PowerRename</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="RadioButtons_Name_Theme.Text" xml:space="preserve"> <value>Settings theme</value> </data> <data name="PowerRename_Toggle_HideIcon.Content" xml:space="preserve"> <value>Hide icon in context menu</value> </data> <data name="PowerRename_Toggle_ContextMenu.Header" xml:space="preserve"> <value>Show PowerRename in</value> </data> <data name="PowerRename_Toggle_StandardContextMenu.Content" xml:space="preserve"> <value>Default and extended context menu</value> </data> <data name="PowerRename_Toggle_ExtendedContextMenu.Content" xml:space="preserve"> <value>Extended context menu only</value> </data> <data name="ExtendedContextMenuInfo.Title" xml:space="preserve"> <value>Press Shift + right-click on files to open the extended context menu</value> </data> <data name="PowerRename_Toggle_MaxDispListNum.Header" xml:space="preserve"> <value>Maximum number of items</value> </data> <data name="PowerRename_Toggle_RestoreFlagsOnLaunch.Header" xml:space="preserve"> <value>Show recently used strings</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_MD.Header" xml:space="preserve"> <value>Markdown</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_MD.Description" xml:space="preserve"> <value>.md, .markdown, .mdown, .mkdn, .mkd, .mdwn, .mdtxt, .mdtext</value> <comment>File extensions, should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_Monaco.Header" xml:space="preserve"> <value>Source code files (Monaco)</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_Monaco.Description" xml:space="preserve"> <value>.cpp, .py, .json, .xml, .csproj, ...</value> <comment>File extensions should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_SVG.Header" xml:space="preserve"> <value>Scalable Vector Graphics</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_SVG.Description" xml:space="preserve"> <value>.svg</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_Preview_SVG_Color_Mode.Header" xml:space="preserve"> <value>Color mode</value> </data> <data name="FileExplorerPreview_Preview_SVG_Color_Mode_Default.Content" xml:space="preserve"> <value>Windows default</value> </data> <data name="FileExplorerPreview_Preview_SVG_Color_Solid_Color.Content" xml:space="preserve"> <value>Solid color</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade.Content" xml:space="preserve"> <value>Checkered pattern</value> </data> <data name="FileExplorerPreview_Preview_SVG_Background_Color.Header" xml:space="preserve"> <value>Color</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_Mode.Header" xml:space="preserve"> <value>Checkered shade</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_1.Content" xml:space="preserve"> <value>Light</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_2.Content" xml:space="preserve"> <value>Medium</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_3.Content" xml:space="preserve"> <value>Dark</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_PDF.Header" xml:space="preserve"> <value>Portable Document Format</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_PDF.Description" xml:space="preserve"> <value>.pdf</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_SVG.Header" xml:space="preserve"> <value>Scalable Vector Graphics</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_SVG.Description" xml:space="preserve"> <value>.svg</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_STL.Header" xml:space="preserve"> <value>Stereolithography</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_STL.Description" xml:space="preserve"> <value>.stl</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_Color_Thumbnail_STL.Header" xml:space="preserve"> <value>Color</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_PDF.Header" xml:space="preserve"> <value>Portable Document Format</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_PDF.Description" xml:space="preserve"> <value>.pdf</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview.ModuleDescription" xml:space="preserve"> <value>These settings allow you to manage your Windows File Explorer custom preview handlers.</value> </data> <data name="PowerRename_AutoCompleteHeader.Header" xml:space="preserve"> <value>Auto-complete</value> </data> <data name="OpenSource_Notice.Text" xml:space="preserve"> <value>Open-source notice</value> </data> <data name="PowerRename_Toggle_AutoComplete.Header" xml:space="preserve"> <value>Enable auto-complete for the search &amp; replace fields</value> </data> <data name="FancyZones_BorderColor.Header" xml:space="preserve"> <value>Border color</value> </data> <data name="FancyZones_InActiveColor.Header" xml:space="preserve"> <value>Inactive color</value> </data> <data name="ShortcutGuide.ModuleDescription" xml:space="preserve"> <value>Shows a help overlay with Windows shortcuts.</value> </data> <data name="ShortcutGuide_PressTimeForGlobalWindowsShortcuts.Header" xml:space="preserve"> <value>Press duration before showing global Windows shortcuts (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="ShortcutGuide_ActivationMethod.Header" xml:space="preserve"> <value>Activation method</value> </data> <data name="ShortcutGuide_ActivationMethod.Description" xml:space="preserve"> <value>Use a shortcut or press the Windows key for some time to activate</value> </data> <data name="Radio_ShortcutGuide_ActivationMethod_CustomizedShortcut.Content" xml:space="preserve"> <value>Custom shortcut</value> </data> <data name="Radio_ShortcutGuide_ActivationMethod_LongPressWindowsKey.Content" xml:space="preserve"> <value>Hold down Windows key</value> </data> <data name="ShortcutGuide_PressWinKeyWarning.Title" xml:space="preserve"> <value>In some edge cases Shortcut Guide might not function correctly when using this activation method</value> </data> <data name="Appearance_Behavior.Header" xml:space="preserve"> <value>Appearance &amp; behavior</value> </data> <data name="General_SettingsBackupAndRestoreTitle.Header" xml:space="preserve"> <value>Backup &amp; restore</value> </data> <data name="General_SettingsBackupAndRestore.Header" xml:space="preserve"> <value>Backup and restore your settings</value> </data> <data name="General_SettingsBackupAndRestore.Description" xml:space="preserve"> <value>PowerToys will restart automatically if needed</value> </data> <data name="ShortcutGuide_Enable.Header" xml:space="preserve"> <value>Enable Shortcut Guide</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="ShortcutGuide_OverlayOpacity.Header" xml:space="preserve"> <value>Background opacity (%)</value> </data> <data name="ShortcutGuide_DisabledApps.Header" xml:space="preserve"> <value>Exclude apps</value> </data> <data name="ShortcutGuide_DisabledApps.Description" xml:space="preserve"> <value>Turns off Shortcut Guide when these applications have focus - add one application name per line</value> </data> <data name="ShortcutGuide_DisabledApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> <comment>Don't translate outlook.exe</comment> </data> <data name="ImageResizer_CustomSizes.Header" xml:space="preserve"> <value>Image sizes</value> </data> <data name="ImageResizer_Presets.Header" xml:space="preserve"> <value>Presets</value> </data> <data name="ImageResizer_Presets.Description" xml:space="preserve"> <value>Manage preset sizes that can be used in the editor</value> </data> <data name="ImageResizer_FilenameFormatHeader.Description" xml:space="preserve"> <value>This format is used as the filename for resized images</value> </data> <data name="ImageResizer.ModuleDescription" xml:space="preserve"> <value>Lets you resize images by right-clicking.</value> </data> <data name="ImageResizer_EnableToggle.Header" xml:space="preserve"> <value>Enable Image Resizer</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="ImagesSizesListView.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Image Size</value> </data> <data name="ImageResizer_Configurations.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Configurations</value> </data> <data name="ImageResizer_Name.Header" xml:space="preserve"> <value>Name</value> </data> <data name="ImageResizer_Fit.Header" xml:space="preserve"> <value>Fit</value> </data> <data name="ImageResizer_Width.Header" xml:space="preserve"> <value>Width</value> </data> <data name="ImageResizer_Height.Header" xml:space="preserve"> <value>Height</value> </data> <data name="ImageResizer_Size.Header" xml:space="preserve"> <value>Unit</value> </data> <data name="RemoveButton.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Remove</value> <comment>Removes a user defined setting group for Image Resizer</comment> </data> <data name="RemoveItem.Text" xml:space="preserve"> <value>Delete</value> </data> <data name="ImageResizer_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Image Resizer</value> </data> <data name="ImageResizer_AddSizeButton.Content" xml:space="preserve"> <value>Add new size</value> </data> <data name="ImageResizer_SaveSizeButton.Label" xml:space="preserve"> <value>Save sizes</value> </data> <data name="ImageResizer_Encoding.Header" xml:space="preserve"> <value>JPEG quality level (%)</value> </data> <data name="ImageResizer_PNGInterlacing.Header" xml:space="preserve"> <value>PNG interlacing</value> </data> <data name="ImageResizer_TIFFCompression.Header" xml:space="preserve"> <value>TIFF compression</value> </data> <data name="File.Header" xml:space="preserve"> <value>File</value> <comment>as in a computer file</comment> </data> <data name="Default.Content" xml:space="preserve"> <value>Default</value> </data> <data name="ImageResizer_ENCODER_TIFF_CCITT3.Content" xml:space="preserve"> <value>CCITT3</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_CCITT4.Content" xml:space="preserve"> <value>CCITT4</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_Default.Content" xml:space="preserve"> <value>Default</value> </data> <data name="ImageResizer_ENCODER_TIFF_LZW.Content" xml:space="preserve"> <value>LZW</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_None.Content" xml:space="preserve"> <value>None</value> </data> <data name="ImageResizer_ENCODER_TIFF_RLE.Content" xml:space="preserve"> <value>RLE</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_Zip.Content" xml:space="preserve"> <value>Zip</value> <comment>do not loc</comment> </data> <data name="ImageResizer_FallbackEncoder_BMP.Content" xml:space="preserve"> <value>BMP encoder</value> </data> <data name="ImageResizer_FallbackEncoder_GIF.Content" xml:space="preserve"> <value>GIF encoder</value> </data> <data name="ImageResizer_FallbackEncoder_JPEG.Content" xml:space="preserve"> <value>JPEG encoder</value> </data> <data name="ImageResizer_FallbackEncoder_PNG.Content" xml:space="preserve"> <value>PNG encoder</value> </data> <data name="ImageResizer_FallbackEncoder_TIFF.Content" xml:space="preserve"> <value>TIFF encoder</value> </data> <data name="ImageResizer_FallbackEncoder_WMPhoto.Content" xml:space="preserve"> <value>WMPhoto encoder</value> </data> <data name="ImageResizer_Sizes_Fit_Fill.Content" xml:space="preserve"> <value>Fill</value> <comment>Refers to filling an image into a certain size. It could overflow</comment> </data> <data name="ImageResizer_Sizes_Fit_Fill_ThirdPersonSingular.Text" xml:space="preserve"> <value>Fill</value> <comment>Refers to filling an image into a certain size. It could overflow</comment> </data> <data name="ImageResizer_Sizes_Fit_Fit.Content" xml:space="preserve"> <value>Fit</value> <comment>Refers to fitting an image into a certain size. It won't overflow</comment> </data> <data name="ImageResizer_Sizes_Fit_Stretch.Content" xml:space="preserve"> <value>Stretch</value> <comment>Refers to stretching an image into a certain size. Won't overflow but could distort.</comment> </data> <data name="ImageResizer_Sizes_Units_CM.Content" xml:space="preserve"> <value>Centimeters</value> </data> <data name="ImageResizer_Sizes_Units_Inches.Content" xml:space="preserve"> <value>Inches</value> </data> <data name="ImageResizer_Sizes_Units_Percent.Content" xml:space="preserve"> <value>Percent</value> </data> <data name="ImageResizer_Sizes_Units_Pixels.Content" xml:space="preserve"> <value>Pixels</value> </data> <data name="Off.Content" xml:space="preserve"> <value>Off</value> </data> <data name="On.Content" xml:space="preserve"> <value>On</value> </data> <data name="GeneralPage_ToggleSwitch_AlwaysRunElevated_Link.Content" xml:space="preserve"> <value>Learn more about administrator mode</value> </data> <data name="GeneralPage_ToggleSwitch_AutoDownloadUpdates.Header" xml:space="preserve"> <value>Download updates automatically</value> </data> <data name="GeneralPage_ToggleSwitch_AutoDownloadUpdates.Description" xml:space="preserve"> <value>Except on metered connections</value> </data> <data name="GeneralPage_ToggleSwitch_RunningAsAdminNote.Text" xml:space="preserve"> <value>Currently running as administrator</value> </data> <data name="GeneralSettings_AlwaysRunAsAdminText.Header" xml:space="preserve"> <value>Always run as administrator</value> </data> <data name="GeneralSettings_AlwaysRunAsAdminText.Description" xml:space="preserve"> <value>You need to run as administrator to use this setting</value> </data> <data name="GeneralSettings_RunningAsUserText" xml:space="preserve"> <value>Running as user</value> </data> <data name="GeneralSettings_RunningAsAdminText" xml:space="preserve"> <value>Running as administrator</value> </data> <data name="FancyZones.ModuleTitle" xml:space="preserve"> <value>FancyZones</value> </data> <data name="FileExplorerPreview.ModuleTitle" xml:space="preserve"> <value>File Explorer</value> </data> <data name="FileExplorerPreview_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>File Explorer</value> <comment>Use same translation as Windows does for File Explorer</comment> </data> <data name="ImageResizer.ModuleTitle" xml:space="preserve"> <value>Image Resizer</value> </data> <data name="KeyboardManager.ModuleTitle" xml:space="preserve"> <value>Keyboard Manager</value> </data> <data name="ColorPicker.ModuleTitle" xml:space="preserve"> <value>Color Picker</value> </data> <data name="PowerLauncher.ModuleTitle" xml:space="preserve"> <value>PowerToys Run</value> </data> <data name="PowerToys_Run_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>PowerToys Run</value> </data> <data name="PowerRename.ModuleTitle" xml:space="preserve"> <value>PowerRename</value> <comment>do not loc the product name</comment> </data> <data name="PowerRename_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>PowerRename</value> <comment>do not loc</comment> </data> <data name="ShortcutGuide.ModuleTitle" xml:space="preserve"> <value>Shortcut Guide</value> </data> <data name="Shortcut_Guide_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Shortcut Guide</value> </data> <data name="General_Repository.Text" xml:space="preserve"> <value>GitHub repository</value> </data> <data name="General_Version.Header" xml:space="preserve"> <value>Version</value> </data> <data name="General_VersionLastChecked.Text" xml:space="preserve"> <value>Last checked: </value> </data> <data name="General_SettingsBackupInfo_DateHeader.Text" xml:space="preserve"> <value>Created at:</value> </data> <data name="General_SettingsBackupAndRestoreStatusInfo.Header" xml:space="preserve"> <value>Backup information</value> </data> <data name="General_SettingsBackupInfo_SourceHeader.Text" xml:space="preserve"> <value>Source machine:</value> </data> <data name="General_SettingsBackupInfo_StatusHeader.Text" xml:space="preserve"> <value>Status:</value> </data> <data name="General_Version.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Version</value> </data> <data name="Admin_mode.Header" xml:space="preserve"> <value>Administrator mode</value> </data> <data name="FancyZones_RestoreSize.Content" xml:space="preserve"> <value>Restore the original size of windows when unsnapping</value> </data> <data name="ImageResizer_FallBackEncoderText.Header" xml:space="preserve"> <value>Fallback encoder</value> </data> <data name="ImageResizer_FileFormatDescription.Text" xml:space="preserve"> <value>The following parameters can be used:</value> </data> <data name="ImageResizer_FilenameFormatHeader.Header" xml:space="preserve"> <value>Filename format</value> </data> <data name="ImageResizer_FileModifiedDate.Header" xml:space="preserve"> <value>File modified timestamp</value> </data> <data name="ImageResizer_FileModifiedDate.Description" xml:space="preserve"> <value>Used as the 'modified timestamp' in the file properties</value> </data> <data name="ImageResizer_UseOriginalDate.Content" xml:space="preserve"> <value>Original file timestamp</value> </data> <data name="ImageResizer_UseResizeDate.Content" xml:space="preserve"> <value>Timestamp of resize action</value> </data> <data name="Encoding.Header" xml:space="preserve"> <value>Encoding</value> </data> <data name="KeyboardManager_RemapKeyboardButton.Description" xml:space="preserve"> <value>Remap keys to other keys or shortcuts</value> </data> <data name="KeyboardManager_RemapShortcutsButton.Description" xml:space="preserve"> <value>Remap shortcuts to other shortcuts or keys for all or specific applications</value> </data> <data name="General.ModuleDescription" xml:space="preserve"> <value>Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. Made with 💗 by Microsoft and the PowerToys community.</value> <comment>Windows refers to the OS</comment> </data> <data name="FancyZones_SpanZonesAcrossMonitors.Header" xml:space="preserve"> <value>Allow zones to span across monitors</value> </data> <data name="ImageResizer_Formatting_ActualHeight.Text" xml:space="preserve"> <value>Actual height</value> </data> <data name="ImageResizer_Formatting_ActualWidth.Text" xml:space="preserve"> <value>Actual width</value> </data> <data name="ImageResizer_Formatting_Filename.Text" xml:space="preserve"> <value>Original filename</value> </data> <data name="ImageResizer_Formatting_SelectedHeight.Text" xml:space="preserve"> <value>Selected height</value> </data> <data name="ImageResizer_Formatting_SelectedWidth.Text" xml:space="preserve"> <value>Selected width</value> </data> <data name="ImageResizer_Formatting_Sizename.Text" xml:space="preserve"> <value>Size name</value> </data> <data name="FancyZones_MoveWindowsBasedOnPositionCheckBoxControl.Content" xml:space="preserve"> <value>Move windows based on their position</value> <comment>Windows refers to application windows</comment> </data> <data name="GeneralSettings_NewVersionIsAvailable" xml:space="preserve"> <value>New update available</value> </data> <data name="GeneralSettings_VersionIsLatest" xml:space="preserve"> <value>PowerToys is up to date.</value> </data> <data name="FileExplorerPreview_IconThumbnail_GroupSettings.Header" xml:space="preserve"> <value>Thumbnail icon Preview</value> </data> <data name="FileExplorerPreview_IconThumbnail_GroupSettings.Description" xml:space="preserve"> <value>Select the file types for which thumbnail previews must be rendered.</value> </data> <data name="FileExplorerPreview_PreviewPane.Header" xml:space="preserve"> <value>Preview Pane</value> </data> <data name="FileExplorerPreview_PreviewPane.Description" xml:space="preserve"> <value>Select the file types which must be rendered in the Preview Pane. Ensure that Preview Pane is open by toggling the view with Alt + P in File Explorer.</value> <comment>Preview Pane and File Explorer are app/feature names in Windows. 'Alt + P' is a shortcut</comment> </data> <data name="FileExplorerPreview_RunAsAdminRequired.Title" xml:space="preserve"> <value>You need to run as administrator to modify these settings.</value> </data> <data name="FileExplorerPreview_RebootRequired.Title" xml:space="preserve"> <value>A reboot may be required for changes to these settings to take effect</value> </data> <data name="FileExplorerPreview_PreviewHandlerOutlookIncompatibility.Title" xml:space="preserve"> <value>Enabling the preview handlers will override other preview handlers already installed - there have been reports of incompatibility between Outlook and the PDF Preview Handler.</value> <comment>Outlook is the name of a Microsoft product</comment> </data> <data name="FileExplorerPreview_ThumbnailsMightNotAppearOnRemoteFolders.Title" xml:space="preserve"> <value>Thumbnails might not appear on paths managed by cloud storage solutions like OneDrive, since these solutions may get their thumbnails from the cloud instead of generating them locally.</value> <comment>OneDrive is the name of a Microsoft product</comment> </data> <data name="FancyZones_ExcludeApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> <comment>Don't translate outlook.exe</comment> </data> <data name="ImageResizer_FilenameFormatPlaceholder.PlaceholderText" xml:space="preserve"> <value>Example: %1 (%2)</value> </data> <data name="ImageResizer_FilenameParameters.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Filename parameters</value> </data> <data name="Radio_Theme_Dark.Content" xml:space="preserve"> <value>Dark</value> <comment>Dark refers to color, not weight</comment> </data> <data name="Radio_Theme_Light.Content" xml:space="preserve"> <value>Light</value> <comment>Light refers to color, not weight</comment> </data> <data name="Radio_Theme_Default.Content" xml:space="preserve"> <value>Windows default</value> <comment>Windows refers to the Operating system</comment> </data> <data name="Windows_Color_Settings.Content" xml:space="preserve"> <value>Windows color settings</value> <comment>Windows refers to the Operating system</comment> </data> <data name="ColorPicker_CopiedColorRepresentation.Header" xml:space="preserve"> <value>Default color format</value> </data> <data name="ColorPickerFirst.Content" xml:space="preserve"> <value>Pick a color and open editor</value> </data> <data name="EditorFirst.Content" xml:space="preserve"> <value>Open editor</value> </data> <data name="ColorPickerOnly.Content" xml:space="preserve"> <value>Only pick a color</value> </data> <data name="ColorPicker_ActivationAction.Header" xml:space="preserve"> <value>Activation behavior</value> </data> <data name="ColorFormats.Header" xml:space="preserve"> <value>Picker behavior</value> </data> <data name="ColorPicker_CopiedColorRepresentation.Description" xml:space="preserve"> <value>This format will be copied to your clipboard</value> </data> <data name="KBM_KeysCannotBeRemapped.Text" xml:space="preserve"> <value>Learn more about remapping limitations</value> <comment>This is a link that will discuss what is and is not possible for Keyboard manager to remap</comment> </data> <data name="FancyZones_Editor_GroupSettings.Header" xml:space="preserve"> <value>Editor</value> <comment>refers to the FancyZone editor</comment> </data> <data name="FancyZones_WindowBehavior_GroupSettings.Header" xml:space="preserve"> <value>Window behavior</value> </data> <data name="FancyZones_WindowBehavior_GroupSettings.Description" xml:space="preserve"> <value>Manage how windows behave when using FancyZones</value> </data> <data name="FancyZones_Windows.Header" xml:space="preserve"> <value>Windows</value> <comment>Do translate: refers to a set of application windows, not the product name</comment> </data> <data name="PowerRename_BehaviorHeader.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="PowerRename_Toggle_UseBoostLib.Header" xml:space="preserve"> <value>Use Boost library</value> <comment>Boost is a product name, should not be translated</comment> </data> <data name="PowerRename_Toggle_UseBoostLib.Description" xml:space="preserve"> <value>Provides extended features but may use different regex syntax</value> <comment>Boost is a product name, should not be translated</comment> </data> <data name="MadeWithOssLove.Text" xml:space="preserve"> <value>Made with 💗 by Microsoft and the PowerToys community.</value> </data> <data name="ColorPicker_ColorFormats.Header" xml:space="preserve"> <value>Color formats</value> </data> <data name="ColorPicker_ColorFormats.Description" xml:space="preserve"> <value>Configure the color formats (edit, delete, hide, reorder them)</value> </data> <data name="MoveUp.Text" xml:space="preserve"> <value>Move up</value> </data> <data name="MoveDown.Text" xml:space="preserve"> <value>Move down</value> </data> <data name="ColorPickerAddNewFormat.Content" xml:space="preserve"> <value>Add new format</value> </data> <data name="NewColorFormat.Header" xml:space="preserve"> <value>Format</value> </data> <data name="NewColorName.Header" xml:space="preserve"> <value>Name</value> </data> <data name="AddCustomColorFormat" xml:space="preserve"> <value>Add custom color format</value> </data> <data name="ColorFormatSave" xml:space="preserve"> <value>Save</value> </data> <data name="EditCustomColorFormat" xml:space="preserve"> <value>Edit custom color format</value> </data> <data name="ColorFormatUpdate" xml:space="preserve"> <value>Update</value> </data> <data name="CustomColorFormatDefaultName" xml:space="preserve"> <value>My Format</value> </data> <data name="ColorFormatDialog.SecondaryButtonText" xml:space="preserve"> <value>Cancel</value> </data> <data name="ColorFormatEditorHelpline1.Text" xml:space="preserve"> <value>The following parameters can be used:</value> </data> <data name="Help_red" xml:space="preserve"> <value>red</value> </data> <data name="Help_green" xml:space="preserve"> <value>green</value> </data> <data name="Help_blue" xml:space="preserve"> <value>blue</value> </data> <data name="Help_alpha" xml:space="preserve"> <value>alpha</value> </data> <data name="Help_cyan" xml:space="preserve"> <value>cyan</value> </data> <data name="Help_magenta" xml:space="preserve"> <value>magenta</value> </data> <data name="Help_yellow" xml:space="preserve"> <value>yellow</value> </data> <data name="Help_black_key" xml:space="preserve"> <value>black key</value> </data> <data name="Help_hue" xml:space="preserve"> <value>hue</value> </data> <data name="Help_hueNat" xml:space="preserve"> <value>hue (natural)</value> </data> <data name="Help_saturationI" xml:space="preserve"> <value>saturation (HSI)</value> </data> <data name="Help_saturationL" xml:space="preserve"> <value>saturation (HSL)</value> </data> <data name="Help_saturationB" xml:space="preserve"> <value>saturation (HSB)</value> </data> <data name="Help_brightness" xml:space="preserve"> <value>brightness</value> </data> <data name="Help_intensity" xml:space="preserve"> <value>intensity</value> </data> <data name="Help_lightnessNat" xml:space="preserve"> <value>lightness (nat)</value> </data> <data name="Help_lightnessCIE" xml:space="preserve"> <value>lightness (CIE)</value> </data> <data name="Help_value" xml:space="preserve"> <value>value</value> </data> <data name="Help_whiteness" xml:space="preserve"> <value>whiteness</value> </data> <data name="Help_blackness" xml:space="preserve"> <value>blackness</value> </data> <data name="Help_chromaticityA" xml:space="preserve"> <value>chromaticityA</value> </data> <data name="Help_chromaticityB" xml:space="preserve"> <value>chromaticityB</value> </data> <data name="Help_X_value" xml:space="preserve"> <value>X value</value> </data> <data name="Help_Y_value" xml:space="preserve"> <value>Y value</value> </data> <data name="Help_Z_value" xml:space="preserve"> <value>Z value</value> </data> <data name="Help_decimal_value_RGB" xml:space="preserve"> <value>decimal value (RGB)</value> </data> <data name="Help_decimal_value_BGR" xml:space="preserve"> <value>decimal value (BGR)</value> </data> <data name="Help_color_name" xml:space="preserve"> <value>color name</value> </data> <data name="ColorFormatEditorHelpline2.Text" xml:space="preserve"> <value>The red, green, blue and alpha values can be formatted to the following formats:</value> </data> <data name="Help_byte" xml:space="preserve"> <value>byte value (default)</value> </data> <data name="Help_hexL1" xml:space="preserve"> <value>hex lowercase one digit</value> </data> <data name="Help_hexU1" xml:space="preserve"> <value>hex uppercase one digit</value> </data> <data name="Help_hexL2" xml:space="preserve"> <value>hex lowercase two digits</value> </data> <data name="Help_hexU2" xml:space="preserve"> <value>hex uppercase two digits</value> </data> <data name="Help_floatWith" xml:space="preserve"> <value>float with leading zero</value> </data> <data name="Help_floatWithout" xml:space="preserve"> <value>float without leading zero</value> </data> <data name="ColorFormatEditorHelpline3.Text" xml:space="preserve"> <value>Example: %ReX means red value in hex uppercase two digits format.</value> </data> <data name="ColorPicker_ShowColorName.Header" xml:space="preserve"> <value>Show color name</value> </data> <data name="ColorPicker_ShowColorName.Description" xml:space="preserve"> <value>This will show the name of the color when picking a color</value> </data> <data name="ImageResizer_DefaultSize_Large" xml:space="preserve"> <value>Large</value> <comment>The size of the image</comment> </data> <data name="ImageResizer_DefaultSize_Medium" xml:space="preserve"> <value>Medium</value> <comment>The size of the image</comment> </data> <data name="ImageResizer_DefaultSize_Phone" xml:space="preserve"> <value>Phone</value> <comment>The size of the image referring to a Mobile Phone typical image size</comment> </data> <data name="ImageResizer_DefaultSize_Small" xml:space="preserve"> <value>Small</value> <comment>The size of the image</comment> </data> <data name="FancyZones_MoveWindowBasedOnRelativePosition_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Windows key + Up, down, left or right arrow key to move windows based on relative position</value> </data> <data name="FancyZones_MoveWindowLeftRightBasedOnZoneIndex_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Windows key + Left or right arrow keys to move windows based on zone index</value> </data> <data name="FancyZones_MoveWindowBasedOnRelativePosition_Description.Text" xml:space="preserve"> <value>Windows key +    or </value> <comment>Do not loc the icons (hex numbers)</comment> </data> <data name="FancyZones_MoveWindowLeftRightBasedOnZoneIndex_Description.Text" xml:space="preserve"> <value>Windows key +  or </value> <comment>Do not loc the icons (hex numbers)</comment> </data> <data name="FancyZones_MoveWindowBasedOnRelativePosition.Text" xml:space="preserve"> <value>Relative position</value> </data> <data name="FancyZones_MoveWindow.Header" xml:space="preserve"> <value>Move windows based on</value> </data> <data name="FancyZones_MoveWindowLeftRightBasedOnZoneIndex.Text" xml:space="preserve"> <value>Zone index</value> </data> <data name="ColorPicker_Editor.Header" xml:space="preserve"> <value>Color formats</value> </data> <data name="FancyZones_OverlappingZonesClosestCenter.Content" xml:space="preserve"> <value>Activate the zone whose center is closest to the cursor</value> </data> <data name="FancyZones_OverlappingZonesLargest.Content" xml:space="preserve"> <value>Activate the largest zone by area</value> </data> <data name="FancyZones_OverlappingZonesPositional.Content" xml:space="preserve"> <value>Split the overlapped area into multiple activation targets</value> </data> <data name="FancyZones_OverlappingZonesSmallest.Content" xml:space="preserve"> <value>Activate the smallest zone by area</value> </data> <data name="FancyZones_OverlappingZones.Header" xml:space="preserve"> <value>When multiple zones overlap</value> </data> <data name="PowerLauncher_Plugins.Header" xml:space="preserve"> <value>Plugins</value> </data> <data name="PowerLauncher_ActionKeyword.Header" xml:space="preserve"> <value>Direct activation command</value> </data> <data name="PowerLauncher_AuthoredBy.Text" xml:space="preserve"> <value>Authored by</value> <comment>example: Authored by Microsoft</comment> </data> <data name="PowerLauncher_IncludeInGlobalResultTitle.Text" xml:space="preserve"> <value>Include in global result</value> </data> <data name="PowerLauncher_IncludeInGlobalResultDescription.Text" xml:space="preserve"> <value>Show results on queries without direct activation command</value> </data> <data name="PowerLauncher_EnablePluginToggle.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Enable plugin</value> </data> <data name="PowerLauncher_EnablePluginToggle.OnContent" xml:space="preserve"> <value>On</value> </data> <data name="PowerLauncher_EnablePluginToggle.OffContent" xml:space="preserve"> <value>Off</value> </data> <data name="Run_AdditionalOptions.Text" xml:space="preserve"> <value>Additional options</value> </data> <data name="Run_NotAccessibleWarning.Title" xml:space="preserve"> <value>Please define an activation command or allow this plugin to be used in the global results.</value> </data> <data name="Run_AllPluginsDisabled.Title" xml:space="preserve"> <value>PowerToys Run can't provide any results without plugins</value> </data> <data name="Run_AllPluginsDisabled.Message" xml:space="preserve"> <value>Enable at least one plugin to get started</value> </data> <data name="Run_PluginUse.Header" xml:space="preserve"> <value>Plugins</value> </data> <data name="Run_PluginUseDescription.Text" xml:space="preserve"> <value>Include or remove plugins from the global results, change the direct activation phrase and configure additional options</value> </data> <data name="Run_PositionAppearance_GroupSettings.Header" xml:space="preserve"> <value>Position &amp; appearance</value> </data> <data name="Run_PositionHeader.Header" xml:space="preserve"> <value>Preferred monitor position</value> <comment>as in Show PowerToys Run on primary monitor</comment> </data> <data name="Run_PositionHeader.Description" xml:space="preserve"> <value>If multiple monitors are in use, PowerToys Run can be launched on the desired monitor</value> <comment>as in Show PowerToys Run on primary monitor</comment> </data> <data name="Run_Radio_Position_Cursor.Content" xml:space="preserve"> <value>Monitor with mouse cursor</value> </data> <data name="Run_Radio_Position_Focus.Content" xml:space="preserve"> <value>Monitor with focused window</value> </data> <data name="Run_Radio_Position_Primary_Monitor.Content" xml:space="preserve"> <value>Primary monitor</value> </data> <data name="Run_PluginsLoading.Text" xml:space="preserve"> <value>Plugins are loading...</value> </data> <data name="ColorPicker_ButtonDown.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Move the color down</value> </data> <data name="ColorPicker_ButtonUp.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Move the color up</value> </data> <data name="FancyZones_FlashZonesOnQuickSwitch.Content" xml:space="preserve"> <value>Flash zones when switching layout</value> </data> <data name="FancyZones_Layouts.Header" xml:space="preserve"> <value>Layouts</value> </data> <data name="FancyZones_QuickLayoutSwitch.Header" xml:space="preserve"> <value>Enable quick layout switch</value> </data> <data name="FancyZones_QuickLayoutSwitch.Description" xml:space="preserve"> <value>Layout-specific shortcuts can be configured in the editor</value> </data> <data name="FancyZones_QuickLayoutSwitch_GroupSettings.Text" xml:space="preserve"> <value>Quick layout switch</value> </data> <data name="Activation_Shortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="Activation_Shortcut.Description" xml:space="preserve"> <value>Customize the shortcut to activate this module</value> </data> <data name="Oobe_GetStarted.Text" xml:space="preserve"> <value>Let's get started!</value> </data> <data name="Oobe_PowerToysDescription.Text" xml:space="preserve"> <value>Welcome to PowerToys! These overviews will help you quickly learn the basics of all our utilities.</value> </data> <data name="Oobe_GettingStarted.Text" xml:space="preserve"> <value>Getting started</value> </data> <data name="Oobe_Launch.Text" xml:space="preserve"> <value>Launch</value> </data> <data name="Launch_ColorPicker.Content" xml:space="preserve"> <value>Launch Color Picker</value> </data> <data name="Oobe_LearnMore.Text" xml:space="preserve"> <value>Learn more about</value> </data> <data name="Oobe_ColorPicker.Description" xml:space="preserve"> <value>Color Picker is a system-wide color selection tool for Windows that enables you to pick colors from any currently running application and automatically copies it in a configurable format to your clipboard.</value> </data> <data name="Oobe_FancyZones.Description" xml:space="preserve"> <value>FancyZones is a window manager that makes it easy to create complex window layouts and quickly position windows into those layouts.</value> </data> <data name="Oobe_FileLocksmith.Description" xml:space="preserve"> <value>File Locksmith lists which processes are using the selected files or directories and allows closing those processes.</value> </data> <data name="Oobe_FileExplorer.Description" xml:space="preserve"> <value>PowerToys introduces add-ons to the Windows File Explorer that will enable files like Markdown (.md), PDF (.pdf), SVG (.svg), STL (.stl), G-code (.gcode) and developer files to be viewed in the preview pane. It introduces File Explorer thumbnail support for a number of these file types as well.</value> </data> <data name="Oobe_ImageResizer.Description" xml:space="preserve"> <value>Image Resizer is a Windows shell extension for simple bulk image-resizing.</value> </data> <data name="Oobe_KBM.Description" xml:space="preserve"> <value>Keyboard Manager allows you to customize the keyboard to be more productive by remapping keys and creating your own keyboard shortcuts.</value> </data> <data name="Oobe_MouseWithoutBorders.Description" xml:space="preserve"> <value>Mouse Without Borders enables using the mouse pointer, keyboard, clipboard and drag and drop between machines in the same local network.</value> </data> <data name="Oobe_PowerRename.Description" xml:space="preserve"> <value>PowerRename enables you to perform simple bulk renaming, searching and replacing file names.</value> </data> <data name="Oobe_Run.Description" xml:space="preserve"> <value>PowerToys Run is a quick launcher for power users that contains some additional features without sacrificing performance.</value> </data> <data name="Oobe_MeasureTool.Description" xml:space="preserve"> <value>Screen Ruler is a quick and easy way to measure pixels on your screen.</value> </data> <data name="Oobe_ShortcutGuide.Description" xml:space="preserve"> <value>Shortcut Guide presents the user with a listing of available shortcuts for the current state of the desktop.</value> </data> <data name="Oobe_VideoConference.Description" xml:space="preserve"> <value>Video Conference Mute allows users to quickly mute the microphone and turn off the camera while on a conference call with a single keystroke, regardless of what application has focus on your computer.</value> </data> <data name="Oobe_MouseUtils.Description" xml:space="preserve"> <value>A collection of utilities to enhance your mouse.</value> <comment>Mouse as in the hardware peripheral</comment> </data> <data name="Oobe_Overview.Description" xml:space="preserve"> <value>Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. Take a moment to preview the various utilities listed or view our comprehensive documentation.</value> </data> <data name="Oobe_Overview_DescriptionLinkText.Text" xml:space="preserve"> <value>Documentation on Microsoft Docs</value> </data> <data name="ReleaseNotes.Content" xml:space="preserve"> <value>Release notes</value> </data> <data name="Oobe_ColorPicker_HowToUse.Text" xml:space="preserve"> <value>to open Color Picker.</value> </data> <data name="Oobe_ColorPicker_TipsAndTricks.Text" xml:space="preserve"> <value>To select a color with more precision, **scroll the mouse wheel** to zoom in.</value> </data> <data name="Oobe_FancyZones_HowToUse.Text" xml:space="preserve"> <value>**Shift** + **drag the window** to snap a window to a zone, and release the window in the desired zone.</value> </data> <data name="Oobe_FancyZones_HowToUse_Shortcut.Text" xml:space="preserve"> <value>to open the FancyZones editor.</value> </data> <data name="Oobe_FancyZones_TipsAndTricks.Text" xml:space="preserve"> <value>Snap a window to multiple zones by holding the **Ctrl** key (while also holding **Shift**) when dragging a window.</value> </data> <data name="Oobe_FileLocksmith_HowToUse.Text" xml:space="preserve"> <value>In File Explorer, right-click one or more selected files and select **What's using this file?** from the context menu.</value> </data> <data name="Oobe_FileLocksmith_TipsAndTricks.Text" xml:space="preserve"> <value>Press the **Restart Elevated** button from the File Locksmith UI to also get information on elevated processes that might be using the files.</value> </data> <data name="Oobe_FileExplorer_HowToEnable.Text" xml:space="preserve"> <value>Select **View** which is located at the top of File Explorer, followed by **Show**, and then **Preview pane**. From there, simply click on one of the supported files in the File Explorer and observe the content on the preview pane!</value> </data> <data name="Oobe_HowToCreateMappings.Text" xml:space="preserve"> <value>How to create mappings</value> </data> <data name="Oobe_HowToEnable.Text" xml:space="preserve"> <value>How to enable</value> </data> <data name="Oobe_HowToLaunch.Text" xml:space="preserve"> <value>How to launch</value> </data> <data name="Oobe_HowToUse.Text" xml:space="preserve"> <value>How to use</value> </data> <data name="Oobe_ImageResizer_HowToLaunch.Text" xml:space="preserve"> <value>In File Explorer, right-click one or more image files and select **Resize pictures** from the context menu.</value> </data> <data name="Oobe_ImageResizer_TipsAndTricks.Text" xml:space="preserve"> <value>Want a custom size? You can add them in the PowerToys Settings!</value> </data> <data name="Oobe_KBM_HowToCreateMappings.Text" xml:space="preserve"> <value>Launch **PowerToys Settings**, navigate to the Keyboard Manager menu, and select either **Remap a key** or **Remap a shortcut**.</value> </data> <data name="Oobe_KBM_TipsAndTricks.Text" xml:space="preserve"> <value>Want to only have a shortcut work for a single application? Use the Target App field when creating the shortcut remapping.</value> </data> <data name="Oobe_MouseWithoutBorders_HowToUse.Text" xml:space="preserve"> <value>Use the Settings screen on each machine to connect to the other machines using the same key. If a connection is not working, it may be necessary to add an exception to the Windows Firewall.</value> </data> <data name="Oobe_MouseWithoutBorders_TipsAndTricks.Text" xml:space="preserve"> <value>Use the service option in Settings to install a service enabling Mouse Without Borders to function even in the lock screen.</value> </data> <data name="Oobe_PowerRename_HowToUse.Text" xml:space="preserve"> <value>In File Explorer, right-click one or more selected files and select **PowerRename** from the context menu.</value> </data> <data name="Oobe_PowerRename_TipsAndTricks.Text" xml:space="preserve"> <value>PowerRename supports searching for files using regular expressions to enable more advanced renaming functionalities.</value> </data> <data name="Oobe_Run_HowToLaunch.Text" xml:space="preserve"> <value>to open Run and just start typing.</value> </data> <data name="Oobe_Run_TipsAndTricks.Text" xml:space="preserve"> <value>PowerToys Run supports various action keys to funnel search queries for a specific subset of results. Typing `&lt;` searches for running processes only, `?` will search only for file, or `.` for installed applications! See PowerToys documentation for the complete set of 'Action Keys' available.</value> </data> <data name="Oobe_ShortcutGuide_HowToLaunch.Text" xml:space="preserve"> <value>to open Shortcut Guide, press it again to close or press **Esc**.</value> </data> <data name="Oobe_TipsAndTricks.Text" xml:space="preserve"> <value>Tips &amp; tricks</value> </data> <data name="Oobe_VideoConference_ToggleMicVid.Text" xml:space="preserve"> <value>to toggle both your microphone and video</value> </data> <data name="Oobe_VideoConference_ToggleMic.Text" xml:space="preserve"> <value>to toggle your microphone</value> </data> <data name="Oobe_VideoConference_PushToTalkMic.Text" xml:space="preserve"> <value>to toggle your microphone until key release</value> </data> <data name="Oobe_VideoConference_ToggleVid.Text" xml:space="preserve"> <value>to toggle your video</value> </data> <data name="Oobe_MeasureTool_Activation.Text" xml:space="preserve"> <value>to bring up the Screen Ruler command bar.</value> </data> <data name="Oobe_MeasureTool_HowToLaunch.Text" xml:space="preserve"> <value>The Bounds mode lets you select a specific area to measure. You can also shift-drag an area to persist in on screen. The various Spacing modes allows tracing similar pixels along horizontal and vertical axes with a customizable pixel tolerance threshold (use settings or mouse wheel to adjust it).</value> </data> <data name="Oobe_MeasureTool.Title" xml:space="preserve"> <value>Screen Ruler</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_ColorPicker.Title" xml:space="preserve"> <value>Color Picker</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_FancyZones.Title" xml:space="preserve"> <value>FancyZones</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_FileLocksmith.Title" xml:space="preserve"> <value>File Locksmith</value> </data> <data name="Oobe_ImageResizer.Title" xml:space="preserve"> <value>Image Resizer</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_KBM.Title" xml:space="preserve"> <value>Keyboard Manager</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_MouseWithoutBorders.Title" xml:space="preserve"> <value>Mouse Without Borders</value> <comment>Product name. Do not localize this string</comment> </data> <data name="Oobe_PowerRename.Title" xml:space="preserve"> <value>PowerRename</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_Run.Title" xml:space="preserve"> <value>PowerToys Run</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_ShortcutGuide.Title" xml:space="preserve"> <value>Shortcut Guide</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_VideoConference.Title" xml:space="preserve"> <value>Video Conference Mute</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_Overview.Title" xml:space="preserve"> <value>Welcome</value> </data> <data name="Oobe_WhatsNew.Text" xml:space="preserve"> <value>What's new</value> </data> <data name="Oobe_WhatsNew_LoadingError.Title" xml:space="preserve"> <value>Couldn't load the release notes.</value> </data> <data name="Oobe_WhatsNew_LoadingError.Message" xml:space="preserve"> <value>Please check your internet connection.</value> </data> <data name="Oobe_WhatsNew_ProxyAuthenticationWarning.Title" xml:space="preserve"> <value>Couldn't load the release notes.</value> </data> <data name="Oobe_WhatsNew_ProxyAuthenticationWarning.Message" xml:space="preserve"> <value>Your proxy server requires authentication.</value> </data> <data name="Oobe_WhatsNew_DetailedReleaseNotesLink.Text" xml:space="preserve"> <value>See more detailed release notes on GitHub</value> <comment>Don't loc "GitHub", it's the name of a product</comment> </data> <data name="OOBE_Settings.Content" xml:space="preserve"> <value>Open Settings</value> </data> <data name="Oobe_NavViewItem.Content" xml:space="preserve"> <value>Welcome to PowerToys</value> <comment>Don't loc "PowerToys"</comment> </data> <data name="Feedback_NavViewItem.Content" xml:space="preserve"> <value>Give feedback</value> </data> <data name="OobeWindow_Title" xml:space="preserve"> <value>Welcome to PowerToys</value> </data> <data name="OobeWindow_TitleTxt.Text" xml:space="preserve"> <value>Welcome to PowerToys</value> </data> <data name="SettingsWindow_Title" xml:space="preserve"> <value>PowerToys Settings</value> <comment>Title of the settings window when running as user</comment> </data> <data name="Awake.ModuleTitle" xml:space="preserve"> <value>Awake</value> </data> <data name="Awake.ModuleDescription" xml:space="preserve"> <value>A convenient way to keep your PC awake on-demand.</value> </data> <data name="Awake_EnableSettingsCard.Header" xml:space="preserve"> <value>Enable Awake</value> <comment>Awake is a product name, do not loc</comment> </data> <data name="Awake_NoKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep using the selected power plan</value> </data> <data name="Awake_IndefiniteKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep awake indefinitely</value> </data> <data name="Awake_TemporaryKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep awake for a time interval</value> </data> <data name="Awake_ExpirableKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep awake until expiration</value> </data> <data name="Awake_DisplaySettingsCard.Header" xml:space="preserve"> <value>Keep screen on</value> </data> <data name="Awake_DisplaySettingsCard.Description" xml:space="preserve"> <value>This setting is only available when keeping the PC awake</value> </data> <data name="Awake_ExpirationSettingsExpander.Description" xml:space="preserve"> <value>Keep custom awake state until a specific date and time</value> </data> <data name="Awake_ModeSettingsCard.Header" xml:space="preserve"> <value>Mode</value> </data> <data name="Awake_BehaviorSettingsGroup.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="Awake_IntervalHoursInput.Header" xml:space="preserve"> <value>Hours</value> </data> <data name="Awake_IntervalMinutesInput.Header" xml:space="preserve"> <value>Minutes</value> </data> <data name="Awake_ExpirationSettingsExpander_Date.Header" xml:space="preserve"> <value>End date</value> </data> <data name="Awake_ExpirationSettingsExpander_Time.Header" xml:space="preserve"> <value>End time</value> </data> <data name="Oobe_Awake.Title" xml:space="preserve"> <value>Awake</value> <comment>Module name, do not loc</comment> </data> <data name="Oobe_Awake.Description" xml:space="preserve"> <value>Awake is a Windows tool designed to keep your PC awake on-demand without having to manage its power settings. This behavior can be helpful when running time-consuming tasks while ensuring that your PC does not go to sleep or turn off its screens.</value> </data> <data name="Oobe_Awake_HowToUse.Text" xml:space="preserve"> <value>Open **PowerToys Settings** and enable Awake</value> </data> <data name="Oobe_Awake_TipsAndTricks.Text" xml:space="preserve"> <value>You can always change modes quickly by **right-clicking the Awake icon** in the system tray.</value> </data> <data name="General_FailedToDownloadTheNewVersion.Title" xml:space="preserve"> <value>An error occurred trying to install this update:</value> </data> <data name="General_InstallNow.Content" xml:space="preserve"> <value>Install now</value> </data> <data name="General_ReadMore.Text" xml:space="preserve"> <value>Read more</value> </data> <data name="General_NewVersionAvailable.Title" xml:space="preserve"> <value>An update is available:</value> </data> <data name="General_Downloading.Text" xml:space="preserve"> <value>Downloading...</value> </data> <data name="General_TryAgainToDownloadAndInstall.Content" xml:space="preserve"> <value>Try again to download and install</value> </data> <data name="General_CheckingForUpdates.Text" xml:space="preserve"> <value>Checking for updates...</value> </data> <data name="General_NewVersionReadyToInstall.Title" xml:space="preserve"> <value>An update is ready to install:</value> </data> <data name="General_UpToDate.Title" xml:space="preserve"> <value>PowerToys is up to date</value> </data> <data name="General_CantCheck.Title" xml:space="preserve"> <value>Network error. Please try again later</value> </data> <data name="General_DownloadAndInstall.Content" xml:space="preserve"> <value>Download &amp; install</value> </data> <data name="ImageResizer_Fit_Fill_ThirdPersonSingular" xml:space="preserve"> <value>Fills</value> </data> <data name="ImageResizer_Fit_Fit_ThirdPersonSingular" xml:space="preserve"> <value>Fits within</value> </data> <data name="ImageResizer_Fit_Stretch_ThirdPersonSingular" xml:space="preserve"> <value>Stretches to</value> </data> <data name="ImageResizer_Unit_Centimeter" xml:space="preserve"> <value>Centimeters</value> </data> <data name="ImageResizer_Unit_Inch" xml:space="preserve"> <value>Inches</value> </data> <data name="ImageResizer_Unit_Percent" xml:space="preserve"> <value>Percent</value> </data> <data name="ImageResizer_Unit_Pixel" xml:space="preserve"> <value>Pixels</value> </data> <data name="EditButton.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Edit</value> </data> <data name="ImageResizer_EditSize.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Edit size</value> </data> <data name="No" xml:space="preserve"> <value>No</value> <comment>Label of a cancel button</comment> </data> <data name="Delete_Dialog_Description" xml:space="preserve"> <value>Are you sure you want to delete this item?</value> </data> <data name="Yes" xml:space="preserve"> <value>Yes</value> <comment>Label of a confirmation button</comment> </data> <data name="SeeWhatsNew.Content" xml:space="preserve"> <value>See what's new</value> </data> <data name="Awake_ModeSettingsCard.Description" xml:space="preserve"> <value>Manage the state of your device when Awake is active</value> </data> <data name="ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="Enable_ColorFormat.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Enable colorformat</value> </data> <data name="More_Options_Button.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>More options</value> </data> <data name="More_Options_ButtonTooltip.Text" xml:space="preserve"> <value>More options</value> </data> <data name="To.Text" xml:space="preserve"> <value>to</value> <comment>as in: from x to y</comment> </data> <data name="LearnMore_Awake.Text" xml:space="preserve"> <value>Learn more about Awake</value> <comment>Awake is a product name, do not loc</comment> </data> <data name="LearnMore_ColorPicker.Text" xml:space="preserve"> <value>Learn more about Color Picker</value> <comment>Color Picker is a product name, do not loc</comment> </data> <data name="LearnMore_FancyZones.Text" xml:space="preserve"> <value>Learn more about FancyZones</value> <comment>FancyZones is a product name, do not loc</comment> </data> <data name="LearnMore_FileLocksmith.Text" xml:space="preserve"> <value>Learn more about File Locksmith</value> </data> <data name="LearnMore_ImageResizer.Text" xml:space="preserve"> <value>Learn more about Image Resizer</value> <comment>Image Resizer is a product name, do not loc</comment> </data> <data name="LearnMore_KBM.Text" xml:space="preserve"> <value>Learn more about Keyboard Manager</value> <comment>Keyboard Manager is a product name, do not loc</comment> </data> <data name="LearnMore_MouseUtils.Text" xml:space="preserve"> <value>Learn more about Mouse utilities</value> <comment>Mouse utilities is a product name, do not loc</comment> </data> <data name="LearnMore_PastePlain.Text" xml:space="preserve"> <value>Learn more about Paste as Plain Text</value> <comment> Paste as Plain Text is the name of the module. </comment> </data> <data name="LearnMore_MouseWithoutBorders.Text" xml:space="preserve"> <value>Learn more about Mouse Without Borders</value> <comment>Mouse Without Borders is the name of the module. </comment> </data> <data name="LearnMore_PowerPreview.Text" xml:space="preserve"> <value>Learn more about File Explorer add-ons</value> <comment>File Explorer is a product name, localize as Windows does</comment> </data> <data name="LearnMore_Peek.Text" xml:space="preserve"> <value>Learn more about Peek</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="LearnMore_PowerRename.Text" xml:space="preserve"> <value>Learn more about PowerRename</value> <comment>PowerRename is a product name, do not loc</comment> </data> <data name="LearnMore_Run.Text" xml:space="preserve"> <value>Learn more about PowerToys Run</value> <comment>PowerToys Run is a product name, do not loc</comment> </data> <data name="LearnMore_MeasureTool.Text" xml:space="preserve"> <value>Learn more about Screen Ruler</value> <comment>Screen Ruler is a product name, do not loc</comment> </data> <data name="LearnMore_ShortcutGuide.Text" xml:space="preserve"> <value>Learn more about Shortcut Guide</value> <comment>Shortcut Guide is a product name, do not loc</comment> </data> <data name="LearnMore_VCM.Text" xml:space="preserve"> <value>Learn more about Video Conference Mute</value> <comment>Video Conference Mute is a product name, do not loc</comment> </data> <data name="Oobe_FileExplorer.Title" xml:space="preserve"> <value>File Explorer add-ons</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_MouseUtils.Title" xml:space="preserve"> <value>Mouse utilities</value> <comment>Mouse as in the hardware peripheral</comment> </data> <data name="Oobe_MouseUtils_FindMyMouse.Text" xml:space="preserve"> <value>Find My Mouse</value> <comment>Mouse as in the hardware peripheral</comment> </data> <data name="Oobe_MouseUtils_FindMyMouse_Description.Text" xml:space="preserve"> <value>Focus the mouse pointer pressing the Ctrl key twice, using a custom shortcut or shaking the mouse.</value> <comment>Mouse as in the hardware peripheral. Key as in a keyboard key</comment> </data> <data name="Oobe_MouseUtils_MouseHighlighter.Text" xml:space="preserve"> <value>Mouse Highlighter</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MouseHighlighter_Description.Text" xml:space="preserve"> <value>Use a keyboard shortcut to highlight left and right mouse clicks.</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MousePointerCrosshairs.Text" xml:space="preserve"> <value>Mouse Pointer Crosshairs</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MousePointerCrosshairs_Description.Text" xml:space="preserve"> <value>Draw crosshairs centered around the mouse pointer.</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MouseJump.Text" xml:space="preserve"> <value>Mouse Jump</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MouseJump_Description.Text" xml:space="preserve"> <value>Jump the mouse pointer quickly to anywhere on your desktop.</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Launch_Run.Content" xml:space="preserve"> <value>Launch PowerToys Run</value> </data> <data name="Launch_ShortcutGuide.Content" xml:space="preserve"> <value>Launch Shortcut Guide</value> </data> <data name="ColorPicker_ColorFormat_ToggleSwitch.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Show format in editor</value> </data> <data name="GeneralPage_Documentation.Text" xml:space="preserve"> <value>Documentation</value> </data> <data name="PowerLauncher_SearchList.PlaceholderText" xml:space="preserve"> <value>Search this list</value> </data> <data name="PowerLauncher_SearchList.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Search this list</value> </data> <data name="Awake.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="ColorPicker.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="General.SecondaryLinksHeader" xml:space="preserve"> <value>Related information</value> </data> <data name="ImageResizer.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="MouseUtils.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="PowerLauncher.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="PowerRename.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="EditTooltip.Text" xml:space="preserve"> <value>Edit</value> </data> <data name="RemoveTooltip.Text" xml:space="preserve"> <value>Remove</value> </data> <data name="Activation_Shortcut_Cancel" xml:space="preserve"> <value>Cancel</value> </data> <data name="Activation_Shortcut_Description" xml:space="preserve"> <value>Press a combination of keys to change this shortcut</value> </data> <data name="Activation_Shortcut_With_Disable_Description" xml:space="preserve"> <value>Press a combination of keys to change this shortcut. Right-click to remove the key combination, thereby deactivating the shortcut.</value> </data> <data name="Activation_Shortcut_Reset" xml:space="preserve"> <value>Reset</value> </data> <data name="Activation_Shortcut_Save" xml:space="preserve"> <value>Save</value> </data> <data name="Activation_Shortcut_Title" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="InvalidShortcut.Title" xml:space="preserve"> <value>Invalid shortcut</value> </data> <data name="InvalidShortcutWarningLabel.Text" xml:space="preserve"> <value>Only shortcuts that start with **Windows key**, **Ctrl**, **Alt** or **Shift** are valid.</value> <comment>The ** sequences are used for text formatting of the key names. Don't remove them on translation.</comment> </data> <data name="FancyZones_SpanZonesAcrossMonitors.Description" xml:space="preserve"> <value>All monitors must have the same DPI scaling and will be treated as one large combined rectangle which contains all monitors</value> </data> <data name="ImageResizer_DefaultSize_NewSizePrefix" xml:space="preserve"> <value>New size</value> <comment>First part of the default name of new sizes that can be added in PT's settings ui.</comment> </data> <data name="Awake_IntervalSettingsCard.Header" xml:space="preserve"> <value>Interval before returning to the previous awakeness state</value> </data> <data name="Awake_ExpirationSettingsExpander.Header" xml:space="preserve"> <value>End date and time</value> </data> <data name="MouseUtils.ModuleTitle" xml:space="preserve"> <value>Mouse utilities</value> </data> <data name="MouseUtils.ModuleDescription" xml:space="preserve"> <value>A collection of mouse utilities.</value> </data> <data name="MouseUtils_FindMyMouse.Header" xml:space="preserve"> <value>Find My Mouse</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_FindMyMouse.Description" xml:space="preserve"> <value>Find My Mouse highlights the position of the cursor when pressing the Ctrl key twice, using a custom shortcut or when shaking the mouse.</value> <comment>"Ctrl" is a keyboard key. "Find My Mouse" is the name of the utility</comment> </data> <data name="MouseUtils_Enable_FindMyMouse.Header" xml:space="preserve"> <value>Enable Find My Mouse</value> <comment>"Find My Mouse" is the name of the utility.</comment> </data> <data name="MouseUtils_FindMyMouse_ActivationMethod.Header" xml:space="preserve"> <value>Activation method</value> </data> <data name="MouseUtils_FindMyMouse_ActivationDoubleControlPress.Content" xml:space="preserve"> <value>Press Left Control twice</value> <comment>Left control is the physical key on the keyboard.</comment> </data> <data name="MouseUtils_FindMyMouse_ActivationShakeMouse.Content" xml:space="preserve"> <value>Shake mouse</value> <comment>Mouse is the hardware peripheral.</comment> </data> <data name="MouseUtils_FindMyMouse_ExcludedApps.Description" xml:space="preserve"> <value>Prevents module activation when an excluded application is the foreground application</value> </data> <data name="MouseUtils_FindMyMouse_ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="MouseUtils_FindMyMouse_ExcludedApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> </data> <data name="MouseUtils_Prevent_Activation_On_Game_Mode.Content" xml:space="preserve"> <value>Do not activate when Game Mode is on</value> <comment>"Game mode" is the Windows feature to prevent notification when playing a game.</comment> </data> <data name="MouseUtils_FindMyMouse_BackgroundColor.Header" xml:space="preserve"> <value>Background color</value> </data> <data name="MouseUtils_FindMyMouse_SpotlightColor.Header" xml:space="preserve"> <value>Spotlight color</value> </data> <data name="MouseUtils_FindMyMouse_OverlayOpacity.Header" xml:space="preserve"> <value>Overlay opacity (%)</value> </data> <data name="MouseUtils_FindMyMouse_SpotlightRadius.Header" xml:space="preserve"> <value>Spotlight radius (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_FindMyMouse_SpotlightInitialZoom.Header" xml:space="preserve"> <value>Spotlight initial zoom</value> </data> <data name="MouseUtils_FindMyMouse_SpotlightInitialZoom.Description" xml:space="preserve"> <value>Spotlight zoom factor at animation start</value> </data> <data name="MouseUtils_FindMyMouse_AnimationDurationMs.Header" xml:space="preserve"> <value>Animation duration (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_FindMyMouse_AnimationDurationMs.Description" xml:space="preserve"> <value>Time before the spotlight appears (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_FindMyMouse_AnimationDurationMs_Disabled.Message" xml:space="preserve"> <value>Animations are disabled by OS. See Settings &gt; Accessibility &gt; Visual effects</value> </data> <data name="MouseUtils_FindMyMouse_ShakingMinimumDistance.Header" xml:space="preserve"> <value>Shake minimum distance</value> </data> <data name="MouseUtils_FindMyMouse_ShakingMinimumDistance.Description" xml:space="preserve"> <value>The minimum distance for mouse shaking activation, for adjusting sensitivity</value> </data> <data name="MouseUtils_MouseHighlighter.Header" xml:space="preserve"> <value>Mouse Highlighter</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_MouseHighlighter.Description" xml:space="preserve"> <value>Mouse Highlighter mode will highlight mouse clicks.</value> <comment>"Mouse Highlighter" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_Enable_MouseHighlighter.Header" xml:space="preserve"> <value>Enable Mouse Highlighter</value> <comment>"Find My Mouse" is the name of the utility.</comment> </data> <data name="MouseUtils_MouseHighlighter_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MouseUtils_MouseHighlighter_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to turn on or off this mode</value> <comment>"Mouse Highlighter" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_MouseHighlighter_PrimaryButtonClickColor.Header" xml:space="preserve"> <value>Primary button highlight color</value> </data> <data name="MouseUtils_MouseHighlighter_SecondaryButtonClickColor.Header" xml:space="preserve"> <value>Secondary button highlight color</value> </data> <data name="MouseUtils_MouseHighlighter_HighlightRadius.Header" xml:space="preserve"> <value>Radius (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDelayMs.Header" xml:space="preserve"> <value>Fade delay (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDelayMs.Description" xml:space="preserve"> <value>Time before the highlight begins to fade (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDurationMs.Header" xml:space="preserve"> <value>Fade duration (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDurationMs.Description" xml:space="preserve"> <value>Duration of the disappear animation (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MousePointerCrosshairs.Header" xml:space="preserve"> <value>Mouse Pointer Crosshairs</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_MousePointerCrosshairs.Description" xml:space="preserve"> <value>Mouse Pointer Crosshairs draws crosshairs centered on the mouse pointer.</value> <comment>"Mouse Pointer Crosshairs" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_Enable_MousePointerCrosshairs.Header" xml:space="preserve"> <value>Enable Mouse Pointer Crosshairs</value> <comment>"Mouse Pointer Crosshairs" is the name of the utility.</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MouseUtils_MousePointerCrosshairs_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to show/hide the crosshairs</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsColor.Header" xml:space="preserve"> <value>Crosshairs color</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsOpacity.Header" xml:space="preserve"> <value>Crosshairs opacity (%)</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsRadius.Header" xml:space="preserve"> <value>Crosshairs center radius (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsThickness.Header" xml:space="preserve"> <value>Crosshairs thickness (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsBorderColor.Header" xml:space="preserve"> <value>Crosshairs border color</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsBorderSize.Header" xml:space="preserve"> <value>Crosshairs border size (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_IsCrosshairsFixedLengthEnabled.Header" xml:space="preserve"> <value>Fix crosshairs length</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsFixedLength.Header" xml:space="preserve"> <value>Crosshairs fixed length (px)</value> <comment>px = pixels</comment> </data> <data name="FancyZones_Radio_Custom_Colors.Content" xml:space="preserve"> <value>Custom colors</value> </data> <data name="FancyZones_Radio_Default_Theme.Content" xml:space="preserve"> <value>Windows default</value> </data> <data name="ColorModeHeader.Header" xml:space="preserve"> <value>App theme</value> </data> <data name="FancyZones_Zone_Appearance.Description" xml:space="preserve"> <value>Customize the way zones look</value> </data> <data name="FancyZones_Zone_Appearance.Header" xml:space="preserve"> <value>Zone appearance</value> </data> <data name="VideoConference_DeprecationWarning.Title" xml:space="preserve"> <value>VCM is moving into legacy mode (maintenance only).</value> </data> <data name="VideoConference_DeprecationWarningButton.Content" xml:space="preserve"> <value>Learn more</value> </data> <data name="LearnMore.Content" xml:space="preserve"> <value>Learn more</value> </data> <data name="VideoConference_RunAsAdminRequired.Title" xml:space="preserve"> <value>You need to run as administrator to modify these settings.</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_GCODE.Header" xml:space="preserve"> <value>Geometric Code</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_GCODE.Description" xml:space="preserve"> <value>Only .gcode files with embedded thumbnails are supported</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_GCODE.Header" xml:space="preserve"> <value>Geometric Code</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_GCODE.Description" xml:space="preserve"> <value>Only .gcode files with embedded thumbnails are supported</value> </data> <data name="FancyZones_NumberColor.Header" xml:space="preserve"> <value>Number color</value> </data> <data name="FancyZones_ShowZoneNumberCheckBoxControl.Content" xml:space="preserve"> <value>Show zone number</value> </data> <data name="ToggleSwitch.OffContent" xml:space="preserve"> <value>Off</value> <comment>The state of a ToggleSwitch when it's off</comment> </data> <data name="ToggleSwitch.OnContent" xml:space="preserve"> <value>On</value> <comment>The state of a ToggleSwitch when it's on</comment> </data> <data name="CropAndLock.ModuleDescription" xml:space="preserve"> <value>Crop And Lock allows you to crop a current application into a smaller window or just create a thumbnail. Focus the target window and press the shortcut to start cropping.</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="CropAndLock.ModuleTitle" xml:space="preserve"> <value>Crop And Lock </value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="CropAndLock_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="CropAndLock_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="Shell_CropAndLock.Content" xml:space="preserve"> <value>Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="LearnMore_CropAndLock.Text" xml:space="preserve"> <value>Learn more about Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="CropAndLock_ReparentActivation_Shortcut.Header" xml:space="preserve"> <value>Reparent shortcut</value> </data> <data name="CropAndLock_ReparentActivation_Shortcut.Description" xml:space="preserve"> <value>Shortcut to crop an application's window into a cropped window. This is experimental and can cause issues with some applications, since the cropped window will contain the original application window.</value> </data> <data name="CropAndLock_ThumbnailActivation_Shortcut.Header" xml:space="preserve"> <value>Thumbnail shortcut</value> </data> <data name="CropAndLock_ThumbnailActivation_Shortcut.Description" xml:space="preserve"> <value>Shortcut to crop and create a thumbnail of another window. The application isn't controllable through the thumbnail but it'll have less compatibility issues. </value> </data> <data name="CropAndLock.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="Oobe_CropAndLock.Title" xml:space="preserve"> <value>Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="Oobe_CropAndLock.Description" xml:space="preserve"> <value>Crop And Lock allows you to crop a current application into a smaller window or just create a thumbnail. Focus the target window and press the shortcut to start cropping.</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="Oobe_CropAndLock_HowToUse_Thumbnail.Text" xml:space="preserve"> <value>to crop and create a thumbnail of another window. The application isn't controllable through the thumbnail but it'll have less compatibility issues.</value> </data> <data name="Oobe_CropAndLock_HowToUse_Reparent.Text" xml:space="preserve"> <value>to crop an application's window into a cropped window. This is experimental and can cause issues with some applications, since the cropped window will contain the original application window.</value> </data> <data name="AlwaysOnTop.ModuleDescription" xml:space="preserve"> <value>Always On Top is a quick and easy way to pin windows on top.</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop.ModuleTitle" xml:space="preserve"> <value>Always On Top </value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="Peek_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="AlwaysOnTop_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_ExcludedApps.Description" xml:space="preserve"> <value>Excludes an application from pinning on top</value> </data> <data name="AlwaysOnTop_ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="AlwaysOnTop_ExcludedApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> </data> <data name="AlwaysOnTop_FrameColor.Header" xml:space="preserve"> <value>Color</value> </data> <data name="AlwaysOnTop_FrameEnabled.Header" xml:space="preserve"> <value>Show a border around the pinned window</value> </data> <data name="AlwaysOnTop_FrameThickness.Header" xml:space="preserve"> <value>Thickness (px)</value> <comment>px = pixels</comment> </data> <data name="AlwaysOnTop_Behavior_GroupSettings.Header" xml:space="preserve"> <value>Appearance &amp; behavior</value> </data> <data name="Shell_AlwaysOnTop.Content" xml:space="preserve"> <value>Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_GameMode.Content" xml:space="preserve"> <value>Do not activate when Game Mode is on</value> <comment>Game Mode is a Windows feature</comment> </data> <data name="AlwaysOnTop_SoundTitle.Header" xml:space="preserve"> <value>Sound</value> </data> <data name="AlwaysOnTop_Sound.Content" xml:space="preserve"> <value>Play a sound when pinning a window</value> </data> <data name="AlwaysOnTop_Behavior.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="LearnMore_AlwaysOnTop.Text" xml:space="preserve"> <value>Learn more about Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="AlwaysOnTop_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to pin or unpin an app window</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="Oobe_AlwaysOnTop.Title" xml:space="preserve"> <value>Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="Oobe_AlwaysOnTop.Description" xml:space="preserve"> <value>Always On Top improves your multitasking workflow by pinning an application window so it's always in front - even when focus changes to another window after that.</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="Oobe_AlwaysOnTop_HowToUse.Text" xml:space="preserve"> <value>to pin or unpin the selected window so it's always on top of all other windows.</value> </data> <data name="Oobe_AlwaysOnTop_TipsAndTricks.Text" xml:space="preserve"> <value>You can tweak the visual outline of the pinned windows in PowerToys settings.</value> </data> <data name="AlwaysOnTop_FrameColor_Mode.Header" xml:space="preserve"> <value>Color mode</value> </data> <data name="AlwaysOnTop_Radio_Custom_Color.Content" xml:space="preserve"> <value>Custom color</value> </data> <data name="AlwaysOnTop_Radio_Windows_Default.Content" xml:space="preserve"> <value>Windows default</value> </data> <data name="FileExplorerPreview.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Monaco_Wrap_Text.Content" xml:space="preserve"> <value>Wrap text</value> <comment>Feature on or off</comment> </data> <data name="FancyZones_AllowPopupWindowSnap.Description" xml:space="preserve"> <value>This setting can affect all popup windows including notifications</value> </data> <data name="FancyZones_AllowPopupWindowSnap.Header" xml:space="preserve"> <value>Allow popup windows snapping</value> </data> <data name="FancyZones_AllowChildWindowSnap.Content" xml:space="preserve"> <value>Allow child windows snapping</value> </data> <data name="Shell_WhatsNew.Content" xml:space="preserve"> <value>What's new</value> </data> <data name="Shell_Peek.Content" xml:space="preserve"> <value>Peek</value> <comment>Product name: Navigation view item name for Peek</comment> </data> <data name="Peek.ModuleTitle" xml:space="preserve"> <value>Peek</value> </data> <data name="Peek.ModuleDescription" xml:space="preserve"> <value>Peek is a quick and easy way to preview files. Select a file in File Explorer and press the shortcut to open the file preview.</value> </data> <data name="Peek_EnablePeek.Header" xml:space="preserve"> <value>Enable Peek</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="Peek_BehaviorHeader.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="Peek_AlwaysRunNotElevated.Header" xml:space="preserve"> <value>Always run not elevated, even when PowerToys is elevated</value> </data> <data name="Peek_AlwaysRunNotElevated.Description" xml:space="preserve"> <value>Tries to run Peek without elevated permissions, to fix access to network shares. You need to disable and re-enable Peek for changes to this value to take effect.</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="Peek_CloseAfterLosingFocus.Header" xml:space="preserve"> <value>Automatically close the Peek window after it loses focus</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="FancyZones_DisableRoundCornersOnWindowSnap.Content" xml:space="preserve"> <value>Disable round corners when window is snapped</value> </data> <data name="PowerLauncher_SearchQueryTuningEnabled.Description" xml:space="preserve"> <value>Fine tune results ordering</value> </data> <data name="PowerLauncher_SearchQueryTuningEnabled.Header" xml:space="preserve"> <value>Results order tuning</value> </data> <data name="PowerLauncher_SearchClickedItemWeight.Description" xml:space="preserve"> <value>Use a higher number to get selected results to rise faster. The default is 5, 0 to disable.</value> </data> <data name="PowerLauncher_SearchClickedItemWeight.Header" xml:space="preserve"> <value>Selected item weight</value> </data> <data name="PowerLauncher_WaitForSlowResults.Description" xml:space="preserve"> <value>Selecting this can help preselect the top, more relevant result, but at the risk of jumpiness</value> </data> <data name="PowerLauncher_WaitForSlowResults.Header" xml:space="preserve"> <value>Wait on slower plugin results before selecting top item in results</value> </data> <data name="PowerLauncher_PluginWeightBoost.Description" xml:space="preserve"> <value>Use a higher number to have this plugin's result show higher in the global results. Default is 0.</value> </data> <data name="PowerLauncher_PluginWeightBoost.Header" xml:space="preserve"> <value>Global sort order score modifier</value> </data> <data name="AlwaysOnTop_RoundCorners.Content" xml:space="preserve"> <value>Enable round corners</value> </data> <data name="LearnMore_QuickAccent.Text" xml:space="preserve"> <value>Learn more about Quick Accent</value> <comment>Quick Accent is a product name, do not loc</comment> </data> <data name="QuickAccent_EnableQuickAccent.Header" xml:space="preserve"> <value>Enable Quick Accent</value> </data> <data name="Shell_QuickAccent.Content" xml:space="preserve"> <value>Quick Accent</value> </data> <data name="QuickAccent.ModuleDescription" xml:space="preserve"> <value>Quick Accent is an alternative way to type accented characters, useful for when a keyboard doesn't support that specific accent. Activate by holding the key for the character you want to add an accent to, then press the activation key (space, left or right arrow keys) and an overlay to select accented characters will appear!</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent.ModuleTitle" xml:space="preserve"> <value>Quick Accent</value> </data> <data name="QuickAccent.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> </data> <data name="AlwaysOnTop_ShortDescription" xml:space="preserve"> <value>Pin a window</value> </data> <data name="Awake_ShortDescription" xml:space="preserve"> <value>Keep your PC awake</value> </data> <data name="ColorPicker_ShortDescription" xml:space="preserve"> <value>Pick a color</value> </data> <data name="CropAndLock_Thumbnail" xml:space="preserve"> <value>Thumbnail</value> </data> <data name="CropAndLock_Reparent" xml:space="preserve"> <value>Reparent</value> </data> <data name="FancyZones_OpenEditor" xml:space="preserve"> <value>Open editor</value> </data> <data name="FileLocksmith_ShortDescription" xml:space="preserve"> <value>Right-click on files or directories to show running processes</value> </data> <data name="FindMyMouse_ShortDescription" xml:space="preserve"> <value>Find the mouse</value> </data> <data name="ImageResizer_ShortDescription" xml:space="preserve"> <value>Select Image Resizer in the right-click context menu</value> </data> <data name="MouseHighlighter_ShortDescription" xml:space="preserve"> <value>Highlight clicks</value> </data> <data name="MouseJump_ShortDescription" xml:space="preserve"> <value>Quickly move the mouse pointer</value> </data> <data name="MouseCrosshairs_ShortDescription" xml:space="preserve"> <value>Draw crosshairs centered on the mouse pointer</value> </data> <data name="MouseWithoutBorders_ShortDescription" xml:space="preserve"> <value>Move your cursor across multiple devices</value> </data> <data name="PastePlain_ShortDescription" xml:space="preserve"> <value>Paste clipboard content without formatting</value> </data> <data name="Peek_ShortDescription" xml:space="preserve"> <value>Quick and easy previewer</value> </data> <data name="PowerRename_ShortDescription" xml:space="preserve"> <value>Select Power Rename in right-click context menu</value> </data> <data name="Run_ShortDescription" xml:space="preserve"> <value>A quick launcher</value> </data> <data name="PowerAccent_ShortDescription" xml:space="preserve"> <value>An alternative way to type accented characters</value> </data> <data name="RegistryPreview_ShortDescription" xml:space="preserve"> <value>Visualize and edit Windows Registry files</value> </data> <data name="ScreenRuler_ShortDescription" xml:space="preserve"> <value>Measure pixels on your screen</value> </data> <data name="ShortcutGuide_ShortDescription" xml:space="preserve"> <value>Show a help overlay with Windows shortcuts</value> </data> <data name="PowerOcr_ShortDescription" xml:space="preserve"> <value>A convenient way to copy text from anywhere on screen</value> </data> <data name="Dashboard_Activation" xml:space="preserve"> <value>Activation</value> </data> <data name="DashboardKBMShowMappingsButton.Content" xml:space="preserve"> <value>Show remappings</value> </data> <data name="Oobe_QuickAccent.Description" xml:space="preserve"> <value>Quick Accent is an easy way to write letters with accents, like on a smartphone.</value> </data> <data name="Oobe_QuickAccent.Title" xml:space="preserve"> <value>Quick Accent</value> </data> <data name="Oobe_QuickAccent_HowToUse.Text" xml:space="preserve"> <value>Open **PowerToys Settings** and enable Quick Accent. While holding the key for the character you want to add an accent to, press the Activation Key and an overlay to select the accented character will appear.</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="QuickAccent_Activation_Shortcut.Header" xml:space="preserve"> <value>Activation key</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent_Activation_Shortcut.Description" xml:space="preserve"> <value>Press this key after holding down the target letter</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent_Activation_Key_Arrows.Content" xml:space="preserve"> <value>Left/Right Arrow</value> <comment>Left/Right arrow keyboard keys</comment> </data> <data name="QuickAccent_Activation_Key_Space.Content" xml:space="preserve"> <value>Space</value> <comment>Space is the space keyboard key</comment> </data> <data name="QuickAccent_Activation_Key_Either.Content" xml:space="preserve"> <value>Left, Right or Space</value> <comment>All are keys on a keyboard</comment> </data> <data name="QuickAccent_Toolbar.Header" xml:space="preserve"> <value>Toolbar</value> </data> <data name="QuickAccent_ToolbarPosition.Header" xml:space="preserve"> <value>Toolbar position</value> </data> <data name="QuickAccent_ToolbarPosition_TopCenter.Content" xml:space="preserve"> <value>Top center</value> </data> <data name="QuickAccent_ToolbarPosition_TopLeftCorner.Content" xml:space="preserve"> <value>Top left corner</value> </data> <data name="QuickAccent_ToolbarPosition_TopRightCorner.Content" xml:space="preserve"> <value>Top right corner</value> </data> <data name="QuickAccent_ToolbarPosition_BottomLeftCorner.Content" xml:space="preserve"> <value>Bottom left corner</value> </data> <data name="QuickAccent_ToolbarPosition_BottomCenter.Content" xml:space="preserve"> <value>Bottom center</value> </data> <data name="QuickAccent_ToolbarPosition_BottomRightCorner.Content" xml:space="preserve"> <value>Bottom right corner</value> </data> <data name="QuickAccent_ToolbarPosition_Center.Content" xml:space="preserve"> <value>Center</value> </data> <data name="QuickAccent_ToolbarPosition_Left.Content" xml:space="preserve"> <value>Left</value> </data> <data name="QuickAccent_ToolbarPosition_Right.Content" xml:space="preserve"> <value>Right</value> </data> <data name="QuickAccent_Behavior.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="QuickAccent_InputTimeMs.Header" xml:space="preserve"> <value>Input delay (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="QuickAccent_InputTimeMs.Description" xml:space="preserve"> <value>Hold the key down for this much time to make the accent menu appear (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="QuickAccent_ExcludedApps.Description" xml:space="preserve"> <value>Prevents module activation if a foreground application is excluded. Add one application name per line.</value> </data> <data name="QuickAccent_ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="QuickAccent_ExcludedApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: Teams.exe</value> </data> <data name="LearnMore_TextExtractor.Text" xml:space="preserve"> <value>Learn more about Text Extractor</value> </data> <data name="TextExtractor_Cancel" xml:space="preserve"> <value>cancel</value> </data> <data name="General_SettingsBackupAndRestore_NothingToBackup" xml:space="preserve"> <value>A new backup was not created because no settings have been changed since last backup.</value> </data> <data name="General_SettingsBackupAndRestore_NoBackupFound" xml:space="preserve"> <value>No backup found</value> </data> <data name="General_SettingsBackupAndRestore_FailedToParseTime" xml:space="preserve"> <value>Failed to parse time</value> </data> <data name="General_SettingsBackupAndRestore_UnknownBackupTime" xml:space="preserve"> <value>Unknown</value> </data> <data name="General_SettingsBackupAndRestore_UnknownBackupSource" xml:space="preserve"> <value>Unknown</value> </data> <data name="General_SettingsBackupAndRestore_ThisMachine" xml:space="preserve"> <value>This computer</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsMatch" xml:space="preserve"> <value>Current settings match</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsStatusAt" xml:space="preserve"> <value>at</value> <comment>E.g., Food was served 'at' noon.</comment> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsDiffer" xml:space="preserve"> <value>Current settings differ</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsNoChecked" xml:space="preserve"> <value>Checking...</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsUnknown" xml:space="preserve"> <value>Unknown</value> </data> <data name="General_SettingsBackupAndRestore_NeverRestored" xml:space="preserve"> <value>Never restored</value> </data> <data name="General_SettingsBackupAndRestore_NothingToRestore" xml:space="preserve"> <value>Nothing to restore.</value> </data> <data name="General_SettingsBackupAndRestore_NoSettingsFilesFound" xml:space="preserve"> <value>No settings files found.</value> </data> <data name="General_SettingsBackupAndRestore_BackupError" xml:space="preserve"> <value>There was an error. Try another backup location.</value> </data> <data name="General_SettingsBackupAndRestore_SettingsFormatError" xml:space="preserve"> <value>There was an error in the settings format. Please check the settings file:</value> </data> <data name="General_SettingsBackupAndRestore_BackupComplete" xml:space="preserve"> <value>Backup completed.</value> </data> <data name="General_SettingsBackupAndRestore_NoBackupSyncPath" xml:space="preserve"> <value>No backup location selected.</value> </data> <data name="General_SettingsBackupAndRestore_NoBackupsFound" xml:space="preserve"> <value>No backups found to restore.</value> </data> <data name="General_SettingsBackupAndRestore_InvalidBackupLocation" xml:space="preserve"> <value>Invalid backup location.</value> </data> <data name="TextExtractor.ModuleDescription" xml:space="preserve"> <value>Text Extractor is a convenient way to copy text from anywhere on screen</value> </data> <data name="TextExtractor.ModuleTitle" xml:space="preserve"> <value>Text Extractor</value> </data> <data name="TextExtractor_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Text Extractor</value> </data> <data name="TextExtractor_SupportedLanguages.Title" xml:space="preserve"> <value>Text Extractor can only recognize languages that have the OCR pack installed.</value> </data> <data name="TextExtractor_SupportedLanguages_Link.Content" xml:space="preserve"> <value>Learn more about supported languages</value> </data> <data name="Shell_TextExtractor.Content" xml:space="preserve"> <value>Text Extractor</value> </data> <data name="Launch_TextExtractor.Content" xml:space="preserve"> <value>Launch Text Extractor</value> </data> <data name="Oobe_TextExtractor.Title" xml:space="preserve"> <value>Text Extractor</value> </data> <data name="Oobe_TextExtractor_HowToUse.Text" xml:space="preserve"> <value>to open Text Extractor and then selecting a region to copy the text from.</value> </data> <data name="Oobe_TextExtractor_TipsAndTricks.Text" xml:space="preserve"> <value>Hold the shift key to move the selection region around.</value> </data> <data name="TextExtractor.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> </data> <data name="Oobe_TextExtractor.Description" xml:space="preserve"> <value>Text Extractor works like Snipping Tool, but copies the text out of the selected region using OCR and puts it on the clipboard.</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Monaco_Try_Format.Description" xml:space="preserve"> <value>Applies to json and xml. Files remain unchanged.</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Monaco_Try_Format.Header" xml:space="preserve"> <value>Try to format the source for preview</value> </data> <data name="Run_ConflictingKeywordInfo.Title" xml:space="preserve"> <value>Some characters and phrases may conflict with global queries of other plugins if you use them as activation command.</value> </data> <data name="Run_ConflictingKeywordInfo_Link.Content" xml:space="preserve"> <value>Learn more about conflicting activation commands</value> </data> <data name="MeasureTool_ContinuousCapture_Information.Title" xml:space="preserve"> <value>The continuous capture mode will consume more resources when in use. Also, measurements will be excluded from screenshots and screen capture.</value> <comment>pointer as in mouse pointer. Resources refer to things like CPU, GPU, RAM</comment> </data> <data name="QuickAccent_Description_Indicator.Header" xml:space="preserve"> <value>Show the Unicode code and name of the currently selected character</value> </data> <data name="QuickAccent_SortByUsageFrequency_Indicator.Header" xml:space="preserve"> <value>Sort characters by usage frequency</value> </data> <data name="QuickAccent_SortByUsageFrequency_Indicator.Description" xml:space="preserve"> <value>Track characters usage frequency and sort them accordingly</value> </data> <data name="QuickAccent_StartSelectionFromTheLeft_Indicator.Header" xml:space="preserve"> <value>Start selection from the left</value> </data> <data name="QuickAccent_StartSelectionFromTheLeft_Indicator.Description" xml:space="preserve"> <value>Start selection from the leftmost character for all activation keys, including left and right arrows</value> </data> <data name="QuickAccent_DisableFullscreen.Header" xml:space="preserve"> <value>Disable when Game Mode is On</value> </data> <data name="QuickAccent_Language.Header" xml:space="preserve"> <value>Characters</value> </data> <data name="QuickAccent_SelectedLanguage.Header" xml:space="preserve"> <value>Choose a character set</value> </data> <data name="QuickAccent_SelectedLanguage.Description" xml:space="preserve"> <value>Show only accented characters common to the selected set</value> </data> <data name="QuickAccent_SelectedLanguage_All.Content" xml:space="preserve"> <value>All available</value> </data> <data name="QuickAccent_SelectedLanguage_Catalan.Content" xml:space="preserve"> <value>Catalan</value> </data> <data name="QuickAccent_SelectedLanguage_Currency.Content" xml:space="preserve"> <value>Currency</value> </data> <data name="QuickAccent_SelectedLanguage_Croatian.Content" xml:space="preserve"> <value>Croatian</value> </data> <data name="QuickAccent_SelectedLanguage_Czech.Content" xml:space="preserve"> <value>Czech</value> </data> <data name="QuickAccent_SelectedLanguage_Gaeilge.Content" xml:space="preserve"> <value>Gaeilge</value> <comment>Gaelic language spoken in Ireland</comment> </data> <data name="QuickAccent_SelectedLanguage_Gaidhlig.Content" xml:space="preserve"> <value>Gàidhlig</value> <comment>Scottish Gaelic</comment> </data> <data name="QuickAccent_SelectedLanguage_German.Content" xml:space="preserve"> <value>German</value> </data> <data name="QuickAccent_SelectedLanguage_Hebrew.Content" xml:space="preserve"> <value>Hebrew</value> </data> <data name="QuickAccent_SelectedLanguage_French.Content" xml:space="preserve"> <value>French</value> </data> <data name="QuickAccent_SelectedLanguage_Estonian.Content" xml:space="preserve"> <value>Estonian</value> </data> <data name="QuickAccent_SelectedLanguage_Lithuanian.Content" xml:space="preserve"> <value>Lithuanian</value> </data> <data name="QuickAccent_SelectedLanguage_Macedonian.Content" xml:space="preserve"> <value>Macedonian</value> </data> <data name="QuickAccent_SelectedLanguage_Maori.Content" xml:space="preserve"> <value>Maori</value> </data> <data name="QuickAccent_SelectedLanguage_Dutch.Content" xml:space="preserve"> <value>Dutch</value> </data> <data name="QuickAccent_SelectedLanguage_Norwegian.Content" xml:space="preserve"> <value>Norwegian</value> </data> <data name="QuickAccent_SelectedLanguage_Pinyin.Content" xml:space="preserve"> <value>Pinyin</value> </data> <data name="QuickAccent_SelectedLanguage_Polish.Content" xml:space="preserve"> <value>Polish</value> </data> <data name="QuickAccent_SelectedLanguage_Portuguese.Content" xml:space="preserve"> <value>Portuguese</value> </data> <data name="QuickAccent_SelectedLanguage_Slovakian.Content" xml:space="preserve"> <value>Slovakian</value> </data> <data name="QuickAccent_SelectedLanguage_Spanish.Content" xml:space="preserve"> <value>Spanish</value> </data> <data name="QuickAccent_SelectedLanguage_Swedish.Content" xml:space="preserve"> <value>Swedish</value> </data> <data name="QuickAccent_SelectedLanguage_Turkish.Content" xml:space="preserve"> <value>Turkish</value> </data> <data name="QuickAccent_SelectedLanguage_Icelandic.Content" xml:space="preserve"> <value>Icelandic</value> </data> <data name="QuickAccent_SelectedLanguage_Romanian.Content" xml:space="preserve"> <value>Romanian</value> </data> <data name="QuickAccent_SelectedLanguage_Serbian.Content" xml:space="preserve"> <value>Serbian</value> </data> <data name="QuickAccent_SelectedLanguage_Hungarian.Content" xml:space="preserve"> <value>Hungarian</value> </data> <data name="QuickAccent_SelectedLanguage_Italian.Content" xml:space="preserve"> <value>Italian</value> </data> <data name="QuickAccent_SelectedLanguage_Kurdish.Content" xml:space="preserve"> <value>Kurdish</value> </data> <data name="QuickAccent_SelectedLanguage_Welsh.Content" xml:space="preserve"> <value>Welsh</value> </data> <data name="Hosts.ModuleDescription" xml:space="preserve"> <value>Quick and simple utility for managing hosts file.</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Hosts.ModuleTitle" xml:space="preserve"> <value>Hosts File Editor</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Shell_Hosts.Content" xml:space="preserve"> <value>Hosts File Editor</value> <comment>Products name: Navigation view item name for Hosts File Editor</comment> </data> <data name="Hosts_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Hosts_Toggle_ShowStartupWarning.Header" xml:space="preserve"> <value>Show a warning at startup</value> </data> <data name="Hosts_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="Hosts_LaunchButtonControl.Description" xml:space="preserve"> <value>Manage your hosts file</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Hosts_LaunchButtonControl.Header" xml:space="preserve"> <value>Launch Host File Editor</value> <comment>"Host File Editor" is a product name</comment> </data> <data name="Hosts_LaunchButton_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Launch Host File Editor</value> <comment>"Host File Editor" is a product name</comment> </data> <data name="Hosts_AdditionalLinesPosition.Header" xml:space="preserve"> <value>Position of additional content</value> </data> <data name="Hosts_AdditionalLinesPosition_Bottom.Content" xml:space="preserve"> <value>Bottom</value> </data> <data name="Hosts_AdditionalLinesPosition_Top.Content" xml:space="preserve"> <value>Top</value> </data> <data name="Hosts_Behavior_GroupSettings.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="Launch_Hosts.Content" xml:space="preserve"> <value>Launch Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="LearnMore_Hosts.Text" xml:space="preserve"> <value>Learn more about Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Oobe_Hosts.Description" xml:space="preserve"> <value>Hosts File Editor is a quick and simple utility for managing hosts file.</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Oobe_Hosts.Title" xml:space="preserve"> <value>Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Hosts_Toggle_LaunchAdministrator.Description" xml:space="preserve"> <value>Needs to be launched as administrator in order to make changes to the hosts file</value> </data> <data name="Hosts_Toggle_LaunchAdministrator.Header" xml:space="preserve"> <value>Launch as administrator</value> </data> <data name="ShortcutGuide_PressTimeForTaskbarIconShortcuts.Header" xml:space="preserve"> <value>Press duration before showing taskbar icon shortcuts (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="FileLocksmith.ModuleDescription" xml:space="preserve"> <value>A Windows shell extension to find out which processes are using the selected files and directories.</value> </data> <data name="FileLocksmith.ModuleTitle" xml:space="preserve"> <value>File Locksmith</value> </data> <data name="Shell_FileLocksmith.Content" xml:space="preserve"> <value>File Locksmith</value> <comment>Product name: Navigation view item name for FileLocksmith</comment> </data> <data name="FileLocksmith_Enable_FileLocksmith.Header" xml:space="preserve"> <value>Enable File Locksmith</value> <comment>File Locksmith is the name of the utility</comment> </data> <data name="FileLocksmith_Toggle_StandardContextMenu.Content" xml:space="preserve"> <value>Default and extended context menu</value> </data> <data name="FileLocksmith_Toggle_ExtendedContextMenu.Content" xml:space="preserve"> <value>Extended context menu only</value> </data> <data name="FileLocksmith_Toggle_ContextMenu.Header" xml:space="preserve"> <value>Show File Locksmith in</value> </data> <data name="FileLocksmith_ShellIntegration.Header" xml:space="preserve"> <value>Shell integration</value> <comment>This refers to directly integrating in with Windows</comment> </data> <data name="GPO_IsSettingForced.Title" xml:space="preserve"> <value>This setting is enforced by your System Administrator.</value> </data> <data name="Hosts_AdditionalLinesPosition.Description" xml:space="preserve"> <value>Additional content includes the file header and lines that can't parse</value> </data> <data name="TextExtractor_Languages.Header" xml:space="preserve"> <value>Preferred language</value> </data> <data name="Alternate_OOBE_AlwaysOnTop_Description.Text" xml:space="preserve"> <value>Pin a window so that:</value> </data> <data name="Alternate_OOBE_AlwaysOnTop_Title.Text" xml:space="preserve"> <value>Always On Top</value> </data> <data name="Alternate_OOBE_ColorPicker_Description.Text" xml:space="preserve"> <value>To pick a color:</value> </data> <data name="Alternate_OOBE_ColorPicker_Title.Text" xml:space="preserve"> <value>Color Picker</value> </data> <data name="Alternate_OOBE_Description.Text" xml:space="preserve"> <value>Here are a few shortcuts to get you started:</value> </data> <data name="Alternate_OOBE_FancyZones_Description.Text" xml:space="preserve"> <value>To open the FancyZones editor, press:</value> </data> <data name="Alternate_OOBE_FancyZones_Title.Text" xml:space="preserve"> <value>FancyZones</value> </data> <data name="Alternate_OOBE_Run_Description.Text" xml:space="preserve"> <value>Get access to your files and more:</value> </data> <data name="Alternate_OOBE_Run_Title.Text" xml:space="preserve"> <value>PowerToys Run</value> </data> <data name="General_Experimentation.Header" xml:space="preserve"> <value>Experimentation</value> </data> <data name="GeneralPage_EnableExperimentation.Description" xml:space="preserve"> <value>Note: Only Windows Insider builds may be selected for experimentation</value> </data> <data name="GeneralPage_EnableExperimentation.Header" xml:space="preserve"> <value>Allow experimentation with new features</value> </data> <data name="GPO_ExperimentationIsDisallowed.Title" xml:space="preserve"> <value>The system administrator has disabled experimentation.</value> </data> <data name="Shell_PastePlain.Content" xml:space="preserve"> <value>Paste As Plain Text</value> <comment>Product name: Navigation view item name for Paste as Plain Text</comment> </data> <data name="PastePlain.ModuleDescription" xml:space="preserve"> <value>Paste As Plain Text is a quick shortcut for pasting the text contents of your clipboard without formatting. Note: the formatted text in the clipboard is replaced with the unformatted text.</value> </data> <data name="PastePlain.ModuleTitle" xml:space="preserve"> <value>Paste As Plain Text</value> </data> <data name="PastePlain_Cancel" xml:space="preserve"> <value>cancel</value> </data> <data name="PastePlain_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Paste As Plain Text</value> </data> <data name="Oobe_PastePlain.Description" xml:space="preserve"> <value>Paste As Plain Text strips rich formatting from your clipboard data and pastes it as non-formatted text.</value> </data> <data name="Oobe_PastePlain.Title" xml:space="preserve"> <value>Paste As Plain Text</value> </data> <data name="Oobe_PastePlain_HowToUse.Text" xml:space="preserve"> <value>to paste your clipboard data as plain text. Note: this will replace the formatted text in your clipboard with the plain text.</value> </data> <data name="AllAppsTxt.Text" xml:space="preserve"> <value>All apps</value> </data> <data name="BackBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Back</value> </data> <data name="BackLabel.Text" xml:space="preserve"> <value>Back</value> </data> <data name="BugReportBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Bug report</value> </data> <data name="BugReportTooltip.Text" xml:space="preserve"> <value>Bug report</value> </data> <data name="DocsBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Documentation</value> </data> <data name="DocsTooltip.Text" xml:space="preserve"> <value>Documentation</value> </data> <data name="FZEditorString" xml:space="preserve"> <value>FancyZones Editor</value> <comment>Do not localize this string</comment> </data> <data name="MoreBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>More</value> </data> <data name="MoreLabel.Text" xml:space="preserve"> <value>More</value> </data> <data name="SettingsBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Settings</value> </data> <data name="SettingsTooltip.Text" xml:space="preserve"> <value>Settings</value> </data> <data name="ShortcutsTxt.Text" xml:space="preserve"> <value>Shortcuts</value> </data> <data name="UpdateAvailable.Title" xml:space="preserve"> <value>Update available</value> </data> <data name="FileExplorerPreview_Toggle_Monaco_Max_File_Size.Header" xml:space="preserve"> <value>Maximum file size to preview</value> <comment>Size refers to the disk space used by a file</comment> </data> <data name="FileExplorerPreview_Toggle_Monaco_Max_File_Size.Description" xml:space="preserve"> <value>The maximum size, in kilobytes, for files to be displayed. This is a safety mechanism to prevent loading large files into RAM.</value> <comment>"RAM" refers to random access memory; "size" refers to disk space; "bytes" refer to the measurement unit</comment> </data> <data name="RegistryPreview.ModuleDescription" xml:space="preserve"> <value>A quick little utility to visualize and edit complex Windows Registry files.</value> </data> <data name="RegistryPreview.ModuleTitle" xml:space="preserve"> <value>Registry Preview</value> </data> <data name="Shell_RegistryPreview.Content" xml:space="preserve"> <value>Registry Preview</value> <comment>Product name: Navigation view item name for Registry Preview</comment> </data> <data name="RegistryPreview_Enable_RegistryPreview.Header" xml:space="preserve"> <value>Enable Registry Preview</value> <comment>Registry Preview is the name of the utility</comment> </data> <data name="Oobe_RegistryPreview_HowToUse.Text" xml:space="preserve"> <value>In File Explorer, right-click a .REG file and select **Preview** from the context menu.</value> </data> <data name="Oobe_RegistryPreview_TipsAndTricks.Text" xml:space="preserve"> <value>You can preview or edit Registry files in File Explorer or by opening the app from the PowerToys launcher.</value> </data> <data name="Oobe_RegistryPreview.Description" xml:space="preserve"> <value>Registry Preview is a quick little utility to visualize and edit complex Windows Registry files.</value> </data> <data name="Oobe_RegistryPreview.Title" xml:space="preserve"> <value>Registry Preview</value> <comment>Do not localize this string</comment> </data> <data name="LearnMore_RegistryPreview.Text" xml:space="preserve"> <value>Learn more about Registry Preview</value> <comment>Registry Preview is a product name, do not loc</comment> </data> <data name="Launch_RegistryPreview.Content" xml:space="preserve"> <value>Launch Registry Preview</value> <comment>"Registry Preview" is the name of the utility</comment> </data> <data name="MouseUtils_MouseJump.Description" xml:space="preserve"> <value>Quickly move the mouse pointer long distances.</value> <comment>"Mouse Jump" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_MouseJump.Header" xml:space="preserve"> <value>Mouse Jump</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_MouseJump_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to turn on or off this mode</value> </data> <data name="MouseUtils_MouseJump_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MouseUtils_Enable_MouseJump.Header" xml:space="preserve"> <value>Enable Mouse Jump</value> <comment>"Mouse Jump" is the name of the utility.</comment> </data> <data name="GPO_AutoDownloadUpdatesIsDisabled.Title" xml:space="preserve"> <value>The system administrator has disabled the automatic download of updates.</value> </data> <data name="Hosts_Toggle_LoopbackDuplicates.Description" xml:space="preserve"> <value>127.0.0.1, ::1, ...</value> <comment>"127.0.0.1 and ::1" are well known loopback addresses, do not loc</comment> </data> <data name="Hosts_Toggle_LoopbackDuplicates.Header" xml:space="preserve"> <value>Consider loopback addresses as duplicates</value> </data> <data name="RegistryPreview_Launch_GroupSettings.Header" xml:space="preserve"> <value>Launch</value> </data> <data name="RegistryPreview_LaunchButton_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Launch Registry Preview</value> </data> <data name="RegistryPreview_LaunchButtonControl.Header" xml:space="preserve"> <value>Launch Registry Preview</value> </data> <data name="RegistryPreview_DefaultRegApp.Header" xml:space="preserve"> <value>Default app</value> </data> <data name="RegistryPreview_DefaultRegApp.Description" xml:space="preserve"> <value>Make Registry Preview default app for opening .reg files</value> <comment>Registry Preview is app name. Do not localize.</comment> </data> <data name="PastePlain_ShortcutWarning.Title" xml:space="preserve"> <value>Using this shortcut may prevent non-text paste actions (e.g. images, files) or built-in paste plain text actions in other applications from functioning.</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize.Header" xml:space="preserve"> <value>Thumbnail Size</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Description_Prefix.Text" xml:space="preserve"> <value>Constrain thumbnail image size to a maximum of</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Description_Suffix.Text" xml:space="preserve"> <value>pixels</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Edit_Height.Header" xml:space="preserve"> <value>Maximum height (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Edit_Width.Header" xml:space="preserve"> <value>Maximum width (px)</value> <comment>px = pixels</comment> </data> <data name="Oobe_Peek.Description" xml:space="preserve"> <value>A lightning fast file preview feature for Windows.</value> </data> <data name="Oobe_Peek.Title" xml:space="preserve"> <value>Peek</value> </data> <data name="Oobe_Peek_HowToUse.Text" xml:space="preserve"> <value>to preview the file that's currently selected in File Explorer.</value> </data> <data name="MWB_PCNameLabel.PlaceholderText" xml:space="preserve"> <value>Device name</value> </data> <data name="MWB_SecurityKeyLabel.PlaceholderText" xml:space="preserve"> <value>Security key</value> </data> <data name="Hosts_Encoding.Description" xml:space="preserve"> <value>Choose the encoding of the hosts file</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Hosts_Encoding.Header" xml:space="preserve"> <value>Encoding</value> </data> <data name="Hosts_Encoding_Utf8.Content" xml:space="preserve"> <value>UTF-8</value> </data> <data name="Hosts_Encoding_Utf8Bom.Content" xml:space="preserve"> <value>UTF-8 with BOM</value> </data> <data name="MouseUtils_MouseHighlighter_AlwaysColor.Header" xml:space="preserve"> <value>Always highlight color</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsAutoHide.Content" xml:space="preserve"> <value>Automatically hide crosshairs when the mouse pointer is hidden</value> </data> <data name="MouseUtils_AutoActivate.Content" xml:space="preserve"> <value>Automatically activate on utility startup</value> </data> <data name="Run_FindMorePlugins.Text" xml:space="preserve"> <value>Find more plugins</value> </data> <data name="Run_PluginUseFindMorePlugins.Content" xml:space="preserve"> <value>Find more plugins</value> </data> <data name="Run_SomePluginsAreGpoManaged.Title" xml:space="preserve"> <value>The system administrator is managing the enabled state of some plugins.</value> </data> <data name="AlwaysOnTop_FrameOpacity.Header" xml:space="preserve"> <value>Opacity (%)</value> </data> <data name="MouseUtils_FindMyMouse_ActivationCustomizedShortcut.Content" xml:space="preserve"> <value>Custom shortcut</value> </data> <data name="MouseUtils_FindMyMouse_ActivationDoubleRightControlPress.Content" xml:space="preserve"> <value>Press Right Control twice</value> <comment>Right control is the physical key on the keyboard.</comment> </data> <data name="MouseUtils_FindMyMouse_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to turn on or off this mode</value> </data> <data name="MouseUtils_FindMyMouse_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="SettingsWindow_AdminTitle" xml:space="preserve"> <value>Administrator: PowerToys Settings</value> <comment>Title of the settings window when running as administrator</comment> </data> <data name="DashboardTitle.Text" xml:space="preserve"> <value>Dashboard</value> </data> <data name="Shell_Dashboard.Content" xml:space="preserve"> <value>Dashboard</value> </data> <data name="GPO_IsSettingForcedText.Text" xml:space="preserve"> <value>This setting is enforced by your System Administrator.</value> </data> <data name="DisabledModules.Text" xml:space="preserve"> <value>Disabled modules</value> </data> <data name="EnabledModules.Text" xml:space="preserve"> <value>Enabled modules</value> </data> </root>
donlaci
8c22f0c48540793452b70d913b2a6a719c881a33
1f936df3ebce73b726ed11c9fa38fd477b4b0fbd
No problem. Just saw the same text/content but that's used on different pages.
Jay-o-Way
357
microsoft/PowerToys
29,023
[Settings] Adding a Dashboard Panel
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request Adding a new Dashboard panel to the settings app. It contains the active modules with a brief description, activation shortcut if present, launch button if reasonable and a quick link button to the module's settings page. The new dashboard panel contains a list of all the modules as well, where the user can toggle the modules' enabled/disabled state. ![Dashboard](https://github.com/microsoft/PowerToys/assets/9866362/a773ff5b-0321-4eb3-9c3d-b5b4df9a25f5) <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [X] **Closes:** #26816 - [ ] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected - [ ] **Tests:** Added/updated and all pass - [ ] **Localization:** All end user facing strings can be localized - [ ] **Dev docs:** Added/updated - [ ] **New binaries:** Added on the required places - [ ] [JSON for signing](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ESRPSigning_core.json) for new binaries - [ ] [WXS for installer](https://github.com/microsoft/PowerToys/blob/main/installer/PowerToysSetup/Product.wxs) for new binaries and localization folder - [ ] [YML for CI pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ci/templates/build-powertoys-steps.yml) for new test projects - [ ] [YML for signed pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/release.yml) - [ ] **Documentation updated:** If checked, please file a pull request on [our docs repo](https://github.com/MicrosoftDocs/windows-uwp/tree/docs/hub/powertoys) and link it here: #xxx <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed Tested locally
null
2023-10-04 18:35:54+00:00
2023-10-20 12:23:25+00:00
src/settings-ui/Settings.UI/Strings/en-us/Resources.resw
<?xml version="1.0" encoding="utf-8"?> <root> <!-- Microsoft ResX Schema Version 2.0 The primary goals of this format is to allow a simple XML format that is mostly human readable. The generation and parsing of the various data types are done through the TypeConverter classes associated with the data types. Example: ... ado.net/XML headers & schema ... <resheader name="resmimetype">text/microsoft-resx</resheader> <resheader name="version">2.0</resheader> <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader> <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader> <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data> <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data> <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64"> <value>[base64 mime encoded serialized .NET Framework object]</value> </data> <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value> <comment>This is a comment</comment> </data> There are any number of "resheader" rows that contain simple name/value pairs. Each data row contains a name, and value. The row also contains a type or mimetype. Type corresponds to a .NET class that support text/value conversion through the TypeConverter architecture. Classes that don't support this are serialized and stored with the mimetype set. The mimetype is used for serialized objects, and tells the ResXResourceReader how to depersist the object. This is currently not extensible. For a given mimetype the value must be set accordingly: Note - application/x-microsoft.net.object.binary.base64 is the format that the ResXResourceWriter will generate, however the reader can read any of the formats listed below. mimetype: application/x-microsoft.net.object.binary.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.soap.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Soap.SoapFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.bytearray.base64 value : The object must be serialized into a byte array : using a System.ComponentModel.TypeConverter : and then encoded with base64 encoding. --> <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> <xsd:import namespace="http://www.w3.org/XML/1998/namespace" /> <xsd:element name="root" msdata:IsDataSet="true"> <xsd:complexType> <xsd:choice maxOccurs="unbounded"> <xsd:element name="metadata"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" /> </xsd:sequence> <xsd:attribute name="name" use="required" type="xsd:string" /> <xsd:attribute name="type" type="xsd:string" /> <xsd:attribute name="mimetype" type="xsd:string" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="assembly"> <xsd:complexType> <xsd:attribute name="alias" type="xsd:string" /> <xsd:attribute name="name" type="xsd:string" /> </xsd:complexType> </xsd:element> <xsd:element name="data"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" /> <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="resheader"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" /> </xsd:complexType> </xsd:element> </xsd:choice> </xsd:complexType> </xsd:element> </xsd:schema> <resheader name="resmimetype"> <value>text/microsoft-resx</value> </resheader> <resheader name="version"> <value>2.0</value> </resheader> <resheader name="reader"> <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <resheader name="writer"> <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <data name="Attribution_Rooler.Text" xml:space="preserve"> <value>Inspired by Rooler</value> <comment>Rooler is a name of the tool.</comment> </data> <data name="Shell_VideoConference.Content" xml:space="preserve"> <value>Video Conference Mute</value> <comment>Navigation view item name for Video Conference</comment> </data> <data name="Shell_MeasureTool.Content" xml:space="preserve"> <value>Screen Ruler</value> <comment>Product name: Navigation view item name for Screen Ruler</comment> </data> <data name="MeasureTool.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="MeasureTool.ModuleDescription" xml:space="preserve"> <value>Screen Ruler is a quick and easy way to measure pixels on your screen.</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool.ModuleTitle" xml:space="preserve"> <value>Screen Ruler</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool_ActivationSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="MeasureTool_Settings.Header" xml:space="preserve"> <value>Behavior</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MeasureTool_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to bring up the command bar</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool_DefaultMeasureStyle.Header" xml:space="preserve"> <value>Default measure style</value> </data> <data name="MeasureTool_DefaultMeasureStyle.Description" xml:space="preserve"> <value>The utility will start having the selected style activated</value> </data> <data name="MeasureTool_DefaultMeasureStyle_None.Content" xml:space="preserve"> <value>None</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Bounds.Content" xml:space="preserve"> <value>Bounds</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Spacing.Content" xml:space="preserve"> <value>Spacing</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Horizontal_Spacing.Content" xml:space="preserve"> <value>Horizontal spacing</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Vertical_Spacing.Content" xml:space="preserve"> <value>Vertical spacing</value> </data> <data name="MeasureTool_UnitsOfMeasure.Header" xml:space="preserve"> <value>Units of measurement</value> </data> <data name="MeasureTool_UnitsOfMeasure_Pixels.Content" xml:space="preserve"> <value>Pixels</value> </data> <data name="MeasureTool_UnitsOfMeasure_Inches.Content" xml:space="preserve"> <value>Inches</value> </data> <data name="MeasureTool_UnitsOfMeasure_Centimeters.Content" xml:space="preserve"> <value>Centimeters</value> </data> <data name="MeasureTool_PixelTolerance.Header" xml:space="preserve"> <value>Pixel tolerance for edge detection</value> </data> <data name="MeasureTool_MeasureCrossColor.Header" xml:space="preserve"> <value>Line color</value> </data> <data name="MeasureTool_ContinuousCapture.Header" xml:space="preserve"> <value>Capture screen continuously during measuring</value> </data> <data name="MeasureTool_ContinuousCapture.Description" xml:space="preserve"> <value>Refresh screen contexts in real-time instead of making a screenshot once</value> </data> <data name="MeasureTool_PerColorChannelEdgeDetection.Header" xml:space="preserve"> <value>Per color channel edge detection</value> </data> <data name="MeasureTool_PerColorChannelEdgeDetection.Description" xml:space="preserve"> <value>If enabled, test that all color channels are within a tolerance distance from each other. Otherwise, check that the sum of all color channels differences is smaller than the tolerance.</value> </data> <data name="MeasureTool_DrawFeetOnCross.Header" xml:space="preserve"> <value>Draw feet on cross</value> </data> <data name="MeasureTool_DrawFeetOnCross.Description" xml:space="preserve"> <value>Adds feet to the end of cross lines</value> </data> <data name="MeasureTool_EnableMeasureTool.Header" xml:space="preserve"> <value>Enable Screen Ruler</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MouseWithoutBorders_ActivationSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="MouseWithoutBorders_DeviceLayoutSettings.Header" xml:space="preserve"> <value>Device layout</value> </data> <data name="MouseWithoutBorders_DeviceLayoutSettings.Description" xml:space="preserve"> <value>Drag and drop a machine to rearrange the order.</value> </data> <data name="MouseWithoutBorders_CannotDragDropAsAdmin.Title" xml:space="preserve"> <value>It is not possible to use drag and drop while running PowerToys elevated. As a workaround, please restart PowerToys without elevation to edit the device layout.</value> </data> <data name="MouseWithoutBorders_KeySettings.Header" xml:space="preserve"> <value>Encryption key</value> </data> <data name="MouseWithoutBorders_SecurityKey.Header" xml:space="preserve"> <value>Security key</value> </data> <data name="MouseWithoutBorders_SecurityKey.Description" xml:space="preserve"> <value>The key must be auto generated in one machine by clicking on New Key, then typed in other machines</value> </data> <data name="MouseWithoutBorders_NewKey.Content" xml:space="preserve"> <value>New key</value> </data> <data name="MouseWithoutBorders_CopyMachineName.Text" xml:space="preserve"> <value>Copy to clipboard</value> </data> <data name="MouseWithoutBorders_ReconnectButton.Text" xml:space="preserve"> <value>Refresh connections</value> </data> <data name="MouseWithoutBorders_ReconnectTooltip.Text" xml:space="preserve"> <value>Reestablishes connections with other devices if you are experiencing issues.</value> </data> <data name="MouseWithoutBorders_ThisMachineNameLabel.Header" xml:space="preserve"> <value>Host name of this device</value> </data> <data name="MouseWithoutBorders_Connect.Content" xml:space="preserve"> <value>Connect</value> </data> <data name="MouseWithoutBorders_UninstallService.Header" xml:space="preserve"> <value>Uninstall service</value> </data> <data name="MouseWithoutBorders_UninstallService.Description" xml:space="preserve"> <value>Removes the service from the computer. Needs to run as administrator.</value> </data> <data name="MouseWithoutBorders_Settings.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="MouseWithoutBorders_TroubleShooting.Header" xml:space="preserve"> <value>Troubleshooting</value> </data> <data name="MouseWithoutBorders_AddFirewallRuleButtonControl.Header" xml:space="preserve"> <value>Add a firewall rule for Mouse Without Borders</value> <comment>"Mouse Without Borders" is a product name</comment> </data> <data name="MouseWithoutBorders_AddFirewallRuleButtonControl.Description" xml:space="preserve"> <value>Adding a firewall rule might help solve connection issues.</value> </data> <data name="MouseWithoutBorders_RunAsAdminText.Title" xml:space="preserve"> <value>You need to run as administrator to modify this setting.</value> </data> <data name="MouseWithoutBorders_ServiceUserUninstallWarning.Title" xml:space="preserve"> <value>If PowerToys is installed as a user, uninstalling/upgrading may require the Mouse Without Borders service to be removed manually later.</value> </data> <data name="MouseWithoutBorders_ServiceSettings.Header" xml:space="preserve"> <value>Service</value> </data> <data name="MouseWithoutBorders_Toggle_Enable.Header" xml:space="preserve"> <value>Enable Mouse Without Borders</value> </data> <data name="MouseWithoutBorders.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="MouseWithoutBorders.ModuleDescription" xml:space="preserve"> <value>Mouse Without Borders is a quick and easy way to move your cursor across multiple devices.</value> <comment>"Mouse Without Borders" is the name of the utility</comment> </data> <data name="MouseWithoutBorders.ModuleTitle" xml:space="preserve"> <value>Mouse Without Borders</value> <comment>"Mouse Without Borders" is the name of the utility</comment> </data> <data name="MouseWithoutBorders_UseService.Header" xml:space="preserve"> <value>Use Service</value> </data> <data name="MouseWithoutBorders_UseService.Description" xml:space="preserve"> <value>Runs in service mode, that allows MWB to control remote machines when they're locked. Also allows control of system and administrator applications.</value> </data> <data name="MouseWithoutBorders_MatrixOneRow.Header" xml:space="preserve"> <value>Devices in a single row</value> </data> <data name="MouseWithoutBorders_MatrixOneRow.Description" xml:space="preserve"> <value>Sets whether the devices are aligned on a single row. A two by two matrix is considered otherwise.</value> </data> <data name="MouseWithoutBorders_WrapMouse.Header" xml:space="preserve"> <value>Wrap mouse</value> </data> <data name="MouseWithoutBorders_WrapMouse.Description" xml:space="preserve"> <value>Move control back to the first machine when mouse moves past the last one.</value> </data> <data name="MouseWithoutBorders_ShareClipboard.Header" xml:space="preserve"> <value>Share clipboard</value> </data> <data name="MouseWithoutBorders_TransferFile.Header" xml:space="preserve"> <value>Transfer file</value> </data> <data name="MouseWithoutBorders_HideMouseAtScreenEdge.Header" xml:space="preserve"> <value>Hide mouse at the screen edge</value> </data> <data name="MouseWithoutBorders_DrawMouseCursor.Header" xml:space="preserve"> <value>Draw mouse cursor</value> </data> <data name="MouseWithoutBorders_ValidateRemoteMachineIP.Header" xml:space="preserve"> <value>Validate remote machine IP</value> </data> <data name="MouseWithoutBorders_SameSubnetOnly.Header" xml:space="preserve"> <value>Same subnet only</value> </data> <data name="MouseWithoutBorders_BlockScreenSaverOnOtherMachines.Header" xml:space="preserve"> <value>Block screen saver on other machines</value> </data> <data name="MouseWithoutBorders_MoveMouseRelatively.Header" xml:space="preserve"> <value>Move mouse relatively</value> </data> <data name="MouseWithoutBorders_BlockMouseAtScreenCorners.Header" xml:space="preserve"> <value>Block mouse at screen corners</value> </data> <data name="MouseWithoutBorders_ShowClipboardAndNetworkStatusMessages.Header" xml:space="preserve"> <value>Show clipboard and network status messages</value> </data> <data name="MouseWithoutBorders_ShowOriginalUI.Header" xml:space="preserve"> <value>Show the original Mouse Without Borders UI</value> </data> <data name="MouseWithoutBorders_ShowOriginalUI.Description" xml:space="preserve"> <value>This is accessible from the system tray and requires a restart.</value> </data> <data name="MouseWithoutBorders_ShareClipboard.Description" xml:space="preserve"> <value>If share clipboard stops working, Ctrl+Alt+Del then Esc may solve the problem.</value> </data> <data name="MouseWithoutBorders_TransferFile.Description" xml:space="preserve"> <value>If a file (&lt;100MB) is copied, it will be transferred to the remote machine clipboard.</value> </data> <data name="MouseWithoutBorders_HideMouseAtScreenEdge.Description" xml:space="preserve"> <value>Hide the mouse cursor at the top edge of the screen when switching to other machine. This option also steals the focus from any full-screen app to ensure the keyboard input is redirected.</value> </data> <data name="MouseWithoutBorders_DrawMouseCursor.Description" xml:space="preserve"> <value>Mouse cursor may not be visible in Windows 10 and later versions of Windows when there is no physical mouse attached.</value> </data> <data name="MouseWithoutBorders_ValidateRemoteMachineIP.Description" xml:space="preserve"> <value>Reverse DNS lookup to validate machine IP Address.</value> </data> <data name="MouseWithoutBorders_SameSubnetOnly.Description" xml:space="preserve"> <value>Only connect to machines in the same intranet NNN.NNN.*.* (only works when both machines have IPv4 enabled)</value> </data> <data name="MouseWithoutBorders_IPAddressMapping_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: MyLaptop 192.168.0.24</value> <comment>Don't translate MyLaptop</comment> </data> <data name="MouseWithoutBorders_IPAddressMapping.Header" xml:space="preserve"> <value>IP address mapping</value> </data> <data name="MouseWithoutBorders_IPAddressMapping.Description" xml:space="preserve"> <value>Resolve machine's IP address using manually entered mappings below.</value> </data> <data name="MouseWithoutBorders_BlockScreenSaverOnOtherMachines.Description" xml:space="preserve"> <value>Prevent screen saver from starting on other machines when user is actively working on this machine.</value> </data> <data name="MouseWithoutBorders_MoveMouseRelatively.Description" xml:space="preserve"> <value>Use this option when remote machine's monitor settings are different, or remote machine has multiple monitors.</value> </data> <data name="MouseWithoutBorders_BlockMouseAtScreenCorners.Description" xml:space="preserve"> <value>To avoid accident machine-switch at screen corners.</value> </data> <data name="MouseWithoutBorders_ShowClipboardAndNetworkStatusMessages.Description" xml:space="preserve"> <value>Show clipboard activities and network status in system tray notifications</value> </data> <data name="MouseWithoutBorders_KeyboardShortcuts_Group.Header" xml:space="preserve"> <value>Keyboard shortcuts</value> <comment>keyboard is the hardware peripheral</comment> </data> <data name="MouseWithoutBorders_AdvancedSettings_Group.Header" xml:space="preserve"> <value>Advanced Settings</value> </data> <data name="MouseWithoutBorders_EasyMouseOption.Header" xml:space="preserve"> <value>Easy Mouse: move between machines by moving the mouse pointer to the screen edges.</value> </data> <data name="MouseWithoutBorders_EasyMouseOption.Description" xml:space="preserve"> <value>Can also be set to move only when pressing Shift or Ctrl.</value> <comment>Shift and Ctrl are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_EasyMouseOption_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_EasyMouseOption_Enabled.Content" xml:space="preserve"> <value>Enabled</value> </data> <data name="MouseWithoutBorders_EasyMouseOption_Ctrl.Content" xml:space="preserve"> <value>Ctrl</value> <comment>This is the Ctrl keyboard key</comment> </data> <data name="MouseWithoutBorders_EasyMouseOption_Shift.Content" xml:space="preserve"> <value>Shift</value> <comment>This is the Shift keyboard key</comment> </data> <data name="MouseWithoutBorders_LockMachinesShortcut.Header" xml:space="preserve"> <value>Shortcut to lock all machines.</value> </data> <data name="MouseWithoutBorders_LockMachinesShortcut.Description" xml:space="preserve"> <value>Hit this hotkey twice to lock all machines. Note: Only the machines which have the same shortcut configured will be locked.</value> </data> <data name="MouseWithoutBorders_ToggleEasyMouseShortcut.Header" xml:space="preserve"> <value>Shortcut to toggle Easy Mouse.</value> <comment>Ctrl and Alt are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_ToggleEasyMouseShortcut.Description" xml:space="preserve"> <value>Only works if EasyMouse is set to Enabled or Disabled.</value> </data> <data name="MouseWithoutBorders_ToggleEasyMouseShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut.Header" xml:space="preserve"> <value>Shortcut to switch between machines. Ctrl+Alt+:</value> <comment>Ctrl and Alt are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut.Description" xml:space="preserve"> <value>Click on Ctrl+Alt+ the chosen option to switch between machines.</value> <comment>Ctrl and Alt are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut_F1.Content" xml:space="preserve"> <value>F1, F2, F3, F4</value> <comment>Don't localize. These are keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut_1.Content" xml:space="preserve"> <value>1, 2, 3, 4</value> <comment>Don't localize. These are keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_LockMachinesShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_ReconnectShortcut.Header" xml:space="preserve"> <value>Shortcut to try reconnecting</value> </data> <data name="MouseWithoutBorders_ReconnectShortcut.Description" xml:space="preserve"> <value>Just in case the connection is lost for any reason.</value> </data> <data name="MouseWithoutBorders_ReconnectShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut.Header" xml:space="preserve"> <value>Shortcut to switch to multiple machine mode.</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut.Description" xml:space="preserve"> <value>Allows controlling all computers at once.</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut_Ctrl3.Content" xml:space="preserve"> <value>Ctrl three times</value> <comment>This is the Ctrl keyboard key</comment> </data> <data name="VideoConference_Enable.Header" xml:space="preserve"> <value>Enable Video Conference Mute</value> </data> <data name="VideoConference.ModuleDescription" xml:space="preserve"> <value>Video Conference Mute is a quick and easy way to do a global "mute" of both your microphone and webcam. Disabling this module or closing PowerToys will unmute the microphone and camera.</value> </data> <data name="VideoConference_CameraAndMicrophoneMuteHotkeyControl_Header.Header" xml:space="preserve"> <value>Mute camera &amp; microphone</value> </data> <data name="VideoConference_MicrophoneMuteHotkeyControl_Header.Header" xml:space="preserve"> <value>Mute microphone</value> </data> <data name="VideoConference_MicrophonePushToTalkHotkeyControl_Header.Header" xml:space="preserve"> <value>Push to talk</value> </data> <data name="VideoConference_CameraMuteHotkeyControl_Header.Header" xml:space="preserve"> <value>Mute camera</value> </data> <data name="VideoConference_SelectedCamera.Header" xml:space="preserve"> <value>Selected camera</value> </data> <data name="VideoConference_SelectedMicrophone.Header" xml:space="preserve"> <value>Selected microphone</value> </data> <data name="VideoConference_PushToReverse.Header" xml:space="preserve"> <value>Push to reverse</value> </data> <data name="VideoConference_PushToReverse.Description" xml:space="preserve"> <value>If enabled, allows both push to talk and push to mute, depending on microphone state</value> </data> <data name="VideoConference_CameraOverlayImagePathHeader.Header" xml:space="preserve"> <value>Image displayed when camera is muted</value> </data> <data name="VideoConference_ToolbarPosition.Header" xml:space="preserve"> <value>Toolbar position</value> </data> <data name="VideoConference_ToolbarPosition_TopCenter.Content" xml:space="preserve"> <value>Top center</value> </data> <data name="VideoConference_ToolbarPosition_TopLeftCorner.Content" xml:space="preserve"> <value>Top left corner</value> </data> <data name="VideoConference_ToolbarPosition_TopRightCorner.Content" xml:space="preserve"> <value>Top right corner</value> </data> <data name="VideoConference_ToolbarPosition_BottomLeftCorner.Content" xml:space="preserve"> <value>Bottom left corner</value> </data> <data name="VideoConference_ToolbarPosition_BottomCenter.Content" xml:space="preserve"> <value>Bottom center</value> </data> <data name="VideoConference_ToolbarPosition_BottomRightCorner.Content" xml:space="preserve"> <value>Bottom right corner</value> </data> <data name="VideoConference_ToolbarMonitor.Header" xml:space="preserve"> <value>Show toolbar on</value> </data> <data name="VideoConference_ToolbarMonitor_Main.Content" xml:space="preserve"> <value>Main monitor</value> </data> <data name="VideoConference_ToolbarMonitor_UnderCursor.Content" xml:space="preserve"> <value>Monitor under cursor</value> </data> <data name="VideoConference_ToolbarMonitor_ActiveWindow.Content" xml:space="preserve"> <value>Active window monitor</value> </data> <data name="VideoConference_ToolbarMonitor_All.Content" xml:space="preserve"> <value>All monitors</value> </data> <data name="VideoConference_ToolbarHide.Header" xml:space="preserve"> <value>Hide toolbar</value> </data> <data name="VideoConference_ToolbarHideMuted.Content" xml:space="preserve"> <value>When both camera and microphone are muted</value> </data> <data name="VideoConference_ToolbarHideNever.Content" xml:space="preserve"> <value>Never</value> </data> <data name="VideoConference_ToolbarHideUnmuted.Content" xml:space="preserve"> <value>When both camera and microphone are unmuted</value> </data> <data name="VideoConference_ToolbarHideTimeout.Content" xml:space="preserve"> <value>After timeout</value> </data> <data name="VideoConference.ModuleTitle" xml:space="preserve"> <value>Video Conference Mute</value> </data> <data name="VideoConference_Camera.Header" xml:space="preserve"> <value>Camera</value> </data> <data name="VideoConference_Camera.Description" xml:space="preserve"> <value>To use this feature, make sure to select PowerToys VideoConference Mute as your camera source in your apps.</value> </data> <data name="VideoConference_Microphone.Header" xml:space="preserve"> <value>Microphone</value> </data> <data name="VideoConference_Toolbar.Header" xml:space="preserve"> <value>Toolbar</value> </data> <data name="VideoConference_Behavior.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="VideoConference_StartupAction.Header" xml:space="preserve"> <value>Startup action</value> </data> <data name="VideoConference_StartupActionNothing.Content" xml:space="preserve"> <value>Nothing</value> </data> <data name="VideoConference_StartupActionUnmute.Content" xml:space="preserve"> <value>Unmute</value> </data> <data name="VideoConference_StartupActionMute.Content" xml:space="preserve"> <value>Mute</value> </data> <data name="VideoConference_Shortcuts.Header" xml:space="preserve"> <value>Shortcuts</value> </data> <data name="VideoConference_CameraOverlayImageAlt.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Camera overlay image preview</value> </data> <data name="VideoConference_CameraOverlayImageBrowse.Content" xml:space="preserve"> <value>Browse</value> </data> <data name="VideoConference_CameraOverlayImageClear.Content" xml:space="preserve"> <value>Clear</value> </data> <data name="Shell_General.Content" xml:space="preserve"> <value>General</value> <comment>Navigation view item name for General</comment> </data> <data name="Shell_Awake.Content" xml:space="preserve"> <value>Awake</value> <comment>Product name: Navigation view item name for Awake</comment> </data> <data name="Shell_PowerLauncher.Content" xml:space="preserve"> <value>PowerToys Run</value> <comment>Product name: Navigation view item name for PowerToys Run</comment> </data> <data name="Shell_PowerRename.Content" xml:space="preserve"> <value>PowerRename</value> <comment>Product name: Navigation view item name for PowerRename</comment> </data> <data name="Shell_ShortcutGuide.Content" xml:space="preserve"> <value>Shortcut Guide</value> <comment>Product name: Navigation view item name for Shortcut Guide</comment> </data> <data name="Shell_PowerPreview.Content" xml:space="preserve"> <value>File Explorer add-ons</value> <comment>Product name: Navigation view item name for File Explorer. Please use File Explorer as in the context of File Explorer in Windows</comment> </data> <data name="Shell_FancyZones.Content" xml:space="preserve"> <value>FancyZones</value> <comment>Product name: Navigation view item name for FancyZones</comment> </data> <data name="Shell_ImageResizer.Content" xml:space="preserve"> <value>Image Resizer</value> <comment>Product name: Navigation view item name for Image Resizer</comment> </data> <data name="Shell_ColorPicker.Content" xml:space="preserve"> <value>Color Picker</value> <comment>Product name: Navigation view item name for Color Picker</comment> </data> <data name="Shell_KeyboardManager.Content" xml:space="preserve"> <value>Keyboard Manager</value> <comment>Product name: Navigation view item name for Keyboard Manager</comment> </data> <data name="Shell_MouseWithoutBorders.Content" xml:space="preserve"> <value>Mouse Without Borders</value> <comment>Product name: Navigation view item name for Mouse Without Borders</comment> </data> <data name="Shell_MouseUtilities.Content" xml:space="preserve"> <value>Mouse utilities</value> <comment>Product name: Navigation view item name for Mouse utilities</comment> </data> <data name="Shell_NavigationMenu_Announce_Collapse" xml:space="preserve"> <value>Navigation closed</value> <comment>Accessibility announcement when the navigation pane collapses</comment> </data> <data name="Shell_NavigationMenu_Announce_Open" xml:space="preserve"> <value>Navigation opened</value> <comment>Accessibility announcement when the navigation pane opens</comment> </data> <data name="KeyboardManager_ConfigHeader.Text" xml:space="preserve"> <value>Current configuration</value> <comment>Keyboard Manager current configuration header</comment> </data> <data name="KeyboardManager.ModuleDescription" xml:space="preserve"> <value>Reconfigure your keyboard by remapping keys and shortcuts</value> <comment>Keyboard Manager page description</comment> </data> <data name="KeyboardManager_EnableToggle.Header" xml:space="preserve"> <value>Enable Keyboard Manager</value> <comment>Keyboard Manager enable toggle header. Do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="KeyboardManager_ProfileDescription.Text" xml:space="preserve"> <value>Select the profile to display the active key remap and shortcuts</value> <comment>Keyboard Manager configuration dropdown description</comment> </data> <data name="KeyboardManager_RemapKeyboardButton.Header" xml:space="preserve"> <value>Remap a key</value> <comment>Keyboard Manager remap keyboard button content</comment> </data> <data name="KeyboardManager_Keys.Header" xml:space="preserve"> <value>Keys</value> <comment>Keyboard Manager remap keyboard header</comment> </data> <data name="KeyboardManager_RemapShortcutsButton.Header" xml:space="preserve"> <value>Remap a shortcut</value> <comment>Keyboard Manager remap shortcuts button</comment> </data> <data name="KeyboardManager_Shortcuts.Header" xml:space="preserve"> <value>Shortcuts</value> <comment>Keyboard Manager remap keyboard header</comment> </data> <data name="KeyboardManager_All_Apps_Description" xml:space="preserve"> <value>All Apps</value> <comment>Should be the same as EditShortcuts_AllApps from keyboard manager editor</comment> </data> <data name="Shortcuts.Header" xml:space="preserve"> <value>Shortcuts</value> </data> <data name="Shortcut.Header" xml:space="preserve"> <value>Shortcut</value> </data> <data name="RemapKeysList.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Current Key Remappings</value> </data> <data name="RemapShortcutsList.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Current Shortcut Remappings</value> </data> <data name="KeyboardManager_RemappedKeysListItem.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Key Remapping</value> <comment>key as in keyboard key</comment> </data> <data name="KeyboardManager_RemappedShortcutsListItem.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Shortcut Remapping</value> </data> <data name="KeyboardManager_RemappedTo.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Remapped to</value> </data> <data name="KeyboardManager_ShortcutRemappedTo.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Remapped to</value> </data> <data name="KeyboardManager_TargetApp.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>For Target Application</value> <comment>What computer application would this be for</comment> </data> <data name="KeyboardManager_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Keyboard Manager</value> <comment>do not loc, product name</comment> </data> <data name="ColorPicker.ModuleDescription" xml:space="preserve"> <value>Quick and simple system-wide color picker.</value> </data> <data name="ColorPicker_EnableColorPicker.Header" xml:space="preserve"> <value>Enable Color Picker</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="ColorPicker_ChangeCursor.Content" xml:space="preserve"> <value>Change cursor when picking a color</value> </data> <data name="PowerLauncher.ModuleDescription" xml:space="preserve"> <value>A quick launcher that has additional capabilities without sacrificing performance.</value> </data> <data name="PowerLauncher_EnablePowerLauncher.Header" xml:space="preserve"> <value>Enable PowerToys Run</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="PowerLauncher_SearchResults.Header" xml:space="preserve"> <value>Search &amp; results</value> </data> <data name="PowerLauncher_SearchResultPreference.Header" xml:space="preserve"> <value>Search result preference</value> </data> <data name="PowerLauncher_UsePinyin.Header" xml:space="preserve"> <value>Use Pinyin</value> </data> <data name="PowerLauncher_UsePinyin.Description" xml:space="preserve"> <value>Experimental: Use Pinyin on the search query. May not work for every plugin.</value> </data> <data name="PowerLauncher_SearchResultPreference_MostRecentlyUsed" xml:space="preserve"> <value>Most recently used</value> </data> <data name="PowerLauncher_SearchResultPreference_AlphabeticalOrder" xml:space="preserve"> <value>Alphabetical order</value> </data> <data name="PowerLauncher_SearchResultPreference_RunningProcessesOpenApplications" xml:space="preserve"> <value>Running processes/open applications</value> </data> <data name="PowerLauncher_SearchTypePreference.Header" xml:space="preserve"> <value>Search type preference</value> </data> <data name="PowerLauncher_SearchTypePreference_ApplicationName" xml:space="preserve"> <value>Application name</value> </data> <data name="PowerLauncher_SearchTypePreference_StringInApplication" xml:space="preserve"> <value>A string that is contained in the application</value> </data> <data name="PowerLauncher_SearchTypePreference_ExecutableName" xml:space="preserve"> <value>Executable name</value> </data> <data name="PowerLauncher_MaximumNumberOfResults.Header" xml:space="preserve"> <value>Number of results shown before scrolling</value> </data> <data name="PowerLauncher_OpenPowerLauncher.Header" xml:space="preserve"> <value>Open PowerToys Run</value> </data> <data name="PowerLauncher_OpenFileLocation.Header" xml:space="preserve"> <value>Open file location</value> </data> <data name="PowerLauncher_CopyPathLocation.Header" xml:space="preserve"> <value>Copy path location</value> </data> <data name="PowerLauncher_OpenConsole.Header" xml:space="preserve"> <value>Open console</value> <comment>console refers to Windows command prompt</comment> </data> <data name="PowerLauncher_OverrideWinRKey.Content" xml:space="preserve"> <value>Override Win+R shortcut</value> </data> <data name="PowerLauncher_OverrideWinSKey.Content" xml:space="preserve"> <value>Override Win+S shortcut</value> </data> <data name="PowerLauncher_IgnoreHotkeysInFullScreen.Content" xml:space="preserve"> <value>Ignore shortcuts in fullscreen mode</value> </data> <data name="PowerLauncher_UseCentralizedKeyboardHook.Header" xml:space="preserve"> <value>Use centralized keyboard hook</value> </data> <data name="PowerLauncher_UseCentralizedKeyboardHook.Description" xml:space="preserve"> <value>Try this if there are issues with the shortcut (PowerToys Run might not get focus when triggered from an elevated window)</value> </data> <data name="PowerLauncher_ClearInputOnLaunch.Content" xml:space="preserve"> <value>Clear the previous query on launch</value> </data> <data name="PowerLauncher_TabSelectsContextButtons.Header" xml:space="preserve"> <value>Tab through context buttons</value> </data> <data name="PowerLauncher_TabSelectsContextButtons.Description" xml:space="preserve"> <value>Pressing tab will first select through the available context buttons of the current selection before moving onto the next result</value> </data> <data name="PowerLauncher_GenerateThumbnailsFromFiles.Header" xml:space="preserve"> <value>Generate thumbnails from files</value> </data> <data name="PowerLauncher_GenerateThumbnailsFromFiles.Description" xml:space="preserve"> <value>Results will try to generate thumbnails for files. Disabling this setting may increase stability and speed</value> </data> <data name="PowerLauncher_SearchQueryResultsWithDelay.Header" xml:space="preserve"> <value>Input Smoothing</value> <comment>This is about adding a delay to wait for more input before executing a search</comment> </data> <data name="PowerLauncher_SearchQueryResultsWithDelay.Description" xml:space="preserve"> <value>Wait for more input before searching. This reduces interface jumpiness and system load.</value> </data> <data name="PowerLauncher_FastSearchInputDelayMs.Header" xml:space="preserve"> <value>Immediate plugins</value> </data> <data name="PowerLauncher_FastSearchInputDelayMs.Description" xml:space="preserve"> <value>Affects the plugins that make the UI wait for their results by this amount. Recommended: 30-50 ms.</value> </data> <data name="PowerLauncher_SlowSearchInputDelayMs.Header" xml:space="preserve"> <value>Background execution plugins</value> </data> <data name="PowerLauncher_SlowSearchInputDelayMs.Description" xml:space="preserve"> <value>Affects the plugins that execute in the background by this amount. Recommended: 100-150 ms.</value> </data> <data name="PowerLauncher_SearchInputDelayMs.Header" xml:space="preserve"> <value>Fast plugin throttle (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="KeyboardManager_KeysMappingLayoutRightHeader.Text" xml:space="preserve"> <value>To:</value> <comment>Keyboard Manager mapping keys view right header</comment> </data> <data name="Appearance_GroupSettings.Text" xml:space="preserve"> <value>Appearance</value> </data> <data name="Fancyzones_ImageHyperlinkToDocs.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>FancyZones windows</value> <comment>do not loc the Product name</comment> </data> <data name="FancyZones.ModuleDescription" xml:space="preserve"> <value>Create window layouts to help make multi-tasking easy.</value> <comment>windows refers to application windows</comment> </data> <data name="FancyZones_DisplayOrWorkAreaChangeMoveWindowsCheckBoxControl.Content" xml:space="preserve"> <value>Keep windows in their zones when the screen resolution or work area changes</value> <comment>windows refers to application windows</comment> </data> <data name="FancyZones_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable FancyZones</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="FancyZones_ExcludeApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="FancyZones_ExcludeApps.Description" xml:space="preserve"> <value>Excludes an application from snapping to zones and will only react to Windows Snap - add one application name per line</value> </data> <data name="FancyZones_HighlightOpacity.Header" xml:space="preserve"> <value>Opacity (%)</value> </data> <data name="FancyZones_HotkeyEditorControl.Header" xml:space="preserve"> <value>Open layout editor</value> <comment>Shortcut to launch the FancyZones layout editor application</comment> </data> <data name="FancyZones_WindowSwitching_GroupSettings.Header" xml:space="preserve"> <value>Switch between windows in the current zone</value> </data> <data name="FancyZones_HotkeyNextTabControl.Header" xml:space="preserve"> <value>Next window</value> </data> <data name="FancyZones_HotkeyPrevTabControl.Header" xml:space="preserve"> <value>Previous window</value> </data> <data name="SettingsPage_SetShortcut.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Shortcut setting</value> </data> <data name="SettingsPage_SetShortcut_Glyph.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Information Symbol</value> </data> <data name="FancyZones_LaunchEditorButtonControl.Header" xml:space="preserve"> <value>Launch layout editor</value> <comment>launches the FancyZones layout editor application</comment> </data> <data name="FancyZones_LaunchEditorButtonControl.Description" xml:space="preserve"> <value>Set and manage your layouts</value> <comment>launches the FancyZones layout editor application</comment> </data> <data name="FancyZones_MakeDraggedWindowTransparentCheckBoxControl.Content" xml:space="preserve"> <value>Make dragged window transparent</value> </data> <data name="FancyZones_MouseDragCheckBoxControl_Header.Content" xml:space="preserve"> <value>Use a non-primary mouse button to toggle zone activation</value> </data> <data name="FancyZones_MouseMiddleClickSpanningMultipleZonesCheckBoxControl_Header.Content" xml:space="preserve"> <value>Use middle-click mouse button to toggle multiple zones spanning</value> </data> <data name="FancyZones_MoveWindowsAcrossAllMonitorsCheckBoxControl.Content" xml:space="preserve"> <value>Move windows between zones across all monitors</value> </data> <data name="FancyZones_OverrideSnapHotkeys.Header" xml:space="preserve"> <value>Override Windows Snap</value> </data> <data name="FancyZones_OverrideSnapHotkeys.Description" xml:space="preserve"> <value>This overrides the Windows Snap shortcut (Win + arrow) to move windows between zones</value> </data> <data name="FancyZones_ShiftDragCheckBoxControl_Header.Content" xml:space="preserve"> <value>Hold Shift key to activate zones while dragging</value> </data> <data name="FancyZones_ShowZonesOnAllMonitorsCheckBoxControl.Content" xml:space="preserve"> <value>Show zones on all monitors while dragging a window</value> </data> <data name="FancyZones_AppLastZoneMoveWindows.Content" xml:space="preserve"> <value>Move newly created windows to their last known zone</value> <comment>windows refers to application windows</comment> </data> <data name="FancyZones_OpenWindowOnActiveMonitor.Content" xml:space="preserve"> <value>Move newly created windows to the current active monitor (Experimental)</value> </data> <data name="FancyZones_UseCursorPosEditorStartupScreen.Header" xml:space="preserve"> <value>Launch editor on the display</value> </data> <data name="FancyZones_UseCursorPosEditorStartupScreen.Description" xml:space="preserve"> <value>When using multiple displays</value> </data> <data name="FancyZones_LaunchPositionMouse.Content" xml:space="preserve"> <value>Where the mouse pointer is</value> </data> <data name="FancyZones_LaunchPositionScreen.Content" xml:space="preserve"> <value>With active focus</value> </data> <data name="FancyZones_ZoneBehavior_GroupSettings.Header" xml:space="preserve"> <value>Zone behavior</value> </data> <data name="FancyZones_ZoneBehavior_GroupSettings.Description" xml:space="preserve"> <value>Manage how zones behave when using FancyZones</value> </data> <data name="FancyZones_Zones.Header" xml:space="preserve"> <value>Zones</value> </data> <data name="FancyZones_ZoneHighlightColor.Header" xml:space="preserve"> <value>Highlight color</value> </data> <data name="FancyZones_ZoneSetChangeMoveWindows.Content" xml:space="preserve"> <value>During zone layout changes, windows assigned to a zone will match new size/positions</value> </data> <data name="AttributionTitle.Text" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="General.ModuleTitle" xml:space="preserve"> <value>General</value> </data> <data name="GeneralPage_CheckForUpdates.Content" xml:space="preserve"> <value>Check for updates</value> </data> <data name="General_SettingsBackupAndRestoreLocationText.Header" xml:space="preserve"> <value>Location</value> </data> <data name="General_SettingsBackupAndRestore_ButtonBackup.Content" xml:space="preserve"> <value>Backup</value> </data> <data name="General_SettingsBackupInfo_FileNameHeader.Text" xml:space="preserve"> <value>File name:</value> </data> <data name="General_SettingsBackupAndRestore_LinkRefresh.Text" xml:space="preserve"> <value>Refresh</value> </data> <data name="General_SettingsBackupAndRestore_ButtonRestore.Content" xml:space="preserve"> <value>Restore</value> </data> <data name="General_SettingsBackupAndRestore_ButtonSelectLocation.Text" xml:space="preserve"> <value>Select folder</value> </data> <data name="GeneralPage_UpdateNow.Content" xml:space="preserve"> <value>Update now</value> </data> <data name="GeneralPage_PrivacyStatement_URL.Text" xml:space="preserve"> <value>Privacy statement</value> </data> <data name="GeneralPage_ReportAbug.Text" xml:space="preserve"> <value>Report a bug</value> <comment>Report an issue inside powertoys</comment> </data> <data name="GeneralPage_RequestAFeature_URL.Text" xml:space="preserve"> <value>Request a feature</value> <comment>Tell our team what we should build</comment> </data> <data name="GeneralPage_RestartAsAdmin_Button.Content" xml:space="preserve"> <value>Restart PowerToys as administrator</value> <comment>running PowerToys as a higher level user, account is typically referred to as an admin / administrator</comment> </data> <data name="GeneralPage_RunAtStartUp.Header" xml:space="preserve"> <value>Run at startup</value> </data> <data name="GeneralPage_RunAtStartUp.Description" xml:space="preserve"> <value>PowerToys will launch automatically</value> </data> <data name="PowerRename.ModuleDescription" xml:space="preserve"> <value>A Windows Shell extension for more advanced bulk renaming using search &amp; replace or regular expressions.</value> </data> <data name="PowerRename_ShellIntegration.Header" xml:space="preserve"> <value>Shell integration</value> <comment>This refers to directly integrating in with Windows</comment> </data> <data name="PowerRename_Toggle_Enable.Header" xml:space="preserve"> <value>Enable PowerRename</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="RadioButtons_Name_Theme.Text" xml:space="preserve"> <value>Settings theme</value> </data> <data name="PowerRename_Toggle_HideIcon.Content" xml:space="preserve"> <value>Hide icon in context menu</value> </data> <data name="PowerRename_Toggle_ContextMenu.Header" xml:space="preserve"> <value>Show PowerRename in</value> </data> <data name="PowerRename_Toggle_StandardContextMenu.Content" xml:space="preserve"> <value>Default and extended context menu</value> </data> <data name="PowerRename_Toggle_ExtendedContextMenu.Content" xml:space="preserve"> <value>Extended context menu only</value> </data> <data name="ExtendedContextMenuInfo.Title" xml:space="preserve"> <value>Press Shift + right-click on files to open the extended context menu</value> </data> <data name="PowerRename_Toggle_MaxDispListNum.Header" xml:space="preserve"> <value>Maximum number of items</value> </data> <data name="PowerRename_Toggle_RestoreFlagsOnLaunch.Header" xml:space="preserve"> <value>Show recently used strings</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_MD.Header" xml:space="preserve"> <value>Markdown</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_MD.Description" xml:space="preserve"> <value>.md, .markdown, .mdown, .mkdn, .mkd, .mdwn, .mdtxt, .mdtext</value> <comment>File extensions, should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_Monaco.Header" xml:space="preserve"> <value>Source code files (Monaco)</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_Monaco.Description" xml:space="preserve"> <value>.cpp, .py, .json, .xml, .csproj, ...</value> <comment>File extensions should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_SVG.Header" xml:space="preserve"> <value>Scalable Vector Graphics</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_SVG.Description" xml:space="preserve"> <value>.svg</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_Preview_SVG_Color_Mode.Header" xml:space="preserve"> <value>Color mode</value> </data> <data name="FileExplorerPreview_Preview_SVG_Color_Mode_Default.Content" xml:space="preserve"> <value>Windows default</value> </data> <data name="FileExplorerPreview_Preview_SVG_Color_Solid_Color.Content" xml:space="preserve"> <value>Solid color</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade.Content" xml:space="preserve"> <value>Checkered pattern</value> </data> <data name="FileExplorerPreview_Preview_SVG_Background_Color.Header" xml:space="preserve"> <value>Color</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_Mode.Header" xml:space="preserve"> <value>Checkered shade</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_1.Content" xml:space="preserve"> <value>Light</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_2.Content" xml:space="preserve"> <value>Medium</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_3.Content" xml:space="preserve"> <value>Dark</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_PDF.Header" xml:space="preserve"> <value>Portable Document Format</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_PDF.Description" xml:space="preserve"> <value>.pdf</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_SVG.Header" xml:space="preserve"> <value>Scalable Vector Graphics</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_SVG.Description" xml:space="preserve"> <value>.svg</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_STL.Header" xml:space="preserve"> <value>Stereolithography</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_STL.Description" xml:space="preserve"> <value>.stl</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_Color_Thumbnail_STL.Header" xml:space="preserve"> <value>Color</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_PDF.Header" xml:space="preserve"> <value>Portable Document Format</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_PDF.Description" xml:space="preserve"> <value>.pdf</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview.ModuleDescription" xml:space="preserve"> <value>These settings allow you to manage your Windows File Explorer custom preview handlers.</value> </data> <data name="PowerRename_AutoCompleteHeader.Header" xml:space="preserve"> <value>Auto-complete</value> </data> <data name="OpenSource_Notice.Text" xml:space="preserve"> <value>Open-source notice</value> </data> <data name="PowerRename_Toggle_AutoComplete.Header" xml:space="preserve"> <value>Enable auto-complete for the search &amp; replace fields</value> </data> <data name="FancyZones_BorderColor.Header" xml:space="preserve"> <value>Border color</value> </data> <data name="FancyZones_InActiveColor.Header" xml:space="preserve"> <value>Inactive color</value> </data> <data name="ShortcutGuide.ModuleDescription" xml:space="preserve"> <value>Shows a help overlay with Windows shortcuts.</value> </data> <data name="ShortcutGuide_PressTimeForGlobalWindowsShortcuts.Header" xml:space="preserve"> <value>Press duration before showing global Windows shortcuts (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="ShortcutGuide_ActivationMethod.Header" xml:space="preserve"> <value>Activation method</value> </data> <data name="ShortcutGuide_ActivationMethod.Description" xml:space="preserve"> <value>Use a shortcut or press the Windows key for some time to activate</value> </data> <data name="Radio_ShortcutGuide_ActivationMethod_CustomizedShortcut.Content" xml:space="preserve"> <value>Custom shortcut</value> </data> <data name="Radio_ShortcutGuide_ActivationMethod_LongPressWindowsKey.Content" xml:space="preserve"> <value>Hold down Windows key</value> </data> <data name="ShortcutGuide_PressWinKeyWarning.Title" xml:space="preserve"> <value>In some edge cases Shortcut Guide might not function correctly when using this activation method</value> </data> <data name="Appearance_Behavior.Header" xml:space="preserve"> <value>Appearance &amp; behavior</value> </data> <data name="General_SettingsBackupAndRestoreTitle.Header" xml:space="preserve"> <value>Backup &amp; restore</value> </data> <data name="General_SettingsBackupAndRestore.Header" xml:space="preserve"> <value>Backup and restore your settings</value> </data> <data name="General_SettingsBackupAndRestore.Description" xml:space="preserve"> <value>PowerToys will restart automatically if needed</value> </data> <data name="ShortcutGuide_Enable.Header" xml:space="preserve"> <value>Enable Shortcut Guide</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="ShortcutGuide_OverlayOpacity.Header" xml:space="preserve"> <value>Background opacity (%)</value> </data> <data name="ShortcutGuide_DisabledApps.Header" xml:space="preserve"> <value>Exclude apps</value> </data> <data name="ShortcutGuide_DisabledApps.Description" xml:space="preserve"> <value>Turns off Shortcut Guide when these applications have focus - add one application name per line</value> </data> <data name="ShortcutGuide_DisabledApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> <comment>Don't translate outlook.exe</comment> </data> <data name="ImageResizer_CustomSizes.Header" xml:space="preserve"> <value>Image sizes</value> </data> <data name="ImageResizer_Presets.Header" xml:space="preserve"> <value>Presets</value> </data> <data name="ImageResizer_Presets.Description" xml:space="preserve"> <value>Manage preset sizes that can be used in the editor</value> </data> <data name="ImageResizer_FilenameFormatHeader.Description" xml:space="preserve"> <value>This format is used as the filename for resized images</value> </data> <data name="ImageResizer.ModuleDescription" xml:space="preserve"> <value>Lets you resize images by right-clicking.</value> </data> <data name="ImageResizer_EnableToggle.Header" xml:space="preserve"> <value>Enable Image Resizer</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="ImagesSizesListView.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Image Size</value> </data> <data name="ImageResizer_Configurations.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Configurations</value> </data> <data name="ImageResizer_Name.Header" xml:space="preserve"> <value>Name</value> </data> <data name="ImageResizer_Fit.Header" xml:space="preserve"> <value>Fit</value> </data> <data name="ImageResizer_Width.Header" xml:space="preserve"> <value>Width</value> </data> <data name="ImageResizer_Height.Header" xml:space="preserve"> <value>Height</value> </data> <data name="ImageResizer_Size.Header" xml:space="preserve"> <value>Unit</value> </data> <data name="RemoveButton.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Remove</value> <comment>Removes a user defined setting group for Image Resizer</comment> </data> <data name="RemoveItem.Text" xml:space="preserve"> <value>Delete</value> </data> <data name="ImageResizer_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Image Resizer</value> </data> <data name="ImageResizer_AddSizeButton.Content" xml:space="preserve"> <value>Add new size</value> </data> <data name="ImageResizer_SaveSizeButton.Label" xml:space="preserve"> <value>Save sizes</value> </data> <data name="ImageResizer_Encoding.Header" xml:space="preserve"> <value>JPEG quality level (%)</value> </data> <data name="ImageResizer_PNGInterlacing.Header" xml:space="preserve"> <value>PNG interlacing</value> </data> <data name="ImageResizer_TIFFCompression.Header" xml:space="preserve"> <value>TIFF compression</value> </data> <data name="File.Header" xml:space="preserve"> <value>File</value> <comment>as in a computer file</comment> </data> <data name="Default.Content" xml:space="preserve"> <value>Default</value> </data> <data name="ImageResizer_ENCODER_TIFF_CCITT3.Content" xml:space="preserve"> <value>CCITT3</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_CCITT4.Content" xml:space="preserve"> <value>CCITT4</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_Default.Content" xml:space="preserve"> <value>Default</value> </data> <data name="ImageResizer_ENCODER_TIFF_LZW.Content" xml:space="preserve"> <value>LZW</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_None.Content" xml:space="preserve"> <value>None</value> </data> <data name="ImageResizer_ENCODER_TIFF_RLE.Content" xml:space="preserve"> <value>RLE</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_Zip.Content" xml:space="preserve"> <value>Zip</value> <comment>do not loc</comment> </data> <data name="ImageResizer_FallbackEncoder_BMP.Content" xml:space="preserve"> <value>BMP encoder</value> </data> <data name="ImageResizer_FallbackEncoder_GIF.Content" xml:space="preserve"> <value>GIF encoder</value> </data> <data name="ImageResizer_FallbackEncoder_JPEG.Content" xml:space="preserve"> <value>JPEG encoder</value> </data> <data name="ImageResizer_FallbackEncoder_PNG.Content" xml:space="preserve"> <value>PNG encoder</value> </data> <data name="ImageResizer_FallbackEncoder_TIFF.Content" xml:space="preserve"> <value>TIFF encoder</value> </data> <data name="ImageResizer_FallbackEncoder_WMPhoto.Content" xml:space="preserve"> <value>WMPhoto encoder</value> </data> <data name="ImageResizer_Sizes_Fit_Fill.Content" xml:space="preserve"> <value>Fill</value> <comment>Refers to filling an image into a certain size. It could overflow</comment> </data> <data name="ImageResizer_Sizes_Fit_Fill_ThirdPersonSingular.Text" xml:space="preserve"> <value>Fill</value> <comment>Refers to filling an image into a certain size. It could overflow</comment> </data> <data name="ImageResizer_Sizes_Fit_Fit.Content" xml:space="preserve"> <value>Fit</value> <comment>Refers to fitting an image into a certain size. It won't overflow</comment> </data> <data name="ImageResizer_Sizes_Fit_Stretch.Content" xml:space="preserve"> <value>Stretch</value> <comment>Refers to stretching an image into a certain size. Won't overflow but could distort.</comment> </data> <data name="ImageResizer_Sizes_Units_CM.Content" xml:space="preserve"> <value>Centimeters</value> </data> <data name="ImageResizer_Sizes_Units_Inches.Content" xml:space="preserve"> <value>Inches</value> </data> <data name="ImageResizer_Sizes_Units_Percent.Content" xml:space="preserve"> <value>Percent</value> </data> <data name="ImageResizer_Sizes_Units_Pixels.Content" xml:space="preserve"> <value>Pixels</value> </data> <data name="Off.Content" xml:space="preserve"> <value>Off</value> </data> <data name="On.Content" xml:space="preserve"> <value>On</value> </data> <data name="GeneralPage_ToggleSwitch_AlwaysRunElevated_Link.Content" xml:space="preserve"> <value>Learn more about administrator mode</value> </data> <data name="GeneralPage_ToggleSwitch_AutoDownloadUpdates.Header" xml:space="preserve"> <value>Download updates automatically</value> </data> <data name="GeneralPage_ToggleSwitch_AutoDownloadUpdates.Description" xml:space="preserve"> <value>Except on metered connections</value> </data> <data name="GeneralPage_ToggleSwitch_RunningAsAdminNote.Text" xml:space="preserve"> <value>Currently running as administrator</value> </data> <data name="GeneralSettings_AlwaysRunAsAdminText.Header" xml:space="preserve"> <value>Always run as administrator</value> </data> <data name="GeneralSettings_AlwaysRunAsAdminText.Description" xml:space="preserve"> <value>You need to run as administrator to use this setting</value> </data> <data name="GeneralSettings_RunningAsUserText" xml:space="preserve"> <value>Running as user</value> </data> <data name="GeneralSettings_RunningAsAdminText" xml:space="preserve"> <value>Running as administrator</value> </data> <data name="FancyZones.ModuleTitle" xml:space="preserve"> <value>FancyZones</value> </data> <data name="FileExplorerPreview.ModuleTitle" xml:space="preserve"> <value>File Explorer</value> </data> <data name="FileExplorerPreview_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>File Explorer</value> <comment>Use same translation as Windows does for File Explorer</comment> </data> <data name="ImageResizer.ModuleTitle" xml:space="preserve"> <value>Image Resizer</value> </data> <data name="KeyboardManager.ModuleTitle" xml:space="preserve"> <value>Keyboard Manager</value> </data> <data name="ColorPicker.ModuleTitle" xml:space="preserve"> <value>Color Picker</value> </data> <data name="PowerLauncher.ModuleTitle" xml:space="preserve"> <value>PowerToys Run</value> </data> <data name="PowerToys_Run_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>PowerToys Run</value> </data> <data name="PowerRename.ModuleTitle" xml:space="preserve"> <value>PowerRename</value> <comment>do not loc the product name</comment> </data> <data name="PowerRename_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>PowerRename</value> <comment>do not loc</comment> </data> <data name="ShortcutGuide.ModuleTitle" xml:space="preserve"> <value>Shortcut Guide</value> </data> <data name="Shortcut_Guide_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Shortcut Guide</value> </data> <data name="General_Repository.Text" xml:space="preserve"> <value>GitHub repository</value> </data> <data name="General_Version.Header" xml:space="preserve"> <value>Version</value> </data> <data name="General_VersionLastChecked.Text" xml:space="preserve"> <value>Last checked: </value> </data> <data name="General_SettingsBackupInfo_DateHeader.Text" xml:space="preserve"> <value>Created at:</value> </data> <data name="General_SettingsBackupAndRestoreStatusInfo.Header" xml:space="preserve"> <value>Backup information</value> </data> <data name="General_SettingsBackupInfo_SourceHeader.Text" xml:space="preserve"> <value>Source machine:</value> </data> <data name="General_SettingsBackupInfo_StatusHeader.Text" xml:space="preserve"> <value>Status:</value> </data> <data name="General_Version.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Version</value> </data> <data name="Admin_mode.Header" xml:space="preserve"> <value>Administrator mode</value> </data> <data name="FancyZones_RestoreSize.Content" xml:space="preserve"> <value>Restore the original size of windows when unsnapping</value> </data> <data name="ImageResizer_FallBackEncoderText.Header" xml:space="preserve"> <value>Fallback encoder</value> </data> <data name="ImageResizer_FileFormatDescription.Text" xml:space="preserve"> <value>The following parameters can be used:</value> </data> <data name="ImageResizer_FilenameFormatHeader.Header" xml:space="preserve"> <value>Filename format</value> </data> <data name="ImageResizer_FileModifiedDate.Header" xml:space="preserve"> <value>File modified timestamp</value> </data> <data name="ImageResizer_FileModifiedDate.Description" xml:space="preserve"> <value>Used as the 'modified timestamp' in the file properties</value> </data> <data name="ImageResizer_UseOriginalDate.Content" xml:space="preserve"> <value>Original file timestamp</value> </data> <data name="ImageResizer_UseResizeDate.Content" xml:space="preserve"> <value>Timestamp of resize action</value> </data> <data name="Encoding.Header" xml:space="preserve"> <value>Encoding</value> </data> <data name="KeyboardManager_RemapKeyboardButton.Description" xml:space="preserve"> <value>Remap keys to other keys or shortcuts</value> </data> <data name="KeyboardManager_RemapShortcutsButton.Description" xml:space="preserve"> <value>Remap shortcuts to other shortcuts or keys for all or specific applications</value> </data> <data name="General.ModuleDescription" xml:space="preserve"> <value>Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. Made with 💗 by Microsoft and the PowerToys community.</value> <comment>Windows refers to the OS</comment> </data> <data name="FancyZones_SpanZonesAcrossMonitors.Header" xml:space="preserve"> <value>Allow zones to span across monitors</value> </data> <data name="ImageResizer_Formatting_ActualHeight.Text" xml:space="preserve"> <value>Actual height</value> </data> <data name="ImageResizer_Formatting_ActualWidth.Text" xml:space="preserve"> <value>Actual width</value> </data> <data name="ImageResizer_Formatting_Filename.Text" xml:space="preserve"> <value>Original filename</value> </data> <data name="ImageResizer_Formatting_SelectedHeight.Text" xml:space="preserve"> <value>Selected height</value> </data> <data name="ImageResizer_Formatting_SelectedWidth.Text" xml:space="preserve"> <value>Selected width</value> </data> <data name="ImageResizer_Formatting_Sizename.Text" xml:space="preserve"> <value>Size name</value> </data> <data name="FancyZones_MoveWindowsBasedOnPositionCheckBoxControl.Content" xml:space="preserve"> <value>Move windows based on their position</value> <comment>Windows refers to application windows</comment> </data> <data name="GeneralSettings_NewVersionIsAvailable" xml:space="preserve"> <value>New update available</value> </data> <data name="GeneralSettings_VersionIsLatest" xml:space="preserve"> <value>PowerToys is up to date.</value> </data> <data name="FileExplorerPreview_IconThumbnail_GroupSettings.Header" xml:space="preserve"> <value>Thumbnail icon Preview</value> </data> <data name="FileExplorerPreview_IconThumbnail_GroupSettings.Description" xml:space="preserve"> <value>Select the file types for which thumbnail previews must be rendered.</value> </data> <data name="FileExplorerPreview_PreviewPane.Header" xml:space="preserve"> <value>Preview Pane</value> </data> <data name="FileExplorerPreview_PreviewPane.Description" xml:space="preserve"> <value>Select the file types which must be rendered in the Preview Pane. Ensure that Preview Pane is open by toggling the view with Alt + P in File Explorer.</value> <comment>Preview Pane and File Explorer are app/feature names in Windows. 'Alt + P' is a shortcut</comment> </data> <data name="FileExplorerPreview_RunAsAdminRequired.Title" xml:space="preserve"> <value>You need to run as administrator to modify these settings.</value> </data> <data name="FileExplorerPreview_RebootRequired.Title" xml:space="preserve"> <value>A reboot may be required for changes to these settings to take effect</value> </data> <data name="FileExplorerPreview_PreviewHandlerOutlookIncompatibility.Title" xml:space="preserve"> <value>Enabling the preview handlers will override other preview handlers already installed - there have been reports of incompatibility between Outlook and the PDF Preview Handler.</value> <comment>Outlook is the name of a Microsoft product</comment> </data> <data name="FileExplorerPreview_ThumbnailsMightNotAppearOnRemoteFolders.Title" xml:space="preserve"> <value>Thumbnails might not appear on paths managed by cloud storage solutions like OneDrive, since these solutions may get their thumbnails from the cloud instead of generating them locally.</value> <comment>OneDrive is the name of a Microsoft product</comment> </data> <data name="FancyZones_ExcludeApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> <comment>Don't translate outlook.exe</comment> </data> <data name="ImageResizer_FilenameFormatPlaceholder.PlaceholderText" xml:space="preserve"> <value>Example: %1 (%2)</value> </data> <data name="ImageResizer_FilenameParameters.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Filename parameters</value> </data> <data name="Radio_Theme_Dark.Content" xml:space="preserve"> <value>Dark</value> <comment>Dark refers to color, not weight</comment> </data> <data name="Radio_Theme_Light.Content" xml:space="preserve"> <value>Light</value> <comment>Light refers to color, not weight</comment> </data> <data name="Radio_Theme_Default.Content" xml:space="preserve"> <value>Windows default</value> <comment>Windows refers to the Operating system</comment> </data> <data name="Windows_Color_Settings.Content" xml:space="preserve"> <value>Windows color settings</value> <comment>Windows refers to the Operating system</comment> </data> <data name="ColorPicker_CopiedColorRepresentation.Header" xml:space="preserve"> <value>Default color format</value> </data> <data name="ColorPickerFirst.Content" xml:space="preserve"> <value>Pick a color and open editor</value> </data> <data name="EditorFirst.Content" xml:space="preserve"> <value>Open editor</value> </data> <data name="ColorPickerOnly.Content" xml:space="preserve"> <value>Only pick a color</value> </data> <data name="ColorPicker_ActivationAction.Header" xml:space="preserve"> <value>Activation behavior</value> </data> <data name="ColorFormats.Header" xml:space="preserve"> <value>Picker behavior</value> </data> <data name="ColorPicker_CopiedColorRepresentation.Description" xml:space="preserve"> <value>This format will be copied to your clipboard</value> </data> <data name="KBM_KeysCannotBeRemapped.Text" xml:space="preserve"> <value>Learn more about remapping limitations</value> <comment>This is a link that will discuss what is and is not possible for Keyboard manager to remap</comment> </data> <data name="FancyZones_Editor_GroupSettings.Header" xml:space="preserve"> <value>Editor</value> <comment>refers to the FancyZone editor</comment> </data> <data name="FancyZones_WindowBehavior_GroupSettings.Header" xml:space="preserve"> <value>Window behavior</value> </data> <data name="FancyZones_WindowBehavior_GroupSettings.Description" xml:space="preserve"> <value>Manage how windows behave when using FancyZones</value> </data> <data name="FancyZones_Windows.Header" xml:space="preserve"> <value>Windows</value> <comment>Do translate: refers to a set of application windows, not the product name</comment> </data> <data name="PowerRename_BehaviorHeader.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="PowerRename_Toggle_UseBoostLib.Header" xml:space="preserve"> <value>Use Boost library</value> <comment>Boost is a product name, should not be translated</comment> </data> <data name="PowerRename_Toggle_UseBoostLib.Description" xml:space="preserve"> <value>Provides extended features but may use different regex syntax</value> <comment>Boost is a product name, should not be translated</comment> </data> <data name="MadeWithOssLove.Text" xml:space="preserve"> <value>Made with 💗 by Microsoft and the PowerToys community.</value> </data> <data name="ColorPicker_ColorFormats.Header" xml:space="preserve"> <value>Color formats</value> </data> <data name="ColorPicker_ColorFormats.Description" xml:space="preserve"> <value>Configure the color formats (edit, delete, hide, reorder them)</value> </data> <data name="MoveUp.Text" xml:space="preserve"> <value>Move up</value> </data> <data name="MoveDown.Text" xml:space="preserve"> <value>Move down</value> </data> <data name="ColorPickerAddNewFormat.Content" xml:space="preserve"> <value>Add new format</value> </data> <data name="NewColorFormat.Header" xml:space="preserve"> <value>Format</value> </data> <data name="NewColorName.Header" xml:space="preserve"> <value>Name</value> </data> <data name="AddCustomColorFormat" xml:space="preserve"> <value>Add custom color format</value> </data> <data name="ColorFormatSave" xml:space="preserve"> <value>Save</value> </data> <data name="EditCustomColorFormat" xml:space="preserve"> <value>Edit custom color format</value> </data> <data name="ColorFormatUpdate" xml:space="preserve"> <value>Update</value> </data> <data name="CustomColorFormatDefaultName" xml:space="preserve"> <value>My Format</value> </data> <data name="ColorFormatDialog.SecondaryButtonText" xml:space="preserve"> <value>Cancel</value> </data> <data name="ColorFormatEditorHelpline1.Text" xml:space="preserve"> <value>The following parameters can be used:</value> </data> <data name="Help_red" xml:space="preserve"> <value>red</value> </data> <data name="Help_green" xml:space="preserve"> <value>green</value> </data> <data name="Help_blue" xml:space="preserve"> <value>blue</value> </data> <data name="Help_alpha" xml:space="preserve"> <value>alpha</value> </data> <data name="Help_cyan" xml:space="preserve"> <value>cyan</value> </data> <data name="Help_magenta" xml:space="preserve"> <value>magenta</value> </data> <data name="Help_yellow" xml:space="preserve"> <value>yellow</value> </data> <data name="Help_black_key" xml:space="preserve"> <value>black key</value> </data> <data name="Help_hue" xml:space="preserve"> <value>hue</value> </data> <data name="Help_hueNat" xml:space="preserve"> <value>hue (natural)</value> </data> <data name="Help_saturationI" xml:space="preserve"> <value>saturation (HSI)</value> </data> <data name="Help_saturationL" xml:space="preserve"> <value>saturation (HSL)</value> </data> <data name="Help_saturationB" xml:space="preserve"> <value>saturation (HSB)</value> </data> <data name="Help_brightness" xml:space="preserve"> <value>brightness</value> </data> <data name="Help_intensity" xml:space="preserve"> <value>intensity</value> </data> <data name="Help_lightnessNat" xml:space="preserve"> <value>lightness (nat)</value> </data> <data name="Help_lightnessCIE" xml:space="preserve"> <value>lightness (CIE)</value> </data> <data name="Help_value" xml:space="preserve"> <value>value</value> </data> <data name="Help_whiteness" xml:space="preserve"> <value>whiteness</value> </data> <data name="Help_blackness" xml:space="preserve"> <value>blackness</value> </data> <data name="Help_chromaticityA" xml:space="preserve"> <value>chromaticityA</value> </data> <data name="Help_chromaticityB" xml:space="preserve"> <value>chromaticityB</value> </data> <data name="Help_X_value" xml:space="preserve"> <value>X value</value> </data> <data name="Help_Y_value" xml:space="preserve"> <value>Y value</value> </data> <data name="Help_Z_value" xml:space="preserve"> <value>Z value</value> </data> <data name="Help_decimal_value_RGB" xml:space="preserve"> <value>decimal value (RGB)</value> </data> <data name="Help_decimal_value_BGR" xml:space="preserve"> <value>decimal value (BGR)</value> </data> <data name="Help_color_name" xml:space="preserve"> <value>color name</value> </data> <data name="ColorFormatEditorHelpline2.Text" xml:space="preserve"> <value>The red, green, blue and alpha values can be formatted to the following formats:</value> </data> <data name="Help_byte" xml:space="preserve"> <value>byte value (default)</value> </data> <data name="Help_hexL1" xml:space="preserve"> <value>hex lowercase one digit</value> </data> <data name="Help_hexU1" xml:space="preserve"> <value>hex uppercase one digit</value> </data> <data name="Help_hexL2" xml:space="preserve"> <value>hex lowercase two digits</value> </data> <data name="Help_hexU2" xml:space="preserve"> <value>hex uppercase two digits</value> </data> <data name="Help_floatWith" xml:space="preserve"> <value>float with leading zero</value> </data> <data name="Help_floatWithout" xml:space="preserve"> <value>float without leading zero</value> </data> <data name="ColorFormatEditorHelpline3.Text" xml:space="preserve"> <value>Example: %ReX means red value in hex uppercase two digits format.</value> </data> <data name="ColorPicker_ShowColorName.Header" xml:space="preserve"> <value>Show color name</value> </data> <data name="ColorPicker_ShowColorName.Description" xml:space="preserve"> <value>This will show the name of the color when picking a color</value> </data> <data name="ImageResizer_DefaultSize_Large" xml:space="preserve"> <value>Large</value> <comment>The size of the image</comment> </data> <data name="ImageResizer_DefaultSize_Medium" xml:space="preserve"> <value>Medium</value> <comment>The size of the image</comment> </data> <data name="ImageResizer_DefaultSize_Phone" xml:space="preserve"> <value>Phone</value> <comment>The size of the image referring to a Mobile Phone typical image size</comment> </data> <data name="ImageResizer_DefaultSize_Small" xml:space="preserve"> <value>Small</value> <comment>The size of the image</comment> </data> <data name="FancyZones_MoveWindowBasedOnRelativePosition_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Windows key + Up, down, left or right arrow key to move windows based on relative position</value> </data> <data name="FancyZones_MoveWindowLeftRightBasedOnZoneIndex_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Windows key + Left or right arrow keys to move windows based on zone index</value> </data> <data name="FancyZones_MoveWindowBasedOnRelativePosition_Description.Text" xml:space="preserve"> <value>Windows key +    or </value> <comment>Do not loc the icons (hex numbers)</comment> </data> <data name="FancyZones_MoveWindowLeftRightBasedOnZoneIndex_Description.Text" xml:space="preserve"> <value>Windows key +  or </value> <comment>Do not loc the icons (hex numbers)</comment> </data> <data name="FancyZones_MoveWindowBasedOnRelativePosition.Text" xml:space="preserve"> <value>Relative position</value> </data> <data name="FancyZones_MoveWindow.Header" xml:space="preserve"> <value>Move windows based on</value> </data> <data name="FancyZones_MoveWindowLeftRightBasedOnZoneIndex.Text" xml:space="preserve"> <value>Zone index</value> </data> <data name="ColorPicker_Editor.Header" xml:space="preserve"> <value>Color formats</value> </data> <data name="FancyZones_OverlappingZonesClosestCenter.Content" xml:space="preserve"> <value>Activate the zone whose center is closest to the cursor</value> </data> <data name="FancyZones_OverlappingZonesLargest.Content" xml:space="preserve"> <value>Activate the largest zone by area</value> </data> <data name="FancyZones_OverlappingZonesPositional.Content" xml:space="preserve"> <value>Split the overlapped area into multiple activation targets</value> </data> <data name="FancyZones_OverlappingZonesSmallest.Content" xml:space="preserve"> <value>Activate the smallest zone by area</value> </data> <data name="FancyZones_OverlappingZones.Header" xml:space="preserve"> <value>When multiple zones overlap</value> </data> <data name="PowerLauncher_Plugins.Header" xml:space="preserve"> <value>Plugins</value> </data> <data name="PowerLauncher_ActionKeyword.Header" xml:space="preserve"> <value>Direct activation command</value> </data> <data name="PowerLauncher_AuthoredBy.Text" xml:space="preserve"> <value>Authored by</value> <comment>example: Authored by Microsoft</comment> </data> <data name="PowerLauncher_IncludeInGlobalResultTitle.Text" xml:space="preserve"> <value>Include in global result</value> </data> <data name="PowerLauncher_IncludeInGlobalResultDescription.Text" xml:space="preserve"> <value>Show results on queries without direct activation command</value> </data> <data name="PowerLauncher_EnablePluginToggle.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Enable plugin</value> </data> <data name="PowerLauncher_EnablePluginToggle.OnContent" xml:space="preserve"> <value>On</value> </data> <data name="PowerLauncher_EnablePluginToggle.OffContent" xml:space="preserve"> <value>Off</value> </data> <data name="Run_AdditionalOptions.Text" xml:space="preserve"> <value>Additional options</value> </data> <data name="Run_NotAccessibleWarning.Title" xml:space="preserve"> <value>Please define an activation command or allow this plugin to be used in the global results.</value> </data> <data name="Run_AllPluginsDisabled.Title" xml:space="preserve"> <value>PowerToys Run can't provide any results without plugins</value> </data> <data name="Run_AllPluginsDisabled.Message" xml:space="preserve"> <value>Enable at least one plugin to get started</value> </data> <data name="Run_PluginUse.Header" xml:space="preserve"> <value>Plugins</value> </data> <data name="Run_PluginUseDescription.Text" xml:space="preserve"> <value>Include or remove plugins from the global results, change the direct activation phrase and configure additional options</value> </data> <data name="Run_PositionAppearance_GroupSettings.Header" xml:space="preserve"> <value>Position &amp; appearance</value> </data> <data name="Run_PositionHeader.Header" xml:space="preserve"> <value>Preferred monitor position</value> <comment>as in Show PowerToys Run on primary monitor</comment> </data> <data name="Run_PositionHeader.Description" xml:space="preserve"> <value>If multiple monitors are in use, PowerToys Run can be launched on the desired monitor</value> <comment>as in Show PowerToys Run on primary monitor</comment> </data> <data name="Run_Radio_Position_Cursor.Content" xml:space="preserve"> <value>Monitor with mouse cursor</value> </data> <data name="Run_Radio_Position_Focus.Content" xml:space="preserve"> <value>Monitor with focused window</value> </data> <data name="Run_Radio_Position_Primary_Monitor.Content" xml:space="preserve"> <value>Primary monitor</value> </data> <data name="Run_PluginsLoading.Text" xml:space="preserve"> <value>Plugins are loading...</value> </data> <data name="ColorPicker_ButtonDown.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Move the color down</value> </data> <data name="ColorPicker_ButtonUp.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Move the color up</value> </data> <data name="FancyZones_FlashZonesOnQuickSwitch.Content" xml:space="preserve"> <value>Flash zones when switching layout</value> </data> <data name="FancyZones_Layouts.Header" xml:space="preserve"> <value>Layouts</value> </data> <data name="FancyZones_QuickLayoutSwitch.Header" xml:space="preserve"> <value>Enable quick layout switch</value> </data> <data name="FancyZones_QuickLayoutSwitch.Description" xml:space="preserve"> <value>Layout-specific shortcuts can be configured in the editor</value> </data> <data name="FancyZones_QuickLayoutSwitch_GroupSettings.Text" xml:space="preserve"> <value>Quick layout switch</value> </data> <data name="Activation_Shortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="Activation_Shortcut.Description" xml:space="preserve"> <value>Customize the shortcut to activate this module</value> </data> <data name="Oobe_GetStarted.Text" xml:space="preserve"> <value>Let's get started!</value> </data> <data name="Oobe_PowerToysDescription.Text" xml:space="preserve"> <value>Welcome to PowerToys! These overviews will help you quickly learn the basics of all our utilities.</value> </data> <data name="Oobe_GettingStarted.Text" xml:space="preserve"> <value>Getting started</value> </data> <data name="Oobe_Launch.Text" xml:space="preserve"> <value>Launch</value> </data> <data name="Launch_ColorPicker.Content" xml:space="preserve"> <value>Launch Color Picker</value> </data> <data name="Oobe_LearnMore.Text" xml:space="preserve"> <value>Learn more about</value> </data> <data name="Oobe_ColorPicker.Description" xml:space="preserve"> <value>Color Picker is a system-wide color selection tool for Windows that enables you to pick colors from any currently running application and automatically copies it in a configurable format to your clipboard.</value> </data> <data name="Oobe_FancyZones.Description" xml:space="preserve"> <value>FancyZones is a window manager that makes it easy to create complex window layouts and quickly position windows into those layouts.</value> </data> <data name="Oobe_FileLocksmith.Description" xml:space="preserve"> <value>File Locksmith lists which processes are using the selected files or directories and allows closing those processes.</value> </data> <data name="Oobe_FileExplorer.Description" xml:space="preserve"> <value>PowerToys introduces add-ons to the Windows File Explorer that will enable files like Markdown (.md), PDF (.pdf), SVG (.svg), STL (.stl), G-code (.gcode) and developer files to be viewed in the preview pane. It introduces File Explorer thumbnail support for a number of these file types as well.</value> </data> <data name="Oobe_ImageResizer.Description" xml:space="preserve"> <value>Image Resizer is a Windows shell extension for simple bulk image-resizing.</value> </data> <data name="Oobe_KBM.Description" xml:space="preserve"> <value>Keyboard Manager allows you to customize the keyboard to be more productive by remapping keys and creating your own keyboard shortcuts.</value> </data> <data name="Oobe_MouseWithoutBorders.Description" xml:space="preserve"> <value>Mouse Without Borders enables using the mouse pointer, keyboard, clipboard and drag and drop between machines in the same local network.</value> </data> <data name="Oobe_PowerRename.Description" xml:space="preserve"> <value>PowerRename enables you to perform simple bulk renaming, searching and replacing file names.</value> </data> <data name="Oobe_Run.Description" xml:space="preserve"> <value>PowerToys Run is a quick launcher for power users that contains some additional features without sacrificing performance.</value> </data> <data name="Oobe_MeasureTool.Description" xml:space="preserve"> <value>Screen Ruler is a quick and easy way to measure pixels on your screen.</value> </data> <data name="Oobe_ShortcutGuide.Description" xml:space="preserve"> <value>Shortcut Guide presents the user with a listing of available shortcuts for the current state of the desktop.</value> </data> <data name="Oobe_VideoConference.Description" xml:space="preserve"> <value>Video Conference Mute allows users to quickly mute the microphone and turn off the camera while on a conference call with a single keystroke, regardless of what application has focus on your computer.</value> </data> <data name="Oobe_MouseUtils.Description" xml:space="preserve"> <value>A collection of utilities to enhance your mouse.</value> <comment>Mouse as in the hardware peripheral</comment> </data> <data name="Oobe_Overview.Description" xml:space="preserve"> <value>Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. Take a moment to preview the various utilities listed or view our comprehensive documentation.</value> </data> <data name="Oobe_Overview_DescriptionLinkText.Text" xml:space="preserve"> <value>Documentation on Microsoft Docs</value> </data> <data name="ReleaseNotes.Content" xml:space="preserve"> <value>Release notes</value> </data> <data name="Oobe_ColorPicker_HowToUse.Text" xml:space="preserve"> <value>to open Color Picker.</value> </data> <data name="Oobe_ColorPicker_TipsAndTricks.Text" xml:space="preserve"> <value>To select a color with more precision, **scroll the mouse wheel** to zoom in.</value> </data> <data name="Oobe_FancyZones_HowToUse.Text" xml:space="preserve"> <value>**Shift** + **drag the window** to snap a window to a zone, and release the window in the desired zone.</value> </data> <data name="Oobe_FancyZones_HowToUse_Shortcut.Text" xml:space="preserve"> <value>to open the FancyZones editor.</value> </data> <data name="Oobe_FancyZones_TipsAndTricks.Text" xml:space="preserve"> <value>Snap a window to multiple zones by holding the **Ctrl** key (while also holding **Shift**) when dragging a window.</value> </data> <data name="Oobe_FileLocksmith_HowToUse.Text" xml:space="preserve"> <value>In File Explorer, right-click one or more selected files and select **What's using this file?** from the context menu.</value> </data> <data name="Oobe_FileLocksmith_TipsAndTricks.Text" xml:space="preserve"> <value>Press the **Restart Elevated** button from the File Locksmith UI to also get information on elevated processes that might be using the files.</value> </data> <data name="Oobe_FileExplorer_HowToEnable.Text" xml:space="preserve"> <value>Select **View** which is located at the top of File Explorer, followed by **Show**, and then **Preview pane**. From there, simply click on one of the supported files in the File Explorer and observe the content on the preview pane!</value> </data> <data name="Oobe_HowToCreateMappings.Text" xml:space="preserve"> <value>How to create mappings</value> </data> <data name="Oobe_HowToEnable.Text" xml:space="preserve"> <value>How to enable</value> </data> <data name="Oobe_HowToLaunch.Text" xml:space="preserve"> <value>How to launch</value> </data> <data name="Oobe_HowToUse.Text" xml:space="preserve"> <value>How to use</value> </data> <data name="Oobe_ImageResizer_HowToLaunch.Text" xml:space="preserve"> <value>In File Explorer, right-click one or more image files and select **Resize pictures** from the context menu.</value> </data> <data name="Oobe_ImageResizer_TipsAndTricks.Text" xml:space="preserve"> <value>Want a custom size? You can add them in the PowerToys Settings!</value> </data> <data name="Oobe_KBM_HowToCreateMappings.Text" xml:space="preserve"> <value>Launch **PowerToys Settings**, navigate to the Keyboard Manager menu, and select either **Remap a key** or **Remap a shortcut**.</value> </data> <data name="Oobe_KBM_TipsAndTricks.Text" xml:space="preserve"> <value>Want to only have a shortcut work for a single application? Use the Target App field when creating the shortcut remapping.</value> </data> <data name="Oobe_MouseWithoutBorders_HowToUse.Text" xml:space="preserve"> <value>Use the Settings screen on each machine to connect to the other machines using the same key. If a connection is not working, it may be necessary to add an exception to the Windows Firewall.</value> </data> <data name="Oobe_MouseWithoutBorders_TipsAndTricks.Text" xml:space="preserve"> <value>Use the service option in Settings to install a service enabling Mouse Without Borders to function even in the lock screen.</value> </data> <data name="Oobe_PowerRename_HowToUse.Text" xml:space="preserve"> <value>In File Explorer, right-click one or more selected files and select **PowerRename** from the context menu.</value> </data> <data name="Oobe_PowerRename_TipsAndTricks.Text" xml:space="preserve"> <value>PowerRename supports searching for files using regular expressions to enable more advanced renaming functionalities.</value> </data> <data name="Oobe_Run_HowToLaunch.Text" xml:space="preserve"> <value>to open Run and just start typing.</value> </data> <data name="Oobe_Run_TipsAndTricks.Text" xml:space="preserve"> <value>PowerToys Run supports various action keys to funnel search queries for a specific subset of results. Typing `&lt;` searches for running processes only, `?` will search only for file, or `.` for installed applications! See PowerToys documentation for the complete set of 'Action Keys' available.</value> </data> <data name="Oobe_ShortcutGuide_HowToLaunch.Text" xml:space="preserve"> <value>to open Shortcut Guide, press it again to close or press **Esc**.</value> </data> <data name="Oobe_TipsAndTricks.Text" xml:space="preserve"> <value>Tips &amp; tricks</value> </data> <data name="Oobe_VideoConference_ToggleMicVid.Text" xml:space="preserve"> <value>to toggle both your microphone and video</value> </data> <data name="Oobe_VideoConference_ToggleMic.Text" xml:space="preserve"> <value>to toggle your microphone</value> </data> <data name="Oobe_VideoConference_PushToTalkMic.Text" xml:space="preserve"> <value>to toggle your microphone until key release</value> </data> <data name="Oobe_VideoConference_ToggleVid.Text" xml:space="preserve"> <value>to toggle your video</value> </data> <data name="Oobe_MeasureTool_Activation.Text" xml:space="preserve"> <value>to bring up the Screen Ruler command bar.</value> </data> <data name="Oobe_MeasureTool_HowToLaunch.Text" xml:space="preserve"> <value>The Bounds mode lets you select a specific area to measure. You can also shift-drag an area to persist in on screen. The various Spacing modes allows tracing similar pixels along horizontal and vertical axes with a customizable pixel tolerance threshold (use settings or mouse wheel to adjust it).</value> </data> <data name="Oobe_MeasureTool.Title" xml:space="preserve"> <value>Screen Ruler</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_ColorPicker.Title" xml:space="preserve"> <value>Color Picker</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_FancyZones.Title" xml:space="preserve"> <value>FancyZones</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_FileLocksmith.Title" xml:space="preserve"> <value>File Locksmith</value> </data> <data name="Oobe_ImageResizer.Title" xml:space="preserve"> <value>Image Resizer</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_KBM.Title" xml:space="preserve"> <value>Keyboard Manager</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_MouseWithoutBorders.Title" xml:space="preserve"> <value>Mouse Without Borders</value> <comment>Product name. Do not localize this string</comment> </data> <data name="Oobe_PowerRename.Title" xml:space="preserve"> <value>PowerRename</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_Run.Title" xml:space="preserve"> <value>PowerToys Run</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_ShortcutGuide.Title" xml:space="preserve"> <value>Shortcut Guide</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_VideoConference.Title" xml:space="preserve"> <value>Video Conference Mute</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_Overview.Title" xml:space="preserve"> <value>Welcome</value> </data> <data name="Oobe_WhatsNew.Text" xml:space="preserve"> <value>What's new</value> </data> <data name="Oobe_WhatsNew_LoadingError.Title" xml:space="preserve"> <value>Couldn't load the release notes.</value> </data> <data name="Oobe_WhatsNew_LoadingError.Message" xml:space="preserve"> <value>Please check your internet connection.</value> </data> <data name="Oobe_WhatsNew_ProxyAuthenticationWarning.Title" xml:space="preserve"> <value>Couldn't load the release notes.</value> </data> <data name="Oobe_WhatsNew_ProxyAuthenticationWarning.Message" xml:space="preserve"> <value>Your proxy server requires authentication.</value> </data> <data name="Oobe_WhatsNew_DetailedReleaseNotesLink.Text" xml:space="preserve"> <value>See more detailed release notes on GitHub</value> <comment>Don't loc "GitHub", it's the name of a product</comment> </data> <data name="OOBE_Settings.Content" xml:space="preserve"> <value>Open Settings</value> </data> <data name="Oobe_NavViewItem.Content" xml:space="preserve"> <value>Welcome to PowerToys</value> <comment>Don't loc "PowerToys"</comment> </data> <data name="Feedback_NavViewItem.Content" xml:space="preserve"> <value>Give feedback</value> </data> <data name="OobeWindow_Title" xml:space="preserve"> <value>Welcome to PowerToys</value> </data> <data name="OobeWindow_TitleTxt.Text" xml:space="preserve"> <value>Welcome to PowerToys</value> </data> <data name="SettingsWindow_Title" xml:space="preserve"> <value>PowerToys Settings</value> <comment>Title of the settings window when running as user</comment> </data> <data name="Awake.ModuleTitle" xml:space="preserve"> <value>Awake</value> </data> <data name="Awake.ModuleDescription" xml:space="preserve"> <value>A convenient way to keep your PC awake on-demand.</value> </data> <data name="Awake_EnableSettingsCard.Header" xml:space="preserve"> <value>Enable Awake</value> <comment>Awake is a product name, do not loc</comment> </data> <data name="Awake_NoKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep using the selected power plan</value> </data> <data name="Awake_IndefiniteKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep awake indefinitely</value> </data> <data name="Awake_TemporaryKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep awake for a time interval</value> </data> <data name="Awake_ExpirableKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep awake until expiration</value> </data> <data name="Awake_DisplaySettingsCard.Header" xml:space="preserve"> <value>Keep screen on</value> </data> <data name="Awake_DisplaySettingsCard.Description" xml:space="preserve"> <value>This setting is only available when keeping the PC awake</value> </data> <data name="Awake_ExpirationSettingsExpander.Description" xml:space="preserve"> <value>Keep custom awake state until a specific date and time</value> </data> <data name="Awake_ModeSettingsCard.Header" xml:space="preserve"> <value>Mode</value> </data> <data name="Awake_BehaviorSettingsGroup.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="Awake_IntervalHoursInput.Header" xml:space="preserve"> <value>Hours</value> </data> <data name="Awake_IntervalMinutesInput.Header" xml:space="preserve"> <value>Minutes</value> </data> <data name="Awake_ExpirationSettingsExpander_Date.Header" xml:space="preserve"> <value>End date</value> </data> <data name="Awake_ExpirationSettingsExpander_Time.Header" xml:space="preserve"> <value>End time</value> </data> <data name="Oobe_Awake.Title" xml:space="preserve"> <value>Awake</value> <comment>Module name, do not loc</comment> </data> <data name="Oobe_Awake.Description" xml:space="preserve"> <value>Awake is a Windows tool designed to keep your PC awake on-demand without having to manage its power settings. This behavior can be helpful when running time-consuming tasks while ensuring that your PC does not go to sleep or turn off its screens.</value> </data> <data name="Oobe_Awake_HowToUse.Text" xml:space="preserve"> <value>Open **PowerToys Settings** and enable Awake</value> </data> <data name="Oobe_Awake_TipsAndTricks.Text" xml:space="preserve"> <value>You can always change modes quickly by **right-clicking the Awake icon** in the system tray.</value> </data> <data name="General_FailedToDownloadTheNewVersion.Title" xml:space="preserve"> <value>An error occurred trying to install this update:</value> </data> <data name="General_InstallNow.Content" xml:space="preserve"> <value>Install now</value> </data> <data name="General_ReadMore.Text" xml:space="preserve"> <value>Read more</value> </data> <data name="General_NewVersionAvailable.Title" xml:space="preserve"> <value>An update is available:</value> </data> <data name="General_Downloading.Text" xml:space="preserve"> <value>Downloading...</value> </data> <data name="General_TryAgainToDownloadAndInstall.Content" xml:space="preserve"> <value>Try again to download and install</value> </data> <data name="General_CheckingForUpdates.Text" xml:space="preserve"> <value>Checking for updates...</value> </data> <data name="General_NewVersionReadyToInstall.Title" xml:space="preserve"> <value>An update is ready to install:</value> </data> <data name="General_UpToDate.Title" xml:space="preserve"> <value>PowerToys is up to date</value> </data> <data name="General_CantCheck.Title" xml:space="preserve"> <value>Network error. Please try again later</value> </data> <data name="General_DownloadAndInstall.Content" xml:space="preserve"> <value>Download &amp; install</value> </data> <data name="ImageResizer_Fit_Fill_ThirdPersonSingular" xml:space="preserve"> <value>Fills</value> </data> <data name="ImageResizer_Fit_Fit_ThirdPersonSingular" xml:space="preserve"> <value>Fits within</value> </data> <data name="ImageResizer_Fit_Stretch_ThirdPersonSingular" xml:space="preserve"> <value>Stretches to</value> </data> <data name="ImageResizer_Unit_Centimeter" xml:space="preserve"> <value>Centimeters</value> </data> <data name="ImageResizer_Unit_Inch" xml:space="preserve"> <value>Inches</value> </data> <data name="ImageResizer_Unit_Percent" xml:space="preserve"> <value>Percent</value> </data> <data name="ImageResizer_Unit_Pixel" xml:space="preserve"> <value>Pixels</value> </data> <data name="EditButton.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Edit</value> </data> <data name="ImageResizer_EditSize.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Edit size</value> </data> <data name="No" xml:space="preserve"> <value>No</value> <comment>Label of a cancel button</comment> </data> <data name="Delete_Dialog_Description" xml:space="preserve"> <value>Are you sure you want to delete this item?</value> </data> <data name="Yes" xml:space="preserve"> <value>Yes</value> <comment>Label of a confirmation button</comment> </data> <data name="SeeWhatsNew.Content" xml:space="preserve"> <value>See what's new</value> </data> <data name="Awake_ModeSettingsCard.Description" xml:space="preserve"> <value>Manage the state of your device when Awake is active</value> </data> <data name="ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="Enable_ColorFormat.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Enable colorformat</value> </data> <data name="More_Options_Button.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>More options</value> </data> <data name="More_Options_ButtonTooltip.Text" xml:space="preserve"> <value>More options</value> </data> <data name="To.Text" xml:space="preserve"> <value>to</value> <comment>as in: from x to y</comment> </data> <data name="LearnMore_Awake.Text" xml:space="preserve"> <value>Learn more about Awake</value> <comment>Awake is a product name, do not loc</comment> </data> <data name="LearnMore_ColorPicker.Text" xml:space="preserve"> <value>Learn more about Color Picker</value> <comment>Color Picker is a product name, do not loc</comment> </data> <data name="LearnMore_FancyZones.Text" xml:space="preserve"> <value>Learn more about FancyZones</value> <comment>FancyZones is a product name, do not loc</comment> </data> <data name="LearnMore_FileLocksmith.Text" xml:space="preserve"> <value>Learn more about File Locksmith</value> </data> <data name="LearnMore_ImageResizer.Text" xml:space="preserve"> <value>Learn more about Image Resizer</value> <comment>Image Resizer is a product name, do not loc</comment> </data> <data name="LearnMore_KBM.Text" xml:space="preserve"> <value>Learn more about Keyboard Manager</value> <comment>Keyboard Manager is a product name, do not loc</comment> </data> <data name="LearnMore_MouseUtils.Text" xml:space="preserve"> <value>Learn more about Mouse utilities</value> <comment>Mouse utilities is a product name, do not loc</comment> </data> <data name="LearnMore_PastePlain.Text" xml:space="preserve"> <value>Learn more about Paste as Plain Text</value> <comment> Paste as Plain Text is the name of the module. </comment> </data> <data name="LearnMore_MouseWithoutBorders.Text" xml:space="preserve"> <value>Learn more about Mouse Without Borders</value> <comment>Mouse Without Borders is the name of the module. </comment> </data> <data name="LearnMore_PowerPreview.Text" xml:space="preserve"> <value>Learn more about File Explorer add-ons</value> <comment>File Explorer is a product name, localize as Windows does</comment> </data> <data name="LearnMore_Peek.Text" xml:space="preserve"> <value>Learn more about Peek</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="LearnMore_PowerRename.Text" xml:space="preserve"> <value>Learn more about PowerRename</value> <comment>PowerRename is a product name, do not loc</comment> </data> <data name="LearnMore_Run.Text" xml:space="preserve"> <value>Learn more about PowerToys Run</value> <comment>PowerToys Run is a product name, do not loc</comment> </data> <data name="LearnMore_MeasureTool.Text" xml:space="preserve"> <value>Learn more about Screen Ruler</value> <comment>Screen Ruler is a product name, do not loc</comment> </data> <data name="LearnMore_ShortcutGuide.Text" xml:space="preserve"> <value>Learn more about Shortcut Guide</value> <comment>Shortcut Guide is a product name, do not loc</comment> </data> <data name="LearnMore_VCM.Text" xml:space="preserve"> <value>Learn more about Video Conference Mute</value> <comment>Video Conference Mute is a product name, do not loc</comment> </data> <data name="Oobe_FileExplorer.Title" xml:space="preserve"> <value>File Explorer add-ons</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_MouseUtils.Title" xml:space="preserve"> <value>Mouse utilities</value> <comment>Mouse as in the hardware peripheral</comment> </data> <data name="Oobe_MouseUtils_FindMyMouse.Text" xml:space="preserve"> <value>Find My Mouse</value> <comment>Mouse as in the hardware peripheral</comment> </data> <data name="Oobe_MouseUtils_FindMyMouse_Description.Text" xml:space="preserve"> <value>Focus the mouse pointer pressing the Ctrl key twice, using a custom shortcut or shaking the mouse.</value> <comment>Mouse as in the hardware peripheral. Key as in a keyboard key</comment> </data> <data name="Oobe_MouseUtils_MouseHighlighter.Text" xml:space="preserve"> <value>Mouse Highlighter</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MouseHighlighter_Description.Text" xml:space="preserve"> <value>Use a keyboard shortcut to highlight left and right mouse clicks.</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MousePointerCrosshairs.Text" xml:space="preserve"> <value>Mouse Pointer Crosshairs</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MousePointerCrosshairs_Description.Text" xml:space="preserve"> <value>Draw crosshairs centered around the mouse pointer.</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MouseJump.Text" xml:space="preserve"> <value>Mouse Jump</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MouseJump_Description.Text" xml:space="preserve"> <value>Jump the mouse pointer quickly to anywhere on your desktop.</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Launch_Run.Content" xml:space="preserve"> <value>Launch PowerToys Run</value> </data> <data name="Launch_ShortcutGuide.Content" xml:space="preserve"> <value>Launch Shortcut Guide</value> </data> <data name="ColorPicker_ColorFormat_ToggleSwitch.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Show format in editor</value> </data> <data name="GeneralPage_Documentation.Text" xml:space="preserve"> <value>Documentation</value> </data> <data name="PowerLauncher_SearchList.PlaceholderText" xml:space="preserve"> <value>Search this list</value> </data> <data name="PowerLauncher_SearchList.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Search this list</value> </data> <data name="Awake.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="ColorPicker.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="General.SecondaryLinksHeader" xml:space="preserve"> <value>Related information</value> </data> <data name="ImageResizer.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="MouseUtils.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="PowerLauncher.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="PowerRename.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="EditTooltip.Text" xml:space="preserve"> <value>Edit</value> </data> <data name="RemoveTooltip.Text" xml:space="preserve"> <value>Remove</value> </data> <data name="Activation_Shortcut_Cancel" xml:space="preserve"> <value>Cancel</value> </data> <data name="Activation_Shortcut_Description" xml:space="preserve"> <value>Press a combination of keys to change this shortcut</value> </data> <data name="Activation_Shortcut_With_Disable_Description" xml:space="preserve"> <value>Press a combination of keys to change this shortcut. Right-click to remove the key combination, thereby deactivating the shortcut.</value> </data> <data name="Activation_Shortcut_Reset" xml:space="preserve"> <value>Reset</value> </data> <data name="Activation_Shortcut_Save" xml:space="preserve"> <value>Save</value> </data> <data name="Activation_Shortcut_Title" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="InvalidShortcut.Title" xml:space="preserve"> <value>Invalid shortcut</value> </data> <data name="InvalidShortcutWarningLabel.Text" xml:space="preserve"> <value>Only shortcuts that start with **Windows key**, **Ctrl**, **Alt** or **Shift** are valid.</value> <comment>The ** sequences are used for text formatting of the key names. Don't remove them on translation.</comment> </data> <data name="FancyZones_SpanZonesAcrossMonitors.Description" xml:space="preserve"> <value>All monitors must have the same DPI scaling and will be treated as one large combined rectangle which contains all monitors</value> </data> <data name="ImageResizer_DefaultSize_NewSizePrefix" xml:space="preserve"> <value>New size</value> <comment>First part of the default name of new sizes that can be added in PT's settings ui.</comment> </data> <data name="Awake_IntervalSettingsCard.Header" xml:space="preserve"> <value>Interval before returning to the previous awakeness state</value> </data> <data name="Awake_ExpirationSettingsExpander.Header" xml:space="preserve"> <value>End date and time</value> </data> <data name="MouseUtils.ModuleTitle" xml:space="preserve"> <value>Mouse utilities</value> </data> <data name="MouseUtils.ModuleDescription" xml:space="preserve"> <value>A collection of mouse utilities.</value> </data> <data name="MouseUtils_FindMyMouse.Header" xml:space="preserve"> <value>Find My Mouse</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_FindMyMouse.Description" xml:space="preserve"> <value>Find My Mouse highlights the position of the cursor when pressing the Ctrl key twice, using a custom shortcut or when shaking the mouse.</value> <comment>"Ctrl" is a keyboard key. "Find My Mouse" is the name of the utility</comment> </data> <data name="MouseUtils_Enable_FindMyMouse.Header" xml:space="preserve"> <value>Enable Find My Mouse</value> <comment>"Find My Mouse" is the name of the utility.</comment> </data> <data name="MouseUtils_FindMyMouse_ActivationMethod.Header" xml:space="preserve"> <value>Activation method</value> </data> <data name="MouseUtils_FindMyMouse_ActivationDoubleControlPress.Content" xml:space="preserve"> <value>Press Left Control twice</value> <comment>Left control is the physical key on the keyboard.</comment> </data> <data name="MouseUtils_FindMyMouse_ActivationShakeMouse.Content" xml:space="preserve"> <value>Shake mouse</value> <comment>Mouse is the hardware peripheral.</comment> </data> <data name="MouseUtils_FindMyMouse_ExcludedApps.Description" xml:space="preserve"> <value>Prevents module activation when an excluded application is the foreground application</value> </data> <data name="MouseUtils_FindMyMouse_ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="MouseUtils_FindMyMouse_ExcludedApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> </data> <data name="MouseUtils_Prevent_Activation_On_Game_Mode.Content" xml:space="preserve"> <value>Do not activate when Game Mode is on</value> <comment>"Game mode" is the Windows feature to prevent notification when playing a game.</comment> </data> <data name="MouseUtils_FindMyMouse_BackgroundColor.Header" xml:space="preserve"> <value>Background color</value> </data> <data name="MouseUtils_FindMyMouse_SpotlightColor.Header" xml:space="preserve"> <value>Spotlight color</value> </data> <data name="MouseUtils_FindMyMouse_OverlayOpacity.Header" xml:space="preserve"> <value>Overlay opacity (%)</value> </data> <data name="MouseUtils_FindMyMouse_SpotlightRadius.Header" xml:space="preserve"> <value>Spotlight radius (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_FindMyMouse_SpotlightInitialZoom.Header" xml:space="preserve"> <value>Spotlight initial zoom</value> </data> <data name="MouseUtils_FindMyMouse_SpotlightInitialZoom.Description" xml:space="preserve"> <value>Spotlight zoom factor at animation start</value> </data> <data name="MouseUtils_FindMyMouse_AnimationDurationMs.Header" xml:space="preserve"> <value>Animation duration (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_FindMyMouse_AnimationDurationMs.Description" xml:space="preserve"> <value>Time before the spotlight appears (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_FindMyMouse_AnimationDurationMs_Disabled.Message" xml:space="preserve"> <value>Animations are disabled by OS. See Settings &gt; Accessibility &gt; Visual effects</value> </data> <data name="MouseUtils_FindMyMouse_ShakingMinimumDistance.Header" xml:space="preserve"> <value>Shake minimum distance</value> </data> <data name="MouseUtils_FindMyMouse_ShakingMinimumDistance.Description" xml:space="preserve"> <value>The minimum distance for mouse shaking activation, for adjusting sensitivity</value> </data> <data name="MouseUtils_MouseHighlighter.Header" xml:space="preserve"> <value>Mouse Highlighter</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_MouseHighlighter.Description" xml:space="preserve"> <value>Mouse Highlighter mode will highlight mouse clicks.</value> <comment>"Mouse Highlighter" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_Enable_MouseHighlighter.Header" xml:space="preserve"> <value>Enable Mouse Highlighter</value> <comment>"Find My Mouse" is the name of the utility.</comment> </data> <data name="MouseUtils_MouseHighlighter_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MouseUtils_MouseHighlighter_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to turn on or off this mode</value> <comment>"Mouse Highlighter" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_MouseHighlighter_PrimaryButtonClickColor.Header" xml:space="preserve"> <value>Primary button highlight color</value> </data> <data name="MouseUtils_MouseHighlighter_SecondaryButtonClickColor.Header" xml:space="preserve"> <value>Secondary button highlight color</value> </data> <data name="MouseUtils_MouseHighlighter_HighlightRadius.Header" xml:space="preserve"> <value>Radius (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDelayMs.Header" xml:space="preserve"> <value>Fade delay (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDelayMs.Description" xml:space="preserve"> <value>Time before the highlight begins to fade (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDurationMs.Header" xml:space="preserve"> <value>Fade duration (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDurationMs.Description" xml:space="preserve"> <value>Duration of the disappear animation (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MousePointerCrosshairs.Header" xml:space="preserve"> <value>Mouse Pointer Crosshairs</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_MousePointerCrosshairs.Description" xml:space="preserve"> <value>Mouse Pointer Crosshairs draws crosshairs centered on the mouse pointer.</value> <comment>"Mouse Pointer Crosshairs" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_Enable_MousePointerCrosshairs.Header" xml:space="preserve"> <value>Enable Mouse Pointer Crosshairs</value> <comment>"Mouse Pointer Crosshairs" is the name of the utility.</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MouseUtils_MousePointerCrosshairs_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to show/hide the crosshairs</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsColor.Header" xml:space="preserve"> <value>Crosshairs color</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsOpacity.Header" xml:space="preserve"> <value>Crosshairs opacity (%)</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsRadius.Header" xml:space="preserve"> <value>Crosshairs center radius (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsThickness.Header" xml:space="preserve"> <value>Crosshairs thickness (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsBorderColor.Header" xml:space="preserve"> <value>Crosshairs border color</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsBorderSize.Header" xml:space="preserve"> <value>Crosshairs border size (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_IsCrosshairsFixedLengthEnabled.Header" xml:space="preserve"> <value>Fix crosshairs length</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsFixedLength.Header" xml:space="preserve"> <value>Crosshairs fixed length (px)</value> <comment>px = pixels</comment> </data> <data name="FancyZones_Radio_Custom_Colors.Content" xml:space="preserve"> <value>Custom colors</value> </data> <data name="FancyZones_Radio_Default_Theme.Content" xml:space="preserve"> <value>Windows default</value> </data> <data name="ColorModeHeader.Header" xml:space="preserve"> <value>App theme</value> </data> <data name="FancyZones_Zone_Appearance.Description" xml:space="preserve"> <value>Customize the way zones look</value> </data> <data name="FancyZones_Zone_Appearance.Header" xml:space="preserve"> <value>Zone appearance</value> </data> <data name="VideoConference_DeprecationWarning.Title" xml:space="preserve"> <value>VCM is moving into legacy mode (maintenance only).</value> </data> <data name="VideoConference_DeprecationWarningButton.Content" xml:space="preserve"> <value>Learn more</value> </data> <data name="VideoConference_RunAsAdminRequired.Title" xml:space="preserve"> <value>You need to run as administrator to modify these settings.</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_GCODE.Header" xml:space="preserve"> <value>Geometric Code</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_GCODE.Description" xml:space="preserve"> <value>Only .gcode files with embedded thumbnails are supported</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_GCODE.Header" xml:space="preserve"> <value>Geometric Code</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_GCODE.Description" xml:space="preserve"> <value>Only .gcode files with embedded thumbnails are supported</value> </data> <data name="FancyZones_NumberColor.Header" xml:space="preserve"> <value>Number color</value> </data> <data name="FancyZones_ShowZoneNumberCheckBoxControl.Content" xml:space="preserve"> <value>Show zone number</value> </data> <data name="ToggleSwitch.OffContent" xml:space="preserve"> <value>Off</value> <comment>The state of a ToggleSwitch when it's off</comment> </data> <data name="ToggleSwitch.OnContent" xml:space="preserve"> <value>On</value> <comment>The state of a ToggleSwitch when it's on</comment> </data> <data name="CropAndLock.ModuleDescription" xml:space="preserve"> <value>Crop And Lock allows you to crop a current application into a smaller window or just create a thumbnail. Focus the target window and press the shortcut to start cropping.</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="CropAndLock.ModuleTitle" xml:space="preserve"> <value>Crop And Lock </value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="CropAndLock_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="CropAndLock_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="Shell_CropAndLock.Content" xml:space="preserve"> <value>Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="LearnMore_CropAndLock.Text" xml:space="preserve"> <value>Learn more about Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="CropAndLock_ReparentActivation_Shortcut.Header" xml:space="preserve"> <value>Reparent shortcut</value> </data> <data name="CropAndLock_ReparentActivation_Shortcut.Description" xml:space="preserve"> <value>Shortcut to crop an application's window into a cropped window. This is experimental and can cause issues with some applications, since the cropped window will contain the original application window.</value> </data> <data name="CropAndLock_ThumbnailActivation_Shortcut.Header" xml:space="preserve"> <value>Thumbnail shortcut</value> </data> <data name="CropAndLock_ThumbnailActivation_Shortcut.Description" xml:space="preserve"> <value>Shortcut to crop and create a thumbnail of another window. The application isn't controllable through the thumbnail but it'll have less compatibility issues. </value> </data> <data name="CropAndLock.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="Oobe_CropAndLock.Title" xml:space="preserve"> <value>Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="Oobe_CropAndLock.Description" xml:space="preserve"> <value>Crop And Lock allows you to crop a current application into a smaller window or just create a thumbnail. Focus the target window and press the shortcut to start cropping.</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="Oobe_CropAndLock_HowToUse_Thumbnail.Text" xml:space="preserve"> <value>to crop and create a thumbnail of another window. The application isn't controllable through the thumbnail but it'll have less compatibility issues.</value> </data> <data name="Oobe_CropAndLock_HowToUse_Reparent.Text" xml:space="preserve"> <value>to crop an application's window into a cropped window. This is experimental and can cause issues with some applications, since the cropped window will contain the original application window.</value> </data> <data name="AlwaysOnTop.ModuleDescription" xml:space="preserve"> <value>Always On Top is a quick and easy way to pin windows on top.</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop.ModuleTitle" xml:space="preserve"> <value>Always On Top </value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="Peek_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="AlwaysOnTop_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_ExcludedApps.Description" xml:space="preserve"> <value>Excludes an application from pinning on top</value> </data> <data name="AlwaysOnTop_ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="AlwaysOnTop_ExcludedApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> </data> <data name="AlwaysOnTop_FrameColor.Header" xml:space="preserve"> <value>Color</value> </data> <data name="AlwaysOnTop_FrameEnabled.Header" xml:space="preserve"> <value>Show a border around the pinned window</value> </data> <data name="AlwaysOnTop_FrameThickness.Header" xml:space="preserve"> <value>Thickness (px)</value> <comment>px = pixels</comment> </data> <data name="AlwaysOnTop_Behavior_GroupSettings.Header" xml:space="preserve"> <value>Appearance &amp; behavior</value> </data> <data name="Shell_AlwaysOnTop.Content" xml:space="preserve"> <value>Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_GameMode.Content" xml:space="preserve"> <value>Do not activate when Game Mode is on</value> <comment>Game Mode is a Windows feature</comment> </data> <data name="AlwaysOnTop_SoundTitle.Header" xml:space="preserve"> <value>Sound</value> </data> <data name="AlwaysOnTop_Sound.Content" xml:space="preserve"> <value>Play a sound when pinning a window</value> </data> <data name="AlwaysOnTop_Behavior.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="LearnMore_AlwaysOnTop.Text" xml:space="preserve"> <value>Learn more about Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="AlwaysOnTop_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to pin or unpin an app window</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="Oobe_AlwaysOnTop.Title" xml:space="preserve"> <value>Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="Oobe_AlwaysOnTop.Description" xml:space="preserve"> <value>Always On Top improves your multitasking workflow by pinning an application window so it's always in front - even when focus changes to another window after that.</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="Oobe_AlwaysOnTop_HowToUse.Text" xml:space="preserve"> <value>to pin or unpin the selected window so it's always on top of all other windows.</value> </data> <data name="Oobe_AlwaysOnTop_TipsAndTricks.Text" xml:space="preserve"> <value>You can tweak the visual outline of the pinned windows in PowerToys settings.</value> </data> <data name="AlwaysOnTop_FrameColor_Mode.Header" xml:space="preserve"> <value>Color mode</value> </data> <data name="AlwaysOnTop_Radio_Custom_Color.Content" xml:space="preserve"> <value>Custom color</value> </data> <data name="AlwaysOnTop_Radio_Windows_Default.Content" xml:space="preserve"> <value>Windows default</value> </data> <data name="FileExplorerPreview.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Monaco_Wrap_Text.Content" xml:space="preserve"> <value>Wrap text</value> <comment>Feature on or off</comment> </data> <data name="FancyZones_AllowPopupWindowSnap.Description" xml:space="preserve"> <value>This setting can affect all popup windows including notifications</value> </data> <data name="FancyZones_AllowPopupWindowSnap.Header" xml:space="preserve"> <value>Allow popup windows snapping</value> </data> <data name="FancyZones_AllowChildWindowSnap.Content" xml:space="preserve"> <value>Allow child windows snapping</value> </data> <data name="Shell_WhatsNew.Content" xml:space="preserve"> <value>What's new</value> </data> <data name="Shell_Peek.Content" xml:space="preserve"> <value>Peek</value> <comment>Product name: Navigation view item name for Peek</comment> </data> <data name="Peek.ModuleTitle" xml:space="preserve"> <value>Peek</value> </data> <data name="Peek.ModuleDescription" xml:space="preserve"> <value>Peek is a quick and easy way to preview files. Select a file in File Explorer and press the shortcut to open the file preview.</value> </data> <data name="Peek_EnablePeek.Header" xml:space="preserve"> <value>Enable Peek</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="Peek_BehaviorHeader.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="Peek_AlwaysRunNotElevated.Header" xml:space="preserve"> <value>Always run not elevated, even when PowerToys is elevated</value> </data> <data name="Peek_AlwaysRunNotElevated.Description" xml:space="preserve"> <value>Tries to run Peek without elevated permissions, to fix access to network shares. You need to disable and re-enable Peek for changes to this value to take effect.</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="Peek_CloseAfterLosingFocus.Header" xml:space="preserve"> <value>Automatically close the Peek window after it loses focus</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="FancyZones_DisableRoundCornersOnWindowSnap.Content" xml:space="preserve"> <value>Disable round corners when window is snapped</value> </data> <data name="PowerLauncher_SearchQueryTuningEnabled.Description" xml:space="preserve"> <value>Fine tune results ordering</value> </data> <data name="PowerLauncher_SearchQueryTuningEnabled.Header" xml:space="preserve"> <value>Results order tuning</value> </data> <data name="PowerLauncher_SearchClickedItemWeight.Description" xml:space="preserve"> <value>Use a higher number to get selected results to rise faster. The default is 5, 0 to disable.</value> </data> <data name="PowerLauncher_SearchClickedItemWeight.Header" xml:space="preserve"> <value>Selected item weight</value> </data> <data name="PowerLauncher_WaitForSlowResults.Description" xml:space="preserve"> <value>Selecting this can help preselect the top, more relevant result, but at the risk of jumpiness</value> </data> <data name="PowerLauncher_WaitForSlowResults.Header" xml:space="preserve"> <value>Wait on slower plugin results before selecting top item in results</value> </data> <data name="PowerLauncher_PluginWeightBoost.Description" xml:space="preserve"> <value>Use a higher number to have this plugin's result show higher in the global results. Default is 0.</value> </data> <data name="PowerLauncher_PluginWeightBoost.Header" xml:space="preserve"> <value>Global sort order score modifier</value> </data> <data name="AlwaysOnTop_RoundCorners.Content" xml:space="preserve"> <value>Enable round corners</value> </data> <data name="LearnMore_QuickAccent.Text" xml:space="preserve"> <value>Learn more about Quick Accent</value> <comment>Quick Accent is a product name, do not loc</comment> </data> <data name="QuickAccent_EnableQuickAccent.Header" xml:space="preserve"> <value>Enable Quick Accent</value> </data> <data name="Shell_QuickAccent.Content" xml:space="preserve"> <value>Quick Accent</value> </data> <data name="QuickAccent.ModuleDescription" xml:space="preserve"> <value>Quick Accent is an alternative way to type accented characters, useful for when a keyboard doesn't support that specific accent. Activate by holding the key for the character you want to add an accent to, then press the activation key (space, left or right arrow keys) and an overlay to select accented characters will appear!</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent.ModuleTitle" xml:space="preserve"> <value>Quick Accent</value> </data> <data name="QuickAccent.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> </data> <data name="Oobe_QuickAccent.Description" xml:space="preserve"> <value>Quick Accent is an easy way to write letters with accents, like on a smartphone.</value> </data> <data name="Oobe_QuickAccent.Title" xml:space="preserve"> <value>Quick Accent</value> </data> <data name="Oobe_QuickAccent_HowToUse.Text" xml:space="preserve"> <value>Open **PowerToys Settings** and enable Quick Accent. While holding the key for the character you want to add an accent to, press the Activation Key and an overlay to select the accented character will appear.</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="QuickAccent_Activation_Shortcut.Header" xml:space="preserve"> <value>Activation key</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent_Activation_Shortcut.Description" xml:space="preserve"> <value>Press this key after holding down the target letter</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent_Activation_Key_Arrows.Content" xml:space="preserve"> <value>Left/Right Arrow</value> <comment>Left/Right arrow keyboard keys</comment> </data> <data name="QuickAccent_Activation_Key_Space.Content" xml:space="preserve"> <value>Space</value> <comment>Space is the space keyboard key</comment> </data> <data name="QuickAccent_Activation_Key_Either.Content" xml:space="preserve"> <value>Left, Right or Space</value> <comment>All are keys on a keyboard</comment> </data> <data name="QuickAccent_Toolbar.Header" xml:space="preserve"> <value>Toolbar</value> </data> <data name="QuickAccent_ToolbarPosition.Header" xml:space="preserve"> <value>Toolbar position</value> </data> <data name="QuickAccent_ToolbarPosition_TopCenter.Content" xml:space="preserve"> <value>Top center</value> </data> <data name="QuickAccent_ToolbarPosition_TopLeftCorner.Content" xml:space="preserve"> <value>Top left corner</value> </data> <data name="QuickAccent_ToolbarPosition_TopRightCorner.Content" xml:space="preserve"> <value>Top right corner</value> </data> <data name="QuickAccent_ToolbarPosition_BottomLeftCorner.Content" xml:space="preserve"> <value>Bottom left corner</value> </data> <data name="QuickAccent_ToolbarPosition_BottomCenter.Content" xml:space="preserve"> <value>Bottom center</value> </data> <data name="QuickAccent_ToolbarPosition_BottomRightCorner.Content" xml:space="preserve"> <value>Bottom right corner</value> </data> <data name="QuickAccent_ToolbarPosition_Center.Content" xml:space="preserve"> <value>Center</value> </data> <data name="QuickAccent_ToolbarPosition_Left.Content" xml:space="preserve"> <value>Left</value> </data> <data name="QuickAccent_ToolbarPosition_Right.Content" xml:space="preserve"> <value>Right</value> </data> <data name="QuickAccent_Behavior.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="QuickAccent_InputTimeMs.Header" xml:space="preserve"> <value>Input delay (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="QuickAccent_InputTimeMs.Description" xml:space="preserve"> <value>Hold the key down for this much time to make the accent menu appear (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="QuickAccent_ExcludedApps.Description" xml:space="preserve"> <value>Prevents module activation if a foreground application is excluded. Add one application name per line.</value> </data> <data name="QuickAccent_ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="QuickAccent_ExcludedApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: Teams.exe</value> </data> <data name="LearnMore_TextExtractor.Text" xml:space="preserve"> <value>Learn more about Text Extractor</value> </data> <data name="TextExtractor_Cancel" xml:space="preserve"> <value>cancel</value> </data> <data name="General_SettingsBackupAndRestore_NothingToBackup" xml:space="preserve"> <value>A new backup was not created because no settings have been changed since last backup.</value> </data> <data name="General_SettingsBackupAndRestore_NoBackupFound" xml:space="preserve"> <value>No backup found</value> </data> <data name="General_SettingsBackupAndRestore_FailedToParseTime" xml:space="preserve"> <value>Failed to parse time</value> </data> <data name="General_SettingsBackupAndRestore_UnknownBackupTime" xml:space="preserve"> <value>Unknown</value> </data> <data name="General_SettingsBackupAndRestore_UnknownBackupSource" xml:space="preserve"> <value>Unknown</value> </data> <data name="General_SettingsBackupAndRestore_ThisMachine" xml:space="preserve"> <value>This computer</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsMatch" xml:space="preserve"> <value>Current settings match</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsStatusAt" xml:space="preserve"> <value>at</value> <comment>E.g., Food was served 'at' noon.</comment> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsDiffer" xml:space="preserve"> <value>Current settings differ</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsNoChecked" xml:space="preserve"> <value>Checking...</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsUnknown" xml:space="preserve"> <value>Unknown</value> </data> <data name="General_SettingsBackupAndRestore_NeverRestored" xml:space="preserve"> <value>Never restored</value> </data> <data name="General_SettingsBackupAndRestore_NothingToRestore" xml:space="preserve"> <value>Nothing to restore.</value> </data> <data name="General_SettingsBackupAndRestore_NoSettingsFilesFound" xml:space="preserve"> <value>No settings files found.</value> </data> <data name="General_SettingsBackupAndRestore_BackupError" xml:space="preserve"> <value>There was an error. Try another backup location.</value> </data> <data name="General_SettingsBackupAndRestore_SettingsFormatError" xml:space="preserve"> <value>There was an error in the settings format. Please check the settings file:</value> </data> <data name="General_SettingsBackupAndRestore_BackupComplete" xml:space="preserve"> <value>Backup completed.</value> </data> <data name="General_SettingsBackupAndRestore_NoBackupSyncPath" xml:space="preserve"> <value>No backup location selected.</value> </data> <data name="General_SettingsBackupAndRestore_NoBackupsFound" xml:space="preserve"> <value>No backups found to restore.</value> </data> <data name="General_SettingsBackupAndRestore_InvalidBackupLocation" xml:space="preserve"> <value>Invalid backup location.</value> </data> <data name="TextExtractor.ModuleDescription" xml:space="preserve"> <value>Text Extractor is a convenient way to copy text from anywhere on screen</value> </data> <data name="TextExtractor.ModuleTitle" xml:space="preserve"> <value>Text Extractor</value> </data> <data name="TextExtractor_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Text Extractor</value> </data> <data name="TextExtractor_SupportedLanguages.Title" xml:space="preserve"> <value>Text Extractor can only recognize languages that have the OCR pack installed.</value> </data> <data name="TextExtractor_SupportedLanguages_Link.Content" xml:space="preserve"> <value>Learn more about supported languages</value> </data> <data name="Shell_TextExtractor.Content" xml:space="preserve"> <value>Text Extractor</value> </data> <data name="Launch_TextExtractor.Content" xml:space="preserve"> <value>Launch Text Extractor</value> </data> <data name="Oobe_TextExtractor.Title" xml:space="preserve"> <value>Text Extractor</value> </data> <data name="Oobe_TextExtractor_HowToUse.Text" xml:space="preserve"> <value>to open Text Extractor and then selecting a region to copy the text from.</value> </data> <data name="Oobe_TextExtractor_TipsAndTricks.Text" xml:space="preserve"> <value>Hold the shift key to move the selection region around.</value> </data> <data name="TextExtractor.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> </data> <data name="Oobe_TextExtractor.Description" xml:space="preserve"> <value>Text Extractor works like Snipping Tool, but copies the text out of the selected region using OCR and puts it on the clipboard.</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Monaco_Try_Format.Description" xml:space="preserve"> <value>Applies to json and xml. Files remain unchanged.</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Monaco_Try_Format.Header" xml:space="preserve"> <value>Try to format the source for preview</value> </data> <data name="Run_ConflictingKeywordInfo.Title" xml:space="preserve"> <value>Some characters and phrases may conflict with global queries of other plugins if you use them as activation command.</value> </data> <data name="Run_ConflictingKeywordInfo_Link.Content" xml:space="preserve"> <value>Learn more about conflicting activation commands</value> </data> <data name="MeasureTool_ContinuousCapture_Information.Title" xml:space="preserve"> <value>The continuous capture mode will consume more resources when in use. Also, measurements will be excluded from screenshots and screen capture.</value> <comment>pointer as in mouse pointer. Resources refer to things like CPU, GPU, RAM</comment> </data> <data name="QuickAccent_Description_Indicator.Header" xml:space="preserve"> <value>Show the Unicode code and name of the currently selected character</value> </data> <data name="QuickAccent_SortByUsageFrequency_Indicator.Header" xml:space="preserve"> <value>Sort characters by usage frequency</value> </data> <data name="QuickAccent_SortByUsageFrequency_Indicator.Description" xml:space="preserve"> <value>Track characters usage frequency and sort them accordingly</value> </data> <data name="QuickAccent_StartSelectionFromTheLeft_Indicator.Header" xml:space="preserve"> <value>Start selection from the left</value> </data> <data name="QuickAccent_StartSelectionFromTheLeft_Indicator.Description" xml:space="preserve"> <value>Start selection from the leftmost character for all activation keys, including left and right arrows</value> </data> <data name="QuickAccent_DisableFullscreen.Header" xml:space="preserve"> <value>Disable when Game Mode is On</value> </data> <data name="QuickAccent_Language.Header" xml:space="preserve"> <value>Characters</value> </data> <data name="QuickAccent_SelectedLanguage.Header" xml:space="preserve"> <value>Choose a character set</value> </data> <data name="QuickAccent_SelectedLanguage.Description" xml:space="preserve"> <value>Show only accented characters common to the selected set</value> </data> <data name="QuickAccent_SelectedLanguage_All.Content" xml:space="preserve"> <value>All available</value> </data> <data name="QuickAccent_SelectedLanguage_Catalan.Content" xml:space="preserve"> <value>Catalan</value> </data> <data name="QuickAccent_SelectedLanguage_Currency.Content" xml:space="preserve"> <value>Currency</value> </data> <data name="QuickAccent_SelectedLanguage_Croatian.Content" xml:space="preserve"> <value>Croatian</value> </data> <data name="QuickAccent_SelectedLanguage_Czech.Content" xml:space="preserve"> <value>Czech</value> </data> <data name="QuickAccent_SelectedLanguage_Gaeilge.Content" xml:space="preserve"> <value>Gaeilge</value> <comment>Gaelic language spoken in Ireland</comment> </data> <data name="QuickAccent_SelectedLanguage_Gaidhlig.Content" xml:space="preserve"> <value>Gàidhlig</value> <comment>Scottish Gaelic</comment> </data> <data name="QuickAccent_SelectedLanguage_German.Content" xml:space="preserve"> <value>German</value> </data> <data name="QuickAccent_SelectedLanguage_Hebrew.Content" xml:space="preserve"> <value>Hebrew</value> </data> <data name="QuickAccent_SelectedLanguage_French.Content" xml:space="preserve"> <value>French</value> </data> <data name="QuickAccent_SelectedLanguage_Estonian.Content" xml:space="preserve"> <value>Estonian</value> </data> <data name="QuickAccent_SelectedLanguage_Lithuanian.Content" xml:space="preserve"> <value>Lithuanian</value> </data> <data name="QuickAccent_SelectedLanguage_Macedonian.Content" xml:space="preserve"> <value>Macedonian</value> </data> <data name="QuickAccent_SelectedLanguage_Maori.Content" xml:space="preserve"> <value>Maori</value> </data> <data name="QuickAccent_SelectedLanguage_Dutch.Content" xml:space="preserve"> <value>Dutch</value> </data> <data name="QuickAccent_SelectedLanguage_Norwegian.Content" xml:space="preserve"> <value>Norwegian</value> </data> <data name="QuickAccent_SelectedLanguage_Pinyin.Content" xml:space="preserve"> <value>Pinyin</value> </data> <data name="QuickAccent_SelectedLanguage_Polish.Content" xml:space="preserve"> <value>Polish</value> </data> <data name="QuickAccent_SelectedLanguage_Portuguese.Content" xml:space="preserve"> <value>Portuguese</value> </data> <data name="QuickAccent_SelectedLanguage_Slovakian.Content" xml:space="preserve"> <value>Slovakian</value> </data> <data name="QuickAccent_SelectedLanguage_Spanish.Content" xml:space="preserve"> <value>Spanish</value> </data> <data name="QuickAccent_SelectedLanguage_Swedish.Content" xml:space="preserve"> <value>Swedish</value> </data> <data name="QuickAccent_SelectedLanguage_Turkish.Content" xml:space="preserve"> <value>Turkish</value> </data> <data name="QuickAccent_SelectedLanguage_Icelandic.Content" xml:space="preserve"> <value>Icelandic</value> </data> <data name="QuickAccent_SelectedLanguage_Romanian.Content" xml:space="preserve"> <value>Romanian</value> </data> <data name="QuickAccent_SelectedLanguage_Serbian.Content" xml:space="preserve"> <value>Serbian</value> </data> <data name="QuickAccent_SelectedLanguage_Hungarian.Content" xml:space="preserve"> <value>Hungarian</value> </data> <data name="QuickAccent_SelectedLanguage_Italian.Content" xml:space="preserve"> <value>Italian</value> </data> <data name="QuickAccent_SelectedLanguage_Kurdish.Content" xml:space="preserve"> <value>Kurdish</value> </data> <data name="QuickAccent_SelectedLanguage_Welsh.Content" xml:space="preserve"> <value>Welsh</value> </data> <data name="Hosts.ModuleDescription" xml:space="preserve"> <value>Quick and simple utility for managing hosts file.</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Hosts.ModuleTitle" xml:space="preserve"> <value>Hosts File Editor</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Shell_Hosts.Content" xml:space="preserve"> <value>Hosts File Editor</value> <comment>Products name: Navigation view item name for Hosts File Editor</comment> </data> <data name="Hosts_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Hosts_Toggle_ShowStartupWarning.Header" xml:space="preserve"> <value>Show a warning at startup</value> </data> <data name="Hosts_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="Hosts_LaunchButtonControl.Description" xml:space="preserve"> <value>Manage your hosts file</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Hosts_LaunchButtonControl.Header" xml:space="preserve"> <value>Launch Host File Editor</value> <comment>"Host File Editor" is a product name</comment> </data> <data name="Hosts_LaunchButton_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Launch Host File Editor</value> <comment>"Host File Editor" is a product name</comment> </data> <data name="Hosts_AdditionalLinesPosition.Header" xml:space="preserve"> <value>Position of additional content</value> </data> <data name="Hosts_AdditionalLinesPosition_Bottom.Content" xml:space="preserve"> <value>Bottom</value> </data> <data name="Hosts_AdditionalLinesPosition_Top.Content" xml:space="preserve"> <value>Top</value> </data> <data name="Hosts_Behavior_GroupSettings.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="Launch_Hosts.Content" xml:space="preserve"> <value>Launch Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="LearnMore_Hosts.Text" xml:space="preserve"> <value>Learn more about Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Oobe_Hosts.Description" xml:space="preserve"> <value>Hosts File Editor is a quick and simple utility for managing hosts file.</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Oobe_Hosts.Title" xml:space="preserve"> <value>Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Hosts_Toggle_LaunchAdministrator.Description" xml:space="preserve"> <value>Needs to be launched as administrator in order to make changes to the hosts file</value> </data> <data name="Hosts_Toggle_LaunchAdministrator.Header" xml:space="preserve"> <value>Launch as administrator</value> </data> <data name="ShortcutGuide_PressTimeForTaskbarIconShortcuts.Header" xml:space="preserve"> <value>Press duration before showing taskbar icon shortcuts (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="FileLocksmith.ModuleDescription" xml:space="preserve"> <value>A Windows shell extension to find out which processes are using the selected files and directories.</value> </data> <data name="FileLocksmith.ModuleTitle" xml:space="preserve"> <value>File Locksmith</value> </data> <data name="Shell_FileLocksmith.Content" xml:space="preserve"> <value>File Locksmith</value> <comment>Product name: Navigation view item name for FileLocksmith</comment> </data> <data name="FileLocksmith_Enable_FileLocksmith.Header" xml:space="preserve"> <value>Enable File Locksmith</value> <comment>File Locksmith is the name of the utility</comment> </data> <data name="FileLocksmith_Toggle_StandardContextMenu.Content" xml:space="preserve"> <value>Default and extended context menu</value> </data> <data name="FileLocksmith_Toggle_ExtendedContextMenu.Content" xml:space="preserve"> <value>Extended context menu only</value> </data> <data name="FileLocksmith_Toggle_ContextMenu.Header" xml:space="preserve"> <value>Show File Locksmith in</value> </data> <data name="FileLocksmith_ShellIntegration.Header" xml:space="preserve"> <value>Shell integration</value> <comment>This refers to directly integrating in with Windows</comment> </data> <data name="GPO_IsSettingForced.Title" xml:space="preserve"> <value>The system administrator is forcing this setting.</value> </data> <data name="Hosts_AdditionalLinesPosition.Description" xml:space="preserve"> <value>Additional content includes the file header and lines that can't parse</value> </data> <data name="TextExtractor_Languages.Header" xml:space="preserve"> <value>Preferred language</value> </data> <data name="Alternate_OOBE_AlwaysOnTop_Description.Text" xml:space="preserve"> <value>Pin a window so that:</value> </data> <data name="Alternate_OOBE_AlwaysOnTop_Title.Text" xml:space="preserve"> <value>Always On Top</value> </data> <data name="Alternate_OOBE_ColorPicker_Description.Text" xml:space="preserve"> <value>To pick a color:</value> </data> <data name="Alternate_OOBE_ColorPicker_Title.Text" xml:space="preserve"> <value>Color Picker</value> </data> <data name="Alternate_OOBE_Description.Text" xml:space="preserve"> <value>Here are a few shortcuts to get you started:</value> </data> <data name="Alternate_OOBE_FancyZones_Description.Text" xml:space="preserve"> <value>To open the FancyZones editor, press:</value> </data> <data name="Alternate_OOBE_FancyZones_Title.Text" xml:space="preserve"> <value>FancyZones</value> </data> <data name="Alternate_OOBE_Run_Description.Text" xml:space="preserve"> <value>Get access to your files and more:</value> </data> <data name="Alternate_OOBE_Run_Title.Text" xml:space="preserve"> <value>PowerToys Run</value> </data> <data name="General_Experimentation.Header" xml:space="preserve"> <value>Experimentation</value> </data> <data name="GeneralPage_EnableExperimentation.Description" xml:space="preserve"> <value>Note: Only Windows Insider builds may be selected for experimentation</value> </data> <data name="GeneralPage_EnableExperimentation.Header" xml:space="preserve"> <value>Allow experimentation with new features</value> </data> <data name="GPO_ExperimentationIsDisallowed.Title" xml:space="preserve"> <value>The system administrator has disabled experimentation.</value> </data> <data name="Shell_PastePlain.Content" xml:space="preserve"> <value>Paste As Plain Text</value> <comment>Product name: Navigation view item name for Paste as Plain Text</comment> </data> <data name="PastePlain.ModuleDescription" xml:space="preserve"> <value>Paste As Plain Text is a quick shortcut for pasting the text contents of your clipboard without formatting. Note: the formatted text in the clipboard is replaced with the unformatted text.</value> </data> <data name="PastePlain.ModuleTitle" xml:space="preserve"> <value>Paste As Plain Text</value> </data> <data name="PastePlain_Cancel" xml:space="preserve"> <value>cancel</value> </data> <data name="PastePlain_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Paste As Plain Text</value> </data> <data name="Oobe_PastePlain.Description" xml:space="preserve"> <value>Paste As Plain Text strips rich formatting from your clipboard data and pastes it as non-formatted text.</value> </data> <data name="Oobe_PastePlain.Title" xml:space="preserve"> <value>Paste As Plain Text</value> </data> <data name="Oobe_PastePlain_HowToUse.Text" xml:space="preserve"> <value>to paste your clipboard data as plain text. Note: this will replace the formatted text in your clipboard with the plain text.</value> </data> <data name="AllAppsTxt.Text" xml:space="preserve"> <value>All apps</value> </data> <data name="BackBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Back</value> </data> <data name="BackLabel.Text" xml:space="preserve"> <value>Back</value> </data> <data name="BugReportBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Bug report</value> </data> <data name="BugReportTooltip.Text" xml:space="preserve"> <value>Bug report</value> </data> <data name="DocsBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Documentation</value> </data> <data name="DocsTooltip.Text" xml:space="preserve"> <value>Documentation</value> </data> <data name="FZEditorString" xml:space="preserve"> <value>FancyZones Editor</value> <comment>Do not localize this string</comment> </data> <data name="MoreBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>More</value> </data> <data name="MoreLabel.Text" xml:space="preserve"> <value>More</value> </data> <data name="SettingsBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Settings</value> </data> <data name="SettingsTooltip.Text" xml:space="preserve"> <value>Settings</value> </data> <data name="ShortcutsTxt.Text" xml:space="preserve"> <value>Shortcuts</value> </data> <data name="UpdateAvailable.Title" xml:space="preserve"> <value>Update available</value> </data> <data name="FileExplorerPreview_Toggle_Monaco_Max_File_Size.Header" xml:space="preserve"> <value>Maximum file size to preview</value> <comment>Size refers to the disk space used by a file</comment> </data> <data name="FileExplorerPreview_Toggle_Monaco_Max_File_Size.Description" xml:space="preserve"> <value>The maximum size, in kilobytes, for files to be displayed. This is a safety mechanism to prevent loading large files into RAM.</value> <comment>"RAM" refers to random access memory; "size" refers to disk space; "bytes" refer to the measurement unit</comment> </data> <data name="RegistryPreview.ModuleDescription" xml:space="preserve"> <value>A quick little utility to visualize and edit complex Windows Registry files.</value> </data> <data name="RegistryPreview.ModuleTitle" xml:space="preserve"> <value>Registry Preview</value> </data> <data name="Shell_RegistryPreview.Content" xml:space="preserve"> <value>Registry Preview</value> <comment>Product name: Navigation view item name for Registry Preview</comment> </data> <data name="RegistryPreview_Enable_RegistryPreview.Header" xml:space="preserve"> <value>Enable Registry Preview</value> <comment>Registry Preview is the name of the utility</comment> </data> <data name="Oobe_RegistryPreview_HowToUse.Text" xml:space="preserve"> <value>In File Explorer, right-click a .REG file and select **Preview** from the context menu.</value> </data> <data name="Oobe_RegistryPreview_TipsAndTricks.Text" xml:space="preserve"> <value>You can preview or edit Registry files in File Explorer or by opening the app from the PowerToys launcher.</value> </data> <data name="Oobe_RegistryPreview.Description" xml:space="preserve"> <value>Registry Preview is a quick little utility to visualize and edit complex Windows Registry files.</value> </data> <data name="Oobe_RegistryPreview.Title" xml:space="preserve"> <value>Registry Preview</value> <comment>Do not localize this string</comment> </data> <data name="LearnMore_RegistryPreview.Text" xml:space="preserve"> <value>Learn more about Registry Preview</value> <comment>Registry Preview is a product name, do not loc</comment> </data> <data name="Launch_RegistryPreview.Content" xml:space="preserve"> <value>Launch Registry Preview</value> <comment>"Registry Preview" is the name of the utility</comment> </data> <data name="MouseUtils_MouseJump.Description" xml:space="preserve"> <value>Quickly move the mouse pointer long distances.</value> <comment>"Mouse Jump" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_MouseJump.Header" xml:space="preserve"> <value>Mouse Jump</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_MouseJump_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to turn on or off this mode</value> </data> <data name="MouseUtils_MouseJump_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MouseUtils_Enable_MouseJump.Header" xml:space="preserve"> <value>Enable Mouse Jump</value> <comment>"Mouse Jump" is the name of the utility.</comment> </data> <data name="GPO_AutoDownloadUpdatesIsDisabled.Title" xml:space="preserve"> <value>The system administrator has disabled the automatic download of updates.</value> </data> <data name="Hosts_Toggle_LoopbackDuplicates.Description" xml:space="preserve"> <value>127.0.0.1, ::1, ...</value> <comment>"127.0.0.1 and ::1" are well known loopback addresses, do not loc</comment> </data> <data name="Hosts_Toggle_LoopbackDuplicates.Header" xml:space="preserve"> <value>Consider loopback addresses as duplicates</value> </data> <data name="RegistryPreview_Launch_GroupSettings.Header" xml:space="preserve"> <value>Launch</value> </data> <data name="RegistryPreview_LaunchButton_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Launch Registry Preview</value> </data> <data name="RegistryPreview_LaunchButtonControl.Header" xml:space="preserve"> <value>Launch Registry Preview</value> </data> <data name="RegistryPreview_DefaultRegApp.Header" xml:space="preserve"> <value>Default app</value> </data> <data name="RegistryPreview_DefaultRegApp.Description" xml:space="preserve"> <value>Make Registry Preview default app for opening .reg files</value> <comment>Registry Preview is app name. Do not localize.</comment> </data> <data name="PastePlain_ShortcutWarning.Title" xml:space="preserve"> <value>Using this shortcut may prevent non-text paste actions (e.g. images, files) or built-in paste plain text actions in other applications from functioning.</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize.Header" xml:space="preserve"> <value>Thumbnail Size</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Description_Prefix.Text" xml:space="preserve"> <value>Constrain thumbnail image size to a maximum of</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Description_Suffix.Text" xml:space="preserve"> <value>pixels</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Edit_Height.Header" xml:space="preserve"> <value>Maximum height (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Edit_Width.Header" xml:space="preserve"> <value>Maximum width (px)</value> <comment>px = pixels</comment> </data> <data name="Oobe_Peek.Description" xml:space="preserve"> <value>A lightning fast file preview feature for Windows.</value> </data> <data name="Oobe_Peek.Title" xml:space="preserve"> <value>Peek</value> </data> <data name="Oobe_Peek_HowToUse.Text" xml:space="preserve"> <value>to preview the file that's currently selected in File Explorer.</value> </data> <data name="MWB_PCNameLabel.PlaceholderText" xml:space="preserve"> <value>Device name</value> </data> <data name="MWB_SecurityKeyLabel.PlaceholderText" xml:space="preserve"> <value>Security key</value> </data> <data name="Hosts_Encoding.Description" xml:space="preserve"> <value>Choose the encoding of the hosts file</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Hosts_Encoding.Header" xml:space="preserve"> <value>Encoding</value> </data> <data name="Hosts_Encoding_Utf8.Content" xml:space="preserve"> <value>UTF-8</value> </data> <data name="Hosts_Encoding_Utf8Bom.Content" xml:space="preserve"> <value>UTF-8 with BOM</value> </data> <data name="MouseUtils_MouseHighlighter_AlwaysColor.Header" xml:space="preserve"> <value>Always highlight color</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsAutoHide.Content" xml:space="preserve"> <value>Automatically hide crosshairs when the mouse pointer is hidden</value> </data> <data name="MouseUtils_AutoActivate.Content" xml:space="preserve"> <value>Automatically activate on utility startup</value> </data> <data name="Run_FindMorePlugins.Text" xml:space="preserve"> <value>Find more plugins</value> </data> <data name="Run_PluginUseFindMorePlugins.Content" xml:space="preserve"> <value>Find more plugins</value> </data> <data name="Run_SomePluginsAreGpoManaged.Title" xml:space="preserve"> <value>The system administrator is managing the enabled state of some plugins.</value> </data> <data name="AlwaysOnTop_FrameOpacity.Header" xml:space="preserve"> <value>Opacity (%)</value> </data> <data name="MouseUtils_FindMyMouse_ActivationCustomizedShortcut.Content" xml:space="preserve"> <value>Custom shortcut</value> </data> <data name="MouseUtils_FindMyMouse_ActivationDoubleRightControlPress.Content" xml:space="preserve"> <value>Press Right Control twice</value> <comment>Right control is the physical key on the keyboard.</comment> </data> <data name="MouseUtils_FindMyMouse_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to turn on or off this mode</value> </data> <data name="MouseUtils_FindMyMouse_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="SettingsWindow_AdminTitle" xml:space="preserve"> <value>Administrator: PowerToys Settings</value> <comment>Title of the settings window when running as administrator</comment> </data> </root>
<?xml version="1.0" encoding="utf-8"?> <root> <!-- Microsoft ResX Schema Version 2.0 The primary goals of this format is to allow a simple XML format that is mostly human readable. The generation and parsing of the various data types are done through the TypeConverter classes associated with the data types. Example: ... ado.net/XML headers & schema ... <resheader name="resmimetype">text/microsoft-resx</resheader> <resheader name="version">2.0</resheader> <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader> <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader> <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data> <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data> <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64"> <value>[base64 mime encoded serialized .NET Framework object]</value> </data> <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value> <comment>This is a comment</comment> </data> There are any number of "resheader" rows that contain simple name/value pairs. Each data row contains a name, and value. The row also contains a type or mimetype. Type corresponds to a .NET class that support text/value conversion through the TypeConverter architecture. Classes that don't support this are serialized and stored with the mimetype set. The mimetype is used for serialized objects, and tells the ResXResourceReader how to depersist the object. This is currently not extensible. For a given mimetype the value must be set accordingly: Note - application/x-microsoft.net.object.binary.base64 is the format that the ResXResourceWriter will generate, however the reader can read any of the formats listed below. mimetype: application/x-microsoft.net.object.binary.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.soap.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Soap.SoapFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.bytearray.base64 value : The object must be serialized into a byte array : using a System.ComponentModel.TypeConverter : and then encoded with base64 encoding. --> <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> <xsd:import namespace="http://www.w3.org/XML/1998/namespace" /> <xsd:element name="root" msdata:IsDataSet="true"> <xsd:complexType> <xsd:choice maxOccurs="unbounded"> <xsd:element name="metadata"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" /> </xsd:sequence> <xsd:attribute name="name" use="required" type="xsd:string" /> <xsd:attribute name="type" type="xsd:string" /> <xsd:attribute name="mimetype" type="xsd:string" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="assembly"> <xsd:complexType> <xsd:attribute name="alias" type="xsd:string" /> <xsd:attribute name="name" type="xsd:string" /> </xsd:complexType> </xsd:element> <xsd:element name="data"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" /> <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="resheader"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" /> </xsd:complexType> </xsd:element> </xsd:choice> </xsd:complexType> </xsd:element> </xsd:schema> <resheader name="resmimetype"> <value>text/microsoft-resx</value> </resheader> <resheader name="version"> <value>2.0</value> </resheader> <resheader name="reader"> <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <resheader name="writer"> <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <data name="Attribution_Rooler.Text" xml:space="preserve"> <value>Inspired by Rooler</value> <comment>Rooler is a name of the tool.</comment> </data> <data name="Shell_VideoConference.Content" xml:space="preserve"> <value>Video Conference Mute</value> <comment>Navigation view item name for Video Conference</comment> </data> <data name="Shell_MeasureTool.Content" xml:space="preserve"> <value>Screen Ruler</value> <comment>Product name: Navigation view item name for Screen Ruler</comment> </data> <data name="MeasureTool.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="MeasureTool.ModuleDescription" xml:space="preserve"> <value>Screen Ruler is a quick and easy way to measure pixels on your screen.</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool.ModuleTitle" xml:space="preserve"> <value>Screen Ruler</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool_ActivationSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="MeasureTool_Settings.Header" xml:space="preserve"> <value>Behavior</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MeasureTool_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to bring up the command bar</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool_DefaultMeasureStyle.Header" xml:space="preserve"> <value>Default measure style</value> </data> <data name="MeasureTool_DefaultMeasureStyle.Description" xml:space="preserve"> <value>The utility will start having the selected style activated</value> </data> <data name="MeasureTool_DefaultMeasureStyle_None.Content" xml:space="preserve"> <value>None</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Bounds.Content" xml:space="preserve"> <value>Bounds</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Spacing.Content" xml:space="preserve"> <value>Spacing</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Horizontal_Spacing.Content" xml:space="preserve"> <value>Horizontal spacing</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Vertical_Spacing.Content" xml:space="preserve"> <value>Vertical spacing</value> </data> <data name="MeasureTool_UnitsOfMeasure.Header" xml:space="preserve"> <value>Units of measurement</value> </data> <data name="MeasureTool_UnitsOfMeasure_Pixels.Content" xml:space="preserve"> <value>Pixels</value> </data> <data name="MeasureTool_UnitsOfMeasure_Inches.Content" xml:space="preserve"> <value>Inches</value> </data> <data name="MeasureTool_UnitsOfMeasure_Centimeters.Content" xml:space="preserve"> <value>Centimeters</value> </data> <data name="MeasureTool_PixelTolerance.Header" xml:space="preserve"> <value>Pixel tolerance for edge detection</value> </data> <data name="MeasureTool_MeasureCrossColor.Header" xml:space="preserve"> <value>Line color</value> </data> <data name="MeasureTool_ContinuousCapture.Header" xml:space="preserve"> <value>Capture screen continuously during measuring</value> </data> <data name="MeasureTool_ContinuousCapture.Description" xml:space="preserve"> <value>Refresh screen contexts in real-time instead of making a screenshot once</value> </data> <data name="MeasureTool_PerColorChannelEdgeDetection.Header" xml:space="preserve"> <value>Per color channel edge detection</value> </data> <data name="MeasureTool_PerColorChannelEdgeDetection.Description" xml:space="preserve"> <value>If enabled, test that all color channels are within a tolerance distance from each other. Otherwise, check that the sum of all color channels differences is smaller than the tolerance.</value> </data> <data name="MeasureTool_DrawFeetOnCross.Header" xml:space="preserve"> <value>Draw feet on cross</value> </data> <data name="MeasureTool_DrawFeetOnCross.Description" xml:space="preserve"> <value>Adds feet to the end of cross lines</value> </data> <data name="MeasureTool_EnableMeasureTool.Header" xml:space="preserve"> <value>Enable Screen Ruler</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MouseWithoutBorders_ActivationSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="MouseWithoutBorders_DeviceLayoutSettings.Header" xml:space="preserve"> <value>Device layout</value> </data> <data name="MouseWithoutBorders_DeviceLayoutSettings.Description" xml:space="preserve"> <value>Drag and drop a machine to rearrange the order.</value> </data> <data name="MouseWithoutBorders_CannotDragDropAsAdmin.Title" xml:space="preserve"> <value>It is not possible to use drag and drop while running PowerToys elevated. As a workaround, please restart PowerToys without elevation to edit the device layout.</value> </data> <data name="MouseWithoutBorders_KeySettings.Header" xml:space="preserve"> <value>Encryption key</value> </data> <data name="MouseWithoutBorders_SecurityKey.Header" xml:space="preserve"> <value>Security key</value> </data> <data name="MouseWithoutBorders_SecurityKey.Description" xml:space="preserve"> <value>The key must be auto generated in one machine by clicking on New Key, then typed in other machines</value> </data> <data name="MouseWithoutBorders_NewKey.Content" xml:space="preserve"> <value>New key</value> </data> <data name="MouseWithoutBorders_CopyMachineName.Text" xml:space="preserve"> <value>Copy to clipboard</value> </data> <data name="MouseWithoutBorders_ReconnectButton.Text" xml:space="preserve"> <value>Refresh connections</value> </data> <data name="MouseWithoutBorders_ReconnectTooltip.Text" xml:space="preserve"> <value>Reestablishes connections with other devices if you are experiencing issues.</value> </data> <data name="MouseWithoutBorders_ThisMachineNameLabel.Header" xml:space="preserve"> <value>Host name of this device</value> </data> <data name="MouseWithoutBorders_Connect.Content" xml:space="preserve"> <value>Connect</value> </data> <data name="MouseWithoutBorders_UninstallService.Header" xml:space="preserve"> <value>Uninstall service</value> </data> <data name="MouseWithoutBorders_UninstallService.Description" xml:space="preserve"> <value>Removes the service from the computer. Needs to run as administrator.</value> </data> <data name="MouseWithoutBorders_Settings.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="MouseWithoutBorders_TroubleShooting.Header" xml:space="preserve"> <value>Troubleshooting</value> </data> <data name="MouseWithoutBorders_AddFirewallRuleButtonControl.Header" xml:space="preserve"> <value>Add a firewall rule for Mouse Without Borders</value> <comment>"Mouse Without Borders" is a product name</comment> </data> <data name="MouseWithoutBorders_AddFirewallRuleButtonControl.Description" xml:space="preserve"> <value>Adding a firewall rule might help solve connection issues.</value> </data> <data name="MouseWithoutBorders_RunAsAdminText.Title" xml:space="preserve"> <value>You need to run as administrator to modify this setting.</value> </data> <data name="MouseWithoutBorders_ServiceUserUninstallWarning.Title" xml:space="preserve"> <value>If PowerToys is installed as a user, uninstalling/upgrading may require the Mouse Without Borders service to be removed manually later.</value> </data> <data name="MouseWithoutBorders_ServiceSettings.Header" xml:space="preserve"> <value>Service</value> </data> <data name="MouseWithoutBorders_Toggle_Enable.Header" xml:space="preserve"> <value>Enable Mouse Without Borders</value> </data> <data name="MouseWithoutBorders.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="MouseWithoutBorders.ModuleDescription" xml:space="preserve"> <value>Mouse Without Borders is a quick and easy way to move your cursor across multiple devices.</value> <comment>"Mouse Without Borders" is the name of the utility</comment> </data> <data name="MouseWithoutBorders.ModuleTitle" xml:space="preserve"> <value>Mouse Without Borders</value> <comment>"Mouse Without Borders" is the name of the utility</comment> </data> <data name="MouseWithoutBorders_UseService.Header" xml:space="preserve"> <value>Use Service</value> </data> <data name="MouseWithoutBorders_UseService.Description" xml:space="preserve"> <value>Runs in service mode, that allows MWB to control remote machines when they're locked. Also allows control of system and administrator applications.</value> </data> <data name="MouseWithoutBorders_MatrixOneRow.Header" xml:space="preserve"> <value>Devices in a single row</value> </data> <data name="MouseWithoutBorders_MatrixOneRow.Description" xml:space="preserve"> <value>Sets whether the devices are aligned on a single row. A two by two matrix is considered otherwise.</value> </data> <data name="MouseWithoutBorders_WrapMouse.Header" xml:space="preserve"> <value>Wrap mouse</value> </data> <data name="MouseWithoutBorders_WrapMouse.Description" xml:space="preserve"> <value>Move control back to the first machine when mouse moves past the last one.</value> </data> <data name="MouseWithoutBorders_ShareClipboard.Header" xml:space="preserve"> <value>Share clipboard</value> </data> <data name="MouseWithoutBorders_TransferFile.Header" xml:space="preserve"> <value>Transfer file</value> </data> <data name="MouseWithoutBorders_HideMouseAtScreenEdge.Header" xml:space="preserve"> <value>Hide mouse at the screen edge</value> </data> <data name="MouseWithoutBorders_DrawMouseCursor.Header" xml:space="preserve"> <value>Draw mouse cursor</value> </data> <data name="MouseWithoutBorders_ValidateRemoteMachineIP.Header" xml:space="preserve"> <value>Validate remote machine IP</value> </data> <data name="MouseWithoutBorders_SameSubnetOnly.Header" xml:space="preserve"> <value>Same subnet only</value> </data> <data name="MouseWithoutBorders_BlockScreenSaverOnOtherMachines.Header" xml:space="preserve"> <value>Block screen saver on other machines</value> </data> <data name="MouseWithoutBorders_MoveMouseRelatively.Header" xml:space="preserve"> <value>Move mouse relatively</value> </data> <data name="MouseWithoutBorders_BlockMouseAtScreenCorners.Header" xml:space="preserve"> <value>Block mouse at screen corners</value> </data> <data name="MouseWithoutBorders_ShowClipboardAndNetworkStatusMessages.Header" xml:space="preserve"> <value>Show clipboard and network status messages</value> </data> <data name="MouseWithoutBorders_ShowOriginalUI.Header" xml:space="preserve"> <value>Show the original Mouse Without Borders UI</value> </data> <data name="MouseWithoutBorders_ShowOriginalUI.Description" xml:space="preserve"> <value>This is accessible from the system tray and requires a restart.</value> </data> <data name="MouseWithoutBorders_ShareClipboard.Description" xml:space="preserve"> <value>If share clipboard stops working, Ctrl+Alt+Del then Esc may solve the problem.</value> </data> <data name="MouseWithoutBorders_TransferFile.Description" xml:space="preserve"> <value>If a file (&lt;100MB) is copied, it will be transferred to the remote machine clipboard.</value> </data> <data name="MouseWithoutBorders_HideMouseAtScreenEdge.Description" xml:space="preserve"> <value>Hide the mouse cursor at the top edge of the screen when switching to other machine. This option also steals the focus from any full-screen app to ensure the keyboard input is redirected.</value> </data> <data name="MouseWithoutBorders_DrawMouseCursor.Description" xml:space="preserve"> <value>Mouse cursor may not be visible in Windows 10 and later versions of Windows when there is no physical mouse attached.</value> </data> <data name="MouseWithoutBorders_ValidateRemoteMachineIP.Description" xml:space="preserve"> <value>Reverse DNS lookup to validate machine IP Address.</value> </data> <data name="MouseWithoutBorders_SameSubnetOnly.Description" xml:space="preserve"> <value>Only connect to machines in the same intranet NNN.NNN.*.* (only works when both machines have IPv4 enabled)</value> </data> <data name="MouseWithoutBorders_IPAddressMapping_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: MyLaptop 192.168.0.24</value> <comment>Don't translate MyLaptop</comment> </data> <data name="MouseWithoutBorders_IPAddressMapping.Header" xml:space="preserve"> <value>IP address mapping</value> </data> <data name="MouseWithoutBorders_IPAddressMapping.Description" xml:space="preserve"> <value>Resolve machine's IP address using manually entered mappings below.</value> </data> <data name="MouseWithoutBorders_BlockScreenSaverOnOtherMachines.Description" xml:space="preserve"> <value>Prevent screen saver from starting on other machines when user is actively working on this machine.</value> </data> <data name="MouseWithoutBorders_MoveMouseRelatively.Description" xml:space="preserve"> <value>Use this option when remote machine's monitor settings are different, or remote machine has multiple monitors.</value> </data> <data name="MouseWithoutBorders_BlockMouseAtScreenCorners.Description" xml:space="preserve"> <value>To avoid accident machine-switch at screen corners.</value> </data> <data name="MouseWithoutBorders_ShowClipboardAndNetworkStatusMessages.Description" xml:space="preserve"> <value>Show clipboard activities and network status in system tray notifications</value> </data> <data name="MouseWithoutBorders_KeyboardShortcuts_Group.Header" xml:space="preserve"> <value>Keyboard shortcuts</value> <comment>keyboard is the hardware peripheral</comment> </data> <data name="MouseWithoutBorders_AdvancedSettings_Group.Header" xml:space="preserve"> <value>Advanced Settings</value> </data> <data name="MouseWithoutBorders_EasyMouseOption.Header" xml:space="preserve"> <value>Easy Mouse: move between machines by moving the mouse pointer to the screen edges.</value> </data> <data name="MouseWithoutBorders_EasyMouseOption.Description" xml:space="preserve"> <value>Can also be set to move only when pressing Shift or Ctrl.</value> <comment>Shift and Ctrl are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_EasyMouseOption_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_EasyMouseOption_Enabled.Content" xml:space="preserve"> <value>Enabled</value> </data> <data name="MouseWithoutBorders_EasyMouseOption_Ctrl.Content" xml:space="preserve"> <value>Ctrl</value> <comment>This is the Ctrl keyboard key</comment> </data> <data name="MouseWithoutBorders_EasyMouseOption_Shift.Content" xml:space="preserve"> <value>Shift</value> <comment>This is the Shift keyboard key</comment> </data> <data name="MouseWithoutBorders_LockMachinesShortcut.Header" xml:space="preserve"> <value>Shortcut to lock all machines.</value> </data> <data name="MouseWithoutBorders_LockMachinesShortcut.Description" xml:space="preserve"> <value>Hit this hotkey twice to lock all machines. Note: Only the machines which have the same shortcut configured will be locked.</value> </data> <data name="MouseWithoutBorders_ToggleEasyMouseShortcut.Header" xml:space="preserve"> <value>Shortcut to toggle Easy Mouse.</value> <comment>Ctrl and Alt are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_ToggleEasyMouseShortcut.Description" xml:space="preserve"> <value>Only works if EasyMouse is set to Enabled or Disabled.</value> </data> <data name="MouseWithoutBorders_ToggleEasyMouseShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut.Header" xml:space="preserve"> <value>Shortcut to switch between machines. Ctrl+Alt+:</value> <comment>Ctrl and Alt are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut.Description" xml:space="preserve"> <value>Click on Ctrl+Alt+ the chosen option to switch between machines.</value> <comment>Ctrl and Alt are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut_F1.Content" xml:space="preserve"> <value>F1, F2, F3, F4</value> <comment>Don't localize. These are keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut_1.Content" xml:space="preserve"> <value>1, 2, 3, 4</value> <comment>Don't localize. These are keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_LockMachinesShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_ReconnectShortcut.Header" xml:space="preserve"> <value>Shortcut to try reconnecting</value> </data> <data name="MouseWithoutBorders_ReconnectShortcut.Description" xml:space="preserve"> <value>Just in case the connection is lost for any reason.</value> </data> <data name="MouseWithoutBorders_ReconnectShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut.Header" xml:space="preserve"> <value>Shortcut to switch to multiple machine mode.</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut.Description" xml:space="preserve"> <value>Allows controlling all computers at once.</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut_Ctrl3.Content" xml:space="preserve"> <value>Ctrl three times</value> <comment>This is the Ctrl keyboard key</comment> </data> <data name="VideoConference_Enable.Header" xml:space="preserve"> <value>Enable Video Conference Mute</value> </data> <data name="VideoConference.ModuleDescription" xml:space="preserve"> <value>Video Conference Mute is a quick and easy way to do a global "mute" of both your microphone and webcam. Disabling this module or closing PowerToys will unmute the microphone and camera.</value> </data> <data name="VideoConference_CameraAndMicrophoneMuteHotkeyControl_Header.Header" xml:space="preserve"> <value>Mute camera &amp; microphone</value> </data> <data name="VideoConference_MicrophoneMuteHotkeyControl_Header.Header" xml:space="preserve"> <value>Mute microphone</value> </data> <data name="VideoConference_MicrophonePushToTalkHotkeyControl_Header.Header" xml:space="preserve"> <value>Push to talk</value> </data> <data name="VideoConference_CameraMuteHotkeyControl_Header.Header" xml:space="preserve"> <value>Mute camera</value> </data> <data name="VideoConference_SelectedCamera.Header" xml:space="preserve"> <value>Selected camera</value> </data> <data name="VideoConference_SelectedMicrophone.Header" xml:space="preserve"> <value>Selected microphone</value> </data> <data name="VideoConference_PushToReverse.Header" xml:space="preserve"> <value>Push to reverse</value> </data> <data name="VideoConference_PushToReverse.Description" xml:space="preserve"> <value>If enabled, allows both push to talk and push to mute, depending on microphone state</value> </data> <data name="VideoConference_CameraOverlayImagePathHeader.Header" xml:space="preserve"> <value>Image displayed when camera is muted</value> </data> <data name="VideoConference_ToolbarPosition.Header" xml:space="preserve"> <value>Toolbar position</value> </data> <data name="VideoConference_ToolbarPosition_TopCenter.Content" xml:space="preserve"> <value>Top center</value> </data> <data name="VideoConference_ToolbarPosition_TopLeftCorner.Content" xml:space="preserve"> <value>Top left corner</value> </data> <data name="VideoConference_ToolbarPosition_TopRightCorner.Content" xml:space="preserve"> <value>Top right corner</value> </data> <data name="VideoConference_ToolbarPosition_BottomLeftCorner.Content" xml:space="preserve"> <value>Bottom left corner</value> </data> <data name="VideoConference_ToolbarPosition_BottomCenter.Content" xml:space="preserve"> <value>Bottom center</value> </data> <data name="VideoConference_ToolbarPosition_BottomRightCorner.Content" xml:space="preserve"> <value>Bottom right corner</value> </data> <data name="VideoConference_ToolbarMonitor.Header" xml:space="preserve"> <value>Show toolbar on</value> </data> <data name="VideoConference_ToolbarMonitor_Main.Content" xml:space="preserve"> <value>Main monitor</value> </data> <data name="VideoConference_ToolbarMonitor_UnderCursor.Content" xml:space="preserve"> <value>Monitor under cursor</value> </data> <data name="VideoConference_ToolbarMonitor_ActiveWindow.Content" xml:space="preserve"> <value>Active window monitor</value> </data> <data name="VideoConference_ToolbarMonitor_All.Content" xml:space="preserve"> <value>All monitors</value> </data> <data name="VideoConference_ToolbarHide.Header" xml:space="preserve"> <value>Hide toolbar</value> </data> <data name="VideoConference_ToolbarHideMuted.Content" xml:space="preserve"> <value>When both camera and microphone are muted</value> </data> <data name="VideoConference_ToolbarHideNever.Content" xml:space="preserve"> <value>Never</value> </data> <data name="VideoConference_ToolbarHideUnmuted.Content" xml:space="preserve"> <value>When both camera and microphone are unmuted</value> </data> <data name="VideoConference_ToolbarHideTimeout.Content" xml:space="preserve"> <value>After timeout</value> </data> <data name="VideoConference.ModuleTitle" xml:space="preserve"> <value>Video Conference Mute</value> </data> <data name="VideoConference_Camera.Header" xml:space="preserve"> <value>Camera</value> </data> <data name="VideoConference_Camera.Description" xml:space="preserve"> <value>To use this feature, make sure to select PowerToys VideoConference Mute as your camera source in your apps.</value> </data> <data name="VideoConference_Microphone.Header" xml:space="preserve"> <value>Microphone</value> </data> <data name="VideoConference_Toolbar.Header" xml:space="preserve"> <value>Toolbar</value> </data> <data name="VideoConference_Behavior.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="VideoConference_StartupAction.Header" xml:space="preserve"> <value>Startup action</value> </data> <data name="VideoConference_StartupActionNothing.Content" xml:space="preserve"> <value>Nothing</value> </data> <data name="VideoConference_StartupActionUnmute.Content" xml:space="preserve"> <value>Unmute</value> </data> <data name="VideoConference_StartupActionMute.Content" xml:space="preserve"> <value>Mute</value> </data> <data name="VideoConference_Shortcuts.Header" xml:space="preserve"> <value>Shortcuts</value> </data> <data name="VideoConference_CameraOverlayImageAlt.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Camera overlay image preview</value> </data> <data name="VideoConference_CameraOverlayImageBrowse.Content" xml:space="preserve"> <value>Browse</value> </data> <data name="VideoConference_CameraOverlayImageClear.Content" xml:space="preserve"> <value>Clear</value> </data> <data name="Shell_General.Content" xml:space="preserve"> <value>General</value> <comment>Navigation view item name for General</comment> </data> <data name="Shell_Awake.Content" xml:space="preserve"> <value>Awake</value> <comment>Product name: Navigation view item name for Awake</comment> </data> <data name="Shell_PowerLauncher.Content" xml:space="preserve"> <value>PowerToys Run</value> <comment>Product name: Navigation view item name for PowerToys Run</comment> </data> <data name="Shell_PowerRename.Content" xml:space="preserve"> <value>PowerRename</value> <comment>Product name: Navigation view item name for PowerRename</comment> </data> <data name="Shell_ShortcutGuide.Content" xml:space="preserve"> <value>Shortcut Guide</value> <comment>Product name: Navigation view item name for Shortcut Guide</comment> </data> <data name="Shell_PowerPreview.Content" xml:space="preserve"> <value>File Explorer add-ons</value> <comment>Product name: Navigation view item name for File Explorer. Please use File Explorer as in the context of File Explorer in Windows</comment> </data> <data name="Shell_FancyZones.Content" xml:space="preserve"> <value>FancyZones</value> <comment>Product name: Navigation view item name for FancyZones</comment> </data> <data name="Shell_ImageResizer.Content" xml:space="preserve"> <value>Image Resizer</value> <comment>Product name: Navigation view item name for Image Resizer</comment> </data> <data name="Shell_ColorPicker.Content" xml:space="preserve"> <value>Color Picker</value> <comment>Product name: Navigation view item name for Color Picker</comment> </data> <data name="Shell_KeyboardManager.Content" xml:space="preserve"> <value>Keyboard Manager</value> <comment>Product name: Navigation view item name for Keyboard Manager</comment> </data> <data name="Shell_MouseWithoutBorders.Content" xml:space="preserve"> <value>Mouse Without Borders</value> <comment>Product name: Navigation view item name for Mouse Without Borders</comment> </data> <data name="Shell_MouseUtilities.Content" xml:space="preserve"> <value>Mouse utilities</value> <comment>Product name: Navigation view item name for Mouse utilities</comment> </data> <data name="Shell_NavigationMenu_Announce_Collapse" xml:space="preserve"> <value>Navigation closed</value> <comment>Accessibility announcement when the navigation pane collapses</comment> </data> <data name="Shell_NavigationMenu_Announce_Open" xml:space="preserve"> <value>Navigation opened</value> <comment>Accessibility announcement when the navigation pane opens</comment> </data> <data name="KeyboardManager_ConfigHeader.Text" xml:space="preserve"> <value>Current configuration</value> <comment>Keyboard Manager current configuration header</comment> </data> <data name="KeyboardManager.ModuleDescription" xml:space="preserve"> <value>Reconfigure your keyboard by remapping keys and shortcuts</value> <comment>Keyboard Manager page description</comment> </data> <data name="KeyboardManager_EnableToggle.Header" xml:space="preserve"> <value>Enable Keyboard Manager</value> <comment>Keyboard Manager enable toggle header. Do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="KeyboardManager_ProfileDescription.Text" xml:space="preserve"> <value>Select the profile to display the active key remap and shortcuts</value> <comment>Keyboard Manager configuration dropdown description</comment> </data> <data name="KeyboardManager_RemapKeyboardButton.Header" xml:space="preserve"> <value>Remap a key</value> <comment>Keyboard Manager remap keyboard button content</comment> </data> <data name="KeyboardManager_Keys.Header" xml:space="preserve"> <value>Keys</value> <comment>Keyboard Manager remap keyboard header</comment> </data> <data name="KeyboardManager_RemapShortcutsButton.Header" xml:space="preserve"> <value>Remap a shortcut</value> <comment>Keyboard Manager remap shortcuts button</comment> </data> <data name="KeyboardManager_Shortcuts.Header" xml:space="preserve"> <value>Shortcuts</value> <comment>Keyboard Manager remap keyboard header</comment> </data> <data name="KeyboardManager_All_Apps_Description" xml:space="preserve"> <value>All Apps</value> <comment>Should be the same as EditShortcuts_AllApps from keyboard manager editor</comment> </data> <data name="Shortcuts.Header" xml:space="preserve"> <value>Shortcuts</value> </data> <data name="Shortcut.Header" xml:space="preserve"> <value>Shortcut</value> </data> <data name="RemapKeysList.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Current Key Remappings</value> </data> <data name="RemapShortcutsList.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Current Shortcut Remappings</value> </data> <data name="KeyboardManager_RemappedKeysListItem.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Key Remapping</value> <comment>key as in keyboard key</comment> </data> <data name="KeyboardManager_RemappedShortcutsListItem.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Shortcut Remapping</value> </data> <data name="KeyboardManager_RemappedTo.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Remapped to</value> </data> <data name="KeyboardManager_ShortcutRemappedTo.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Remapped to</value> </data> <data name="KeyboardManager_TargetApp.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>For Target Application</value> <comment>What computer application would this be for</comment> </data> <data name="KeyboardManager_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Keyboard Manager</value> <comment>do not loc, product name</comment> </data> <data name="ColorPicker.ModuleDescription" xml:space="preserve"> <value>Quick and simple system-wide color picker.</value> </data> <data name="ColorPicker_EnableColorPicker.Header" xml:space="preserve"> <value>Enable Color Picker</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="ColorPicker_ChangeCursor.Content" xml:space="preserve"> <value>Change cursor when picking a color</value> </data> <data name="PowerLauncher.ModuleDescription" xml:space="preserve"> <value>A quick launcher that has additional capabilities without sacrificing performance.</value> </data> <data name="PowerLauncher_EnablePowerLauncher.Header" xml:space="preserve"> <value>Enable PowerToys Run</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="PowerLauncher_SearchResults.Header" xml:space="preserve"> <value>Search &amp; results</value> </data> <data name="PowerLauncher_SearchResultPreference.Header" xml:space="preserve"> <value>Search result preference</value> </data> <data name="PowerLauncher_UsePinyin.Header" xml:space="preserve"> <value>Use Pinyin</value> </data> <data name="PowerLauncher_UsePinyin.Description" xml:space="preserve"> <value>Experimental: Use Pinyin on the search query. May not work for every plugin.</value> </data> <data name="PowerLauncher_SearchResultPreference_MostRecentlyUsed" xml:space="preserve"> <value>Most recently used</value> </data> <data name="PowerLauncher_SearchResultPreference_AlphabeticalOrder" xml:space="preserve"> <value>Alphabetical order</value> </data> <data name="PowerLauncher_SearchResultPreference_RunningProcessesOpenApplications" xml:space="preserve"> <value>Running processes/open applications</value> </data> <data name="PowerLauncher_SearchTypePreference.Header" xml:space="preserve"> <value>Search type preference</value> </data> <data name="PowerLauncher_SearchTypePreference_ApplicationName" xml:space="preserve"> <value>Application name</value> </data> <data name="PowerLauncher_SearchTypePreference_StringInApplication" xml:space="preserve"> <value>A string that is contained in the application</value> </data> <data name="PowerLauncher_SearchTypePreference_ExecutableName" xml:space="preserve"> <value>Executable name</value> </data> <data name="PowerLauncher_MaximumNumberOfResults.Header" xml:space="preserve"> <value>Number of results shown before scrolling</value> </data> <data name="PowerLauncher_OpenPowerLauncher.Header" xml:space="preserve"> <value>Open PowerToys Run</value> </data> <data name="PowerLauncher_OpenFileLocation.Header" xml:space="preserve"> <value>Open file location</value> </data> <data name="PowerLauncher_CopyPathLocation.Header" xml:space="preserve"> <value>Copy path location</value> </data> <data name="PowerLauncher_OpenConsole.Header" xml:space="preserve"> <value>Open console</value> <comment>console refers to Windows command prompt</comment> </data> <data name="PowerLauncher_OverrideWinRKey.Content" xml:space="preserve"> <value>Override Win+R shortcut</value> </data> <data name="PowerLauncher_OverrideWinSKey.Content" xml:space="preserve"> <value>Override Win+S shortcut</value> </data> <data name="PowerLauncher_IgnoreHotkeysInFullScreen.Content" xml:space="preserve"> <value>Ignore shortcuts in fullscreen mode</value> </data> <data name="PowerLauncher_UseCentralizedKeyboardHook.Header" xml:space="preserve"> <value>Use centralized keyboard hook</value> </data> <data name="PowerLauncher_UseCentralizedKeyboardHook.Description" xml:space="preserve"> <value>Try this if there are issues with the shortcut (PowerToys Run might not get focus when triggered from an elevated window)</value> </data> <data name="PowerLauncher_ClearInputOnLaunch.Content" xml:space="preserve"> <value>Clear the previous query on launch</value> </data> <data name="PowerLauncher_TabSelectsContextButtons.Header" xml:space="preserve"> <value>Tab through context buttons</value> </data> <data name="PowerLauncher_TabSelectsContextButtons.Description" xml:space="preserve"> <value>Pressing tab will first select through the available context buttons of the current selection before moving onto the next result</value> </data> <data name="PowerLauncher_GenerateThumbnailsFromFiles.Header" xml:space="preserve"> <value>Generate thumbnails from files</value> </data> <data name="PowerLauncher_GenerateThumbnailsFromFiles.Description" xml:space="preserve"> <value>Results will try to generate thumbnails for files. Disabling this setting may increase stability and speed</value> </data> <data name="PowerLauncher_SearchQueryResultsWithDelay.Header" xml:space="preserve"> <value>Input Smoothing</value> <comment>This is about adding a delay to wait for more input before executing a search</comment> </data> <data name="PowerLauncher_SearchQueryResultsWithDelay.Description" xml:space="preserve"> <value>Wait for more input before searching. This reduces interface jumpiness and system load.</value> </data> <data name="PowerLauncher_FastSearchInputDelayMs.Header" xml:space="preserve"> <value>Immediate plugins</value> </data> <data name="PowerLauncher_FastSearchInputDelayMs.Description" xml:space="preserve"> <value>Affects the plugins that make the UI wait for their results by this amount. Recommended: 30-50 ms.</value> </data> <data name="PowerLauncher_SlowSearchInputDelayMs.Header" xml:space="preserve"> <value>Background execution plugins</value> </data> <data name="PowerLauncher_SlowSearchInputDelayMs.Description" xml:space="preserve"> <value>Affects the plugins that execute in the background by this amount. Recommended: 100-150 ms.</value> </data> <data name="PowerLauncher_SearchInputDelayMs.Header" xml:space="preserve"> <value>Fast plugin throttle (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="KeyboardManager_KeysMappingLayoutRightHeader.Text" xml:space="preserve"> <value>To:</value> <comment>Keyboard Manager mapping keys view right header</comment> </data> <data name="Appearance_GroupSettings.Text" xml:space="preserve"> <value>Appearance</value> </data> <data name="Fancyzones_ImageHyperlinkToDocs.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>FancyZones windows</value> <comment>do not loc the Product name</comment> </data> <data name="FancyZones.ModuleDescription" xml:space="preserve"> <value>Create window layouts to help make multi-tasking easy.</value> <comment>windows refers to application windows</comment> </data> <data name="FancyZones_DisplayOrWorkAreaChangeMoveWindowsCheckBoxControl.Content" xml:space="preserve"> <value>Keep windows in their zones when the screen resolution or work area changes</value> <comment>windows refers to application windows</comment> </data> <data name="FancyZones_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable FancyZones</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="FancyZones_ExcludeApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="FancyZones_ExcludeApps.Description" xml:space="preserve"> <value>Excludes an application from snapping to zones and will only react to Windows Snap - add one application name per line</value> </data> <data name="FancyZones_HighlightOpacity.Header" xml:space="preserve"> <value>Opacity (%)</value> </data> <data name="FancyZones_HotkeyEditorControl.Header" xml:space="preserve"> <value>Open layout editor</value> <comment>Shortcut to launch the FancyZones layout editor application</comment> </data> <data name="FancyZones_WindowSwitching_GroupSettings.Header" xml:space="preserve"> <value>Switch between windows in the current zone</value> </data> <data name="FancyZones_HotkeyNextTabControl.Header" xml:space="preserve"> <value>Next window</value> </data> <data name="FancyZones_HotkeyPrevTabControl.Header" xml:space="preserve"> <value>Previous window</value> </data> <data name="SettingsPage_SetShortcut.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Shortcut setting</value> </data> <data name="SettingsPage_SetShortcut_Glyph.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Information Symbol</value> </data> <data name="FancyZones_LaunchEditorButtonControl.Header" xml:space="preserve"> <value>Launch layout editor</value> <comment>launches the FancyZones layout editor application</comment> </data> <data name="FancyZones_LaunchEditorButtonControl.Description" xml:space="preserve"> <value>Set and manage your layouts</value> <comment>launches the FancyZones layout editor application</comment> </data> <data name="FancyZones_MakeDraggedWindowTransparentCheckBoxControl.Content" xml:space="preserve"> <value>Make dragged window transparent</value> </data> <data name="FancyZones_MouseDragCheckBoxControl_Header.Content" xml:space="preserve"> <value>Use a non-primary mouse button to toggle zone activation</value> </data> <data name="FancyZones_MouseMiddleClickSpanningMultipleZonesCheckBoxControl_Header.Content" xml:space="preserve"> <value>Use middle-click mouse button to toggle multiple zones spanning</value> </data> <data name="FancyZones_MoveWindowsAcrossAllMonitorsCheckBoxControl.Content" xml:space="preserve"> <value>Move windows between zones across all monitors</value> </data> <data name="FancyZones_OverrideSnapHotkeys.Header" xml:space="preserve"> <value>Override Windows Snap</value> </data> <data name="FancyZones_OverrideSnapHotkeys.Description" xml:space="preserve"> <value>This overrides the Windows Snap shortcut (Win + arrow) to move windows between zones</value> </data> <data name="FancyZones_ShiftDragCheckBoxControl_Header.Content" xml:space="preserve"> <value>Hold Shift key to activate zones while dragging a window</value> </data> <data name="FancyZones_ActivationNoShiftDrag" xml:space="preserve"> <value>Drag windows to activate zones</value> </data> <data name="FancyZones_ShowZonesOnAllMonitorsCheckBoxControl.Content" xml:space="preserve"> <value>Show zones on all monitors while dragging a window</value> </data> <data name="FancyZones_AppLastZoneMoveWindows.Content" xml:space="preserve"> <value>Move newly created windows to their last known zone</value> <comment>windows refers to application windows</comment> </data> <data name="FancyZones_OpenWindowOnActiveMonitor.Content" xml:space="preserve"> <value>Move newly created windows to the current active monitor (Experimental)</value> </data> <data name="FancyZones_UseCursorPosEditorStartupScreen.Header" xml:space="preserve"> <value>Launch editor on the display</value> </data> <data name="FancyZones_UseCursorPosEditorStartupScreen.Description" xml:space="preserve"> <value>When using multiple displays</value> </data> <data name="FancyZones_LaunchPositionMouse.Content" xml:space="preserve"> <value>Where the mouse pointer is</value> </data> <data name="FancyZones_LaunchPositionScreen.Content" xml:space="preserve"> <value>With active focus</value> </data> <data name="FancyZones_ZoneBehavior_GroupSettings.Header" xml:space="preserve"> <value>Zone behavior</value> </data> <data name="FancyZones_ZoneBehavior_GroupSettings.Description" xml:space="preserve"> <value>Manage how zones behave when using FancyZones</value> </data> <data name="FancyZones_Zones.Header" xml:space="preserve"> <value>Zones</value> </data> <data name="FancyZones_ZoneHighlightColor.Header" xml:space="preserve"> <value>Highlight color</value> </data> <data name="FancyZones_ZoneSetChangeMoveWindows.Content" xml:space="preserve"> <value>During zone layout changes, windows assigned to a zone will match new size/positions</value> </data> <data name="AttributionTitle.Text" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="General.ModuleTitle" xml:space="preserve"> <value>General</value> </data> <data name="GeneralPage_CheckForUpdates.Content" xml:space="preserve"> <value>Check for updates</value> </data> <data name="General_SettingsBackupAndRestoreLocationText.Header" xml:space="preserve"> <value>Location</value> </data> <data name="General_SettingsBackupAndRestore_ButtonBackup.Content" xml:space="preserve"> <value>Backup</value> </data> <data name="General_SettingsBackupInfo_FileNameHeader.Text" xml:space="preserve"> <value>File name:</value> </data> <data name="General_SettingsBackupAndRestore_LinkRefresh.Text" xml:space="preserve"> <value>Refresh</value> </data> <data name="General_SettingsBackupAndRestore_ButtonRestore.Content" xml:space="preserve"> <value>Restore</value> </data> <data name="General_SettingsBackupAndRestore_ButtonSelectLocation.Text" xml:space="preserve"> <value>Select folder</value> </data> <data name="GeneralPage_UpdateNow.Content" xml:space="preserve"> <value>Update now</value> </data> <data name="GeneralPage_PrivacyStatement_URL.Text" xml:space="preserve"> <value>Privacy statement</value> </data> <data name="GeneralPage_ReportAbug.Text" xml:space="preserve"> <value>Report a bug</value> <comment>Report an issue inside powertoys</comment> </data> <data name="GeneralPage_RequestAFeature_URL.Text" xml:space="preserve"> <value>Request a feature</value> <comment>Tell our team what we should build</comment> </data> <data name="GeneralPage_RestartAsAdmin_Button.Content" xml:space="preserve"> <value>Restart PowerToys as administrator</value> <comment>running PowerToys as a higher level user, account is typically referred to as an admin / administrator</comment> </data> <data name="GeneralPage_RunAtStartUp.Header" xml:space="preserve"> <value>Run at startup</value> </data> <data name="GeneralPage_RunAtStartUp.Description" xml:space="preserve"> <value>PowerToys will launch automatically</value> </data> <data name="PowerRename.ModuleDescription" xml:space="preserve"> <value>A Windows Shell extension for more advanced bulk renaming using search &amp; replace or regular expressions.</value> </data> <data name="PowerRename_ShellIntegration.Header" xml:space="preserve"> <value>Shell integration</value> <comment>This refers to directly integrating in with Windows</comment> </data> <data name="PowerRename_Toggle_Enable.Header" xml:space="preserve"> <value>Enable PowerRename</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="RadioButtons_Name_Theme.Text" xml:space="preserve"> <value>Settings theme</value> </data> <data name="PowerRename_Toggle_HideIcon.Content" xml:space="preserve"> <value>Hide icon in context menu</value> </data> <data name="PowerRename_Toggle_ContextMenu.Header" xml:space="preserve"> <value>Show PowerRename in</value> </data> <data name="PowerRename_Toggle_StandardContextMenu.Content" xml:space="preserve"> <value>Default and extended context menu</value> </data> <data name="PowerRename_Toggle_ExtendedContextMenu.Content" xml:space="preserve"> <value>Extended context menu only</value> </data> <data name="ExtendedContextMenuInfo.Title" xml:space="preserve"> <value>Press Shift + right-click on files to open the extended context menu</value> </data> <data name="PowerRename_Toggle_MaxDispListNum.Header" xml:space="preserve"> <value>Maximum number of items</value> </data> <data name="PowerRename_Toggle_RestoreFlagsOnLaunch.Header" xml:space="preserve"> <value>Show recently used strings</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_MD.Header" xml:space="preserve"> <value>Markdown</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_MD.Description" xml:space="preserve"> <value>.md, .markdown, .mdown, .mkdn, .mkd, .mdwn, .mdtxt, .mdtext</value> <comment>File extensions, should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_Monaco.Header" xml:space="preserve"> <value>Source code files (Monaco)</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_Monaco.Description" xml:space="preserve"> <value>.cpp, .py, .json, .xml, .csproj, ...</value> <comment>File extensions should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_SVG.Header" xml:space="preserve"> <value>Scalable Vector Graphics</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_SVG.Description" xml:space="preserve"> <value>.svg</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_Preview_SVG_Color_Mode.Header" xml:space="preserve"> <value>Color mode</value> </data> <data name="FileExplorerPreview_Preview_SVG_Color_Mode_Default.Content" xml:space="preserve"> <value>Windows default</value> </data> <data name="FileExplorerPreview_Preview_SVG_Color_Solid_Color.Content" xml:space="preserve"> <value>Solid color</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade.Content" xml:space="preserve"> <value>Checkered pattern</value> </data> <data name="FileExplorerPreview_Preview_SVG_Background_Color.Header" xml:space="preserve"> <value>Color</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_Mode.Header" xml:space="preserve"> <value>Checkered shade</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_1.Content" xml:space="preserve"> <value>Light</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_2.Content" xml:space="preserve"> <value>Medium</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_3.Content" xml:space="preserve"> <value>Dark</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_PDF.Header" xml:space="preserve"> <value>Portable Document Format</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_PDF.Description" xml:space="preserve"> <value>.pdf</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_SVG.Header" xml:space="preserve"> <value>Scalable Vector Graphics</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_SVG.Description" xml:space="preserve"> <value>.svg</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_STL.Header" xml:space="preserve"> <value>Stereolithography</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_STL.Description" xml:space="preserve"> <value>.stl</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_Color_Thumbnail_STL.Header" xml:space="preserve"> <value>Color</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_PDF.Header" xml:space="preserve"> <value>Portable Document Format</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_PDF.Description" xml:space="preserve"> <value>.pdf</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview.ModuleDescription" xml:space="preserve"> <value>These settings allow you to manage your Windows File Explorer custom preview handlers.</value> </data> <data name="PowerRename_AutoCompleteHeader.Header" xml:space="preserve"> <value>Auto-complete</value> </data> <data name="OpenSource_Notice.Text" xml:space="preserve"> <value>Open-source notice</value> </data> <data name="PowerRename_Toggle_AutoComplete.Header" xml:space="preserve"> <value>Enable auto-complete for the search &amp; replace fields</value> </data> <data name="FancyZones_BorderColor.Header" xml:space="preserve"> <value>Border color</value> </data> <data name="FancyZones_InActiveColor.Header" xml:space="preserve"> <value>Inactive color</value> </data> <data name="ShortcutGuide.ModuleDescription" xml:space="preserve"> <value>Shows a help overlay with Windows shortcuts.</value> </data> <data name="ShortcutGuide_PressTimeForGlobalWindowsShortcuts.Header" xml:space="preserve"> <value>Press duration before showing global Windows shortcuts (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="ShortcutGuide_ActivationMethod.Header" xml:space="preserve"> <value>Activation method</value> </data> <data name="ShortcutGuide_ActivationMethod.Description" xml:space="preserve"> <value>Use a shortcut or press the Windows key for some time to activate</value> </data> <data name="Radio_ShortcutGuide_ActivationMethod_CustomizedShortcut.Content" xml:space="preserve"> <value>Custom shortcut</value> </data> <data name="Radio_ShortcutGuide_ActivationMethod_LongPressWindowsKey.Content" xml:space="preserve"> <value>Hold down Windows key</value> </data> <data name="ShortcutGuide_PressWinKeyWarning.Title" xml:space="preserve"> <value>In some edge cases Shortcut Guide might not function correctly when using this activation method</value> </data> <data name="Appearance_Behavior.Header" xml:space="preserve"> <value>Appearance &amp; behavior</value> </data> <data name="General_SettingsBackupAndRestoreTitle.Header" xml:space="preserve"> <value>Backup &amp; restore</value> </data> <data name="General_SettingsBackupAndRestore.Header" xml:space="preserve"> <value>Backup and restore your settings</value> </data> <data name="General_SettingsBackupAndRestore.Description" xml:space="preserve"> <value>PowerToys will restart automatically if needed</value> </data> <data name="ShortcutGuide_Enable.Header" xml:space="preserve"> <value>Enable Shortcut Guide</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="ShortcutGuide_OverlayOpacity.Header" xml:space="preserve"> <value>Background opacity (%)</value> </data> <data name="ShortcutGuide_DisabledApps.Header" xml:space="preserve"> <value>Exclude apps</value> </data> <data name="ShortcutGuide_DisabledApps.Description" xml:space="preserve"> <value>Turns off Shortcut Guide when these applications have focus - add one application name per line</value> </data> <data name="ShortcutGuide_DisabledApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> <comment>Don't translate outlook.exe</comment> </data> <data name="ImageResizer_CustomSizes.Header" xml:space="preserve"> <value>Image sizes</value> </data> <data name="ImageResizer_Presets.Header" xml:space="preserve"> <value>Presets</value> </data> <data name="ImageResizer_Presets.Description" xml:space="preserve"> <value>Manage preset sizes that can be used in the editor</value> </data> <data name="ImageResizer_FilenameFormatHeader.Description" xml:space="preserve"> <value>This format is used as the filename for resized images</value> </data> <data name="ImageResizer.ModuleDescription" xml:space="preserve"> <value>Lets you resize images by right-clicking.</value> </data> <data name="ImageResizer_EnableToggle.Header" xml:space="preserve"> <value>Enable Image Resizer</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="ImagesSizesListView.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Image Size</value> </data> <data name="ImageResizer_Configurations.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Configurations</value> </data> <data name="ImageResizer_Name.Header" xml:space="preserve"> <value>Name</value> </data> <data name="ImageResizer_Fit.Header" xml:space="preserve"> <value>Fit</value> </data> <data name="ImageResizer_Width.Header" xml:space="preserve"> <value>Width</value> </data> <data name="ImageResizer_Height.Header" xml:space="preserve"> <value>Height</value> </data> <data name="ImageResizer_Size.Header" xml:space="preserve"> <value>Unit</value> </data> <data name="RemoveButton.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Remove</value> <comment>Removes a user defined setting group for Image Resizer</comment> </data> <data name="RemoveItem.Text" xml:space="preserve"> <value>Delete</value> </data> <data name="ImageResizer_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Image Resizer</value> </data> <data name="ImageResizer_AddSizeButton.Content" xml:space="preserve"> <value>Add new size</value> </data> <data name="ImageResizer_SaveSizeButton.Label" xml:space="preserve"> <value>Save sizes</value> </data> <data name="ImageResizer_Encoding.Header" xml:space="preserve"> <value>JPEG quality level (%)</value> </data> <data name="ImageResizer_PNGInterlacing.Header" xml:space="preserve"> <value>PNG interlacing</value> </data> <data name="ImageResizer_TIFFCompression.Header" xml:space="preserve"> <value>TIFF compression</value> </data> <data name="File.Header" xml:space="preserve"> <value>File</value> <comment>as in a computer file</comment> </data> <data name="Default.Content" xml:space="preserve"> <value>Default</value> </data> <data name="ImageResizer_ENCODER_TIFF_CCITT3.Content" xml:space="preserve"> <value>CCITT3</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_CCITT4.Content" xml:space="preserve"> <value>CCITT4</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_Default.Content" xml:space="preserve"> <value>Default</value> </data> <data name="ImageResizer_ENCODER_TIFF_LZW.Content" xml:space="preserve"> <value>LZW</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_None.Content" xml:space="preserve"> <value>None</value> </data> <data name="ImageResizer_ENCODER_TIFF_RLE.Content" xml:space="preserve"> <value>RLE</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_Zip.Content" xml:space="preserve"> <value>Zip</value> <comment>do not loc</comment> </data> <data name="ImageResizer_FallbackEncoder_BMP.Content" xml:space="preserve"> <value>BMP encoder</value> </data> <data name="ImageResizer_FallbackEncoder_GIF.Content" xml:space="preserve"> <value>GIF encoder</value> </data> <data name="ImageResizer_FallbackEncoder_JPEG.Content" xml:space="preserve"> <value>JPEG encoder</value> </data> <data name="ImageResizer_FallbackEncoder_PNG.Content" xml:space="preserve"> <value>PNG encoder</value> </data> <data name="ImageResizer_FallbackEncoder_TIFF.Content" xml:space="preserve"> <value>TIFF encoder</value> </data> <data name="ImageResizer_FallbackEncoder_WMPhoto.Content" xml:space="preserve"> <value>WMPhoto encoder</value> </data> <data name="ImageResizer_Sizes_Fit_Fill.Content" xml:space="preserve"> <value>Fill</value> <comment>Refers to filling an image into a certain size. It could overflow</comment> </data> <data name="ImageResizer_Sizes_Fit_Fill_ThirdPersonSingular.Text" xml:space="preserve"> <value>Fill</value> <comment>Refers to filling an image into a certain size. It could overflow</comment> </data> <data name="ImageResizer_Sizes_Fit_Fit.Content" xml:space="preserve"> <value>Fit</value> <comment>Refers to fitting an image into a certain size. It won't overflow</comment> </data> <data name="ImageResizer_Sizes_Fit_Stretch.Content" xml:space="preserve"> <value>Stretch</value> <comment>Refers to stretching an image into a certain size. Won't overflow but could distort.</comment> </data> <data name="ImageResizer_Sizes_Units_CM.Content" xml:space="preserve"> <value>Centimeters</value> </data> <data name="ImageResizer_Sizes_Units_Inches.Content" xml:space="preserve"> <value>Inches</value> </data> <data name="ImageResizer_Sizes_Units_Percent.Content" xml:space="preserve"> <value>Percent</value> </data> <data name="ImageResizer_Sizes_Units_Pixels.Content" xml:space="preserve"> <value>Pixels</value> </data> <data name="Off.Content" xml:space="preserve"> <value>Off</value> </data> <data name="On.Content" xml:space="preserve"> <value>On</value> </data> <data name="GeneralPage_ToggleSwitch_AlwaysRunElevated_Link.Content" xml:space="preserve"> <value>Learn more about administrator mode</value> </data> <data name="GeneralPage_ToggleSwitch_AutoDownloadUpdates.Header" xml:space="preserve"> <value>Download updates automatically</value> </data> <data name="GeneralPage_ToggleSwitch_AutoDownloadUpdates.Description" xml:space="preserve"> <value>Except on metered connections</value> </data> <data name="GeneralPage_ToggleSwitch_RunningAsAdminNote.Text" xml:space="preserve"> <value>Currently running as administrator</value> </data> <data name="GeneralSettings_AlwaysRunAsAdminText.Header" xml:space="preserve"> <value>Always run as administrator</value> </data> <data name="GeneralSettings_AlwaysRunAsAdminText.Description" xml:space="preserve"> <value>You need to run as administrator to use this setting</value> </data> <data name="GeneralSettings_RunningAsUserText" xml:space="preserve"> <value>Running as user</value> </data> <data name="GeneralSettings_RunningAsAdminText" xml:space="preserve"> <value>Running as administrator</value> </data> <data name="FancyZones.ModuleTitle" xml:space="preserve"> <value>FancyZones</value> </data> <data name="FileExplorerPreview.ModuleTitle" xml:space="preserve"> <value>File Explorer</value> </data> <data name="FileExplorerPreview_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>File Explorer</value> <comment>Use same translation as Windows does for File Explorer</comment> </data> <data name="ImageResizer.ModuleTitle" xml:space="preserve"> <value>Image Resizer</value> </data> <data name="KeyboardManager.ModuleTitle" xml:space="preserve"> <value>Keyboard Manager</value> </data> <data name="ColorPicker.ModuleTitle" xml:space="preserve"> <value>Color Picker</value> </data> <data name="PowerLauncher.ModuleTitle" xml:space="preserve"> <value>PowerToys Run</value> </data> <data name="PowerToys_Run_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>PowerToys Run</value> </data> <data name="PowerRename.ModuleTitle" xml:space="preserve"> <value>PowerRename</value> <comment>do not loc the product name</comment> </data> <data name="PowerRename_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>PowerRename</value> <comment>do not loc</comment> </data> <data name="ShortcutGuide.ModuleTitle" xml:space="preserve"> <value>Shortcut Guide</value> </data> <data name="Shortcut_Guide_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Shortcut Guide</value> </data> <data name="General_Repository.Text" xml:space="preserve"> <value>GitHub repository</value> </data> <data name="General_Version.Header" xml:space="preserve"> <value>Version</value> </data> <data name="General_VersionLastChecked.Text" xml:space="preserve"> <value>Last checked: </value> </data> <data name="General_SettingsBackupInfo_DateHeader.Text" xml:space="preserve"> <value>Created at:</value> </data> <data name="General_SettingsBackupAndRestoreStatusInfo.Header" xml:space="preserve"> <value>Backup information</value> </data> <data name="General_SettingsBackupInfo_SourceHeader.Text" xml:space="preserve"> <value>Source machine:</value> </data> <data name="General_SettingsBackupInfo_StatusHeader.Text" xml:space="preserve"> <value>Status:</value> </data> <data name="General_Version.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Version</value> </data> <data name="Admin_mode.Header" xml:space="preserve"> <value>Administrator mode</value> </data> <data name="FancyZones_RestoreSize.Content" xml:space="preserve"> <value>Restore the original size of windows when unsnapping</value> </data> <data name="ImageResizer_FallBackEncoderText.Header" xml:space="preserve"> <value>Fallback encoder</value> </data> <data name="ImageResizer_FileFormatDescription.Text" xml:space="preserve"> <value>The following parameters can be used:</value> </data> <data name="ImageResizer_FilenameFormatHeader.Header" xml:space="preserve"> <value>Filename format</value> </data> <data name="ImageResizer_FileModifiedDate.Header" xml:space="preserve"> <value>File modified timestamp</value> </data> <data name="ImageResizer_FileModifiedDate.Description" xml:space="preserve"> <value>Used as the 'modified timestamp' in the file properties</value> </data> <data name="ImageResizer_UseOriginalDate.Content" xml:space="preserve"> <value>Original file timestamp</value> </data> <data name="ImageResizer_UseResizeDate.Content" xml:space="preserve"> <value>Timestamp of resize action</value> </data> <data name="Encoding.Header" xml:space="preserve"> <value>Encoding</value> </data> <data name="KeyboardManager_RemapKeyboardButton.Description" xml:space="preserve"> <value>Remap keys to other keys or shortcuts</value> </data> <data name="KeyboardManager_RemapShortcutsButton.Description" xml:space="preserve"> <value>Remap shortcuts to other shortcuts or keys for all or specific applications</value> </data> <data name="General.ModuleDescription" xml:space="preserve"> <value>Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. Made with 💗 by Microsoft and the PowerToys community.</value> <comment>Windows refers to the OS</comment> </data> <data name="FancyZones_SpanZonesAcrossMonitors.Header" xml:space="preserve"> <value>Allow zones to span across monitors</value> </data> <data name="ImageResizer_Formatting_ActualHeight.Text" xml:space="preserve"> <value>Actual height</value> </data> <data name="ImageResizer_Formatting_ActualWidth.Text" xml:space="preserve"> <value>Actual width</value> </data> <data name="ImageResizer_Formatting_Filename.Text" xml:space="preserve"> <value>Original filename</value> </data> <data name="ImageResizer_Formatting_SelectedHeight.Text" xml:space="preserve"> <value>Selected height</value> </data> <data name="ImageResizer_Formatting_SelectedWidth.Text" xml:space="preserve"> <value>Selected width</value> </data> <data name="ImageResizer_Formatting_Sizename.Text" xml:space="preserve"> <value>Size name</value> </data> <data name="FancyZones_MoveWindowsBasedOnPositionCheckBoxControl.Content" xml:space="preserve"> <value>Move windows based on their position</value> <comment>Windows refers to application windows</comment> </data> <data name="GeneralSettings_NewVersionIsAvailable" xml:space="preserve"> <value>New update available</value> </data> <data name="GeneralSettings_VersionIsLatest" xml:space="preserve"> <value>PowerToys is up to date.</value> </data> <data name="FileExplorerPreview_IconThumbnail_GroupSettings.Header" xml:space="preserve"> <value>Thumbnail icon Preview</value> </data> <data name="FileExplorerPreview_IconThumbnail_GroupSettings.Description" xml:space="preserve"> <value>Select the file types for which thumbnail previews must be rendered.</value> </data> <data name="FileExplorerPreview_PreviewPane.Header" xml:space="preserve"> <value>Preview Pane</value> </data> <data name="FileExplorerPreview_PreviewPane.Description" xml:space="preserve"> <value>Select the file types which must be rendered in the Preview Pane. Ensure that Preview Pane is open by toggling the view with Alt + P in File Explorer.</value> <comment>Preview Pane and File Explorer are app/feature names in Windows. 'Alt + P' is a shortcut</comment> </data> <data name="FileExplorerPreview_RunAsAdminRequired.Title" xml:space="preserve"> <value>You need to run as administrator to modify these settings.</value> </data> <data name="FileExplorerPreview_RebootRequired.Title" xml:space="preserve"> <value>A reboot may be required for changes to these settings to take effect</value> </data> <data name="FileExplorerPreview_PreviewHandlerOutlookIncompatibility.Title" xml:space="preserve"> <value>Enabling the preview handlers will override other preview handlers already installed - there have been reports of incompatibility between Outlook and the PDF Preview Handler.</value> <comment>Outlook is the name of a Microsoft product</comment> </data> <data name="FileExplorerPreview_ThumbnailsMightNotAppearOnRemoteFolders.Title" xml:space="preserve"> <value>Thumbnails might not appear on paths managed by cloud storage solutions like OneDrive, since these solutions may get their thumbnails from the cloud instead of generating them locally.</value> <comment>OneDrive is the name of a Microsoft product</comment> </data> <data name="FancyZones_ExcludeApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> <comment>Don't translate outlook.exe</comment> </data> <data name="ImageResizer_FilenameFormatPlaceholder.PlaceholderText" xml:space="preserve"> <value>Example: %1 (%2)</value> </data> <data name="ImageResizer_FilenameParameters.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Filename parameters</value> </data> <data name="Radio_Theme_Dark.Content" xml:space="preserve"> <value>Dark</value> <comment>Dark refers to color, not weight</comment> </data> <data name="Radio_Theme_Light.Content" xml:space="preserve"> <value>Light</value> <comment>Light refers to color, not weight</comment> </data> <data name="Radio_Theme_Default.Content" xml:space="preserve"> <value>Windows default</value> <comment>Windows refers to the Operating system</comment> </data> <data name="Windows_Color_Settings.Content" xml:space="preserve"> <value>Windows color settings</value> <comment>Windows refers to the Operating system</comment> </data> <data name="ColorPicker_CopiedColorRepresentation.Header" xml:space="preserve"> <value>Default color format</value> </data> <data name="ColorPickerFirst.Content" xml:space="preserve"> <value>Pick a color and open editor</value> </data> <data name="EditorFirst.Content" xml:space="preserve"> <value>Open editor</value> </data> <data name="ColorPickerOnly.Content" xml:space="preserve"> <value>Only pick a color</value> </data> <data name="ColorPicker_ActivationAction.Header" xml:space="preserve"> <value>Activation behavior</value> </data> <data name="ColorFormats.Header" xml:space="preserve"> <value>Picker behavior</value> </data> <data name="ColorPicker_CopiedColorRepresentation.Description" xml:space="preserve"> <value>This format will be copied to your clipboard</value> </data> <data name="KBM_KeysCannotBeRemapped.Text" xml:space="preserve"> <value>Learn more about remapping limitations</value> <comment>This is a link that will discuss what is and is not possible for Keyboard manager to remap</comment> </data> <data name="FancyZones_Editor_GroupSettings.Header" xml:space="preserve"> <value>Editor</value> <comment>refers to the FancyZone editor</comment> </data> <data name="FancyZones_WindowBehavior_GroupSettings.Header" xml:space="preserve"> <value>Window behavior</value> </data> <data name="FancyZones_WindowBehavior_GroupSettings.Description" xml:space="preserve"> <value>Manage how windows behave when using FancyZones</value> </data> <data name="FancyZones_Windows.Header" xml:space="preserve"> <value>Windows</value> <comment>Do translate: refers to a set of application windows, not the product name</comment> </data> <data name="PowerRename_BehaviorHeader.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="PowerRename_Toggle_UseBoostLib.Header" xml:space="preserve"> <value>Use Boost library</value> <comment>Boost is a product name, should not be translated</comment> </data> <data name="PowerRename_Toggle_UseBoostLib.Description" xml:space="preserve"> <value>Provides extended features but may use different regex syntax</value> <comment>Boost is a product name, should not be translated</comment> </data> <data name="MadeWithOssLove.Text" xml:space="preserve"> <value>Made with 💗 by Microsoft and the PowerToys community.</value> </data> <data name="ColorPicker_ColorFormats.Header" xml:space="preserve"> <value>Color formats</value> </data> <data name="ColorPicker_ColorFormats.Description" xml:space="preserve"> <value>Configure the color formats (edit, delete, hide, reorder them)</value> </data> <data name="MoveUp.Text" xml:space="preserve"> <value>Move up</value> </data> <data name="MoveDown.Text" xml:space="preserve"> <value>Move down</value> </data> <data name="ColorPickerAddNewFormat.Content" xml:space="preserve"> <value>Add new format</value> </data> <data name="NewColorFormat.Header" xml:space="preserve"> <value>Format</value> </data> <data name="NewColorName.Header" xml:space="preserve"> <value>Name</value> </data> <data name="AddCustomColorFormat" xml:space="preserve"> <value>Add custom color format</value> </data> <data name="ColorFormatSave" xml:space="preserve"> <value>Save</value> </data> <data name="EditCustomColorFormat" xml:space="preserve"> <value>Edit custom color format</value> </data> <data name="ColorFormatUpdate" xml:space="preserve"> <value>Update</value> </data> <data name="CustomColorFormatDefaultName" xml:space="preserve"> <value>My Format</value> </data> <data name="ColorFormatDialog.SecondaryButtonText" xml:space="preserve"> <value>Cancel</value> </data> <data name="ColorFormatEditorHelpline1.Text" xml:space="preserve"> <value>The following parameters can be used:</value> </data> <data name="Help_red" xml:space="preserve"> <value>red</value> </data> <data name="Help_green" xml:space="preserve"> <value>green</value> </data> <data name="Help_blue" xml:space="preserve"> <value>blue</value> </data> <data name="Help_alpha" xml:space="preserve"> <value>alpha</value> </data> <data name="Help_cyan" xml:space="preserve"> <value>cyan</value> </data> <data name="Help_magenta" xml:space="preserve"> <value>magenta</value> </data> <data name="Help_yellow" xml:space="preserve"> <value>yellow</value> </data> <data name="Help_black_key" xml:space="preserve"> <value>black key</value> </data> <data name="Help_hue" xml:space="preserve"> <value>hue</value> </data> <data name="Help_hueNat" xml:space="preserve"> <value>hue (natural)</value> </data> <data name="Help_saturationI" xml:space="preserve"> <value>saturation (HSI)</value> </data> <data name="Help_saturationL" xml:space="preserve"> <value>saturation (HSL)</value> </data> <data name="Help_saturationB" xml:space="preserve"> <value>saturation (HSB)</value> </data> <data name="Help_brightness" xml:space="preserve"> <value>brightness</value> </data> <data name="Help_intensity" xml:space="preserve"> <value>intensity</value> </data> <data name="Help_lightnessNat" xml:space="preserve"> <value>lightness (nat)</value> </data> <data name="Help_lightnessCIE" xml:space="preserve"> <value>lightness (CIE)</value> </data> <data name="Help_value" xml:space="preserve"> <value>value</value> </data> <data name="Help_whiteness" xml:space="preserve"> <value>whiteness</value> </data> <data name="Help_blackness" xml:space="preserve"> <value>blackness</value> </data> <data name="Help_chromaticityA" xml:space="preserve"> <value>chromaticityA</value> </data> <data name="Help_chromaticityB" xml:space="preserve"> <value>chromaticityB</value> </data> <data name="Help_X_value" xml:space="preserve"> <value>X value</value> </data> <data name="Help_Y_value" xml:space="preserve"> <value>Y value</value> </data> <data name="Help_Z_value" xml:space="preserve"> <value>Z value</value> </data> <data name="Help_decimal_value_RGB" xml:space="preserve"> <value>decimal value (RGB)</value> </data> <data name="Help_decimal_value_BGR" xml:space="preserve"> <value>decimal value (BGR)</value> </data> <data name="Help_color_name" xml:space="preserve"> <value>color name</value> </data> <data name="ColorFormatEditorHelpline2.Text" xml:space="preserve"> <value>The red, green, blue and alpha values can be formatted to the following formats:</value> </data> <data name="Help_byte" xml:space="preserve"> <value>byte value (default)</value> </data> <data name="Help_hexL1" xml:space="preserve"> <value>hex lowercase one digit</value> </data> <data name="Help_hexU1" xml:space="preserve"> <value>hex uppercase one digit</value> </data> <data name="Help_hexL2" xml:space="preserve"> <value>hex lowercase two digits</value> </data> <data name="Help_hexU2" xml:space="preserve"> <value>hex uppercase two digits</value> </data> <data name="Help_floatWith" xml:space="preserve"> <value>float with leading zero</value> </data> <data name="Help_floatWithout" xml:space="preserve"> <value>float without leading zero</value> </data> <data name="ColorFormatEditorHelpline3.Text" xml:space="preserve"> <value>Example: %ReX means red value in hex uppercase two digits format.</value> </data> <data name="ColorPicker_ShowColorName.Header" xml:space="preserve"> <value>Show color name</value> </data> <data name="ColorPicker_ShowColorName.Description" xml:space="preserve"> <value>This will show the name of the color when picking a color</value> </data> <data name="ImageResizer_DefaultSize_Large" xml:space="preserve"> <value>Large</value> <comment>The size of the image</comment> </data> <data name="ImageResizer_DefaultSize_Medium" xml:space="preserve"> <value>Medium</value> <comment>The size of the image</comment> </data> <data name="ImageResizer_DefaultSize_Phone" xml:space="preserve"> <value>Phone</value> <comment>The size of the image referring to a Mobile Phone typical image size</comment> </data> <data name="ImageResizer_DefaultSize_Small" xml:space="preserve"> <value>Small</value> <comment>The size of the image</comment> </data> <data name="FancyZones_MoveWindowBasedOnRelativePosition_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Windows key + Up, down, left or right arrow key to move windows based on relative position</value> </data> <data name="FancyZones_MoveWindowLeftRightBasedOnZoneIndex_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Windows key + Left or right arrow keys to move windows based on zone index</value> </data> <data name="FancyZones_MoveWindowBasedOnRelativePosition_Description.Text" xml:space="preserve"> <value>Windows key +    or </value> <comment>Do not loc the icons (hex numbers)</comment> </data> <data name="FancyZones_MoveWindowLeftRightBasedOnZoneIndex_Description.Text" xml:space="preserve"> <value>Windows key +  or </value> <comment>Do not loc the icons (hex numbers)</comment> </data> <data name="FancyZones_MoveWindowBasedOnRelativePosition.Text" xml:space="preserve"> <value>Relative position</value> </data> <data name="FancyZones_MoveWindow.Header" xml:space="preserve"> <value>Move windows based on</value> </data> <data name="FancyZones_MoveWindowLeftRightBasedOnZoneIndex.Text" xml:space="preserve"> <value>Zone index</value> </data> <data name="ColorPicker_Editor.Header" xml:space="preserve"> <value>Color formats</value> </data> <data name="FancyZones_OverlappingZonesClosestCenter.Content" xml:space="preserve"> <value>Activate the zone whose center is closest to the cursor</value> </data> <data name="FancyZones_OverlappingZonesLargest.Content" xml:space="preserve"> <value>Activate the largest zone by area</value> </data> <data name="FancyZones_OverlappingZonesPositional.Content" xml:space="preserve"> <value>Split the overlapped area into multiple activation targets</value> </data> <data name="FancyZones_OverlappingZonesSmallest.Content" xml:space="preserve"> <value>Activate the smallest zone by area</value> </data> <data name="FancyZones_OverlappingZones.Header" xml:space="preserve"> <value>When multiple zones overlap</value> </data> <data name="PowerLauncher_Plugins.Header" xml:space="preserve"> <value>Plugins</value> </data> <data name="PowerLauncher_ActionKeyword.Header" xml:space="preserve"> <value>Direct activation command</value> </data> <data name="PowerLauncher_AuthoredBy.Text" xml:space="preserve"> <value>Authored by</value> <comment>example: Authored by Microsoft</comment> </data> <data name="PowerLauncher_IncludeInGlobalResultTitle.Text" xml:space="preserve"> <value>Include in global result</value> </data> <data name="PowerLauncher_IncludeInGlobalResultDescription.Text" xml:space="preserve"> <value>Show results on queries without direct activation command</value> </data> <data name="PowerLauncher_EnablePluginToggle.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Enable plugin</value> </data> <data name="PowerLauncher_EnablePluginToggle.OnContent" xml:space="preserve"> <value>On</value> </data> <data name="PowerLauncher_EnablePluginToggle.OffContent" xml:space="preserve"> <value>Off</value> </data> <data name="Run_AdditionalOptions.Text" xml:space="preserve"> <value>Additional options</value> </data> <data name="Run_NotAccessibleWarning.Title" xml:space="preserve"> <value>Please define an activation command or allow this plugin to be used in the global results.</value> </data> <data name="Run_AllPluginsDisabled.Title" xml:space="preserve"> <value>PowerToys Run can't provide any results without plugins</value> </data> <data name="Run_AllPluginsDisabled.Message" xml:space="preserve"> <value>Enable at least one plugin to get started</value> </data> <data name="Run_PluginUse.Header" xml:space="preserve"> <value>Plugins</value> </data> <data name="Run_PluginUseDescription.Text" xml:space="preserve"> <value>Include or remove plugins from the global results, change the direct activation phrase and configure additional options</value> </data> <data name="Run_PositionAppearance_GroupSettings.Header" xml:space="preserve"> <value>Position &amp; appearance</value> </data> <data name="Run_PositionHeader.Header" xml:space="preserve"> <value>Preferred monitor position</value> <comment>as in Show PowerToys Run on primary monitor</comment> </data> <data name="Run_PositionHeader.Description" xml:space="preserve"> <value>If multiple monitors are in use, PowerToys Run can be launched on the desired monitor</value> <comment>as in Show PowerToys Run on primary monitor</comment> </data> <data name="Run_Radio_Position_Cursor.Content" xml:space="preserve"> <value>Monitor with mouse cursor</value> </data> <data name="Run_Radio_Position_Focus.Content" xml:space="preserve"> <value>Monitor with focused window</value> </data> <data name="Run_Radio_Position_Primary_Monitor.Content" xml:space="preserve"> <value>Primary monitor</value> </data> <data name="Run_PluginsLoading.Text" xml:space="preserve"> <value>Plugins are loading...</value> </data> <data name="ColorPicker_ButtonDown.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Move the color down</value> </data> <data name="ColorPicker_ButtonUp.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Move the color up</value> </data> <data name="FancyZones_FlashZonesOnQuickSwitch.Content" xml:space="preserve"> <value>Flash zones when switching layout</value> </data> <data name="FancyZones_Layouts.Header" xml:space="preserve"> <value>Layouts</value> </data> <data name="FancyZones_QuickLayoutSwitch.Header" xml:space="preserve"> <value>Enable quick layout switch</value> </data> <data name="FancyZones_QuickLayoutSwitch.Description" xml:space="preserve"> <value>Layout-specific shortcuts can be configured in the editor</value> </data> <data name="FancyZones_QuickLayoutSwitch_GroupSettings.Text" xml:space="preserve"> <value>Quick layout switch</value> </data> <data name="Activation_Shortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="Activation_Shortcut.Description" xml:space="preserve"> <value>Customize the shortcut to activate this module</value> </data> <data name="Oobe_GetStarted.Text" xml:space="preserve"> <value>Let's get started!</value> </data> <data name="Oobe_PowerToysDescription.Text" xml:space="preserve"> <value>Welcome to PowerToys! These overviews will help you quickly learn the basics of all our utilities.</value> </data> <data name="Oobe_GettingStarted.Text" xml:space="preserve"> <value>Getting started</value> </data> <data name="Oobe_Launch.Text" xml:space="preserve"> <value>Launch</value> </data> <data name="Launch_ColorPicker.Content" xml:space="preserve"> <value>Launch Color Picker</value> </data> <data name="Oobe_LearnMore.Text" xml:space="preserve"> <value>Learn more about</value> </data> <data name="Oobe_ColorPicker.Description" xml:space="preserve"> <value>Color Picker is a system-wide color selection tool for Windows that enables you to pick colors from any currently running application and automatically copies it in a configurable format to your clipboard.</value> </data> <data name="Oobe_FancyZones.Description" xml:space="preserve"> <value>FancyZones is a window manager that makes it easy to create complex window layouts and quickly position windows into those layouts.</value> </data> <data name="Oobe_FileLocksmith.Description" xml:space="preserve"> <value>File Locksmith lists which processes are using the selected files or directories and allows closing those processes.</value> </data> <data name="Oobe_FileExplorer.Description" xml:space="preserve"> <value>PowerToys introduces add-ons to the Windows File Explorer that will enable files like Markdown (.md), PDF (.pdf), SVG (.svg), STL (.stl), G-code (.gcode) and developer files to be viewed in the preview pane. It introduces File Explorer thumbnail support for a number of these file types as well.</value> </data> <data name="Oobe_ImageResizer.Description" xml:space="preserve"> <value>Image Resizer is a Windows shell extension for simple bulk image-resizing.</value> </data> <data name="Oobe_KBM.Description" xml:space="preserve"> <value>Keyboard Manager allows you to customize the keyboard to be more productive by remapping keys and creating your own keyboard shortcuts.</value> </data> <data name="Oobe_MouseWithoutBorders.Description" xml:space="preserve"> <value>Mouse Without Borders enables using the mouse pointer, keyboard, clipboard and drag and drop between machines in the same local network.</value> </data> <data name="Oobe_PowerRename.Description" xml:space="preserve"> <value>PowerRename enables you to perform simple bulk renaming, searching and replacing file names.</value> </data> <data name="Oobe_Run.Description" xml:space="preserve"> <value>PowerToys Run is a quick launcher for power users that contains some additional features without sacrificing performance.</value> </data> <data name="Oobe_MeasureTool.Description" xml:space="preserve"> <value>Screen Ruler is a quick and easy way to measure pixels on your screen.</value> </data> <data name="Oobe_ShortcutGuide.Description" xml:space="preserve"> <value>Shortcut Guide presents the user with a listing of available shortcuts for the current state of the desktop.</value> </data> <data name="Oobe_VideoConference.Description" xml:space="preserve"> <value>Video Conference Mute allows users to quickly mute the microphone and turn off the camera while on a conference call with a single keystroke, regardless of what application has focus on your computer.</value> </data> <data name="Oobe_MouseUtils.Description" xml:space="preserve"> <value>A collection of utilities to enhance your mouse.</value> <comment>Mouse as in the hardware peripheral</comment> </data> <data name="Oobe_Overview.Description" xml:space="preserve"> <value>Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. Take a moment to preview the various utilities listed or view our comprehensive documentation.</value> </data> <data name="Oobe_Overview_DescriptionLinkText.Text" xml:space="preserve"> <value>Documentation on Microsoft Docs</value> </data> <data name="ReleaseNotes.Content" xml:space="preserve"> <value>Release notes</value> </data> <data name="Oobe_ColorPicker_HowToUse.Text" xml:space="preserve"> <value>to open Color Picker.</value> </data> <data name="Oobe_ColorPicker_TipsAndTricks.Text" xml:space="preserve"> <value>To select a color with more precision, **scroll the mouse wheel** to zoom in.</value> </data> <data name="Oobe_FancyZones_HowToUse.Text" xml:space="preserve"> <value>**Shift** + **drag the window** to snap a window to a zone, and release the window in the desired zone.</value> </data> <data name="Oobe_FancyZones_HowToUse_Shortcut.Text" xml:space="preserve"> <value>to open the FancyZones editor.</value> </data> <data name="Oobe_FancyZones_TipsAndTricks.Text" xml:space="preserve"> <value>Snap a window to multiple zones by holding the **Ctrl** key (while also holding **Shift**) when dragging a window.</value> </data> <data name="Oobe_FileLocksmith_HowToUse.Text" xml:space="preserve"> <value>In File Explorer, right-click one or more selected files and select **What's using this file?** from the context menu.</value> </data> <data name="Oobe_FileLocksmith_TipsAndTricks.Text" xml:space="preserve"> <value>Press the **Restart Elevated** button from the File Locksmith UI to also get information on elevated processes that might be using the files.</value> </data> <data name="Oobe_FileExplorer_HowToEnable.Text" xml:space="preserve"> <value>Select **View** which is located at the top of File Explorer, followed by **Show**, and then **Preview pane**. From there, simply click on one of the supported files in the File Explorer and observe the content on the preview pane!</value> </data> <data name="Oobe_HowToCreateMappings.Text" xml:space="preserve"> <value>How to create mappings</value> </data> <data name="Oobe_HowToEnable.Text" xml:space="preserve"> <value>How to enable</value> </data> <data name="Oobe_HowToLaunch.Text" xml:space="preserve"> <value>How to launch</value> </data> <data name="Oobe_HowToUse.Text" xml:space="preserve"> <value>How to use</value> </data> <data name="Oobe_ImageResizer_HowToLaunch.Text" xml:space="preserve"> <value>In File Explorer, right-click one or more image files and select **Resize pictures** from the context menu.</value> </data> <data name="Oobe_ImageResizer_TipsAndTricks.Text" xml:space="preserve"> <value>Want a custom size? You can add them in the PowerToys Settings!</value> </data> <data name="Oobe_KBM_HowToCreateMappings.Text" xml:space="preserve"> <value>Launch **PowerToys Settings**, navigate to the Keyboard Manager menu, and select either **Remap a key** or **Remap a shortcut**.</value> </data> <data name="Oobe_KBM_TipsAndTricks.Text" xml:space="preserve"> <value>Want to only have a shortcut work for a single application? Use the Target App field when creating the shortcut remapping.</value> </data> <data name="Oobe_MouseWithoutBorders_HowToUse.Text" xml:space="preserve"> <value>Use the Settings screen on each machine to connect to the other machines using the same key. If a connection is not working, it may be necessary to add an exception to the Windows Firewall.</value> </data> <data name="Oobe_MouseWithoutBorders_TipsAndTricks.Text" xml:space="preserve"> <value>Use the service option in Settings to install a service enabling Mouse Without Borders to function even in the lock screen.</value> </data> <data name="Oobe_PowerRename_HowToUse.Text" xml:space="preserve"> <value>In File Explorer, right-click one or more selected files and select **PowerRename** from the context menu.</value> </data> <data name="Oobe_PowerRename_TipsAndTricks.Text" xml:space="preserve"> <value>PowerRename supports searching for files using regular expressions to enable more advanced renaming functionalities.</value> </data> <data name="Oobe_Run_HowToLaunch.Text" xml:space="preserve"> <value>to open Run and just start typing.</value> </data> <data name="Oobe_Run_TipsAndTricks.Text" xml:space="preserve"> <value>PowerToys Run supports various action keys to funnel search queries for a specific subset of results. Typing `&lt;` searches for running processes only, `?` will search only for file, or `.` for installed applications! See PowerToys documentation for the complete set of 'Action Keys' available.</value> </data> <data name="Oobe_ShortcutGuide_HowToLaunch.Text" xml:space="preserve"> <value>to open Shortcut Guide, press it again to close or press **Esc**.</value> </data> <data name="Oobe_TipsAndTricks.Text" xml:space="preserve"> <value>Tips &amp; tricks</value> </data> <data name="Oobe_VideoConference_ToggleMicVid.Text" xml:space="preserve"> <value>to toggle both your microphone and video</value> </data> <data name="Oobe_VideoConference_ToggleMic.Text" xml:space="preserve"> <value>to toggle your microphone</value> </data> <data name="Oobe_VideoConference_PushToTalkMic.Text" xml:space="preserve"> <value>to toggle your microphone until key release</value> </data> <data name="Oobe_VideoConference_ToggleVid.Text" xml:space="preserve"> <value>to toggle your video</value> </data> <data name="Oobe_MeasureTool_Activation.Text" xml:space="preserve"> <value>to bring up the Screen Ruler command bar.</value> </data> <data name="Oobe_MeasureTool_HowToLaunch.Text" xml:space="preserve"> <value>The Bounds mode lets you select a specific area to measure. You can also shift-drag an area to persist in on screen. The various Spacing modes allows tracing similar pixels along horizontal and vertical axes with a customizable pixel tolerance threshold (use settings or mouse wheel to adjust it).</value> </data> <data name="Oobe_MeasureTool.Title" xml:space="preserve"> <value>Screen Ruler</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_ColorPicker.Title" xml:space="preserve"> <value>Color Picker</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_FancyZones.Title" xml:space="preserve"> <value>FancyZones</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_FileLocksmith.Title" xml:space="preserve"> <value>File Locksmith</value> </data> <data name="Oobe_ImageResizer.Title" xml:space="preserve"> <value>Image Resizer</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_KBM.Title" xml:space="preserve"> <value>Keyboard Manager</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_MouseWithoutBorders.Title" xml:space="preserve"> <value>Mouse Without Borders</value> <comment>Product name. Do not localize this string</comment> </data> <data name="Oobe_PowerRename.Title" xml:space="preserve"> <value>PowerRename</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_Run.Title" xml:space="preserve"> <value>PowerToys Run</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_ShortcutGuide.Title" xml:space="preserve"> <value>Shortcut Guide</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_VideoConference.Title" xml:space="preserve"> <value>Video Conference Mute</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_Overview.Title" xml:space="preserve"> <value>Welcome</value> </data> <data name="Oobe_WhatsNew.Text" xml:space="preserve"> <value>What's new</value> </data> <data name="Oobe_WhatsNew_LoadingError.Title" xml:space="preserve"> <value>Couldn't load the release notes.</value> </data> <data name="Oobe_WhatsNew_LoadingError.Message" xml:space="preserve"> <value>Please check your internet connection.</value> </data> <data name="Oobe_WhatsNew_ProxyAuthenticationWarning.Title" xml:space="preserve"> <value>Couldn't load the release notes.</value> </data> <data name="Oobe_WhatsNew_ProxyAuthenticationWarning.Message" xml:space="preserve"> <value>Your proxy server requires authentication.</value> </data> <data name="Oobe_WhatsNew_DetailedReleaseNotesLink.Text" xml:space="preserve"> <value>See more detailed release notes on GitHub</value> <comment>Don't loc "GitHub", it's the name of a product</comment> </data> <data name="OOBE_Settings.Content" xml:space="preserve"> <value>Open Settings</value> </data> <data name="Oobe_NavViewItem.Content" xml:space="preserve"> <value>Welcome to PowerToys</value> <comment>Don't loc "PowerToys"</comment> </data> <data name="Feedback_NavViewItem.Content" xml:space="preserve"> <value>Give feedback</value> </data> <data name="OobeWindow_Title" xml:space="preserve"> <value>Welcome to PowerToys</value> </data> <data name="OobeWindow_TitleTxt.Text" xml:space="preserve"> <value>Welcome to PowerToys</value> </data> <data name="SettingsWindow_Title" xml:space="preserve"> <value>PowerToys Settings</value> <comment>Title of the settings window when running as user</comment> </data> <data name="Awake.ModuleTitle" xml:space="preserve"> <value>Awake</value> </data> <data name="Awake.ModuleDescription" xml:space="preserve"> <value>A convenient way to keep your PC awake on-demand.</value> </data> <data name="Awake_EnableSettingsCard.Header" xml:space="preserve"> <value>Enable Awake</value> <comment>Awake is a product name, do not loc</comment> </data> <data name="Awake_NoKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep using the selected power plan</value> </data> <data name="Awake_IndefiniteKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep awake indefinitely</value> </data> <data name="Awake_TemporaryKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep awake for a time interval</value> </data> <data name="Awake_ExpirableKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep awake until expiration</value> </data> <data name="Awake_DisplaySettingsCard.Header" xml:space="preserve"> <value>Keep screen on</value> </data> <data name="Awake_DisplaySettingsCard.Description" xml:space="preserve"> <value>This setting is only available when keeping the PC awake</value> </data> <data name="Awake_ExpirationSettingsExpander.Description" xml:space="preserve"> <value>Keep custom awake state until a specific date and time</value> </data> <data name="Awake_ModeSettingsCard.Header" xml:space="preserve"> <value>Mode</value> </data> <data name="Awake_BehaviorSettingsGroup.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="Awake_IntervalHoursInput.Header" xml:space="preserve"> <value>Hours</value> </data> <data name="Awake_IntervalMinutesInput.Header" xml:space="preserve"> <value>Minutes</value> </data> <data name="Awake_ExpirationSettingsExpander_Date.Header" xml:space="preserve"> <value>End date</value> </data> <data name="Awake_ExpirationSettingsExpander_Time.Header" xml:space="preserve"> <value>End time</value> </data> <data name="Oobe_Awake.Title" xml:space="preserve"> <value>Awake</value> <comment>Module name, do not loc</comment> </data> <data name="Oobe_Awake.Description" xml:space="preserve"> <value>Awake is a Windows tool designed to keep your PC awake on-demand without having to manage its power settings. This behavior can be helpful when running time-consuming tasks while ensuring that your PC does not go to sleep or turn off its screens.</value> </data> <data name="Oobe_Awake_HowToUse.Text" xml:space="preserve"> <value>Open **PowerToys Settings** and enable Awake</value> </data> <data name="Oobe_Awake_TipsAndTricks.Text" xml:space="preserve"> <value>You can always change modes quickly by **right-clicking the Awake icon** in the system tray.</value> </data> <data name="General_FailedToDownloadTheNewVersion.Title" xml:space="preserve"> <value>An error occurred trying to install this update:</value> </data> <data name="General_InstallNow.Content" xml:space="preserve"> <value>Install now</value> </data> <data name="General_ReadMore.Text" xml:space="preserve"> <value>Read more</value> </data> <data name="General_NewVersionAvailable.Title" xml:space="preserve"> <value>An update is available:</value> </data> <data name="General_Downloading.Text" xml:space="preserve"> <value>Downloading...</value> </data> <data name="General_TryAgainToDownloadAndInstall.Content" xml:space="preserve"> <value>Try again to download and install</value> </data> <data name="General_CheckingForUpdates.Text" xml:space="preserve"> <value>Checking for updates...</value> </data> <data name="General_NewVersionReadyToInstall.Title" xml:space="preserve"> <value>An update is ready to install:</value> </data> <data name="General_UpToDate.Title" xml:space="preserve"> <value>PowerToys is up to date</value> </data> <data name="General_CantCheck.Title" xml:space="preserve"> <value>Network error. Please try again later</value> </data> <data name="General_DownloadAndInstall.Content" xml:space="preserve"> <value>Download &amp; install</value> </data> <data name="ImageResizer_Fit_Fill_ThirdPersonSingular" xml:space="preserve"> <value>Fills</value> </data> <data name="ImageResizer_Fit_Fit_ThirdPersonSingular" xml:space="preserve"> <value>Fits within</value> </data> <data name="ImageResizer_Fit_Stretch_ThirdPersonSingular" xml:space="preserve"> <value>Stretches to</value> </data> <data name="ImageResizer_Unit_Centimeter" xml:space="preserve"> <value>Centimeters</value> </data> <data name="ImageResizer_Unit_Inch" xml:space="preserve"> <value>Inches</value> </data> <data name="ImageResizer_Unit_Percent" xml:space="preserve"> <value>Percent</value> </data> <data name="ImageResizer_Unit_Pixel" xml:space="preserve"> <value>Pixels</value> </data> <data name="EditButton.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Edit</value> </data> <data name="ImageResizer_EditSize.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Edit size</value> </data> <data name="No" xml:space="preserve"> <value>No</value> <comment>Label of a cancel button</comment> </data> <data name="Delete_Dialog_Description" xml:space="preserve"> <value>Are you sure you want to delete this item?</value> </data> <data name="Yes" xml:space="preserve"> <value>Yes</value> <comment>Label of a confirmation button</comment> </data> <data name="SeeWhatsNew.Content" xml:space="preserve"> <value>See what's new</value> </data> <data name="Awake_ModeSettingsCard.Description" xml:space="preserve"> <value>Manage the state of your device when Awake is active</value> </data> <data name="ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="Enable_ColorFormat.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Enable colorformat</value> </data> <data name="More_Options_Button.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>More options</value> </data> <data name="More_Options_ButtonTooltip.Text" xml:space="preserve"> <value>More options</value> </data> <data name="To.Text" xml:space="preserve"> <value>to</value> <comment>as in: from x to y</comment> </data> <data name="LearnMore_Awake.Text" xml:space="preserve"> <value>Learn more about Awake</value> <comment>Awake is a product name, do not loc</comment> </data> <data name="LearnMore_ColorPicker.Text" xml:space="preserve"> <value>Learn more about Color Picker</value> <comment>Color Picker is a product name, do not loc</comment> </data> <data name="LearnMore_FancyZones.Text" xml:space="preserve"> <value>Learn more about FancyZones</value> <comment>FancyZones is a product name, do not loc</comment> </data> <data name="LearnMore_FileLocksmith.Text" xml:space="preserve"> <value>Learn more about File Locksmith</value> </data> <data name="LearnMore_ImageResizer.Text" xml:space="preserve"> <value>Learn more about Image Resizer</value> <comment>Image Resizer is a product name, do not loc</comment> </data> <data name="LearnMore_KBM.Text" xml:space="preserve"> <value>Learn more about Keyboard Manager</value> <comment>Keyboard Manager is a product name, do not loc</comment> </data> <data name="LearnMore_MouseUtils.Text" xml:space="preserve"> <value>Learn more about Mouse utilities</value> <comment>Mouse utilities is a product name, do not loc</comment> </data> <data name="LearnMore_PastePlain.Text" xml:space="preserve"> <value>Learn more about Paste as Plain Text</value> <comment> Paste as Plain Text is the name of the module. </comment> </data> <data name="LearnMore_MouseWithoutBorders.Text" xml:space="preserve"> <value>Learn more about Mouse Without Borders</value> <comment>Mouse Without Borders is the name of the module. </comment> </data> <data name="LearnMore_PowerPreview.Text" xml:space="preserve"> <value>Learn more about File Explorer add-ons</value> <comment>File Explorer is a product name, localize as Windows does</comment> </data> <data name="LearnMore_Peek.Text" xml:space="preserve"> <value>Learn more about Peek</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="LearnMore_PowerRename.Text" xml:space="preserve"> <value>Learn more about PowerRename</value> <comment>PowerRename is a product name, do not loc</comment> </data> <data name="LearnMore_Run.Text" xml:space="preserve"> <value>Learn more about PowerToys Run</value> <comment>PowerToys Run is a product name, do not loc</comment> </data> <data name="LearnMore_MeasureTool.Text" xml:space="preserve"> <value>Learn more about Screen Ruler</value> <comment>Screen Ruler is a product name, do not loc</comment> </data> <data name="LearnMore_ShortcutGuide.Text" xml:space="preserve"> <value>Learn more about Shortcut Guide</value> <comment>Shortcut Guide is a product name, do not loc</comment> </data> <data name="LearnMore_VCM.Text" xml:space="preserve"> <value>Learn more about Video Conference Mute</value> <comment>Video Conference Mute is a product name, do not loc</comment> </data> <data name="Oobe_FileExplorer.Title" xml:space="preserve"> <value>File Explorer add-ons</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_MouseUtils.Title" xml:space="preserve"> <value>Mouse utilities</value> <comment>Mouse as in the hardware peripheral</comment> </data> <data name="Oobe_MouseUtils_FindMyMouse.Text" xml:space="preserve"> <value>Find My Mouse</value> <comment>Mouse as in the hardware peripheral</comment> </data> <data name="Oobe_MouseUtils_FindMyMouse_Description.Text" xml:space="preserve"> <value>Focus the mouse pointer pressing the Ctrl key twice, using a custom shortcut or shaking the mouse.</value> <comment>Mouse as in the hardware peripheral. Key as in a keyboard key</comment> </data> <data name="Oobe_MouseUtils_MouseHighlighter.Text" xml:space="preserve"> <value>Mouse Highlighter</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MouseHighlighter_Description.Text" xml:space="preserve"> <value>Use a keyboard shortcut to highlight left and right mouse clicks.</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MousePointerCrosshairs.Text" xml:space="preserve"> <value>Mouse Pointer Crosshairs</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MousePointerCrosshairs_Description.Text" xml:space="preserve"> <value>Draw crosshairs centered around the mouse pointer.</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MouseJump.Text" xml:space="preserve"> <value>Mouse Jump</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MouseJump_Description.Text" xml:space="preserve"> <value>Jump the mouse pointer quickly to anywhere on your desktop.</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Launch_Run.Content" xml:space="preserve"> <value>Launch PowerToys Run</value> </data> <data name="Launch_ShortcutGuide.Content" xml:space="preserve"> <value>Launch Shortcut Guide</value> </data> <data name="ColorPicker_ColorFormat_ToggleSwitch.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Show format in editor</value> </data> <data name="GeneralPage_Documentation.Text" xml:space="preserve"> <value>Documentation</value> </data> <data name="PowerLauncher_SearchList.PlaceholderText" xml:space="preserve"> <value>Search this list</value> </data> <data name="PowerLauncher_SearchList.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Search this list</value> </data> <data name="Awake.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="ColorPicker.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="General.SecondaryLinksHeader" xml:space="preserve"> <value>Related information</value> </data> <data name="ImageResizer.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="MouseUtils.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="PowerLauncher.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="PowerRename.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="EditTooltip.Text" xml:space="preserve"> <value>Edit</value> </data> <data name="RemoveTooltip.Text" xml:space="preserve"> <value>Remove</value> </data> <data name="Activation_Shortcut_Cancel" xml:space="preserve"> <value>Cancel</value> </data> <data name="Activation_Shortcut_Description" xml:space="preserve"> <value>Press a combination of keys to change this shortcut</value> </data> <data name="Activation_Shortcut_With_Disable_Description" xml:space="preserve"> <value>Press a combination of keys to change this shortcut. Right-click to remove the key combination, thereby deactivating the shortcut.</value> </data> <data name="Activation_Shortcut_Reset" xml:space="preserve"> <value>Reset</value> </data> <data name="Activation_Shortcut_Save" xml:space="preserve"> <value>Save</value> </data> <data name="Activation_Shortcut_Title" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="InvalidShortcut.Title" xml:space="preserve"> <value>Invalid shortcut</value> </data> <data name="InvalidShortcutWarningLabel.Text" xml:space="preserve"> <value>Only shortcuts that start with **Windows key**, **Ctrl**, **Alt** or **Shift** are valid.</value> <comment>The ** sequences are used for text formatting of the key names. Don't remove them on translation.</comment> </data> <data name="FancyZones_SpanZonesAcrossMonitors.Description" xml:space="preserve"> <value>All monitors must have the same DPI scaling and will be treated as one large combined rectangle which contains all monitors</value> </data> <data name="ImageResizer_DefaultSize_NewSizePrefix" xml:space="preserve"> <value>New size</value> <comment>First part of the default name of new sizes that can be added in PT's settings ui.</comment> </data> <data name="Awake_IntervalSettingsCard.Header" xml:space="preserve"> <value>Interval before returning to the previous awakeness state</value> </data> <data name="Awake_ExpirationSettingsExpander.Header" xml:space="preserve"> <value>End date and time</value> </data> <data name="MouseUtils.ModuleTitle" xml:space="preserve"> <value>Mouse utilities</value> </data> <data name="MouseUtils.ModuleDescription" xml:space="preserve"> <value>A collection of mouse utilities.</value> </data> <data name="MouseUtils_FindMyMouse.Header" xml:space="preserve"> <value>Find My Mouse</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_FindMyMouse.Description" xml:space="preserve"> <value>Find My Mouse highlights the position of the cursor when pressing the Ctrl key twice, using a custom shortcut or when shaking the mouse.</value> <comment>"Ctrl" is a keyboard key. "Find My Mouse" is the name of the utility</comment> </data> <data name="MouseUtils_Enable_FindMyMouse.Header" xml:space="preserve"> <value>Enable Find My Mouse</value> <comment>"Find My Mouse" is the name of the utility.</comment> </data> <data name="MouseUtils_FindMyMouse_ActivationMethod.Header" xml:space="preserve"> <value>Activation method</value> </data> <data name="MouseUtils_FindMyMouse_ActivationDoubleControlPress.Content" xml:space="preserve"> <value>Press Left Control twice</value> <comment>Left control is the physical key on the keyboard.</comment> </data> <data name="MouseUtils_FindMyMouse_ActivationShakeMouse.Content" xml:space="preserve"> <value>Shake mouse</value> <comment>Mouse is the hardware peripheral.</comment> </data> <data name="MouseUtils_FindMyMouse_ExcludedApps.Description" xml:space="preserve"> <value>Prevents module activation when an excluded application is the foreground application</value> </data> <data name="MouseUtils_FindMyMouse_ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="MouseUtils_FindMyMouse_ExcludedApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> </data> <data name="MouseUtils_Prevent_Activation_On_Game_Mode.Content" xml:space="preserve"> <value>Do not activate when Game Mode is on</value> <comment>"Game mode" is the Windows feature to prevent notification when playing a game.</comment> </data> <data name="MouseUtils_FindMyMouse_BackgroundColor.Header" xml:space="preserve"> <value>Background color</value> </data> <data name="MouseUtils_FindMyMouse_SpotlightColor.Header" xml:space="preserve"> <value>Spotlight color</value> </data> <data name="MouseUtils_FindMyMouse_OverlayOpacity.Header" xml:space="preserve"> <value>Overlay opacity (%)</value> </data> <data name="MouseUtils_FindMyMouse_SpotlightRadius.Header" xml:space="preserve"> <value>Spotlight radius (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_FindMyMouse_SpotlightInitialZoom.Header" xml:space="preserve"> <value>Spotlight initial zoom</value> </data> <data name="MouseUtils_FindMyMouse_SpotlightInitialZoom.Description" xml:space="preserve"> <value>Spotlight zoom factor at animation start</value> </data> <data name="MouseUtils_FindMyMouse_AnimationDurationMs.Header" xml:space="preserve"> <value>Animation duration (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_FindMyMouse_AnimationDurationMs.Description" xml:space="preserve"> <value>Time before the spotlight appears (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_FindMyMouse_AnimationDurationMs_Disabled.Message" xml:space="preserve"> <value>Animations are disabled by OS. See Settings &gt; Accessibility &gt; Visual effects</value> </data> <data name="MouseUtils_FindMyMouse_ShakingMinimumDistance.Header" xml:space="preserve"> <value>Shake minimum distance</value> </data> <data name="MouseUtils_FindMyMouse_ShakingMinimumDistance.Description" xml:space="preserve"> <value>The minimum distance for mouse shaking activation, for adjusting sensitivity</value> </data> <data name="MouseUtils_MouseHighlighter.Header" xml:space="preserve"> <value>Mouse Highlighter</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_MouseHighlighter.Description" xml:space="preserve"> <value>Mouse Highlighter mode will highlight mouse clicks.</value> <comment>"Mouse Highlighter" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_Enable_MouseHighlighter.Header" xml:space="preserve"> <value>Enable Mouse Highlighter</value> <comment>"Find My Mouse" is the name of the utility.</comment> </data> <data name="MouseUtils_MouseHighlighter_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MouseUtils_MouseHighlighter_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to turn on or off this mode</value> <comment>"Mouse Highlighter" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_MouseHighlighter_PrimaryButtonClickColor.Header" xml:space="preserve"> <value>Primary button highlight color</value> </data> <data name="MouseUtils_MouseHighlighter_SecondaryButtonClickColor.Header" xml:space="preserve"> <value>Secondary button highlight color</value> </data> <data name="MouseUtils_MouseHighlighter_HighlightRadius.Header" xml:space="preserve"> <value>Radius (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDelayMs.Header" xml:space="preserve"> <value>Fade delay (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDelayMs.Description" xml:space="preserve"> <value>Time before the highlight begins to fade (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDurationMs.Header" xml:space="preserve"> <value>Fade duration (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDurationMs.Description" xml:space="preserve"> <value>Duration of the disappear animation (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MousePointerCrosshairs.Header" xml:space="preserve"> <value>Mouse Pointer Crosshairs</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_MousePointerCrosshairs.Description" xml:space="preserve"> <value>Mouse Pointer Crosshairs draws crosshairs centered on the mouse pointer.</value> <comment>"Mouse Pointer Crosshairs" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_Enable_MousePointerCrosshairs.Header" xml:space="preserve"> <value>Enable Mouse Pointer Crosshairs</value> <comment>"Mouse Pointer Crosshairs" is the name of the utility.</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MouseUtils_MousePointerCrosshairs_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to show/hide the crosshairs</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsColor.Header" xml:space="preserve"> <value>Crosshairs color</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsOpacity.Header" xml:space="preserve"> <value>Crosshairs opacity (%)</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsRadius.Header" xml:space="preserve"> <value>Crosshairs center radius (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsThickness.Header" xml:space="preserve"> <value>Crosshairs thickness (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsBorderColor.Header" xml:space="preserve"> <value>Crosshairs border color</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsBorderSize.Header" xml:space="preserve"> <value>Crosshairs border size (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_IsCrosshairsFixedLengthEnabled.Header" xml:space="preserve"> <value>Fix crosshairs length</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsFixedLength.Header" xml:space="preserve"> <value>Crosshairs fixed length (px)</value> <comment>px = pixels</comment> </data> <data name="FancyZones_Radio_Custom_Colors.Content" xml:space="preserve"> <value>Custom colors</value> </data> <data name="FancyZones_Radio_Default_Theme.Content" xml:space="preserve"> <value>Windows default</value> </data> <data name="ColorModeHeader.Header" xml:space="preserve"> <value>App theme</value> </data> <data name="FancyZones_Zone_Appearance.Description" xml:space="preserve"> <value>Customize the way zones look</value> </data> <data name="FancyZones_Zone_Appearance.Header" xml:space="preserve"> <value>Zone appearance</value> </data> <data name="VideoConference_DeprecationWarning.Title" xml:space="preserve"> <value>VCM is moving into legacy mode (maintenance only).</value> </data> <data name="VideoConference_DeprecationWarningButton.Content" xml:space="preserve"> <value>Learn more</value> </data> <data name="LearnMore.Content" xml:space="preserve"> <value>Learn more</value> </data> <data name="VideoConference_RunAsAdminRequired.Title" xml:space="preserve"> <value>You need to run as administrator to modify these settings.</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_GCODE.Header" xml:space="preserve"> <value>Geometric Code</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_GCODE.Description" xml:space="preserve"> <value>Only .gcode files with embedded thumbnails are supported</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_GCODE.Header" xml:space="preserve"> <value>Geometric Code</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_GCODE.Description" xml:space="preserve"> <value>Only .gcode files with embedded thumbnails are supported</value> </data> <data name="FancyZones_NumberColor.Header" xml:space="preserve"> <value>Number color</value> </data> <data name="FancyZones_ShowZoneNumberCheckBoxControl.Content" xml:space="preserve"> <value>Show zone number</value> </data> <data name="ToggleSwitch.OffContent" xml:space="preserve"> <value>Off</value> <comment>The state of a ToggleSwitch when it's off</comment> </data> <data name="ToggleSwitch.OnContent" xml:space="preserve"> <value>On</value> <comment>The state of a ToggleSwitch when it's on</comment> </data> <data name="CropAndLock.ModuleDescription" xml:space="preserve"> <value>Crop And Lock allows you to crop a current application into a smaller window or just create a thumbnail. Focus the target window and press the shortcut to start cropping.</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="CropAndLock.ModuleTitle" xml:space="preserve"> <value>Crop And Lock </value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="CropAndLock_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="CropAndLock_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="Shell_CropAndLock.Content" xml:space="preserve"> <value>Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="LearnMore_CropAndLock.Text" xml:space="preserve"> <value>Learn more about Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="CropAndLock_ReparentActivation_Shortcut.Header" xml:space="preserve"> <value>Reparent shortcut</value> </data> <data name="CropAndLock_ReparentActivation_Shortcut.Description" xml:space="preserve"> <value>Shortcut to crop an application's window into a cropped window. This is experimental and can cause issues with some applications, since the cropped window will contain the original application window.</value> </data> <data name="CropAndLock_ThumbnailActivation_Shortcut.Header" xml:space="preserve"> <value>Thumbnail shortcut</value> </data> <data name="CropAndLock_ThumbnailActivation_Shortcut.Description" xml:space="preserve"> <value>Shortcut to crop and create a thumbnail of another window. The application isn't controllable through the thumbnail but it'll have less compatibility issues. </value> </data> <data name="CropAndLock.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="Oobe_CropAndLock.Title" xml:space="preserve"> <value>Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="Oobe_CropAndLock.Description" xml:space="preserve"> <value>Crop And Lock allows you to crop a current application into a smaller window or just create a thumbnail. Focus the target window and press the shortcut to start cropping.</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="Oobe_CropAndLock_HowToUse_Thumbnail.Text" xml:space="preserve"> <value>to crop and create a thumbnail of another window. The application isn't controllable through the thumbnail but it'll have less compatibility issues.</value> </data> <data name="Oobe_CropAndLock_HowToUse_Reparent.Text" xml:space="preserve"> <value>to crop an application's window into a cropped window. This is experimental and can cause issues with some applications, since the cropped window will contain the original application window.</value> </data> <data name="AlwaysOnTop.ModuleDescription" xml:space="preserve"> <value>Always On Top is a quick and easy way to pin windows on top.</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop.ModuleTitle" xml:space="preserve"> <value>Always On Top </value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="Peek_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="AlwaysOnTop_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_ExcludedApps.Description" xml:space="preserve"> <value>Excludes an application from pinning on top</value> </data> <data name="AlwaysOnTop_ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="AlwaysOnTop_ExcludedApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> </data> <data name="AlwaysOnTop_FrameColor.Header" xml:space="preserve"> <value>Color</value> </data> <data name="AlwaysOnTop_FrameEnabled.Header" xml:space="preserve"> <value>Show a border around the pinned window</value> </data> <data name="AlwaysOnTop_FrameThickness.Header" xml:space="preserve"> <value>Thickness (px)</value> <comment>px = pixels</comment> </data> <data name="AlwaysOnTop_Behavior_GroupSettings.Header" xml:space="preserve"> <value>Appearance &amp; behavior</value> </data> <data name="Shell_AlwaysOnTop.Content" xml:space="preserve"> <value>Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_GameMode.Content" xml:space="preserve"> <value>Do not activate when Game Mode is on</value> <comment>Game Mode is a Windows feature</comment> </data> <data name="AlwaysOnTop_SoundTitle.Header" xml:space="preserve"> <value>Sound</value> </data> <data name="AlwaysOnTop_Sound.Content" xml:space="preserve"> <value>Play a sound when pinning a window</value> </data> <data name="AlwaysOnTop_Behavior.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="LearnMore_AlwaysOnTop.Text" xml:space="preserve"> <value>Learn more about Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="AlwaysOnTop_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to pin or unpin an app window</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="Oobe_AlwaysOnTop.Title" xml:space="preserve"> <value>Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="Oobe_AlwaysOnTop.Description" xml:space="preserve"> <value>Always On Top improves your multitasking workflow by pinning an application window so it's always in front - even when focus changes to another window after that.</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="Oobe_AlwaysOnTop_HowToUse.Text" xml:space="preserve"> <value>to pin or unpin the selected window so it's always on top of all other windows.</value> </data> <data name="Oobe_AlwaysOnTop_TipsAndTricks.Text" xml:space="preserve"> <value>You can tweak the visual outline of the pinned windows in PowerToys settings.</value> </data> <data name="AlwaysOnTop_FrameColor_Mode.Header" xml:space="preserve"> <value>Color mode</value> </data> <data name="AlwaysOnTop_Radio_Custom_Color.Content" xml:space="preserve"> <value>Custom color</value> </data> <data name="AlwaysOnTop_Radio_Windows_Default.Content" xml:space="preserve"> <value>Windows default</value> </data> <data name="FileExplorerPreview.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Monaco_Wrap_Text.Content" xml:space="preserve"> <value>Wrap text</value> <comment>Feature on or off</comment> </data> <data name="FancyZones_AllowPopupWindowSnap.Description" xml:space="preserve"> <value>This setting can affect all popup windows including notifications</value> </data> <data name="FancyZones_AllowPopupWindowSnap.Header" xml:space="preserve"> <value>Allow popup windows snapping</value> </data> <data name="FancyZones_AllowChildWindowSnap.Content" xml:space="preserve"> <value>Allow child windows snapping</value> </data> <data name="Shell_WhatsNew.Content" xml:space="preserve"> <value>What's new</value> </data> <data name="Shell_Peek.Content" xml:space="preserve"> <value>Peek</value> <comment>Product name: Navigation view item name for Peek</comment> </data> <data name="Peek.ModuleTitle" xml:space="preserve"> <value>Peek</value> </data> <data name="Peek.ModuleDescription" xml:space="preserve"> <value>Peek is a quick and easy way to preview files. Select a file in File Explorer and press the shortcut to open the file preview.</value> </data> <data name="Peek_EnablePeek.Header" xml:space="preserve"> <value>Enable Peek</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="Peek_BehaviorHeader.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="Peek_AlwaysRunNotElevated.Header" xml:space="preserve"> <value>Always run not elevated, even when PowerToys is elevated</value> </data> <data name="Peek_AlwaysRunNotElevated.Description" xml:space="preserve"> <value>Tries to run Peek without elevated permissions, to fix access to network shares. You need to disable and re-enable Peek for changes to this value to take effect.</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="Peek_CloseAfterLosingFocus.Header" xml:space="preserve"> <value>Automatically close the Peek window after it loses focus</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="FancyZones_DisableRoundCornersOnWindowSnap.Content" xml:space="preserve"> <value>Disable round corners when window is snapped</value> </data> <data name="PowerLauncher_SearchQueryTuningEnabled.Description" xml:space="preserve"> <value>Fine tune results ordering</value> </data> <data name="PowerLauncher_SearchQueryTuningEnabled.Header" xml:space="preserve"> <value>Results order tuning</value> </data> <data name="PowerLauncher_SearchClickedItemWeight.Description" xml:space="preserve"> <value>Use a higher number to get selected results to rise faster. The default is 5, 0 to disable.</value> </data> <data name="PowerLauncher_SearchClickedItemWeight.Header" xml:space="preserve"> <value>Selected item weight</value> </data> <data name="PowerLauncher_WaitForSlowResults.Description" xml:space="preserve"> <value>Selecting this can help preselect the top, more relevant result, but at the risk of jumpiness</value> </data> <data name="PowerLauncher_WaitForSlowResults.Header" xml:space="preserve"> <value>Wait on slower plugin results before selecting top item in results</value> </data> <data name="PowerLauncher_PluginWeightBoost.Description" xml:space="preserve"> <value>Use a higher number to have this plugin's result show higher in the global results. Default is 0.</value> </data> <data name="PowerLauncher_PluginWeightBoost.Header" xml:space="preserve"> <value>Global sort order score modifier</value> </data> <data name="AlwaysOnTop_RoundCorners.Content" xml:space="preserve"> <value>Enable round corners</value> </data> <data name="LearnMore_QuickAccent.Text" xml:space="preserve"> <value>Learn more about Quick Accent</value> <comment>Quick Accent is a product name, do not loc</comment> </data> <data name="QuickAccent_EnableQuickAccent.Header" xml:space="preserve"> <value>Enable Quick Accent</value> </data> <data name="Shell_QuickAccent.Content" xml:space="preserve"> <value>Quick Accent</value> </data> <data name="QuickAccent.ModuleDescription" xml:space="preserve"> <value>Quick Accent is an alternative way to type accented characters, useful for when a keyboard doesn't support that specific accent. Activate by holding the key for the character you want to add an accent to, then press the activation key (space, left or right arrow keys) and an overlay to select accented characters will appear!</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent.ModuleTitle" xml:space="preserve"> <value>Quick Accent</value> </data> <data name="QuickAccent.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> </data> <data name="AlwaysOnTop_ShortDescription" xml:space="preserve"> <value>Pin a window</value> </data> <data name="Awake_ShortDescription" xml:space="preserve"> <value>Keep your PC awake</value> </data> <data name="ColorPicker_ShortDescription" xml:space="preserve"> <value>Pick a color</value> </data> <data name="CropAndLock_Thumbnail" xml:space="preserve"> <value>Thumbnail</value> </data> <data name="CropAndLock_Reparent" xml:space="preserve"> <value>Reparent</value> </data> <data name="FancyZones_OpenEditor" xml:space="preserve"> <value>Open editor</value> </data> <data name="FileLocksmith_ShortDescription" xml:space="preserve"> <value>Right-click on files or directories to show running processes</value> </data> <data name="FindMyMouse_ShortDescription" xml:space="preserve"> <value>Find the mouse</value> </data> <data name="ImageResizer_ShortDescription" xml:space="preserve"> <value>Select Image Resizer in the right-click context menu</value> </data> <data name="MouseHighlighter_ShortDescription" xml:space="preserve"> <value>Highlight clicks</value> </data> <data name="MouseJump_ShortDescription" xml:space="preserve"> <value>Quickly move the mouse pointer</value> </data> <data name="MouseCrosshairs_ShortDescription" xml:space="preserve"> <value>Draw crosshairs centered on the mouse pointer</value> </data> <data name="MouseWithoutBorders_ShortDescription" xml:space="preserve"> <value>Move your cursor across multiple devices</value> </data> <data name="PastePlain_ShortDescription" xml:space="preserve"> <value>Paste clipboard content without formatting</value> </data> <data name="Peek_ShortDescription" xml:space="preserve"> <value>Quick and easy previewer</value> </data> <data name="PowerRename_ShortDescription" xml:space="preserve"> <value>Select Power Rename in right-click context menu</value> </data> <data name="Run_ShortDescription" xml:space="preserve"> <value>A quick launcher</value> </data> <data name="PowerAccent_ShortDescription" xml:space="preserve"> <value>An alternative way to type accented characters</value> </data> <data name="RegistryPreview_ShortDescription" xml:space="preserve"> <value>Visualize and edit Windows Registry files</value> </data> <data name="ScreenRuler_ShortDescription" xml:space="preserve"> <value>Measure pixels on your screen</value> </data> <data name="ShortcutGuide_ShortDescription" xml:space="preserve"> <value>Show a help overlay with Windows shortcuts</value> </data> <data name="PowerOcr_ShortDescription" xml:space="preserve"> <value>A convenient way to copy text from anywhere on screen</value> </data> <data name="Dashboard_Activation" xml:space="preserve"> <value>Activation</value> </data> <data name="DashboardKBMShowMappingsButton.Content" xml:space="preserve"> <value>Show remappings</value> </data> <data name="Oobe_QuickAccent.Description" xml:space="preserve"> <value>Quick Accent is an easy way to write letters with accents, like on a smartphone.</value> </data> <data name="Oobe_QuickAccent.Title" xml:space="preserve"> <value>Quick Accent</value> </data> <data name="Oobe_QuickAccent_HowToUse.Text" xml:space="preserve"> <value>Open **PowerToys Settings** and enable Quick Accent. While holding the key for the character you want to add an accent to, press the Activation Key and an overlay to select the accented character will appear.</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="QuickAccent_Activation_Shortcut.Header" xml:space="preserve"> <value>Activation key</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent_Activation_Shortcut.Description" xml:space="preserve"> <value>Press this key after holding down the target letter</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent_Activation_Key_Arrows.Content" xml:space="preserve"> <value>Left/Right Arrow</value> <comment>Left/Right arrow keyboard keys</comment> </data> <data name="QuickAccent_Activation_Key_Space.Content" xml:space="preserve"> <value>Space</value> <comment>Space is the space keyboard key</comment> </data> <data name="QuickAccent_Activation_Key_Either.Content" xml:space="preserve"> <value>Left, Right or Space</value> <comment>All are keys on a keyboard</comment> </data> <data name="QuickAccent_Toolbar.Header" xml:space="preserve"> <value>Toolbar</value> </data> <data name="QuickAccent_ToolbarPosition.Header" xml:space="preserve"> <value>Toolbar position</value> </data> <data name="QuickAccent_ToolbarPosition_TopCenter.Content" xml:space="preserve"> <value>Top center</value> </data> <data name="QuickAccent_ToolbarPosition_TopLeftCorner.Content" xml:space="preserve"> <value>Top left corner</value> </data> <data name="QuickAccent_ToolbarPosition_TopRightCorner.Content" xml:space="preserve"> <value>Top right corner</value> </data> <data name="QuickAccent_ToolbarPosition_BottomLeftCorner.Content" xml:space="preserve"> <value>Bottom left corner</value> </data> <data name="QuickAccent_ToolbarPosition_BottomCenter.Content" xml:space="preserve"> <value>Bottom center</value> </data> <data name="QuickAccent_ToolbarPosition_BottomRightCorner.Content" xml:space="preserve"> <value>Bottom right corner</value> </data> <data name="QuickAccent_ToolbarPosition_Center.Content" xml:space="preserve"> <value>Center</value> </data> <data name="QuickAccent_ToolbarPosition_Left.Content" xml:space="preserve"> <value>Left</value> </data> <data name="QuickAccent_ToolbarPosition_Right.Content" xml:space="preserve"> <value>Right</value> </data> <data name="QuickAccent_Behavior.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="QuickAccent_InputTimeMs.Header" xml:space="preserve"> <value>Input delay (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="QuickAccent_InputTimeMs.Description" xml:space="preserve"> <value>Hold the key down for this much time to make the accent menu appear (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="QuickAccent_ExcludedApps.Description" xml:space="preserve"> <value>Prevents module activation if a foreground application is excluded. Add one application name per line.</value> </data> <data name="QuickAccent_ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="QuickAccent_ExcludedApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: Teams.exe</value> </data> <data name="LearnMore_TextExtractor.Text" xml:space="preserve"> <value>Learn more about Text Extractor</value> </data> <data name="TextExtractor_Cancel" xml:space="preserve"> <value>cancel</value> </data> <data name="General_SettingsBackupAndRestore_NothingToBackup" xml:space="preserve"> <value>A new backup was not created because no settings have been changed since last backup.</value> </data> <data name="General_SettingsBackupAndRestore_NoBackupFound" xml:space="preserve"> <value>No backup found</value> </data> <data name="General_SettingsBackupAndRestore_FailedToParseTime" xml:space="preserve"> <value>Failed to parse time</value> </data> <data name="General_SettingsBackupAndRestore_UnknownBackupTime" xml:space="preserve"> <value>Unknown</value> </data> <data name="General_SettingsBackupAndRestore_UnknownBackupSource" xml:space="preserve"> <value>Unknown</value> </data> <data name="General_SettingsBackupAndRestore_ThisMachine" xml:space="preserve"> <value>This computer</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsMatch" xml:space="preserve"> <value>Current settings match</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsStatusAt" xml:space="preserve"> <value>at</value> <comment>E.g., Food was served 'at' noon.</comment> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsDiffer" xml:space="preserve"> <value>Current settings differ</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsNoChecked" xml:space="preserve"> <value>Checking...</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsUnknown" xml:space="preserve"> <value>Unknown</value> </data> <data name="General_SettingsBackupAndRestore_NeverRestored" xml:space="preserve"> <value>Never restored</value> </data> <data name="General_SettingsBackupAndRestore_NothingToRestore" xml:space="preserve"> <value>Nothing to restore.</value> </data> <data name="General_SettingsBackupAndRestore_NoSettingsFilesFound" xml:space="preserve"> <value>No settings files found.</value> </data> <data name="General_SettingsBackupAndRestore_BackupError" xml:space="preserve"> <value>There was an error. Try another backup location.</value> </data> <data name="General_SettingsBackupAndRestore_SettingsFormatError" xml:space="preserve"> <value>There was an error in the settings format. Please check the settings file:</value> </data> <data name="General_SettingsBackupAndRestore_BackupComplete" xml:space="preserve"> <value>Backup completed.</value> </data> <data name="General_SettingsBackupAndRestore_NoBackupSyncPath" xml:space="preserve"> <value>No backup location selected.</value> </data> <data name="General_SettingsBackupAndRestore_NoBackupsFound" xml:space="preserve"> <value>No backups found to restore.</value> </data> <data name="General_SettingsBackupAndRestore_InvalidBackupLocation" xml:space="preserve"> <value>Invalid backup location.</value> </data> <data name="TextExtractor.ModuleDescription" xml:space="preserve"> <value>Text Extractor is a convenient way to copy text from anywhere on screen</value> </data> <data name="TextExtractor.ModuleTitle" xml:space="preserve"> <value>Text Extractor</value> </data> <data name="TextExtractor_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Text Extractor</value> </data> <data name="TextExtractor_SupportedLanguages.Title" xml:space="preserve"> <value>Text Extractor can only recognize languages that have the OCR pack installed.</value> </data> <data name="TextExtractor_SupportedLanguages_Link.Content" xml:space="preserve"> <value>Learn more about supported languages</value> </data> <data name="Shell_TextExtractor.Content" xml:space="preserve"> <value>Text Extractor</value> </data> <data name="Launch_TextExtractor.Content" xml:space="preserve"> <value>Launch Text Extractor</value> </data> <data name="Oobe_TextExtractor.Title" xml:space="preserve"> <value>Text Extractor</value> </data> <data name="Oobe_TextExtractor_HowToUse.Text" xml:space="preserve"> <value>to open Text Extractor and then selecting a region to copy the text from.</value> </data> <data name="Oobe_TextExtractor_TipsAndTricks.Text" xml:space="preserve"> <value>Hold the shift key to move the selection region around.</value> </data> <data name="TextExtractor.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> </data> <data name="Oobe_TextExtractor.Description" xml:space="preserve"> <value>Text Extractor works like Snipping Tool, but copies the text out of the selected region using OCR and puts it on the clipboard.</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Monaco_Try_Format.Description" xml:space="preserve"> <value>Applies to json and xml. Files remain unchanged.</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Monaco_Try_Format.Header" xml:space="preserve"> <value>Try to format the source for preview</value> </data> <data name="Run_ConflictingKeywordInfo.Title" xml:space="preserve"> <value>Some characters and phrases may conflict with global queries of other plugins if you use them as activation command.</value> </data> <data name="Run_ConflictingKeywordInfo_Link.Content" xml:space="preserve"> <value>Learn more about conflicting activation commands</value> </data> <data name="MeasureTool_ContinuousCapture_Information.Title" xml:space="preserve"> <value>The continuous capture mode will consume more resources when in use. Also, measurements will be excluded from screenshots and screen capture.</value> <comment>pointer as in mouse pointer. Resources refer to things like CPU, GPU, RAM</comment> </data> <data name="QuickAccent_Description_Indicator.Header" xml:space="preserve"> <value>Show the Unicode code and name of the currently selected character</value> </data> <data name="QuickAccent_SortByUsageFrequency_Indicator.Header" xml:space="preserve"> <value>Sort characters by usage frequency</value> </data> <data name="QuickAccent_SortByUsageFrequency_Indicator.Description" xml:space="preserve"> <value>Track characters usage frequency and sort them accordingly</value> </data> <data name="QuickAccent_StartSelectionFromTheLeft_Indicator.Header" xml:space="preserve"> <value>Start selection from the left</value> </data> <data name="QuickAccent_StartSelectionFromTheLeft_Indicator.Description" xml:space="preserve"> <value>Start selection from the leftmost character for all activation keys, including left and right arrows</value> </data> <data name="QuickAccent_DisableFullscreen.Header" xml:space="preserve"> <value>Disable when Game Mode is On</value> </data> <data name="QuickAccent_Language.Header" xml:space="preserve"> <value>Characters</value> </data> <data name="QuickAccent_SelectedLanguage.Header" xml:space="preserve"> <value>Choose a character set</value> </data> <data name="QuickAccent_SelectedLanguage.Description" xml:space="preserve"> <value>Show only accented characters common to the selected set</value> </data> <data name="QuickAccent_SelectedLanguage_All.Content" xml:space="preserve"> <value>All available</value> </data> <data name="QuickAccent_SelectedLanguage_Catalan.Content" xml:space="preserve"> <value>Catalan</value> </data> <data name="QuickAccent_SelectedLanguage_Currency.Content" xml:space="preserve"> <value>Currency</value> </data> <data name="QuickAccent_SelectedLanguage_Croatian.Content" xml:space="preserve"> <value>Croatian</value> </data> <data name="QuickAccent_SelectedLanguage_Czech.Content" xml:space="preserve"> <value>Czech</value> </data> <data name="QuickAccent_SelectedLanguage_Gaeilge.Content" xml:space="preserve"> <value>Gaeilge</value> <comment>Gaelic language spoken in Ireland</comment> </data> <data name="QuickAccent_SelectedLanguage_Gaidhlig.Content" xml:space="preserve"> <value>Gàidhlig</value> <comment>Scottish Gaelic</comment> </data> <data name="QuickAccent_SelectedLanguage_German.Content" xml:space="preserve"> <value>German</value> </data> <data name="QuickAccent_SelectedLanguage_Hebrew.Content" xml:space="preserve"> <value>Hebrew</value> </data> <data name="QuickAccent_SelectedLanguage_French.Content" xml:space="preserve"> <value>French</value> </data> <data name="QuickAccent_SelectedLanguage_Estonian.Content" xml:space="preserve"> <value>Estonian</value> </data> <data name="QuickAccent_SelectedLanguage_Lithuanian.Content" xml:space="preserve"> <value>Lithuanian</value> </data> <data name="QuickAccent_SelectedLanguage_Macedonian.Content" xml:space="preserve"> <value>Macedonian</value> </data> <data name="QuickAccent_SelectedLanguage_Maori.Content" xml:space="preserve"> <value>Maori</value> </data> <data name="QuickAccent_SelectedLanguage_Dutch.Content" xml:space="preserve"> <value>Dutch</value> </data> <data name="QuickAccent_SelectedLanguage_Norwegian.Content" xml:space="preserve"> <value>Norwegian</value> </data> <data name="QuickAccent_SelectedLanguage_Pinyin.Content" xml:space="preserve"> <value>Pinyin</value> </data> <data name="QuickAccent_SelectedLanguage_Polish.Content" xml:space="preserve"> <value>Polish</value> </data> <data name="QuickAccent_SelectedLanguage_Portuguese.Content" xml:space="preserve"> <value>Portuguese</value> </data> <data name="QuickAccent_SelectedLanguage_Slovakian.Content" xml:space="preserve"> <value>Slovakian</value> </data> <data name="QuickAccent_SelectedLanguage_Spanish.Content" xml:space="preserve"> <value>Spanish</value> </data> <data name="QuickAccent_SelectedLanguage_Swedish.Content" xml:space="preserve"> <value>Swedish</value> </data> <data name="QuickAccent_SelectedLanguage_Turkish.Content" xml:space="preserve"> <value>Turkish</value> </data> <data name="QuickAccent_SelectedLanguage_Icelandic.Content" xml:space="preserve"> <value>Icelandic</value> </data> <data name="QuickAccent_SelectedLanguage_Romanian.Content" xml:space="preserve"> <value>Romanian</value> </data> <data name="QuickAccent_SelectedLanguage_Serbian.Content" xml:space="preserve"> <value>Serbian</value> </data> <data name="QuickAccent_SelectedLanguage_Hungarian.Content" xml:space="preserve"> <value>Hungarian</value> </data> <data name="QuickAccent_SelectedLanguage_Italian.Content" xml:space="preserve"> <value>Italian</value> </data> <data name="QuickAccent_SelectedLanguage_Kurdish.Content" xml:space="preserve"> <value>Kurdish</value> </data> <data name="QuickAccent_SelectedLanguage_Welsh.Content" xml:space="preserve"> <value>Welsh</value> </data> <data name="Hosts.ModuleDescription" xml:space="preserve"> <value>Quick and simple utility for managing hosts file.</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Hosts.ModuleTitle" xml:space="preserve"> <value>Hosts File Editor</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Shell_Hosts.Content" xml:space="preserve"> <value>Hosts File Editor</value> <comment>Products name: Navigation view item name for Hosts File Editor</comment> </data> <data name="Hosts_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Hosts_Toggle_ShowStartupWarning.Header" xml:space="preserve"> <value>Show a warning at startup</value> </data> <data name="Hosts_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="Hosts_LaunchButtonControl.Description" xml:space="preserve"> <value>Manage your hosts file</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Hosts_LaunchButtonControl.Header" xml:space="preserve"> <value>Launch Host File Editor</value> <comment>"Host File Editor" is a product name</comment> </data> <data name="Hosts_LaunchButton_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Launch Host File Editor</value> <comment>"Host File Editor" is a product name</comment> </data> <data name="Hosts_AdditionalLinesPosition.Header" xml:space="preserve"> <value>Position of additional content</value> </data> <data name="Hosts_AdditionalLinesPosition_Bottom.Content" xml:space="preserve"> <value>Bottom</value> </data> <data name="Hosts_AdditionalLinesPosition_Top.Content" xml:space="preserve"> <value>Top</value> </data> <data name="Hosts_Behavior_GroupSettings.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="Launch_Hosts.Content" xml:space="preserve"> <value>Launch Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="LearnMore_Hosts.Text" xml:space="preserve"> <value>Learn more about Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Oobe_Hosts.Description" xml:space="preserve"> <value>Hosts File Editor is a quick and simple utility for managing hosts file.</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Oobe_Hosts.Title" xml:space="preserve"> <value>Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Hosts_Toggle_LaunchAdministrator.Description" xml:space="preserve"> <value>Needs to be launched as administrator in order to make changes to the hosts file</value> </data> <data name="Hosts_Toggle_LaunchAdministrator.Header" xml:space="preserve"> <value>Launch as administrator</value> </data> <data name="ShortcutGuide_PressTimeForTaskbarIconShortcuts.Header" xml:space="preserve"> <value>Press duration before showing taskbar icon shortcuts (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="FileLocksmith.ModuleDescription" xml:space="preserve"> <value>A Windows shell extension to find out which processes are using the selected files and directories.</value> </data> <data name="FileLocksmith.ModuleTitle" xml:space="preserve"> <value>File Locksmith</value> </data> <data name="Shell_FileLocksmith.Content" xml:space="preserve"> <value>File Locksmith</value> <comment>Product name: Navigation view item name for FileLocksmith</comment> </data> <data name="FileLocksmith_Enable_FileLocksmith.Header" xml:space="preserve"> <value>Enable File Locksmith</value> <comment>File Locksmith is the name of the utility</comment> </data> <data name="FileLocksmith_Toggle_StandardContextMenu.Content" xml:space="preserve"> <value>Default and extended context menu</value> </data> <data name="FileLocksmith_Toggle_ExtendedContextMenu.Content" xml:space="preserve"> <value>Extended context menu only</value> </data> <data name="FileLocksmith_Toggle_ContextMenu.Header" xml:space="preserve"> <value>Show File Locksmith in</value> </data> <data name="FileLocksmith_ShellIntegration.Header" xml:space="preserve"> <value>Shell integration</value> <comment>This refers to directly integrating in with Windows</comment> </data> <data name="GPO_IsSettingForced.Title" xml:space="preserve"> <value>This setting is enforced by your System Administrator.</value> </data> <data name="Hosts_AdditionalLinesPosition.Description" xml:space="preserve"> <value>Additional content includes the file header and lines that can't parse</value> </data> <data name="TextExtractor_Languages.Header" xml:space="preserve"> <value>Preferred language</value> </data> <data name="Alternate_OOBE_AlwaysOnTop_Description.Text" xml:space="preserve"> <value>Pin a window so that:</value> </data> <data name="Alternate_OOBE_AlwaysOnTop_Title.Text" xml:space="preserve"> <value>Always On Top</value> </data> <data name="Alternate_OOBE_ColorPicker_Description.Text" xml:space="preserve"> <value>To pick a color:</value> </data> <data name="Alternate_OOBE_ColorPicker_Title.Text" xml:space="preserve"> <value>Color Picker</value> </data> <data name="Alternate_OOBE_Description.Text" xml:space="preserve"> <value>Here are a few shortcuts to get you started:</value> </data> <data name="Alternate_OOBE_FancyZones_Description.Text" xml:space="preserve"> <value>To open the FancyZones editor, press:</value> </data> <data name="Alternate_OOBE_FancyZones_Title.Text" xml:space="preserve"> <value>FancyZones</value> </data> <data name="Alternate_OOBE_Run_Description.Text" xml:space="preserve"> <value>Get access to your files and more:</value> </data> <data name="Alternate_OOBE_Run_Title.Text" xml:space="preserve"> <value>PowerToys Run</value> </data> <data name="General_Experimentation.Header" xml:space="preserve"> <value>Experimentation</value> </data> <data name="GeneralPage_EnableExperimentation.Description" xml:space="preserve"> <value>Note: Only Windows Insider builds may be selected for experimentation</value> </data> <data name="GeneralPage_EnableExperimentation.Header" xml:space="preserve"> <value>Allow experimentation with new features</value> </data> <data name="GPO_ExperimentationIsDisallowed.Title" xml:space="preserve"> <value>The system administrator has disabled experimentation.</value> </data> <data name="Shell_PastePlain.Content" xml:space="preserve"> <value>Paste As Plain Text</value> <comment>Product name: Navigation view item name for Paste as Plain Text</comment> </data> <data name="PastePlain.ModuleDescription" xml:space="preserve"> <value>Paste As Plain Text is a quick shortcut for pasting the text contents of your clipboard without formatting. Note: the formatted text in the clipboard is replaced with the unformatted text.</value> </data> <data name="PastePlain.ModuleTitle" xml:space="preserve"> <value>Paste As Plain Text</value> </data> <data name="PastePlain_Cancel" xml:space="preserve"> <value>cancel</value> </data> <data name="PastePlain_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Paste As Plain Text</value> </data> <data name="Oobe_PastePlain.Description" xml:space="preserve"> <value>Paste As Plain Text strips rich formatting from your clipboard data and pastes it as non-formatted text.</value> </data> <data name="Oobe_PastePlain.Title" xml:space="preserve"> <value>Paste As Plain Text</value> </data> <data name="Oobe_PastePlain_HowToUse.Text" xml:space="preserve"> <value>to paste your clipboard data as plain text. Note: this will replace the formatted text in your clipboard with the plain text.</value> </data> <data name="AllAppsTxt.Text" xml:space="preserve"> <value>All apps</value> </data> <data name="BackBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Back</value> </data> <data name="BackLabel.Text" xml:space="preserve"> <value>Back</value> </data> <data name="BugReportBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Bug report</value> </data> <data name="BugReportTooltip.Text" xml:space="preserve"> <value>Bug report</value> </data> <data name="DocsBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Documentation</value> </data> <data name="DocsTooltip.Text" xml:space="preserve"> <value>Documentation</value> </data> <data name="FZEditorString" xml:space="preserve"> <value>FancyZones Editor</value> <comment>Do not localize this string</comment> </data> <data name="MoreBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>More</value> </data> <data name="MoreLabel.Text" xml:space="preserve"> <value>More</value> </data> <data name="SettingsBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Settings</value> </data> <data name="SettingsTooltip.Text" xml:space="preserve"> <value>Settings</value> </data> <data name="ShortcutsTxt.Text" xml:space="preserve"> <value>Shortcuts</value> </data> <data name="UpdateAvailable.Title" xml:space="preserve"> <value>Update available</value> </data> <data name="FileExplorerPreview_Toggle_Monaco_Max_File_Size.Header" xml:space="preserve"> <value>Maximum file size to preview</value> <comment>Size refers to the disk space used by a file</comment> </data> <data name="FileExplorerPreview_Toggle_Monaco_Max_File_Size.Description" xml:space="preserve"> <value>The maximum size, in kilobytes, for files to be displayed. This is a safety mechanism to prevent loading large files into RAM.</value> <comment>"RAM" refers to random access memory; "size" refers to disk space; "bytes" refer to the measurement unit</comment> </data> <data name="RegistryPreview.ModuleDescription" xml:space="preserve"> <value>A quick little utility to visualize and edit complex Windows Registry files.</value> </data> <data name="RegistryPreview.ModuleTitle" xml:space="preserve"> <value>Registry Preview</value> </data> <data name="Shell_RegistryPreview.Content" xml:space="preserve"> <value>Registry Preview</value> <comment>Product name: Navigation view item name for Registry Preview</comment> </data> <data name="RegistryPreview_Enable_RegistryPreview.Header" xml:space="preserve"> <value>Enable Registry Preview</value> <comment>Registry Preview is the name of the utility</comment> </data> <data name="Oobe_RegistryPreview_HowToUse.Text" xml:space="preserve"> <value>In File Explorer, right-click a .REG file and select **Preview** from the context menu.</value> </data> <data name="Oobe_RegistryPreview_TipsAndTricks.Text" xml:space="preserve"> <value>You can preview or edit Registry files in File Explorer or by opening the app from the PowerToys launcher.</value> </data> <data name="Oobe_RegistryPreview.Description" xml:space="preserve"> <value>Registry Preview is a quick little utility to visualize and edit complex Windows Registry files.</value> </data> <data name="Oobe_RegistryPreview.Title" xml:space="preserve"> <value>Registry Preview</value> <comment>Do not localize this string</comment> </data> <data name="LearnMore_RegistryPreview.Text" xml:space="preserve"> <value>Learn more about Registry Preview</value> <comment>Registry Preview is a product name, do not loc</comment> </data> <data name="Launch_RegistryPreview.Content" xml:space="preserve"> <value>Launch Registry Preview</value> <comment>"Registry Preview" is the name of the utility</comment> </data> <data name="MouseUtils_MouseJump.Description" xml:space="preserve"> <value>Quickly move the mouse pointer long distances.</value> <comment>"Mouse Jump" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_MouseJump.Header" xml:space="preserve"> <value>Mouse Jump</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_MouseJump_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to turn on or off this mode</value> </data> <data name="MouseUtils_MouseJump_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MouseUtils_Enable_MouseJump.Header" xml:space="preserve"> <value>Enable Mouse Jump</value> <comment>"Mouse Jump" is the name of the utility.</comment> </data> <data name="GPO_AutoDownloadUpdatesIsDisabled.Title" xml:space="preserve"> <value>The system administrator has disabled the automatic download of updates.</value> </data> <data name="Hosts_Toggle_LoopbackDuplicates.Description" xml:space="preserve"> <value>127.0.0.1, ::1, ...</value> <comment>"127.0.0.1 and ::1" are well known loopback addresses, do not loc</comment> </data> <data name="Hosts_Toggle_LoopbackDuplicates.Header" xml:space="preserve"> <value>Consider loopback addresses as duplicates</value> </data> <data name="RegistryPreview_Launch_GroupSettings.Header" xml:space="preserve"> <value>Launch</value> </data> <data name="RegistryPreview_LaunchButton_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Launch Registry Preview</value> </data> <data name="RegistryPreview_LaunchButtonControl.Header" xml:space="preserve"> <value>Launch Registry Preview</value> </data> <data name="RegistryPreview_DefaultRegApp.Header" xml:space="preserve"> <value>Default app</value> </data> <data name="RegistryPreview_DefaultRegApp.Description" xml:space="preserve"> <value>Make Registry Preview default app for opening .reg files</value> <comment>Registry Preview is app name. Do not localize.</comment> </data> <data name="PastePlain_ShortcutWarning.Title" xml:space="preserve"> <value>Using this shortcut may prevent non-text paste actions (e.g. images, files) or built-in paste plain text actions in other applications from functioning.</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize.Header" xml:space="preserve"> <value>Thumbnail Size</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Description_Prefix.Text" xml:space="preserve"> <value>Constrain thumbnail image size to a maximum of</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Description_Suffix.Text" xml:space="preserve"> <value>pixels</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Edit_Height.Header" xml:space="preserve"> <value>Maximum height (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Edit_Width.Header" xml:space="preserve"> <value>Maximum width (px)</value> <comment>px = pixels</comment> </data> <data name="Oobe_Peek.Description" xml:space="preserve"> <value>A lightning fast file preview feature for Windows.</value> </data> <data name="Oobe_Peek.Title" xml:space="preserve"> <value>Peek</value> </data> <data name="Oobe_Peek_HowToUse.Text" xml:space="preserve"> <value>to preview the file that's currently selected in File Explorer.</value> </data> <data name="MWB_PCNameLabel.PlaceholderText" xml:space="preserve"> <value>Device name</value> </data> <data name="MWB_SecurityKeyLabel.PlaceholderText" xml:space="preserve"> <value>Security key</value> </data> <data name="Hosts_Encoding.Description" xml:space="preserve"> <value>Choose the encoding of the hosts file</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Hosts_Encoding.Header" xml:space="preserve"> <value>Encoding</value> </data> <data name="Hosts_Encoding_Utf8.Content" xml:space="preserve"> <value>UTF-8</value> </data> <data name="Hosts_Encoding_Utf8Bom.Content" xml:space="preserve"> <value>UTF-8 with BOM</value> </data> <data name="MouseUtils_MouseHighlighter_AlwaysColor.Header" xml:space="preserve"> <value>Always highlight color</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsAutoHide.Content" xml:space="preserve"> <value>Automatically hide crosshairs when the mouse pointer is hidden</value> </data> <data name="MouseUtils_AutoActivate.Content" xml:space="preserve"> <value>Automatically activate on utility startup</value> </data> <data name="Run_FindMorePlugins.Text" xml:space="preserve"> <value>Find more plugins</value> </data> <data name="Run_PluginUseFindMorePlugins.Content" xml:space="preserve"> <value>Find more plugins</value> </data> <data name="Run_SomePluginsAreGpoManaged.Title" xml:space="preserve"> <value>The system administrator is managing the enabled state of some plugins.</value> </data> <data name="AlwaysOnTop_FrameOpacity.Header" xml:space="preserve"> <value>Opacity (%)</value> </data> <data name="MouseUtils_FindMyMouse_ActivationCustomizedShortcut.Content" xml:space="preserve"> <value>Custom shortcut</value> </data> <data name="MouseUtils_FindMyMouse_ActivationDoubleRightControlPress.Content" xml:space="preserve"> <value>Press Right Control twice</value> <comment>Right control is the physical key on the keyboard.</comment> </data> <data name="MouseUtils_FindMyMouse_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to turn on or off this mode</value> </data> <data name="MouseUtils_FindMyMouse_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="SettingsWindow_AdminTitle" xml:space="preserve"> <value>Administrator: PowerToys Settings</value> <comment>Title of the settings window when running as administrator</comment> </data> <data name="DashboardTitle.Text" xml:space="preserve"> <value>Dashboard</value> </data> <data name="Shell_Dashboard.Content" xml:space="preserve"> <value>Dashboard</value> </data> <data name="GPO_IsSettingForcedText.Text" xml:space="preserve"> <value>This setting is enforced by your System Administrator.</value> </data> <data name="DisabledModules.Text" xml:space="preserve"> <value>Disabled modules</value> </data> <data name="EnabledModules.Text" xml:space="preserve"> <value>Enabled modules</value> </data> </root>
donlaci
8c22f0c48540793452b70d913b2a6a719c881a33
1f936df3ebce73b726ed11c9fa38fd477b4b0fbd
Thanks for the comment. We have decided that we keep the "launch" phrases for now, for this PR and discuss later what should be changed according to the guideline and do the update in a separate PR.
donlaci
358
microsoft/PowerToys
29,023
[Settings] Adding a Dashboard Panel
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request Adding a new Dashboard panel to the settings app. It contains the active modules with a brief description, activation shortcut if present, launch button if reasonable and a quick link button to the module's settings page. The new dashboard panel contains a list of all the modules as well, where the user can toggle the modules' enabled/disabled state. ![Dashboard](https://github.com/microsoft/PowerToys/assets/9866362/a773ff5b-0321-4eb3-9c3d-b5b4df9a25f5) <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [X] **Closes:** #26816 - [ ] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected - [ ] **Tests:** Added/updated and all pass - [ ] **Localization:** All end user facing strings can be localized - [ ] **Dev docs:** Added/updated - [ ] **New binaries:** Added on the required places - [ ] [JSON for signing](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ESRPSigning_core.json) for new binaries - [ ] [WXS for installer](https://github.com/microsoft/PowerToys/blob/main/installer/PowerToysSetup/Product.wxs) for new binaries and localization folder - [ ] [YML for CI pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ci/templates/build-powertoys-steps.yml) for new test projects - [ ] [YML for signed pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/release.yml) - [ ] **Documentation updated:** If checked, please file a pull request on [our docs repo](https://github.com/MicrosoftDocs/windows-uwp/tree/docs/hub/powertoys) and link it here: #xxx <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed Tested locally
null
2023-10-04 18:35:54+00:00
2023-10-20 12:23:25+00:00
src/settings-ui/Settings.UI/Strings/en-us/Resources.resw
<?xml version="1.0" encoding="utf-8"?> <root> <!-- Microsoft ResX Schema Version 2.0 The primary goals of this format is to allow a simple XML format that is mostly human readable. The generation and parsing of the various data types are done through the TypeConverter classes associated with the data types. Example: ... ado.net/XML headers & schema ... <resheader name="resmimetype">text/microsoft-resx</resheader> <resheader name="version">2.0</resheader> <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader> <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader> <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data> <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data> <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64"> <value>[base64 mime encoded serialized .NET Framework object]</value> </data> <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value> <comment>This is a comment</comment> </data> There are any number of "resheader" rows that contain simple name/value pairs. Each data row contains a name, and value. The row also contains a type or mimetype. Type corresponds to a .NET class that support text/value conversion through the TypeConverter architecture. Classes that don't support this are serialized and stored with the mimetype set. The mimetype is used for serialized objects, and tells the ResXResourceReader how to depersist the object. This is currently not extensible. For a given mimetype the value must be set accordingly: Note - application/x-microsoft.net.object.binary.base64 is the format that the ResXResourceWriter will generate, however the reader can read any of the formats listed below. mimetype: application/x-microsoft.net.object.binary.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.soap.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Soap.SoapFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.bytearray.base64 value : The object must be serialized into a byte array : using a System.ComponentModel.TypeConverter : and then encoded with base64 encoding. --> <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> <xsd:import namespace="http://www.w3.org/XML/1998/namespace" /> <xsd:element name="root" msdata:IsDataSet="true"> <xsd:complexType> <xsd:choice maxOccurs="unbounded"> <xsd:element name="metadata"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" /> </xsd:sequence> <xsd:attribute name="name" use="required" type="xsd:string" /> <xsd:attribute name="type" type="xsd:string" /> <xsd:attribute name="mimetype" type="xsd:string" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="assembly"> <xsd:complexType> <xsd:attribute name="alias" type="xsd:string" /> <xsd:attribute name="name" type="xsd:string" /> </xsd:complexType> </xsd:element> <xsd:element name="data"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" /> <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="resheader"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" /> </xsd:complexType> </xsd:element> </xsd:choice> </xsd:complexType> </xsd:element> </xsd:schema> <resheader name="resmimetype"> <value>text/microsoft-resx</value> </resheader> <resheader name="version"> <value>2.0</value> </resheader> <resheader name="reader"> <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <resheader name="writer"> <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <data name="Attribution_Rooler.Text" xml:space="preserve"> <value>Inspired by Rooler</value> <comment>Rooler is a name of the tool.</comment> </data> <data name="Shell_VideoConference.Content" xml:space="preserve"> <value>Video Conference Mute</value> <comment>Navigation view item name for Video Conference</comment> </data> <data name="Shell_MeasureTool.Content" xml:space="preserve"> <value>Screen Ruler</value> <comment>Product name: Navigation view item name for Screen Ruler</comment> </data> <data name="MeasureTool.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="MeasureTool.ModuleDescription" xml:space="preserve"> <value>Screen Ruler is a quick and easy way to measure pixels on your screen.</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool.ModuleTitle" xml:space="preserve"> <value>Screen Ruler</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool_ActivationSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="MeasureTool_Settings.Header" xml:space="preserve"> <value>Behavior</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MeasureTool_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to bring up the command bar</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool_DefaultMeasureStyle.Header" xml:space="preserve"> <value>Default measure style</value> </data> <data name="MeasureTool_DefaultMeasureStyle.Description" xml:space="preserve"> <value>The utility will start having the selected style activated</value> </data> <data name="MeasureTool_DefaultMeasureStyle_None.Content" xml:space="preserve"> <value>None</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Bounds.Content" xml:space="preserve"> <value>Bounds</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Spacing.Content" xml:space="preserve"> <value>Spacing</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Horizontal_Spacing.Content" xml:space="preserve"> <value>Horizontal spacing</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Vertical_Spacing.Content" xml:space="preserve"> <value>Vertical spacing</value> </data> <data name="MeasureTool_UnitsOfMeasure.Header" xml:space="preserve"> <value>Units of measurement</value> </data> <data name="MeasureTool_UnitsOfMeasure_Pixels.Content" xml:space="preserve"> <value>Pixels</value> </data> <data name="MeasureTool_UnitsOfMeasure_Inches.Content" xml:space="preserve"> <value>Inches</value> </data> <data name="MeasureTool_UnitsOfMeasure_Centimeters.Content" xml:space="preserve"> <value>Centimeters</value> </data> <data name="MeasureTool_PixelTolerance.Header" xml:space="preserve"> <value>Pixel tolerance for edge detection</value> </data> <data name="MeasureTool_MeasureCrossColor.Header" xml:space="preserve"> <value>Line color</value> </data> <data name="MeasureTool_ContinuousCapture.Header" xml:space="preserve"> <value>Capture screen continuously during measuring</value> </data> <data name="MeasureTool_ContinuousCapture.Description" xml:space="preserve"> <value>Refresh screen contexts in real-time instead of making a screenshot once</value> </data> <data name="MeasureTool_PerColorChannelEdgeDetection.Header" xml:space="preserve"> <value>Per color channel edge detection</value> </data> <data name="MeasureTool_PerColorChannelEdgeDetection.Description" xml:space="preserve"> <value>If enabled, test that all color channels are within a tolerance distance from each other. Otherwise, check that the sum of all color channels differences is smaller than the tolerance.</value> </data> <data name="MeasureTool_DrawFeetOnCross.Header" xml:space="preserve"> <value>Draw feet on cross</value> </data> <data name="MeasureTool_DrawFeetOnCross.Description" xml:space="preserve"> <value>Adds feet to the end of cross lines</value> </data> <data name="MeasureTool_EnableMeasureTool.Header" xml:space="preserve"> <value>Enable Screen Ruler</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MouseWithoutBorders_ActivationSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="MouseWithoutBorders_DeviceLayoutSettings.Header" xml:space="preserve"> <value>Device layout</value> </data> <data name="MouseWithoutBorders_DeviceLayoutSettings.Description" xml:space="preserve"> <value>Drag and drop a machine to rearrange the order.</value> </data> <data name="MouseWithoutBorders_CannotDragDropAsAdmin.Title" xml:space="preserve"> <value>It is not possible to use drag and drop while running PowerToys elevated. As a workaround, please restart PowerToys without elevation to edit the device layout.</value> </data> <data name="MouseWithoutBorders_KeySettings.Header" xml:space="preserve"> <value>Encryption key</value> </data> <data name="MouseWithoutBorders_SecurityKey.Header" xml:space="preserve"> <value>Security key</value> </data> <data name="MouseWithoutBorders_SecurityKey.Description" xml:space="preserve"> <value>The key must be auto generated in one machine by clicking on New Key, then typed in other machines</value> </data> <data name="MouseWithoutBorders_NewKey.Content" xml:space="preserve"> <value>New key</value> </data> <data name="MouseWithoutBorders_CopyMachineName.Text" xml:space="preserve"> <value>Copy to clipboard</value> </data> <data name="MouseWithoutBorders_ReconnectButton.Text" xml:space="preserve"> <value>Refresh connections</value> </data> <data name="MouseWithoutBorders_ReconnectTooltip.Text" xml:space="preserve"> <value>Reestablishes connections with other devices if you are experiencing issues.</value> </data> <data name="MouseWithoutBorders_ThisMachineNameLabel.Header" xml:space="preserve"> <value>Host name of this device</value> </data> <data name="MouseWithoutBorders_Connect.Content" xml:space="preserve"> <value>Connect</value> </data> <data name="MouseWithoutBorders_UninstallService.Header" xml:space="preserve"> <value>Uninstall service</value> </data> <data name="MouseWithoutBorders_UninstallService.Description" xml:space="preserve"> <value>Removes the service from the computer. Needs to run as administrator.</value> </data> <data name="MouseWithoutBorders_Settings.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="MouseWithoutBorders_TroubleShooting.Header" xml:space="preserve"> <value>Troubleshooting</value> </data> <data name="MouseWithoutBorders_AddFirewallRuleButtonControl.Header" xml:space="preserve"> <value>Add a firewall rule for Mouse Without Borders</value> <comment>"Mouse Without Borders" is a product name</comment> </data> <data name="MouseWithoutBorders_AddFirewallRuleButtonControl.Description" xml:space="preserve"> <value>Adding a firewall rule might help solve connection issues.</value> </data> <data name="MouseWithoutBorders_RunAsAdminText.Title" xml:space="preserve"> <value>You need to run as administrator to modify this setting.</value> </data> <data name="MouseWithoutBorders_ServiceUserUninstallWarning.Title" xml:space="preserve"> <value>If PowerToys is installed as a user, uninstalling/upgrading may require the Mouse Without Borders service to be removed manually later.</value> </data> <data name="MouseWithoutBorders_ServiceSettings.Header" xml:space="preserve"> <value>Service</value> </data> <data name="MouseWithoutBorders_Toggle_Enable.Header" xml:space="preserve"> <value>Enable Mouse Without Borders</value> </data> <data name="MouseWithoutBorders.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="MouseWithoutBorders.ModuleDescription" xml:space="preserve"> <value>Mouse Without Borders is a quick and easy way to move your cursor across multiple devices.</value> <comment>"Mouse Without Borders" is the name of the utility</comment> </data> <data name="MouseWithoutBorders.ModuleTitle" xml:space="preserve"> <value>Mouse Without Borders</value> <comment>"Mouse Without Borders" is the name of the utility</comment> </data> <data name="MouseWithoutBorders_UseService.Header" xml:space="preserve"> <value>Use Service</value> </data> <data name="MouseWithoutBorders_UseService.Description" xml:space="preserve"> <value>Runs in service mode, that allows MWB to control remote machines when they're locked. Also allows control of system and administrator applications.</value> </data> <data name="MouseWithoutBorders_MatrixOneRow.Header" xml:space="preserve"> <value>Devices in a single row</value> </data> <data name="MouseWithoutBorders_MatrixOneRow.Description" xml:space="preserve"> <value>Sets whether the devices are aligned on a single row. A two by two matrix is considered otherwise.</value> </data> <data name="MouseWithoutBorders_WrapMouse.Header" xml:space="preserve"> <value>Wrap mouse</value> </data> <data name="MouseWithoutBorders_WrapMouse.Description" xml:space="preserve"> <value>Move control back to the first machine when mouse moves past the last one.</value> </data> <data name="MouseWithoutBorders_ShareClipboard.Header" xml:space="preserve"> <value>Share clipboard</value> </data> <data name="MouseWithoutBorders_TransferFile.Header" xml:space="preserve"> <value>Transfer file</value> </data> <data name="MouseWithoutBorders_HideMouseAtScreenEdge.Header" xml:space="preserve"> <value>Hide mouse at the screen edge</value> </data> <data name="MouseWithoutBorders_DrawMouseCursor.Header" xml:space="preserve"> <value>Draw mouse cursor</value> </data> <data name="MouseWithoutBorders_ValidateRemoteMachineIP.Header" xml:space="preserve"> <value>Validate remote machine IP</value> </data> <data name="MouseWithoutBorders_SameSubnetOnly.Header" xml:space="preserve"> <value>Same subnet only</value> </data> <data name="MouseWithoutBorders_BlockScreenSaverOnOtherMachines.Header" xml:space="preserve"> <value>Block screen saver on other machines</value> </data> <data name="MouseWithoutBorders_MoveMouseRelatively.Header" xml:space="preserve"> <value>Move mouse relatively</value> </data> <data name="MouseWithoutBorders_BlockMouseAtScreenCorners.Header" xml:space="preserve"> <value>Block mouse at screen corners</value> </data> <data name="MouseWithoutBorders_ShowClipboardAndNetworkStatusMessages.Header" xml:space="preserve"> <value>Show clipboard and network status messages</value> </data> <data name="MouseWithoutBorders_ShowOriginalUI.Header" xml:space="preserve"> <value>Show the original Mouse Without Borders UI</value> </data> <data name="MouseWithoutBorders_ShowOriginalUI.Description" xml:space="preserve"> <value>This is accessible from the system tray and requires a restart.</value> </data> <data name="MouseWithoutBorders_ShareClipboard.Description" xml:space="preserve"> <value>If share clipboard stops working, Ctrl+Alt+Del then Esc may solve the problem.</value> </data> <data name="MouseWithoutBorders_TransferFile.Description" xml:space="preserve"> <value>If a file (&lt;100MB) is copied, it will be transferred to the remote machine clipboard.</value> </data> <data name="MouseWithoutBorders_HideMouseAtScreenEdge.Description" xml:space="preserve"> <value>Hide the mouse cursor at the top edge of the screen when switching to other machine. This option also steals the focus from any full-screen app to ensure the keyboard input is redirected.</value> </data> <data name="MouseWithoutBorders_DrawMouseCursor.Description" xml:space="preserve"> <value>Mouse cursor may not be visible in Windows 10 and later versions of Windows when there is no physical mouse attached.</value> </data> <data name="MouseWithoutBorders_ValidateRemoteMachineIP.Description" xml:space="preserve"> <value>Reverse DNS lookup to validate machine IP Address.</value> </data> <data name="MouseWithoutBorders_SameSubnetOnly.Description" xml:space="preserve"> <value>Only connect to machines in the same intranet NNN.NNN.*.* (only works when both machines have IPv4 enabled)</value> </data> <data name="MouseWithoutBorders_IPAddressMapping_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: MyLaptop 192.168.0.24</value> <comment>Don't translate MyLaptop</comment> </data> <data name="MouseWithoutBorders_IPAddressMapping.Header" xml:space="preserve"> <value>IP address mapping</value> </data> <data name="MouseWithoutBorders_IPAddressMapping.Description" xml:space="preserve"> <value>Resolve machine's IP address using manually entered mappings below.</value> </data> <data name="MouseWithoutBorders_BlockScreenSaverOnOtherMachines.Description" xml:space="preserve"> <value>Prevent screen saver from starting on other machines when user is actively working on this machine.</value> </data> <data name="MouseWithoutBorders_MoveMouseRelatively.Description" xml:space="preserve"> <value>Use this option when remote machine's monitor settings are different, or remote machine has multiple monitors.</value> </data> <data name="MouseWithoutBorders_BlockMouseAtScreenCorners.Description" xml:space="preserve"> <value>To avoid accident machine-switch at screen corners.</value> </data> <data name="MouseWithoutBorders_ShowClipboardAndNetworkStatusMessages.Description" xml:space="preserve"> <value>Show clipboard activities and network status in system tray notifications</value> </data> <data name="MouseWithoutBorders_KeyboardShortcuts_Group.Header" xml:space="preserve"> <value>Keyboard shortcuts</value> <comment>keyboard is the hardware peripheral</comment> </data> <data name="MouseWithoutBorders_AdvancedSettings_Group.Header" xml:space="preserve"> <value>Advanced Settings</value> </data> <data name="MouseWithoutBorders_EasyMouseOption.Header" xml:space="preserve"> <value>Easy Mouse: move between machines by moving the mouse pointer to the screen edges.</value> </data> <data name="MouseWithoutBorders_EasyMouseOption.Description" xml:space="preserve"> <value>Can also be set to move only when pressing Shift or Ctrl.</value> <comment>Shift and Ctrl are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_EasyMouseOption_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_EasyMouseOption_Enabled.Content" xml:space="preserve"> <value>Enabled</value> </data> <data name="MouseWithoutBorders_EasyMouseOption_Ctrl.Content" xml:space="preserve"> <value>Ctrl</value> <comment>This is the Ctrl keyboard key</comment> </data> <data name="MouseWithoutBorders_EasyMouseOption_Shift.Content" xml:space="preserve"> <value>Shift</value> <comment>This is the Shift keyboard key</comment> </data> <data name="MouseWithoutBorders_LockMachinesShortcut.Header" xml:space="preserve"> <value>Shortcut to lock all machines.</value> </data> <data name="MouseWithoutBorders_LockMachinesShortcut.Description" xml:space="preserve"> <value>Hit this hotkey twice to lock all machines. Note: Only the machines which have the same shortcut configured will be locked.</value> </data> <data name="MouseWithoutBorders_ToggleEasyMouseShortcut.Header" xml:space="preserve"> <value>Shortcut to toggle Easy Mouse.</value> <comment>Ctrl and Alt are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_ToggleEasyMouseShortcut.Description" xml:space="preserve"> <value>Only works if EasyMouse is set to Enabled or Disabled.</value> </data> <data name="MouseWithoutBorders_ToggleEasyMouseShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut.Header" xml:space="preserve"> <value>Shortcut to switch between machines. Ctrl+Alt+:</value> <comment>Ctrl and Alt are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut.Description" xml:space="preserve"> <value>Click on Ctrl+Alt+ the chosen option to switch between machines.</value> <comment>Ctrl and Alt are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut_F1.Content" xml:space="preserve"> <value>F1, F2, F3, F4</value> <comment>Don't localize. These are keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut_1.Content" xml:space="preserve"> <value>1, 2, 3, 4</value> <comment>Don't localize. These are keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_LockMachinesShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_ReconnectShortcut.Header" xml:space="preserve"> <value>Shortcut to try reconnecting</value> </data> <data name="MouseWithoutBorders_ReconnectShortcut.Description" xml:space="preserve"> <value>Just in case the connection is lost for any reason.</value> </data> <data name="MouseWithoutBorders_ReconnectShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut.Header" xml:space="preserve"> <value>Shortcut to switch to multiple machine mode.</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut.Description" xml:space="preserve"> <value>Allows controlling all computers at once.</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut_Ctrl3.Content" xml:space="preserve"> <value>Ctrl three times</value> <comment>This is the Ctrl keyboard key</comment> </data> <data name="VideoConference_Enable.Header" xml:space="preserve"> <value>Enable Video Conference Mute</value> </data> <data name="VideoConference.ModuleDescription" xml:space="preserve"> <value>Video Conference Mute is a quick and easy way to do a global "mute" of both your microphone and webcam. Disabling this module or closing PowerToys will unmute the microphone and camera.</value> </data> <data name="VideoConference_CameraAndMicrophoneMuteHotkeyControl_Header.Header" xml:space="preserve"> <value>Mute camera &amp; microphone</value> </data> <data name="VideoConference_MicrophoneMuteHotkeyControl_Header.Header" xml:space="preserve"> <value>Mute microphone</value> </data> <data name="VideoConference_MicrophonePushToTalkHotkeyControl_Header.Header" xml:space="preserve"> <value>Push to talk</value> </data> <data name="VideoConference_CameraMuteHotkeyControl_Header.Header" xml:space="preserve"> <value>Mute camera</value> </data> <data name="VideoConference_SelectedCamera.Header" xml:space="preserve"> <value>Selected camera</value> </data> <data name="VideoConference_SelectedMicrophone.Header" xml:space="preserve"> <value>Selected microphone</value> </data> <data name="VideoConference_PushToReverse.Header" xml:space="preserve"> <value>Push to reverse</value> </data> <data name="VideoConference_PushToReverse.Description" xml:space="preserve"> <value>If enabled, allows both push to talk and push to mute, depending on microphone state</value> </data> <data name="VideoConference_CameraOverlayImagePathHeader.Header" xml:space="preserve"> <value>Image displayed when camera is muted</value> </data> <data name="VideoConference_ToolbarPosition.Header" xml:space="preserve"> <value>Toolbar position</value> </data> <data name="VideoConference_ToolbarPosition_TopCenter.Content" xml:space="preserve"> <value>Top center</value> </data> <data name="VideoConference_ToolbarPosition_TopLeftCorner.Content" xml:space="preserve"> <value>Top left corner</value> </data> <data name="VideoConference_ToolbarPosition_TopRightCorner.Content" xml:space="preserve"> <value>Top right corner</value> </data> <data name="VideoConference_ToolbarPosition_BottomLeftCorner.Content" xml:space="preserve"> <value>Bottom left corner</value> </data> <data name="VideoConference_ToolbarPosition_BottomCenter.Content" xml:space="preserve"> <value>Bottom center</value> </data> <data name="VideoConference_ToolbarPosition_BottomRightCorner.Content" xml:space="preserve"> <value>Bottom right corner</value> </data> <data name="VideoConference_ToolbarMonitor.Header" xml:space="preserve"> <value>Show toolbar on</value> </data> <data name="VideoConference_ToolbarMonitor_Main.Content" xml:space="preserve"> <value>Main monitor</value> </data> <data name="VideoConference_ToolbarMonitor_UnderCursor.Content" xml:space="preserve"> <value>Monitor under cursor</value> </data> <data name="VideoConference_ToolbarMonitor_ActiveWindow.Content" xml:space="preserve"> <value>Active window monitor</value> </data> <data name="VideoConference_ToolbarMonitor_All.Content" xml:space="preserve"> <value>All monitors</value> </data> <data name="VideoConference_ToolbarHide.Header" xml:space="preserve"> <value>Hide toolbar</value> </data> <data name="VideoConference_ToolbarHideMuted.Content" xml:space="preserve"> <value>When both camera and microphone are muted</value> </data> <data name="VideoConference_ToolbarHideNever.Content" xml:space="preserve"> <value>Never</value> </data> <data name="VideoConference_ToolbarHideUnmuted.Content" xml:space="preserve"> <value>When both camera and microphone are unmuted</value> </data> <data name="VideoConference_ToolbarHideTimeout.Content" xml:space="preserve"> <value>After timeout</value> </data> <data name="VideoConference.ModuleTitle" xml:space="preserve"> <value>Video Conference Mute</value> </data> <data name="VideoConference_Camera.Header" xml:space="preserve"> <value>Camera</value> </data> <data name="VideoConference_Camera.Description" xml:space="preserve"> <value>To use this feature, make sure to select PowerToys VideoConference Mute as your camera source in your apps.</value> </data> <data name="VideoConference_Microphone.Header" xml:space="preserve"> <value>Microphone</value> </data> <data name="VideoConference_Toolbar.Header" xml:space="preserve"> <value>Toolbar</value> </data> <data name="VideoConference_Behavior.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="VideoConference_StartupAction.Header" xml:space="preserve"> <value>Startup action</value> </data> <data name="VideoConference_StartupActionNothing.Content" xml:space="preserve"> <value>Nothing</value> </data> <data name="VideoConference_StartupActionUnmute.Content" xml:space="preserve"> <value>Unmute</value> </data> <data name="VideoConference_StartupActionMute.Content" xml:space="preserve"> <value>Mute</value> </data> <data name="VideoConference_Shortcuts.Header" xml:space="preserve"> <value>Shortcuts</value> </data> <data name="VideoConference_CameraOverlayImageAlt.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Camera overlay image preview</value> </data> <data name="VideoConference_CameraOverlayImageBrowse.Content" xml:space="preserve"> <value>Browse</value> </data> <data name="VideoConference_CameraOverlayImageClear.Content" xml:space="preserve"> <value>Clear</value> </data> <data name="Shell_General.Content" xml:space="preserve"> <value>General</value> <comment>Navigation view item name for General</comment> </data> <data name="Shell_Awake.Content" xml:space="preserve"> <value>Awake</value> <comment>Product name: Navigation view item name for Awake</comment> </data> <data name="Shell_PowerLauncher.Content" xml:space="preserve"> <value>PowerToys Run</value> <comment>Product name: Navigation view item name for PowerToys Run</comment> </data> <data name="Shell_PowerRename.Content" xml:space="preserve"> <value>PowerRename</value> <comment>Product name: Navigation view item name for PowerRename</comment> </data> <data name="Shell_ShortcutGuide.Content" xml:space="preserve"> <value>Shortcut Guide</value> <comment>Product name: Navigation view item name for Shortcut Guide</comment> </data> <data name="Shell_PowerPreview.Content" xml:space="preserve"> <value>File Explorer add-ons</value> <comment>Product name: Navigation view item name for File Explorer. Please use File Explorer as in the context of File Explorer in Windows</comment> </data> <data name="Shell_FancyZones.Content" xml:space="preserve"> <value>FancyZones</value> <comment>Product name: Navigation view item name for FancyZones</comment> </data> <data name="Shell_ImageResizer.Content" xml:space="preserve"> <value>Image Resizer</value> <comment>Product name: Navigation view item name for Image Resizer</comment> </data> <data name="Shell_ColorPicker.Content" xml:space="preserve"> <value>Color Picker</value> <comment>Product name: Navigation view item name for Color Picker</comment> </data> <data name="Shell_KeyboardManager.Content" xml:space="preserve"> <value>Keyboard Manager</value> <comment>Product name: Navigation view item name for Keyboard Manager</comment> </data> <data name="Shell_MouseWithoutBorders.Content" xml:space="preserve"> <value>Mouse Without Borders</value> <comment>Product name: Navigation view item name for Mouse Without Borders</comment> </data> <data name="Shell_MouseUtilities.Content" xml:space="preserve"> <value>Mouse utilities</value> <comment>Product name: Navigation view item name for Mouse utilities</comment> </data> <data name="Shell_NavigationMenu_Announce_Collapse" xml:space="preserve"> <value>Navigation closed</value> <comment>Accessibility announcement when the navigation pane collapses</comment> </data> <data name="Shell_NavigationMenu_Announce_Open" xml:space="preserve"> <value>Navigation opened</value> <comment>Accessibility announcement when the navigation pane opens</comment> </data> <data name="KeyboardManager_ConfigHeader.Text" xml:space="preserve"> <value>Current configuration</value> <comment>Keyboard Manager current configuration header</comment> </data> <data name="KeyboardManager.ModuleDescription" xml:space="preserve"> <value>Reconfigure your keyboard by remapping keys and shortcuts</value> <comment>Keyboard Manager page description</comment> </data> <data name="KeyboardManager_EnableToggle.Header" xml:space="preserve"> <value>Enable Keyboard Manager</value> <comment>Keyboard Manager enable toggle header. Do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="KeyboardManager_ProfileDescription.Text" xml:space="preserve"> <value>Select the profile to display the active key remap and shortcuts</value> <comment>Keyboard Manager configuration dropdown description</comment> </data> <data name="KeyboardManager_RemapKeyboardButton.Header" xml:space="preserve"> <value>Remap a key</value> <comment>Keyboard Manager remap keyboard button content</comment> </data> <data name="KeyboardManager_Keys.Header" xml:space="preserve"> <value>Keys</value> <comment>Keyboard Manager remap keyboard header</comment> </data> <data name="KeyboardManager_RemapShortcutsButton.Header" xml:space="preserve"> <value>Remap a shortcut</value> <comment>Keyboard Manager remap shortcuts button</comment> </data> <data name="KeyboardManager_Shortcuts.Header" xml:space="preserve"> <value>Shortcuts</value> <comment>Keyboard Manager remap keyboard header</comment> </data> <data name="KeyboardManager_All_Apps_Description" xml:space="preserve"> <value>All Apps</value> <comment>Should be the same as EditShortcuts_AllApps from keyboard manager editor</comment> </data> <data name="Shortcuts.Header" xml:space="preserve"> <value>Shortcuts</value> </data> <data name="Shortcut.Header" xml:space="preserve"> <value>Shortcut</value> </data> <data name="RemapKeysList.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Current Key Remappings</value> </data> <data name="RemapShortcutsList.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Current Shortcut Remappings</value> </data> <data name="KeyboardManager_RemappedKeysListItem.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Key Remapping</value> <comment>key as in keyboard key</comment> </data> <data name="KeyboardManager_RemappedShortcutsListItem.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Shortcut Remapping</value> </data> <data name="KeyboardManager_RemappedTo.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Remapped to</value> </data> <data name="KeyboardManager_ShortcutRemappedTo.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Remapped to</value> </data> <data name="KeyboardManager_TargetApp.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>For Target Application</value> <comment>What computer application would this be for</comment> </data> <data name="KeyboardManager_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Keyboard Manager</value> <comment>do not loc, product name</comment> </data> <data name="ColorPicker.ModuleDescription" xml:space="preserve"> <value>Quick and simple system-wide color picker.</value> </data> <data name="ColorPicker_EnableColorPicker.Header" xml:space="preserve"> <value>Enable Color Picker</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="ColorPicker_ChangeCursor.Content" xml:space="preserve"> <value>Change cursor when picking a color</value> </data> <data name="PowerLauncher.ModuleDescription" xml:space="preserve"> <value>A quick launcher that has additional capabilities without sacrificing performance.</value> </data> <data name="PowerLauncher_EnablePowerLauncher.Header" xml:space="preserve"> <value>Enable PowerToys Run</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="PowerLauncher_SearchResults.Header" xml:space="preserve"> <value>Search &amp; results</value> </data> <data name="PowerLauncher_SearchResultPreference.Header" xml:space="preserve"> <value>Search result preference</value> </data> <data name="PowerLauncher_UsePinyin.Header" xml:space="preserve"> <value>Use Pinyin</value> </data> <data name="PowerLauncher_UsePinyin.Description" xml:space="preserve"> <value>Experimental: Use Pinyin on the search query. May not work for every plugin.</value> </data> <data name="PowerLauncher_SearchResultPreference_MostRecentlyUsed" xml:space="preserve"> <value>Most recently used</value> </data> <data name="PowerLauncher_SearchResultPreference_AlphabeticalOrder" xml:space="preserve"> <value>Alphabetical order</value> </data> <data name="PowerLauncher_SearchResultPreference_RunningProcessesOpenApplications" xml:space="preserve"> <value>Running processes/open applications</value> </data> <data name="PowerLauncher_SearchTypePreference.Header" xml:space="preserve"> <value>Search type preference</value> </data> <data name="PowerLauncher_SearchTypePreference_ApplicationName" xml:space="preserve"> <value>Application name</value> </data> <data name="PowerLauncher_SearchTypePreference_StringInApplication" xml:space="preserve"> <value>A string that is contained in the application</value> </data> <data name="PowerLauncher_SearchTypePreference_ExecutableName" xml:space="preserve"> <value>Executable name</value> </data> <data name="PowerLauncher_MaximumNumberOfResults.Header" xml:space="preserve"> <value>Number of results shown before scrolling</value> </data> <data name="PowerLauncher_OpenPowerLauncher.Header" xml:space="preserve"> <value>Open PowerToys Run</value> </data> <data name="PowerLauncher_OpenFileLocation.Header" xml:space="preserve"> <value>Open file location</value> </data> <data name="PowerLauncher_CopyPathLocation.Header" xml:space="preserve"> <value>Copy path location</value> </data> <data name="PowerLauncher_OpenConsole.Header" xml:space="preserve"> <value>Open console</value> <comment>console refers to Windows command prompt</comment> </data> <data name="PowerLauncher_OverrideWinRKey.Content" xml:space="preserve"> <value>Override Win+R shortcut</value> </data> <data name="PowerLauncher_OverrideWinSKey.Content" xml:space="preserve"> <value>Override Win+S shortcut</value> </data> <data name="PowerLauncher_IgnoreHotkeysInFullScreen.Content" xml:space="preserve"> <value>Ignore shortcuts in fullscreen mode</value> </data> <data name="PowerLauncher_UseCentralizedKeyboardHook.Header" xml:space="preserve"> <value>Use centralized keyboard hook</value> </data> <data name="PowerLauncher_UseCentralizedKeyboardHook.Description" xml:space="preserve"> <value>Try this if there are issues with the shortcut (PowerToys Run might not get focus when triggered from an elevated window)</value> </data> <data name="PowerLauncher_ClearInputOnLaunch.Content" xml:space="preserve"> <value>Clear the previous query on launch</value> </data> <data name="PowerLauncher_TabSelectsContextButtons.Header" xml:space="preserve"> <value>Tab through context buttons</value> </data> <data name="PowerLauncher_TabSelectsContextButtons.Description" xml:space="preserve"> <value>Pressing tab will first select through the available context buttons of the current selection before moving onto the next result</value> </data> <data name="PowerLauncher_GenerateThumbnailsFromFiles.Header" xml:space="preserve"> <value>Generate thumbnails from files</value> </data> <data name="PowerLauncher_GenerateThumbnailsFromFiles.Description" xml:space="preserve"> <value>Results will try to generate thumbnails for files. Disabling this setting may increase stability and speed</value> </data> <data name="PowerLauncher_SearchQueryResultsWithDelay.Header" xml:space="preserve"> <value>Input Smoothing</value> <comment>This is about adding a delay to wait for more input before executing a search</comment> </data> <data name="PowerLauncher_SearchQueryResultsWithDelay.Description" xml:space="preserve"> <value>Wait for more input before searching. This reduces interface jumpiness and system load.</value> </data> <data name="PowerLauncher_FastSearchInputDelayMs.Header" xml:space="preserve"> <value>Immediate plugins</value> </data> <data name="PowerLauncher_FastSearchInputDelayMs.Description" xml:space="preserve"> <value>Affects the plugins that make the UI wait for their results by this amount. Recommended: 30-50 ms.</value> </data> <data name="PowerLauncher_SlowSearchInputDelayMs.Header" xml:space="preserve"> <value>Background execution plugins</value> </data> <data name="PowerLauncher_SlowSearchInputDelayMs.Description" xml:space="preserve"> <value>Affects the plugins that execute in the background by this amount. Recommended: 100-150 ms.</value> </data> <data name="PowerLauncher_SearchInputDelayMs.Header" xml:space="preserve"> <value>Fast plugin throttle (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="KeyboardManager_KeysMappingLayoutRightHeader.Text" xml:space="preserve"> <value>To:</value> <comment>Keyboard Manager mapping keys view right header</comment> </data> <data name="Appearance_GroupSettings.Text" xml:space="preserve"> <value>Appearance</value> </data> <data name="Fancyzones_ImageHyperlinkToDocs.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>FancyZones windows</value> <comment>do not loc the Product name</comment> </data> <data name="FancyZones.ModuleDescription" xml:space="preserve"> <value>Create window layouts to help make multi-tasking easy.</value> <comment>windows refers to application windows</comment> </data> <data name="FancyZones_DisplayOrWorkAreaChangeMoveWindowsCheckBoxControl.Content" xml:space="preserve"> <value>Keep windows in their zones when the screen resolution or work area changes</value> <comment>windows refers to application windows</comment> </data> <data name="FancyZones_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable FancyZones</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="FancyZones_ExcludeApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="FancyZones_ExcludeApps.Description" xml:space="preserve"> <value>Excludes an application from snapping to zones and will only react to Windows Snap - add one application name per line</value> </data> <data name="FancyZones_HighlightOpacity.Header" xml:space="preserve"> <value>Opacity (%)</value> </data> <data name="FancyZones_HotkeyEditorControl.Header" xml:space="preserve"> <value>Open layout editor</value> <comment>Shortcut to launch the FancyZones layout editor application</comment> </data> <data name="FancyZones_WindowSwitching_GroupSettings.Header" xml:space="preserve"> <value>Switch between windows in the current zone</value> </data> <data name="FancyZones_HotkeyNextTabControl.Header" xml:space="preserve"> <value>Next window</value> </data> <data name="FancyZones_HotkeyPrevTabControl.Header" xml:space="preserve"> <value>Previous window</value> </data> <data name="SettingsPage_SetShortcut.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Shortcut setting</value> </data> <data name="SettingsPage_SetShortcut_Glyph.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Information Symbol</value> </data> <data name="FancyZones_LaunchEditorButtonControl.Header" xml:space="preserve"> <value>Launch layout editor</value> <comment>launches the FancyZones layout editor application</comment> </data> <data name="FancyZones_LaunchEditorButtonControl.Description" xml:space="preserve"> <value>Set and manage your layouts</value> <comment>launches the FancyZones layout editor application</comment> </data> <data name="FancyZones_MakeDraggedWindowTransparentCheckBoxControl.Content" xml:space="preserve"> <value>Make dragged window transparent</value> </data> <data name="FancyZones_MouseDragCheckBoxControl_Header.Content" xml:space="preserve"> <value>Use a non-primary mouse button to toggle zone activation</value> </data> <data name="FancyZones_MouseMiddleClickSpanningMultipleZonesCheckBoxControl_Header.Content" xml:space="preserve"> <value>Use middle-click mouse button to toggle multiple zones spanning</value> </data> <data name="FancyZones_MoveWindowsAcrossAllMonitorsCheckBoxControl.Content" xml:space="preserve"> <value>Move windows between zones across all monitors</value> </data> <data name="FancyZones_OverrideSnapHotkeys.Header" xml:space="preserve"> <value>Override Windows Snap</value> </data> <data name="FancyZones_OverrideSnapHotkeys.Description" xml:space="preserve"> <value>This overrides the Windows Snap shortcut (Win + arrow) to move windows between zones</value> </data> <data name="FancyZones_ShiftDragCheckBoxControl_Header.Content" xml:space="preserve"> <value>Hold Shift key to activate zones while dragging</value> </data> <data name="FancyZones_ShowZonesOnAllMonitorsCheckBoxControl.Content" xml:space="preserve"> <value>Show zones on all monitors while dragging a window</value> </data> <data name="FancyZones_AppLastZoneMoveWindows.Content" xml:space="preserve"> <value>Move newly created windows to their last known zone</value> <comment>windows refers to application windows</comment> </data> <data name="FancyZones_OpenWindowOnActiveMonitor.Content" xml:space="preserve"> <value>Move newly created windows to the current active monitor (Experimental)</value> </data> <data name="FancyZones_UseCursorPosEditorStartupScreen.Header" xml:space="preserve"> <value>Launch editor on the display</value> </data> <data name="FancyZones_UseCursorPosEditorStartupScreen.Description" xml:space="preserve"> <value>When using multiple displays</value> </data> <data name="FancyZones_LaunchPositionMouse.Content" xml:space="preserve"> <value>Where the mouse pointer is</value> </data> <data name="FancyZones_LaunchPositionScreen.Content" xml:space="preserve"> <value>With active focus</value> </data> <data name="FancyZones_ZoneBehavior_GroupSettings.Header" xml:space="preserve"> <value>Zone behavior</value> </data> <data name="FancyZones_ZoneBehavior_GroupSettings.Description" xml:space="preserve"> <value>Manage how zones behave when using FancyZones</value> </data> <data name="FancyZones_Zones.Header" xml:space="preserve"> <value>Zones</value> </data> <data name="FancyZones_ZoneHighlightColor.Header" xml:space="preserve"> <value>Highlight color</value> </data> <data name="FancyZones_ZoneSetChangeMoveWindows.Content" xml:space="preserve"> <value>During zone layout changes, windows assigned to a zone will match new size/positions</value> </data> <data name="AttributionTitle.Text" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="General.ModuleTitle" xml:space="preserve"> <value>General</value> </data> <data name="GeneralPage_CheckForUpdates.Content" xml:space="preserve"> <value>Check for updates</value> </data> <data name="General_SettingsBackupAndRestoreLocationText.Header" xml:space="preserve"> <value>Location</value> </data> <data name="General_SettingsBackupAndRestore_ButtonBackup.Content" xml:space="preserve"> <value>Backup</value> </data> <data name="General_SettingsBackupInfo_FileNameHeader.Text" xml:space="preserve"> <value>File name:</value> </data> <data name="General_SettingsBackupAndRestore_LinkRefresh.Text" xml:space="preserve"> <value>Refresh</value> </data> <data name="General_SettingsBackupAndRestore_ButtonRestore.Content" xml:space="preserve"> <value>Restore</value> </data> <data name="General_SettingsBackupAndRestore_ButtonSelectLocation.Text" xml:space="preserve"> <value>Select folder</value> </data> <data name="GeneralPage_UpdateNow.Content" xml:space="preserve"> <value>Update now</value> </data> <data name="GeneralPage_PrivacyStatement_URL.Text" xml:space="preserve"> <value>Privacy statement</value> </data> <data name="GeneralPage_ReportAbug.Text" xml:space="preserve"> <value>Report a bug</value> <comment>Report an issue inside powertoys</comment> </data> <data name="GeneralPage_RequestAFeature_URL.Text" xml:space="preserve"> <value>Request a feature</value> <comment>Tell our team what we should build</comment> </data> <data name="GeneralPage_RestartAsAdmin_Button.Content" xml:space="preserve"> <value>Restart PowerToys as administrator</value> <comment>running PowerToys as a higher level user, account is typically referred to as an admin / administrator</comment> </data> <data name="GeneralPage_RunAtStartUp.Header" xml:space="preserve"> <value>Run at startup</value> </data> <data name="GeneralPage_RunAtStartUp.Description" xml:space="preserve"> <value>PowerToys will launch automatically</value> </data> <data name="PowerRename.ModuleDescription" xml:space="preserve"> <value>A Windows Shell extension for more advanced bulk renaming using search &amp; replace or regular expressions.</value> </data> <data name="PowerRename_ShellIntegration.Header" xml:space="preserve"> <value>Shell integration</value> <comment>This refers to directly integrating in with Windows</comment> </data> <data name="PowerRename_Toggle_Enable.Header" xml:space="preserve"> <value>Enable PowerRename</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="RadioButtons_Name_Theme.Text" xml:space="preserve"> <value>Settings theme</value> </data> <data name="PowerRename_Toggle_HideIcon.Content" xml:space="preserve"> <value>Hide icon in context menu</value> </data> <data name="PowerRename_Toggle_ContextMenu.Header" xml:space="preserve"> <value>Show PowerRename in</value> </data> <data name="PowerRename_Toggle_StandardContextMenu.Content" xml:space="preserve"> <value>Default and extended context menu</value> </data> <data name="PowerRename_Toggle_ExtendedContextMenu.Content" xml:space="preserve"> <value>Extended context menu only</value> </data> <data name="ExtendedContextMenuInfo.Title" xml:space="preserve"> <value>Press Shift + right-click on files to open the extended context menu</value> </data> <data name="PowerRename_Toggle_MaxDispListNum.Header" xml:space="preserve"> <value>Maximum number of items</value> </data> <data name="PowerRename_Toggle_RestoreFlagsOnLaunch.Header" xml:space="preserve"> <value>Show recently used strings</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_MD.Header" xml:space="preserve"> <value>Markdown</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_MD.Description" xml:space="preserve"> <value>.md, .markdown, .mdown, .mkdn, .mkd, .mdwn, .mdtxt, .mdtext</value> <comment>File extensions, should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_Monaco.Header" xml:space="preserve"> <value>Source code files (Monaco)</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_Monaco.Description" xml:space="preserve"> <value>.cpp, .py, .json, .xml, .csproj, ...</value> <comment>File extensions should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_SVG.Header" xml:space="preserve"> <value>Scalable Vector Graphics</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_SVG.Description" xml:space="preserve"> <value>.svg</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_Preview_SVG_Color_Mode.Header" xml:space="preserve"> <value>Color mode</value> </data> <data name="FileExplorerPreview_Preview_SVG_Color_Mode_Default.Content" xml:space="preserve"> <value>Windows default</value> </data> <data name="FileExplorerPreview_Preview_SVG_Color_Solid_Color.Content" xml:space="preserve"> <value>Solid color</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade.Content" xml:space="preserve"> <value>Checkered pattern</value> </data> <data name="FileExplorerPreview_Preview_SVG_Background_Color.Header" xml:space="preserve"> <value>Color</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_Mode.Header" xml:space="preserve"> <value>Checkered shade</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_1.Content" xml:space="preserve"> <value>Light</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_2.Content" xml:space="preserve"> <value>Medium</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_3.Content" xml:space="preserve"> <value>Dark</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_PDF.Header" xml:space="preserve"> <value>Portable Document Format</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_PDF.Description" xml:space="preserve"> <value>.pdf</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_SVG.Header" xml:space="preserve"> <value>Scalable Vector Graphics</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_SVG.Description" xml:space="preserve"> <value>.svg</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_STL.Header" xml:space="preserve"> <value>Stereolithography</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_STL.Description" xml:space="preserve"> <value>.stl</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_Color_Thumbnail_STL.Header" xml:space="preserve"> <value>Color</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_PDF.Header" xml:space="preserve"> <value>Portable Document Format</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_PDF.Description" xml:space="preserve"> <value>.pdf</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview.ModuleDescription" xml:space="preserve"> <value>These settings allow you to manage your Windows File Explorer custom preview handlers.</value> </data> <data name="PowerRename_AutoCompleteHeader.Header" xml:space="preserve"> <value>Auto-complete</value> </data> <data name="OpenSource_Notice.Text" xml:space="preserve"> <value>Open-source notice</value> </data> <data name="PowerRename_Toggle_AutoComplete.Header" xml:space="preserve"> <value>Enable auto-complete for the search &amp; replace fields</value> </data> <data name="FancyZones_BorderColor.Header" xml:space="preserve"> <value>Border color</value> </data> <data name="FancyZones_InActiveColor.Header" xml:space="preserve"> <value>Inactive color</value> </data> <data name="ShortcutGuide.ModuleDescription" xml:space="preserve"> <value>Shows a help overlay with Windows shortcuts.</value> </data> <data name="ShortcutGuide_PressTimeForGlobalWindowsShortcuts.Header" xml:space="preserve"> <value>Press duration before showing global Windows shortcuts (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="ShortcutGuide_ActivationMethod.Header" xml:space="preserve"> <value>Activation method</value> </data> <data name="ShortcutGuide_ActivationMethod.Description" xml:space="preserve"> <value>Use a shortcut or press the Windows key for some time to activate</value> </data> <data name="Radio_ShortcutGuide_ActivationMethod_CustomizedShortcut.Content" xml:space="preserve"> <value>Custom shortcut</value> </data> <data name="Radio_ShortcutGuide_ActivationMethod_LongPressWindowsKey.Content" xml:space="preserve"> <value>Hold down Windows key</value> </data> <data name="ShortcutGuide_PressWinKeyWarning.Title" xml:space="preserve"> <value>In some edge cases Shortcut Guide might not function correctly when using this activation method</value> </data> <data name="Appearance_Behavior.Header" xml:space="preserve"> <value>Appearance &amp; behavior</value> </data> <data name="General_SettingsBackupAndRestoreTitle.Header" xml:space="preserve"> <value>Backup &amp; restore</value> </data> <data name="General_SettingsBackupAndRestore.Header" xml:space="preserve"> <value>Backup and restore your settings</value> </data> <data name="General_SettingsBackupAndRestore.Description" xml:space="preserve"> <value>PowerToys will restart automatically if needed</value> </data> <data name="ShortcutGuide_Enable.Header" xml:space="preserve"> <value>Enable Shortcut Guide</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="ShortcutGuide_OverlayOpacity.Header" xml:space="preserve"> <value>Background opacity (%)</value> </data> <data name="ShortcutGuide_DisabledApps.Header" xml:space="preserve"> <value>Exclude apps</value> </data> <data name="ShortcutGuide_DisabledApps.Description" xml:space="preserve"> <value>Turns off Shortcut Guide when these applications have focus - add one application name per line</value> </data> <data name="ShortcutGuide_DisabledApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> <comment>Don't translate outlook.exe</comment> </data> <data name="ImageResizer_CustomSizes.Header" xml:space="preserve"> <value>Image sizes</value> </data> <data name="ImageResizer_Presets.Header" xml:space="preserve"> <value>Presets</value> </data> <data name="ImageResizer_Presets.Description" xml:space="preserve"> <value>Manage preset sizes that can be used in the editor</value> </data> <data name="ImageResizer_FilenameFormatHeader.Description" xml:space="preserve"> <value>This format is used as the filename for resized images</value> </data> <data name="ImageResizer.ModuleDescription" xml:space="preserve"> <value>Lets you resize images by right-clicking.</value> </data> <data name="ImageResizer_EnableToggle.Header" xml:space="preserve"> <value>Enable Image Resizer</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="ImagesSizesListView.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Image Size</value> </data> <data name="ImageResizer_Configurations.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Configurations</value> </data> <data name="ImageResizer_Name.Header" xml:space="preserve"> <value>Name</value> </data> <data name="ImageResizer_Fit.Header" xml:space="preserve"> <value>Fit</value> </data> <data name="ImageResizer_Width.Header" xml:space="preserve"> <value>Width</value> </data> <data name="ImageResizer_Height.Header" xml:space="preserve"> <value>Height</value> </data> <data name="ImageResizer_Size.Header" xml:space="preserve"> <value>Unit</value> </data> <data name="RemoveButton.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Remove</value> <comment>Removes a user defined setting group for Image Resizer</comment> </data> <data name="RemoveItem.Text" xml:space="preserve"> <value>Delete</value> </data> <data name="ImageResizer_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Image Resizer</value> </data> <data name="ImageResizer_AddSizeButton.Content" xml:space="preserve"> <value>Add new size</value> </data> <data name="ImageResizer_SaveSizeButton.Label" xml:space="preserve"> <value>Save sizes</value> </data> <data name="ImageResizer_Encoding.Header" xml:space="preserve"> <value>JPEG quality level (%)</value> </data> <data name="ImageResizer_PNGInterlacing.Header" xml:space="preserve"> <value>PNG interlacing</value> </data> <data name="ImageResizer_TIFFCompression.Header" xml:space="preserve"> <value>TIFF compression</value> </data> <data name="File.Header" xml:space="preserve"> <value>File</value> <comment>as in a computer file</comment> </data> <data name="Default.Content" xml:space="preserve"> <value>Default</value> </data> <data name="ImageResizer_ENCODER_TIFF_CCITT3.Content" xml:space="preserve"> <value>CCITT3</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_CCITT4.Content" xml:space="preserve"> <value>CCITT4</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_Default.Content" xml:space="preserve"> <value>Default</value> </data> <data name="ImageResizer_ENCODER_TIFF_LZW.Content" xml:space="preserve"> <value>LZW</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_None.Content" xml:space="preserve"> <value>None</value> </data> <data name="ImageResizer_ENCODER_TIFF_RLE.Content" xml:space="preserve"> <value>RLE</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_Zip.Content" xml:space="preserve"> <value>Zip</value> <comment>do not loc</comment> </data> <data name="ImageResizer_FallbackEncoder_BMP.Content" xml:space="preserve"> <value>BMP encoder</value> </data> <data name="ImageResizer_FallbackEncoder_GIF.Content" xml:space="preserve"> <value>GIF encoder</value> </data> <data name="ImageResizer_FallbackEncoder_JPEG.Content" xml:space="preserve"> <value>JPEG encoder</value> </data> <data name="ImageResizer_FallbackEncoder_PNG.Content" xml:space="preserve"> <value>PNG encoder</value> </data> <data name="ImageResizer_FallbackEncoder_TIFF.Content" xml:space="preserve"> <value>TIFF encoder</value> </data> <data name="ImageResizer_FallbackEncoder_WMPhoto.Content" xml:space="preserve"> <value>WMPhoto encoder</value> </data> <data name="ImageResizer_Sizes_Fit_Fill.Content" xml:space="preserve"> <value>Fill</value> <comment>Refers to filling an image into a certain size. It could overflow</comment> </data> <data name="ImageResizer_Sizes_Fit_Fill_ThirdPersonSingular.Text" xml:space="preserve"> <value>Fill</value> <comment>Refers to filling an image into a certain size. It could overflow</comment> </data> <data name="ImageResizer_Sizes_Fit_Fit.Content" xml:space="preserve"> <value>Fit</value> <comment>Refers to fitting an image into a certain size. It won't overflow</comment> </data> <data name="ImageResizer_Sizes_Fit_Stretch.Content" xml:space="preserve"> <value>Stretch</value> <comment>Refers to stretching an image into a certain size. Won't overflow but could distort.</comment> </data> <data name="ImageResizer_Sizes_Units_CM.Content" xml:space="preserve"> <value>Centimeters</value> </data> <data name="ImageResizer_Sizes_Units_Inches.Content" xml:space="preserve"> <value>Inches</value> </data> <data name="ImageResizer_Sizes_Units_Percent.Content" xml:space="preserve"> <value>Percent</value> </data> <data name="ImageResizer_Sizes_Units_Pixels.Content" xml:space="preserve"> <value>Pixels</value> </data> <data name="Off.Content" xml:space="preserve"> <value>Off</value> </data> <data name="On.Content" xml:space="preserve"> <value>On</value> </data> <data name="GeneralPage_ToggleSwitch_AlwaysRunElevated_Link.Content" xml:space="preserve"> <value>Learn more about administrator mode</value> </data> <data name="GeneralPage_ToggleSwitch_AutoDownloadUpdates.Header" xml:space="preserve"> <value>Download updates automatically</value> </data> <data name="GeneralPage_ToggleSwitch_AutoDownloadUpdates.Description" xml:space="preserve"> <value>Except on metered connections</value> </data> <data name="GeneralPage_ToggleSwitch_RunningAsAdminNote.Text" xml:space="preserve"> <value>Currently running as administrator</value> </data> <data name="GeneralSettings_AlwaysRunAsAdminText.Header" xml:space="preserve"> <value>Always run as administrator</value> </data> <data name="GeneralSettings_AlwaysRunAsAdminText.Description" xml:space="preserve"> <value>You need to run as administrator to use this setting</value> </data> <data name="GeneralSettings_RunningAsUserText" xml:space="preserve"> <value>Running as user</value> </data> <data name="GeneralSettings_RunningAsAdminText" xml:space="preserve"> <value>Running as administrator</value> </data> <data name="FancyZones.ModuleTitle" xml:space="preserve"> <value>FancyZones</value> </data> <data name="FileExplorerPreview.ModuleTitle" xml:space="preserve"> <value>File Explorer</value> </data> <data name="FileExplorerPreview_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>File Explorer</value> <comment>Use same translation as Windows does for File Explorer</comment> </data> <data name="ImageResizer.ModuleTitle" xml:space="preserve"> <value>Image Resizer</value> </data> <data name="KeyboardManager.ModuleTitle" xml:space="preserve"> <value>Keyboard Manager</value> </data> <data name="ColorPicker.ModuleTitle" xml:space="preserve"> <value>Color Picker</value> </data> <data name="PowerLauncher.ModuleTitle" xml:space="preserve"> <value>PowerToys Run</value> </data> <data name="PowerToys_Run_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>PowerToys Run</value> </data> <data name="PowerRename.ModuleTitle" xml:space="preserve"> <value>PowerRename</value> <comment>do not loc the product name</comment> </data> <data name="PowerRename_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>PowerRename</value> <comment>do not loc</comment> </data> <data name="ShortcutGuide.ModuleTitle" xml:space="preserve"> <value>Shortcut Guide</value> </data> <data name="Shortcut_Guide_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Shortcut Guide</value> </data> <data name="General_Repository.Text" xml:space="preserve"> <value>GitHub repository</value> </data> <data name="General_Version.Header" xml:space="preserve"> <value>Version</value> </data> <data name="General_VersionLastChecked.Text" xml:space="preserve"> <value>Last checked: </value> </data> <data name="General_SettingsBackupInfo_DateHeader.Text" xml:space="preserve"> <value>Created at:</value> </data> <data name="General_SettingsBackupAndRestoreStatusInfo.Header" xml:space="preserve"> <value>Backup information</value> </data> <data name="General_SettingsBackupInfo_SourceHeader.Text" xml:space="preserve"> <value>Source machine:</value> </data> <data name="General_SettingsBackupInfo_StatusHeader.Text" xml:space="preserve"> <value>Status:</value> </data> <data name="General_Version.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Version</value> </data> <data name="Admin_mode.Header" xml:space="preserve"> <value>Administrator mode</value> </data> <data name="FancyZones_RestoreSize.Content" xml:space="preserve"> <value>Restore the original size of windows when unsnapping</value> </data> <data name="ImageResizer_FallBackEncoderText.Header" xml:space="preserve"> <value>Fallback encoder</value> </data> <data name="ImageResizer_FileFormatDescription.Text" xml:space="preserve"> <value>The following parameters can be used:</value> </data> <data name="ImageResizer_FilenameFormatHeader.Header" xml:space="preserve"> <value>Filename format</value> </data> <data name="ImageResizer_FileModifiedDate.Header" xml:space="preserve"> <value>File modified timestamp</value> </data> <data name="ImageResizer_FileModifiedDate.Description" xml:space="preserve"> <value>Used as the 'modified timestamp' in the file properties</value> </data> <data name="ImageResizer_UseOriginalDate.Content" xml:space="preserve"> <value>Original file timestamp</value> </data> <data name="ImageResizer_UseResizeDate.Content" xml:space="preserve"> <value>Timestamp of resize action</value> </data> <data name="Encoding.Header" xml:space="preserve"> <value>Encoding</value> </data> <data name="KeyboardManager_RemapKeyboardButton.Description" xml:space="preserve"> <value>Remap keys to other keys or shortcuts</value> </data> <data name="KeyboardManager_RemapShortcutsButton.Description" xml:space="preserve"> <value>Remap shortcuts to other shortcuts or keys for all or specific applications</value> </data> <data name="General.ModuleDescription" xml:space="preserve"> <value>Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. Made with 💗 by Microsoft and the PowerToys community.</value> <comment>Windows refers to the OS</comment> </data> <data name="FancyZones_SpanZonesAcrossMonitors.Header" xml:space="preserve"> <value>Allow zones to span across monitors</value> </data> <data name="ImageResizer_Formatting_ActualHeight.Text" xml:space="preserve"> <value>Actual height</value> </data> <data name="ImageResizer_Formatting_ActualWidth.Text" xml:space="preserve"> <value>Actual width</value> </data> <data name="ImageResizer_Formatting_Filename.Text" xml:space="preserve"> <value>Original filename</value> </data> <data name="ImageResizer_Formatting_SelectedHeight.Text" xml:space="preserve"> <value>Selected height</value> </data> <data name="ImageResizer_Formatting_SelectedWidth.Text" xml:space="preserve"> <value>Selected width</value> </data> <data name="ImageResizer_Formatting_Sizename.Text" xml:space="preserve"> <value>Size name</value> </data> <data name="FancyZones_MoveWindowsBasedOnPositionCheckBoxControl.Content" xml:space="preserve"> <value>Move windows based on their position</value> <comment>Windows refers to application windows</comment> </data> <data name="GeneralSettings_NewVersionIsAvailable" xml:space="preserve"> <value>New update available</value> </data> <data name="GeneralSettings_VersionIsLatest" xml:space="preserve"> <value>PowerToys is up to date.</value> </data> <data name="FileExplorerPreview_IconThumbnail_GroupSettings.Header" xml:space="preserve"> <value>Thumbnail icon Preview</value> </data> <data name="FileExplorerPreview_IconThumbnail_GroupSettings.Description" xml:space="preserve"> <value>Select the file types for which thumbnail previews must be rendered.</value> </data> <data name="FileExplorerPreview_PreviewPane.Header" xml:space="preserve"> <value>Preview Pane</value> </data> <data name="FileExplorerPreview_PreviewPane.Description" xml:space="preserve"> <value>Select the file types which must be rendered in the Preview Pane. Ensure that Preview Pane is open by toggling the view with Alt + P in File Explorer.</value> <comment>Preview Pane and File Explorer are app/feature names in Windows. 'Alt + P' is a shortcut</comment> </data> <data name="FileExplorerPreview_RunAsAdminRequired.Title" xml:space="preserve"> <value>You need to run as administrator to modify these settings.</value> </data> <data name="FileExplorerPreview_RebootRequired.Title" xml:space="preserve"> <value>A reboot may be required for changes to these settings to take effect</value> </data> <data name="FileExplorerPreview_PreviewHandlerOutlookIncompatibility.Title" xml:space="preserve"> <value>Enabling the preview handlers will override other preview handlers already installed - there have been reports of incompatibility between Outlook and the PDF Preview Handler.</value> <comment>Outlook is the name of a Microsoft product</comment> </data> <data name="FileExplorerPreview_ThumbnailsMightNotAppearOnRemoteFolders.Title" xml:space="preserve"> <value>Thumbnails might not appear on paths managed by cloud storage solutions like OneDrive, since these solutions may get their thumbnails from the cloud instead of generating them locally.</value> <comment>OneDrive is the name of a Microsoft product</comment> </data> <data name="FancyZones_ExcludeApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> <comment>Don't translate outlook.exe</comment> </data> <data name="ImageResizer_FilenameFormatPlaceholder.PlaceholderText" xml:space="preserve"> <value>Example: %1 (%2)</value> </data> <data name="ImageResizer_FilenameParameters.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Filename parameters</value> </data> <data name="Radio_Theme_Dark.Content" xml:space="preserve"> <value>Dark</value> <comment>Dark refers to color, not weight</comment> </data> <data name="Radio_Theme_Light.Content" xml:space="preserve"> <value>Light</value> <comment>Light refers to color, not weight</comment> </data> <data name="Radio_Theme_Default.Content" xml:space="preserve"> <value>Windows default</value> <comment>Windows refers to the Operating system</comment> </data> <data name="Windows_Color_Settings.Content" xml:space="preserve"> <value>Windows color settings</value> <comment>Windows refers to the Operating system</comment> </data> <data name="ColorPicker_CopiedColorRepresentation.Header" xml:space="preserve"> <value>Default color format</value> </data> <data name="ColorPickerFirst.Content" xml:space="preserve"> <value>Pick a color and open editor</value> </data> <data name="EditorFirst.Content" xml:space="preserve"> <value>Open editor</value> </data> <data name="ColorPickerOnly.Content" xml:space="preserve"> <value>Only pick a color</value> </data> <data name="ColorPicker_ActivationAction.Header" xml:space="preserve"> <value>Activation behavior</value> </data> <data name="ColorFormats.Header" xml:space="preserve"> <value>Picker behavior</value> </data> <data name="ColorPicker_CopiedColorRepresentation.Description" xml:space="preserve"> <value>This format will be copied to your clipboard</value> </data> <data name="KBM_KeysCannotBeRemapped.Text" xml:space="preserve"> <value>Learn more about remapping limitations</value> <comment>This is a link that will discuss what is and is not possible for Keyboard manager to remap</comment> </data> <data name="FancyZones_Editor_GroupSettings.Header" xml:space="preserve"> <value>Editor</value> <comment>refers to the FancyZone editor</comment> </data> <data name="FancyZones_WindowBehavior_GroupSettings.Header" xml:space="preserve"> <value>Window behavior</value> </data> <data name="FancyZones_WindowBehavior_GroupSettings.Description" xml:space="preserve"> <value>Manage how windows behave when using FancyZones</value> </data> <data name="FancyZones_Windows.Header" xml:space="preserve"> <value>Windows</value> <comment>Do translate: refers to a set of application windows, not the product name</comment> </data> <data name="PowerRename_BehaviorHeader.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="PowerRename_Toggle_UseBoostLib.Header" xml:space="preserve"> <value>Use Boost library</value> <comment>Boost is a product name, should not be translated</comment> </data> <data name="PowerRename_Toggle_UseBoostLib.Description" xml:space="preserve"> <value>Provides extended features but may use different regex syntax</value> <comment>Boost is a product name, should not be translated</comment> </data> <data name="MadeWithOssLove.Text" xml:space="preserve"> <value>Made with 💗 by Microsoft and the PowerToys community.</value> </data> <data name="ColorPicker_ColorFormats.Header" xml:space="preserve"> <value>Color formats</value> </data> <data name="ColorPicker_ColorFormats.Description" xml:space="preserve"> <value>Configure the color formats (edit, delete, hide, reorder them)</value> </data> <data name="MoveUp.Text" xml:space="preserve"> <value>Move up</value> </data> <data name="MoveDown.Text" xml:space="preserve"> <value>Move down</value> </data> <data name="ColorPickerAddNewFormat.Content" xml:space="preserve"> <value>Add new format</value> </data> <data name="NewColorFormat.Header" xml:space="preserve"> <value>Format</value> </data> <data name="NewColorName.Header" xml:space="preserve"> <value>Name</value> </data> <data name="AddCustomColorFormat" xml:space="preserve"> <value>Add custom color format</value> </data> <data name="ColorFormatSave" xml:space="preserve"> <value>Save</value> </data> <data name="EditCustomColorFormat" xml:space="preserve"> <value>Edit custom color format</value> </data> <data name="ColorFormatUpdate" xml:space="preserve"> <value>Update</value> </data> <data name="CustomColorFormatDefaultName" xml:space="preserve"> <value>My Format</value> </data> <data name="ColorFormatDialog.SecondaryButtonText" xml:space="preserve"> <value>Cancel</value> </data> <data name="ColorFormatEditorHelpline1.Text" xml:space="preserve"> <value>The following parameters can be used:</value> </data> <data name="Help_red" xml:space="preserve"> <value>red</value> </data> <data name="Help_green" xml:space="preserve"> <value>green</value> </data> <data name="Help_blue" xml:space="preserve"> <value>blue</value> </data> <data name="Help_alpha" xml:space="preserve"> <value>alpha</value> </data> <data name="Help_cyan" xml:space="preserve"> <value>cyan</value> </data> <data name="Help_magenta" xml:space="preserve"> <value>magenta</value> </data> <data name="Help_yellow" xml:space="preserve"> <value>yellow</value> </data> <data name="Help_black_key" xml:space="preserve"> <value>black key</value> </data> <data name="Help_hue" xml:space="preserve"> <value>hue</value> </data> <data name="Help_hueNat" xml:space="preserve"> <value>hue (natural)</value> </data> <data name="Help_saturationI" xml:space="preserve"> <value>saturation (HSI)</value> </data> <data name="Help_saturationL" xml:space="preserve"> <value>saturation (HSL)</value> </data> <data name="Help_saturationB" xml:space="preserve"> <value>saturation (HSB)</value> </data> <data name="Help_brightness" xml:space="preserve"> <value>brightness</value> </data> <data name="Help_intensity" xml:space="preserve"> <value>intensity</value> </data> <data name="Help_lightnessNat" xml:space="preserve"> <value>lightness (nat)</value> </data> <data name="Help_lightnessCIE" xml:space="preserve"> <value>lightness (CIE)</value> </data> <data name="Help_value" xml:space="preserve"> <value>value</value> </data> <data name="Help_whiteness" xml:space="preserve"> <value>whiteness</value> </data> <data name="Help_blackness" xml:space="preserve"> <value>blackness</value> </data> <data name="Help_chromaticityA" xml:space="preserve"> <value>chromaticityA</value> </data> <data name="Help_chromaticityB" xml:space="preserve"> <value>chromaticityB</value> </data> <data name="Help_X_value" xml:space="preserve"> <value>X value</value> </data> <data name="Help_Y_value" xml:space="preserve"> <value>Y value</value> </data> <data name="Help_Z_value" xml:space="preserve"> <value>Z value</value> </data> <data name="Help_decimal_value_RGB" xml:space="preserve"> <value>decimal value (RGB)</value> </data> <data name="Help_decimal_value_BGR" xml:space="preserve"> <value>decimal value (BGR)</value> </data> <data name="Help_color_name" xml:space="preserve"> <value>color name</value> </data> <data name="ColorFormatEditorHelpline2.Text" xml:space="preserve"> <value>The red, green, blue and alpha values can be formatted to the following formats:</value> </data> <data name="Help_byte" xml:space="preserve"> <value>byte value (default)</value> </data> <data name="Help_hexL1" xml:space="preserve"> <value>hex lowercase one digit</value> </data> <data name="Help_hexU1" xml:space="preserve"> <value>hex uppercase one digit</value> </data> <data name="Help_hexL2" xml:space="preserve"> <value>hex lowercase two digits</value> </data> <data name="Help_hexU2" xml:space="preserve"> <value>hex uppercase two digits</value> </data> <data name="Help_floatWith" xml:space="preserve"> <value>float with leading zero</value> </data> <data name="Help_floatWithout" xml:space="preserve"> <value>float without leading zero</value> </data> <data name="ColorFormatEditorHelpline3.Text" xml:space="preserve"> <value>Example: %ReX means red value in hex uppercase two digits format.</value> </data> <data name="ColorPicker_ShowColorName.Header" xml:space="preserve"> <value>Show color name</value> </data> <data name="ColorPicker_ShowColorName.Description" xml:space="preserve"> <value>This will show the name of the color when picking a color</value> </data> <data name="ImageResizer_DefaultSize_Large" xml:space="preserve"> <value>Large</value> <comment>The size of the image</comment> </data> <data name="ImageResizer_DefaultSize_Medium" xml:space="preserve"> <value>Medium</value> <comment>The size of the image</comment> </data> <data name="ImageResizer_DefaultSize_Phone" xml:space="preserve"> <value>Phone</value> <comment>The size of the image referring to a Mobile Phone typical image size</comment> </data> <data name="ImageResizer_DefaultSize_Small" xml:space="preserve"> <value>Small</value> <comment>The size of the image</comment> </data> <data name="FancyZones_MoveWindowBasedOnRelativePosition_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Windows key + Up, down, left or right arrow key to move windows based on relative position</value> </data> <data name="FancyZones_MoveWindowLeftRightBasedOnZoneIndex_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Windows key + Left or right arrow keys to move windows based on zone index</value> </data> <data name="FancyZones_MoveWindowBasedOnRelativePosition_Description.Text" xml:space="preserve"> <value>Windows key +    or </value> <comment>Do not loc the icons (hex numbers)</comment> </data> <data name="FancyZones_MoveWindowLeftRightBasedOnZoneIndex_Description.Text" xml:space="preserve"> <value>Windows key +  or </value> <comment>Do not loc the icons (hex numbers)</comment> </data> <data name="FancyZones_MoveWindowBasedOnRelativePosition.Text" xml:space="preserve"> <value>Relative position</value> </data> <data name="FancyZones_MoveWindow.Header" xml:space="preserve"> <value>Move windows based on</value> </data> <data name="FancyZones_MoveWindowLeftRightBasedOnZoneIndex.Text" xml:space="preserve"> <value>Zone index</value> </data> <data name="ColorPicker_Editor.Header" xml:space="preserve"> <value>Color formats</value> </data> <data name="FancyZones_OverlappingZonesClosestCenter.Content" xml:space="preserve"> <value>Activate the zone whose center is closest to the cursor</value> </data> <data name="FancyZones_OverlappingZonesLargest.Content" xml:space="preserve"> <value>Activate the largest zone by area</value> </data> <data name="FancyZones_OverlappingZonesPositional.Content" xml:space="preserve"> <value>Split the overlapped area into multiple activation targets</value> </data> <data name="FancyZones_OverlappingZonesSmallest.Content" xml:space="preserve"> <value>Activate the smallest zone by area</value> </data> <data name="FancyZones_OverlappingZones.Header" xml:space="preserve"> <value>When multiple zones overlap</value> </data> <data name="PowerLauncher_Plugins.Header" xml:space="preserve"> <value>Plugins</value> </data> <data name="PowerLauncher_ActionKeyword.Header" xml:space="preserve"> <value>Direct activation command</value> </data> <data name="PowerLauncher_AuthoredBy.Text" xml:space="preserve"> <value>Authored by</value> <comment>example: Authored by Microsoft</comment> </data> <data name="PowerLauncher_IncludeInGlobalResultTitle.Text" xml:space="preserve"> <value>Include in global result</value> </data> <data name="PowerLauncher_IncludeInGlobalResultDescription.Text" xml:space="preserve"> <value>Show results on queries without direct activation command</value> </data> <data name="PowerLauncher_EnablePluginToggle.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Enable plugin</value> </data> <data name="PowerLauncher_EnablePluginToggle.OnContent" xml:space="preserve"> <value>On</value> </data> <data name="PowerLauncher_EnablePluginToggle.OffContent" xml:space="preserve"> <value>Off</value> </data> <data name="Run_AdditionalOptions.Text" xml:space="preserve"> <value>Additional options</value> </data> <data name="Run_NotAccessibleWarning.Title" xml:space="preserve"> <value>Please define an activation command or allow this plugin to be used in the global results.</value> </data> <data name="Run_AllPluginsDisabled.Title" xml:space="preserve"> <value>PowerToys Run can't provide any results without plugins</value> </data> <data name="Run_AllPluginsDisabled.Message" xml:space="preserve"> <value>Enable at least one plugin to get started</value> </data> <data name="Run_PluginUse.Header" xml:space="preserve"> <value>Plugins</value> </data> <data name="Run_PluginUseDescription.Text" xml:space="preserve"> <value>Include or remove plugins from the global results, change the direct activation phrase and configure additional options</value> </data> <data name="Run_PositionAppearance_GroupSettings.Header" xml:space="preserve"> <value>Position &amp; appearance</value> </data> <data name="Run_PositionHeader.Header" xml:space="preserve"> <value>Preferred monitor position</value> <comment>as in Show PowerToys Run on primary monitor</comment> </data> <data name="Run_PositionHeader.Description" xml:space="preserve"> <value>If multiple monitors are in use, PowerToys Run can be launched on the desired monitor</value> <comment>as in Show PowerToys Run on primary monitor</comment> </data> <data name="Run_Radio_Position_Cursor.Content" xml:space="preserve"> <value>Monitor with mouse cursor</value> </data> <data name="Run_Radio_Position_Focus.Content" xml:space="preserve"> <value>Monitor with focused window</value> </data> <data name="Run_Radio_Position_Primary_Monitor.Content" xml:space="preserve"> <value>Primary monitor</value> </data> <data name="Run_PluginsLoading.Text" xml:space="preserve"> <value>Plugins are loading...</value> </data> <data name="ColorPicker_ButtonDown.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Move the color down</value> </data> <data name="ColorPicker_ButtonUp.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Move the color up</value> </data> <data name="FancyZones_FlashZonesOnQuickSwitch.Content" xml:space="preserve"> <value>Flash zones when switching layout</value> </data> <data name="FancyZones_Layouts.Header" xml:space="preserve"> <value>Layouts</value> </data> <data name="FancyZones_QuickLayoutSwitch.Header" xml:space="preserve"> <value>Enable quick layout switch</value> </data> <data name="FancyZones_QuickLayoutSwitch.Description" xml:space="preserve"> <value>Layout-specific shortcuts can be configured in the editor</value> </data> <data name="FancyZones_QuickLayoutSwitch_GroupSettings.Text" xml:space="preserve"> <value>Quick layout switch</value> </data> <data name="Activation_Shortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="Activation_Shortcut.Description" xml:space="preserve"> <value>Customize the shortcut to activate this module</value> </data> <data name="Oobe_GetStarted.Text" xml:space="preserve"> <value>Let's get started!</value> </data> <data name="Oobe_PowerToysDescription.Text" xml:space="preserve"> <value>Welcome to PowerToys! These overviews will help you quickly learn the basics of all our utilities.</value> </data> <data name="Oobe_GettingStarted.Text" xml:space="preserve"> <value>Getting started</value> </data> <data name="Oobe_Launch.Text" xml:space="preserve"> <value>Launch</value> </data> <data name="Launch_ColorPicker.Content" xml:space="preserve"> <value>Launch Color Picker</value> </data> <data name="Oobe_LearnMore.Text" xml:space="preserve"> <value>Learn more about</value> </data> <data name="Oobe_ColorPicker.Description" xml:space="preserve"> <value>Color Picker is a system-wide color selection tool for Windows that enables you to pick colors from any currently running application and automatically copies it in a configurable format to your clipboard.</value> </data> <data name="Oobe_FancyZones.Description" xml:space="preserve"> <value>FancyZones is a window manager that makes it easy to create complex window layouts and quickly position windows into those layouts.</value> </data> <data name="Oobe_FileLocksmith.Description" xml:space="preserve"> <value>File Locksmith lists which processes are using the selected files or directories and allows closing those processes.</value> </data> <data name="Oobe_FileExplorer.Description" xml:space="preserve"> <value>PowerToys introduces add-ons to the Windows File Explorer that will enable files like Markdown (.md), PDF (.pdf), SVG (.svg), STL (.stl), G-code (.gcode) and developer files to be viewed in the preview pane. It introduces File Explorer thumbnail support for a number of these file types as well.</value> </data> <data name="Oobe_ImageResizer.Description" xml:space="preserve"> <value>Image Resizer is a Windows shell extension for simple bulk image-resizing.</value> </data> <data name="Oobe_KBM.Description" xml:space="preserve"> <value>Keyboard Manager allows you to customize the keyboard to be more productive by remapping keys and creating your own keyboard shortcuts.</value> </data> <data name="Oobe_MouseWithoutBorders.Description" xml:space="preserve"> <value>Mouse Without Borders enables using the mouse pointer, keyboard, clipboard and drag and drop between machines in the same local network.</value> </data> <data name="Oobe_PowerRename.Description" xml:space="preserve"> <value>PowerRename enables you to perform simple bulk renaming, searching and replacing file names.</value> </data> <data name="Oobe_Run.Description" xml:space="preserve"> <value>PowerToys Run is a quick launcher for power users that contains some additional features without sacrificing performance.</value> </data> <data name="Oobe_MeasureTool.Description" xml:space="preserve"> <value>Screen Ruler is a quick and easy way to measure pixels on your screen.</value> </data> <data name="Oobe_ShortcutGuide.Description" xml:space="preserve"> <value>Shortcut Guide presents the user with a listing of available shortcuts for the current state of the desktop.</value> </data> <data name="Oobe_VideoConference.Description" xml:space="preserve"> <value>Video Conference Mute allows users to quickly mute the microphone and turn off the camera while on a conference call with a single keystroke, regardless of what application has focus on your computer.</value> </data> <data name="Oobe_MouseUtils.Description" xml:space="preserve"> <value>A collection of utilities to enhance your mouse.</value> <comment>Mouse as in the hardware peripheral</comment> </data> <data name="Oobe_Overview.Description" xml:space="preserve"> <value>Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. Take a moment to preview the various utilities listed or view our comprehensive documentation.</value> </data> <data name="Oobe_Overview_DescriptionLinkText.Text" xml:space="preserve"> <value>Documentation on Microsoft Docs</value> </data> <data name="ReleaseNotes.Content" xml:space="preserve"> <value>Release notes</value> </data> <data name="Oobe_ColorPicker_HowToUse.Text" xml:space="preserve"> <value>to open Color Picker.</value> </data> <data name="Oobe_ColorPicker_TipsAndTricks.Text" xml:space="preserve"> <value>To select a color with more precision, **scroll the mouse wheel** to zoom in.</value> </data> <data name="Oobe_FancyZones_HowToUse.Text" xml:space="preserve"> <value>**Shift** + **drag the window** to snap a window to a zone, and release the window in the desired zone.</value> </data> <data name="Oobe_FancyZones_HowToUse_Shortcut.Text" xml:space="preserve"> <value>to open the FancyZones editor.</value> </data> <data name="Oobe_FancyZones_TipsAndTricks.Text" xml:space="preserve"> <value>Snap a window to multiple zones by holding the **Ctrl** key (while also holding **Shift**) when dragging a window.</value> </data> <data name="Oobe_FileLocksmith_HowToUse.Text" xml:space="preserve"> <value>In File Explorer, right-click one or more selected files and select **What's using this file?** from the context menu.</value> </data> <data name="Oobe_FileLocksmith_TipsAndTricks.Text" xml:space="preserve"> <value>Press the **Restart Elevated** button from the File Locksmith UI to also get information on elevated processes that might be using the files.</value> </data> <data name="Oobe_FileExplorer_HowToEnable.Text" xml:space="preserve"> <value>Select **View** which is located at the top of File Explorer, followed by **Show**, and then **Preview pane**. From there, simply click on one of the supported files in the File Explorer and observe the content on the preview pane!</value> </data> <data name="Oobe_HowToCreateMappings.Text" xml:space="preserve"> <value>How to create mappings</value> </data> <data name="Oobe_HowToEnable.Text" xml:space="preserve"> <value>How to enable</value> </data> <data name="Oobe_HowToLaunch.Text" xml:space="preserve"> <value>How to launch</value> </data> <data name="Oobe_HowToUse.Text" xml:space="preserve"> <value>How to use</value> </data> <data name="Oobe_ImageResizer_HowToLaunch.Text" xml:space="preserve"> <value>In File Explorer, right-click one or more image files and select **Resize pictures** from the context menu.</value> </data> <data name="Oobe_ImageResizer_TipsAndTricks.Text" xml:space="preserve"> <value>Want a custom size? You can add them in the PowerToys Settings!</value> </data> <data name="Oobe_KBM_HowToCreateMappings.Text" xml:space="preserve"> <value>Launch **PowerToys Settings**, navigate to the Keyboard Manager menu, and select either **Remap a key** or **Remap a shortcut**.</value> </data> <data name="Oobe_KBM_TipsAndTricks.Text" xml:space="preserve"> <value>Want to only have a shortcut work for a single application? Use the Target App field when creating the shortcut remapping.</value> </data> <data name="Oobe_MouseWithoutBorders_HowToUse.Text" xml:space="preserve"> <value>Use the Settings screen on each machine to connect to the other machines using the same key. If a connection is not working, it may be necessary to add an exception to the Windows Firewall.</value> </data> <data name="Oobe_MouseWithoutBorders_TipsAndTricks.Text" xml:space="preserve"> <value>Use the service option in Settings to install a service enabling Mouse Without Borders to function even in the lock screen.</value> </data> <data name="Oobe_PowerRename_HowToUse.Text" xml:space="preserve"> <value>In File Explorer, right-click one or more selected files and select **PowerRename** from the context menu.</value> </data> <data name="Oobe_PowerRename_TipsAndTricks.Text" xml:space="preserve"> <value>PowerRename supports searching for files using regular expressions to enable more advanced renaming functionalities.</value> </data> <data name="Oobe_Run_HowToLaunch.Text" xml:space="preserve"> <value>to open Run and just start typing.</value> </data> <data name="Oobe_Run_TipsAndTricks.Text" xml:space="preserve"> <value>PowerToys Run supports various action keys to funnel search queries for a specific subset of results. Typing `&lt;` searches for running processes only, `?` will search only for file, or `.` for installed applications! See PowerToys documentation for the complete set of 'Action Keys' available.</value> </data> <data name="Oobe_ShortcutGuide_HowToLaunch.Text" xml:space="preserve"> <value>to open Shortcut Guide, press it again to close or press **Esc**.</value> </data> <data name="Oobe_TipsAndTricks.Text" xml:space="preserve"> <value>Tips &amp; tricks</value> </data> <data name="Oobe_VideoConference_ToggleMicVid.Text" xml:space="preserve"> <value>to toggle both your microphone and video</value> </data> <data name="Oobe_VideoConference_ToggleMic.Text" xml:space="preserve"> <value>to toggle your microphone</value> </data> <data name="Oobe_VideoConference_PushToTalkMic.Text" xml:space="preserve"> <value>to toggle your microphone until key release</value> </data> <data name="Oobe_VideoConference_ToggleVid.Text" xml:space="preserve"> <value>to toggle your video</value> </data> <data name="Oobe_MeasureTool_Activation.Text" xml:space="preserve"> <value>to bring up the Screen Ruler command bar.</value> </data> <data name="Oobe_MeasureTool_HowToLaunch.Text" xml:space="preserve"> <value>The Bounds mode lets you select a specific area to measure. You can also shift-drag an area to persist in on screen. The various Spacing modes allows tracing similar pixels along horizontal and vertical axes with a customizable pixel tolerance threshold (use settings or mouse wheel to adjust it).</value> </data> <data name="Oobe_MeasureTool.Title" xml:space="preserve"> <value>Screen Ruler</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_ColorPicker.Title" xml:space="preserve"> <value>Color Picker</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_FancyZones.Title" xml:space="preserve"> <value>FancyZones</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_FileLocksmith.Title" xml:space="preserve"> <value>File Locksmith</value> </data> <data name="Oobe_ImageResizer.Title" xml:space="preserve"> <value>Image Resizer</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_KBM.Title" xml:space="preserve"> <value>Keyboard Manager</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_MouseWithoutBorders.Title" xml:space="preserve"> <value>Mouse Without Borders</value> <comment>Product name. Do not localize this string</comment> </data> <data name="Oobe_PowerRename.Title" xml:space="preserve"> <value>PowerRename</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_Run.Title" xml:space="preserve"> <value>PowerToys Run</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_ShortcutGuide.Title" xml:space="preserve"> <value>Shortcut Guide</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_VideoConference.Title" xml:space="preserve"> <value>Video Conference Mute</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_Overview.Title" xml:space="preserve"> <value>Welcome</value> </data> <data name="Oobe_WhatsNew.Text" xml:space="preserve"> <value>What's new</value> </data> <data name="Oobe_WhatsNew_LoadingError.Title" xml:space="preserve"> <value>Couldn't load the release notes.</value> </data> <data name="Oobe_WhatsNew_LoadingError.Message" xml:space="preserve"> <value>Please check your internet connection.</value> </data> <data name="Oobe_WhatsNew_ProxyAuthenticationWarning.Title" xml:space="preserve"> <value>Couldn't load the release notes.</value> </data> <data name="Oobe_WhatsNew_ProxyAuthenticationWarning.Message" xml:space="preserve"> <value>Your proxy server requires authentication.</value> </data> <data name="Oobe_WhatsNew_DetailedReleaseNotesLink.Text" xml:space="preserve"> <value>See more detailed release notes on GitHub</value> <comment>Don't loc "GitHub", it's the name of a product</comment> </data> <data name="OOBE_Settings.Content" xml:space="preserve"> <value>Open Settings</value> </data> <data name="Oobe_NavViewItem.Content" xml:space="preserve"> <value>Welcome to PowerToys</value> <comment>Don't loc "PowerToys"</comment> </data> <data name="Feedback_NavViewItem.Content" xml:space="preserve"> <value>Give feedback</value> </data> <data name="OobeWindow_Title" xml:space="preserve"> <value>Welcome to PowerToys</value> </data> <data name="OobeWindow_TitleTxt.Text" xml:space="preserve"> <value>Welcome to PowerToys</value> </data> <data name="SettingsWindow_Title" xml:space="preserve"> <value>PowerToys Settings</value> <comment>Title of the settings window when running as user</comment> </data> <data name="Awake.ModuleTitle" xml:space="preserve"> <value>Awake</value> </data> <data name="Awake.ModuleDescription" xml:space="preserve"> <value>A convenient way to keep your PC awake on-demand.</value> </data> <data name="Awake_EnableSettingsCard.Header" xml:space="preserve"> <value>Enable Awake</value> <comment>Awake is a product name, do not loc</comment> </data> <data name="Awake_NoKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep using the selected power plan</value> </data> <data name="Awake_IndefiniteKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep awake indefinitely</value> </data> <data name="Awake_TemporaryKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep awake for a time interval</value> </data> <data name="Awake_ExpirableKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep awake until expiration</value> </data> <data name="Awake_DisplaySettingsCard.Header" xml:space="preserve"> <value>Keep screen on</value> </data> <data name="Awake_DisplaySettingsCard.Description" xml:space="preserve"> <value>This setting is only available when keeping the PC awake</value> </data> <data name="Awake_ExpirationSettingsExpander.Description" xml:space="preserve"> <value>Keep custom awake state until a specific date and time</value> </data> <data name="Awake_ModeSettingsCard.Header" xml:space="preserve"> <value>Mode</value> </data> <data name="Awake_BehaviorSettingsGroup.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="Awake_IntervalHoursInput.Header" xml:space="preserve"> <value>Hours</value> </data> <data name="Awake_IntervalMinutesInput.Header" xml:space="preserve"> <value>Minutes</value> </data> <data name="Awake_ExpirationSettingsExpander_Date.Header" xml:space="preserve"> <value>End date</value> </data> <data name="Awake_ExpirationSettingsExpander_Time.Header" xml:space="preserve"> <value>End time</value> </data> <data name="Oobe_Awake.Title" xml:space="preserve"> <value>Awake</value> <comment>Module name, do not loc</comment> </data> <data name="Oobe_Awake.Description" xml:space="preserve"> <value>Awake is a Windows tool designed to keep your PC awake on-demand without having to manage its power settings. This behavior can be helpful when running time-consuming tasks while ensuring that your PC does not go to sleep or turn off its screens.</value> </data> <data name="Oobe_Awake_HowToUse.Text" xml:space="preserve"> <value>Open **PowerToys Settings** and enable Awake</value> </data> <data name="Oobe_Awake_TipsAndTricks.Text" xml:space="preserve"> <value>You can always change modes quickly by **right-clicking the Awake icon** in the system tray.</value> </data> <data name="General_FailedToDownloadTheNewVersion.Title" xml:space="preserve"> <value>An error occurred trying to install this update:</value> </data> <data name="General_InstallNow.Content" xml:space="preserve"> <value>Install now</value> </data> <data name="General_ReadMore.Text" xml:space="preserve"> <value>Read more</value> </data> <data name="General_NewVersionAvailable.Title" xml:space="preserve"> <value>An update is available:</value> </data> <data name="General_Downloading.Text" xml:space="preserve"> <value>Downloading...</value> </data> <data name="General_TryAgainToDownloadAndInstall.Content" xml:space="preserve"> <value>Try again to download and install</value> </data> <data name="General_CheckingForUpdates.Text" xml:space="preserve"> <value>Checking for updates...</value> </data> <data name="General_NewVersionReadyToInstall.Title" xml:space="preserve"> <value>An update is ready to install:</value> </data> <data name="General_UpToDate.Title" xml:space="preserve"> <value>PowerToys is up to date</value> </data> <data name="General_CantCheck.Title" xml:space="preserve"> <value>Network error. Please try again later</value> </data> <data name="General_DownloadAndInstall.Content" xml:space="preserve"> <value>Download &amp; install</value> </data> <data name="ImageResizer_Fit_Fill_ThirdPersonSingular" xml:space="preserve"> <value>Fills</value> </data> <data name="ImageResizer_Fit_Fit_ThirdPersonSingular" xml:space="preserve"> <value>Fits within</value> </data> <data name="ImageResizer_Fit_Stretch_ThirdPersonSingular" xml:space="preserve"> <value>Stretches to</value> </data> <data name="ImageResizer_Unit_Centimeter" xml:space="preserve"> <value>Centimeters</value> </data> <data name="ImageResizer_Unit_Inch" xml:space="preserve"> <value>Inches</value> </data> <data name="ImageResizer_Unit_Percent" xml:space="preserve"> <value>Percent</value> </data> <data name="ImageResizer_Unit_Pixel" xml:space="preserve"> <value>Pixels</value> </data> <data name="EditButton.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Edit</value> </data> <data name="ImageResizer_EditSize.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Edit size</value> </data> <data name="No" xml:space="preserve"> <value>No</value> <comment>Label of a cancel button</comment> </data> <data name="Delete_Dialog_Description" xml:space="preserve"> <value>Are you sure you want to delete this item?</value> </data> <data name="Yes" xml:space="preserve"> <value>Yes</value> <comment>Label of a confirmation button</comment> </data> <data name="SeeWhatsNew.Content" xml:space="preserve"> <value>See what's new</value> </data> <data name="Awake_ModeSettingsCard.Description" xml:space="preserve"> <value>Manage the state of your device when Awake is active</value> </data> <data name="ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="Enable_ColorFormat.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Enable colorformat</value> </data> <data name="More_Options_Button.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>More options</value> </data> <data name="More_Options_ButtonTooltip.Text" xml:space="preserve"> <value>More options</value> </data> <data name="To.Text" xml:space="preserve"> <value>to</value> <comment>as in: from x to y</comment> </data> <data name="LearnMore_Awake.Text" xml:space="preserve"> <value>Learn more about Awake</value> <comment>Awake is a product name, do not loc</comment> </data> <data name="LearnMore_ColorPicker.Text" xml:space="preserve"> <value>Learn more about Color Picker</value> <comment>Color Picker is a product name, do not loc</comment> </data> <data name="LearnMore_FancyZones.Text" xml:space="preserve"> <value>Learn more about FancyZones</value> <comment>FancyZones is a product name, do not loc</comment> </data> <data name="LearnMore_FileLocksmith.Text" xml:space="preserve"> <value>Learn more about File Locksmith</value> </data> <data name="LearnMore_ImageResizer.Text" xml:space="preserve"> <value>Learn more about Image Resizer</value> <comment>Image Resizer is a product name, do not loc</comment> </data> <data name="LearnMore_KBM.Text" xml:space="preserve"> <value>Learn more about Keyboard Manager</value> <comment>Keyboard Manager is a product name, do not loc</comment> </data> <data name="LearnMore_MouseUtils.Text" xml:space="preserve"> <value>Learn more about Mouse utilities</value> <comment>Mouse utilities is a product name, do not loc</comment> </data> <data name="LearnMore_PastePlain.Text" xml:space="preserve"> <value>Learn more about Paste as Plain Text</value> <comment> Paste as Plain Text is the name of the module. </comment> </data> <data name="LearnMore_MouseWithoutBorders.Text" xml:space="preserve"> <value>Learn more about Mouse Without Borders</value> <comment>Mouse Without Borders is the name of the module. </comment> </data> <data name="LearnMore_PowerPreview.Text" xml:space="preserve"> <value>Learn more about File Explorer add-ons</value> <comment>File Explorer is a product name, localize as Windows does</comment> </data> <data name="LearnMore_Peek.Text" xml:space="preserve"> <value>Learn more about Peek</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="LearnMore_PowerRename.Text" xml:space="preserve"> <value>Learn more about PowerRename</value> <comment>PowerRename is a product name, do not loc</comment> </data> <data name="LearnMore_Run.Text" xml:space="preserve"> <value>Learn more about PowerToys Run</value> <comment>PowerToys Run is a product name, do not loc</comment> </data> <data name="LearnMore_MeasureTool.Text" xml:space="preserve"> <value>Learn more about Screen Ruler</value> <comment>Screen Ruler is a product name, do not loc</comment> </data> <data name="LearnMore_ShortcutGuide.Text" xml:space="preserve"> <value>Learn more about Shortcut Guide</value> <comment>Shortcut Guide is a product name, do not loc</comment> </data> <data name="LearnMore_VCM.Text" xml:space="preserve"> <value>Learn more about Video Conference Mute</value> <comment>Video Conference Mute is a product name, do not loc</comment> </data> <data name="Oobe_FileExplorer.Title" xml:space="preserve"> <value>File Explorer add-ons</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_MouseUtils.Title" xml:space="preserve"> <value>Mouse utilities</value> <comment>Mouse as in the hardware peripheral</comment> </data> <data name="Oobe_MouseUtils_FindMyMouse.Text" xml:space="preserve"> <value>Find My Mouse</value> <comment>Mouse as in the hardware peripheral</comment> </data> <data name="Oobe_MouseUtils_FindMyMouse_Description.Text" xml:space="preserve"> <value>Focus the mouse pointer pressing the Ctrl key twice, using a custom shortcut or shaking the mouse.</value> <comment>Mouse as in the hardware peripheral. Key as in a keyboard key</comment> </data> <data name="Oobe_MouseUtils_MouseHighlighter.Text" xml:space="preserve"> <value>Mouse Highlighter</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MouseHighlighter_Description.Text" xml:space="preserve"> <value>Use a keyboard shortcut to highlight left and right mouse clicks.</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MousePointerCrosshairs.Text" xml:space="preserve"> <value>Mouse Pointer Crosshairs</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MousePointerCrosshairs_Description.Text" xml:space="preserve"> <value>Draw crosshairs centered around the mouse pointer.</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MouseJump.Text" xml:space="preserve"> <value>Mouse Jump</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MouseJump_Description.Text" xml:space="preserve"> <value>Jump the mouse pointer quickly to anywhere on your desktop.</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Launch_Run.Content" xml:space="preserve"> <value>Launch PowerToys Run</value> </data> <data name="Launch_ShortcutGuide.Content" xml:space="preserve"> <value>Launch Shortcut Guide</value> </data> <data name="ColorPicker_ColorFormat_ToggleSwitch.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Show format in editor</value> </data> <data name="GeneralPage_Documentation.Text" xml:space="preserve"> <value>Documentation</value> </data> <data name="PowerLauncher_SearchList.PlaceholderText" xml:space="preserve"> <value>Search this list</value> </data> <data name="PowerLauncher_SearchList.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Search this list</value> </data> <data name="Awake.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="ColorPicker.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="General.SecondaryLinksHeader" xml:space="preserve"> <value>Related information</value> </data> <data name="ImageResizer.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="MouseUtils.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="PowerLauncher.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="PowerRename.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="EditTooltip.Text" xml:space="preserve"> <value>Edit</value> </data> <data name="RemoveTooltip.Text" xml:space="preserve"> <value>Remove</value> </data> <data name="Activation_Shortcut_Cancel" xml:space="preserve"> <value>Cancel</value> </data> <data name="Activation_Shortcut_Description" xml:space="preserve"> <value>Press a combination of keys to change this shortcut</value> </data> <data name="Activation_Shortcut_With_Disable_Description" xml:space="preserve"> <value>Press a combination of keys to change this shortcut. Right-click to remove the key combination, thereby deactivating the shortcut.</value> </data> <data name="Activation_Shortcut_Reset" xml:space="preserve"> <value>Reset</value> </data> <data name="Activation_Shortcut_Save" xml:space="preserve"> <value>Save</value> </data> <data name="Activation_Shortcut_Title" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="InvalidShortcut.Title" xml:space="preserve"> <value>Invalid shortcut</value> </data> <data name="InvalidShortcutWarningLabel.Text" xml:space="preserve"> <value>Only shortcuts that start with **Windows key**, **Ctrl**, **Alt** or **Shift** are valid.</value> <comment>The ** sequences are used for text formatting of the key names. Don't remove them on translation.</comment> </data> <data name="FancyZones_SpanZonesAcrossMonitors.Description" xml:space="preserve"> <value>All monitors must have the same DPI scaling and will be treated as one large combined rectangle which contains all monitors</value> </data> <data name="ImageResizer_DefaultSize_NewSizePrefix" xml:space="preserve"> <value>New size</value> <comment>First part of the default name of new sizes that can be added in PT's settings ui.</comment> </data> <data name="Awake_IntervalSettingsCard.Header" xml:space="preserve"> <value>Interval before returning to the previous awakeness state</value> </data> <data name="Awake_ExpirationSettingsExpander.Header" xml:space="preserve"> <value>End date and time</value> </data> <data name="MouseUtils.ModuleTitle" xml:space="preserve"> <value>Mouse utilities</value> </data> <data name="MouseUtils.ModuleDescription" xml:space="preserve"> <value>A collection of mouse utilities.</value> </data> <data name="MouseUtils_FindMyMouse.Header" xml:space="preserve"> <value>Find My Mouse</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_FindMyMouse.Description" xml:space="preserve"> <value>Find My Mouse highlights the position of the cursor when pressing the Ctrl key twice, using a custom shortcut or when shaking the mouse.</value> <comment>"Ctrl" is a keyboard key. "Find My Mouse" is the name of the utility</comment> </data> <data name="MouseUtils_Enable_FindMyMouse.Header" xml:space="preserve"> <value>Enable Find My Mouse</value> <comment>"Find My Mouse" is the name of the utility.</comment> </data> <data name="MouseUtils_FindMyMouse_ActivationMethod.Header" xml:space="preserve"> <value>Activation method</value> </data> <data name="MouseUtils_FindMyMouse_ActivationDoubleControlPress.Content" xml:space="preserve"> <value>Press Left Control twice</value> <comment>Left control is the physical key on the keyboard.</comment> </data> <data name="MouseUtils_FindMyMouse_ActivationShakeMouse.Content" xml:space="preserve"> <value>Shake mouse</value> <comment>Mouse is the hardware peripheral.</comment> </data> <data name="MouseUtils_FindMyMouse_ExcludedApps.Description" xml:space="preserve"> <value>Prevents module activation when an excluded application is the foreground application</value> </data> <data name="MouseUtils_FindMyMouse_ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="MouseUtils_FindMyMouse_ExcludedApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> </data> <data name="MouseUtils_Prevent_Activation_On_Game_Mode.Content" xml:space="preserve"> <value>Do not activate when Game Mode is on</value> <comment>"Game mode" is the Windows feature to prevent notification when playing a game.</comment> </data> <data name="MouseUtils_FindMyMouse_BackgroundColor.Header" xml:space="preserve"> <value>Background color</value> </data> <data name="MouseUtils_FindMyMouse_SpotlightColor.Header" xml:space="preserve"> <value>Spotlight color</value> </data> <data name="MouseUtils_FindMyMouse_OverlayOpacity.Header" xml:space="preserve"> <value>Overlay opacity (%)</value> </data> <data name="MouseUtils_FindMyMouse_SpotlightRadius.Header" xml:space="preserve"> <value>Spotlight radius (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_FindMyMouse_SpotlightInitialZoom.Header" xml:space="preserve"> <value>Spotlight initial zoom</value> </data> <data name="MouseUtils_FindMyMouse_SpotlightInitialZoom.Description" xml:space="preserve"> <value>Spotlight zoom factor at animation start</value> </data> <data name="MouseUtils_FindMyMouse_AnimationDurationMs.Header" xml:space="preserve"> <value>Animation duration (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_FindMyMouse_AnimationDurationMs.Description" xml:space="preserve"> <value>Time before the spotlight appears (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_FindMyMouse_AnimationDurationMs_Disabled.Message" xml:space="preserve"> <value>Animations are disabled by OS. See Settings &gt; Accessibility &gt; Visual effects</value> </data> <data name="MouseUtils_FindMyMouse_ShakingMinimumDistance.Header" xml:space="preserve"> <value>Shake minimum distance</value> </data> <data name="MouseUtils_FindMyMouse_ShakingMinimumDistance.Description" xml:space="preserve"> <value>The minimum distance for mouse shaking activation, for adjusting sensitivity</value> </data> <data name="MouseUtils_MouseHighlighter.Header" xml:space="preserve"> <value>Mouse Highlighter</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_MouseHighlighter.Description" xml:space="preserve"> <value>Mouse Highlighter mode will highlight mouse clicks.</value> <comment>"Mouse Highlighter" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_Enable_MouseHighlighter.Header" xml:space="preserve"> <value>Enable Mouse Highlighter</value> <comment>"Find My Mouse" is the name of the utility.</comment> </data> <data name="MouseUtils_MouseHighlighter_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MouseUtils_MouseHighlighter_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to turn on or off this mode</value> <comment>"Mouse Highlighter" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_MouseHighlighter_PrimaryButtonClickColor.Header" xml:space="preserve"> <value>Primary button highlight color</value> </data> <data name="MouseUtils_MouseHighlighter_SecondaryButtonClickColor.Header" xml:space="preserve"> <value>Secondary button highlight color</value> </data> <data name="MouseUtils_MouseHighlighter_HighlightRadius.Header" xml:space="preserve"> <value>Radius (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDelayMs.Header" xml:space="preserve"> <value>Fade delay (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDelayMs.Description" xml:space="preserve"> <value>Time before the highlight begins to fade (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDurationMs.Header" xml:space="preserve"> <value>Fade duration (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDurationMs.Description" xml:space="preserve"> <value>Duration of the disappear animation (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MousePointerCrosshairs.Header" xml:space="preserve"> <value>Mouse Pointer Crosshairs</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_MousePointerCrosshairs.Description" xml:space="preserve"> <value>Mouse Pointer Crosshairs draws crosshairs centered on the mouse pointer.</value> <comment>"Mouse Pointer Crosshairs" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_Enable_MousePointerCrosshairs.Header" xml:space="preserve"> <value>Enable Mouse Pointer Crosshairs</value> <comment>"Mouse Pointer Crosshairs" is the name of the utility.</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MouseUtils_MousePointerCrosshairs_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to show/hide the crosshairs</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsColor.Header" xml:space="preserve"> <value>Crosshairs color</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsOpacity.Header" xml:space="preserve"> <value>Crosshairs opacity (%)</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsRadius.Header" xml:space="preserve"> <value>Crosshairs center radius (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsThickness.Header" xml:space="preserve"> <value>Crosshairs thickness (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsBorderColor.Header" xml:space="preserve"> <value>Crosshairs border color</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsBorderSize.Header" xml:space="preserve"> <value>Crosshairs border size (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_IsCrosshairsFixedLengthEnabled.Header" xml:space="preserve"> <value>Fix crosshairs length</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsFixedLength.Header" xml:space="preserve"> <value>Crosshairs fixed length (px)</value> <comment>px = pixels</comment> </data> <data name="FancyZones_Radio_Custom_Colors.Content" xml:space="preserve"> <value>Custom colors</value> </data> <data name="FancyZones_Radio_Default_Theme.Content" xml:space="preserve"> <value>Windows default</value> </data> <data name="ColorModeHeader.Header" xml:space="preserve"> <value>App theme</value> </data> <data name="FancyZones_Zone_Appearance.Description" xml:space="preserve"> <value>Customize the way zones look</value> </data> <data name="FancyZones_Zone_Appearance.Header" xml:space="preserve"> <value>Zone appearance</value> </data> <data name="VideoConference_DeprecationWarning.Title" xml:space="preserve"> <value>VCM is moving into legacy mode (maintenance only).</value> </data> <data name="VideoConference_DeprecationWarningButton.Content" xml:space="preserve"> <value>Learn more</value> </data> <data name="VideoConference_RunAsAdminRequired.Title" xml:space="preserve"> <value>You need to run as administrator to modify these settings.</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_GCODE.Header" xml:space="preserve"> <value>Geometric Code</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_GCODE.Description" xml:space="preserve"> <value>Only .gcode files with embedded thumbnails are supported</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_GCODE.Header" xml:space="preserve"> <value>Geometric Code</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_GCODE.Description" xml:space="preserve"> <value>Only .gcode files with embedded thumbnails are supported</value> </data> <data name="FancyZones_NumberColor.Header" xml:space="preserve"> <value>Number color</value> </data> <data name="FancyZones_ShowZoneNumberCheckBoxControl.Content" xml:space="preserve"> <value>Show zone number</value> </data> <data name="ToggleSwitch.OffContent" xml:space="preserve"> <value>Off</value> <comment>The state of a ToggleSwitch when it's off</comment> </data> <data name="ToggleSwitch.OnContent" xml:space="preserve"> <value>On</value> <comment>The state of a ToggleSwitch when it's on</comment> </data> <data name="CropAndLock.ModuleDescription" xml:space="preserve"> <value>Crop And Lock allows you to crop a current application into a smaller window or just create a thumbnail. Focus the target window and press the shortcut to start cropping.</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="CropAndLock.ModuleTitle" xml:space="preserve"> <value>Crop And Lock </value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="CropAndLock_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="CropAndLock_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="Shell_CropAndLock.Content" xml:space="preserve"> <value>Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="LearnMore_CropAndLock.Text" xml:space="preserve"> <value>Learn more about Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="CropAndLock_ReparentActivation_Shortcut.Header" xml:space="preserve"> <value>Reparent shortcut</value> </data> <data name="CropAndLock_ReparentActivation_Shortcut.Description" xml:space="preserve"> <value>Shortcut to crop an application's window into a cropped window. This is experimental and can cause issues with some applications, since the cropped window will contain the original application window.</value> </data> <data name="CropAndLock_ThumbnailActivation_Shortcut.Header" xml:space="preserve"> <value>Thumbnail shortcut</value> </data> <data name="CropAndLock_ThumbnailActivation_Shortcut.Description" xml:space="preserve"> <value>Shortcut to crop and create a thumbnail of another window. The application isn't controllable through the thumbnail but it'll have less compatibility issues. </value> </data> <data name="CropAndLock.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="Oobe_CropAndLock.Title" xml:space="preserve"> <value>Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="Oobe_CropAndLock.Description" xml:space="preserve"> <value>Crop And Lock allows you to crop a current application into a smaller window or just create a thumbnail. Focus the target window and press the shortcut to start cropping.</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="Oobe_CropAndLock_HowToUse_Thumbnail.Text" xml:space="preserve"> <value>to crop and create a thumbnail of another window. The application isn't controllable through the thumbnail but it'll have less compatibility issues.</value> </data> <data name="Oobe_CropAndLock_HowToUse_Reparent.Text" xml:space="preserve"> <value>to crop an application's window into a cropped window. This is experimental and can cause issues with some applications, since the cropped window will contain the original application window.</value> </data> <data name="AlwaysOnTop.ModuleDescription" xml:space="preserve"> <value>Always On Top is a quick and easy way to pin windows on top.</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop.ModuleTitle" xml:space="preserve"> <value>Always On Top </value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="Peek_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="AlwaysOnTop_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_ExcludedApps.Description" xml:space="preserve"> <value>Excludes an application from pinning on top</value> </data> <data name="AlwaysOnTop_ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="AlwaysOnTop_ExcludedApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> </data> <data name="AlwaysOnTop_FrameColor.Header" xml:space="preserve"> <value>Color</value> </data> <data name="AlwaysOnTop_FrameEnabled.Header" xml:space="preserve"> <value>Show a border around the pinned window</value> </data> <data name="AlwaysOnTop_FrameThickness.Header" xml:space="preserve"> <value>Thickness (px)</value> <comment>px = pixels</comment> </data> <data name="AlwaysOnTop_Behavior_GroupSettings.Header" xml:space="preserve"> <value>Appearance &amp; behavior</value> </data> <data name="Shell_AlwaysOnTop.Content" xml:space="preserve"> <value>Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_GameMode.Content" xml:space="preserve"> <value>Do not activate when Game Mode is on</value> <comment>Game Mode is a Windows feature</comment> </data> <data name="AlwaysOnTop_SoundTitle.Header" xml:space="preserve"> <value>Sound</value> </data> <data name="AlwaysOnTop_Sound.Content" xml:space="preserve"> <value>Play a sound when pinning a window</value> </data> <data name="AlwaysOnTop_Behavior.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="LearnMore_AlwaysOnTop.Text" xml:space="preserve"> <value>Learn more about Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="AlwaysOnTop_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to pin or unpin an app window</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="Oobe_AlwaysOnTop.Title" xml:space="preserve"> <value>Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="Oobe_AlwaysOnTop.Description" xml:space="preserve"> <value>Always On Top improves your multitasking workflow by pinning an application window so it's always in front - even when focus changes to another window after that.</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="Oobe_AlwaysOnTop_HowToUse.Text" xml:space="preserve"> <value>to pin or unpin the selected window so it's always on top of all other windows.</value> </data> <data name="Oobe_AlwaysOnTop_TipsAndTricks.Text" xml:space="preserve"> <value>You can tweak the visual outline of the pinned windows in PowerToys settings.</value> </data> <data name="AlwaysOnTop_FrameColor_Mode.Header" xml:space="preserve"> <value>Color mode</value> </data> <data name="AlwaysOnTop_Radio_Custom_Color.Content" xml:space="preserve"> <value>Custom color</value> </data> <data name="AlwaysOnTop_Radio_Windows_Default.Content" xml:space="preserve"> <value>Windows default</value> </data> <data name="FileExplorerPreview.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Monaco_Wrap_Text.Content" xml:space="preserve"> <value>Wrap text</value> <comment>Feature on or off</comment> </data> <data name="FancyZones_AllowPopupWindowSnap.Description" xml:space="preserve"> <value>This setting can affect all popup windows including notifications</value> </data> <data name="FancyZones_AllowPopupWindowSnap.Header" xml:space="preserve"> <value>Allow popup windows snapping</value> </data> <data name="FancyZones_AllowChildWindowSnap.Content" xml:space="preserve"> <value>Allow child windows snapping</value> </data> <data name="Shell_WhatsNew.Content" xml:space="preserve"> <value>What's new</value> </data> <data name="Shell_Peek.Content" xml:space="preserve"> <value>Peek</value> <comment>Product name: Navigation view item name for Peek</comment> </data> <data name="Peek.ModuleTitle" xml:space="preserve"> <value>Peek</value> </data> <data name="Peek.ModuleDescription" xml:space="preserve"> <value>Peek is a quick and easy way to preview files. Select a file in File Explorer and press the shortcut to open the file preview.</value> </data> <data name="Peek_EnablePeek.Header" xml:space="preserve"> <value>Enable Peek</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="Peek_BehaviorHeader.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="Peek_AlwaysRunNotElevated.Header" xml:space="preserve"> <value>Always run not elevated, even when PowerToys is elevated</value> </data> <data name="Peek_AlwaysRunNotElevated.Description" xml:space="preserve"> <value>Tries to run Peek without elevated permissions, to fix access to network shares. You need to disable and re-enable Peek for changes to this value to take effect.</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="Peek_CloseAfterLosingFocus.Header" xml:space="preserve"> <value>Automatically close the Peek window after it loses focus</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="FancyZones_DisableRoundCornersOnWindowSnap.Content" xml:space="preserve"> <value>Disable round corners when window is snapped</value> </data> <data name="PowerLauncher_SearchQueryTuningEnabled.Description" xml:space="preserve"> <value>Fine tune results ordering</value> </data> <data name="PowerLauncher_SearchQueryTuningEnabled.Header" xml:space="preserve"> <value>Results order tuning</value> </data> <data name="PowerLauncher_SearchClickedItemWeight.Description" xml:space="preserve"> <value>Use a higher number to get selected results to rise faster. The default is 5, 0 to disable.</value> </data> <data name="PowerLauncher_SearchClickedItemWeight.Header" xml:space="preserve"> <value>Selected item weight</value> </data> <data name="PowerLauncher_WaitForSlowResults.Description" xml:space="preserve"> <value>Selecting this can help preselect the top, more relevant result, but at the risk of jumpiness</value> </data> <data name="PowerLauncher_WaitForSlowResults.Header" xml:space="preserve"> <value>Wait on slower plugin results before selecting top item in results</value> </data> <data name="PowerLauncher_PluginWeightBoost.Description" xml:space="preserve"> <value>Use a higher number to have this plugin's result show higher in the global results. Default is 0.</value> </data> <data name="PowerLauncher_PluginWeightBoost.Header" xml:space="preserve"> <value>Global sort order score modifier</value> </data> <data name="AlwaysOnTop_RoundCorners.Content" xml:space="preserve"> <value>Enable round corners</value> </data> <data name="LearnMore_QuickAccent.Text" xml:space="preserve"> <value>Learn more about Quick Accent</value> <comment>Quick Accent is a product name, do not loc</comment> </data> <data name="QuickAccent_EnableQuickAccent.Header" xml:space="preserve"> <value>Enable Quick Accent</value> </data> <data name="Shell_QuickAccent.Content" xml:space="preserve"> <value>Quick Accent</value> </data> <data name="QuickAccent.ModuleDescription" xml:space="preserve"> <value>Quick Accent is an alternative way to type accented characters, useful for when a keyboard doesn't support that specific accent. Activate by holding the key for the character you want to add an accent to, then press the activation key (space, left or right arrow keys) and an overlay to select accented characters will appear!</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent.ModuleTitle" xml:space="preserve"> <value>Quick Accent</value> </data> <data name="QuickAccent.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> </data> <data name="Oobe_QuickAccent.Description" xml:space="preserve"> <value>Quick Accent is an easy way to write letters with accents, like on a smartphone.</value> </data> <data name="Oobe_QuickAccent.Title" xml:space="preserve"> <value>Quick Accent</value> </data> <data name="Oobe_QuickAccent_HowToUse.Text" xml:space="preserve"> <value>Open **PowerToys Settings** and enable Quick Accent. While holding the key for the character you want to add an accent to, press the Activation Key and an overlay to select the accented character will appear.</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="QuickAccent_Activation_Shortcut.Header" xml:space="preserve"> <value>Activation key</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent_Activation_Shortcut.Description" xml:space="preserve"> <value>Press this key after holding down the target letter</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent_Activation_Key_Arrows.Content" xml:space="preserve"> <value>Left/Right Arrow</value> <comment>Left/Right arrow keyboard keys</comment> </data> <data name="QuickAccent_Activation_Key_Space.Content" xml:space="preserve"> <value>Space</value> <comment>Space is the space keyboard key</comment> </data> <data name="QuickAccent_Activation_Key_Either.Content" xml:space="preserve"> <value>Left, Right or Space</value> <comment>All are keys on a keyboard</comment> </data> <data name="QuickAccent_Toolbar.Header" xml:space="preserve"> <value>Toolbar</value> </data> <data name="QuickAccent_ToolbarPosition.Header" xml:space="preserve"> <value>Toolbar position</value> </data> <data name="QuickAccent_ToolbarPosition_TopCenter.Content" xml:space="preserve"> <value>Top center</value> </data> <data name="QuickAccent_ToolbarPosition_TopLeftCorner.Content" xml:space="preserve"> <value>Top left corner</value> </data> <data name="QuickAccent_ToolbarPosition_TopRightCorner.Content" xml:space="preserve"> <value>Top right corner</value> </data> <data name="QuickAccent_ToolbarPosition_BottomLeftCorner.Content" xml:space="preserve"> <value>Bottom left corner</value> </data> <data name="QuickAccent_ToolbarPosition_BottomCenter.Content" xml:space="preserve"> <value>Bottom center</value> </data> <data name="QuickAccent_ToolbarPosition_BottomRightCorner.Content" xml:space="preserve"> <value>Bottom right corner</value> </data> <data name="QuickAccent_ToolbarPosition_Center.Content" xml:space="preserve"> <value>Center</value> </data> <data name="QuickAccent_ToolbarPosition_Left.Content" xml:space="preserve"> <value>Left</value> </data> <data name="QuickAccent_ToolbarPosition_Right.Content" xml:space="preserve"> <value>Right</value> </data> <data name="QuickAccent_Behavior.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="QuickAccent_InputTimeMs.Header" xml:space="preserve"> <value>Input delay (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="QuickAccent_InputTimeMs.Description" xml:space="preserve"> <value>Hold the key down for this much time to make the accent menu appear (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="QuickAccent_ExcludedApps.Description" xml:space="preserve"> <value>Prevents module activation if a foreground application is excluded. Add one application name per line.</value> </data> <data name="QuickAccent_ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="QuickAccent_ExcludedApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: Teams.exe</value> </data> <data name="LearnMore_TextExtractor.Text" xml:space="preserve"> <value>Learn more about Text Extractor</value> </data> <data name="TextExtractor_Cancel" xml:space="preserve"> <value>cancel</value> </data> <data name="General_SettingsBackupAndRestore_NothingToBackup" xml:space="preserve"> <value>A new backup was not created because no settings have been changed since last backup.</value> </data> <data name="General_SettingsBackupAndRestore_NoBackupFound" xml:space="preserve"> <value>No backup found</value> </data> <data name="General_SettingsBackupAndRestore_FailedToParseTime" xml:space="preserve"> <value>Failed to parse time</value> </data> <data name="General_SettingsBackupAndRestore_UnknownBackupTime" xml:space="preserve"> <value>Unknown</value> </data> <data name="General_SettingsBackupAndRestore_UnknownBackupSource" xml:space="preserve"> <value>Unknown</value> </data> <data name="General_SettingsBackupAndRestore_ThisMachine" xml:space="preserve"> <value>This computer</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsMatch" xml:space="preserve"> <value>Current settings match</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsStatusAt" xml:space="preserve"> <value>at</value> <comment>E.g., Food was served 'at' noon.</comment> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsDiffer" xml:space="preserve"> <value>Current settings differ</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsNoChecked" xml:space="preserve"> <value>Checking...</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsUnknown" xml:space="preserve"> <value>Unknown</value> </data> <data name="General_SettingsBackupAndRestore_NeverRestored" xml:space="preserve"> <value>Never restored</value> </data> <data name="General_SettingsBackupAndRestore_NothingToRestore" xml:space="preserve"> <value>Nothing to restore.</value> </data> <data name="General_SettingsBackupAndRestore_NoSettingsFilesFound" xml:space="preserve"> <value>No settings files found.</value> </data> <data name="General_SettingsBackupAndRestore_BackupError" xml:space="preserve"> <value>There was an error. Try another backup location.</value> </data> <data name="General_SettingsBackupAndRestore_SettingsFormatError" xml:space="preserve"> <value>There was an error in the settings format. Please check the settings file:</value> </data> <data name="General_SettingsBackupAndRestore_BackupComplete" xml:space="preserve"> <value>Backup completed.</value> </data> <data name="General_SettingsBackupAndRestore_NoBackupSyncPath" xml:space="preserve"> <value>No backup location selected.</value> </data> <data name="General_SettingsBackupAndRestore_NoBackupsFound" xml:space="preserve"> <value>No backups found to restore.</value> </data> <data name="General_SettingsBackupAndRestore_InvalidBackupLocation" xml:space="preserve"> <value>Invalid backup location.</value> </data> <data name="TextExtractor.ModuleDescription" xml:space="preserve"> <value>Text Extractor is a convenient way to copy text from anywhere on screen</value> </data> <data name="TextExtractor.ModuleTitle" xml:space="preserve"> <value>Text Extractor</value> </data> <data name="TextExtractor_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Text Extractor</value> </data> <data name="TextExtractor_SupportedLanguages.Title" xml:space="preserve"> <value>Text Extractor can only recognize languages that have the OCR pack installed.</value> </data> <data name="TextExtractor_SupportedLanguages_Link.Content" xml:space="preserve"> <value>Learn more about supported languages</value> </data> <data name="Shell_TextExtractor.Content" xml:space="preserve"> <value>Text Extractor</value> </data> <data name="Launch_TextExtractor.Content" xml:space="preserve"> <value>Launch Text Extractor</value> </data> <data name="Oobe_TextExtractor.Title" xml:space="preserve"> <value>Text Extractor</value> </data> <data name="Oobe_TextExtractor_HowToUse.Text" xml:space="preserve"> <value>to open Text Extractor and then selecting a region to copy the text from.</value> </data> <data name="Oobe_TextExtractor_TipsAndTricks.Text" xml:space="preserve"> <value>Hold the shift key to move the selection region around.</value> </data> <data name="TextExtractor.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> </data> <data name="Oobe_TextExtractor.Description" xml:space="preserve"> <value>Text Extractor works like Snipping Tool, but copies the text out of the selected region using OCR and puts it on the clipboard.</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Monaco_Try_Format.Description" xml:space="preserve"> <value>Applies to json and xml. Files remain unchanged.</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Monaco_Try_Format.Header" xml:space="preserve"> <value>Try to format the source for preview</value> </data> <data name="Run_ConflictingKeywordInfo.Title" xml:space="preserve"> <value>Some characters and phrases may conflict with global queries of other plugins if you use them as activation command.</value> </data> <data name="Run_ConflictingKeywordInfo_Link.Content" xml:space="preserve"> <value>Learn more about conflicting activation commands</value> </data> <data name="MeasureTool_ContinuousCapture_Information.Title" xml:space="preserve"> <value>The continuous capture mode will consume more resources when in use. Also, measurements will be excluded from screenshots and screen capture.</value> <comment>pointer as in mouse pointer. Resources refer to things like CPU, GPU, RAM</comment> </data> <data name="QuickAccent_Description_Indicator.Header" xml:space="preserve"> <value>Show the Unicode code and name of the currently selected character</value> </data> <data name="QuickAccent_SortByUsageFrequency_Indicator.Header" xml:space="preserve"> <value>Sort characters by usage frequency</value> </data> <data name="QuickAccent_SortByUsageFrequency_Indicator.Description" xml:space="preserve"> <value>Track characters usage frequency and sort them accordingly</value> </data> <data name="QuickAccent_StartSelectionFromTheLeft_Indicator.Header" xml:space="preserve"> <value>Start selection from the left</value> </data> <data name="QuickAccent_StartSelectionFromTheLeft_Indicator.Description" xml:space="preserve"> <value>Start selection from the leftmost character for all activation keys, including left and right arrows</value> </data> <data name="QuickAccent_DisableFullscreen.Header" xml:space="preserve"> <value>Disable when Game Mode is On</value> </data> <data name="QuickAccent_Language.Header" xml:space="preserve"> <value>Characters</value> </data> <data name="QuickAccent_SelectedLanguage.Header" xml:space="preserve"> <value>Choose a character set</value> </data> <data name="QuickAccent_SelectedLanguage.Description" xml:space="preserve"> <value>Show only accented characters common to the selected set</value> </data> <data name="QuickAccent_SelectedLanguage_All.Content" xml:space="preserve"> <value>All available</value> </data> <data name="QuickAccent_SelectedLanguage_Catalan.Content" xml:space="preserve"> <value>Catalan</value> </data> <data name="QuickAccent_SelectedLanguage_Currency.Content" xml:space="preserve"> <value>Currency</value> </data> <data name="QuickAccent_SelectedLanguage_Croatian.Content" xml:space="preserve"> <value>Croatian</value> </data> <data name="QuickAccent_SelectedLanguage_Czech.Content" xml:space="preserve"> <value>Czech</value> </data> <data name="QuickAccent_SelectedLanguage_Gaeilge.Content" xml:space="preserve"> <value>Gaeilge</value> <comment>Gaelic language spoken in Ireland</comment> </data> <data name="QuickAccent_SelectedLanguage_Gaidhlig.Content" xml:space="preserve"> <value>Gàidhlig</value> <comment>Scottish Gaelic</comment> </data> <data name="QuickAccent_SelectedLanguage_German.Content" xml:space="preserve"> <value>German</value> </data> <data name="QuickAccent_SelectedLanguage_Hebrew.Content" xml:space="preserve"> <value>Hebrew</value> </data> <data name="QuickAccent_SelectedLanguage_French.Content" xml:space="preserve"> <value>French</value> </data> <data name="QuickAccent_SelectedLanguage_Estonian.Content" xml:space="preserve"> <value>Estonian</value> </data> <data name="QuickAccent_SelectedLanguage_Lithuanian.Content" xml:space="preserve"> <value>Lithuanian</value> </data> <data name="QuickAccent_SelectedLanguage_Macedonian.Content" xml:space="preserve"> <value>Macedonian</value> </data> <data name="QuickAccent_SelectedLanguage_Maori.Content" xml:space="preserve"> <value>Maori</value> </data> <data name="QuickAccent_SelectedLanguage_Dutch.Content" xml:space="preserve"> <value>Dutch</value> </data> <data name="QuickAccent_SelectedLanguage_Norwegian.Content" xml:space="preserve"> <value>Norwegian</value> </data> <data name="QuickAccent_SelectedLanguage_Pinyin.Content" xml:space="preserve"> <value>Pinyin</value> </data> <data name="QuickAccent_SelectedLanguage_Polish.Content" xml:space="preserve"> <value>Polish</value> </data> <data name="QuickAccent_SelectedLanguage_Portuguese.Content" xml:space="preserve"> <value>Portuguese</value> </data> <data name="QuickAccent_SelectedLanguage_Slovakian.Content" xml:space="preserve"> <value>Slovakian</value> </data> <data name="QuickAccent_SelectedLanguage_Spanish.Content" xml:space="preserve"> <value>Spanish</value> </data> <data name="QuickAccent_SelectedLanguage_Swedish.Content" xml:space="preserve"> <value>Swedish</value> </data> <data name="QuickAccent_SelectedLanguage_Turkish.Content" xml:space="preserve"> <value>Turkish</value> </data> <data name="QuickAccent_SelectedLanguage_Icelandic.Content" xml:space="preserve"> <value>Icelandic</value> </data> <data name="QuickAccent_SelectedLanguage_Romanian.Content" xml:space="preserve"> <value>Romanian</value> </data> <data name="QuickAccent_SelectedLanguage_Serbian.Content" xml:space="preserve"> <value>Serbian</value> </data> <data name="QuickAccent_SelectedLanguage_Hungarian.Content" xml:space="preserve"> <value>Hungarian</value> </data> <data name="QuickAccent_SelectedLanguage_Italian.Content" xml:space="preserve"> <value>Italian</value> </data> <data name="QuickAccent_SelectedLanguage_Kurdish.Content" xml:space="preserve"> <value>Kurdish</value> </data> <data name="QuickAccent_SelectedLanguage_Welsh.Content" xml:space="preserve"> <value>Welsh</value> </data> <data name="Hosts.ModuleDescription" xml:space="preserve"> <value>Quick and simple utility for managing hosts file.</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Hosts.ModuleTitle" xml:space="preserve"> <value>Hosts File Editor</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Shell_Hosts.Content" xml:space="preserve"> <value>Hosts File Editor</value> <comment>Products name: Navigation view item name for Hosts File Editor</comment> </data> <data name="Hosts_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Hosts_Toggle_ShowStartupWarning.Header" xml:space="preserve"> <value>Show a warning at startup</value> </data> <data name="Hosts_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="Hosts_LaunchButtonControl.Description" xml:space="preserve"> <value>Manage your hosts file</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Hosts_LaunchButtonControl.Header" xml:space="preserve"> <value>Launch Host File Editor</value> <comment>"Host File Editor" is a product name</comment> </data> <data name="Hosts_LaunchButton_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Launch Host File Editor</value> <comment>"Host File Editor" is a product name</comment> </data> <data name="Hosts_AdditionalLinesPosition.Header" xml:space="preserve"> <value>Position of additional content</value> </data> <data name="Hosts_AdditionalLinesPosition_Bottom.Content" xml:space="preserve"> <value>Bottom</value> </data> <data name="Hosts_AdditionalLinesPosition_Top.Content" xml:space="preserve"> <value>Top</value> </data> <data name="Hosts_Behavior_GroupSettings.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="Launch_Hosts.Content" xml:space="preserve"> <value>Launch Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="LearnMore_Hosts.Text" xml:space="preserve"> <value>Learn more about Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Oobe_Hosts.Description" xml:space="preserve"> <value>Hosts File Editor is a quick and simple utility for managing hosts file.</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Oobe_Hosts.Title" xml:space="preserve"> <value>Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Hosts_Toggle_LaunchAdministrator.Description" xml:space="preserve"> <value>Needs to be launched as administrator in order to make changes to the hosts file</value> </data> <data name="Hosts_Toggle_LaunchAdministrator.Header" xml:space="preserve"> <value>Launch as administrator</value> </data> <data name="ShortcutGuide_PressTimeForTaskbarIconShortcuts.Header" xml:space="preserve"> <value>Press duration before showing taskbar icon shortcuts (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="FileLocksmith.ModuleDescription" xml:space="preserve"> <value>A Windows shell extension to find out which processes are using the selected files and directories.</value> </data> <data name="FileLocksmith.ModuleTitle" xml:space="preserve"> <value>File Locksmith</value> </data> <data name="Shell_FileLocksmith.Content" xml:space="preserve"> <value>File Locksmith</value> <comment>Product name: Navigation view item name for FileLocksmith</comment> </data> <data name="FileLocksmith_Enable_FileLocksmith.Header" xml:space="preserve"> <value>Enable File Locksmith</value> <comment>File Locksmith is the name of the utility</comment> </data> <data name="FileLocksmith_Toggle_StandardContextMenu.Content" xml:space="preserve"> <value>Default and extended context menu</value> </data> <data name="FileLocksmith_Toggle_ExtendedContextMenu.Content" xml:space="preserve"> <value>Extended context menu only</value> </data> <data name="FileLocksmith_Toggle_ContextMenu.Header" xml:space="preserve"> <value>Show File Locksmith in</value> </data> <data name="FileLocksmith_ShellIntegration.Header" xml:space="preserve"> <value>Shell integration</value> <comment>This refers to directly integrating in with Windows</comment> </data> <data name="GPO_IsSettingForced.Title" xml:space="preserve"> <value>The system administrator is forcing this setting.</value> </data> <data name="Hosts_AdditionalLinesPosition.Description" xml:space="preserve"> <value>Additional content includes the file header and lines that can't parse</value> </data> <data name="TextExtractor_Languages.Header" xml:space="preserve"> <value>Preferred language</value> </data> <data name="Alternate_OOBE_AlwaysOnTop_Description.Text" xml:space="preserve"> <value>Pin a window so that:</value> </data> <data name="Alternate_OOBE_AlwaysOnTop_Title.Text" xml:space="preserve"> <value>Always On Top</value> </data> <data name="Alternate_OOBE_ColorPicker_Description.Text" xml:space="preserve"> <value>To pick a color:</value> </data> <data name="Alternate_OOBE_ColorPicker_Title.Text" xml:space="preserve"> <value>Color Picker</value> </data> <data name="Alternate_OOBE_Description.Text" xml:space="preserve"> <value>Here are a few shortcuts to get you started:</value> </data> <data name="Alternate_OOBE_FancyZones_Description.Text" xml:space="preserve"> <value>To open the FancyZones editor, press:</value> </data> <data name="Alternate_OOBE_FancyZones_Title.Text" xml:space="preserve"> <value>FancyZones</value> </data> <data name="Alternate_OOBE_Run_Description.Text" xml:space="preserve"> <value>Get access to your files and more:</value> </data> <data name="Alternate_OOBE_Run_Title.Text" xml:space="preserve"> <value>PowerToys Run</value> </data> <data name="General_Experimentation.Header" xml:space="preserve"> <value>Experimentation</value> </data> <data name="GeneralPage_EnableExperimentation.Description" xml:space="preserve"> <value>Note: Only Windows Insider builds may be selected for experimentation</value> </data> <data name="GeneralPage_EnableExperimentation.Header" xml:space="preserve"> <value>Allow experimentation with new features</value> </data> <data name="GPO_ExperimentationIsDisallowed.Title" xml:space="preserve"> <value>The system administrator has disabled experimentation.</value> </data> <data name="Shell_PastePlain.Content" xml:space="preserve"> <value>Paste As Plain Text</value> <comment>Product name: Navigation view item name for Paste as Plain Text</comment> </data> <data name="PastePlain.ModuleDescription" xml:space="preserve"> <value>Paste As Plain Text is a quick shortcut for pasting the text contents of your clipboard without formatting. Note: the formatted text in the clipboard is replaced with the unformatted text.</value> </data> <data name="PastePlain.ModuleTitle" xml:space="preserve"> <value>Paste As Plain Text</value> </data> <data name="PastePlain_Cancel" xml:space="preserve"> <value>cancel</value> </data> <data name="PastePlain_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Paste As Plain Text</value> </data> <data name="Oobe_PastePlain.Description" xml:space="preserve"> <value>Paste As Plain Text strips rich formatting from your clipboard data and pastes it as non-formatted text.</value> </data> <data name="Oobe_PastePlain.Title" xml:space="preserve"> <value>Paste As Plain Text</value> </data> <data name="Oobe_PastePlain_HowToUse.Text" xml:space="preserve"> <value>to paste your clipboard data as plain text. Note: this will replace the formatted text in your clipboard with the plain text.</value> </data> <data name="AllAppsTxt.Text" xml:space="preserve"> <value>All apps</value> </data> <data name="BackBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Back</value> </data> <data name="BackLabel.Text" xml:space="preserve"> <value>Back</value> </data> <data name="BugReportBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Bug report</value> </data> <data name="BugReportTooltip.Text" xml:space="preserve"> <value>Bug report</value> </data> <data name="DocsBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Documentation</value> </data> <data name="DocsTooltip.Text" xml:space="preserve"> <value>Documentation</value> </data> <data name="FZEditorString" xml:space="preserve"> <value>FancyZones Editor</value> <comment>Do not localize this string</comment> </data> <data name="MoreBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>More</value> </data> <data name="MoreLabel.Text" xml:space="preserve"> <value>More</value> </data> <data name="SettingsBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Settings</value> </data> <data name="SettingsTooltip.Text" xml:space="preserve"> <value>Settings</value> </data> <data name="ShortcutsTxt.Text" xml:space="preserve"> <value>Shortcuts</value> </data> <data name="UpdateAvailable.Title" xml:space="preserve"> <value>Update available</value> </data> <data name="FileExplorerPreview_Toggle_Monaco_Max_File_Size.Header" xml:space="preserve"> <value>Maximum file size to preview</value> <comment>Size refers to the disk space used by a file</comment> </data> <data name="FileExplorerPreview_Toggle_Monaco_Max_File_Size.Description" xml:space="preserve"> <value>The maximum size, in kilobytes, for files to be displayed. This is a safety mechanism to prevent loading large files into RAM.</value> <comment>"RAM" refers to random access memory; "size" refers to disk space; "bytes" refer to the measurement unit</comment> </data> <data name="RegistryPreview.ModuleDescription" xml:space="preserve"> <value>A quick little utility to visualize and edit complex Windows Registry files.</value> </data> <data name="RegistryPreview.ModuleTitle" xml:space="preserve"> <value>Registry Preview</value> </data> <data name="Shell_RegistryPreview.Content" xml:space="preserve"> <value>Registry Preview</value> <comment>Product name: Navigation view item name for Registry Preview</comment> </data> <data name="RegistryPreview_Enable_RegistryPreview.Header" xml:space="preserve"> <value>Enable Registry Preview</value> <comment>Registry Preview is the name of the utility</comment> </data> <data name="Oobe_RegistryPreview_HowToUse.Text" xml:space="preserve"> <value>In File Explorer, right-click a .REG file and select **Preview** from the context menu.</value> </data> <data name="Oobe_RegistryPreview_TipsAndTricks.Text" xml:space="preserve"> <value>You can preview or edit Registry files in File Explorer or by opening the app from the PowerToys launcher.</value> </data> <data name="Oobe_RegistryPreview.Description" xml:space="preserve"> <value>Registry Preview is a quick little utility to visualize and edit complex Windows Registry files.</value> </data> <data name="Oobe_RegistryPreview.Title" xml:space="preserve"> <value>Registry Preview</value> <comment>Do not localize this string</comment> </data> <data name="LearnMore_RegistryPreview.Text" xml:space="preserve"> <value>Learn more about Registry Preview</value> <comment>Registry Preview is a product name, do not loc</comment> </data> <data name="Launch_RegistryPreview.Content" xml:space="preserve"> <value>Launch Registry Preview</value> <comment>"Registry Preview" is the name of the utility</comment> </data> <data name="MouseUtils_MouseJump.Description" xml:space="preserve"> <value>Quickly move the mouse pointer long distances.</value> <comment>"Mouse Jump" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_MouseJump.Header" xml:space="preserve"> <value>Mouse Jump</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_MouseJump_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to turn on or off this mode</value> </data> <data name="MouseUtils_MouseJump_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MouseUtils_Enable_MouseJump.Header" xml:space="preserve"> <value>Enable Mouse Jump</value> <comment>"Mouse Jump" is the name of the utility.</comment> </data> <data name="GPO_AutoDownloadUpdatesIsDisabled.Title" xml:space="preserve"> <value>The system administrator has disabled the automatic download of updates.</value> </data> <data name="Hosts_Toggle_LoopbackDuplicates.Description" xml:space="preserve"> <value>127.0.0.1, ::1, ...</value> <comment>"127.0.0.1 and ::1" are well known loopback addresses, do not loc</comment> </data> <data name="Hosts_Toggle_LoopbackDuplicates.Header" xml:space="preserve"> <value>Consider loopback addresses as duplicates</value> </data> <data name="RegistryPreview_Launch_GroupSettings.Header" xml:space="preserve"> <value>Launch</value> </data> <data name="RegistryPreview_LaunchButton_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Launch Registry Preview</value> </data> <data name="RegistryPreview_LaunchButtonControl.Header" xml:space="preserve"> <value>Launch Registry Preview</value> </data> <data name="RegistryPreview_DefaultRegApp.Header" xml:space="preserve"> <value>Default app</value> </data> <data name="RegistryPreview_DefaultRegApp.Description" xml:space="preserve"> <value>Make Registry Preview default app for opening .reg files</value> <comment>Registry Preview is app name. Do not localize.</comment> </data> <data name="PastePlain_ShortcutWarning.Title" xml:space="preserve"> <value>Using this shortcut may prevent non-text paste actions (e.g. images, files) or built-in paste plain text actions in other applications from functioning.</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize.Header" xml:space="preserve"> <value>Thumbnail Size</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Description_Prefix.Text" xml:space="preserve"> <value>Constrain thumbnail image size to a maximum of</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Description_Suffix.Text" xml:space="preserve"> <value>pixels</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Edit_Height.Header" xml:space="preserve"> <value>Maximum height (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Edit_Width.Header" xml:space="preserve"> <value>Maximum width (px)</value> <comment>px = pixels</comment> </data> <data name="Oobe_Peek.Description" xml:space="preserve"> <value>A lightning fast file preview feature for Windows.</value> </data> <data name="Oobe_Peek.Title" xml:space="preserve"> <value>Peek</value> </data> <data name="Oobe_Peek_HowToUse.Text" xml:space="preserve"> <value>to preview the file that's currently selected in File Explorer.</value> </data> <data name="MWB_PCNameLabel.PlaceholderText" xml:space="preserve"> <value>Device name</value> </data> <data name="MWB_SecurityKeyLabel.PlaceholderText" xml:space="preserve"> <value>Security key</value> </data> <data name="Hosts_Encoding.Description" xml:space="preserve"> <value>Choose the encoding of the hosts file</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Hosts_Encoding.Header" xml:space="preserve"> <value>Encoding</value> </data> <data name="Hosts_Encoding_Utf8.Content" xml:space="preserve"> <value>UTF-8</value> </data> <data name="Hosts_Encoding_Utf8Bom.Content" xml:space="preserve"> <value>UTF-8 with BOM</value> </data> <data name="MouseUtils_MouseHighlighter_AlwaysColor.Header" xml:space="preserve"> <value>Always highlight color</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsAutoHide.Content" xml:space="preserve"> <value>Automatically hide crosshairs when the mouse pointer is hidden</value> </data> <data name="MouseUtils_AutoActivate.Content" xml:space="preserve"> <value>Automatically activate on utility startup</value> </data> <data name="Run_FindMorePlugins.Text" xml:space="preserve"> <value>Find more plugins</value> </data> <data name="Run_PluginUseFindMorePlugins.Content" xml:space="preserve"> <value>Find more plugins</value> </data> <data name="Run_SomePluginsAreGpoManaged.Title" xml:space="preserve"> <value>The system administrator is managing the enabled state of some plugins.</value> </data> <data name="AlwaysOnTop_FrameOpacity.Header" xml:space="preserve"> <value>Opacity (%)</value> </data> <data name="MouseUtils_FindMyMouse_ActivationCustomizedShortcut.Content" xml:space="preserve"> <value>Custom shortcut</value> </data> <data name="MouseUtils_FindMyMouse_ActivationDoubleRightControlPress.Content" xml:space="preserve"> <value>Press Right Control twice</value> <comment>Right control is the physical key on the keyboard.</comment> </data> <data name="MouseUtils_FindMyMouse_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to turn on or off this mode</value> </data> <data name="MouseUtils_FindMyMouse_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="SettingsWindow_AdminTitle" xml:space="preserve"> <value>Administrator: PowerToys Settings</value> <comment>Title of the settings window when running as administrator</comment> </data> </root>
<?xml version="1.0" encoding="utf-8"?> <root> <!-- Microsoft ResX Schema Version 2.0 The primary goals of this format is to allow a simple XML format that is mostly human readable. The generation and parsing of the various data types are done through the TypeConverter classes associated with the data types. Example: ... ado.net/XML headers & schema ... <resheader name="resmimetype">text/microsoft-resx</resheader> <resheader name="version">2.0</resheader> <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader> <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader> <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data> <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data> <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64"> <value>[base64 mime encoded serialized .NET Framework object]</value> </data> <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value> <comment>This is a comment</comment> </data> There are any number of "resheader" rows that contain simple name/value pairs. Each data row contains a name, and value. The row also contains a type or mimetype. Type corresponds to a .NET class that support text/value conversion through the TypeConverter architecture. Classes that don't support this are serialized and stored with the mimetype set. The mimetype is used for serialized objects, and tells the ResXResourceReader how to depersist the object. This is currently not extensible. For a given mimetype the value must be set accordingly: Note - application/x-microsoft.net.object.binary.base64 is the format that the ResXResourceWriter will generate, however the reader can read any of the formats listed below. mimetype: application/x-microsoft.net.object.binary.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.soap.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Soap.SoapFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.bytearray.base64 value : The object must be serialized into a byte array : using a System.ComponentModel.TypeConverter : and then encoded with base64 encoding. --> <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> <xsd:import namespace="http://www.w3.org/XML/1998/namespace" /> <xsd:element name="root" msdata:IsDataSet="true"> <xsd:complexType> <xsd:choice maxOccurs="unbounded"> <xsd:element name="metadata"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" /> </xsd:sequence> <xsd:attribute name="name" use="required" type="xsd:string" /> <xsd:attribute name="type" type="xsd:string" /> <xsd:attribute name="mimetype" type="xsd:string" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="assembly"> <xsd:complexType> <xsd:attribute name="alias" type="xsd:string" /> <xsd:attribute name="name" type="xsd:string" /> </xsd:complexType> </xsd:element> <xsd:element name="data"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" /> <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="resheader"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" /> </xsd:complexType> </xsd:element> </xsd:choice> </xsd:complexType> </xsd:element> </xsd:schema> <resheader name="resmimetype"> <value>text/microsoft-resx</value> </resheader> <resheader name="version"> <value>2.0</value> </resheader> <resheader name="reader"> <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <resheader name="writer"> <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <data name="Attribution_Rooler.Text" xml:space="preserve"> <value>Inspired by Rooler</value> <comment>Rooler is a name of the tool.</comment> </data> <data name="Shell_VideoConference.Content" xml:space="preserve"> <value>Video Conference Mute</value> <comment>Navigation view item name for Video Conference</comment> </data> <data name="Shell_MeasureTool.Content" xml:space="preserve"> <value>Screen Ruler</value> <comment>Product name: Navigation view item name for Screen Ruler</comment> </data> <data name="MeasureTool.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="MeasureTool.ModuleDescription" xml:space="preserve"> <value>Screen Ruler is a quick and easy way to measure pixels on your screen.</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool.ModuleTitle" xml:space="preserve"> <value>Screen Ruler</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool_ActivationSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="MeasureTool_Settings.Header" xml:space="preserve"> <value>Behavior</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MeasureTool_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to bring up the command bar</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool_DefaultMeasureStyle.Header" xml:space="preserve"> <value>Default measure style</value> </data> <data name="MeasureTool_DefaultMeasureStyle.Description" xml:space="preserve"> <value>The utility will start having the selected style activated</value> </data> <data name="MeasureTool_DefaultMeasureStyle_None.Content" xml:space="preserve"> <value>None</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Bounds.Content" xml:space="preserve"> <value>Bounds</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Spacing.Content" xml:space="preserve"> <value>Spacing</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Horizontal_Spacing.Content" xml:space="preserve"> <value>Horizontal spacing</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Vertical_Spacing.Content" xml:space="preserve"> <value>Vertical spacing</value> </data> <data name="MeasureTool_UnitsOfMeasure.Header" xml:space="preserve"> <value>Units of measurement</value> </data> <data name="MeasureTool_UnitsOfMeasure_Pixels.Content" xml:space="preserve"> <value>Pixels</value> </data> <data name="MeasureTool_UnitsOfMeasure_Inches.Content" xml:space="preserve"> <value>Inches</value> </data> <data name="MeasureTool_UnitsOfMeasure_Centimeters.Content" xml:space="preserve"> <value>Centimeters</value> </data> <data name="MeasureTool_PixelTolerance.Header" xml:space="preserve"> <value>Pixel tolerance for edge detection</value> </data> <data name="MeasureTool_MeasureCrossColor.Header" xml:space="preserve"> <value>Line color</value> </data> <data name="MeasureTool_ContinuousCapture.Header" xml:space="preserve"> <value>Capture screen continuously during measuring</value> </data> <data name="MeasureTool_ContinuousCapture.Description" xml:space="preserve"> <value>Refresh screen contexts in real-time instead of making a screenshot once</value> </data> <data name="MeasureTool_PerColorChannelEdgeDetection.Header" xml:space="preserve"> <value>Per color channel edge detection</value> </data> <data name="MeasureTool_PerColorChannelEdgeDetection.Description" xml:space="preserve"> <value>If enabled, test that all color channels are within a tolerance distance from each other. Otherwise, check that the sum of all color channels differences is smaller than the tolerance.</value> </data> <data name="MeasureTool_DrawFeetOnCross.Header" xml:space="preserve"> <value>Draw feet on cross</value> </data> <data name="MeasureTool_DrawFeetOnCross.Description" xml:space="preserve"> <value>Adds feet to the end of cross lines</value> </data> <data name="MeasureTool_EnableMeasureTool.Header" xml:space="preserve"> <value>Enable Screen Ruler</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MouseWithoutBorders_ActivationSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="MouseWithoutBorders_DeviceLayoutSettings.Header" xml:space="preserve"> <value>Device layout</value> </data> <data name="MouseWithoutBorders_DeviceLayoutSettings.Description" xml:space="preserve"> <value>Drag and drop a machine to rearrange the order.</value> </data> <data name="MouseWithoutBorders_CannotDragDropAsAdmin.Title" xml:space="preserve"> <value>It is not possible to use drag and drop while running PowerToys elevated. As a workaround, please restart PowerToys without elevation to edit the device layout.</value> </data> <data name="MouseWithoutBorders_KeySettings.Header" xml:space="preserve"> <value>Encryption key</value> </data> <data name="MouseWithoutBorders_SecurityKey.Header" xml:space="preserve"> <value>Security key</value> </data> <data name="MouseWithoutBorders_SecurityKey.Description" xml:space="preserve"> <value>The key must be auto generated in one machine by clicking on New Key, then typed in other machines</value> </data> <data name="MouseWithoutBorders_NewKey.Content" xml:space="preserve"> <value>New key</value> </data> <data name="MouseWithoutBorders_CopyMachineName.Text" xml:space="preserve"> <value>Copy to clipboard</value> </data> <data name="MouseWithoutBorders_ReconnectButton.Text" xml:space="preserve"> <value>Refresh connections</value> </data> <data name="MouseWithoutBorders_ReconnectTooltip.Text" xml:space="preserve"> <value>Reestablishes connections with other devices if you are experiencing issues.</value> </data> <data name="MouseWithoutBorders_ThisMachineNameLabel.Header" xml:space="preserve"> <value>Host name of this device</value> </data> <data name="MouseWithoutBorders_Connect.Content" xml:space="preserve"> <value>Connect</value> </data> <data name="MouseWithoutBorders_UninstallService.Header" xml:space="preserve"> <value>Uninstall service</value> </data> <data name="MouseWithoutBorders_UninstallService.Description" xml:space="preserve"> <value>Removes the service from the computer. Needs to run as administrator.</value> </data> <data name="MouseWithoutBorders_Settings.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="MouseWithoutBorders_TroubleShooting.Header" xml:space="preserve"> <value>Troubleshooting</value> </data> <data name="MouseWithoutBorders_AddFirewallRuleButtonControl.Header" xml:space="preserve"> <value>Add a firewall rule for Mouse Without Borders</value> <comment>"Mouse Without Borders" is a product name</comment> </data> <data name="MouseWithoutBorders_AddFirewallRuleButtonControl.Description" xml:space="preserve"> <value>Adding a firewall rule might help solve connection issues.</value> </data> <data name="MouseWithoutBorders_RunAsAdminText.Title" xml:space="preserve"> <value>You need to run as administrator to modify this setting.</value> </data> <data name="MouseWithoutBorders_ServiceUserUninstallWarning.Title" xml:space="preserve"> <value>If PowerToys is installed as a user, uninstalling/upgrading may require the Mouse Without Borders service to be removed manually later.</value> </data> <data name="MouseWithoutBorders_ServiceSettings.Header" xml:space="preserve"> <value>Service</value> </data> <data name="MouseWithoutBorders_Toggle_Enable.Header" xml:space="preserve"> <value>Enable Mouse Without Borders</value> </data> <data name="MouseWithoutBorders.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="MouseWithoutBorders.ModuleDescription" xml:space="preserve"> <value>Mouse Without Borders is a quick and easy way to move your cursor across multiple devices.</value> <comment>"Mouse Without Borders" is the name of the utility</comment> </data> <data name="MouseWithoutBorders.ModuleTitle" xml:space="preserve"> <value>Mouse Without Borders</value> <comment>"Mouse Without Borders" is the name of the utility</comment> </data> <data name="MouseWithoutBorders_UseService.Header" xml:space="preserve"> <value>Use Service</value> </data> <data name="MouseWithoutBorders_UseService.Description" xml:space="preserve"> <value>Runs in service mode, that allows MWB to control remote machines when they're locked. Also allows control of system and administrator applications.</value> </data> <data name="MouseWithoutBorders_MatrixOneRow.Header" xml:space="preserve"> <value>Devices in a single row</value> </data> <data name="MouseWithoutBorders_MatrixOneRow.Description" xml:space="preserve"> <value>Sets whether the devices are aligned on a single row. A two by two matrix is considered otherwise.</value> </data> <data name="MouseWithoutBorders_WrapMouse.Header" xml:space="preserve"> <value>Wrap mouse</value> </data> <data name="MouseWithoutBorders_WrapMouse.Description" xml:space="preserve"> <value>Move control back to the first machine when mouse moves past the last one.</value> </data> <data name="MouseWithoutBorders_ShareClipboard.Header" xml:space="preserve"> <value>Share clipboard</value> </data> <data name="MouseWithoutBorders_TransferFile.Header" xml:space="preserve"> <value>Transfer file</value> </data> <data name="MouseWithoutBorders_HideMouseAtScreenEdge.Header" xml:space="preserve"> <value>Hide mouse at the screen edge</value> </data> <data name="MouseWithoutBorders_DrawMouseCursor.Header" xml:space="preserve"> <value>Draw mouse cursor</value> </data> <data name="MouseWithoutBorders_ValidateRemoteMachineIP.Header" xml:space="preserve"> <value>Validate remote machine IP</value> </data> <data name="MouseWithoutBorders_SameSubnetOnly.Header" xml:space="preserve"> <value>Same subnet only</value> </data> <data name="MouseWithoutBorders_BlockScreenSaverOnOtherMachines.Header" xml:space="preserve"> <value>Block screen saver on other machines</value> </data> <data name="MouseWithoutBorders_MoveMouseRelatively.Header" xml:space="preserve"> <value>Move mouse relatively</value> </data> <data name="MouseWithoutBorders_BlockMouseAtScreenCorners.Header" xml:space="preserve"> <value>Block mouse at screen corners</value> </data> <data name="MouseWithoutBorders_ShowClipboardAndNetworkStatusMessages.Header" xml:space="preserve"> <value>Show clipboard and network status messages</value> </data> <data name="MouseWithoutBorders_ShowOriginalUI.Header" xml:space="preserve"> <value>Show the original Mouse Without Borders UI</value> </data> <data name="MouseWithoutBorders_ShowOriginalUI.Description" xml:space="preserve"> <value>This is accessible from the system tray and requires a restart.</value> </data> <data name="MouseWithoutBorders_ShareClipboard.Description" xml:space="preserve"> <value>If share clipboard stops working, Ctrl+Alt+Del then Esc may solve the problem.</value> </data> <data name="MouseWithoutBorders_TransferFile.Description" xml:space="preserve"> <value>If a file (&lt;100MB) is copied, it will be transferred to the remote machine clipboard.</value> </data> <data name="MouseWithoutBorders_HideMouseAtScreenEdge.Description" xml:space="preserve"> <value>Hide the mouse cursor at the top edge of the screen when switching to other machine. This option also steals the focus from any full-screen app to ensure the keyboard input is redirected.</value> </data> <data name="MouseWithoutBorders_DrawMouseCursor.Description" xml:space="preserve"> <value>Mouse cursor may not be visible in Windows 10 and later versions of Windows when there is no physical mouse attached.</value> </data> <data name="MouseWithoutBorders_ValidateRemoteMachineIP.Description" xml:space="preserve"> <value>Reverse DNS lookup to validate machine IP Address.</value> </data> <data name="MouseWithoutBorders_SameSubnetOnly.Description" xml:space="preserve"> <value>Only connect to machines in the same intranet NNN.NNN.*.* (only works when both machines have IPv4 enabled)</value> </data> <data name="MouseWithoutBorders_IPAddressMapping_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: MyLaptop 192.168.0.24</value> <comment>Don't translate MyLaptop</comment> </data> <data name="MouseWithoutBorders_IPAddressMapping.Header" xml:space="preserve"> <value>IP address mapping</value> </data> <data name="MouseWithoutBorders_IPAddressMapping.Description" xml:space="preserve"> <value>Resolve machine's IP address using manually entered mappings below.</value> </data> <data name="MouseWithoutBorders_BlockScreenSaverOnOtherMachines.Description" xml:space="preserve"> <value>Prevent screen saver from starting on other machines when user is actively working on this machine.</value> </data> <data name="MouseWithoutBorders_MoveMouseRelatively.Description" xml:space="preserve"> <value>Use this option when remote machine's monitor settings are different, or remote machine has multiple monitors.</value> </data> <data name="MouseWithoutBorders_BlockMouseAtScreenCorners.Description" xml:space="preserve"> <value>To avoid accident machine-switch at screen corners.</value> </data> <data name="MouseWithoutBorders_ShowClipboardAndNetworkStatusMessages.Description" xml:space="preserve"> <value>Show clipboard activities and network status in system tray notifications</value> </data> <data name="MouseWithoutBorders_KeyboardShortcuts_Group.Header" xml:space="preserve"> <value>Keyboard shortcuts</value> <comment>keyboard is the hardware peripheral</comment> </data> <data name="MouseWithoutBorders_AdvancedSettings_Group.Header" xml:space="preserve"> <value>Advanced Settings</value> </data> <data name="MouseWithoutBorders_EasyMouseOption.Header" xml:space="preserve"> <value>Easy Mouse: move between machines by moving the mouse pointer to the screen edges.</value> </data> <data name="MouseWithoutBorders_EasyMouseOption.Description" xml:space="preserve"> <value>Can also be set to move only when pressing Shift or Ctrl.</value> <comment>Shift and Ctrl are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_EasyMouseOption_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_EasyMouseOption_Enabled.Content" xml:space="preserve"> <value>Enabled</value> </data> <data name="MouseWithoutBorders_EasyMouseOption_Ctrl.Content" xml:space="preserve"> <value>Ctrl</value> <comment>This is the Ctrl keyboard key</comment> </data> <data name="MouseWithoutBorders_EasyMouseOption_Shift.Content" xml:space="preserve"> <value>Shift</value> <comment>This is the Shift keyboard key</comment> </data> <data name="MouseWithoutBorders_LockMachinesShortcut.Header" xml:space="preserve"> <value>Shortcut to lock all machines.</value> </data> <data name="MouseWithoutBorders_LockMachinesShortcut.Description" xml:space="preserve"> <value>Hit this hotkey twice to lock all machines. Note: Only the machines which have the same shortcut configured will be locked.</value> </data> <data name="MouseWithoutBorders_ToggleEasyMouseShortcut.Header" xml:space="preserve"> <value>Shortcut to toggle Easy Mouse.</value> <comment>Ctrl and Alt are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_ToggleEasyMouseShortcut.Description" xml:space="preserve"> <value>Only works if EasyMouse is set to Enabled or Disabled.</value> </data> <data name="MouseWithoutBorders_ToggleEasyMouseShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut.Header" xml:space="preserve"> <value>Shortcut to switch between machines. Ctrl+Alt+:</value> <comment>Ctrl and Alt are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut.Description" xml:space="preserve"> <value>Click on Ctrl+Alt+ the chosen option to switch between machines.</value> <comment>Ctrl and Alt are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut_F1.Content" xml:space="preserve"> <value>F1, F2, F3, F4</value> <comment>Don't localize. These are keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut_1.Content" xml:space="preserve"> <value>1, 2, 3, 4</value> <comment>Don't localize. These are keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_LockMachinesShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_ReconnectShortcut.Header" xml:space="preserve"> <value>Shortcut to try reconnecting</value> </data> <data name="MouseWithoutBorders_ReconnectShortcut.Description" xml:space="preserve"> <value>Just in case the connection is lost for any reason.</value> </data> <data name="MouseWithoutBorders_ReconnectShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut.Header" xml:space="preserve"> <value>Shortcut to switch to multiple machine mode.</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut.Description" xml:space="preserve"> <value>Allows controlling all computers at once.</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut_Ctrl3.Content" xml:space="preserve"> <value>Ctrl three times</value> <comment>This is the Ctrl keyboard key</comment> </data> <data name="VideoConference_Enable.Header" xml:space="preserve"> <value>Enable Video Conference Mute</value> </data> <data name="VideoConference.ModuleDescription" xml:space="preserve"> <value>Video Conference Mute is a quick and easy way to do a global "mute" of both your microphone and webcam. Disabling this module or closing PowerToys will unmute the microphone and camera.</value> </data> <data name="VideoConference_CameraAndMicrophoneMuteHotkeyControl_Header.Header" xml:space="preserve"> <value>Mute camera &amp; microphone</value> </data> <data name="VideoConference_MicrophoneMuteHotkeyControl_Header.Header" xml:space="preserve"> <value>Mute microphone</value> </data> <data name="VideoConference_MicrophonePushToTalkHotkeyControl_Header.Header" xml:space="preserve"> <value>Push to talk</value> </data> <data name="VideoConference_CameraMuteHotkeyControl_Header.Header" xml:space="preserve"> <value>Mute camera</value> </data> <data name="VideoConference_SelectedCamera.Header" xml:space="preserve"> <value>Selected camera</value> </data> <data name="VideoConference_SelectedMicrophone.Header" xml:space="preserve"> <value>Selected microphone</value> </data> <data name="VideoConference_PushToReverse.Header" xml:space="preserve"> <value>Push to reverse</value> </data> <data name="VideoConference_PushToReverse.Description" xml:space="preserve"> <value>If enabled, allows both push to talk and push to mute, depending on microphone state</value> </data> <data name="VideoConference_CameraOverlayImagePathHeader.Header" xml:space="preserve"> <value>Image displayed when camera is muted</value> </data> <data name="VideoConference_ToolbarPosition.Header" xml:space="preserve"> <value>Toolbar position</value> </data> <data name="VideoConference_ToolbarPosition_TopCenter.Content" xml:space="preserve"> <value>Top center</value> </data> <data name="VideoConference_ToolbarPosition_TopLeftCorner.Content" xml:space="preserve"> <value>Top left corner</value> </data> <data name="VideoConference_ToolbarPosition_TopRightCorner.Content" xml:space="preserve"> <value>Top right corner</value> </data> <data name="VideoConference_ToolbarPosition_BottomLeftCorner.Content" xml:space="preserve"> <value>Bottom left corner</value> </data> <data name="VideoConference_ToolbarPosition_BottomCenter.Content" xml:space="preserve"> <value>Bottom center</value> </data> <data name="VideoConference_ToolbarPosition_BottomRightCorner.Content" xml:space="preserve"> <value>Bottom right corner</value> </data> <data name="VideoConference_ToolbarMonitor.Header" xml:space="preserve"> <value>Show toolbar on</value> </data> <data name="VideoConference_ToolbarMonitor_Main.Content" xml:space="preserve"> <value>Main monitor</value> </data> <data name="VideoConference_ToolbarMonitor_UnderCursor.Content" xml:space="preserve"> <value>Monitor under cursor</value> </data> <data name="VideoConference_ToolbarMonitor_ActiveWindow.Content" xml:space="preserve"> <value>Active window monitor</value> </data> <data name="VideoConference_ToolbarMonitor_All.Content" xml:space="preserve"> <value>All monitors</value> </data> <data name="VideoConference_ToolbarHide.Header" xml:space="preserve"> <value>Hide toolbar</value> </data> <data name="VideoConference_ToolbarHideMuted.Content" xml:space="preserve"> <value>When both camera and microphone are muted</value> </data> <data name="VideoConference_ToolbarHideNever.Content" xml:space="preserve"> <value>Never</value> </data> <data name="VideoConference_ToolbarHideUnmuted.Content" xml:space="preserve"> <value>When both camera and microphone are unmuted</value> </data> <data name="VideoConference_ToolbarHideTimeout.Content" xml:space="preserve"> <value>After timeout</value> </data> <data name="VideoConference.ModuleTitle" xml:space="preserve"> <value>Video Conference Mute</value> </data> <data name="VideoConference_Camera.Header" xml:space="preserve"> <value>Camera</value> </data> <data name="VideoConference_Camera.Description" xml:space="preserve"> <value>To use this feature, make sure to select PowerToys VideoConference Mute as your camera source in your apps.</value> </data> <data name="VideoConference_Microphone.Header" xml:space="preserve"> <value>Microphone</value> </data> <data name="VideoConference_Toolbar.Header" xml:space="preserve"> <value>Toolbar</value> </data> <data name="VideoConference_Behavior.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="VideoConference_StartupAction.Header" xml:space="preserve"> <value>Startup action</value> </data> <data name="VideoConference_StartupActionNothing.Content" xml:space="preserve"> <value>Nothing</value> </data> <data name="VideoConference_StartupActionUnmute.Content" xml:space="preserve"> <value>Unmute</value> </data> <data name="VideoConference_StartupActionMute.Content" xml:space="preserve"> <value>Mute</value> </data> <data name="VideoConference_Shortcuts.Header" xml:space="preserve"> <value>Shortcuts</value> </data> <data name="VideoConference_CameraOverlayImageAlt.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Camera overlay image preview</value> </data> <data name="VideoConference_CameraOverlayImageBrowse.Content" xml:space="preserve"> <value>Browse</value> </data> <data name="VideoConference_CameraOverlayImageClear.Content" xml:space="preserve"> <value>Clear</value> </data> <data name="Shell_General.Content" xml:space="preserve"> <value>General</value> <comment>Navigation view item name for General</comment> </data> <data name="Shell_Awake.Content" xml:space="preserve"> <value>Awake</value> <comment>Product name: Navigation view item name for Awake</comment> </data> <data name="Shell_PowerLauncher.Content" xml:space="preserve"> <value>PowerToys Run</value> <comment>Product name: Navigation view item name for PowerToys Run</comment> </data> <data name="Shell_PowerRename.Content" xml:space="preserve"> <value>PowerRename</value> <comment>Product name: Navigation view item name for PowerRename</comment> </data> <data name="Shell_ShortcutGuide.Content" xml:space="preserve"> <value>Shortcut Guide</value> <comment>Product name: Navigation view item name for Shortcut Guide</comment> </data> <data name="Shell_PowerPreview.Content" xml:space="preserve"> <value>File Explorer add-ons</value> <comment>Product name: Navigation view item name for File Explorer. Please use File Explorer as in the context of File Explorer in Windows</comment> </data> <data name="Shell_FancyZones.Content" xml:space="preserve"> <value>FancyZones</value> <comment>Product name: Navigation view item name for FancyZones</comment> </data> <data name="Shell_ImageResizer.Content" xml:space="preserve"> <value>Image Resizer</value> <comment>Product name: Navigation view item name for Image Resizer</comment> </data> <data name="Shell_ColorPicker.Content" xml:space="preserve"> <value>Color Picker</value> <comment>Product name: Navigation view item name for Color Picker</comment> </data> <data name="Shell_KeyboardManager.Content" xml:space="preserve"> <value>Keyboard Manager</value> <comment>Product name: Navigation view item name for Keyboard Manager</comment> </data> <data name="Shell_MouseWithoutBorders.Content" xml:space="preserve"> <value>Mouse Without Borders</value> <comment>Product name: Navigation view item name for Mouse Without Borders</comment> </data> <data name="Shell_MouseUtilities.Content" xml:space="preserve"> <value>Mouse utilities</value> <comment>Product name: Navigation view item name for Mouse utilities</comment> </data> <data name="Shell_NavigationMenu_Announce_Collapse" xml:space="preserve"> <value>Navigation closed</value> <comment>Accessibility announcement when the navigation pane collapses</comment> </data> <data name="Shell_NavigationMenu_Announce_Open" xml:space="preserve"> <value>Navigation opened</value> <comment>Accessibility announcement when the navigation pane opens</comment> </data> <data name="KeyboardManager_ConfigHeader.Text" xml:space="preserve"> <value>Current configuration</value> <comment>Keyboard Manager current configuration header</comment> </data> <data name="KeyboardManager.ModuleDescription" xml:space="preserve"> <value>Reconfigure your keyboard by remapping keys and shortcuts</value> <comment>Keyboard Manager page description</comment> </data> <data name="KeyboardManager_EnableToggle.Header" xml:space="preserve"> <value>Enable Keyboard Manager</value> <comment>Keyboard Manager enable toggle header. Do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="KeyboardManager_ProfileDescription.Text" xml:space="preserve"> <value>Select the profile to display the active key remap and shortcuts</value> <comment>Keyboard Manager configuration dropdown description</comment> </data> <data name="KeyboardManager_RemapKeyboardButton.Header" xml:space="preserve"> <value>Remap a key</value> <comment>Keyboard Manager remap keyboard button content</comment> </data> <data name="KeyboardManager_Keys.Header" xml:space="preserve"> <value>Keys</value> <comment>Keyboard Manager remap keyboard header</comment> </data> <data name="KeyboardManager_RemapShortcutsButton.Header" xml:space="preserve"> <value>Remap a shortcut</value> <comment>Keyboard Manager remap shortcuts button</comment> </data> <data name="KeyboardManager_Shortcuts.Header" xml:space="preserve"> <value>Shortcuts</value> <comment>Keyboard Manager remap keyboard header</comment> </data> <data name="KeyboardManager_All_Apps_Description" xml:space="preserve"> <value>All Apps</value> <comment>Should be the same as EditShortcuts_AllApps from keyboard manager editor</comment> </data> <data name="Shortcuts.Header" xml:space="preserve"> <value>Shortcuts</value> </data> <data name="Shortcut.Header" xml:space="preserve"> <value>Shortcut</value> </data> <data name="RemapKeysList.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Current Key Remappings</value> </data> <data name="RemapShortcutsList.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Current Shortcut Remappings</value> </data> <data name="KeyboardManager_RemappedKeysListItem.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Key Remapping</value> <comment>key as in keyboard key</comment> </data> <data name="KeyboardManager_RemappedShortcutsListItem.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Shortcut Remapping</value> </data> <data name="KeyboardManager_RemappedTo.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Remapped to</value> </data> <data name="KeyboardManager_ShortcutRemappedTo.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Remapped to</value> </data> <data name="KeyboardManager_TargetApp.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>For Target Application</value> <comment>What computer application would this be for</comment> </data> <data name="KeyboardManager_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Keyboard Manager</value> <comment>do not loc, product name</comment> </data> <data name="ColorPicker.ModuleDescription" xml:space="preserve"> <value>Quick and simple system-wide color picker.</value> </data> <data name="ColorPicker_EnableColorPicker.Header" xml:space="preserve"> <value>Enable Color Picker</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="ColorPicker_ChangeCursor.Content" xml:space="preserve"> <value>Change cursor when picking a color</value> </data> <data name="PowerLauncher.ModuleDescription" xml:space="preserve"> <value>A quick launcher that has additional capabilities without sacrificing performance.</value> </data> <data name="PowerLauncher_EnablePowerLauncher.Header" xml:space="preserve"> <value>Enable PowerToys Run</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="PowerLauncher_SearchResults.Header" xml:space="preserve"> <value>Search &amp; results</value> </data> <data name="PowerLauncher_SearchResultPreference.Header" xml:space="preserve"> <value>Search result preference</value> </data> <data name="PowerLauncher_UsePinyin.Header" xml:space="preserve"> <value>Use Pinyin</value> </data> <data name="PowerLauncher_UsePinyin.Description" xml:space="preserve"> <value>Experimental: Use Pinyin on the search query. May not work for every plugin.</value> </data> <data name="PowerLauncher_SearchResultPreference_MostRecentlyUsed" xml:space="preserve"> <value>Most recently used</value> </data> <data name="PowerLauncher_SearchResultPreference_AlphabeticalOrder" xml:space="preserve"> <value>Alphabetical order</value> </data> <data name="PowerLauncher_SearchResultPreference_RunningProcessesOpenApplications" xml:space="preserve"> <value>Running processes/open applications</value> </data> <data name="PowerLauncher_SearchTypePreference.Header" xml:space="preserve"> <value>Search type preference</value> </data> <data name="PowerLauncher_SearchTypePreference_ApplicationName" xml:space="preserve"> <value>Application name</value> </data> <data name="PowerLauncher_SearchTypePreference_StringInApplication" xml:space="preserve"> <value>A string that is contained in the application</value> </data> <data name="PowerLauncher_SearchTypePreference_ExecutableName" xml:space="preserve"> <value>Executable name</value> </data> <data name="PowerLauncher_MaximumNumberOfResults.Header" xml:space="preserve"> <value>Number of results shown before scrolling</value> </data> <data name="PowerLauncher_OpenPowerLauncher.Header" xml:space="preserve"> <value>Open PowerToys Run</value> </data> <data name="PowerLauncher_OpenFileLocation.Header" xml:space="preserve"> <value>Open file location</value> </data> <data name="PowerLauncher_CopyPathLocation.Header" xml:space="preserve"> <value>Copy path location</value> </data> <data name="PowerLauncher_OpenConsole.Header" xml:space="preserve"> <value>Open console</value> <comment>console refers to Windows command prompt</comment> </data> <data name="PowerLauncher_OverrideWinRKey.Content" xml:space="preserve"> <value>Override Win+R shortcut</value> </data> <data name="PowerLauncher_OverrideWinSKey.Content" xml:space="preserve"> <value>Override Win+S shortcut</value> </data> <data name="PowerLauncher_IgnoreHotkeysInFullScreen.Content" xml:space="preserve"> <value>Ignore shortcuts in fullscreen mode</value> </data> <data name="PowerLauncher_UseCentralizedKeyboardHook.Header" xml:space="preserve"> <value>Use centralized keyboard hook</value> </data> <data name="PowerLauncher_UseCentralizedKeyboardHook.Description" xml:space="preserve"> <value>Try this if there are issues with the shortcut (PowerToys Run might not get focus when triggered from an elevated window)</value> </data> <data name="PowerLauncher_ClearInputOnLaunch.Content" xml:space="preserve"> <value>Clear the previous query on launch</value> </data> <data name="PowerLauncher_TabSelectsContextButtons.Header" xml:space="preserve"> <value>Tab through context buttons</value> </data> <data name="PowerLauncher_TabSelectsContextButtons.Description" xml:space="preserve"> <value>Pressing tab will first select through the available context buttons of the current selection before moving onto the next result</value> </data> <data name="PowerLauncher_GenerateThumbnailsFromFiles.Header" xml:space="preserve"> <value>Generate thumbnails from files</value> </data> <data name="PowerLauncher_GenerateThumbnailsFromFiles.Description" xml:space="preserve"> <value>Results will try to generate thumbnails for files. Disabling this setting may increase stability and speed</value> </data> <data name="PowerLauncher_SearchQueryResultsWithDelay.Header" xml:space="preserve"> <value>Input Smoothing</value> <comment>This is about adding a delay to wait for more input before executing a search</comment> </data> <data name="PowerLauncher_SearchQueryResultsWithDelay.Description" xml:space="preserve"> <value>Wait for more input before searching. This reduces interface jumpiness and system load.</value> </data> <data name="PowerLauncher_FastSearchInputDelayMs.Header" xml:space="preserve"> <value>Immediate plugins</value> </data> <data name="PowerLauncher_FastSearchInputDelayMs.Description" xml:space="preserve"> <value>Affects the plugins that make the UI wait for their results by this amount. Recommended: 30-50 ms.</value> </data> <data name="PowerLauncher_SlowSearchInputDelayMs.Header" xml:space="preserve"> <value>Background execution plugins</value> </data> <data name="PowerLauncher_SlowSearchInputDelayMs.Description" xml:space="preserve"> <value>Affects the plugins that execute in the background by this amount. Recommended: 100-150 ms.</value> </data> <data name="PowerLauncher_SearchInputDelayMs.Header" xml:space="preserve"> <value>Fast plugin throttle (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="KeyboardManager_KeysMappingLayoutRightHeader.Text" xml:space="preserve"> <value>To:</value> <comment>Keyboard Manager mapping keys view right header</comment> </data> <data name="Appearance_GroupSettings.Text" xml:space="preserve"> <value>Appearance</value> </data> <data name="Fancyzones_ImageHyperlinkToDocs.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>FancyZones windows</value> <comment>do not loc the Product name</comment> </data> <data name="FancyZones.ModuleDescription" xml:space="preserve"> <value>Create window layouts to help make multi-tasking easy.</value> <comment>windows refers to application windows</comment> </data> <data name="FancyZones_DisplayOrWorkAreaChangeMoveWindowsCheckBoxControl.Content" xml:space="preserve"> <value>Keep windows in their zones when the screen resolution or work area changes</value> <comment>windows refers to application windows</comment> </data> <data name="FancyZones_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable FancyZones</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="FancyZones_ExcludeApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="FancyZones_ExcludeApps.Description" xml:space="preserve"> <value>Excludes an application from snapping to zones and will only react to Windows Snap - add one application name per line</value> </data> <data name="FancyZones_HighlightOpacity.Header" xml:space="preserve"> <value>Opacity (%)</value> </data> <data name="FancyZones_HotkeyEditorControl.Header" xml:space="preserve"> <value>Open layout editor</value> <comment>Shortcut to launch the FancyZones layout editor application</comment> </data> <data name="FancyZones_WindowSwitching_GroupSettings.Header" xml:space="preserve"> <value>Switch between windows in the current zone</value> </data> <data name="FancyZones_HotkeyNextTabControl.Header" xml:space="preserve"> <value>Next window</value> </data> <data name="FancyZones_HotkeyPrevTabControl.Header" xml:space="preserve"> <value>Previous window</value> </data> <data name="SettingsPage_SetShortcut.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Shortcut setting</value> </data> <data name="SettingsPage_SetShortcut_Glyph.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Information Symbol</value> </data> <data name="FancyZones_LaunchEditorButtonControl.Header" xml:space="preserve"> <value>Launch layout editor</value> <comment>launches the FancyZones layout editor application</comment> </data> <data name="FancyZones_LaunchEditorButtonControl.Description" xml:space="preserve"> <value>Set and manage your layouts</value> <comment>launches the FancyZones layout editor application</comment> </data> <data name="FancyZones_MakeDraggedWindowTransparentCheckBoxControl.Content" xml:space="preserve"> <value>Make dragged window transparent</value> </data> <data name="FancyZones_MouseDragCheckBoxControl_Header.Content" xml:space="preserve"> <value>Use a non-primary mouse button to toggle zone activation</value> </data> <data name="FancyZones_MouseMiddleClickSpanningMultipleZonesCheckBoxControl_Header.Content" xml:space="preserve"> <value>Use middle-click mouse button to toggle multiple zones spanning</value> </data> <data name="FancyZones_MoveWindowsAcrossAllMonitorsCheckBoxControl.Content" xml:space="preserve"> <value>Move windows between zones across all monitors</value> </data> <data name="FancyZones_OverrideSnapHotkeys.Header" xml:space="preserve"> <value>Override Windows Snap</value> </data> <data name="FancyZones_OverrideSnapHotkeys.Description" xml:space="preserve"> <value>This overrides the Windows Snap shortcut (Win + arrow) to move windows between zones</value> </data> <data name="FancyZones_ShiftDragCheckBoxControl_Header.Content" xml:space="preserve"> <value>Hold Shift key to activate zones while dragging a window</value> </data> <data name="FancyZones_ActivationNoShiftDrag" xml:space="preserve"> <value>Drag windows to activate zones</value> </data> <data name="FancyZones_ShowZonesOnAllMonitorsCheckBoxControl.Content" xml:space="preserve"> <value>Show zones on all monitors while dragging a window</value> </data> <data name="FancyZones_AppLastZoneMoveWindows.Content" xml:space="preserve"> <value>Move newly created windows to their last known zone</value> <comment>windows refers to application windows</comment> </data> <data name="FancyZones_OpenWindowOnActiveMonitor.Content" xml:space="preserve"> <value>Move newly created windows to the current active monitor (Experimental)</value> </data> <data name="FancyZones_UseCursorPosEditorStartupScreen.Header" xml:space="preserve"> <value>Launch editor on the display</value> </data> <data name="FancyZones_UseCursorPosEditorStartupScreen.Description" xml:space="preserve"> <value>When using multiple displays</value> </data> <data name="FancyZones_LaunchPositionMouse.Content" xml:space="preserve"> <value>Where the mouse pointer is</value> </data> <data name="FancyZones_LaunchPositionScreen.Content" xml:space="preserve"> <value>With active focus</value> </data> <data name="FancyZones_ZoneBehavior_GroupSettings.Header" xml:space="preserve"> <value>Zone behavior</value> </data> <data name="FancyZones_ZoneBehavior_GroupSettings.Description" xml:space="preserve"> <value>Manage how zones behave when using FancyZones</value> </data> <data name="FancyZones_Zones.Header" xml:space="preserve"> <value>Zones</value> </data> <data name="FancyZones_ZoneHighlightColor.Header" xml:space="preserve"> <value>Highlight color</value> </data> <data name="FancyZones_ZoneSetChangeMoveWindows.Content" xml:space="preserve"> <value>During zone layout changes, windows assigned to a zone will match new size/positions</value> </data> <data name="AttributionTitle.Text" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="General.ModuleTitle" xml:space="preserve"> <value>General</value> </data> <data name="GeneralPage_CheckForUpdates.Content" xml:space="preserve"> <value>Check for updates</value> </data> <data name="General_SettingsBackupAndRestoreLocationText.Header" xml:space="preserve"> <value>Location</value> </data> <data name="General_SettingsBackupAndRestore_ButtonBackup.Content" xml:space="preserve"> <value>Backup</value> </data> <data name="General_SettingsBackupInfo_FileNameHeader.Text" xml:space="preserve"> <value>File name:</value> </data> <data name="General_SettingsBackupAndRestore_LinkRefresh.Text" xml:space="preserve"> <value>Refresh</value> </data> <data name="General_SettingsBackupAndRestore_ButtonRestore.Content" xml:space="preserve"> <value>Restore</value> </data> <data name="General_SettingsBackupAndRestore_ButtonSelectLocation.Text" xml:space="preserve"> <value>Select folder</value> </data> <data name="GeneralPage_UpdateNow.Content" xml:space="preserve"> <value>Update now</value> </data> <data name="GeneralPage_PrivacyStatement_URL.Text" xml:space="preserve"> <value>Privacy statement</value> </data> <data name="GeneralPage_ReportAbug.Text" xml:space="preserve"> <value>Report a bug</value> <comment>Report an issue inside powertoys</comment> </data> <data name="GeneralPage_RequestAFeature_URL.Text" xml:space="preserve"> <value>Request a feature</value> <comment>Tell our team what we should build</comment> </data> <data name="GeneralPage_RestartAsAdmin_Button.Content" xml:space="preserve"> <value>Restart PowerToys as administrator</value> <comment>running PowerToys as a higher level user, account is typically referred to as an admin / administrator</comment> </data> <data name="GeneralPage_RunAtStartUp.Header" xml:space="preserve"> <value>Run at startup</value> </data> <data name="GeneralPage_RunAtStartUp.Description" xml:space="preserve"> <value>PowerToys will launch automatically</value> </data> <data name="PowerRename.ModuleDescription" xml:space="preserve"> <value>A Windows Shell extension for more advanced bulk renaming using search &amp; replace or regular expressions.</value> </data> <data name="PowerRename_ShellIntegration.Header" xml:space="preserve"> <value>Shell integration</value> <comment>This refers to directly integrating in with Windows</comment> </data> <data name="PowerRename_Toggle_Enable.Header" xml:space="preserve"> <value>Enable PowerRename</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="RadioButtons_Name_Theme.Text" xml:space="preserve"> <value>Settings theme</value> </data> <data name="PowerRename_Toggle_HideIcon.Content" xml:space="preserve"> <value>Hide icon in context menu</value> </data> <data name="PowerRename_Toggle_ContextMenu.Header" xml:space="preserve"> <value>Show PowerRename in</value> </data> <data name="PowerRename_Toggle_StandardContextMenu.Content" xml:space="preserve"> <value>Default and extended context menu</value> </data> <data name="PowerRename_Toggle_ExtendedContextMenu.Content" xml:space="preserve"> <value>Extended context menu only</value> </data> <data name="ExtendedContextMenuInfo.Title" xml:space="preserve"> <value>Press Shift + right-click on files to open the extended context menu</value> </data> <data name="PowerRename_Toggle_MaxDispListNum.Header" xml:space="preserve"> <value>Maximum number of items</value> </data> <data name="PowerRename_Toggle_RestoreFlagsOnLaunch.Header" xml:space="preserve"> <value>Show recently used strings</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_MD.Header" xml:space="preserve"> <value>Markdown</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_MD.Description" xml:space="preserve"> <value>.md, .markdown, .mdown, .mkdn, .mkd, .mdwn, .mdtxt, .mdtext</value> <comment>File extensions, should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_Monaco.Header" xml:space="preserve"> <value>Source code files (Monaco)</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_Monaco.Description" xml:space="preserve"> <value>.cpp, .py, .json, .xml, .csproj, ...</value> <comment>File extensions should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_SVG.Header" xml:space="preserve"> <value>Scalable Vector Graphics</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_SVG.Description" xml:space="preserve"> <value>.svg</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_Preview_SVG_Color_Mode.Header" xml:space="preserve"> <value>Color mode</value> </data> <data name="FileExplorerPreview_Preview_SVG_Color_Mode_Default.Content" xml:space="preserve"> <value>Windows default</value> </data> <data name="FileExplorerPreview_Preview_SVG_Color_Solid_Color.Content" xml:space="preserve"> <value>Solid color</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade.Content" xml:space="preserve"> <value>Checkered pattern</value> </data> <data name="FileExplorerPreview_Preview_SVG_Background_Color.Header" xml:space="preserve"> <value>Color</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_Mode.Header" xml:space="preserve"> <value>Checkered shade</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_1.Content" xml:space="preserve"> <value>Light</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_2.Content" xml:space="preserve"> <value>Medium</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_3.Content" xml:space="preserve"> <value>Dark</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_PDF.Header" xml:space="preserve"> <value>Portable Document Format</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_PDF.Description" xml:space="preserve"> <value>.pdf</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_SVG.Header" xml:space="preserve"> <value>Scalable Vector Graphics</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_SVG.Description" xml:space="preserve"> <value>.svg</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_STL.Header" xml:space="preserve"> <value>Stereolithography</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_STL.Description" xml:space="preserve"> <value>.stl</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_Color_Thumbnail_STL.Header" xml:space="preserve"> <value>Color</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_PDF.Header" xml:space="preserve"> <value>Portable Document Format</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_PDF.Description" xml:space="preserve"> <value>.pdf</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview.ModuleDescription" xml:space="preserve"> <value>These settings allow you to manage your Windows File Explorer custom preview handlers.</value> </data> <data name="PowerRename_AutoCompleteHeader.Header" xml:space="preserve"> <value>Auto-complete</value> </data> <data name="OpenSource_Notice.Text" xml:space="preserve"> <value>Open-source notice</value> </data> <data name="PowerRename_Toggle_AutoComplete.Header" xml:space="preserve"> <value>Enable auto-complete for the search &amp; replace fields</value> </data> <data name="FancyZones_BorderColor.Header" xml:space="preserve"> <value>Border color</value> </data> <data name="FancyZones_InActiveColor.Header" xml:space="preserve"> <value>Inactive color</value> </data> <data name="ShortcutGuide.ModuleDescription" xml:space="preserve"> <value>Shows a help overlay with Windows shortcuts.</value> </data> <data name="ShortcutGuide_PressTimeForGlobalWindowsShortcuts.Header" xml:space="preserve"> <value>Press duration before showing global Windows shortcuts (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="ShortcutGuide_ActivationMethod.Header" xml:space="preserve"> <value>Activation method</value> </data> <data name="ShortcutGuide_ActivationMethod.Description" xml:space="preserve"> <value>Use a shortcut or press the Windows key for some time to activate</value> </data> <data name="Radio_ShortcutGuide_ActivationMethod_CustomizedShortcut.Content" xml:space="preserve"> <value>Custom shortcut</value> </data> <data name="Radio_ShortcutGuide_ActivationMethod_LongPressWindowsKey.Content" xml:space="preserve"> <value>Hold down Windows key</value> </data> <data name="ShortcutGuide_PressWinKeyWarning.Title" xml:space="preserve"> <value>In some edge cases Shortcut Guide might not function correctly when using this activation method</value> </data> <data name="Appearance_Behavior.Header" xml:space="preserve"> <value>Appearance &amp; behavior</value> </data> <data name="General_SettingsBackupAndRestoreTitle.Header" xml:space="preserve"> <value>Backup &amp; restore</value> </data> <data name="General_SettingsBackupAndRestore.Header" xml:space="preserve"> <value>Backup and restore your settings</value> </data> <data name="General_SettingsBackupAndRestore.Description" xml:space="preserve"> <value>PowerToys will restart automatically if needed</value> </data> <data name="ShortcutGuide_Enable.Header" xml:space="preserve"> <value>Enable Shortcut Guide</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="ShortcutGuide_OverlayOpacity.Header" xml:space="preserve"> <value>Background opacity (%)</value> </data> <data name="ShortcutGuide_DisabledApps.Header" xml:space="preserve"> <value>Exclude apps</value> </data> <data name="ShortcutGuide_DisabledApps.Description" xml:space="preserve"> <value>Turns off Shortcut Guide when these applications have focus - add one application name per line</value> </data> <data name="ShortcutGuide_DisabledApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> <comment>Don't translate outlook.exe</comment> </data> <data name="ImageResizer_CustomSizes.Header" xml:space="preserve"> <value>Image sizes</value> </data> <data name="ImageResizer_Presets.Header" xml:space="preserve"> <value>Presets</value> </data> <data name="ImageResizer_Presets.Description" xml:space="preserve"> <value>Manage preset sizes that can be used in the editor</value> </data> <data name="ImageResizer_FilenameFormatHeader.Description" xml:space="preserve"> <value>This format is used as the filename for resized images</value> </data> <data name="ImageResizer.ModuleDescription" xml:space="preserve"> <value>Lets you resize images by right-clicking.</value> </data> <data name="ImageResizer_EnableToggle.Header" xml:space="preserve"> <value>Enable Image Resizer</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="ImagesSizesListView.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Image Size</value> </data> <data name="ImageResizer_Configurations.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Configurations</value> </data> <data name="ImageResizer_Name.Header" xml:space="preserve"> <value>Name</value> </data> <data name="ImageResizer_Fit.Header" xml:space="preserve"> <value>Fit</value> </data> <data name="ImageResizer_Width.Header" xml:space="preserve"> <value>Width</value> </data> <data name="ImageResizer_Height.Header" xml:space="preserve"> <value>Height</value> </data> <data name="ImageResizer_Size.Header" xml:space="preserve"> <value>Unit</value> </data> <data name="RemoveButton.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Remove</value> <comment>Removes a user defined setting group for Image Resizer</comment> </data> <data name="RemoveItem.Text" xml:space="preserve"> <value>Delete</value> </data> <data name="ImageResizer_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Image Resizer</value> </data> <data name="ImageResizer_AddSizeButton.Content" xml:space="preserve"> <value>Add new size</value> </data> <data name="ImageResizer_SaveSizeButton.Label" xml:space="preserve"> <value>Save sizes</value> </data> <data name="ImageResizer_Encoding.Header" xml:space="preserve"> <value>JPEG quality level (%)</value> </data> <data name="ImageResizer_PNGInterlacing.Header" xml:space="preserve"> <value>PNG interlacing</value> </data> <data name="ImageResizer_TIFFCompression.Header" xml:space="preserve"> <value>TIFF compression</value> </data> <data name="File.Header" xml:space="preserve"> <value>File</value> <comment>as in a computer file</comment> </data> <data name="Default.Content" xml:space="preserve"> <value>Default</value> </data> <data name="ImageResizer_ENCODER_TIFF_CCITT3.Content" xml:space="preserve"> <value>CCITT3</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_CCITT4.Content" xml:space="preserve"> <value>CCITT4</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_Default.Content" xml:space="preserve"> <value>Default</value> </data> <data name="ImageResizer_ENCODER_TIFF_LZW.Content" xml:space="preserve"> <value>LZW</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_None.Content" xml:space="preserve"> <value>None</value> </data> <data name="ImageResizer_ENCODER_TIFF_RLE.Content" xml:space="preserve"> <value>RLE</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_Zip.Content" xml:space="preserve"> <value>Zip</value> <comment>do not loc</comment> </data> <data name="ImageResizer_FallbackEncoder_BMP.Content" xml:space="preserve"> <value>BMP encoder</value> </data> <data name="ImageResizer_FallbackEncoder_GIF.Content" xml:space="preserve"> <value>GIF encoder</value> </data> <data name="ImageResizer_FallbackEncoder_JPEG.Content" xml:space="preserve"> <value>JPEG encoder</value> </data> <data name="ImageResizer_FallbackEncoder_PNG.Content" xml:space="preserve"> <value>PNG encoder</value> </data> <data name="ImageResizer_FallbackEncoder_TIFF.Content" xml:space="preserve"> <value>TIFF encoder</value> </data> <data name="ImageResizer_FallbackEncoder_WMPhoto.Content" xml:space="preserve"> <value>WMPhoto encoder</value> </data> <data name="ImageResizer_Sizes_Fit_Fill.Content" xml:space="preserve"> <value>Fill</value> <comment>Refers to filling an image into a certain size. It could overflow</comment> </data> <data name="ImageResizer_Sizes_Fit_Fill_ThirdPersonSingular.Text" xml:space="preserve"> <value>Fill</value> <comment>Refers to filling an image into a certain size. It could overflow</comment> </data> <data name="ImageResizer_Sizes_Fit_Fit.Content" xml:space="preserve"> <value>Fit</value> <comment>Refers to fitting an image into a certain size. It won't overflow</comment> </data> <data name="ImageResizer_Sizes_Fit_Stretch.Content" xml:space="preserve"> <value>Stretch</value> <comment>Refers to stretching an image into a certain size. Won't overflow but could distort.</comment> </data> <data name="ImageResizer_Sizes_Units_CM.Content" xml:space="preserve"> <value>Centimeters</value> </data> <data name="ImageResizer_Sizes_Units_Inches.Content" xml:space="preserve"> <value>Inches</value> </data> <data name="ImageResizer_Sizes_Units_Percent.Content" xml:space="preserve"> <value>Percent</value> </data> <data name="ImageResizer_Sizes_Units_Pixels.Content" xml:space="preserve"> <value>Pixels</value> </data> <data name="Off.Content" xml:space="preserve"> <value>Off</value> </data> <data name="On.Content" xml:space="preserve"> <value>On</value> </data> <data name="GeneralPage_ToggleSwitch_AlwaysRunElevated_Link.Content" xml:space="preserve"> <value>Learn more about administrator mode</value> </data> <data name="GeneralPage_ToggleSwitch_AutoDownloadUpdates.Header" xml:space="preserve"> <value>Download updates automatically</value> </data> <data name="GeneralPage_ToggleSwitch_AutoDownloadUpdates.Description" xml:space="preserve"> <value>Except on metered connections</value> </data> <data name="GeneralPage_ToggleSwitch_RunningAsAdminNote.Text" xml:space="preserve"> <value>Currently running as administrator</value> </data> <data name="GeneralSettings_AlwaysRunAsAdminText.Header" xml:space="preserve"> <value>Always run as administrator</value> </data> <data name="GeneralSettings_AlwaysRunAsAdminText.Description" xml:space="preserve"> <value>You need to run as administrator to use this setting</value> </data> <data name="GeneralSettings_RunningAsUserText" xml:space="preserve"> <value>Running as user</value> </data> <data name="GeneralSettings_RunningAsAdminText" xml:space="preserve"> <value>Running as administrator</value> </data> <data name="FancyZones.ModuleTitle" xml:space="preserve"> <value>FancyZones</value> </data> <data name="FileExplorerPreview.ModuleTitle" xml:space="preserve"> <value>File Explorer</value> </data> <data name="FileExplorerPreview_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>File Explorer</value> <comment>Use same translation as Windows does for File Explorer</comment> </data> <data name="ImageResizer.ModuleTitle" xml:space="preserve"> <value>Image Resizer</value> </data> <data name="KeyboardManager.ModuleTitle" xml:space="preserve"> <value>Keyboard Manager</value> </data> <data name="ColorPicker.ModuleTitle" xml:space="preserve"> <value>Color Picker</value> </data> <data name="PowerLauncher.ModuleTitle" xml:space="preserve"> <value>PowerToys Run</value> </data> <data name="PowerToys_Run_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>PowerToys Run</value> </data> <data name="PowerRename.ModuleTitle" xml:space="preserve"> <value>PowerRename</value> <comment>do not loc the product name</comment> </data> <data name="PowerRename_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>PowerRename</value> <comment>do not loc</comment> </data> <data name="ShortcutGuide.ModuleTitle" xml:space="preserve"> <value>Shortcut Guide</value> </data> <data name="Shortcut_Guide_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Shortcut Guide</value> </data> <data name="General_Repository.Text" xml:space="preserve"> <value>GitHub repository</value> </data> <data name="General_Version.Header" xml:space="preserve"> <value>Version</value> </data> <data name="General_VersionLastChecked.Text" xml:space="preserve"> <value>Last checked: </value> </data> <data name="General_SettingsBackupInfo_DateHeader.Text" xml:space="preserve"> <value>Created at:</value> </data> <data name="General_SettingsBackupAndRestoreStatusInfo.Header" xml:space="preserve"> <value>Backup information</value> </data> <data name="General_SettingsBackupInfo_SourceHeader.Text" xml:space="preserve"> <value>Source machine:</value> </data> <data name="General_SettingsBackupInfo_StatusHeader.Text" xml:space="preserve"> <value>Status:</value> </data> <data name="General_Version.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Version</value> </data> <data name="Admin_mode.Header" xml:space="preserve"> <value>Administrator mode</value> </data> <data name="FancyZones_RestoreSize.Content" xml:space="preserve"> <value>Restore the original size of windows when unsnapping</value> </data> <data name="ImageResizer_FallBackEncoderText.Header" xml:space="preserve"> <value>Fallback encoder</value> </data> <data name="ImageResizer_FileFormatDescription.Text" xml:space="preserve"> <value>The following parameters can be used:</value> </data> <data name="ImageResizer_FilenameFormatHeader.Header" xml:space="preserve"> <value>Filename format</value> </data> <data name="ImageResizer_FileModifiedDate.Header" xml:space="preserve"> <value>File modified timestamp</value> </data> <data name="ImageResizer_FileModifiedDate.Description" xml:space="preserve"> <value>Used as the 'modified timestamp' in the file properties</value> </data> <data name="ImageResizer_UseOriginalDate.Content" xml:space="preserve"> <value>Original file timestamp</value> </data> <data name="ImageResizer_UseResizeDate.Content" xml:space="preserve"> <value>Timestamp of resize action</value> </data> <data name="Encoding.Header" xml:space="preserve"> <value>Encoding</value> </data> <data name="KeyboardManager_RemapKeyboardButton.Description" xml:space="preserve"> <value>Remap keys to other keys or shortcuts</value> </data> <data name="KeyboardManager_RemapShortcutsButton.Description" xml:space="preserve"> <value>Remap shortcuts to other shortcuts or keys for all or specific applications</value> </data> <data name="General.ModuleDescription" xml:space="preserve"> <value>Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. Made with 💗 by Microsoft and the PowerToys community.</value> <comment>Windows refers to the OS</comment> </data> <data name="FancyZones_SpanZonesAcrossMonitors.Header" xml:space="preserve"> <value>Allow zones to span across monitors</value> </data> <data name="ImageResizer_Formatting_ActualHeight.Text" xml:space="preserve"> <value>Actual height</value> </data> <data name="ImageResizer_Formatting_ActualWidth.Text" xml:space="preserve"> <value>Actual width</value> </data> <data name="ImageResizer_Formatting_Filename.Text" xml:space="preserve"> <value>Original filename</value> </data> <data name="ImageResizer_Formatting_SelectedHeight.Text" xml:space="preserve"> <value>Selected height</value> </data> <data name="ImageResizer_Formatting_SelectedWidth.Text" xml:space="preserve"> <value>Selected width</value> </data> <data name="ImageResizer_Formatting_Sizename.Text" xml:space="preserve"> <value>Size name</value> </data> <data name="FancyZones_MoveWindowsBasedOnPositionCheckBoxControl.Content" xml:space="preserve"> <value>Move windows based on their position</value> <comment>Windows refers to application windows</comment> </data> <data name="GeneralSettings_NewVersionIsAvailable" xml:space="preserve"> <value>New update available</value> </data> <data name="GeneralSettings_VersionIsLatest" xml:space="preserve"> <value>PowerToys is up to date.</value> </data> <data name="FileExplorerPreview_IconThumbnail_GroupSettings.Header" xml:space="preserve"> <value>Thumbnail icon Preview</value> </data> <data name="FileExplorerPreview_IconThumbnail_GroupSettings.Description" xml:space="preserve"> <value>Select the file types for which thumbnail previews must be rendered.</value> </data> <data name="FileExplorerPreview_PreviewPane.Header" xml:space="preserve"> <value>Preview Pane</value> </data> <data name="FileExplorerPreview_PreviewPane.Description" xml:space="preserve"> <value>Select the file types which must be rendered in the Preview Pane. Ensure that Preview Pane is open by toggling the view with Alt + P in File Explorer.</value> <comment>Preview Pane and File Explorer are app/feature names in Windows. 'Alt + P' is a shortcut</comment> </data> <data name="FileExplorerPreview_RunAsAdminRequired.Title" xml:space="preserve"> <value>You need to run as administrator to modify these settings.</value> </data> <data name="FileExplorerPreview_RebootRequired.Title" xml:space="preserve"> <value>A reboot may be required for changes to these settings to take effect</value> </data> <data name="FileExplorerPreview_PreviewHandlerOutlookIncompatibility.Title" xml:space="preserve"> <value>Enabling the preview handlers will override other preview handlers already installed - there have been reports of incompatibility between Outlook and the PDF Preview Handler.</value> <comment>Outlook is the name of a Microsoft product</comment> </data> <data name="FileExplorerPreview_ThumbnailsMightNotAppearOnRemoteFolders.Title" xml:space="preserve"> <value>Thumbnails might not appear on paths managed by cloud storage solutions like OneDrive, since these solutions may get their thumbnails from the cloud instead of generating them locally.</value> <comment>OneDrive is the name of a Microsoft product</comment> </data> <data name="FancyZones_ExcludeApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> <comment>Don't translate outlook.exe</comment> </data> <data name="ImageResizer_FilenameFormatPlaceholder.PlaceholderText" xml:space="preserve"> <value>Example: %1 (%2)</value> </data> <data name="ImageResizer_FilenameParameters.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Filename parameters</value> </data> <data name="Radio_Theme_Dark.Content" xml:space="preserve"> <value>Dark</value> <comment>Dark refers to color, not weight</comment> </data> <data name="Radio_Theme_Light.Content" xml:space="preserve"> <value>Light</value> <comment>Light refers to color, not weight</comment> </data> <data name="Radio_Theme_Default.Content" xml:space="preserve"> <value>Windows default</value> <comment>Windows refers to the Operating system</comment> </data> <data name="Windows_Color_Settings.Content" xml:space="preserve"> <value>Windows color settings</value> <comment>Windows refers to the Operating system</comment> </data> <data name="ColorPicker_CopiedColorRepresentation.Header" xml:space="preserve"> <value>Default color format</value> </data> <data name="ColorPickerFirst.Content" xml:space="preserve"> <value>Pick a color and open editor</value> </data> <data name="EditorFirst.Content" xml:space="preserve"> <value>Open editor</value> </data> <data name="ColorPickerOnly.Content" xml:space="preserve"> <value>Only pick a color</value> </data> <data name="ColorPicker_ActivationAction.Header" xml:space="preserve"> <value>Activation behavior</value> </data> <data name="ColorFormats.Header" xml:space="preserve"> <value>Picker behavior</value> </data> <data name="ColorPicker_CopiedColorRepresentation.Description" xml:space="preserve"> <value>This format will be copied to your clipboard</value> </data> <data name="KBM_KeysCannotBeRemapped.Text" xml:space="preserve"> <value>Learn more about remapping limitations</value> <comment>This is a link that will discuss what is and is not possible for Keyboard manager to remap</comment> </data> <data name="FancyZones_Editor_GroupSettings.Header" xml:space="preserve"> <value>Editor</value> <comment>refers to the FancyZone editor</comment> </data> <data name="FancyZones_WindowBehavior_GroupSettings.Header" xml:space="preserve"> <value>Window behavior</value> </data> <data name="FancyZones_WindowBehavior_GroupSettings.Description" xml:space="preserve"> <value>Manage how windows behave when using FancyZones</value> </data> <data name="FancyZones_Windows.Header" xml:space="preserve"> <value>Windows</value> <comment>Do translate: refers to a set of application windows, not the product name</comment> </data> <data name="PowerRename_BehaviorHeader.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="PowerRename_Toggle_UseBoostLib.Header" xml:space="preserve"> <value>Use Boost library</value> <comment>Boost is a product name, should not be translated</comment> </data> <data name="PowerRename_Toggle_UseBoostLib.Description" xml:space="preserve"> <value>Provides extended features but may use different regex syntax</value> <comment>Boost is a product name, should not be translated</comment> </data> <data name="MadeWithOssLove.Text" xml:space="preserve"> <value>Made with 💗 by Microsoft and the PowerToys community.</value> </data> <data name="ColorPicker_ColorFormats.Header" xml:space="preserve"> <value>Color formats</value> </data> <data name="ColorPicker_ColorFormats.Description" xml:space="preserve"> <value>Configure the color formats (edit, delete, hide, reorder them)</value> </data> <data name="MoveUp.Text" xml:space="preserve"> <value>Move up</value> </data> <data name="MoveDown.Text" xml:space="preserve"> <value>Move down</value> </data> <data name="ColorPickerAddNewFormat.Content" xml:space="preserve"> <value>Add new format</value> </data> <data name="NewColorFormat.Header" xml:space="preserve"> <value>Format</value> </data> <data name="NewColorName.Header" xml:space="preserve"> <value>Name</value> </data> <data name="AddCustomColorFormat" xml:space="preserve"> <value>Add custom color format</value> </data> <data name="ColorFormatSave" xml:space="preserve"> <value>Save</value> </data> <data name="EditCustomColorFormat" xml:space="preserve"> <value>Edit custom color format</value> </data> <data name="ColorFormatUpdate" xml:space="preserve"> <value>Update</value> </data> <data name="CustomColorFormatDefaultName" xml:space="preserve"> <value>My Format</value> </data> <data name="ColorFormatDialog.SecondaryButtonText" xml:space="preserve"> <value>Cancel</value> </data> <data name="ColorFormatEditorHelpline1.Text" xml:space="preserve"> <value>The following parameters can be used:</value> </data> <data name="Help_red" xml:space="preserve"> <value>red</value> </data> <data name="Help_green" xml:space="preserve"> <value>green</value> </data> <data name="Help_blue" xml:space="preserve"> <value>blue</value> </data> <data name="Help_alpha" xml:space="preserve"> <value>alpha</value> </data> <data name="Help_cyan" xml:space="preserve"> <value>cyan</value> </data> <data name="Help_magenta" xml:space="preserve"> <value>magenta</value> </data> <data name="Help_yellow" xml:space="preserve"> <value>yellow</value> </data> <data name="Help_black_key" xml:space="preserve"> <value>black key</value> </data> <data name="Help_hue" xml:space="preserve"> <value>hue</value> </data> <data name="Help_hueNat" xml:space="preserve"> <value>hue (natural)</value> </data> <data name="Help_saturationI" xml:space="preserve"> <value>saturation (HSI)</value> </data> <data name="Help_saturationL" xml:space="preserve"> <value>saturation (HSL)</value> </data> <data name="Help_saturationB" xml:space="preserve"> <value>saturation (HSB)</value> </data> <data name="Help_brightness" xml:space="preserve"> <value>brightness</value> </data> <data name="Help_intensity" xml:space="preserve"> <value>intensity</value> </data> <data name="Help_lightnessNat" xml:space="preserve"> <value>lightness (nat)</value> </data> <data name="Help_lightnessCIE" xml:space="preserve"> <value>lightness (CIE)</value> </data> <data name="Help_value" xml:space="preserve"> <value>value</value> </data> <data name="Help_whiteness" xml:space="preserve"> <value>whiteness</value> </data> <data name="Help_blackness" xml:space="preserve"> <value>blackness</value> </data> <data name="Help_chromaticityA" xml:space="preserve"> <value>chromaticityA</value> </data> <data name="Help_chromaticityB" xml:space="preserve"> <value>chromaticityB</value> </data> <data name="Help_X_value" xml:space="preserve"> <value>X value</value> </data> <data name="Help_Y_value" xml:space="preserve"> <value>Y value</value> </data> <data name="Help_Z_value" xml:space="preserve"> <value>Z value</value> </data> <data name="Help_decimal_value_RGB" xml:space="preserve"> <value>decimal value (RGB)</value> </data> <data name="Help_decimal_value_BGR" xml:space="preserve"> <value>decimal value (BGR)</value> </data> <data name="Help_color_name" xml:space="preserve"> <value>color name</value> </data> <data name="ColorFormatEditorHelpline2.Text" xml:space="preserve"> <value>The red, green, blue and alpha values can be formatted to the following formats:</value> </data> <data name="Help_byte" xml:space="preserve"> <value>byte value (default)</value> </data> <data name="Help_hexL1" xml:space="preserve"> <value>hex lowercase one digit</value> </data> <data name="Help_hexU1" xml:space="preserve"> <value>hex uppercase one digit</value> </data> <data name="Help_hexL2" xml:space="preserve"> <value>hex lowercase two digits</value> </data> <data name="Help_hexU2" xml:space="preserve"> <value>hex uppercase two digits</value> </data> <data name="Help_floatWith" xml:space="preserve"> <value>float with leading zero</value> </data> <data name="Help_floatWithout" xml:space="preserve"> <value>float without leading zero</value> </data> <data name="ColorFormatEditorHelpline3.Text" xml:space="preserve"> <value>Example: %ReX means red value in hex uppercase two digits format.</value> </data> <data name="ColorPicker_ShowColorName.Header" xml:space="preserve"> <value>Show color name</value> </data> <data name="ColorPicker_ShowColorName.Description" xml:space="preserve"> <value>This will show the name of the color when picking a color</value> </data> <data name="ImageResizer_DefaultSize_Large" xml:space="preserve"> <value>Large</value> <comment>The size of the image</comment> </data> <data name="ImageResizer_DefaultSize_Medium" xml:space="preserve"> <value>Medium</value> <comment>The size of the image</comment> </data> <data name="ImageResizer_DefaultSize_Phone" xml:space="preserve"> <value>Phone</value> <comment>The size of the image referring to a Mobile Phone typical image size</comment> </data> <data name="ImageResizer_DefaultSize_Small" xml:space="preserve"> <value>Small</value> <comment>The size of the image</comment> </data> <data name="FancyZones_MoveWindowBasedOnRelativePosition_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Windows key + Up, down, left or right arrow key to move windows based on relative position</value> </data> <data name="FancyZones_MoveWindowLeftRightBasedOnZoneIndex_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Windows key + Left or right arrow keys to move windows based on zone index</value> </data> <data name="FancyZones_MoveWindowBasedOnRelativePosition_Description.Text" xml:space="preserve"> <value>Windows key +    or </value> <comment>Do not loc the icons (hex numbers)</comment> </data> <data name="FancyZones_MoveWindowLeftRightBasedOnZoneIndex_Description.Text" xml:space="preserve"> <value>Windows key +  or </value> <comment>Do not loc the icons (hex numbers)</comment> </data> <data name="FancyZones_MoveWindowBasedOnRelativePosition.Text" xml:space="preserve"> <value>Relative position</value> </data> <data name="FancyZones_MoveWindow.Header" xml:space="preserve"> <value>Move windows based on</value> </data> <data name="FancyZones_MoveWindowLeftRightBasedOnZoneIndex.Text" xml:space="preserve"> <value>Zone index</value> </data> <data name="ColorPicker_Editor.Header" xml:space="preserve"> <value>Color formats</value> </data> <data name="FancyZones_OverlappingZonesClosestCenter.Content" xml:space="preserve"> <value>Activate the zone whose center is closest to the cursor</value> </data> <data name="FancyZones_OverlappingZonesLargest.Content" xml:space="preserve"> <value>Activate the largest zone by area</value> </data> <data name="FancyZones_OverlappingZonesPositional.Content" xml:space="preserve"> <value>Split the overlapped area into multiple activation targets</value> </data> <data name="FancyZones_OverlappingZonesSmallest.Content" xml:space="preserve"> <value>Activate the smallest zone by area</value> </data> <data name="FancyZones_OverlappingZones.Header" xml:space="preserve"> <value>When multiple zones overlap</value> </data> <data name="PowerLauncher_Plugins.Header" xml:space="preserve"> <value>Plugins</value> </data> <data name="PowerLauncher_ActionKeyword.Header" xml:space="preserve"> <value>Direct activation command</value> </data> <data name="PowerLauncher_AuthoredBy.Text" xml:space="preserve"> <value>Authored by</value> <comment>example: Authored by Microsoft</comment> </data> <data name="PowerLauncher_IncludeInGlobalResultTitle.Text" xml:space="preserve"> <value>Include in global result</value> </data> <data name="PowerLauncher_IncludeInGlobalResultDescription.Text" xml:space="preserve"> <value>Show results on queries without direct activation command</value> </data> <data name="PowerLauncher_EnablePluginToggle.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Enable plugin</value> </data> <data name="PowerLauncher_EnablePluginToggle.OnContent" xml:space="preserve"> <value>On</value> </data> <data name="PowerLauncher_EnablePluginToggle.OffContent" xml:space="preserve"> <value>Off</value> </data> <data name="Run_AdditionalOptions.Text" xml:space="preserve"> <value>Additional options</value> </data> <data name="Run_NotAccessibleWarning.Title" xml:space="preserve"> <value>Please define an activation command or allow this plugin to be used in the global results.</value> </data> <data name="Run_AllPluginsDisabled.Title" xml:space="preserve"> <value>PowerToys Run can't provide any results without plugins</value> </data> <data name="Run_AllPluginsDisabled.Message" xml:space="preserve"> <value>Enable at least one plugin to get started</value> </data> <data name="Run_PluginUse.Header" xml:space="preserve"> <value>Plugins</value> </data> <data name="Run_PluginUseDescription.Text" xml:space="preserve"> <value>Include or remove plugins from the global results, change the direct activation phrase and configure additional options</value> </data> <data name="Run_PositionAppearance_GroupSettings.Header" xml:space="preserve"> <value>Position &amp; appearance</value> </data> <data name="Run_PositionHeader.Header" xml:space="preserve"> <value>Preferred monitor position</value> <comment>as in Show PowerToys Run on primary monitor</comment> </data> <data name="Run_PositionHeader.Description" xml:space="preserve"> <value>If multiple monitors are in use, PowerToys Run can be launched on the desired monitor</value> <comment>as in Show PowerToys Run on primary monitor</comment> </data> <data name="Run_Radio_Position_Cursor.Content" xml:space="preserve"> <value>Monitor with mouse cursor</value> </data> <data name="Run_Radio_Position_Focus.Content" xml:space="preserve"> <value>Monitor with focused window</value> </data> <data name="Run_Radio_Position_Primary_Monitor.Content" xml:space="preserve"> <value>Primary monitor</value> </data> <data name="Run_PluginsLoading.Text" xml:space="preserve"> <value>Plugins are loading...</value> </data> <data name="ColorPicker_ButtonDown.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Move the color down</value> </data> <data name="ColorPicker_ButtonUp.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Move the color up</value> </data> <data name="FancyZones_FlashZonesOnQuickSwitch.Content" xml:space="preserve"> <value>Flash zones when switching layout</value> </data> <data name="FancyZones_Layouts.Header" xml:space="preserve"> <value>Layouts</value> </data> <data name="FancyZones_QuickLayoutSwitch.Header" xml:space="preserve"> <value>Enable quick layout switch</value> </data> <data name="FancyZones_QuickLayoutSwitch.Description" xml:space="preserve"> <value>Layout-specific shortcuts can be configured in the editor</value> </data> <data name="FancyZones_QuickLayoutSwitch_GroupSettings.Text" xml:space="preserve"> <value>Quick layout switch</value> </data> <data name="Activation_Shortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="Activation_Shortcut.Description" xml:space="preserve"> <value>Customize the shortcut to activate this module</value> </data> <data name="Oobe_GetStarted.Text" xml:space="preserve"> <value>Let's get started!</value> </data> <data name="Oobe_PowerToysDescription.Text" xml:space="preserve"> <value>Welcome to PowerToys! These overviews will help you quickly learn the basics of all our utilities.</value> </data> <data name="Oobe_GettingStarted.Text" xml:space="preserve"> <value>Getting started</value> </data> <data name="Oobe_Launch.Text" xml:space="preserve"> <value>Launch</value> </data> <data name="Launch_ColorPicker.Content" xml:space="preserve"> <value>Launch Color Picker</value> </data> <data name="Oobe_LearnMore.Text" xml:space="preserve"> <value>Learn more about</value> </data> <data name="Oobe_ColorPicker.Description" xml:space="preserve"> <value>Color Picker is a system-wide color selection tool for Windows that enables you to pick colors from any currently running application and automatically copies it in a configurable format to your clipboard.</value> </data> <data name="Oobe_FancyZones.Description" xml:space="preserve"> <value>FancyZones is a window manager that makes it easy to create complex window layouts and quickly position windows into those layouts.</value> </data> <data name="Oobe_FileLocksmith.Description" xml:space="preserve"> <value>File Locksmith lists which processes are using the selected files or directories and allows closing those processes.</value> </data> <data name="Oobe_FileExplorer.Description" xml:space="preserve"> <value>PowerToys introduces add-ons to the Windows File Explorer that will enable files like Markdown (.md), PDF (.pdf), SVG (.svg), STL (.stl), G-code (.gcode) and developer files to be viewed in the preview pane. It introduces File Explorer thumbnail support for a number of these file types as well.</value> </data> <data name="Oobe_ImageResizer.Description" xml:space="preserve"> <value>Image Resizer is a Windows shell extension for simple bulk image-resizing.</value> </data> <data name="Oobe_KBM.Description" xml:space="preserve"> <value>Keyboard Manager allows you to customize the keyboard to be more productive by remapping keys and creating your own keyboard shortcuts.</value> </data> <data name="Oobe_MouseWithoutBorders.Description" xml:space="preserve"> <value>Mouse Without Borders enables using the mouse pointer, keyboard, clipboard and drag and drop between machines in the same local network.</value> </data> <data name="Oobe_PowerRename.Description" xml:space="preserve"> <value>PowerRename enables you to perform simple bulk renaming, searching and replacing file names.</value> </data> <data name="Oobe_Run.Description" xml:space="preserve"> <value>PowerToys Run is a quick launcher for power users that contains some additional features without sacrificing performance.</value> </data> <data name="Oobe_MeasureTool.Description" xml:space="preserve"> <value>Screen Ruler is a quick and easy way to measure pixels on your screen.</value> </data> <data name="Oobe_ShortcutGuide.Description" xml:space="preserve"> <value>Shortcut Guide presents the user with a listing of available shortcuts for the current state of the desktop.</value> </data> <data name="Oobe_VideoConference.Description" xml:space="preserve"> <value>Video Conference Mute allows users to quickly mute the microphone and turn off the camera while on a conference call with a single keystroke, regardless of what application has focus on your computer.</value> </data> <data name="Oobe_MouseUtils.Description" xml:space="preserve"> <value>A collection of utilities to enhance your mouse.</value> <comment>Mouse as in the hardware peripheral</comment> </data> <data name="Oobe_Overview.Description" xml:space="preserve"> <value>Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. Take a moment to preview the various utilities listed or view our comprehensive documentation.</value> </data> <data name="Oobe_Overview_DescriptionLinkText.Text" xml:space="preserve"> <value>Documentation on Microsoft Docs</value> </data> <data name="ReleaseNotes.Content" xml:space="preserve"> <value>Release notes</value> </data> <data name="Oobe_ColorPicker_HowToUse.Text" xml:space="preserve"> <value>to open Color Picker.</value> </data> <data name="Oobe_ColorPicker_TipsAndTricks.Text" xml:space="preserve"> <value>To select a color with more precision, **scroll the mouse wheel** to zoom in.</value> </data> <data name="Oobe_FancyZones_HowToUse.Text" xml:space="preserve"> <value>**Shift** + **drag the window** to snap a window to a zone, and release the window in the desired zone.</value> </data> <data name="Oobe_FancyZones_HowToUse_Shortcut.Text" xml:space="preserve"> <value>to open the FancyZones editor.</value> </data> <data name="Oobe_FancyZones_TipsAndTricks.Text" xml:space="preserve"> <value>Snap a window to multiple zones by holding the **Ctrl** key (while also holding **Shift**) when dragging a window.</value> </data> <data name="Oobe_FileLocksmith_HowToUse.Text" xml:space="preserve"> <value>In File Explorer, right-click one or more selected files and select **What's using this file?** from the context menu.</value> </data> <data name="Oobe_FileLocksmith_TipsAndTricks.Text" xml:space="preserve"> <value>Press the **Restart Elevated** button from the File Locksmith UI to also get information on elevated processes that might be using the files.</value> </data> <data name="Oobe_FileExplorer_HowToEnable.Text" xml:space="preserve"> <value>Select **View** which is located at the top of File Explorer, followed by **Show**, and then **Preview pane**. From there, simply click on one of the supported files in the File Explorer and observe the content on the preview pane!</value> </data> <data name="Oobe_HowToCreateMappings.Text" xml:space="preserve"> <value>How to create mappings</value> </data> <data name="Oobe_HowToEnable.Text" xml:space="preserve"> <value>How to enable</value> </data> <data name="Oobe_HowToLaunch.Text" xml:space="preserve"> <value>How to launch</value> </data> <data name="Oobe_HowToUse.Text" xml:space="preserve"> <value>How to use</value> </data> <data name="Oobe_ImageResizer_HowToLaunch.Text" xml:space="preserve"> <value>In File Explorer, right-click one or more image files and select **Resize pictures** from the context menu.</value> </data> <data name="Oobe_ImageResizer_TipsAndTricks.Text" xml:space="preserve"> <value>Want a custom size? You can add them in the PowerToys Settings!</value> </data> <data name="Oobe_KBM_HowToCreateMappings.Text" xml:space="preserve"> <value>Launch **PowerToys Settings**, navigate to the Keyboard Manager menu, and select either **Remap a key** or **Remap a shortcut**.</value> </data> <data name="Oobe_KBM_TipsAndTricks.Text" xml:space="preserve"> <value>Want to only have a shortcut work for a single application? Use the Target App field when creating the shortcut remapping.</value> </data> <data name="Oobe_MouseWithoutBorders_HowToUse.Text" xml:space="preserve"> <value>Use the Settings screen on each machine to connect to the other machines using the same key. If a connection is not working, it may be necessary to add an exception to the Windows Firewall.</value> </data> <data name="Oobe_MouseWithoutBorders_TipsAndTricks.Text" xml:space="preserve"> <value>Use the service option in Settings to install a service enabling Mouse Without Borders to function even in the lock screen.</value> </data> <data name="Oobe_PowerRename_HowToUse.Text" xml:space="preserve"> <value>In File Explorer, right-click one or more selected files and select **PowerRename** from the context menu.</value> </data> <data name="Oobe_PowerRename_TipsAndTricks.Text" xml:space="preserve"> <value>PowerRename supports searching for files using regular expressions to enable more advanced renaming functionalities.</value> </data> <data name="Oobe_Run_HowToLaunch.Text" xml:space="preserve"> <value>to open Run and just start typing.</value> </data> <data name="Oobe_Run_TipsAndTricks.Text" xml:space="preserve"> <value>PowerToys Run supports various action keys to funnel search queries for a specific subset of results. Typing `&lt;` searches for running processes only, `?` will search only for file, or `.` for installed applications! See PowerToys documentation for the complete set of 'Action Keys' available.</value> </data> <data name="Oobe_ShortcutGuide_HowToLaunch.Text" xml:space="preserve"> <value>to open Shortcut Guide, press it again to close or press **Esc**.</value> </data> <data name="Oobe_TipsAndTricks.Text" xml:space="preserve"> <value>Tips &amp; tricks</value> </data> <data name="Oobe_VideoConference_ToggleMicVid.Text" xml:space="preserve"> <value>to toggle both your microphone and video</value> </data> <data name="Oobe_VideoConference_ToggleMic.Text" xml:space="preserve"> <value>to toggle your microphone</value> </data> <data name="Oobe_VideoConference_PushToTalkMic.Text" xml:space="preserve"> <value>to toggle your microphone until key release</value> </data> <data name="Oobe_VideoConference_ToggleVid.Text" xml:space="preserve"> <value>to toggle your video</value> </data> <data name="Oobe_MeasureTool_Activation.Text" xml:space="preserve"> <value>to bring up the Screen Ruler command bar.</value> </data> <data name="Oobe_MeasureTool_HowToLaunch.Text" xml:space="preserve"> <value>The Bounds mode lets you select a specific area to measure. You can also shift-drag an area to persist in on screen. The various Spacing modes allows tracing similar pixels along horizontal and vertical axes with a customizable pixel tolerance threshold (use settings or mouse wheel to adjust it).</value> </data> <data name="Oobe_MeasureTool.Title" xml:space="preserve"> <value>Screen Ruler</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_ColorPicker.Title" xml:space="preserve"> <value>Color Picker</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_FancyZones.Title" xml:space="preserve"> <value>FancyZones</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_FileLocksmith.Title" xml:space="preserve"> <value>File Locksmith</value> </data> <data name="Oobe_ImageResizer.Title" xml:space="preserve"> <value>Image Resizer</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_KBM.Title" xml:space="preserve"> <value>Keyboard Manager</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_MouseWithoutBorders.Title" xml:space="preserve"> <value>Mouse Without Borders</value> <comment>Product name. Do not localize this string</comment> </data> <data name="Oobe_PowerRename.Title" xml:space="preserve"> <value>PowerRename</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_Run.Title" xml:space="preserve"> <value>PowerToys Run</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_ShortcutGuide.Title" xml:space="preserve"> <value>Shortcut Guide</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_VideoConference.Title" xml:space="preserve"> <value>Video Conference Mute</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_Overview.Title" xml:space="preserve"> <value>Welcome</value> </data> <data name="Oobe_WhatsNew.Text" xml:space="preserve"> <value>What's new</value> </data> <data name="Oobe_WhatsNew_LoadingError.Title" xml:space="preserve"> <value>Couldn't load the release notes.</value> </data> <data name="Oobe_WhatsNew_LoadingError.Message" xml:space="preserve"> <value>Please check your internet connection.</value> </data> <data name="Oobe_WhatsNew_ProxyAuthenticationWarning.Title" xml:space="preserve"> <value>Couldn't load the release notes.</value> </data> <data name="Oobe_WhatsNew_ProxyAuthenticationWarning.Message" xml:space="preserve"> <value>Your proxy server requires authentication.</value> </data> <data name="Oobe_WhatsNew_DetailedReleaseNotesLink.Text" xml:space="preserve"> <value>See more detailed release notes on GitHub</value> <comment>Don't loc "GitHub", it's the name of a product</comment> </data> <data name="OOBE_Settings.Content" xml:space="preserve"> <value>Open Settings</value> </data> <data name="Oobe_NavViewItem.Content" xml:space="preserve"> <value>Welcome to PowerToys</value> <comment>Don't loc "PowerToys"</comment> </data> <data name="Feedback_NavViewItem.Content" xml:space="preserve"> <value>Give feedback</value> </data> <data name="OobeWindow_Title" xml:space="preserve"> <value>Welcome to PowerToys</value> </data> <data name="OobeWindow_TitleTxt.Text" xml:space="preserve"> <value>Welcome to PowerToys</value> </data> <data name="SettingsWindow_Title" xml:space="preserve"> <value>PowerToys Settings</value> <comment>Title of the settings window when running as user</comment> </data> <data name="Awake.ModuleTitle" xml:space="preserve"> <value>Awake</value> </data> <data name="Awake.ModuleDescription" xml:space="preserve"> <value>A convenient way to keep your PC awake on-demand.</value> </data> <data name="Awake_EnableSettingsCard.Header" xml:space="preserve"> <value>Enable Awake</value> <comment>Awake is a product name, do not loc</comment> </data> <data name="Awake_NoKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep using the selected power plan</value> </data> <data name="Awake_IndefiniteKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep awake indefinitely</value> </data> <data name="Awake_TemporaryKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep awake for a time interval</value> </data> <data name="Awake_ExpirableKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep awake until expiration</value> </data> <data name="Awake_DisplaySettingsCard.Header" xml:space="preserve"> <value>Keep screen on</value> </data> <data name="Awake_DisplaySettingsCard.Description" xml:space="preserve"> <value>This setting is only available when keeping the PC awake</value> </data> <data name="Awake_ExpirationSettingsExpander.Description" xml:space="preserve"> <value>Keep custom awake state until a specific date and time</value> </data> <data name="Awake_ModeSettingsCard.Header" xml:space="preserve"> <value>Mode</value> </data> <data name="Awake_BehaviorSettingsGroup.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="Awake_IntervalHoursInput.Header" xml:space="preserve"> <value>Hours</value> </data> <data name="Awake_IntervalMinutesInput.Header" xml:space="preserve"> <value>Minutes</value> </data> <data name="Awake_ExpirationSettingsExpander_Date.Header" xml:space="preserve"> <value>End date</value> </data> <data name="Awake_ExpirationSettingsExpander_Time.Header" xml:space="preserve"> <value>End time</value> </data> <data name="Oobe_Awake.Title" xml:space="preserve"> <value>Awake</value> <comment>Module name, do not loc</comment> </data> <data name="Oobe_Awake.Description" xml:space="preserve"> <value>Awake is a Windows tool designed to keep your PC awake on-demand without having to manage its power settings. This behavior can be helpful when running time-consuming tasks while ensuring that your PC does not go to sleep or turn off its screens.</value> </data> <data name="Oobe_Awake_HowToUse.Text" xml:space="preserve"> <value>Open **PowerToys Settings** and enable Awake</value> </data> <data name="Oobe_Awake_TipsAndTricks.Text" xml:space="preserve"> <value>You can always change modes quickly by **right-clicking the Awake icon** in the system tray.</value> </data> <data name="General_FailedToDownloadTheNewVersion.Title" xml:space="preserve"> <value>An error occurred trying to install this update:</value> </data> <data name="General_InstallNow.Content" xml:space="preserve"> <value>Install now</value> </data> <data name="General_ReadMore.Text" xml:space="preserve"> <value>Read more</value> </data> <data name="General_NewVersionAvailable.Title" xml:space="preserve"> <value>An update is available:</value> </data> <data name="General_Downloading.Text" xml:space="preserve"> <value>Downloading...</value> </data> <data name="General_TryAgainToDownloadAndInstall.Content" xml:space="preserve"> <value>Try again to download and install</value> </data> <data name="General_CheckingForUpdates.Text" xml:space="preserve"> <value>Checking for updates...</value> </data> <data name="General_NewVersionReadyToInstall.Title" xml:space="preserve"> <value>An update is ready to install:</value> </data> <data name="General_UpToDate.Title" xml:space="preserve"> <value>PowerToys is up to date</value> </data> <data name="General_CantCheck.Title" xml:space="preserve"> <value>Network error. Please try again later</value> </data> <data name="General_DownloadAndInstall.Content" xml:space="preserve"> <value>Download &amp; install</value> </data> <data name="ImageResizer_Fit_Fill_ThirdPersonSingular" xml:space="preserve"> <value>Fills</value> </data> <data name="ImageResizer_Fit_Fit_ThirdPersonSingular" xml:space="preserve"> <value>Fits within</value> </data> <data name="ImageResizer_Fit_Stretch_ThirdPersonSingular" xml:space="preserve"> <value>Stretches to</value> </data> <data name="ImageResizer_Unit_Centimeter" xml:space="preserve"> <value>Centimeters</value> </data> <data name="ImageResizer_Unit_Inch" xml:space="preserve"> <value>Inches</value> </data> <data name="ImageResizer_Unit_Percent" xml:space="preserve"> <value>Percent</value> </data> <data name="ImageResizer_Unit_Pixel" xml:space="preserve"> <value>Pixels</value> </data> <data name="EditButton.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Edit</value> </data> <data name="ImageResizer_EditSize.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Edit size</value> </data> <data name="No" xml:space="preserve"> <value>No</value> <comment>Label of a cancel button</comment> </data> <data name="Delete_Dialog_Description" xml:space="preserve"> <value>Are you sure you want to delete this item?</value> </data> <data name="Yes" xml:space="preserve"> <value>Yes</value> <comment>Label of a confirmation button</comment> </data> <data name="SeeWhatsNew.Content" xml:space="preserve"> <value>See what's new</value> </data> <data name="Awake_ModeSettingsCard.Description" xml:space="preserve"> <value>Manage the state of your device when Awake is active</value> </data> <data name="ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="Enable_ColorFormat.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Enable colorformat</value> </data> <data name="More_Options_Button.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>More options</value> </data> <data name="More_Options_ButtonTooltip.Text" xml:space="preserve"> <value>More options</value> </data> <data name="To.Text" xml:space="preserve"> <value>to</value> <comment>as in: from x to y</comment> </data> <data name="LearnMore_Awake.Text" xml:space="preserve"> <value>Learn more about Awake</value> <comment>Awake is a product name, do not loc</comment> </data> <data name="LearnMore_ColorPicker.Text" xml:space="preserve"> <value>Learn more about Color Picker</value> <comment>Color Picker is a product name, do not loc</comment> </data> <data name="LearnMore_FancyZones.Text" xml:space="preserve"> <value>Learn more about FancyZones</value> <comment>FancyZones is a product name, do not loc</comment> </data> <data name="LearnMore_FileLocksmith.Text" xml:space="preserve"> <value>Learn more about File Locksmith</value> </data> <data name="LearnMore_ImageResizer.Text" xml:space="preserve"> <value>Learn more about Image Resizer</value> <comment>Image Resizer is a product name, do not loc</comment> </data> <data name="LearnMore_KBM.Text" xml:space="preserve"> <value>Learn more about Keyboard Manager</value> <comment>Keyboard Manager is a product name, do not loc</comment> </data> <data name="LearnMore_MouseUtils.Text" xml:space="preserve"> <value>Learn more about Mouse utilities</value> <comment>Mouse utilities is a product name, do not loc</comment> </data> <data name="LearnMore_PastePlain.Text" xml:space="preserve"> <value>Learn more about Paste as Plain Text</value> <comment> Paste as Plain Text is the name of the module. </comment> </data> <data name="LearnMore_MouseWithoutBorders.Text" xml:space="preserve"> <value>Learn more about Mouse Without Borders</value> <comment>Mouse Without Borders is the name of the module. </comment> </data> <data name="LearnMore_PowerPreview.Text" xml:space="preserve"> <value>Learn more about File Explorer add-ons</value> <comment>File Explorer is a product name, localize as Windows does</comment> </data> <data name="LearnMore_Peek.Text" xml:space="preserve"> <value>Learn more about Peek</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="LearnMore_PowerRename.Text" xml:space="preserve"> <value>Learn more about PowerRename</value> <comment>PowerRename is a product name, do not loc</comment> </data> <data name="LearnMore_Run.Text" xml:space="preserve"> <value>Learn more about PowerToys Run</value> <comment>PowerToys Run is a product name, do not loc</comment> </data> <data name="LearnMore_MeasureTool.Text" xml:space="preserve"> <value>Learn more about Screen Ruler</value> <comment>Screen Ruler is a product name, do not loc</comment> </data> <data name="LearnMore_ShortcutGuide.Text" xml:space="preserve"> <value>Learn more about Shortcut Guide</value> <comment>Shortcut Guide is a product name, do not loc</comment> </data> <data name="LearnMore_VCM.Text" xml:space="preserve"> <value>Learn more about Video Conference Mute</value> <comment>Video Conference Mute is a product name, do not loc</comment> </data> <data name="Oobe_FileExplorer.Title" xml:space="preserve"> <value>File Explorer add-ons</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_MouseUtils.Title" xml:space="preserve"> <value>Mouse utilities</value> <comment>Mouse as in the hardware peripheral</comment> </data> <data name="Oobe_MouseUtils_FindMyMouse.Text" xml:space="preserve"> <value>Find My Mouse</value> <comment>Mouse as in the hardware peripheral</comment> </data> <data name="Oobe_MouseUtils_FindMyMouse_Description.Text" xml:space="preserve"> <value>Focus the mouse pointer pressing the Ctrl key twice, using a custom shortcut or shaking the mouse.</value> <comment>Mouse as in the hardware peripheral. Key as in a keyboard key</comment> </data> <data name="Oobe_MouseUtils_MouseHighlighter.Text" xml:space="preserve"> <value>Mouse Highlighter</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MouseHighlighter_Description.Text" xml:space="preserve"> <value>Use a keyboard shortcut to highlight left and right mouse clicks.</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MousePointerCrosshairs.Text" xml:space="preserve"> <value>Mouse Pointer Crosshairs</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MousePointerCrosshairs_Description.Text" xml:space="preserve"> <value>Draw crosshairs centered around the mouse pointer.</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MouseJump.Text" xml:space="preserve"> <value>Mouse Jump</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MouseJump_Description.Text" xml:space="preserve"> <value>Jump the mouse pointer quickly to anywhere on your desktop.</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Launch_Run.Content" xml:space="preserve"> <value>Launch PowerToys Run</value> </data> <data name="Launch_ShortcutGuide.Content" xml:space="preserve"> <value>Launch Shortcut Guide</value> </data> <data name="ColorPicker_ColorFormat_ToggleSwitch.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Show format in editor</value> </data> <data name="GeneralPage_Documentation.Text" xml:space="preserve"> <value>Documentation</value> </data> <data name="PowerLauncher_SearchList.PlaceholderText" xml:space="preserve"> <value>Search this list</value> </data> <data name="PowerLauncher_SearchList.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Search this list</value> </data> <data name="Awake.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="ColorPicker.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="General.SecondaryLinksHeader" xml:space="preserve"> <value>Related information</value> </data> <data name="ImageResizer.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="MouseUtils.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="PowerLauncher.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="PowerRename.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="EditTooltip.Text" xml:space="preserve"> <value>Edit</value> </data> <data name="RemoveTooltip.Text" xml:space="preserve"> <value>Remove</value> </data> <data name="Activation_Shortcut_Cancel" xml:space="preserve"> <value>Cancel</value> </data> <data name="Activation_Shortcut_Description" xml:space="preserve"> <value>Press a combination of keys to change this shortcut</value> </data> <data name="Activation_Shortcut_With_Disable_Description" xml:space="preserve"> <value>Press a combination of keys to change this shortcut. Right-click to remove the key combination, thereby deactivating the shortcut.</value> </data> <data name="Activation_Shortcut_Reset" xml:space="preserve"> <value>Reset</value> </data> <data name="Activation_Shortcut_Save" xml:space="preserve"> <value>Save</value> </data> <data name="Activation_Shortcut_Title" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="InvalidShortcut.Title" xml:space="preserve"> <value>Invalid shortcut</value> </data> <data name="InvalidShortcutWarningLabel.Text" xml:space="preserve"> <value>Only shortcuts that start with **Windows key**, **Ctrl**, **Alt** or **Shift** are valid.</value> <comment>The ** sequences are used for text formatting of the key names. Don't remove them on translation.</comment> </data> <data name="FancyZones_SpanZonesAcrossMonitors.Description" xml:space="preserve"> <value>All monitors must have the same DPI scaling and will be treated as one large combined rectangle which contains all monitors</value> </data> <data name="ImageResizer_DefaultSize_NewSizePrefix" xml:space="preserve"> <value>New size</value> <comment>First part of the default name of new sizes that can be added in PT's settings ui.</comment> </data> <data name="Awake_IntervalSettingsCard.Header" xml:space="preserve"> <value>Interval before returning to the previous awakeness state</value> </data> <data name="Awake_ExpirationSettingsExpander.Header" xml:space="preserve"> <value>End date and time</value> </data> <data name="MouseUtils.ModuleTitle" xml:space="preserve"> <value>Mouse utilities</value> </data> <data name="MouseUtils.ModuleDescription" xml:space="preserve"> <value>A collection of mouse utilities.</value> </data> <data name="MouseUtils_FindMyMouse.Header" xml:space="preserve"> <value>Find My Mouse</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_FindMyMouse.Description" xml:space="preserve"> <value>Find My Mouse highlights the position of the cursor when pressing the Ctrl key twice, using a custom shortcut or when shaking the mouse.</value> <comment>"Ctrl" is a keyboard key. "Find My Mouse" is the name of the utility</comment> </data> <data name="MouseUtils_Enable_FindMyMouse.Header" xml:space="preserve"> <value>Enable Find My Mouse</value> <comment>"Find My Mouse" is the name of the utility.</comment> </data> <data name="MouseUtils_FindMyMouse_ActivationMethod.Header" xml:space="preserve"> <value>Activation method</value> </data> <data name="MouseUtils_FindMyMouse_ActivationDoubleControlPress.Content" xml:space="preserve"> <value>Press Left Control twice</value> <comment>Left control is the physical key on the keyboard.</comment> </data> <data name="MouseUtils_FindMyMouse_ActivationShakeMouse.Content" xml:space="preserve"> <value>Shake mouse</value> <comment>Mouse is the hardware peripheral.</comment> </data> <data name="MouseUtils_FindMyMouse_ExcludedApps.Description" xml:space="preserve"> <value>Prevents module activation when an excluded application is the foreground application</value> </data> <data name="MouseUtils_FindMyMouse_ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="MouseUtils_FindMyMouse_ExcludedApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> </data> <data name="MouseUtils_Prevent_Activation_On_Game_Mode.Content" xml:space="preserve"> <value>Do not activate when Game Mode is on</value> <comment>"Game mode" is the Windows feature to prevent notification when playing a game.</comment> </data> <data name="MouseUtils_FindMyMouse_BackgroundColor.Header" xml:space="preserve"> <value>Background color</value> </data> <data name="MouseUtils_FindMyMouse_SpotlightColor.Header" xml:space="preserve"> <value>Spotlight color</value> </data> <data name="MouseUtils_FindMyMouse_OverlayOpacity.Header" xml:space="preserve"> <value>Overlay opacity (%)</value> </data> <data name="MouseUtils_FindMyMouse_SpotlightRadius.Header" xml:space="preserve"> <value>Spotlight radius (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_FindMyMouse_SpotlightInitialZoom.Header" xml:space="preserve"> <value>Spotlight initial zoom</value> </data> <data name="MouseUtils_FindMyMouse_SpotlightInitialZoom.Description" xml:space="preserve"> <value>Spotlight zoom factor at animation start</value> </data> <data name="MouseUtils_FindMyMouse_AnimationDurationMs.Header" xml:space="preserve"> <value>Animation duration (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_FindMyMouse_AnimationDurationMs.Description" xml:space="preserve"> <value>Time before the spotlight appears (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_FindMyMouse_AnimationDurationMs_Disabled.Message" xml:space="preserve"> <value>Animations are disabled by OS. See Settings &gt; Accessibility &gt; Visual effects</value> </data> <data name="MouseUtils_FindMyMouse_ShakingMinimumDistance.Header" xml:space="preserve"> <value>Shake minimum distance</value> </data> <data name="MouseUtils_FindMyMouse_ShakingMinimumDistance.Description" xml:space="preserve"> <value>The minimum distance for mouse shaking activation, for adjusting sensitivity</value> </data> <data name="MouseUtils_MouseHighlighter.Header" xml:space="preserve"> <value>Mouse Highlighter</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_MouseHighlighter.Description" xml:space="preserve"> <value>Mouse Highlighter mode will highlight mouse clicks.</value> <comment>"Mouse Highlighter" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_Enable_MouseHighlighter.Header" xml:space="preserve"> <value>Enable Mouse Highlighter</value> <comment>"Find My Mouse" is the name of the utility.</comment> </data> <data name="MouseUtils_MouseHighlighter_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MouseUtils_MouseHighlighter_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to turn on or off this mode</value> <comment>"Mouse Highlighter" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_MouseHighlighter_PrimaryButtonClickColor.Header" xml:space="preserve"> <value>Primary button highlight color</value> </data> <data name="MouseUtils_MouseHighlighter_SecondaryButtonClickColor.Header" xml:space="preserve"> <value>Secondary button highlight color</value> </data> <data name="MouseUtils_MouseHighlighter_HighlightRadius.Header" xml:space="preserve"> <value>Radius (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDelayMs.Header" xml:space="preserve"> <value>Fade delay (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDelayMs.Description" xml:space="preserve"> <value>Time before the highlight begins to fade (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDurationMs.Header" xml:space="preserve"> <value>Fade duration (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDurationMs.Description" xml:space="preserve"> <value>Duration of the disappear animation (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MousePointerCrosshairs.Header" xml:space="preserve"> <value>Mouse Pointer Crosshairs</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_MousePointerCrosshairs.Description" xml:space="preserve"> <value>Mouse Pointer Crosshairs draws crosshairs centered on the mouse pointer.</value> <comment>"Mouse Pointer Crosshairs" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_Enable_MousePointerCrosshairs.Header" xml:space="preserve"> <value>Enable Mouse Pointer Crosshairs</value> <comment>"Mouse Pointer Crosshairs" is the name of the utility.</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MouseUtils_MousePointerCrosshairs_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to show/hide the crosshairs</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsColor.Header" xml:space="preserve"> <value>Crosshairs color</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsOpacity.Header" xml:space="preserve"> <value>Crosshairs opacity (%)</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsRadius.Header" xml:space="preserve"> <value>Crosshairs center radius (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsThickness.Header" xml:space="preserve"> <value>Crosshairs thickness (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsBorderColor.Header" xml:space="preserve"> <value>Crosshairs border color</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsBorderSize.Header" xml:space="preserve"> <value>Crosshairs border size (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_IsCrosshairsFixedLengthEnabled.Header" xml:space="preserve"> <value>Fix crosshairs length</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsFixedLength.Header" xml:space="preserve"> <value>Crosshairs fixed length (px)</value> <comment>px = pixels</comment> </data> <data name="FancyZones_Radio_Custom_Colors.Content" xml:space="preserve"> <value>Custom colors</value> </data> <data name="FancyZones_Radio_Default_Theme.Content" xml:space="preserve"> <value>Windows default</value> </data> <data name="ColorModeHeader.Header" xml:space="preserve"> <value>App theme</value> </data> <data name="FancyZones_Zone_Appearance.Description" xml:space="preserve"> <value>Customize the way zones look</value> </data> <data name="FancyZones_Zone_Appearance.Header" xml:space="preserve"> <value>Zone appearance</value> </data> <data name="VideoConference_DeprecationWarning.Title" xml:space="preserve"> <value>VCM is moving into legacy mode (maintenance only).</value> </data> <data name="VideoConference_DeprecationWarningButton.Content" xml:space="preserve"> <value>Learn more</value> </data> <data name="LearnMore.Content" xml:space="preserve"> <value>Learn more</value> </data> <data name="VideoConference_RunAsAdminRequired.Title" xml:space="preserve"> <value>You need to run as administrator to modify these settings.</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_GCODE.Header" xml:space="preserve"> <value>Geometric Code</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_GCODE.Description" xml:space="preserve"> <value>Only .gcode files with embedded thumbnails are supported</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_GCODE.Header" xml:space="preserve"> <value>Geometric Code</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_GCODE.Description" xml:space="preserve"> <value>Only .gcode files with embedded thumbnails are supported</value> </data> <data name="FancyZones_NumberColor.Header" xml:space="preserve"> <value>Number color</value> </data> <data name="FancyZones_ShowZoneNumberCheckBoxControl.Content" xml:space="preserve"> <value>Show zone number</value> </data> <data name="ToggleSwitch.OffContent" xml:space="preserve"> <value>Off</value> <comment>The state of a ToggleSwitch when it's off</comment> </data> <data name="ToggleSwitch.OnContent" xml:space="preserve"> <value>On</value> <comment>The state of a ToggleSwitch when it's on</comment> </data> <data name="CropAndLock.ModuleDescription" xml:space="preserve"> <value>Crop And Lock allows you to crop a current application into a smaller window or just create a thumbnail. Focus the target window and press the shortcut to start cropping.</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="CropAndLock.ModuleTitle" xml:space="preserve"> <value>Crop And Lock </value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="CropAndLock_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="CropAndLock_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="Shell_CropAndLock.Content" xml:space="preserve"> <value>Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="LearnMore_CropAndLock.Text" xml:space="preserve"> <value>Learn more about Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="CropAndLock_ReparentActivation_Shortcut.Header" xml:space="preserve"> <value>Reparent shortcut</value> </data> <data name="CropAndLock_ReparentActivation_Shortcut.Description" xml:space="preserve"> <value>Shortcut to crop an application's window into a cropped window. This is experimental and can cause issues with some applications, since the cropped window will contain the original application window.</value> </data> <data name="CropAndLock_ThumbnailActivation_Shortcut.Header" xml:space="preserve"> <value>Thumbnail shortcut</value> </data> <data name="CropAndLock_ThumbnailActivation_Shortcut.Description" xml:space="preserve"> <value>Shortcut to crop and create a thumbnail of another window. The application isn't controllable through the thumbnail but it'll have less compatibility issues. </value> </data> <data name="CropAndLock.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="Oobe_CropAndLock.Title" xml:space="preserve"> <value>Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="Oobe_CropAndLock.Description" xml:space="preserve"> <value>Crop And Lock allows you to crop a current application into a smaller window or just create a thumbnail. Focus the target window and press the shortcut to start cropping.</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="Oobe_CropAndLock_HowToUse_Thumbnail.Text" xml:space="preserve"> <value>to crop and create a thumbnail of another window. The application isn't controllable through the thumbnail but it'll have less compatibility issues.</value> </data> <data name="Oobe_CropAndLock_HowToUse_Reparent.Text" xml:space="preserve"> <value>to crop an application's window into a cropped window. This is experimental and can cause issues with some applications, since the cropped window will contain the original application window.</value> </data> <data name="AlwaysOnTop.ModuleDescription" xml:space="preserve"> <value>Always On Top is a quick and easy way to pin windows on top.</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop.ModuleTitle" xml:space="preserve"> <value>Always On Top </value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="Peek_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="AlwaysOnTop_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_ExcludedApps.Description" xml:space="preserve"> <value>Excludes an application from pinning on top</value> </data> <data name="AlwaysOnTop_ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="AlwaysOnTop_ExcludedApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> </data> <data name="AlwaysOnTop_FrameColor.Header" xml:space="preserve"> <value>Color</value> </data> <data name="AlwaysOnTop_FrameEnabled.Header" xml:space="preserve"> <value>Show a border around the pinned window</value> </data> <data name="AlwaysOnTop_FrameThickness.Header" xml:space="preserve"> <value>Thickness (px)</value> <comment>px = pixels</comment> </data> <data name="AlwaysOnTop_Behavior_GroupSettings.Header" xml:space="preserve"> <value>Appearance &amp; behavior</value> </data> <data name="Shell_AlwaysOnTop.Content" xml:space="preserve"> <value>Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_GameMode.Content" xml:space="preserve"> <value>Do not activate when Game Mode is on</value> <comment>Game Mode is a Windows feature</comment> </data> <data name="AlwaysOnTop_SoundTitle.Header" xml:space="preserve"> <value>Sound</value> </data> <data name="AlwaysOnTop_Sound.Content" xml:space="preserve"> <value>Play a sound when pinning a window</value> </data> <data name="AlwaysOnTop_Behavior.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="LearnMore_AlwaysOnTop.Text" xml:space="preserve"> <value>Learn more about Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="AlwaysOnTop_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to pin or unpin an app window</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="Oobe_AlwaysOnTop.Title" xml:space="preserve"> <value>Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="Oobe_AlwaysOnTop.Description" xml:space="preserve"> <value>Always On Top improves your multitasking workflow by pinning an application window so it's always in front - even when focus changes to another window after that.</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="Oobe_AlwaysOnTop_HowToUse.Text" xml:space="preserve"> <value>to pin or unpin the selected window so it's always on top of all other windows.</value> </data> <data name="Oobe_AlwaysOnTop_TipsAndTricks.Text" xml:space="preserve"> <value>You can tweak the visual outline of the pinned windows in PowerToys settings.</value> </data> <data name="AlwaysOnTop_FrameColor_Mode.Header" xml:space="preserve"> <value>Color mode</value> </data> <data name="AlwaysOnTop_Radio_Custom_Color.Content" xml:space="preserve"> <value>Custom color</value> </data> <data name="AlwaysOnTop_Radio_Windows_Default.Content" xml:space="preserve"> <value>Windows default</value> </data> <data name="FileExplorerPreview.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Monaco_Wrap_Text.Content" xml:space="preserve"> <value>Wrap text</value> <comment>Feature on or off</comment> </data> <data name="FancyZones_AllowPopupWindowSnap.Description" xml:space="preserve"> <value>This setting can affect all popup windows including notifications</value> </data> <data name="FancyZones_AllowPopupWindowSnap.Header" xml:space="preserve"> <value>Allow popup windows snapping</value> </data> <data name="FancyZones_AllowChildWindowSnap.Content" xml:space="preserve"> <value>Allow child windows snapping</value> </data> <data name="Shell_WhatsNew.Content" xml:space="preserve"> <value>What's new</value> </data> <data name="Shell_Peek.Content" xml:space="preserve"> <value>Peek</value> <comment>Product name: Navigation view item name for Peek</comment> </data> <data name="Peek.ModuleTitle" xml:space="preserve"> <value>Peek</value> </data> <data name="Peek.ModuleDescription" xml:space="preserve"> <value>Peek is a quick and easy way to preview files. Select a file in File Explorer and press the shortcut to open the file preview.</value> </data> <data name="Peek_EnablePeek.Header" xml:space="preserve"> <value>Enable Peek</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="Peek_BehaviorHeader.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="Peek_AlwaysRunNotElevated.Header" xml:space="preserve"> <value>Always run not elevated, even when PowerToys is elevated</value> </data> <data name="Peek_AlwaysRunNotElevated.Description" xml:space="preserve"> <value>Tries to run Peek without elevated permissions, to fix access to network shares. You need to disable and re-enable Peek for changes to this value to take effect.</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="Peek_CloseAfterLosingFocus.Header" xml:space="preserve"> <value>Automatically close the Peek window after it loses focus</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="FancyZones_DisableRoundCornersOnWindowSnap.Content" xml:space="preserve"> <value>Disable round corners when window is snapped</value> </data> <data name="PowerLauncher_SearchQueryTuningEnabled.Description" xml:space="preserve"> <value>Fine tune results ordering</value> </data> <data name="PowerLauncher_SearchQueryTuningEnabled.Header" xml:space="preserve"> <value>Results order tuning</value> </data> <data name="PowerLauncher_SearchClickedItemWeight.Description" xml:space="preserve"> <value>Use a higher number to get selected results to rise faster. The default is 5, 0 to disable.</value> </data> <data name="PowerLauncher_SearchClickedItemWeight.Header" xml:space="preserve"> <value>Selected item weight</value> </data> <data name="PowerLauncher_WaitForSlowResults.Description" xml:space="preserve"> <value>Selecting this can help preselect the top, more relevant result, but at the risk of jumpiness</value> </data> <data name="PowerLauncher_WaitForSlowResults.Header" xml:space="preserve"> <value>Wait on slower plugin results before selecting top item in results</value> </data> <data name="PowerLauncher_PluginWeightBoost.Description" xml:space="preserve"> <value>Use a higher number to have this plugin's result show higher in the global results. Default is 0.</value> </data> <data name="PowerLauncher_PluginWeightBoost.Header" xml:space="preserve"> <value>Global sort order score modifier</value> </data> <data name="AlwaysOnTop_RoundCorners.Content" xml:space="preserve"> <value>Enable round corners</value> </data> <data name="LearnMore_QuickAccent.Text" xml:space="preserve"> <value>Learn more about Quick Accent</value> <comment>Quick Accent is a product name, do not loc</comment> </data> <data name="QuickAccent_EnableQuickAccent.Header" xml:space="preserve"> <value>Enable Quick Accent</value> </data> <data name="Shell_QuickAccent.Content" xml:space="preserve"> <value>Quick Accent</value> </data> <data name="QuickAccent.ModuleDescription" xml:space="preserve"> <value>Quick Accent is an alternative way to type accented characters, useful for when a keyboard doesn't support that specific accent. Activate by holding the key for the character you want to add an accent to, then press the activation key (space, left or right arrow keys) and an overlay to select accented characters will appear!</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent.ModuleTitle" xml:space="preserve"> <value>Quick Accent</value> </data> <data name="QuickAccent.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> </data> <data name="AlwaysOnTop_ShortDescription" xml:space="preserve"> <value>Pin a window</value> </data> <data name="Awake_ShortDescription" xml:space="preserve"> <value>Keep your PC awake</value> </data> <data name="ColorPicker_ShortDescription" xml:space="preserve"> <value>Pick a color</value> </data> <data name="CropAndLock_Thumbnail" xml:space="preserve"> <value>Thumbnail</value> </data> <data name="CropAndLock_Reparent" xml:space="preserve"> <value>Reparent</value> </data> <data name="FancyZones_OpenEditor" xml:space="preserve"> <value>Open editor</value> </data> <data name="FileLocksmith_ShortDescription" xml:space="preserve"> <value>Right-click on files or directories to show running processes</value> </data> <data name="FindMyMouse_ShortDescription" xml:space="preserve"> <value>Find the mouse</value> </data> <data name="ImageResizer_ShortDescription" xml:space="preserve"> <value>Select Image Resizer in the right-click context menu</value> </data> <data name="MouseHighlighter_ShortDescription" xml:space="preserve"> <value>Highlight clicks</value> </data> <data name="MouseJump_ShortDescription" xml:space="preserve"> <value>Quickly move the mouse pointer</value> </data> <data name="MouseCrosshairs_ShortDescription" xml:space="preserve"> <value>Draw crosshairs centered on the mouse pointer</value> </data> <data name="MouseWithoutBorders_ShortDescription" xml:space="preserve"> <value>Move your cursor across multiple devices</value> </data> <data name="PastePlain_ShortDescription" xml:space="preserve"> <value>Paste clipboard content without formatting</value> </data> <data name="Peek_ShortDescription" xml:space="preserve"> <value>Quick and easy previewer</value> </data> <data name="PowerRename_ShortDescription" xml:space="preserve"> <value>Select Power Rename in right-click context menu</value> </data> <data name="Run_ShortDescription" xml:space="preserve"> <value>A quick launcher</value> </data> <data name="PowerAccent_ShortDescription" xml:space="preserve"> <value>An alternative way to type accented characters</value> </data> <data name="RegistryPreview_ShortDescription" xml:space="preserve"> <value>Visualize and edit Windows Registry files</value> </data> <data name="ScreenRuler_ShortDescription" xml:space="preserve"> <value>Measure pixels on your screen</value> </data> <data name="ShortcutGuide_ShortDescription" xml:space="preserve"> <value>Show a help overlay with Windows shortcuts</value> </data> <data name="PowerOcr_ShortDescription" xml:space="preserve"> <value>A convenient way to copy text from anywhere on screen</value> </data> <data name="Dashboard_Activation" xml:space="preserve"> <value>Activation</value> </data> <data name="DashboardKBMShowMappingsButton.Content" xml:space="preserve"> <value>Show remappings</value> </data> <data name="Oobe_QuickAccent.Description" xml:space="preserve"> <value>Quick Accent is an easy way to write letters with accents, like on a smartphone.</value> </data> <data name="Oobe_QuickAccent.Title" xml:space="preserve"> <value>Quick Accent</value> </data> <data name="Oobe_QuickAccent_HowToUse.Text" xml:space="preserve"> <value>Open **PowerToys Settings** and enable Quick Accent. While holding the key for the character you want to add an accent to, press the Activation Key and an overlay to select the accented character will appear.</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="QuickAccent_Activation_Shortcut.Header" xml:space="preserve"> <value>Activation key</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent_Activation_Shortcut.Description" xml:space="preserve"> <value>Press this key after holding down the target letter</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent_Activation_Key_Arrows.Content" xml:space="preserve"> <value>Left/Right Arrow</value> <comment>Left/Right arrow keyboard keys</comment> </data> <data name="QuickAccent_Activation_Key_Space.Content" xml:space="preserve"> <value>Space</value> <comment>Space is the space keyboard key</comment> </data> <data name="QuickAccent_Activation_Key_Either.Content" xml:space="preserve"> <value>Left, Right or Space</value> <comment>All are keys on a keyboard</comment> </data> <data name="QuickAccent_Toolbar.Header" xml:space="preserve"> <value>Toolbar</value> </data> <data name="QuickAccent_ToolbarPosition.Header" xml:space="preserve"> <value>Toolbar position</value> </data> <data name="QuickAccent_ToolbarPosition_TopCenter.Content" xml:space="preserve"> <value>Top center</value> </data> <data name="QuickAccent_ToolbarPosition_TopLeftCorner.Content" xml:space="preserve"> <value>Top left corner</value> </data> <data name="QuickAccent_ToolbarPosition_TopRightCorner.Content" xml:space="preserve"> <value>Top right corner</value> </data> <data name="QuickAccent_ToolbarPosition_BottomLeftCorner.Content" xml:space="preserve"> <value>Bottom left corner</value> </data> <data name="QuickAccent_ToolbarPosition_BottomCenter.Content" xml:space="preserve"> <value>Bottom center</value> </data> <data name="QuickAccent_ToolbarPosition_BottomRightCorner.Content" xml:space="preserve"> <value>Bottom right corner</value> </data> <data name="QuickAccent_ToolbarPosition_Center.Content" xml:space="preserve"> <value>Center</value> </data> <data name="QuickAccent_ToolbarPosition_Left.Content" xml:space="preserve"> <value>Left</value> </data> <data name="QuickAccent_ToolbarPosition_Right.Content" xml:space="preserve"> <value>Right</value> </data> <data name="QuickAccent_Behavior.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="QuickAccent_InputTimeMs.Header" xml:space="preserve"> <value>Input delay (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="QuickAccent_InputTimeMs.Description" xml:space="preserve"> <value>Hold the key down for this much time to make the accent menu appear (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="QuickAccent_ExcludedApps.Description" xml:space="preserve"> <value>Prevents module activation if a foreground application is excluded. Add one application name per line.</value> </data> <data name="QuickAccent_ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="QuickAccent_ExcludedApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: Teams.exe</value> </data> <data name="LearnMore_TextExtractor.Text" xml:space="preserve"> <value>Learn more about Text Extractor</value> </data> <data name="TextExtractor_Cancel" xml:space="preserve"> <value>cancel</value> </data> <data name="General_SettingsBackupAndRestore_NothingToBackup" xml:space="preserve"> <value>A new backup was not created because no settings have been changed since last backup.</value> </data> <data name="General_SettingsBackupAndRestore_NoBackupFound" xml:space="preserve"> <value>No backup found</value> </data> <data name="General_SettingsBackupAndRestore_FailedToParseTime" xml:space="preserve"> <value>Failed to parse time</value> </data> <data name="General_SettingsBackupAndRestore_UnknownBackupTime" xml:space="preserve"> <value>Unknown</value> </data> <data name="General_SettingsBackupAndRestore_UnknownBackupSource" xml:space="preserve"> <value>Unknown</value> </data> <data name="General_SettingsBackupAndRestore_ThisMachine" xml:space="preserve"> <value>This computer</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsMatch" xml:space="preserve"> <value>Current settings match</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsStatusAt" xml:space="preserve"> <value>at</value> <comment>E.g., Food was served 'at' noon.</comment> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsDiffer" xml:space="preserve"> <value>Current settings differ</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsNoChecked" xml:space="preserve"> <value>Checking...</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsUnknown" xml:space="preserve"> <value>Unknown</value> </data> <data name="General_SettingsBackupAndRestore_NeverRestored" xml:space="preserve"> <value>Never restored</value> </data> <data name="General_SettingsBackupAndRestore_NothingToRestore" xml:space="preserve"> <value>Nothing to restore.</value> </data> <data name="General_SettingsBackupAndRestore_NoSettingsFilesFound" xml:space="preserve"> <value>No settings files found.</value> </data> <data name="General_SettingsBackupAndRestore_BackupError" xml:space="preserve"> <value>There was an error. Try another backup location.</value> </data> <data name="General_SettingsBackupAndRestore_SettingsFormatError" xml:space="preserve"> <value>There was an error in the settings format. Please check the settings file:</value> </data> <data name="General_SettingsBackupAndRestore_BackupComplete" xml:space="preserve"> <value>Backup completed.</value> </data> <data name="General_SettingsBackupAndRestore_NoBackupSyncPath" xml:space="preserve"> <value>No backup location selected.</value> </data> <data name="General_SettingsBackupAndRestore_NoBackupsFound" xml:space="preserve"> <value>No backups found to restore.</value> </data> <data name="General_SettingsBackupAndRestore_InvalidBackupLocation" xml:space="preserve"> <value>Invalid backup location.</value> </data> <data name="TextExtractor.ModuleDescription" xml:space="preserve"> <value>Text Extractor is a convenient way to copy text from anywhere on screen</value> </data> <data name="TextExtractor.ModuleTitle" xml:space="preserve"> <value>Text Extractor</value> </data> <data name="TextExtractor_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Text Extractor</value> </data> <data name="TextExtractor_SupportedLanguages.Title" xml:space="preserve"> <value>Text Extractor can only recognize languages that have the OCR pack installed.</value> </data> <data name="TextExtractor_SupportedLanguages_Link.Content" xml:space="preserve"> <value>Learn more about supported languages</value> </data> <data name="Shell_TextExtractor.Content" xml:space="preserve"> <value>Text Extractor</value> </data> <data name="Launch_TextExtractor.Content" xml:space="preserve"> <value>Launch Text Extractor</value> </data> <data name="Oobe_TextExtractor.Title" xml:space="preserve"> <value>Text Extractor</value> </data> <data name="Oobe_TextExtractor_HowToUse.Text" xml:space="preserve"> <value>to open Text Extractor and then selecting a region to copy the text from.</value> </data> <data name="Oobe_TextExtractor_TipsAndTricks.Text" xml:space="preserve"> <value>Hold the shift key to move the selection region around.</value> </data> <data name="TextExtractor.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> </data> <data name="Oobe_TextExtractor.Description" xml:space="preserve"> <value>Text Extractor works like Snipping Tool, but copies the text out of the selected region using OCR and puts it on the clipboard.</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Monaco_Try_Format.Description" xml:space="preserve"> <value>Applies to json and xml. Files remain unchanged.</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Monaco_Try_Format.Header" xml:space="preserve"> <value>Try to format the source for preview</value> </data> <data name="Run_ConflictingKeywordInfo.Title" xml:space="preserve"> <value>Some characters and phrases may conflict with global queries of other plugins if you use them as activation command.</value> </data> <data name="Run_ConflictingKeywordInfo_Link.Content" xml:space="preserve"> <value>Learn more about conflicting activation commands</value> </data> <data name="MeasureTool_ContinuousCapture_Information.Title" xml:space="preserve"> <value>The continuous capture mode will consume more resources when in use. Also, measurements will be excluded from screenshots and screen capture.</value> <comment>pointer as in mouse pointer. Resources refer to things like CPU, GPU, RAM</comment> </data> <data name="QuickAccent_Description_Indicator.Header" xml:space="preserve"> <value>Show the Unicode code and name of the currently selected character</value> </data> <data name="QuickAccent_SortByUsageFrequency_Indicator.Header" xml:space="preserve"> <value>Sort characters by usage frequency</value> </data> <data name="QuickAccent_SortByUsageFrequency_Indicator.Description" xml:space="preserve"> <value>Track characters usage frequency and sort them accordingly</value> </data> <data name="QuickAccent_StartSelectionFromTheLeft_Indicator.Header" xml:space="preserve"> <value>Start selection from the left</value> </data> <data name="QuickAccent_StartSelectionFromTheLeft_Indicator.Description" xml:space="preserve"> <value>Start selection from the leftmost character for all activation keys, including left and right arrows</value> </data> <data name="QuickAccent_DisableFullscreen.Header" xml:space="preserve"> <value>Disable when Game Mode is On</value> </data> <data name="QuickAccent_Language.Header" xml:space="preserve"> <value>Characters</value> </data> <data name="QuickAccent_SelectedLanguage.Header" xml:space="preserve"> <value>Choose a character set</value> </data> <data name="QuickAccent_SelectedLanguage.Description" xml:space="preserve"> <value>Show only accented characters common to the selected set</value> </data> <data name="QuickAccent_SelectedLanguage_All.Content" xml:space="preserve"> <value>All available</value> </data> <data name="QuickAccent_SelectedLanguage_Catalan.Content" xml:space="preserve"> <value>Catalan</value> </data> <data name="QuickAccent_SelectedLanguage_Currency.Content" xml:space="preserve"> <value>Currency</value> </data> <data name="QuickAccent_SelectedLanguage_Croatian.Content" xml:space="preserve"> <value>Croatian</value> </data> <data name="QuickAccent_SelectedLanguage_Czech.Content" xml:space="preserve"> <value>Czech</value> </data> <data name="QuickAccent_SelectedLanguage_Gaeilge.Content" xml:space="preserve"> <value>Gaeilge</value> <comment>Gaelic language spoken in Ireland</comment> </data> <data name="QuickAccent_SelectedLanguage_Gaidhlig.Content" xml:space="preserve"> <value>Gàidhlig</value> <comment>Scottish Gaelic</comment> </data> <data name="QuickAccent_SelectedLanguage_German.Content" xml:space="preserve"> <value>German</value> </data> <data name="QuickAccent_SelectedLanguage_Hebrew.Content" xml:space="preserve"> <value>Hebrew</value> </data> <data name="QuickAccent_SelectedLanguage_French.Content" xml:space="preserve"> <value>French</value> </data> <data name="QuickAccent_SelectedLanguage_Estonian.Content" xml:space="preserve"> <value>Estonian</value> </data> <data name="QuickAccent_SelectedLanguage_Lithuanian.Content" xml:space="preserve"> <value>Lithuanian</value> </data> <data name="QuickAccent_SelectedLanguage_Macedonian.Content" xml:space="preserve"> <value>Macedonian</value> </data> <data name="QuickAccent_SelectedLanguage_Maori.Content" xml:space="preserve"> <value>Maori</value> </data> <data name="QuickAccent_SelectedLanguage_Dutch.Content" xml:space="preserve"> <value>Dutch</value> </data> <data name="QuickAccent_SelectedLanguage_Norwegian.Content" xml:space="preserve"> <value>Norwegian</value> </data> <data name="QuickAccent_SelectedLanguage_Pinyin.Content" xml:space="preserve"> <value>Pinyin</value> </data> <data name="QuickAccent_SelectedLanguage_Polish.Content" xml:space="preserve"> <value>Polish</value> </data> <data name="QuickAccent_SelectedLanguage_Portuguese.Content" xml:space="preserve"> <value>Portuguese</value> </data> <data name="QuickAccent_SelectedLanguage_Slovakian.Content" xml:space="preserve"> <value>Slovakian</value> </data> <data name="QuickAccent_SelectedLanguage_Spanish.Content" xml:space="preserve"> <value>Spanish</value> </data> <data name="QuickAccent_SelectedLanguage_Swedish.Content" xml:space="preserve"> <value>Swedish</value> </data> <data name="QuickAccent_SelectedLanguage_Turkish.Content" xml:space="preserve"> <value>Turkish</value> </data> <data name="QuickAccent_SelectedLanguage_Icelandic.Content" xml:space="preserve"> <value>Icelandic</value> </data> <data name="QuickAccent_SelectedLanguage_Romanian.Content" xml:space="preserve"> <value>Romanian</value> </data> <data name="QuickAccent_SelectedLanguage_Serbian.Content" xml:space="preserve"> <value>Serbian</value> </data> <data name="QuickAccent_SelectedLanguage_Hungarian.Content" xml:space="preserve"> <value>Hungarian</value> </data> <data name="QuickAccent_SelectedLanguage_Italian.Content" xml:space="preserve"> <value>Italian</value> </data> <data name="QuickAccent_SelectedLanguage_Kurdish.Content" xml:space="preserve"> <value>Kurdish</value> </data> <data name="QuickAccent_SelectedLanguage_Welsh.Content" xml:space="preserve"> <value>Welsh</value> </data> <data name="Hosts.ModuleDescription" xml:space="preserve"> <value>Quick and simple utility for managing hosts file.</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Hosts.ModuleTitle" xml:space="preserve"> <value>Hosts File Editor</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Shell_Hosts.Content" xml:space="preserve"> <value>Hosts File Editor</value> <comment>Products name: Navigation view item name for Hosts File Editor</comment> </data> <data name="Hosts_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Hosts_Toggle_ShowStartupWarning.Header" xml:space="preserve"> <value>Show a warning at startup</value> </data> <data name="Hosts_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="Hosts_LaunchButtonControl.Description" xml:space="preserve"> <value>Manage your hosts file</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Hosts_LaunchButtonControl.Header" xml:space="preserve"> <value>Launch Host File Editor</value> <comment>"Host File Editor" is a product name</comment> </data> <data name="Hosts_LaunchButton_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Launch Host File Editor</value> <comment>"Host File Editor" is a product name</comment> </data> <data name="Hosts_AdditionalLinesPosition.Header" xml:space="preserve"> <value>Position of additional content</value> </data> <data name="Hosts_AdditionalLinesPosition_Bottom.Content" xml:space="preserve"> <value>Bottom</value> </data> <data name="Hosts_AdditionalLinesPosition_Top.Content" xml:space="preserve"> <value>Top</value> </data> <data name="Hosts_Behavior_GroupSettings.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="Launch_Hosts.Content" xml:space="preserve"> <value>Launch Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="LearnMore_Hosts.Text" xml:space="preserve"> <value>Learn more about Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Oobe_Hosts.Description" xml:space="preserve"> <value>Hosts File Editor is a quick and simple utility for managing hosts file.</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Oobe_Hosts.Title" xml:space="preserve"> <value>Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Hosts_Toggle_LaunchAdministrator.Description" xml:space="preserve"> <value>Needs to be launched as administrator in order to make changes to the hosts file</value> </data> <data name="Hosts_Toggle_LaunchAdministrator.Header" xml:space="preserve"> <value>Launch as administrator</value> </data> <data name="ShortcutGuide_PressTimeForTaskbarIconShortcuts.Header" xml:space="preserve"> <value>Press duration before showing taskbar icon shortcuts (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="FileLocksmith.ModuleDescription" xml:space="preserve"> <value>A Windows shell extension to find out which processes are using the selected files and directories.</value> </data> <data name="FileLocksmith.ModuleTitle" xml:space="preserve"> <value>File Locksmith</value> </data> <data name="Shell_FileLocksmith.Content" xml:space="preserve"> <value>File Locksmith</value> <comment>Product name: Navigation view item name for FileLocksmith</comment> </data> <data name="FileLocksmith_Enable_FileLocksmith.Header" xml:space="preserve"> <value>Enable File Locksmith</value> <comment>File Locksmith is the name of the utility</comment> </data> <data name="FileLocksmith_Toggle_StandardContextMenu.Content" xml:space="preserve"> <value>Default and extended context menu</value> </data> <data name="FileLocksmith_Toggle_ExtendedContextMenu.Content" xml:space="preserve"> <value>Extended context menu only</value> </data> <data name="FileLocksmith_Toggle_ContextMenu.Header" xml:space="preserve"> <value>Show File Locksmith in</value> </data> <data name="FileLocksmith_ShellIntegration.Header" xml:space="preserve"> <value>Shell integration</value> <comment>This refers to directly integrating in with Windows</comment> </data> <data name="GPO_IsSettingForced.Title" xml:space="preserve"> <value>This setting is enforced by your System Administrator.</value> </data> <data name="Hosts_AdditionalLinesPosition.Description" xml:space="preserve"> <value>Additional content includes the file header and lines that can't parse</value> </data> <data name="TextExtractor_Languages.Header" xml:space="preserve"> <value>Preferred language</value> </data> <data name="Alternate_OOBE_AlwaysOnTop_Description.Text" xml:space="preserve"> <value>Pin a window so that:</value> </data> <data name="Alternate_OOBE_AlwaysOnTop_Title.Text" xml:space="preserve"> <value>Always On Top</value> </data> <data name="Alternate_OOBE_ColorPicker_Description.Text" xml:space="preserve"> <value>To pick a color:</value> </data> <data name="Alternate_OOBE_ColorPicker_Title.Text" xml:space="preserve"> <value>Color Picker</value> </data> <data name="Alternate_OOBE_Description.Text" xml:space="preserve"> <value>Here are a few shortcuts to get you started:</value> </data> <data name="Alternate_OOBE_FancyZones_Description.Text" xml:space="preserve"> <value>To open the FancyZones editor, press:</value> </data> <data name="Alternate_OOBE_FancyZones_Title.Text" xml:space="preserve"> <value>FancyZones</value> </data> <data name="Alternate_OOBE_Run_Description.Text" xml:space="preserve"> <value>Get access to your files and more:</value> </data> <data name="Alternate_OOBE_Run_Title.Text" xml:space="preserve"> <value>PowerToys Run</value> </data> <data name="General_Experimentation.Header" xml:space="preserve"> <value>Experimentation</value> </data> <data name="GeneralPage_EnableExperimentation.Description" xml:space="preserve"> <value>Note: Only Windows Insider builds may be selected for experimentation</value> </data> <data name="GeneralPage_EnableExperimentation.Header" xml:space="preserve"> <value>Allow experimentation with new features</value> </data> <data name="GPO_ExperimentationIsDisallowed.Title" xml:space="preserve"> <value>The system administrator has disabled experimentation.</value> </data> <data name="Shell_PastePlain.Content" xml:space="preserve"> <value>Paste As Plain Text</value> <comment>Product name: Navigation view item name for Paste as Plain Text</comment> </data> <data name="PastePlain.ModuleDescription" xml:space="preserve"> <value>Paste As Plain Text is a quick shortcut for pasting the text contents of your clipboard without formatting. Note: the formatted text in the clipboard is replaced with the unformatted text.</value> </data> <data name="PastePlain.ModuleTitle" xml:space="preserve"> <value>Paste As Plain Text</value> </data> <data name="PastePlain_Cancel" xml:space="preserve"> <value>cancel</value> </data> <data name="PastePlain_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Paste As Plain Text</value> </data> <data name="Oobe_PastePlain.Description" xml:space="preserve"> <value>Paste As Plain Text strips rich formatting from your clipboard data and pastes it as non-formatted text.</value> </data> <data name="Oobe_PastePlain.Title" xml:space="preserve"> <value>Paste As Plain Text</value> </data> <data name="Oobe_PastePlain_HowToUse.Text" xml:space="preserve"> <value>to paste your clipboard data as plain text. Note: this will replace the formatted text in your clipboard with the plain text.</value> </data> <data name="AllAppsTxt.Text" xml:space="preserve"> <value>All apps</value> </data> <data name="BackBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Back</value> </data> <data name="BackLabel.Text" xml:space="preserve"> <value>Back</value> </data> <data name="BugReportBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Bug report</value> </data> <data name="BugReportTooltip.Text" xml:space="preserve"> <value>Bug report</value> </data> <data name="DocsBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Documentation</value> </data> <data name="DocsTooltip.Text" xml:space="preserve"> <value>Documentation</value> </data> <data name="FZEditorString" xml:space="preserve"> <value>FancyZones Editor</value> <comment>Do not localize this string</comment> </data> <data name="MoreBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>More</value> </data> <data name="MoreLabel.Text" xml:space="preserve"> <value>More</value> </data> <data name="SettingsBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Settings</value> </data> <data name="SettingsTooltip.Text" xml:space="preserve"> <value>Settings</value> </data> <data name="ShortcutsTxt.Text" xml:space="preserve"> <value>Shortcuts</value> </data> <data name="UpdateAvailable.Title" xml:space="preserve"> <value>Update available</value> </data> <data name="FileExplorerPreview_Toggle_Monaco_Max_File_Size.Header" xml:space="preserve"> <value>Maximum file size to preview</value> <comment>Size refers to the disk space used by a file</comment> </data> <data name="FileExplorerPreview_Toggle_Monaco_Max_File_Size.Description" xml:space="preserve"> <value>The maximum size, in kilobytes, for files to be displayed. This is a safety mechanism to prevent loading large files into RAM.</value> <comment>"RAM" refers to random access memory; "size" refers to disk space; "bytes" refer to the measurement unit</comment> </data> <data name="RegistryPreview.ModuleDescription" xml:space="preserve"> <value>A quick little utility to visualize and edit complex Windows Registry files.</value> </data> <data name="RegistryPreview.ModuleTitle" xml:space="preserve"> <value>Registry Preview</value> </data> <data name="Shell_RegistryPreview.Content" xml:space="preserve"> <value>Registry Preview</value> <comment>Product name: Navigation view item name for Registry Preview</comment> </data> <data name="RegistryPreview_Enable_RegistryPreview.Header" xml:space="preserve"> <value>Enable Registry Preview</value> <comment>Registry Preview is the name of the utility</comment> </data> <data name="Oobe_RegistryPreview_HowToUse.Text" xml:space="preserve"> <value>In File Explorer, right-click a .REG file and select **Preview** from the context menu.</value> </data> <data name="Oobe_RegistryPreview_TipsAndTricks.Text" xml:space="preserve"> <value>You can preview or edit Registry files in File Explorer or by opening the app from the PowerToys launcher.</value> </data> <data name="Oobe_RegistryPreview.Description" xml:space="preserve"> <value>Registry Preview is a quick little utility to visualize and edit complex Windows Registry files.</value> </data> <data name="Oobe_RegistryPreview.Title" xml:space="preserve"> <value>Registry Preview</value> <comment>Do not localize this string</comment> </data> <data name="LearnMore_RegistryPreview.Text" xml:space="preserve"> <value>Learn more about Registry Preview</value> <comment>Registry Preview is a product name, do not loc</comment> </data> <data name="Launch_RegistryPreview.Content" xml:space="preserve"> <value>Launch Registry Preview</value> <comment>"Registry Preview" is the name of the utility</comment> </data> <data name="MouseUtils_MouseJump.Description" xml:space="preserve"> <value>Quickly move the mouse pointer long distances.</value> <comment>"Mouse Jump" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_MouseJump.Header" xml:space="preserve"> <value>Mouse Jump</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_MouseJump_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to turn on or off this mode</value> </data> <data name="MouseUtils_MouseJump_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MouseUtils_Enable_MouseJump.Header" xml:space="preserve"> <value>Enable Mouse Jump</value> <comment>"Mouse Jump" is the name of the utility.</comment> </data> <data name="GPO_AutoDownloadUpdatesIsDisabled.Title" xml:space="preserve"> <value>The system administrator has disabled the automatic download of updates.</value> </data> <data name="Hosts_Toggle_LoopbackDuplicates.Description" xml:space="preserve"> <value>127.0.0.1, ::1, ...</value> <comment>"127.0.0.1 and ::1" are well known loopback addresses, do not loc</comment> </data> <data name="Hosts_Toggle_LoopbackDuplicates.Header" xml:space="preserve"> <value>Consider loopback addresses as duplicates</value> </data> <data name="RegistryPreview_Launch_GroupSettings.Header" xml:space="preserve"> <value>Launch</value> </data> <data name="RegistryPreview_LaunchButton_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Launch Registry Preview</value> </data> <data name="RegistryPreview_LaunchButtonControl.Header" xml:space="preserve"> <value>Launch Registry Preview</value> </data> <data name="RegistryPreview_DefaultRegApp.Header" xml:space="preserve"> <value>Default app</value> </data> <data name="RegistryPreview_DefaultRegApp.Description" xml:space="preserve"> <value>Make Registry Preview default app for opening .reg files</value> <comment>Registry Preview is app name. Do not localize.</comment> </data> <data name="PastePlain_ShortcutWarning.Title" xml:space="preserve"> <value>Using this shortcut may prevent non-text paste actions (e.g. images, files) or built-in paste plain text actions in other applications from functioning.</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize.Header" xml:space="preserve"> <value>Thumbnail Size</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Description_Prefix.Text" xml:space="preserve"> <value>Constrain thumbnail image size to a maximum of</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Description_Suffix.Text" xml:space="preserve"> <value>pixels</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Edit_Height.Header" xml:space="preserve"> <value>Maximum height (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Edit_Width.Header" xml:space="preserve"> <value>Maximum width (px)</value> <comment>px = pixels</comment> </data> <data name="Oobe_Peek.Description" xml:space="preserve"> <value>A lightning fast file preview feature for Windows.</value> </data> <data name="Oobe_Peek.Title" xml:space="preserve"> <value>Peek</value> </data> <data name="Oobe_Peek_HowToUse.Text" xml:space="preserve"> <value>to preview the file that's currently selected in File Explorer.</value> </data> <data name="MWB_PCNameLabel.PlaceholderText" xml:space="preserve"> <value>Device name</value> </data> <data name="MWB_SecurityKeyLabel.PlaceholderText" xml:space="preserve"> <value>Security key</value> </data> <data name="Hosts_Encoding.Description" xml:space="preserve"> <value>Choose the encoding of the hosts file</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Hosts_Encoding.Header" xml:space="preserve"> <value>Encoding</value> </data> <data name="Hosts_Encoding_Utf8.Content" xml:space="preserve"> <value>UTF-8</value> </data> <data name="Hosts_Encoding_Utf8Bom.Content" xml:space="preserve"> <value>UTF-8 with BOM</value> </data> <data name="MouseUtils_MouseHighlighter_AlwaysColor.Header" xml:space="preserve"> <value>Always highlight color</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsAutoHide.Content" xml:space="preserve"> <value>Automatically hide crosshairs when the mouse pointer is hidden</value> </data> <data name="MouseUtils_AutoActivate.Content" xml:space="preserve"> <value>Automatically activate on utility startup</value> </data> <data name="Run_FindMorePlugins.Text" xml:space="preserve"> <value>Find more plugins</value> </data> <data name="Run_PluginUseFindMorePlugins.Content" xml:space="preserve"> <value>Find more plugins</value> </data> <data name="Run_SomePluginsAreGpoManaged.Title" xml:space="preserve"> <value>The system administrator is managing the enabled state of some plugins.</value> </data> <data name="AlwaysOnTop_FrameOpacity.Header" xml:space="preserve"> <value>Opacity (%)</value> </data> <data name="MouseUtils_FindMyMouse_ActivationCustomizedShortcut.Content" xml:space="preserve"> <value>Custom shortcut</value> </data> <data name="MouseUtils_FindMyMouse_ActivationDoubleRightControlPress.Content" xml:space="preserve"> <value>Press Right Control twice</value> <comment>Right control is the physical key on the keyboard.</comment> </data> <data name="MouseUtils_FindMyMouse_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to turn on or off this mode</value> </data> <data name="MouseUtils_FindMyMouse_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="SettingsWindow_AdminTitle" xml:space="preserve"> <value>Administrator: PowerToys Settings</value> <comment>Title of the settings window when running as administrator</comment> </data> <data name="DashboardTitle.Text" xml:space="preserve"> <value>Dashboard</value> </data> <data name="Shell_Dashboard.Content" xml:space="preserve"> <value>Dashboard</value> </data> <data name="GPO_IsSettingForcedText.Text" xml:space="preserve"> <value>This setting is enforced by your System Administrator.</value> </data> <data name="DisabledModules.Text" xml:space="preserve"> <value>Disabled modules</value> </data> <data name="EnabledModules.Text" xml:space="preserve"> <value>Enabled modules</value> </data> </root>
donlaci
8c22f0c48540793452b70d913b2a6a719c881a33
1f936df3ebce73b726ed11c9fa38fd477b4b0fbd
Not sure if this is the best short description? I don't have better suggestion though
stefansjfw
359
microsoft/PowerToys
29,023
[Settings] Adding a Dashboard Panel
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request Adding a new Dashboard panel to the settings app. It contains the active modules with a brief description, activation shortcut if present, launch button if reasonable and a quick link button to the module's settings page. The new dashboard panel contains a list of all the modules as well, where the user can toggle the modules' enabled/disabled state. ![Dashboard](https://github.com/microsoft/PowerToys/assets/9866362/a773ff5b-0321-4eb3-9c3d-b5b4df9a25f5) <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [X] **Closes:** #26816 - [ ] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected - [ ] **Tests:** Added/updated and all pass - [ ] **Localization:** All end user facing strings can be localized - [ ] **Dev docs:** Added/updated - [ ] **New binaries:** Added on the required places - [ ] [JSON for signing](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ESRPSigning_core.json) for new binaries - [ ] [WXS for installer](https://github.com/microsoft/PowerToys/blob/main/installer/PowerToysSetup/Product.wxs) for new binaries and localization folder - [ ] [YML for CI pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ci/templates/build-powertoys-steps.yml) for new test projects - [ ] [YML for signed pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/release.yml) - [ ] **Documentation updated:** If checked, please file a pull request on [our docs repo](https://github.com/MicrosoftDocs/windows-uwp/tree/docs/hub/powertoys) and link it here: #xxx <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed Tested locally
null
2023-10-04 18:35:54+00:00
2023-10-20 12:23:25+00:00
src/settings-ui/Settings.UI/Strings/en-us/Resources.resw
<?xml version="1.0" encoding="utf-8"?> <root> <!-- Microsoft ResX Schema Version 2.0 The primary goals of this format is to allow a simple XML format that is mostly human readable. The generation and parsing of the various data types are done through the TypeConverter classes associated with the data types. Example: ... ado.net/XML headers & schema ... <resheader name="resmimetype">text/microsoft-resx</resheader> <resheader name="version">2.0</resheader> <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader> <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader> <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data> <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data> <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64"> <value>[base64 mime encoded serialized .NET Framework object]</value> </data> <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value> <comment>This is a comment</comment> </data> There are any number of "resheader" rows that contain simple name/value pairs. Each data row contains a name, and value. The row also contains a type or mimetype. Type corresponds to a .NET class that support text/value conversion through the TypeConverter architecture. Classes that don't support this are serialized and stored with the mimetype set. The mimetype is used for serialized objects, and tells the ResXResourceReader how to depersist the object. This is currently not extensible. For a given mimetype the value must be set accordingly: Note - application/x-microsoft.net.object.binary.base64 is the format that the ResXResourceWriter will generate, however the reader can read any of the formats listed below. mimetype: application/x-microsoft.net.object.binary.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.soap.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Soap.SoapFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.bytearray.base64 value : The object must be serialized into a byte array : using a System.ComponentModel.TypeConverter : and then encoded with base64 encoding. --> <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> <xsd:import namespace="http://www.w3.org/XML/1998/namespace" /> <xsd:element name="root" msdata:IsDataSet="true"> <xsd:complexType> <xsd:choice maxOccurs="unbounded"> <xsd:element name="metadata"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" /> </xsd:sequence> <xsd:attribute name="name" use="required" type="xsd:string" /> <xsd:attribute name="type" type="xsd:string" /> <xsd:attribute name="mimetype" type="xsd:string" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="assembly"> <xsd:complexType> <xsd:attribute name="alias" type="xsd:string" /> <xsd:attribute name="name" type="xsd:string" /> </xsd:complexType> </xsd:element> <xsd:element name="data"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" /> <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="resheader"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" /> </xsd:complexType> </xsd:element> </xsd:choice> </xsd:complexType> </xsd:element> </xsd:schema> <resheader name="resmimetype"> <value>text/microsoft-resx</value> </resheader> <resheader name="version"> <value>2.0</value> </resheader> <resheader name="reader"> <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <resheader name="writer"> <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <data name="Attribution_Rooler.Text" xml:space="preserve"> <value>Inspired by Rooler</value> <comment>Rooler is a name of the tool.</comment> </data> <data name="Shell_VideoConference.Content" xml:space="preserve"> <value>Video Conference Mute</value> <comment>Navigation view item name for Video Conference</comment> </data> <data name="Shell_MeasureTool.Content" xml:space="preserve"> <value>Screen Ruler</value> <comment>Product name: Navigation view item name for Screen Ruler</comment> </data> <data name="MeasureTool.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="MeasureTool.ModuleDescription" xml:space="preserve"> <value>Screen Ruler is a quick and easy way to measure pixels on your screen.</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool.ModuleTitle" xml:space="preserve"> <value>Screen Ruler</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool_ActivationSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="MeasureTool_Settings.Header" xml:space="preserve"> <value>Behavior</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MeasureTool_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to bring up the command bar</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool_DefaultMeasureStyle.Header" xml:space="preserve"> <value>Default measure style</value> </data> <data name="MeasureTool_DefaultMeasureStyle.Description" xml:space="preserve"> <value>The utility will start having the selected style activated</value> </data> <data name="MeasureTool_DefaultMeasureStyle_None.Content" xml:space="preserve"> <value>None</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Bounds.Content" xml:space="preserve"> <value>Bounds</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Spacing.Content" xml:space="preserve"> <value>Spacing</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Horizontal_Spacing.Content" xml:space="preserve"> <value>Horizontal spacing</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Vertical_Spacing.Content" xml:space="preserve"> <value>Vertical spacing</value> </data> <data name="MeasureTool_UnitsOfMeasure.Header" xml:space="preserve"> <value>Units of measurement</value> </data> <data name="MeasureTool_UnitsOfMeasure_Pixels.Content" xml:space="preserve"> <value>Pixels</value> </data> <data name="MeasureTool_UnitsOfMeasure_Inches.Content" xml:space="preserve"> <value>Inches</value> </data> <data name="MeasureTool_UnitsOfMeasure_Centimeters.Content" xml:space="preserve"> <value>Centimeters</value> </data> <data name="MeasureTool_PixelTolerance.Header" xml:space="preserve"> <value>Pixel tolerance for edge detection</value> </data> <data name="MeasureTool_MeasureCrossColor.Header" xml:space="preserve"> <value>Line color</value> </data> <data name="MeasureTool_ContinuousCapture.Header" xml:space="preserve"> <value>Capture screen continuously during measuring</value> </data> <data name="MeasureTool_ContinuousCapture.Description" xml:space="preserve"> <value>Refresh screen contexts in real-time instead of making a screenshot once</value> </data> <data name="MeasureTool_PerColorChannelEdgeDetection.Header" xml:space="preserve"> <value>Per color channel edge detection</value> </data> <data name="MeasureTool_PerColorChannelEdgeDetection.Description" xml:space="preserve"> <value>If enabled, test that all color channels are within a tolerance distance from each other. Otherwise, check that the sum of all color channels differences is smaller than the tolerance.</value> </data> <data name="MeasureTool_DrawFeetOnCross.Header" xml:space="preserve"> <value>Draw feet on cross</value> </data> <data name="MeasureTool_DrawFeetOnCross.Description" xml:space="preserve"> <value>Adds feet to the end of cross lines</value> </data> <data name="MeasureTool_EnableMeasureTool.Header" xml:space="preserve"> <value>Enable Screen Ruler</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MouseWithoutBorders_ActivationSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="MouseWithoutBorders_DeviceLayoutSettings.Header" xml:space="preserve"> <value>Device layout</value> </data> <data name="MouseWithoutBorders_DeviceLayoutSettings.Description" xml:space="preserve"> <value>Drag and drop a machine to rearrange the order.</value> </data> <data name="MouseWithoutBorders_CannotDragDropAsAdmin.Title" xml:space="preserve"> <value>It is not possible to use drag and drop while running PowerToys elevated. As a workaround, please restart PowerToys without elevation to edit the device layout.</value> </data> <data name="MouseWithoutBorders_KeySettings.Header" xml:space="preserve"> <value>Encryption key</value> </data> <data name="MouseWithoutBorders_SecurityKey.Header" xml:space="preserve"> <value>Security key</value> </data> <data name="MouseWithoutBorders_SecurityKey.Description" xml:space="preserve"> <value>The key must be auto generated in one machine by clicking on New Key, then typed in other machines</value> </data> <data name="MouseWithoutBorders_NewKey.Content" xml:space="preserve"> <value>New key</value> </data> <data name="MouseWithoutBorders_CopyMachineName.Text" xml:space="preserve"> <value>Copy to clipboard</value> </data> <data name="MouseWithoutBorders_ReconnectButton.Text" xml:space="preserve"> <value>Refresh connections</value> </data> <data name="MouseWithoutBorders_ReconnectTooltip.Text" xml:space="preserve"> <value>Reestablishes connections with other devices if you are experiencing issues.</value> </data> <data name="MouseWithoutBorders_ThisMachineNameLabel.Header" xml:space="preserve"> <value>Host name of this device</value> </data> <data name="MouseWithoutBorders_Connect.Content" xml:space="preserve"> <value>Connect</value> </data> <data name="MouseWithoutBorders_UninstallService.Header" xml:space="preserve"> <value>Uninstall service</value> </data> <data name="MouseWithoutBorders_UninstallService.Description" xml:space="preserve"> <value>Removes the service from the computer. Needs to run as administrator.</value> </data> <data name="MouseWithoutBorders_Settings.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="MouseWithoutBorders_TroubleShooting.Header" xml:space="preserve"> <value>Troubleshooting</value> </data> <data name="MouseWithoutBorders_AddFirewallRuleButtonControl.Header" xml:space="preserve"> <value>Add a firewall rule for Mouse Without Borders</value> <comment>"Mouse Without Borders" is a product name</comment> </data> <data name="MouseWithoutBorders_AddFirewallRuleButtonControl.Description" xml:space="preserve"> <value>Adding a firewall rule might help solve connection issues.</value> </data> <data name="MouseWithoutBorders_RunAsAdminText.Title" xml:space="preserve"> <value>You need to run as administrator to modify this setting.</value> </data> <data name="MouseWithoutBorders_ServiceUserUninstallWarning.Title" xml:space="preserve"> <value>If PowerToys is installed as a user, uninstalling/upgrading may require the Mouse Without Borders service to be removed manually later.</value> </data> <data name="MouseWithoutBorders_ServiceSettings.Header" xml:space="preserve"> <value>Service</value> </data> <data name="MouseWithoutBorders_Toggle_Enable.Header" xml:space="preserve"> <value>Enable Mouse Without Borders</value> </data> <data name="MouseWithoutBorders.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="MouseWithoutBorders.ModuleDescription" xml:space="preserve"> <value>Mouse Without Borders is a quick and easy way to move your cursor across multiple devices.</value> <comment>"Mouse Without Borders" is the name of the utility</comment> </data> <data name="MouseWithoutBorders.ModuleTitle" xml:space="preserve"> <value>Mouse Without Borders</value> <comment>"Mouse Without Borders" is the name of the utility</comment> </data> <data name="MouseWithoutBorders_UseService.Header" xml:space="preserve"> <value>Use Service</value> </data> <data name="MouseWithoutBorders_UseService.Description" xml:space="preserve"> <value>Runs in service mode, that allows MWB to control remote machines when they're locked. Also allows control of system and administrator applications.</value> </data> <data name="MouseWithoutBorders_MatrixOneRow.Header" xml:space="preserve"> <value>Devices in a single row</value> </data> <data name="MouseWithoutBorders_MatrixOneRow.Description" xml:space="preserve"> <value>Sets whether the devices are aligned on a single row. A two by two matrix is considered otherwise.</value> </data> <data name="MouseWithoutBorders_WrapMouse.Header" xml:space="preserve"> <value>Wrap mouse</value> </data> <data name="MouseWithoutBorders_WrapMouse.Description" xml:space="preserve"> <value>Move control back to the first machine when mouse moves past the last one.</value> </data> <data name="MouseWithoutBorders_ShareClipboard.Header" xml:space="preserve"> <value>Share clipboard</value> </data> <data name="MouseWithoutBorders_TransferFile.Header" xml:space="preserve"> <value>Transfer file</value> </data> <data name="MouseWithoutBorders_HideMouseAtScreenEdge.Header" xml:space="preserve"> <value>Hide mouse at the screen edge</value> </data> <data name="MouseWithoutBorders_DrawMouseCursor.Header" xml:space="preserve"> <value>Draw mouse cursor</value> </data> <data name="MouseWithoutBorders_ValidateRemoteMachineIP.Header" xml:space="preserve"> <value>Validate remote machine IP</value> </data> <data name="MouseWithoutBorders_SameSubnetOnly.Header" xml:space="preserve"> <value>Same subnet only</value> </data> <data name="MouseWithoutBorders_BlockScreenSaverOnOtherMachines.Header" xml:space="preserve"> <value>Block screen saver on other machines</value> </data> <data name="MouseWithoutBorders_MoveMouseRelatively.Header" xml:space="preserve"> <value>Move mouse relatively</value> </data> <data name="MouseWithoutBorders_BlockMouseAtScreenCorners.Header" xml:space="preserve"> <value>Block mouse at screen corners</value> </data> <data name="MouseWithoutBorders_ShowClipboardAndNetworkStatusMessages.Header" xml:space="preserve"> <value>Show clipboard and network status messages</value> </data> <data name="MouseWithoutBorders_ShowOriginalUI.Header" xml:space="preserve"> <value>Show the original Mouse Without Borders UI</value> </data> <data name="MouseWithoutBorders_ShowOriginalUI.Description" xml:space="preserve"> <value>This is accessible from the system tray and requires a restart.</value> </data> <data name="MouseWithoutBorders_ShareClipboard.Description" xml:space="preserve"> <value>If share clipboard stops working, Ctrl+Alt+Del then Esc may solve the problem.</value> </data> <data name="MouseWithoutBorders_TransferFile.Description" xml:space="preserve"> <value>If a file (&lt;100MB) is copied, it will be transferred to the remote machine clipboard.</value> </data> <data name="MouseWithoutBorders_HideMouseAtScreenEdge.Description" xml:space="preserve"> <value>Hide the mouse cursor at the top edge of the screen when switching to other machine. This option also steals the focus from any full-screen app to ensure the keyboard input is redirected.</value> </data> <data name="MouseWithoutBorders_DrawMouseCursor.Description" xml:space="preserve"> <value>Mouse cursor may not be visible in Windows 10 and later versions of Windows when there is no physical mouse attached.</value> </data> <data name="MouseWithoutBorders_ValidateRemoteMachineIP.Description" xml:space="preserve"> <value>Reverse DNS lookup to validate machine IP Address.</value> </data> <data name="MouseWithoutBorders_SameSubnetOnly.Description" xml:space="preserve"> <value>Only connect to machines in the same intranet NNN.NNN.*.* (only works when both machines have IPv4 enabled)</value> </data> <data name="MouseWithoutBorders_IPAddressMapping_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: MyLaptop 192.168.0.24</value> <comment>Don't translate MyLaptop</comment> </data> <data name="MouseWithoutBorders_IPAddressMapping.Header" xml:space="preserve"> <value>IP address mapping</value> </data> <data name="MouseWithoutBorders_IPAddressMapping.Description" xml:space="preserve"> <value>Resolve machine's IP address using manually entered mappings below.</value> </data> <data name="MouseWithoutBorders_BlockScreenSaverOnOtherMachines.Description" xml:space="preserve"> <value>Prevent screen saver from starting on other machines when user is actively working on this machine.</value> </data> <data name="MouseWithoutBorders_MoveMouseRelatively.Description" xml:space="preserve"> <value>Use this option when remote machine's monitor settings are different, or remote machine has multiple monitors.</value> </data> <data name="MouseWithoutBorders_BlockMouseAtScreenCorners.Description" xml:space="preserve"> <value>To avoid accident machine-switch at screen corners.</value> </data> <data name="MouseWithoutBorders_ShowClipboardAndNetworkStatusMessages.Description" xml:space="preserve"> <value>Show clipboard activities and network status in system tray notifications</value> </data> <data name="MouseWithoutBorders_KeyboardShortcuts_Group.Header" xml:space="preserve"> <value>Keyboard shortcuts</value> <comment>keyboard is the hardware peripheral</comment> </data> <data name="MouseWithoutBorders_AdvancedSettings_Group.Header" xml:space="preserve"> <value>Advanced Settings</value> </data> <data name="MouseWithoutBorders_EasyMouseOption.Header" xml:space="preserve"> <value>Easy Mouse: move between machines by moving the mouse pointer to the screen edges.</value> </data> <data name="MouseWithoutBorders_EasyMouseOption.Description" xml:space="preserve"> <value>Can also be set to move only when pressing Shift or Ctrl.</value> <comment>Shift and Ctrl are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_EasyMouseOption_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_EasyMouseOption_Enabled.Content" xml:space="preserve"> <value>Enabled</value> </data> <data name="MouseWithoutBorders_EasyMouseOption_Ctrl.Content" xml:space="preserve"> <value>Ctrl</value> <comment>This is the Ctrl keyboard key</comment> </data> <data name="MouseWithoutBorders_EasyMouseOption_Shift.Content" xml:space="preserve"> <value>Shift</value> <comment>This is the Shift keyboard key</comment> </data> <data name="MouseWithoutBorders_LockMachinesShortcut.Header" xml:space="preserve"> <value>Shortcut to lock all machines.</value> </data> <data name="MouseWithoutBorders_LockMachinesShortcut.Description" xml:space="preserve"> <value>Hit this hotkey twice to lock all machines. Note: Only the machines which have the same shortcut configured will be locked.</value> </data> <data name="MouseWithoutBorders_ToggleEasyMouseShortcut.Header" xml:space="preserve"> <value>Shortcut to toggle Easy Mouse.</value> <comment>Ctrl and Alt are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_ToggleEasyMouseShortcut.Description" xml:space="preserve"> <value>Only works if EasyMouse is set to Enabled or Disabled.</value> </data> <data name="MouseWithoutBorders_ToggleEasyMouseShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut.Header" xml:space="preserve"> <value>Shortcut to switch between machines. Ctrl+Alt+:</value> <comment>Ctrl and Alt are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut.Description" xml:space="preserve"> <value>Click on Ctrl+Alt+ the chosen option to switch between machines.</value> <comment>Ctrl and Alt are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut_F1.Content" xml:space="preserve"> <value>F1, F2, F3, F4</value> <comment>Don't localize. These are keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut_1.Content" xml:space="preserve"> <value>1, 2, 3, 4</value> <comment>Don't localize. These are keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_LockMachinesShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_ReconnectShortcut.Header" xml:space="preserve"> <value>Shortcut to try reconnecting</value> </data> <data name="MouseWithoutBorders_ReconnectShortcut.Description" xml:space="preserve"> <value>Just in case the connection is lost for any reason.</value> </data> <data name="MouseWithoutBorders_ReconnectShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut.Header" xml:space="preserve"> <value>Shortcut to switch to multiple machine mode.</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut.Description" xml:space="preserve"> <value>Allows controlling all computers at once.</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut_Ctrl3.Content" xml:space="preserve"> <value>Ctrl three times</value> <comment>This is the Ctrl keyboard key</comment> </data> <data name="VideoConference_Enable.Header" xml:space="preserve"> <value>Enable Video Conference Mute</value> </data> <data name="VideoConference.ModuleDescription" xml:space="preserve"> <value>Video Conference Mute is a quick and easy way to do a global "mute" of both your microphone and webcam. Disabling this module or closing PowerToys will unmute the microphone and camera.</value> </data> <data name="VideoConference_CameraAndMicrophoneMuteHotkeyControl_Header.Header" xml:space="preserve"> <value>Mute camera &amp; microphone</value> </data> <data name="VideoConference_MicrophoneMuteHotkeyControl_Header.Header" xml:space="preserve"> <value>Mute microphone</value> </data> <data name="VideoConference_MicrophonePushToTalkHotkeyControl_Header.Header" xml:space="preserve"> <value>Push to talk</value> </data> <data name="VideoConference_CameraMuteHotkeyControl_Header.Header" xml:space="preserve"> <value>Mute camera</value> </data> <data name="VideoConference_SelectedCamera.Header" xml:space="preserve"> <value>Selected camera</value> </data> <data name="VideoConference_SelectedMicrophone.Header" xml:space="preserve"> <value>Selected microphone</value> </data> <data name="VideoConference_PushToReverse.Header" xml:space="preserve"> <value>Push to reverse</value> </data> <data name="VideoConference_PushToReverse.Description" xml:space="preserve"> <value>If enabled, allows both push to talk and push to mute, depending on microphone state</value> </data> <data name="VideoConference_CameraOverlayImagePathHeader.Header" xml:space="preserve"> <value>Image displayed when camera is muted</value> </data> <data name="VideoConference_ToolbarPosition.Header" xml:space="preserve"> <value>Toolbar position</value> </data> <data name="VideoConference_ToolbarPosition_TopCenter.Content" xml:space="preserve"> <value>Top center</value> </data> <data name="VideoConference_ToolbarPosition_TopLeftCorner.Content" xml:space="preserve"> <value>Top left corner</value> </data> <data name="VideoConference_ToolbarPosition_TopRightCorner.Content" xml:space="preserve"> <value>Top right corner</value> </data> <data name="VideoConference_ToolbarPosition_BottomLeftCorner.Content" xml:space="preserve"> <value>Bottom left corner</value> </data> <data name="VideoConference_ToolbarPosition_BottomCenter.Content" xml:space="preserve"> <value>Bottom center</value> </data> <data name="VideoConference_ToolbarPosition_BottomRightCorner.Content" xml:space="preserve"> <value>Bottom right corner</value> </data> <data name="VideoConference_ToolbarMonitor.Header" xml:space="preserve"> <value>Show toolbar on</value> </data> <data name="VideoConference_ToolbarMonitor_Main.Content" xml:space="preserve"> <value>Main monitor</value> </data> <data name="VideoConference_ToolbarMonitor_UnderCursor.Content" xml:space="preserve"> <value>Monitor under cursor</value> </data> <data name="VideoConference_ToolbarMonitor_ActiveWindow.Content" xml:space="preserve"> <value>Active window monitor</value> </data> <data name="VideoConference_ToolbarMonitor_All.Content" xml:space="preserve"> <value>All monitors</value> </data> <data name="VideoConference_ToolbarHide.Header" xml:space="preserve"> <value>Hide toolbar</value> </data> <data name="VideoConference_ToolbarHideMuted.Content" xml:space="preserve"> <value>When both camera and microphone are muted</value> </data> <data name="VideoConference_ToolbarHideNever.Content" xml:space="preserve"> <value>Never</value> </data> <data name="VideoConference_ToolbarHideUnmuted.Content" xml:space="preserve"> <value>When both camera and microphone are unmuted</value> </data> <data name="VideoConference_ToolbarHideTimeout.Content" xml:space="preserve"> <value>After timeout</value> </data> <data name="VideoConference.ModuleTitle" xml:space="preserve"> <value>Video Conference Mute</value> </data> <data name="VideoConference_Camera.Header" xml:space="preserve"> <value>Camera</value> </data> <data name="VideoConference_Camera.Description" xml:space="preserve"> <value>To use this feature, make sure to select PowerToys VideoConference Mute as your camera source in your apps.</value> </data> <data name="VideoConference_Microphone.Header" xml:space="preserve"> <value>Microphone</value> </data> <data name="VideoConference_Toolbar.Header" xml:space="preserve"> <value>Toolbar</value> </data> <data name="VideoConference_Behavior.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="VideoConference_StartupAction.Header" xml:space="preserve"> <value>Startup action</value> </data> <data name="VideoConference_StartupActionNothing.Content" xml:space="preserve"> <value>Nothing</value> </data> <data name="VideoConference_StartupActionUnmute.Content" xml:space="preserve"> <value>Unmute</value> </data> <data name="VideoConference_StartupActionMute.Content" xml:space="preserve"> <value>Mute</value> </data> <data name="VideoConference_Shortcuts.Header" xml:space="preserve"> <value>Shortcuts</value> </data> <data name="VideoConference_CameraOverlayImageAlt.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Camera overlay image preview</value> </data> <data name="VideoConference_CameraOverlayImageBrowse.Content" xml:space="preserve"> <value>Browse</value> </data> <data name="VideoConference_CameraOverlayImageClear.Content" xml:space="preserve"> <value>Clear</value> </data> <data name="Shell_General.Content" xml:space="preserve"> <value>General</value> <comment>Navigation view item name for General</comment> </data> <data name="Shell_Awake.Content" xml:space="preserve"> <value>Awake</value> <comment>Product name: Navigation view item name for Awake</comment> </data> <data name="Shell_PowerLauncher.Content" xml:space="preserve"> <value>PowerToys Run</value> <comment>Product name: Navigation view item name for PowerToys Run</comment> </data> <data name="Shell_PowerRename.Content" xml:space="preserve"> <value>PowerRename</value> <comment>Product name: Navigation view item name for PowerRename</comment> </data> <data name="Shell_ShortcutGuide.Content" xml:space="preserve"> <value>Shortcut Guide</value> <comment>Product name: Navigation view item name for Shortcut Guide</comment> </data> <data name="Shell_PowerPreview.Content" xml:space="preserve"> <value>File Explorer add-ons</value> <comment>Product name: Navigation view item name for File Explorer. Please use File Explorer as in the context of File Explorer in Windows</comment> </data> <data name="Shell_FancyZones.Content" xml:space="preserve"> <value>FancyZones</value> <comment>Product name: Navigation view item name for FancyZones</comment> </data> <data name="Shell_ImageResizer.Content" xml:space="preserve"> <value>Image Resizer</value> <comment>Product name: Navigation view item name for Image Resizer</comment> </data> <data name="Shell_ColorPicker.Content" xml:space="preserve"> <value>Color Picker</value> <comment>Product name: Navigation view item name for Color Picker</comment> </data> <data name="Shell_KeyboardManager.Content" xml:space="preserve"> <value>Keyboard Manager</value> <comment>Product name: Navigation view item name for Keyboard Manager</comment> </data> <data name="Shell_MouseWithoutBorders.Content" xml:space="preserve"> <value>Mouse Without Borders</value> <comment>Product name: Navigation view item name for Mouse Without Borders</comment> </data> <data name="Shell_MouseUtilities.Content" xml:space="preserve"> <value>Mouse utilities</value> <comment>Product name: Navigation view item name for Mouse utilities</comment> </data> <data name="Shell_NavigationMenu_Announce_Collapse" xml:space="preserve"> <value>Navigation closed</value> <comment>Accessibility announcement when the navigation pane collapses</comment> </data> <data name="Shell_NavigationMenu_Announce_Open" xml:space="preserve"> <value>Navigation opened</value> <comment>Accessibility announcement when the navigation pane opens</comment> </data> <data name="KeyboardManager_ConfigHeader.Text" xml:space="preserve"> <value>Current configuration</value> <comment>Keyboard Manager current configuration header</comment> </data> <data name="KeyboardManager.ModuleDescription" xml:space="preserve"> <value>Reconfigure your keyboard by remapping keys and shortcuts</value> <comment>Keyboard Manager page description</comment> </data> <data name="KeyboardManager_EnableToggle.Header" xml:space="preserve"> <value>Enable Keyboard Manager</value> <comment>Keyboard Manager enable toggle header. Do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="KeyboardManager_ProfileDescription.Text" xml:space="preserve"> <value>Select the profile to display the active key remap and shortcuts</value> <comment>Keyboard Manager configuration dropdown description</comment> </data> <data name="KeyboardManager_RemapKeyboardButton.Header" xml:space="preserve"> <value>Remap a key</value> <comment>Keyboard Manager remap keyboard button content</comment> </data> <data name="KeyboardManager_Keys.Header" xml:space="preserve"> <value>Keys</value> <comment>Keyboard Manager remap keyboard header</comment> </data> <data name="KeyboardManager_RemapShortcutsButton.Header" xml:space="preserve"> <value>Remap a shortcut</value> <comment>Keyboard Manager remap shortcuts button</comment> </data> <data name="KeyboardManager_Shortcuts.Header" xml:space="preserve"> <value>Shortcuts</value> <comment>Keyboard Manager remap keyboard header</comment> </data> <data name="KeyboardManager_All_Apps_Description" xml:space="preserve"> <value>All Apps</value> <comment>Should be the same as EditShortcuts_AllApps from keyboard manager editor</comment> </data> <data name="Shortcuts.Header" xml:space="preserve"> <value>Shortcuts</value> </data> <data name="Shortcut.Header" xml:space="preserve"> <value>Shortcut</value> </data> <data name="RemapKeysList.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Current Key Remappings</value> </data> <data name="RemapShortcutsList.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Current Shortcut Remappings</value> </data> <data name="KeyboardManager_RemappedKeysListItem.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Key Remapping</value> <comment>key as in keyboard key</comment> </data> <data name="KeyboardManager_RemappedShortcutsListItem.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Shortcut Remapping</value> </data> <data name="KeyboardManager_RemappedTo.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Remapped to</value> </data> <data name="KeyboardManager_ShortcutRemappedTo.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Remapped to</value> </data> <data name="KeyboardManager_TargetApp.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>For Target Application</value> <comment>What computer application would this be for</comment> </data> <data name="KeyboardManager_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Keyboard Manager</value> <comment>do not loc, product name</comment> </data> <data name="ColorPicker.ModuleDescription" xml:space="preserve"> <value>Quick and simple system-wide color picker.</value> </data> <data name="ColorPicker_EnableColorPicker.Header" xml:space="preserve"> <value>Enable Color Picker</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="ColorPicker_ChangeCursor.Content" xml:space="preserve"> <value>Change cursor when picking a color</value> </data> <data name="PowerLauncher.ModuleDescription" xml:space="preserve"> <value>A quick launcher that has additional capabilities without sacrificing performance.</value> </data> <data name="PowerLauncher_EnablePowerLauncher.Header" xml:space="preserve"> <value>Enable PowerToys Run</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="PowerLauncher_SearchResults.Header" xml:space="preserve"> <value>Search &amp; results</value> </data> <data name="PowerLauncher_SearchResultPreference.Header" xml:space="preserve"> <value>Search result preference</value> </data> <data name="PowerLauncher_UsePinyin.Header" xml:space="preserve"> <value>Use Pinyin</value> </data> <data name="PowerLauncher_UsePinyin.Description" xml:space="preserve"> <value>Experimental: Use Pinyin on the search query. May not work for every plugin.</value> </data> <data name="PowerLauncher_SearchResultPreference_MostRecentlyUsed" xml:space="preserve"> <value>Most recently used</value> </data> <data name="PowerLauncher_SearchResultPreference_AlphabeticalOrder" xml:space="preserve"> <value>Alphabetical order</value> </data> <data name="PowerLauncher_SearchResultPreference_RunningProcessesOpenApplications" xml:space="preserve"> <value>Running processes/open applications</value> </data> <data name="PowerLauncher_SearchTypePreference.Header" xml:space="preserve"> <value>Search type preference</value> </data> <data name="PowerLauncher_SearchTypePreference_ApplicationName" xml:space="preserve"> <value>Application name</value> </data> <data name="PowerLauncher_SearchTypePreference_StringInApplication" xml:space="preserve"> <value>A string that is contained in the application</value> </data> <data name="PowerLauncher_SearchTypePreference_ExecutableName" xml:space="preserve"> <value>Executable name</value> </data> <data name="PowerLauncher_MaximumNumberOfResults.Header" xml:space="preserve"> <value>Number of results shown before scrolling</value> </data> <data name="PowerLauncher_OpenPowerLauncher.Header" xml:space="preserve"> <value>Open PowerToys Run</value> </data> <data name="PowerLauncher_OpenFileLocation.Header" xml:space="preserve"> <value>Open file location</value> </data> <data name="PowerLauncher_CopyPathLocation.Header" xml:space="preserve"> <value>Copy path location</value> </data> <data name="PowerLauncher_OpenConsole.Header" xml:space="preserve"> <value>Open console</value> <comment>console refers to Windows command prompt</comment> </data> <data name="PowerLauncher_OverrideWinRKey.Content" xml:space="preserve"> <value>Override Win+R shortcut</value> </data> <data name="PowerLauncher_OverrideWinSKey.Content" xml:space="preserve"> <value>Override Win+S shortcut</value> </data> <data name="PowerLauncher_IgnoreHotkeysInFullScreen.Content" xml:space="preserve"> <value>Ignore shortcuts in fullscreen mode</value> </data> <data name="PowerLauncher_UseCentralizedKeyboardHook.Header" xml:space="preserve"> <value>Use centralized keyboard hook</value> </data> <data name="PowerLauncher_UseCentralizedKeyboardHook.Description" xml:space="preserve"> <value>Try this if there are issues with the shortcut (PowerToys Run might not get focus when triggered from an elevated window)</value> </data> <data name="PowerLauncher_ClearInputOnLaunch.Content" xml:space="preserve"> <value>Clear the previous query on launch</value> </data> <data name="PowerLauncher_TabSelectsContextButtons.Header" xml:space="preserve"> <value>Tab through context buttons</value> </data> <data name="PowerLauncher_TabSelectsContextButtons.Description" xml:space="preserve"> <value>Pressing tab will first select through the available context buttons of the current selection before moving onto the next result</value> </data> <data name="PowerLauncher_GenerateThumbnailsFromFiles.Header" xml:space="preserve"> <value>Generate thumbnails from files</value> </data> <data name="PowerLauncher_GenerateThumbnailsFromFiles.Description" xml:space="preserve"> <value>Results will try to generate thumbnails for files. Disabling this setting may increase stability and speed</value> </data> <data name="PowerLauncher_SearchQueryResultsWithDelay.Header" xml:space="preserve"> <value>Input Smoothing</value> <comment>This is about adding a delay to wait for more input before executing a search</comment> </data> <data name="PowerLauncher_SearchQueryResultsWithDelay.Description" xml:space="preserve"> <value>Wait for more input before searching. This reduces interface jumpiness and system load.</value> </data> <data name="PowerLauncher_FastSearchInputDelayMs.Header" xml:space="preserve"> <value>Immediate plugins</value> </data> <data name="PowerLauncher_FastSearchInputDelayMs.Description" xml:space="preserve"> <value>Affects the plugins that make the UI wait for their results by this amount. Recommended: 30-50 ms.</value> </data> <data name="PowerLauncher_SlowSearchInputDelayMs.Header" xml:space="preserve"> <value>Background execution plugins</value> </data> <data name="PowerLauncher_SlowSearchInputDelayMs.Description" xml:space="preserve"> <value>Affects the plugins that execute in the background by this amount. Recommended: 100-150 ms.</value> </data> <data name="PowerLauncher_SearchInputDelayMs.Header" xml:space="preserve"> <value>Fast plugin throttle (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="KeyboardManager_KeysMappingLayoutRightHeader.Text" xml:space="preserve"> <value>To:</value> <comment>Keyboard Manager mapping keys view right header</comment> </data> <data name="Appearance_GroupSettings.Text" xml:space="preserve"> <value>Appearance</value> </data> <data name="Fancyzones_ImageHyperlinkToDocs.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>FancyZones windows</value> <comment>do not loc the Product name</comment> </data> <data name="FancyZones.ModuleDescription" xml:space="preserve"> <value>Create window layouts to help make multi-tasking easy.</value> <comment>windows refers to application windows</comment> </data> <data name="FancyZones_DisplayOrWorkAreaChangeMoveWindowsCheckBoxControl.Content" xml:space="preserve"> <value>Keep windows in their zones when the screen resolution or work area changes</value> <comment>windows refers to application windows</comment> </data> <data name="FancyZones_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable FancyZones</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="FancyZones_ExcludeApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="FancyZones_ExcludeApps.Description" xml:space="preserve"> <value>Excludes an application from snapping to zones and will only react to Windows Snap - add one application name per line</value> </data> <data name="FancyZones_HighlightOpacity.Header" xml:space="preserve"> <value>Opacity (%)</value> </data> <data name="FancyZones_HotkeyEditorControl.Header" xml:space="preserve"> <value>Open layout editor</value> <comment>Shortcut to launch the FancyZones layout editor application</comment> </data> <data name="FancyZones_WindowSwitching_GroupSettings.Header" xml:space="preserve"> <value>Switch between windows in the current zone</value> </data> <data name="FancyZones_HotkeyNextTabControl.Header" xml:space="preserve"> <value>Next window</value> </data> <data name="FancyZones_HotkeyPrevTabControl.Header" xml:space="preserve"> <value>Previous window</value> </data> <data name="SettingsPage_SetShortcut.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Shortcut setting</value> </data> <data name="SettingsPage_SetShortcut_Glyph.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Information Symbol</value> </data> <data name="FancyZones_LaunchEditorButtonControl.Header" xml:space="preserve"> <value>Launch layout editor</value> <comment>launches the FancyZones layout editor application</comment> </data> <data name="FancyZones_LaunchEditorButtonControl.Description" xml:space="preserve"> <value>Set and manage your layouts</value> <comment>launches the FancyZones layout editor application</comment> </data> <data name="FancyZones_MakeDraggedWindowTransparentCheckBoxControl.Content" xml:space="preserve"> <value>Make dragged window transparent</value> </data> <data name="FancyZones_MouseDragCheckBoxControl_Header.Content" xml:space="preserve"> <value>Use a non-primary mouse button to toggle zone activation</value> </data> <data name="FancyZones_MouseMiddleClickSpanningMultipleZonesCheckBoxControl_Header.Content" xml:space="preserve"> <value>Use middle-click mouse button to toggle multiple zones spanning</value> </data> <data name="FancyZones_MoveWindowsAcrossAllMonitorsCheckBoxControl.Content" xml:space="preserve"> <value>Move windows between zones across all monitors</value> </data> <data name="FancyZones_OverrideSnapHotkeys.Header" xml:space="preserve"> <value>Override Windows Snap</value> </data> <data name="FancyZones_OverrideSnapHotkeys.Description" xml:space="preserve"> <value>This overrides the Windows Snap shortcut (Win + arrow) to move windows between zones</value> </data> <data name="FancyZones_ShiftDragCheckBoxControl_Header.Content" xml:space="preserve"> <value>Hold Shift key to activate zones while dragging</value> </data> <data name="FancyZones_ShowZonesOnAllMonitorsCheckBoxControl.Content" xml:space="preserve"> <value>Show zones on all monitors while dragging a window</value> </data> <data name="FancyZones_AppLastZoneMoveWindows.Content" xml:space="preserve"> <value>Move newly created windows to their last known zone</value> <comment>windows refers to application windows</comment> </data> <data name="FancyZones_OpenWindowOnActiveMonitor.Content" xml:space="preserve"> <value>Move newly created windows to the current active monitor (Experimental)</value> </data> <data name="FancyZones_UseCursorPosEditorStartupScreen.Header" xml:space="preserve"> <value>Launch editor on the display</value> </data> <data name="FancyZones_UseCursorPosEditorStartupScreen.Description" xml:space="preserve"> <value>When using multiple displays</value> </data> <data name="FancyZones_LaunchPositionMouse.Content" xml:space="preserve"> <value>Where the mouse pointer is</value> </data> <data name="FancyZones_LaunchPositionScreen.Content" xml:space="preserve"> <value>With active focus</value> </data> <data name="FancyZones_ZoneBehavior_GroupSettings.Header" xml:space="preserve"> <value>Zone behavior</value> </data> <data name="FancyZones_ZoneBehavior_GroupSettings.Description" xml:space="preserve"> <value>Manage how zones behave when using FancyZones</value> </data> <data name="FancyZones_Zones.Header" xml:space="preserve"> <value>Zones</value> </data> <data name="FancyZones_ZoneHighlightColor.Header" xml:space="preserve"> <value>Highlight color</value> </data> <data name="FancyZones_ZoneSetChangeMoveWindows.Content" xml:space="preserve"> <value>During zone layout changes, windows assigned to a zone will match new size/positions</value> </data> <data name="AttributionTitle.Text" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="General.ModuleTitle" xml:space="preserve"> <value>General</value> </data> <data name="GeneralPage_CheckForUpdates.Content" xml:space="preserve"> <value>Check for updates</value> </data> <data name="General_SettingsBackupAndRestoreLocationText.Header" xml:space="preserve"> <value>Location</value> </data> <data name="General_SettingsBackupAndRestore_ButtonBackup.Content" xml:space="preserve"> <value>Backup</value> </data> <data name="General_SettingsBackupInfo_FileNameHeader.Text" xml:space="preserve"> <value>File name:</value> </data> <data name="General_SettingsBackupAndRestore_LinkRefresh.Text" xml:space="preserve"> <value>Refresh</value> </data> <data name="General_SettingsBackupAndRestore_ButtonRestore.Content" xml:space="preserve"> <value>Restore</value> </data> <data name="General_SettingsBackupAndRestore_ButtonSelectLocation.Text" xml:space="preserve"> <value>Select folder</value> </data> <data name="GeneralPage_UpdateNow.Content" xml:space="preserve"> <value>Update now</value> </data> <data name="GeneralPage_PrivacyStatement_URL.Text" xml:space="preserve"> <value>Privacy statement</value> </data> <data name="GeneralPage_ReportAbug.Text" xml:space="preserve"> <value>Report a bug</value> <comment>Report an issue inside powertoys</comment> </data> <data name="GeneralPage_RequestAFeature_URL.Text" xml:space="preserve"> <value>Request a feature</value> <comment>Tell our team what we should build</comment> </data> <data name="GeneralPage_RestartAsAdmin_Button.Content" xml:space="preserve"> <value>Restart PowerToys as administrator</value> <comment>running PowerToys as a higher level user, account is typically referred to as an admin / administrator</comment> </data> <data name="GeneralPage_RunAtStartUp.Header" xml:space="preserve"> <value>Run at startup</value> </data> <data name="GeneralPage_RunAtStartUp.Description" xml:space="preserve"> <value>PowerToys will launch automatically</value> </data> <data name="PowerRename.ModuleDescription" xml:space="preserve"> <value>A Windows Shell extension for more advanced bulk renaming using search &amp; replace or regular expressions.</value> </data> <data name="PowerRename_ShellIntegration.Header" xml:space="preserve"> <value>Shell integration</value> <comment>This refers to directly integrating in with Windows</comment> </data> <data name="PowerRename_Toggle_Enable.Header" xml:space="preserve"> <value>Enable PowerRename</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="RadioButtons_Name_Theme.Text" xml:space="preserve"> <value>Settings theme</value> </data> <data name="PowerRename_Toggle_HideIcon.Content" xml:space="preserve"> <value>Hide icon in context menu</value> </data> <data name="PowerRename_Toggle_ContextMenu.Header" xml:space="preserve"> <value>Show PowerRename in</value> </data> <data name="PowerRename_Toggle_StandardContextMenu.Content" xml:space="preserve"> <value>Default and extended context menu</value> </data> <data name="PowerRename_Toggle_ExtendedContextMenu.Content" xml:space="preserve"> <value>Extended context menu only</value> </data> <data name="ExtendedContextMenuInfo.Title" xml:space="preserve"> <value>Press Shift + right-click on files to open the extended context menu</value> </data> <data name="PowerRename_Toggle_MaxDispListNum.Header" xml:space="preserve"> <value>Maximum number of items</value> </data> <data name="PowerRename_Toggle_RestoreFlagsOnLaunch.Header" xml:space="preserve"> <value>Show recently used strings</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_MD.Header" xml:space="preserve"> <value>Markdown</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_MD.Description" xml:space="preserve"> <value>.md, .markdown, .mdown, .mkdn, .mkd, .mdwn, .mdtxt, .mdtext</value> <comment>File extensions, should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_Monaco.Header" xml:space="preserve"> <value>Source code files (Monaco)</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_Monaco.Description" xml:space="preserve"> <value>.cpp, .py, .json, .xml, .csproj, ...</value> <comment>File extensions should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_SVG.Header" xml:space="preserve"> <value>Scalable Vector Graphics</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_SVG.Description" xml:space="preserve"> <value>.svg</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_Preview_SVG_Color_Mode.Header" xml:space="preserve"> <value>Color mode</value> </data> <data name="FileExplorerPreview_Preview_SVG_Color_Mode_Default.Content" xml:space="preserve"> <value>Windows default</value> </data> <data name="FileExplorerPreview_Preview_SVG_Color_Solid_Color.Content" xml:space="preserve"> <value>Solid color</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade.Content" xml:space="preserve"> <value>Checkered pattern</value> </data> <data name="FileExplorerPreview_Preview_SVG_Background_Color.Header" xml:space="preserve"> <value>Color</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_Mode.Header" xml:space="preserve"> <value>Checkered shade</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_1.Content" xml:space="preserve"> <value>Light</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_2.Content" xml:space="preserve"> <value>Medium</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_3.Content" xml:space="preserve"> <value>Dark</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_PDF.Header" xml:space="preserve"> <value>Portable Document Format</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_PDF.Description" xml:space="preserve"> <value>.pdf</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_SVG.Header" xml:space="preserve"> <value>Scalable Vector Graphics</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_SVG.Description" xml:space="preserve"> <value>.svg</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_STL.Header" xml:space="preserve"> <value>Stereolithography</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_STL.Description" xml:space="preserve"> <value>.stl</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_Color_Thumbnail_STL.Header" xml:space="preserve"> <value>Color</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_PDF.Header" xml:space="preserve"> <value>Portable Document Format</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_PDF.Description" xml:space="preserve"> <value>.pdf</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview.ModuleDescription" xml:space="preserve"> <value>These settings allow you to manage your Windows File Explorer custom preview handlers.</value> </data> <data name="PowerRename_AutoCompleteHeader.Header" xml:space="preserve"> <value>Auto-complete</value> </data> <data name="OpenSource_Notice.Text" xml:space="preserve"> <value>Open-source notice</value> </data> <data name="PowerRename_Toggle_AutoComplete.Header" xml:space="preserve"> <value>Enable auto-complete for the search &amp; replace fields</value> </data> <data name="FancyZones_BorderColor.Header" xml:space="preserve"> <value>Border color</value> </data> <data name="FancyZones_InActiveColor.Header" xml:space="preserve"> <value>Inactive color</value> </data> <data name="ShortcutGuide.ModuleDescription" xml:space="preserve"> <value>Shows a help overlay with Windows shortcuts.</value> </data> <data name="ShortcutGuide_PressTimeForGlobalWindowsShortcuts.Header" xml:space="preserve"> <value>Press duration before showing global Windows shortcuts (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="ShortcutGuide_ActivationMethod.Header" xml:space="preserve"> <value>Activation method</value> </data> <data name="ShortcutGuide_ActivationMethod.Description" xml:space="preserve"> <value>Use a shortcut or press the Windows key for some time to activate</value> </data> <data name="Radio_ShortcutGuide_ActivationMethod_CustomizedShortcut.Content" xml:space="preserve"> <value>Custom shortcut</value> </data> <data name="Radio_ShortcutGuide_ActivationMethod_LongPressWindowsKey.Content" xml:space="preserve"> <value>Hold down Windows key</value> </data> <data name="ShortcutGuide_PressWinKeyWarning.Title" xml:space="preserve"> <value>In some edge cases Shortcut Guide might not function correctly when using this activation method</value> </data> <data name="Appearance_Behavior.Header" xml:space="preserve"> <value>Appearance &amp; behavior</value> </data> <data name="General_SettingsBackupAndRestoreTitle.Header" xml:space="preserve"> <value>Backup &amp; restore</value> </data> <data name="General_SettingsBackupAndRestore.Header" xml:space="preserve"> <value>Backup and restore your settings</value> </data> <data name="General_SettingsBackupAndRestore.Description" xml:space="preserve"> <value>PowerToys will restart automatically if needed</value> </data> <data name="ShortcutGuide_Enable.Header" xml:space="preserve"> <value>Enable Shortcut Guide</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="ShortcutGuide_OverlayOpacity.Header" xml:space="preserve"> <value>Background opacity (%)</value> </data> <data name="ShortcutGuide_DisabledApps.Header" xml:space="preserve"> <value>Exclude apps</value> </data> <data name="ShortcutGuide_DisabledApps.Description" xml:space="preserve"> <value>Turns off Shortcut Guide when these applications have focus - add one application name per line</value> </data> <data name="ShortcutGuide_DisabledApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> <comment>Don't translate outlook.exe</comment> </data> <data name="ImageResizer_CustomSizes.Header" xml:space="preserve"> <value>Image sizes</value> </data> <data name="ImageResizer_Presets.Header" xml:space="preserve"> <value>Presets</value> </data> <data name="ImageResizer_Presets.Description" xml:space="preserve"> <value>Manage preset sizes that can be used in the editor</value> </data> <data name="ImageResizer_FilenameFormatHeader.Description" xml:space="preserve"> <value>This format is used as the filename for resized images</value> </data> <data name="ImageResizer.ModuleDescription" xml:space="preserve"> <value>Lets you resize images by right-clicking.</value> </data> <data name="ImageResizer_EnableToggle.Header" xml:space="preserve"> <value>Enable Image Resizer</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="ImagesSizesListView.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Image Size</value> </data> <data name="ImageResizer_Configurations.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Configurations</value> </data> <data name="ImageResizer_Name.Header" xml:space="preserve"> <value>Name</value> </data> <data name="ImageResizer_Fit.Header" xml:space="preserve"> <value>Fit</value> </data> <data name="ImageResizer_Width.Header" xml:space="preserve"> <value>Width</value> </data> <data name="ImageResizer_Height.Header" xml:space="preserve"> <value>Height</value> </data> <data name="ImageResizer_Size.Header" xml:space="preserve"> <value>Unit</value> </data> <data name="RemoveButton.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Remove</value> <comment>Removes a user defined setting group for Image Resizer</comment> </data> <data name="RemoveItem.Text" xml:space="preserve"> <value>Delete</value> </data> <data name="ImageResizer_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Image Resizer</value> </data> <data name="ImageResizer_AddSizeButton.Content" xml:space="preserve"> <value>Add new size</value> </data> <data name="ImageResizer_SaveSizeButton.Label" xml:space="preserve"> <value>Save sizes</value> </data> <data name="ImageResizer_Encoding.Header" xml:space="preserve"> <value>JPEG quality level (%)</value> </data> <data name="ImageResizer_PNGInterlacing.Header" xml:space="preserve"> <value>PNG interlacing</value> </data> <data name="ImageResizer_TIFFCompression.Header" xml:space="preserve"> <value>TIFF compression</value> </data> <data name="File.Header" xml:space="preserve"> <value>File</value> <comment>as in a computer file</comment> </data> <data name="Default.Content" xml:space="preserve"> <value>Default</value> </data> <data name="ImageResizer_ENCODER_TIFF_CCITT3.Content" xml:space="preserve"> <value>CCITT3</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_CCITT4.Content" xml:space="preserve"> <value>CCITT4</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_Default.Content" xml:space="preserve"> <value>Default</value> </data> <data name="ImageResizer_ENCODER_TIFF_LZW.Content" xml:space="preserve"> <value>LZW</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_None.Content" xml:space="preserve"> <value>None</value> </data> <data name="ImageResizer_ENCODER_TIFF_RLE.Content" xml:space="preserve"> <value>RLE</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_Zip.Content" xml:space="preserve"> <value>Zip</value> <comment>do not loc</comment> </data> <data name="ImageResizer_FallbackEncoder_BMP.Content" xml:space="preserve"> <value>BMP encoder</value> </data> <data name="ImageResizer_FallbackEncoder_GIF.Content" xml:space="preserve"> <value>GIF encoder</value> </data> <data name="ImageResizer_FallbackEncoder_JPEG.Content" xml:space="preserve"> <value>JPEG encoder</value> </data> <data name="ImageResizer_FallbackEncoder_PNG.Content" xml:space="preserve"> <value>PNG encoder</value> </data> <data name="ImageResizer_FallbackEncoder_TIFF.Content" xml:space="preserve"> <value>TIFF encoder</value> </data> <data name="ImageResizer_FallbackEncoder_WMPhoto.Content" xml:space="preserve"> <value>WMPhoto encoder</value> </data> <data name="ImageResizer_Sizes_Fit_Fill.Content" xml:space="preserve"> <value>Fill</value> <comment>Refers to filling an image into a certain size. It could overflow</comment> </data> <data name="ImageResizer_Sizes_Fit_Fill_ThirdPersonSingular.Text" xml:space="preserve"> <value>Fill</value> <comment>Refers to filling an image into a certain size. It could overflow</comment> </data> <data name="ImageResizer_Sizes_Fit_Fit.Content" xml:space="preserve"> <value>Fit</value> <comment>Refers to fitting an image into a certain size. It won't overflow</comment> </data> <data name="ImageResizer_Sizes_Fit_Stretch.Content" xml:space="preserve"> <value>Stretch</value> <comment>Refers to stretching an image into a certain size. Won't overflow but could distort.</comment> </data> <data name="ImageResizer_Sizes_Units_CM.Content" xml:space="preserve"> <value>Centimeters</value> </data> <data name="ImageResizer_Sizes_Units_Inches.Content" xml:space="preserve"> <value>Inches</value> </data> <data name="ImageResizer_Sizes_Units_Percent.Content" xml:space="preserve"> <value>Percent</value> </data> <data name="ImageResizer_Sizes_Units_Pixels.Content" xml:space="preserve"> <value>Pixels</value> </data> <data name="Off.Content" xml:space="preserve"> <value>Off</value> </data> <data name="On.Content" xml:space="preserve"> <value>On</value> </data> <data name="GeneralPage_ToggleSwitch_AlwaysRunElevated_Link.Content" xml:space="preserve"> <value>Learn more about administrator mode</value> </data> <data name="GeneralPage_ToggleSwitch_AutoDownloadUpdates.Header" xml:space="preserve"> <value>Download updates automatically</value> </data> <data name="GeneralPage_ToggleSwitch_AutoDownloadUpdates.Description" xml:space="preserve"> <value>Except on metered connections</value> </data> <data name="GeneralPage_ToggleSwitch_RunningAsAdminNote.Text" xml:space="preserve"> <value>Currently running as administrator</value> </data> <data name="GeneralSettings_AlwaysRunAsAdminText.Header" xml:space="preserve"> <value>Always run as administrator</value> </data> <data name="GeneralSettings_AlwaysRunAsAdminText.Description" xml:space="preserve"> <value>You need to run as administrator to use this setting</value> </data> <data name="GeneralSettings_RunningAsUserText" xml:space="preserve"> <value>Running as user</value> </data> <data name="GeneralSettings_RunningAsAdminText" xml:space="preserve"> <value>Running as administrator</value> </data> <data name="FancyZones.ModuleTitle" xml:space="preserve"> <value>FancyZones</value> </data> <data name="FileExplorerPreview.ModuleTitle" xml:space="preserve"> <value>File Explorer</value> </data> <data name="FileExplorerPreview_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>File Explorer</value> <comment>Use same translation as Windows does for File Explorer</comment> </data> <data name="ImageResizer.ModuleTitle" xml:space="preserve"> <value>Image Resizer</value> </data> <data name="KeyboardManager.ModuleTitle" xml:space="preserve"> <value>Keyboard Manager</value> </data> <data name="ColorPicker.ModuleTitle" xml:space="preserve"> <value>Color Picker</value> </data> <data name="PowerLauncher.ModuleTitle" xml:space="preserve"> <value>PowerToys Run</value> </data> <data name="PowerToys_Run_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>PowerToys Run</value> </data> <data name="PowerRename.ModuleTitle" xml:space="preserve"> <value>PowerRename</value> <comment>do not loc the product name</comment> </data> <data name="PowerRename_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>PowerRename</value> <comment>do not loc</comment> </data> <data name="ShortcutGuide.ModuleTitle" xml:space="preserve"> <value>Shortcut Guide</value> </data> <data name="Shortcut_Guide_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Shortcut Guide</value> </data> <data name="General_Repository.Text" xml:space="preserve"> <value>GitHub repository</value> </data> <data name="General_Version.Header" xml:space="preserve"> <value>Version</value> </data> <data name="General_VersionLastChecked.Text" xml:space="preserve"> <value>Last checked: </value> </data> <data name="General_SettingsBackupInfo_DateHeader.Text" xml:space="preserve"> <value>Created at:</value> </data> <data name="General_SettingsBackupAndRestoreStatusInfo.Header" xml:space="preserve"> <value>Backup information</value> </data> <data name="General_SettingsBackupInfo_SourceHeader.Text" xml:space="preserve"> <value>Source machine:</value> </data> <data name="General_SettingsBackupInfo_StatusHeader.Text" xml:space="preserve"> <value>Status:</value> </data> <data name="General_Version.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Version</value> </data> <data name="Admin_mode.Header" xml:space="preserve"> <value>Administrator mode</value> </data> <data name="FancyZones_RestoreSize.Content" xml:space="preserve"> <value>Restore the original size of windows when unsnapping</value> </data> <data name="ImageResizer_FallBackEncoderText.Header" xml:space="preserve"> <value>Fallback encoder</value> </data> <data name="ImageResizer_FileFormatDescription.Text" xml:space="preserve"> <value>The following parameters can be used:</value> </data> <data name="ImageResizer_FilenameFormatHeader.Header" xml:space="preserve"> <value>Filename format</value> </data> <data name="ImageResizer_FileModifiedDate.Header" xml:space="preserve"> <value>File modified timestamp</value> </data> <data name="ImageResizer_FileModifiedDate.Description" xml:space="preserve"> <value>Used as the 'modified timestamp' in the file properties</value> </data> <data name="ImageResizer_UseOriginalDate.Content" xml:space="preserve"> <value>Original file timestamp</value> </data> <data name="ImageResizer_UseResizeDate.Content" xml:space="preserve"> <value>Timestamp of resize action</value> </data> <data name="Encoding.Header" xml:space="preserve"> <value>Encoding</value> </data> <data name="KeyboardManager_RemapKeyboardButton.Description" xml:space="preserve"> <value>Remap keys to other keys or shortcuts</value> </data> <data name="KeyboardManager_RemapShortcutsButton.Description" xml:space="preserve"> <value>Remap shortcuts to other shortcuts or keys for all or specific applications</value> </data> <data name="General.ModuleDescription" xml:space="preserve"> <value>Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. Made with 💗 by Microsoft and the PowerToys community.</value> <comment>Windows refers to the OS</comment> </data> <data name="FancyZones_SpanZonesAcrossMonitors.Header" xml:space="preserve"> <value>Allow zones to span across monitors</value> </data> <data name="ImageResizer_Formatting_ActualHeight.Text" xml:space="preserve"> <value>Actual height</value> </data> <data name="ImageResizer_Formatting_ActualWidth.Text" xml:space="preserve"> <value>Actual width</value> </data> <data name="ImageResizer_Formatting_Filename.Text" xml:space="preserve"> <value>Original filename</value> </data> <data name="ImageResizer_Formatting_SelectedHeight.Text" xml:space="preserve"> <value>Selected height</value> </data> <data name="ImageResizer_Formatting_SelectedWidth.Text" xml:space="preserve"> <value>Selected width</value> </data> <data name="ImageResizer_Formatting_Sizename.Text" xml:space="preserve"> <value>Size name</value> </data> <data name="FancyZones_MoveWindowsBasedOnPositionCheckBoxControl.Content" xml:space="preserve"> <value>Move windows based on their position</value> <comment>Windows refers to application windows</comment> </data> <data name="GeneralSettings_NewVersionIsAvailable" xml:space="preserve"> <value>New update available</value> </data> <data name="GeneralSettings_VersionIsLatest" xml:space="preserve"> <value>PowerToys is up to date.</value> </data> <data name="FileExplorerPreview_IconThumbnail_GroupSettings.Header" xml:space="preserve"> <value>Thumbnail icon Preview</value> </data> <data name="FileExplorerPreview_IconThumbnail_GroupSettings.Description" xml:space="preserve"> <value>Select the file types for which thumbnail previews must be rendered.</value> </data> <data name="FileExplorerPreview_PreviewPane.Header" xml:space="preserve"> <value>Preview Pane</value> </data> <data name="FileExplorerPreview_PreviewPane.Description" xml:space="preserve"> <value>Select the file types which must be rendered in the Preview Pane. Ensure that Preview Pane is open by toggling the view with Alt + P in File Explorer.</value> <comment>Preview Pane and File Explorer are app/feature names in Windows. 'Alt + P' is a shortcut</comment> </data> <data name="FileExplorerPreview_RunAsAdminRequired.Title" xml:space="preserve"> <value>You need to run as administrator to modify these settings.</value> </data> <data name="FileExplorerPreview_RebootRequired.Title" xml:space="preserve"> <value>A reboot may be required for changes to these settings to take effect</value> </data> <data name="FileExplorerPreview_PreviewHandlerOutlookIncompatibility.Title" xml:space="preserve"> <value>Enabling the preview handlers will override other preview handlers already installed - there have been reports of incompatibility between Outlook and the PDF Preview Handler.</value> <comment>Outlook is the name of a Microsoft product</comment> </data> <data name="FileExplorerPreview_ThumbnailsMightNotAppearOnRemoteFolders.Title" xml:space="preserve"> <value>Thumbnails might not appear on paths managed by cloud storage solutions like OneDrive, since these solutions may get their thumbnails from the cloud instead of generating them locally.</value> <comment>OneDrive is the name of a Microsoft product</comment> </data> <data name="FancyZones_ExcludeApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> <comment>Don't translate outlook.exe</comment> </data> <data name="ImageResizer_FilenameFormatPlaceholder.PlaceholderText" xml:space="preserve"> <value>Example: %1 (%2)</value> </data> <data name="ImageResizer_FilenameParameters.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Filename parameters</value> </data> <data name="Radio_Theme_Dark.Content" xml:space="preserve"> <value>Dark</value> <comment>Dark refers to color, not weight</comment> </data> <data name="Radio_Theme_Light.Content" xml:space="preserve"> <value>Light</value> <comment>Light refers to color, not weight</comment> </data> <data name="Radio_Theme_Default.Content" xml:space="preserve"> <value>Windows default</value> <comment>Windows refers to the Operating system</comment> </data> <data name="Windows_Color_Settings.Content" xml:space="preserve"> <value>Windows color settings</value> <comment>Windows refers to the Operating system</comment> </data> <data name="ColorPicker_CopiedColorRepresentation.Header" xml:space="preserve"> <value>Default color format</value> </data> <data name="ColorPickerFirst.Content" xml:space="preserve"> <value>Pick a color and open editor</value> </data> <data name="EditorFirst.Content" xml:space="preserve"> <value>Open editor</value> </data> <data name="ColorPickerOnly.Content" xml:space="preserve"> <value>Only pick a color</value> </data> <data name="ColorPicker_ActivationAction.Header" xml:space="preserve"> <value>Activation behavior</value> </data> <data name="ColorFormats.Header" xml:space="preserve"> <value>Picker behavior</value> </data> <data name="ColorPicker_CopiedColorRepresentation.Description" xml:space="preserve"> <value>This format will be copied to your clipboard</value> </data> <data name="KBM_KeysCannotBeRemapped.Text" xml:space="preserve"> <value>Learn more about remapping limitations</value> <comment>This is a link that will discuss what is and is not possible for Keyboard manager to remap</comment> </data> <data name="FancyZones_Editor_GroupSettings.Header" xml:space="preserve"> <value>Editor</value> <comment>refers to the FancyZone editor</comment> </data> <data name="FancyZones_WindowBehavior_GroupSettings.Header" xml:space="preserve"> <value>Window behavior</value> </data> <data name="FancyZones_WindowBehavior_GroupSettings.Description" xml:space="preserve"> <value>Manage how windows behave when using FancyZones</value> </data> <data name="FancyZones_Windows.Header" xml:space="preserve"> <value>Windows</value> <comment>Do translate: refers to a set of application windows, not the product name</comment> </data> <data name="PowerRename_BehaviorHeader.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="PowerRename_Toggle_UseBoostLib.Header" xml:space="preserve"> <value>Use Boost library</value> <comment>Boost is a product name, should not be translated</comment> </data> <data name="PowerRename_Toggle_UseBoostLib.Description" xml:space="preserve"> <value>Provides extended features but may use different regex syntax</value> <comment>Boost is a product name, should not be translated</comment> </data> <data name="MadeWithOssLove.Text" xml:space="preserve"> <value>Made with 💗 by Microsoft and the PowerToys community.</value> </data> <data name="ColorPicker_ColorFormats.Header" xml:space="preserve"> <value>Color formats</value> </data> <data name="ColorPicker_ColorFormats.Description" xml:space="preserve"> <value>Configure the color formats (edit, delete, hide, reorder them)</value> </data> <data name="MoveUp.Text" xml:space="preserve"> <value>Move up</value> </data> <data name="MoveDown.Text" xml:space="preserve"> <value>Move down</value> </data> <data name="ColorPickerAddNewFormat.Content" xml:space="preserve"> <value>Add new format</value> </data> <data name="NewColorFormat.Header" xml:space="preserve"> <value>Format</value> </data> <data name="NewColorName.Header" xml:space="preserve"> <value>Name</value> </data> <data name="AddCustomColorFormat" xml:space="preserve"> <value>Add custom color format</value> </data> <data name="ColorFormatSave" xml:space="preserve"> <value>Save</value> </data> <data name="EditCustomColorFormat" xml:space="preserve"> <value>Edit custom color format</value> </data> <data name="ColorFormatUpdate" xml:space="preserve"> <value>Update</value> </data> <data name="CustomColorFormatDefaultName" xml:space="preserve"> <value>My Format</value> </data> <data name="ColorFormatDialog.SecondaryButtonText" xml:space="preserve"> <value>Cancel</value> </data> <data name="ColorFormatEditorHelpline1.Text" xml:space="preserve"> <value>The following parameters can be used:</value> </data> <data name="Help_red" xml:space="preserve"> <value>red</value> </data> <data name="Help_green" xml:space="preserve"> <value>green</value> </data> <data name="Help_blue" xml:space="preserve"> <value>blue</value> </data> <data name="Help_alpha" xml:space="preserve"> <value>alpha</value> </data> <data name="Help_cyan" xml:space="preserve"> <value>cyan</value> </data> <data name="Help_magenta" xml:space="preserve"> <value>magenta</value> </data> <data name="Help_yellow" xml:space="preserve"> <value>yellow</value> </data> <data name="Help_black_key" xml:space="preserve"> <value>black key</value> </data> <data name="Help_hue" xml:space="preserve"> <value>hue</value> </data> <data name="Help_hueNat" xml:space="preserve"> <value>hue (natural)</value> </data> <data name="Help_saturationI" xml:space="preserve"> <value>saturation (HSI)</value> </data> <data name="Help_saturationL" xml:space="preserve"> <value>saturation (HSL)</value> </data> <data name="Help_saturationB" xml:space="preserve"> <value>saturation (HSB)</value> </data> <data name="Help_brightness" xml:space="preserve"> <value>brightness</value> </data> <data name="Help_intensity" xml:space="preserve"> <value>intensity</value> </data> <data name="Help_lightnessNat" xml:space="preserve"> <value>lightness (nat)</value> </data> <data name="Help_lightnessCIE" xml:space="preserve"> <value>lightness (CIE)</value> </data> <data name="Help_value" xml:space="preserve"> <value>value</value> </data> <data name="Help_whiteness" xml:space="preserve"> <value>whiteness</value> </data> <data name="Help_blackness" xml:space="preserve"> <value>blackness</value> </data> <data name="Help_chromaticityA" xml:space="preserve"> <value>chromaticityA</value> </data> <data name="Help_chromaticityB" xml:space="preserve"> <value>chromaticityB</value> </data> <data name="Help_X_value" xml:space="preserve"> <value>X value</value> </data> <data name="Help_Y_value" xml:space="preserve"> <value>Y value</value> </data> <data name="Help_Z_value" xml:space="preserve"> <value>Z value</value> </data> <data name="Help_decimal_value_RGB" xml:space="preserve"> <value>decimal value (RGB)</value> </data> <data name="Help_decimal_value_BGR" xml:space="preserve"> <value>decimal value (BGR)</value> </data> <data name="Help_color_name" xml:space="preserve"> <value>color name</value> </data> <data name="ColorFormatEditorHelpline2.Text" xml:space="preserve"> <value>The red, green, blue and alpha values can be formatted to the following formats:</value> </data> <data name="Help_byte" xml:space="preserve"> <value>byte value (default)</value> </data> <data name="Help_hexL1" xml:space="preserve"> <value>hex lowercase one digit</value> </data> <data name="Help_hexU1" xml:space="preserve"> <value>hex uppercase one digit</value> </data> <data name="Help_hexL2" xml:space="preserve"> <value>hex lowercase two digits</value> </data> <data name="Help_hexU2" xml:space="preserve"> <value>hex uppercase two digits</value> </data> <data name="Help_floatWith" xml:space="preserve"> <value>float with leading zero</value> </data> <data name="Help_floatWithout" xml:space="preserve"> <value>float without leading zero</value> </data> <data name="ColorFormatEditorHelpline3.Text" xml:space="preserve"> <value>Example: %ReX means red value in hex uppercase two digits format.</value> </data> <data name="ColorPicker_ShowColorName.Header" xml:space="preserve"> <value>Show color name</value> </data> <data name="ColorPicker_ShowColorName.Description" xml:space="preserve"> <value>This will show the name of the color when picking a color</value> </data> <data name="ImageResizer_DefaultSize_Large" xml:space="preserve"> <value>Large</value> <comment>The size of the image</comment> </data> <data name="ImageResizer_DefaultSize_Medium" xml:space="preserve"> <value>Medium</value> <comment>The size of the image</comment> </data> <data name="ImageResizer_DefaultSize_Phone" xml:space="preserve"> <value>Phone</value> <comment>The size of the image referring to a Mobile Phone typical image size</comment> </data> <data name="ImageResizer_DefaultSize_Small" xml:space="preserve"> <value>Small</value> <comment>The size of the image</comment> </data> <data name="FancyZones_MoveWindowBasedOnRelativePosition_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Windows key + Up, down, left or right arrow key to move windows based on relative position</value> </data> <data name="FancyZones_MoveWindowLeftRightBasedOnZoneIndex_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Windows key + Left or right arrow keys to move windows based on zone index</value> </data> <data name="FancyZones_MoveWindowBasedOnRelativePosition_Description.Text" xml:space="preserve"> <value>Windows key +    or </value> <comment>Do not loc the icons (hex numbers)</comment> </data> <data name="FancyZones_MoveWindowLeftRightBasedOnZoneIndex_Description.Text" xml:space="preserve"> <value>Windows key +  or </value> <comment>Do not loc the icons (hex numbers)</comment> </data> <data name="FancyZones_MoveWindowBasedOnRelativePosition.Text" xml:space="preserve"> <value>Relative position</value> </data> <data name="FancyZones_MoveWindow.Header" xml:space="preserve"> <value>Move windows based on</value> </data> <data name="FancyZones_MoveWindowLeftRightBasedOnZoneIndex.Text" xml:space="preserve"> <value>Zone index</value> </data> <data name="ColorPicker_Editor.Header" xml:space="preserve"> <value>Color formats</value> </data> <data name="FancyZones_OverlappingZonesClosestCenter.Content" xml:space="preserve"> <value>Activate the zone whose center is closest to the cursor</value> </data> <data name="FancyZones_OverlappingZonesLargest.Content" xml:space="preserve"> <value>Activate the largest zone by area</value> </data> <data name="FancyZones_OverlappingZonesPositional.Content" xml:space="preserve"> <value>Split the overlapped area into multiple activation targets</value> </data> <data name="FancyZones_OverlappingZonesSmallest.Content" xml:space="preserve"> <value>Activate the smallest zone by area</value> </data> <data name="FancyZones_OverlappingZones.Header" xml:space="preserve"> <value>When multiple zones overlap</value> </data> <data name="PowerLauncher_Plugins.Header" xml:space="preserve"> <value>Plugins</value> </data> <data name="PowerLauncher_ActionKeyword.Header" xml:space="preserve"> <value>Direct activation command</value> </data> <data name="PowerLauncher_AuthoredBy.Text" xml:space="preserve"> <value>Authored by</value> <comment>example: Authored by Microsoft</comment> </data> <data name="PowerLauncher_IncludeInGlobalResultTitle.Text" xml:space="preserve"> <value>Include in global result</value> </data> <data name="PowerLauncher_IncludeInGlobalResultDescription.Text" xml:space="preserve"> <value>Show results on queries without direct activation command</value> </data> <data name="PowerLauncher_EnablePluginToggle.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Enable plugin</value> </data> <data name="PowerLauncher_EnablePluginToggle.OnContent" xml:space="preserve"> <value>On</value> </data> <data name="PowerLauncher_EnablePluginToggle.OffContent" xml:space="preserve"> <value>Off</value> </data> <data name="Run_AdditionalOptions.Text" xml:space="preserve"> <value>Additional options</value> </data> <data name="Run_NotAccessibleWarning.Title" xml:space="preserve"> <value>Please define an activation command or allow this plugin to be used in the global results.</value> </data> <data name="Run_AllPluginsDisabled.Title" xml:space="preserve"> <value>PowerToys Run can't provide any results without plugins</value> </data> <data name="Run_AllPluginsDisabled.Message" xml:space="preserve"> <value>Enable at least one plugin to get started</value> </data> <data name="Run_PluginUse.Header" xml:space="preserve"> <value>Plugins</value> </data> <data name="Run_PluginUseDescription.Text" xml:space="preserve"> <value>Include or remove plugins from the global results, change the direct activation phrase and configure additional options</value> </data> <data name="Run_PositionAppearance_GroupSettings.Header" xml:space="preserve"> <value>Position &amp; appearance</value> </data> <data name="Run_PositionHeader.Header" xml:space="preserve"> <value>Preferred monitor position</value> <comment>as in Show PowerToys Run on primary monitor</comment> </data> <data name="Run_PositionHeader.Description" xml:space="preserve"> <value>If multiple monitors are in use, PowerToys Run can be launched on the desired monitor</value> <comment>as in Show PowerToys Run on primary monitor</comment> </data> <data name="Run_Radio_Position_Cursor.Content" xml:space="preserve"> <value>Monitor with mouse cursor</value> </data> <data name="Run_Radio_Position_Focus.Content" xml:space="preserve"> <value>Monitor with focused window</value> </data> <data name="Run_Radio_Position_Primary_Monitor.Content" xml:space="preserve"> <value>Primary monitor</value> </data> <data name="Run_PluginsLoading.Text" xml:space="preserve"> <value>Plugins are loading...</value> </data> <data name="ColorPicker_ButtonDown.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Move the color down</value> </data> <data name="ColorPicker_ButtonUp.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Move the color up</value> </data> <data name="FancyZones_FlashZonesOnQuickSwitch.Content" xml:space="preserve"> <value>Flash zones when switching layout</value> </data> <data name="FancyZones_Layouts.Header" xml:space="preserve"> <value>Layouts</value> </data> <data name="FancyZones_QuickLayoutSwitch.Header" xml:space="preserve"> <value>Enable quick layout switch</value> </data> <data name="FancyZones_QuickLayoutSwitch.Description" xml:space="preserve"> <value>Layout-specific shortcuts can be configured in the editor</value> </data> <data name="FancyZones_QuickLayoutSwitch_GroupSettings.Text" xml:space="preserve"> <value>Quick layout switch</value> </data> <data name="Activation_Shortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="Activation_Shortcut.Description" xml:space="preserve"> <value>Customize the shortcut to activate this module</value> </data> <data name="Oobe_GetStarted.Text" xml:space="preserve"> <value>Let's get started!</value> </data> <data name="Oobe_PowerToysDescription.Text" xml:space="preserve"> <value>Welcome to PowerToys! These overviews will help you quickly learn the basics of all our utilities.</value> </data> <data name="Oobe_GettingStarted.Text" xml:space="preserve"> <value>Getting started</value> </data> <data name="Oobe_Launch.Text" xml:space="preserve"> <value>Launch</value> </data> <data name="Launch_ColorPicker.Content" xml:space="preserve"> <value>Launch Color Picker</value> </data> <data name="Oobe_LearnMore.Text" xml:space="preserve"> <value>Learn more about</value> </data> <data name="Oobe_ColorPicker.Description" xml:space="preserve"> <value>Color Picker is a system-wide color selection tool for Windows that enables you to pick colors from any currently running application and automatically copies it in a configurable format to your clipboard.</value> </data> <data name="Oobe_FancyZones.Description" xml:space="preserve"> <value>FancyZones is a window manager that makes it easy to create complex window layouts and quickly position windows into those layouts.</value> </data> <data name="Oobe_FileLocksmith.Description" xml:space="preserve"> <value>File Locksmith lists which processes are using the selected files or directories and allows closing those processes.</value> </data> <data name="Oobe_FileExplorer.Description" xml:space="preserve"> <value>PowerToys introduces add-ons to the Windows File Explorer that will enable files like Markdown (.md), PDF (.pdf), SVG (.svg), STL (.stl), G-code (.gcode) and developer files to be viewed in the preview pane. It introduces File Explorer thumbnail support for a number of these file types as well.</value> </data> <data name="Oobe_ImageResizer.Description" xml:space="preserve"> <value>Image Resizer is a Windows shell extension for simple bulk image-resizing.</value> </data> <data name="Oobe_KBM.Description" xml:space="preserve"> <value>Keyboard Manager allows you to customize the keyboard to be more productive by remapping keys and creating your own keyboard shortcuts.</value> </data> <data name="Oobe_MouseWithoutBorders.Description" xml:space="preserve"> <value>Mouse Without Borders enables using the mouse pointer, keyboard, clipboard and drag and drop between machines in the same local network.</value> </data> <data name="Oobe_PowerRename.Description" xml:space="preserve"> <value>PowerRename enables you to perform simple bulk renaming, searching and replacing file names.</value> </data> <data name="Oobe_Run.Description" xml:space="preserve"> <value>PowerToys Run is a quick launcher for power users that contains some additional features without sacrificing performance.</value> </data> <data name="Oobe_MeasureTool.Description" xml:space="preserve"> <value>Screen Ruler is a quick and easy way to measure pixels on your screen.</value> </data> <data name="Oobe_ShortcutGuide.Description" xml:space="preserve"> <value>Shortcut Guide presents the user with a listing of available shortcuts for the current state of the desktop.</value> </data> <data name="Oobe_VideoConference.Description" xml:space="preserve"> <value>Video Conference Mute allows users to quickly mute the microphone and turn off the camera while on a conference call with a single keystroke, regardless of what application has focus on your computer.</value> </data> <data name="Oobe_MouseUtils.Description" xml:space="preserve"> <value>A collection of utilities to enhance your mouse.</value> <comment>Mouse as in the hardware peripheral</comment> </data> <data name="Oobe_Overview.Description" xml:space="preserve"> <value>Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. Take a moment to preview the various utilities listed or view our comprehensive documentation.</value> </data> <data name="Oobe_Overview_DescriptionLinkText.Text" xml:space="preserve"> <value>Documentation on Microsoft Docs</value> </data> <data name="ReleaseNotes.Content" xml:space="preserve"> <value>Release notes</value> </data> <data name="Oobe_ColorPicker_HowToUse.Text" xml:space="preserve"> <value>to open Color Picker.</value> </data> <data name="Oobe_ColorPicker_TipsAndTricks.Text" xml:space="preserve"> <value>To select a color with more precision, **scroll the mouse wheel** to zoom in.</value> </data> <data name="Oobe_FancyZones_HowToUse.Text" xml:space="preserve"> <value>**Shift** + **drag the window** to snap a window to a zone, and release the window in the desired zone.</value> </data> <data name="Oobe_FancyZones_HowToUse_Shortcut.Text" xml:space="preserve"> <value>to open the FancyZones editor.</value> </data> <data name="Oobe_FancyZones_TipsAndTricks.Text" xml:space="preserve"> <value>Snap a window to multiple zones by holding the **Ctrl** key (while also holding **Shift**) when dragging a window.</value> </data> <data name="Oobe_FileLocksmith_HowToUse.Text" xml:space="preserve"> <value>In File Explorer, right-click one or more selected files and select **What's using this file?** from the context menu.</value> </data> <data name="Oobe_FileLocksmith_TipsAndTricks.Text" xml:space="preserve"> <value>Press the **Restart Elevated** button from the File Locksmith UI to also get information on elevated processes that might be using the files.</value> </data> <data name="Oobe_FileExplorer_HowToEnable.Text" xml:space="preserve"> <value>Select **View** which is located at the top of File Explorer, followed by **Show**, and then **Preview pane**. From there, simply click on one of the supported files in the File Explorer and observe the content on the preview pane!</value> </data> <data name="Oobe_HowToCreateMappings.Text" xml:space="preserve"> <value>How to create mappings</value> </data> <data name="Oobe_HowToEnable.Text" xml:space="preserve"> <value>How to enable</value> </data> <data name="Oobe_HowToLaunch.Text" xml:space="preserve"> <value>How to launch</value> </data> <data name="Oobe_HowToUse.Text" xml:space="preserve"> <value>How to use</value> </data> <data name="Oobe_ImageResizer_HowToLaunch.Text" xml:space="preserve"> <value>In File Explorer, right-click one or more image files and select **Resize pictures** from the context menu.</value> </data> <data name="Oobe_ImageResizer_TipsAndTricks.Text" xml:space="preserve"> <value>Want a custom size? You can add them in the PowerToys Settings!</value> </data> <data name="Oobe_KBM_HowToCreateMappings.Text" xml:space="preserve"> <value>Launch **PowerToys Settings**, navigate to the Keyboard Manager menu, and select either **Remap a key** or **Remap a shortcut**.</value> </data> <data name="Oobe_KBM_TipsAndTricks.Text" xml:space="preserve"> <value>Want to only have a shortcut work for a single application? Use the Target App field when creating the shortcut remapping.</value> </data> <data name="Oobe_MouseWithoutBorders_HowToUse.Text" xml:space="preserve"> <value>Use the Settings screen on each machine to connect to the other machines using the same key. If a connection is not working, it may be necessary to add an exception to the Windows Firewall.</value> </data> <data name="Oobe_MouseWithoutBorders_TipsAndTricks.Text" xml:space="preserve"> <value>Use the service option in Settings to install a service enabling Mouse Without Borders to function even in the lock screen.</value> </data> <data name="Oobe_PowerRename_HowToUse.Text" xml:space="preserve"> <value>In File Explorer, right-click one or more selected files and select **PowerRename** from the context menu.</value> </data> <data name="Oobe_PowerRename_TipsAndTricks.Text" xml:space="preserve"> <value>PowerRename supports searching for files using regular expressions to enable more advanced renaming functionalities.</value> </data> <data name="Oobe_Run_HowToLaunch.Text" xml:space="preserve"> <value>to open Run and just start typing.</value> </data> <data name="Oobe_Run_TipsAndTricks.Text" xml:space="preserve"> <value>PowerToys Run supports various action keys to funnel search queries for a specific subset of results. Typing `&lt;` searches for running processes only, `?` will search only for file, or `.` for installed applications! See PowerToys documentation for the complete set of 'Action Keys' available.</value> </data> <data name="Oobe_ShortcutGuide_HowToLaunch.Text" xml:space="preserve"> <value>to open Shortcut Guide, press it again to close or press **Esc**.</value> </data> <data name="Oobe_TipsAndTricks.Text" xml:space="preserve"> <value>Tips &amp; tricks</value> </data> <data name="Oobe_VideoConference_ToggleMicVid.Text" xml:space="preserve"> <value>to toggle both your microphone and video</value> </data> <data name="Oobe_VideoConference_ToggleMic.Text" xml:space="preserve"> <value>to toggle your microphone</value> </data> <data name="Oobe_VideoConference_PushToTalkMic.Text" xml:space="preserve"> <value>to toggle your microphone until key release</value> </data> <data name="Oobe_VideoConference_ToggleVid.Text" xml:space="preserve"> <value>to toggle your video</value> </data> <data name="Oobe_MeasureTool_Activation.Text" xml:space="preserve"> <value>to bring up the Screen Ruler command bar.</value> </data> <data name="Oobe_MeasureTool_HowToLaunch.Text" xml:space="preserve"> <value>The Bounds mode lets you select a specific area to measure. You can also shift-drag an area to persist in on screen. The various Spacing modes allows tracing similar pixels along horizontal and vertical axes with a customizable pixel tolerance threshold (use settings or mouse wheel to adjust it).</value> </data> <data name="Oobe_MeasureTool.Title" xml:space="preserve"> <value>Screen Ruler</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_ColorPicker.Title" xml:space="preserve"> <value>Color Picker</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_FancyZones.Title" xml:space="preserve"> <value>FancyZones</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_FileLocksmith.Title" xml:space="preserve"> <value>File Locksmith</value> </data> <data name="Oobe_ImageResizer.Title" xml:space="preserve"> <value>Image Resizer</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_KBM.Title" xml:space="preserve"> <value>Keyboard Manager</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_MouseWithoutBorders.Title" xml:space="preserve"> <value>Mouse Without Borders</value> <comment>Product name. Do not localize this string</comment> </data> <data name="Oobe_PowerRename.Title" xml:space="preserve"> <value>PowerRename</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_Run.Title" xml:space="preserve"> <value>PowerToys Run</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_ShortcutGuide.Title" xml:space="preserve"> <value>Shortcut Guide</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_VideoConference.Title" xml:space="preserve"> <value>Video Conference Mute</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_Overview.Title" xml:space="preserve"> <value>Welcome</value> </data> <data name="Oobe_WhatsNew.Text" xml:space="preserve"> <value>What's new</value> </data> <data name="Oobe_WhatsNew_LoadingError.Title" xml:space="preserve"> <value>Couldn't load the release notes.</value> </data> <data name="Oobe_WhatsNew_LoadingError.Message" xml:space="preserve"> <value>Please check your internet connection.</value> </data> <data name="Oobe_WhatsNew_ProxyAuthenticationWarning.Title" xml:space="preserve"> <value>Couldn't load the release notes.</value> </data> <data name="Oobe_WhatsNew_ProxyAuthenticationWarning.Message" xml:space="preserve"> <value>Your proxy server requires authentication.</value> </data> <data name="Oobe_WhatsNew_DetailedReleaseNotesLink.Text" xml:space="preserve"> <value>See more detailed release notes on GitHub</value> <comment>Don't loc "GitHub", it's the name of a product</comment> </data> <data name="OOBE_Settings.Content" xml:space="preserve"> <value>Open Settings</value> </data> <data name="Oobe_NavViewItem.Content" xml:space="preserve"> <value>Welcome to PowerToys</value> <comment>Don't loc "PowerToys"</comment> </data> <data name="Feedback_NavViewItem.Content" xml:space="preserve"> <value>Give feedback</value> </data> <data name="OobeWindow_Title" xml:space="preserve"> <value>Welcome to PowerToys</value> </data> <data name="OobeWindow_TitleTxt.Text" xml:space="preserve"> <value>Welcome to PowerToys</value> </data> <data name="SettingsWindow_Title" xml:space="preserve"> <value>PowerToys Settings</value> <comment>Title of the settings window when running as user</comment> </data> <data name="Awake.ModuleTitle" xml:space="preserve"> <value>Awake</value> </data> <data name="Awake.ModuleDescription" xml:space="preserve"> <value>A convenient way to keep your PC awake on-demand.</value> </data> <data name="Awake_EnableSettingsCard.Header" xml:space="preserve"> <value>Enable Awake</value> <comment>Awake is a product name, do not loc</comment> </data> <data name="Awake_NoKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep using the selected power plan</value> </data> <data name="Awake_IndefiniteKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep awake indefinitely</value> </data> <data name="Awake_TemporaryKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep awake for a time interval</value> </data> <data name="Awake_ExpirableKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep awake until expiration</value> </data> <data name="Awake_DisplaySettingsCard.Header" xml:space="preserve"> <value>Keep screen on</value> </data> <data name="Awake_DisplaySettingsCard.Description" xml:space="preserve"> <value>This setting is only available when keeping the PC awake</value> </data> <data name="Awake_ExpirationSettingsExpander.Description" xml:space="preserve"> <value>Keep custom awake state until a specific date and time</value> </data> <data name="Awake_ModeSettingsCard.Header" xml:space="preserve"> <value>Mode</value> </data> <data name="Awake_BehaviorSettingsGroup.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="Awake_IntervalHoursInput.Header" xml:space="preserve"> <value>Hours</value> </data> <data name="Awake_IntervalMinutesInput.Header" xml:space="preserve"> <value>Minutes</value> </data> <data name="Awake_ExpirationSettingsExpander_Date.Header" xml:space="preserve"> <value>End date</value> </data> <data name="Awake_ExpirationSettingsExpander_Time.Header" xml:space="preserve"> <value>End time</value> </data> <data name="Oobe_Awake.Title" xml:space="preserve"> <value>Awake</value> <comment>Module name, do not loc</comment> </data> <data name="Oobe_Awake.Description" xml:space="preserve"> <value>Awake is a Windows tool designed to keep your PC awake on-demand without having to manage its power settings. This behavior can be helpful when running time-consuming tasks while ensuring that your PC does not go to sleep or turn off its screens.</value> </data> <data name="Oobe_Awake_HowToUse.Text" xml:space="preserve"> <value>Open **PowerToys Settings** and enable Awake</value> </data> <data name="Oobe_Awake_TipsAndTricks.Text" xml:space="preserve"> <value>You can always change modes quickly by **right-clicking the Awake icon** in the system tray.</value> </data> <data name="General_FailedToDownloadTheNewVersion.Title" xml:space="preserve"> <value>An error occurred trying to install this update:</value> </data> <data name="General_InstallNow.Content" xml:space="preserve"> <value>Install now</value> </data> <data name="General_ReadMore.Text" xml:space="preserve"> <value>Read more</value> </data> <data name="General_NewVersionAvailable.Title" xml:space="preserve"> <value>An update is available:</value> </data> <data name="General_Downloading.Text" xml:space="preserve"> <value>Downloading...</value> </data> <data name="General_TryAgainToDownloadAndInstall.Content" xml:space="preserve"> <value>Try again to download and install</value> </data> <data name="General_CheckingForUpdates.Text" xml:space="preserve"> <value>Checking for updates...</value> </data> <data name="General_NewVersionReadyToInstall.Title" xml:space="preserve"> <value>An update is ready to install:</value> </data> <data name="General_UpToDate.Title" xml:space="preserve"> <value>PowerToys is up to date</value> </data> <data name="General_CantCheck.Title" xml:space="preserve"> <value>Network error. Please try again later</value> </data> <data name="General_DownloadAndInstall.Content" xml:space="preserve"> <value>Download &amp; install</value> </data> <data name="ImageResizer_Fit_Fill_ThirdPersonSingular" xml:space="preserve"> <value>Fills</value> </data> <data name="ImageResizer_Fit_Fit_ThirdPersonSingular" xml:space="preserve"> <value>Fits within</value> </data> <data name="ImageResizer_Fit_Stretch_ThirdPersonSingular" xml:space="preserve"> <value>Stretches to</value> </data> <data name="ImageResizer_Unit_Centimeter" xml:space="preserve"> <value>Centimeters</value> </data> <data name="ImageResizer_Unit_Inch" xml:space="preserve"> <value>Inches</value> </data> <data name="ImageResizer_Unit_Percent" xml:space="preserve"> <value>Percent</value> </data> <data name="ImageResizer_Unit_Pixel" xml:space="preserve"> <value>Pixels</value> </data> <data name="EditButton.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Edit</value> </data> <data name="ImageResizer_EditSize.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Edit size</value> </data> <data name="No" xml:space="preserve"> <value>No</value> <comment>Label of a cancel button</comment> </data> <data name="Delete_Dialog_Description" xml:space="preserve"> <value>Are you sure you want to delete this item?</value> </data> <data name="Yes" xml:space="preserve"> <value>Yes</value> <comment>Label of a confirmation button</comment> </data> <data name="SeeWhatsNew.Content" xml:space="preserve"> <value>See what's new</value> </data> <data name="Awake_ModeSettingsCard.Description" xml:space="preserve"> <value>Manage the state of your device when Awake is active</value> </data> <data name="ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="Enable_ColorFormat.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Enable colorformat</value> </data> <data name="More_Options_Button.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>More options</value> </data> <data name="More_Options_ButtonTooltip.Text" xml:space="preserve"> <value>More options</value> </data> <data name="To.Text" xml:space="preserve"> <value>to</value> <comment>as in: from x to y</comment> </data> <data name="LearnMore_Awake.Text" xml:space="preserve"> <value>Learn more about Awake</value> <comment>Awake is a product name, do not loc</comment> </data> <data name="LearnMore_ColorPicker.Text" xml:space="preserve"> <value>Learn more about Color Picker</value> <comment>Color Picker is a product name, do not loc</comment> </data> <data name="LearnMore_FancyZones.Text" xml:space="preserve"> <value>Learn more about FancyZones</value> <comment>FancyZones is a product name, do not loc</comment> </data> <data name="LearnMore_FileLocksmith.Text" xml:space="preserve"> <value>Learn more about File Locksmith</value> </data> <data name="LearnMore_ImageResizer.Text" xml:space="preserve"> <value>Learn more about Image Resizer</value> <comment>Image Resizer is a product name, do not loc</comment> </data> <data name="LearnMore_KBM.Text" xml:space="preserve"> <value>Learn more about Keyboard Manager</value> <comment>Keyboard Manager is a product name, do not loc</comment> </data> <data name="LearnMore_MouseUtils.Text" xml:space="preserve"> <value>Learn more about Mouse utilities</value> <comment>Mouse utilities is a product name, do not loc</comment> </data> <data name="LearnMore_PastePlain.Text" xml:space="preserve"> <value>Learn more about Paste as Plain Text</value> <comment> Paste as Plain Text is the name of the module. </comment> </data> <data name="LearnMore_MouseWithoutBorders.Text" xml:space="preserve"> <value>Learn more about Mouse Without Borders</value> <comment>Mouse Without Borders is the name of the module. </comment> </data> <data name="LearnMore_PowerPreview.Text" xml:space="preserve"> <value>Learn more about File Explorer add-ons</value> <comment>File Explorer is a product name, localize as Windows does</comment> </data> <data name="LearnMore_Peek.Text" xml:space="preserve"> <value>Learn more about Peek</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="LearnMore_PowerRename.Text" xml:space="preserve"> <value>Learn more about PowerRename</value> <comment>PowerRename is a product name, do not loc</comment> </data> <data name="LearnMore_Run.Text" xml:space="preserve"> <value>Learn more about PowerToys Run</value> <comment>PowerToys Run is a product name, do not loc</comment> </data> <data name="LearnMore_MeasureTool.Text" xml:space="preserve"> <value>Learn more about Screen Ruler</value> <comment>Screen Ruler is a product name, do not loc</comment> </data> <data name="LearnMore_ShortcutGuide.Text" xml:space="preserve"> <value>Learn more about Shortcut Guide</value> <comment>Shortcut Guide is a product name, do not loc</comment> </data> <data name="LearnMore_VCM.Text" xml:space="preserve"> <value>Learn more about Video Conference Mute</value> <comment>Video Conference Mute is a product name, do not loc</comment> </data> <data name="Oobe_FileExplorer.Title" xml:space="preserve"> <value>File Explorer add-ons</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_MouseUtils.Title" xml:space="preserve"> <value>Mouse utilities</value> <comment>Mouse as in the hardware peripheral</comment> </data> <data name="Oobe_MouseUtils_FindMyMouse.Text" xml:space="preserve"> <value>Find My Mouse</value> <comment>Mouse as in the hardware peripheral</comment> </data> <data name="Oobe_MouseUtils_FindMyMouse_Description.Text" xml:space="preserve"> <value>Focus the mouse pointer pressing the Ctrl key twice, using a custom shortcut or shaking the mouse.</value> <comment>Mouse as in the hardware peripheral. Key as in a keyboard key</comment> </data> <data name="Oobe_MouseUtils_MouseHighlighter.Text" xml:space="preserve"> <value>Mouse Highlighter</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MouseHighlighter_Description.Text" xml:space="preserve"> <value>Use a keyboard shortcut to highlight left and right mouse clicks.</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MousePointerCrosshairs.Text" xml:space="preserve"> <value>Mouse Pointer Crosshairs</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MousePointerCrosshairs_Description.Text" xml:space="preserve"> <value>Draw crosshairs centered around the mouse pointer.</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MouseJump.Text" xml:space="preserve"> <value>Mouse Jump</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MouseJump_Description.Text" xml:space="preserve"> <value>Jump the mouse pointer quickly to anywhere on your desktop.</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Launch_Run.Content" xml:space="preserve"> <value>Launch PowerToys Run</value> </data> <data name="Launch_ShortcutGuide.Content" xml:space="preserve"> <value>Launch Shortcut Guide</value> </data> <data name="ColorPicker_ColorFormat_ToggleSwitch.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Show format in editor</value> </data> <data name="GeneralPage_Documentation.Text" xml:space="preserve"> <value>Documentation</value> </data> <data name="PowerLauncher_SearchList.PlaceholderText" xml:space="preserve"> <value>Search this list</value> </data> <data name="PowerLauncher_SearchList.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Search this list</value> </data> <data name="Awake.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="ColorPicker.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="General.SecondaryLinksHeader" xml:space="preserve"> <value>Related information</value> </data> <data name="ImageResizer.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="MouseUtils.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="PowerLauncher.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="PowerRename.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="EditTooltip.Text" xml:space="preserve"> <value>Edit</value> </data> <data name="RemoveTooltip.Text" xml:space="preserve"> <value>Remove</value> </data> <data name="Activation_Shortcut_Cancel" xml:space="preserve"> <value>Cancel</value> </data> <data name="Activation_Shortcut_Description" xml:space="preserve"> <value>Press a combination of keys to change this shortcut</value> </data> <data name="Activation_Shortcut_With_Disable_Description" xml:space="preserve"> <value>Press a combination of keys to change this shortcut. Right-click to remove the key combination, thereby deactivating the shortcut.</value> </data> <data name="Activation_Shortcut_Reset" xml:space="preserve"> <value>Reset</value> </data> <data name="Activation_Shortcut_Save" xml:space="preserve"> <value>Save</value> </data> <data name="Activation_Shortcut_Title" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="InvalidShortcut.Title" xml:space="preserve"> <value>Invalid shortcut</value> </data> <data name="InvalidShortcutWarningLabel.Text" xml:space="preserve"> <value>Only shortcuts that start with **Windows key**, **Ctrl**, **Alt** or **Shift** are valid.</value> <comment>The ** sequences are used for text formatting of the key names. Don't remove them on translation.</comment> </data> <data name="FancyZones_SpanZonesAcrossMonitors.Description" xml:space="preserve"> <value>All monitors must have the same DPI scaling and will be treated as one large combined rectangle which contains all monitors</value> </data> <data name="ImageResizer_DefaultSize_NewSizePrefix" xml:space="preserve"> <value>New size</value> <comment>First part of the default name of new sizes that can be added in PT's settings ui.</comment> </data> <data name="Awake_IntervalSettingsCard.Header" xml:space="preserve"> <value>Interval before returning to the previous awakeness state</value> </data> <data name="Awake_ExpirationSettingsExpander.Header" xml:space="preserve"> <value>End date and time</value> </data> <data name="MouseUtils.ModuleTitle" xml:space="preserve"> <value>Mouse utilities</value> </data> <data name="MouseUtils.ModuleDescription" xml:space="preserve"> <value>A collection of mouse utilities.</value> </data> <data name="MouseUtils_FindMyMouse.Header" xml:space="preserve"> <value>Find My Mouse</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_FindMyMouse.Description" xml:space="preserve"> <value>Find My Mouse highlights the position of the cursor when pressing the Ctrl key twice, using a custom shortcut or when shaking the mouse.</value> <comment>"Ctrl" is a keyboard key. "Find My Mouse" is the name of the utility</comment> </data> <data name="MouseUtils_Enable_FindMyMouse.Header" xml:space="preserve"> <value>Enable Find My Mouse</value> <comment>"Find My Mouse" is the name of the utility.</comment> </data> <data name="MouseUtils_FindMyMouse_ActivationMethod.Header" xml:space="preserve"> <value>Activation method</value> </data> <data name="MouseUtils_FindMyMouse_ActivationDoubleControlPress.Content" xml:space="preserve"> <value>Press Left Control twice</value> <comment>Left control is the physical key on the keyboard.</comment> </data> <data name="MouseUtils_FindMyMouse_ActivationShakeMouse.Content" xml:space="preserve"> <value>Shake mouse</value> <comment>Mouse is the hardware peripheral.</comment> </data> <data name="MouseUtils_FindMyMouse_ExcludedApps.Description" xml:space="preserve"> <value>Prevents module activation when an excluded application is the foreground application</value> </data> <data name="MouseUtils_FindMyMouse_ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="MouseUtils_FindMyMouse_ExcludedApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> </data> <data name="MouseUtils_Prevent_Activation_On_Game_Mode.Content" xml:space="preserve"> <value>Do not activate when Game Mode is on</value> <comment>"Game mode" is the Windows feature to prevent notification when playing a game.</comment> </data> <data name="MouseUtils_FindMyMouse_BackgroundColor.Header" xml:space="preserve"> <value>Background color</value> </data> <data name="MouseUtils_FindMyMouse_SpotlightColor.Header" xml:space="preserve"> <value>Spotlight color</value> </data> <data name="MouseUtils_FindMyMouse_OverlayOpacity.Header" xml:space="preserve"> <value>Overlay opacity (%)</value> </data> <data name="MouseUtils_FindMyMouse_SpotlightRadius.Header" xml:space="preserve"> <value>Spotlight radius (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_FindMyMouse_SpotlightInitialZoom.Header" xml:space="preserve"> <value>Spotlight initial zoom</value> </data> <data name="MouseUtils_FindMyMouse_SpotlightInitialZoom.Description" xml:space="preserve"> <value>Spotlight zoom factor at animation start</value> </data> <data name="MouseUtils_FindMyMouse_AnimationDurationMs.Header" xml:space="preserve"> <value>Animation duration (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_FindMyMouse_AnimationDurationMs.Description" xml:space="preserve"> <value>Time before the spotlight appears (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_FindMyMouse_AnimationDurationMs_Disabled.Message" xml:space="preserve"> <value>Animations are disabled by OS. See Settings &gt; Accessibility &gt; Visual effects</value> </data> <data name="MouseUtils_FindMyMouse_ShakingMinimumDistance.Header" xml:space="preserve"> <value>Shake minimum distance</value> </data> <data name="MouseUtils_FindMyMouse_ShakingMinimumDistance.Description" xml:space="preserve"> <value>The minimum distance for mouse shaking activation, for adjusting sensitivity</value> </data> <data name="MouseUtils_MouseHighlighter.Header" xml:space="preserve"> <value>Mouse Highlighter</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_MouseHighlighter.Description" xml:space="preserve"> <value>Mouse Highlighter mode will highlight mouse clicks.</value> <comment>"Mouse Highlighter" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_Enable_MouseHighlighter.Header" xml:space="preserve"> <value>Enable Mouse Highlighter</value> <comment>"Find My Mouse" is the name of the utility.</comment> </data> <data name="MouseUtils_MouseHighlighter_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MouseUtils_MouseHighlighter_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to turn on or off this mode</value> <comment>"Mouse Highlighter" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_MouseHighlighter_PrimaryButtonClickColor.Header" xml:space="preserve"> <value>Primary button highlight color</value> </data> <data name="MouseUtils_MouseHighlighter_SecondaryButtonClickColor.Header" xml:space="preserve"> <value>Secondary button highlight color</value> </data> <data name="MouseUtils_MouseHighlighter_HighlightRadius.Header" xml:space="preserve"> <value>Radius (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDelayMs.Header" xml:space="preserve"> <value>Fade delay (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDelayMs.Description" xml:space="preserve"> <value>Time before the highlight begins to fade (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDurationMs.Header" xml:space="preserve"> <value>Fade duration (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDurationMs.Description" xml:space="preserve"> <value>Duration of the disappear animation (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MousePointerCrosshairs.Header" xml:space="preserve"> <value>Mouse Pointer Crosshairs</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_MousePointerCrosshairs.Description" xml:space="preserve"> <value>Mouse Pointer Crosshairs draws crosshairs centered on the mouse pointer.</value> <comment>"Mouse Pointer Crosshairs" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_Enable_MousePointerCrosshairs.Header" xml:space="preserve"> <value>Enable Mouse Pointer Crosshairs</value> <comment>"Mouse Pointer Crosshairs" is the name of the utility.</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MouseUtils_MousePointerCrosshairs_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to show/hide the crosshairs</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsColor.Header" xml:space="preserve"> <value>Crosshairs color</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsOpacity.Header" xml:space="preserve"> <value>Crosshairs opacity (%)</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsRadius.Header" xml:space="preserve"> <value>Crosshairs center radius (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsThickness.Header" xml:space="preserve"> <value>Crosshairs thickness (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsBorderColor.Header" xml:space="preserve"> <value>Crosshairs border color</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsBorderSize.Header" xml:space="preserve"> <value>Crosshairs border size (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_IsCrosshairsFixedLengthEnabled.Header" xml:space="preserve"> <value>Fix crosshairs length</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsFixedLength.Header" xml:space="preserve"> <value>Crosshairs fixed length (px)</value> <comment>px = pixels</comment> </data> <data name="FancyZones_Radio_Custom_Colors.Content" xml:space="preserve"> <value>Custom colors</value> </data> <data name="FancyZones_Radio_Default_Theme.Content" xml:space="preserve"> <value>Windows default</value> </data> <data name="ColorModeHeader.Header" xml:space="preserve"> <value>App theme</value> </data> <data name="FancyZones_Zone_Appearance.Description" xml:space="preserve"> <value>Customize the way zones look</value> </data> <data name="FancyZones_Zone_Appearance.Header" xml:space="preserve"> <value>Zone appearance</value> </data> <data name="VideoConference_DeprecationWarning.Title" xml:space="preserve"> <value>VCM is moving into legacy mode (maintenance only).</value> </data> <data name="VideoConference_DeprecationWarningButton.Content" xml:space="preserve"> <value>Learn more</value> </data> <data name="VideoConference_RunAsAdminRequired.Title" xml:space="preserve"> <value>You need to run as administrator to modify these settings.</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_GCODE.Header" xml:space="preserve"> <value>Geometric Code</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_GCODE.Description" xml:space="preserve"> <value>Only .gcode files with embedded thumbnails are supported</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_GCODE.Header" xml:space="preserve"> <value>Geometric Code</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_GCODE.Description" xml:space="preserve"> <value>Only .gcode files with embedded thumbnails are supported</value> </data> <data name="FancyZones_NumberColor.Header" xml:space="preserve"> <value>Number color</value> </data> <data name="FancyZones_ShowZoneNumberCheckBoxControl.Content" xml:space="preserve"> <value>Show zone number</value> </data> <data name="ToggleSwitch.OffContent" xml:space="preserve"> <value>Off</value> <comment>The state of a ToggleSwitch when it's off</comment> </data> <data name="ToggleSwitch.OnContent" xml:space="preserve"> <value>On</value> <comment>The state of a ToggleSwitch when it's on</comment> </data> <data name="CropAndLock.ModuleDescription" xml:space="preserve"> <value>Crop And Lock allows you to crop a current application into a smaller window or just create a thumbnail. Focus the target window and press the shortcut to start cropping.</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="CropAndLock.ModuleTitle" xml:space="preserve"> <value>Crop And Lock </value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="CropAndLock_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="CropAndLock_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="Shell_CropAndLock.Content" xml:space="preserve"> <value>Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="LearnMore_CropAndLock.Text" xml:space="preserve"> <value>Learn more about Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="CropAndLock_ReparentActivation_Shortcut.Header" xml:space="preserve"> <value>Reparent shortcut</value> </data> <data name="CropAndLock_ReparentActivation_Shortcut.Description" xml:space="preserve"> <value>Shortcut to crop an application's window into a cropped window. This is experimental and can cause issues with some applications, since the cropped window will contain the original application window.</value> </data> <data name="CropAndLock_ThumbnailActivation_Shortcut.Header" xml:space="preserve"> <value>Thumbnail shortcut</value> </data> <data name="CropAndLock_ThumbnailActivation_Shortcut.Description" xml:space="preserve"> <value>Shortcut to crop and create a thumbnail of another window. The application isn't controllable through the thumbnail but it'll have less compatibility issues. </value> </data> <data name="CropAndLock.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="Oobe_CropAndLock.Title" xml:space="preserve"> <value>Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="Oobe_CropAndLock.Description" xml:space="preserve"> <value>Crop And Lock allows you to crop a current application into a smaller window or just create a thumbnail. Focus the target window and press the shortcut to start cropping.</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="Oobe_CropAndLock_HowToUse_Thumbnail.Text" xml:space="preserve"> <value>to crop and create a thumbnail of another window. The application isn't controllable through the thumbnail but it'll have less compatibility issues.</value> </data> <data name="Oobe_CropAndLock_HowToUse_Reparent.Text" xml:space="preserve"> <value>to crop an application's window into a cropped window. This is experimental and can cause issues with some applications, since the cropped window will contain the original application window.</value> </data> <data name="AlwaysOnTop.ModuleDescription" xml:space="preserve"> <value>Always On Top is a quick and easy way to pin windows on top.</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop.ModuleTitle" xml:space="preserve"> <value>Always On Top </value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="Peek_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="AlwaysOnTop_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_ExcludedApps.Description" xml:space="preserve"> <value>Excludes an application from pinning on top</value> </data> <data name="AlwaysOnTop_ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="AlwaysOnTop_ExcludedApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> </data> <data name="AlwaysOnTop_FrameColor.Header" xml:space="preserve"> <value>Color</value> </data> <data name="AlwaysOnTop_FrameEnabled.Header" xml:space="preserve"> <value>Show a border around the pinned window</value> </data> <data name="AlwaysOnTop_FrameThickness.Header" xml:space="preserve"> <value>Thickness (px)</value> <comment>px = pixels</comment> </data> <data name="AlwaysOnTop_Behavior_GroupSettings.Header" xml:space="preserve"> <value>Appearance &amp; behavior</value> </data> <data name="Shell_AlwaysOnTop.Content" xml:space="preserve"> <value>Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_GameMode.Content" xml:space="preserve"> <value>Do not activate when Game Mode is on</value> <comment>Game Mode is a Windows feature</comment> </data> <data name="AlwaysOnTop_SoundTitle.Header" xml:space="preserve"> <value>Sound</value> </data> <data name="AlwaysOnTop_Sound.Content" xml:space="preserve"> <value>Play a sound when pinning a window</value> </data> <data name="AlwaysOnTop_Behavior.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="LearnMore_AlwaysOnTop.Text" xml:space="preserve"> <value>Learn more about Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="AlwaysOnTop_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to pin or unpin an app window</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="Oobe_AlwaysOnTop.Title" xml:space="preserve"> <value>Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="Oobe_AlwaysOnTop.Description" xml:space="preserve"> <value>Always On Top improves your multitasking workflow by pinning an application window so it's always in front - even when focus changes to another window after that.</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="Oobe_AlwaysOnTop_HowToUse.Text" xml:space="preserve"> <value>to pin or unpin the selected window so it's always on top of all other windows.</value> </data> <data name="Oobe_AlwaysOnTop_TipsAndTricks.Text" xml:space="preserve"> <value>You can tweak the visual outline of the pinned windows in PowerToys settings.</value> </data> <data name="AlwaysOnTop_FrameColor_Mode.Header" xml:space="preserve"> <value>Color mode</value> </data> <data name="AlwaysOnTop_Radio_Custom_Color.Content" xml:space="preserve"> <value>Custom color</value> </data> <data name="AlwaysOnTop_Radio_Windows_Default.Content" xml:space="preserve"> <value>Windows default</value> </data> <data name="FileExplorerPreview.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Monaco_Wrap_Text.Content" xml:space="preserve"> <value>Wrap text</value> <comment>Feature on or off</comment> </data> <data name="FancyZones_AllowPopupWindowSnap.Description" xml:space="preserve"> <value>This setting can affect all popup windows including notifications</value> </data> <data name="FancyZones_AllowPopupWindowSnap.Header" xml:space="preserve"> <value>Allow popup windows snapping</value> </data> <data name="FancyZones_AllowChildWindowSnap.Content" xml:space="preserve"> <value>Allow child windows snapping</value> </data> <data name="Shell_WhatsNew.Content" xml:space="preserve"> <value>What's new</value> </data> <data name="Shell_Peek.Content" xml:space="preserve"> <value>Peek</value> <comment>Product name: Navigation view item name for Peek</comment> </data> <data name="Peek.ModuleTitle" xml:space="preserve"> <value>Peek</value> </data> <data name="Peek.ModuleDescription" xml:space="preserve"> <value>Peek is a quick and easy way to preview files. Select a file in File Explorer and press the shortcut to open the file preview.</value> </data> <data name="Peek_EnablePeek.Header" xml:space="preserve"> <value>Enable Peek</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="Peek_BehaviorHeader.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="Peek_AlwaysRunNotElevated.Header" xml:space="preserve"> <value>Always run not elevated, even when PowerToys is elevated</value> </data> <data name="Peek_AlwaysRunNotElevated.Description" xml:space="preserve"> <value>Tries to run Peek without elevated permissions, to fix access to network shares. You need to disable and re-enable Peek for changes to this value to take effect.</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="Peek_CloseAfterLosingFocus.Header" xml:space="preserve"> <value>Automatically close the Peek window after it loses focus</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="FancyZones_DisableRoundCornersOnWindowSnap.Content" xml:space="preserve"> <value>Disable round corners when window is snapped</value> </data> <data name="PowerLauncher_SearchQueryTuningEnabled.Description" xml:space="preserve"> <value>Fine tune results ordering</value> </data> <data name="PowerLauncher_SearchQueryTuningEnabled.Header" xml:space="preserve"> <value>Results order tuning</value> </data> <data name="PowerLauncher_SearchClickedItemWeight.Description" xml:space="preserve"> <value>Use a higher number to get selected results to rise faster. The default is 5, 0 to disable.</value> </data> <data name="PowerLauncher_SearchClickedItemWeight.Header" xml:space="preserve"> <value>Selected item weight</value> </data> <data name="PowerLauncher_WaitForSlowResults.Description" xml:space="preserve"> <value>Selecting this can help preselect the top, more relevant result, but at the risk of jumpiness</value> </data> <data name="PowerLauncher_WaitForSlowResults.Header" xml:space="preserve"> <value>Wait on slower plugin results before selecting top item in results</value> </data> <data name="PowerLauncher_PluginWeightBoost.Description" xml:space="preserve"> <value>Use a higher number to have this plugin's result show higher in the global results. Default is 0.</value> </data> <data name="PowerLauncher_PluginWeightBoost.Header" xml:space="preserve"> <value>Global sort order score modifier</value> </data> <data name="AlwaysOnTop_RoundCorners.Content" xml:space="preserve"> <value>Enable round corners</value> </data> <data name="LearnMore_QuickAccent.Text" xml:space="preserve"> <value>Learn more about Quick Accent</value> <comment>Quick Accent is a product name, do not loc</comment> </data> <data name="QuickAccent_EnableQuickAccent.Header" xml:space="preserve"> <value>Enable Quick Accent</value> </data> <data name="Shell_QuickAccent.Content" xml:space="preserve"> <value>Quick Accent</value> </data> <data name="QuickAccent.ModuleDescription" xml:space="preserve"> <value>Quick Accent is an alternative way to type accented characters, useful for when a keyboard doesn't support that specific accent. Activate by holding the key for the character you want to add an accent to, then press the activation key (space, left or right arrow keys) and an overlay to select accented characters will appear!</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent.ModuleTitle" xml:space="preserve"> <value>Quick Accent</value> </data> <data name="QuickAccent.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> </data> <data name="Oobe_QuickAccent.Description" xml:space="preserve"> <value>Quick Accent is an easy way to write letters with accents, like on a smartphone.</value> </data> <data name="Oobe_QuickAccent.Title" xml:space="preserve"> <value>Quick Accent</value> </data> <data name="Oobe_QuickAccent_HowToUse.Text" xml:space="preserve"> <value>Open **PowerToys Settings** and enable Quick Accent. While holding the key for the character you want to add an accent to, press the Activation Key and an overlay to select the accented character will appear.</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="QuickAccent_Activation_Shortcut.Header" xml:space="preserve"> <value>Activation key</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent_Activation_Shortcut.Description" xml:space="preserve"> <value>Press this key after holding down the target letter</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent_Activation_Key_Arrows.Content" xml:space="preserve"> <value>Left/Right Arrow</value> <comment>Left/Right arrow keyboard keys</comment> </data> <data name="QuickAccent_Activation_Key_Space.Content" xml:space="preserve"> <value>Space</value> <comment>Space is the space keyboard key</comment> </data> <data name="QuickAccent_Activation_Key_Either.Content" xml:space="preserve"> <value>Left, Right or Space</value> <comment>All are keys on a keyboard</comment> </data> <data name="QuickAccent_Toolbar.Header" xml:space="preserve"> <value>Toolbar</value> </data> <data name="QuickAccent_ToolbarPosition.Header" xml:space="preserve"> <value>Toolbar position</value> </data> <data name="QuickAccent_ToolbarPosition_TopCenter.Content" xml:space="preserve"> <value>Top center</value> </data> <data name="QuickAccent_ToolbarPosition_TopLeftCorner.Content" xml:space="preserve"> <value>Top left corner</value> </data> <data name="QuickAccent_ToolbarPosition_TopRightCorner.Content" xml:space="preserve"> <value>Top right corner</value> </data> <data name="QuickAccent_ToolbarPosition_BottomLeftCorner.Content" xml:space="preserve"> <value>Bottom left corner</value> </data> <data name="QuickAccent_ToolbarPosition_BottomCenter.Content" xml:space="preserve"> <value>Bottom center</value> </data> <data name="QuickAccent_ToolbarPosition_BottomRightCorner.Content" xml:space="preserve"> <value>Bottom right corner</value> </data> <data name="QuickAccent_ToolbarPosition_Center.Content" xml:space="preserve"> <value>Center</value> </data> <data name="QuickAccent_ToolbarPosition_Left.Content" xml:space="preserve"> <value>Left</value> </data> <data name="QuickAccent_ToolbarPosition_Right.Content" xml:space="preserve"> <value>Right</value> </data> <data name="QuickAccent_Behavior.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="QuickAccent_InputTimeMs.Header" xml:space="preserve"> <value>Input delay (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="QuickAccent_InputTimeMs.Description" xml:space="preserve"> <value>Hold the key down for this much time to make the accent menu appear (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="QuickAccent_ExcludedApps.Description" xml:space="preserve"> <value>Prevents module activation if a foreground application is excluded. Add one application name per line.</value> </data> <data name="QuickAccent_ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="QuickAccent_ExcludedApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: Teams.exe</value> </data> <data name="LearnMore_TextExtractor.Text" xml:space="preserve"> <value>Learn more about Text Extractor</value> </data> <data name="TextExtractor_Cancel" xml:space="preserve"> <value>cancel</value> </data> <data name="General_SettingsBackupAndRestore_NothingToBackup" xml:space="preserve"> <value>A new backup was not created because no settings have been changed since last backup.</value> </data> <data name="General_SettingsBackupAndRestore_NoBackupFound" xml:space="preserve"> <value>No backup found</value> </data> <data name="General_SettingsBackupAndRestore_FailedToParseTime" xml:space="preserve"> <value>Failed to parse time</value> </data> <data name="General_SettingsBackupAndRestore_UnknownBackupTime" xml:space="preserve"> <value>Unknown</value> </data> <data name="General_SettingsBackupAndRestore_UnknownBackupSource" xml:space="preserve"> <value>Unknown</value> </data> <data name="General_SettingsBackupAndRestore_ThisMachine" xml:space="preserve"> <value>This computer</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsMatch" xml:space="preserve"> <value>Current settings match</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsStatusAt" xml:space="preserve"> <value>at</value> <comment>E.g., Food was served 'at' noon.</comment> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsDiffer" xml:space="preserve"> <value>Current settings differ</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsNoChecked" xml:space="preserve"> <value>Checking...</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsUnknown" xml:space="preserve"> <value>Unknown</value> </data> <data name="General_SettingsBackupAndRestore_NeverRestored" xml:space="preserve"> <value>Never restored</value> </data> <data name="General_SettingsBackupAndRestore_NothingToRestore" xml:space="preserve"> <value>Nothing to restore.</value> </data> <data name="General_SettingsBackupAndRestore_NoSettingsFilesFound" xml:space="preserve"> <value>No settings files found.</value> </data> <data name="General_SettingsBackupAndRestore_BackupError" xml:space="preserve"> <value>There was an error. Try another backup location.</value> </data> <data name="General_SettingsBackupAndRestore_SettingsFormatError" xml:space="preserve"> <value>There was an error in the settings format. Please check the settings file:</value> </data> <data name="General_SettingsBackupAndRestore_BackupComplete" xml:space="preserve"> <value>Backup completed.</value> </data> <data name="General_SettingsBackupAndRestore_NoBackupSyncPath" xml:space="preserve"> <value>No backup location selected.</value> </data> <data name="General_SettingsBackupAndRestore_NoBackupsFound" xml:space="preserve"> <value>No backups found to restore.</value> </data> <data name="General_SettingsBackupAndRestore_InvalidBackupLocation" xml:space="preserve"> <value>Invalid backup location.</value> </data> <data name="TextExtractor.ModuleDescription" xml:space="preserve"> <value>Text Extractor is a convenient way to copy text from anywhere on screen</value> </data> <data name="TextExtractor.ModuleTitle" xml:space="preserve"> <value>Text Extractor</value> </data> <data name="TextExtractor_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Text Extractor</value> </data> <data name="TextExtractor_SupportedLanguages.Title" xml:space="preserve"> <value>Text Extractor can only recognize languages that have the OCR pack installed.</value> </data> <data name="TextExtractor_SupportedLanguages_Link.Content" xml:space="preserve"> <value>Learn more about supported languages</value> </data> <data name="Shell_TextExtractor.Content" xml:space="preserve"> <value>Text Extractor</value> </data> <data name="Launch_TextExtractor.Content" xml:space="preserve"> <value>Launch Text Extractor</value> </data> <data name="Oobe_TextExtractor.Title" xml:space="preserve"> <value>Text Extractor</value> </data> <data name="Oobe_TextExtractor_HowToUse.Text" xml:space="preserve"> <value>to open Text Extractor and then selecting a region to copy the text from.</value> </data> <data name="Oobe_TextExtractor_TipsAndTricks.Text" xml:space="preserve"> <value>Hold the shift key to move the selection region around.</value> </data> <data name="TextExtractor.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> </data> <data name="Oobe_TextExtractor.Description" xml:space="preserve"> <value>Text Extractor works like Snipping Tool, but copies the text out of the selected region using OCR and puts it on the clipboard.</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Monaco_Try_Format.Description" xml:space="preserve"> <value>Applies to json and xml. Files remain unchanged.</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Monaco_Try_Format.Header" xml:space="preserve"> <value>Try to format the source for preview</value> </data> <data name="Run_ConflictingKeywordInfo.Title" xml:space="preserve"> <value>Some characters and phrases may conflict with global queries of other plugins if you use them as activation command.</value> </data> <data name="Run_ConflictingKeywordInfo_Link.Content" xml:space="preserve"> <value>Learn more about conflicting activation commands</value> </data> <data name="MeasureTool_ContinuousCapture_Information.Title" xml:space="preserve"> <value>The continuous capture mode will consume more resources when in use. Also, measurements will be excluded from screenshots and screen capture.</value> <comment>pointer as in mouse pointer. Resources refer to things like CPU, GPU, RAM</comment> </data> <data name="QuickAccent_Description_Indicator.Header" xml:space="preserve"> <value>Show the Unicode code and name of the currently selected character</value> </data> <data name="QuickAccent_SortByUsageFrequency_Indicator.Header" xml:space="preserve"> <value>Sort characters by usage frequency</value> </data> <data name="QuickAccent_SortByUsageFrequency_Indicator.Description" xml:space="preserve"> <value>Track characters usage frequency and sort them accordingly</value> </data> <data name="QuickAccent_StartSelectionFromTheLeft_Indicator.Header" xml:space="preserve"> <value>Start selection from the left</value> </data> <data name="QuickAccent_StartSelectionFromTheLeft_Indicator.Description" xml:space="preserve"> <value>Start selection from the leftmost character for all activation keys, including left and right arrows</value> </data> <data name="QuickAccent_DisableFullscreen.Header" xml:space="preserve"> <value>Disable when Game Mode is On</value> </data> <data name="QuickAccent_Language.Header" xml:space="preserve"> <value>Characters</value> </data> <data name="QuickAccent_SelectedLanguage.Header" xml:space="preserve"> <value>Choose a character set</value> </data> <data name="QuickAccent_SelectedLanguage.Description" xml:space="preserve"> <value>Show only accented characters common to the selected set</value> </data> <data name="QuickAccent_SelectedLanguage_All.Content" xml:space="preserve"> <value>All available</value> </data> <data name="QuickAccent_SelectedLanguage_Catalan.Content" xml:space="preserve"> <value>Catalan</value> </data> <data name="QuickAccent_SelectedLanguage_Currency.Content" xml:space="preserve"> <value>Currency</value> </data> <data name="QuickAccent_SelectedLanguage_Croatian.Content" xml:space="preserve"> <value>Croatian</value> </data> <data name="QuickAccent_SelectedLanguage_Czech.Content" xml:space="preserve"> <value>Czech</value> </data> <data name="QuickAccent_SelectedLanguage_Gaeilge.Content" xml:space="preserve"> <value>Gaeilge</value> <comment>Gaelic language spoken in Ireland</comment> </data> <data name="QuickAccent_SelectedLanguage_Gaidhlig.Content" xml:space="preserve"> <value>Gàidhlig</value> <comment>Scottish Gaelic</comment> </data> <data name="QuickAccent_SelectedLanguage_German.Content" xml:space="preserve"> <value>German</value> </data> <data name="QuickAccent_SelectedLanguage_Hebrew.Content" xml:space="preserve"> <value>Hebrew</value> </data> <data name="QuickAccent_SelectedLanguage_French.Content" xml:space="preserve"> <value>French</value> </data> <data name="QuickAccent_SelectedLanguage_Estonian.Content" xml:space="preserve"> <value>Estonian</value> </data> <data name="QuickAccent_SelectedLanguage_Lithuanian.Content" xml:space="preserve"> <value>Lithuanian</value> </data> <data name="QuickAccent_SelectedLanguage_Macedonian.Content" xml:space="preserve"> <value>Macedonian</value> </data> <data name="QuickAccent_SelectedLanguage_Maori.Content" xml:space="preserve"> <value>Maori</value> </data> <data name="QuickAccent_SelectedLanguage_Dutch.Content" xml:space="preserve"> <value>Dutch</value> </data> <data name="QuickAccent_SelectedLanguage_Norwegian.Content" xml:space="preserve"> <value>Norwegian</value> </data> <data name="QuickAccent_SelectedLanguage_Pinyin.Content" xml:space="preserve"> <value>Pinyin</value> </data> <data name="QuickAccent_SelectedLanguage_Polish.Content" xml:space="preserve"> <value>Polish</value> </data> <data name="QuickAccent_SelectedLanguage_Portuguese.Content" xml:space="preserve"> <value>Portuguese</value> </data> <data name="QuickAccent_SelectedLanguage_Slovakian.Content" xml:space="preserve"> <value>Slovakian</value> </data> <data name="QuickAccent_SelectedLanguage_Spanish.Content" xml:space="preserve"> <value>Spanish</value> </data> <data name="QuickAccent_SelectedLanguage_Swedish.Content" xml:space="preserve"> <value>Swedish</value> </data> <data name="QuickAccent_SelectedLanguage_Turkish.Content" xml:space="preserve"> <value>Turkish</value> </data> <data name="QuickAccent_SelectedLanguage_Icelandic.Content" xml:space="preserve"> <value>Icelandic</value> </data> <data name="QuickAccent_SelectedLanguage_Romanian.Content" xml:space="preserve"> <value>Romanian</value> </data> <data name="QuickAccent_SelectedLanguage_Serbian.Content" xml:space="preserve"> <value>Serbian</value> </data> <data name="QuickAccent_SelectedLanguage_Hungarian.Content" xml:space="preserve"> <value>Hungarian</value> </data> <data name="QuickAccent_SelectedLanguage_Italian.Content" xml:space="preserve"> <value>Italian</value> </data> <data name="QuickAccent_SelectedLanguage_Kurdish.Content" xml:space="preserve"> <value>Kurdish</value> </data> <data name="QuickAccent_SelectedLanguage_Welsh.Content" xml:space="preserve"> <value>Welsh</value> </data> <data name="Hosts.ModuleDescription" xml:space="preserve"> <value>Quick and simple utility for managing hosts file.</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Hosts.ModuleTitle" xml:space="preserve"> <value>Hosts File Editor</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Shell_Hosts.Content" xml:space="preserve"> <value>Hosts File Editor</value> <comment>Products name: Navigation view item name for Hosts File Editor</comment> </data> <data name="Hosts_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Hosts_Toggle_ShowStartupWarning.Header" xml:space="preserve"> <value>Show a warning at startup</value> </data> <data name="Hosts_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="Hosts_LaunchButtonControl.Description" xml:space="preserve"> <value>Manage your hosts file</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Hosts_LaunchButtonControl.Header" xml:space="preserve"> <value>Launch Host File Editor</value> <comment>"Host File Editor" is a product name</comment> </data> <data name="Hosts_LaunchButton_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Launch Host File Editor</value> <comment>"Host File Editor" is a product name</comment> </data> <data name="Hosts_AdditionalLinesPosition.Header" xml:space="preserve"> <value>Position of additional content</value> </data> <data name="Hosts_AdditionalLinesPosition_Bottom.Content" xml:space="preserve"> <value>Bottom</value> </data> <data name="Hosts_AdditionalLinesPosition_Top.Content" xml:space="preserve"> <value>Top</value> </data> <data name="Hosts_Behavior_GroupSettings.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="Launch_Hosts.Content" xml:space="preserve"> <value>Launch Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="LearnMore_Hosts.Text" xml:space="preserve"> <value>Learn more about Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Oobe_Hosts.Description" xml:space="preserve"> <value>Hosts File Editor is a quick and simple utility for managing hosts file.</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Oobe_Hosts.Title" xml:space="preserve"> <value>Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Hosts_Toggle_LaunchAdministrator.Description" xml:space="preserve"> <value>Needs to be launched as administrator in order to make changes to the hosts file</value> </data> <data name="Hosts_Toggle_LaunchAdministrator.Header" xml:space="preserve"> <value>Launch as administrator</value> </data> <data name="ShortcutGuide_PressTimeForTaskbarIconShortcuts.Header" xml:space="preserve"> <value>Press duration before showing taskbar icon shortcuts (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="FileLocksmith.ModuleDescription" xml:space="preserve"> <value>A Windows shell extension to find out which processes are using the selected files and directories.</value> </data> <data name="FileLocksmith.ModuleTitle" xml:space="preserve"> <value>File Locksmith</value> </data> <data name="Shell_FileLocksmith.Content" xml:space="preserve"> <value>File Locksmith</value> <comment>Product name: Navigation view item name for FileLocksmith</comment> </data> <data name="FileLocksmith_Enable_FileLocksmith.Header" xml:space="preserve"> <value>Enable File Locksmith</value> <comment>File Locksmith is the name of the utility</comment> </data> <data name="FileLocksmith_Toggle_StandardContextMenu.Content" xml:space="preserve"> <value>Default and extended context menu</value> </data> <data name="FileLocksmith_Toggle_ExtendedContextMenu.Content" xml:space="preserve"> <value>Extended context menu only</value> </data> <data name="FileLocksmith_Toggle_ContextMenu.Header" xml:space="preserve"> <value>Show File Locksmith in</value> </data> <data name="FileLocksmith_ShellIntegration.Header" xml:space="preserve"> <value>Shell integration</value> <comment>This refers to directly integrating in with Windows</comment> </data> <data name="GPO_IsSettingForced.Title" xml:space="preserve"> <value>The system administrator is forcing this setting.</value> </data> <data name="Hosts_AdditionalLinesPosition.Description" xml:space="preserve"> <value>Additional content includes the file header and lines that can't parse</value> </data> <data name="TextExtractor_Languages.Header" xml:space="preserve"> <value>Preferred language</value> </data> <data name="Alternate_OOBE_AlwaysOnTop_Description.Text" xml:space="preserve"> <value>Pin a window so that:</value> </data> <data name="Alternate_OOBE_AlwaysOnTop_Title.Text" xml:space="preserve"> <value>Always On Top</value> </data> <data name="Alternate_OOBE_ColorPicker_Description.Text" xml:space="preserve"> <value>To pick a color:</value> </data> <data name="Alternate_OOBE_ColorPicker_Title.Text" xml:space="preserve"> <value>Color Picker</value> </data> <data name="Alternate_OOBE_Description.Text" xml:space="preserve"> <value>Here are a few shortcuts to get you started:</value> </data> <data name="Alternate_OOBE_FancyZones_Description.Text" xml:space="preserve"> <value>To open the FancyZones editor, press:</value> </data> <data name="Alternate_OOBE_FancyZones_Title.Text" xml:space="preserve"> <value>FancyZones</value> </data> <data name="Alternate_OOBE_Run_Description.Text" xml:space="preserve"> <value>Get access to your files and more:</value> </data> <data name="Alternate_OOBE_Run_Title.Text" xml:space="preserve"> <value>PowerToys Run</value> </data> <data name="General_Experimentation.Header" xml:space="preserve"> <value>Experimentation</value> </data> <data name="GeneralPage_EnableExperimentation.Description" xml:space="preserve"> <value>Note: Only Windows Insider builds may be selected for experimentation</value> </data> <data name="GeneralPage_EnableExperimentation.Header" xml:space="preserve"> <value>Allow experimentation with new features</value> </data> <data name="GPO_ExperimentationIsDisallowed.Title" xml:space="preserve"> <value>The system administrator has disabled experimentation.</value> </data> <data name="Shell_PastePlain.Content" xml:space="preserve"> <value>Paste As Plain Text</value> <comment>Product name: Navigation view item name for Paste as Plain Text</comment> </data> <data name="PastePlain.ModuleDescription" xml:space="preserve"> <value>Paste As Plain Text is a quick shortcut for pasting the text contents of your clipboard without formatting. Note: the formatted text in the clipboard is replaced with the unformatted text.</value> </data> <data name="PastePlain.ModuleTitle" xml:space="preserve"> <value>Paste As Plain Text</value> </data> <data name="PastePlain_Cancel" xml:space="preserve"> <value>cancel</value> </data> <data name="PastePlain_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Paste As Plain Text</value> </data> <data name="Oobe_PastePlain.Description" xml:space="preserve"> <value>Paste As Plain Text strips rich formatting from your clipboard data and pastes it as non-formatted text.</value> </data> <data name="Oobe_PastePlain.Title" xml:space="preserve"> <value>Paste As Plain Text</value> </data> <data name="Oobe_PastePlain_HowToUse.Text" xml:space="preserve"> <value>to paste your clipboard data as plain text. Note: this will replace the formatted text in your clipboard with the plain text.</value> </data> <data name="AllAppsTxt.Text" xml:space="preserve"> <value>All apps</value> </data> <data name="BackBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Back</value> </data> <data name="BackLabel.Text" xml:space="preserve"> <value>Back</value> </data> <data name="BugReportBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Bug report</value> </data> <data name="BugReportTooltip.Text" xml:space="preserve"> <value>Bug report</value> </data> <data name="DocsBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Documentation</value> </data> <data name="DocsTooltip.Text" xml:space="preserve"> <value>Documentation</value> </data> <data name="FZEditorString" xml:space="preserve"> <value>FancyZones Editor</value> <comment>Do not localize this string</comment> </data> <data name="MoreBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>More</value> </data> <data name="MoreLabel.Text" xml:space="preserve"> <value>More</value> </data> <data name="SettingsBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Settings</value> </data> <data name="SettingsTooltip.Text" xml:space="preserve"> <value>Settings</value> </data> <data name="ShortcutsTxt.Text" xml:space="preserve"> <value>Shortcuts</value> </data> <data name="UpdateAvailable.Title" xml:space="preserve"> <value>Update available</value> </data> <data name="FileExplorerPreview_Toggle_Monaco_Max_File_Size.Header" xml:space="preserve"> <value>Maximum file size to preview</value> <comment>Size refers to the disk space used by a file</comment> </data> <data name="FileExplorerPreview_Toggle_Monaco_Max_File_Size.Description" xml:space="preserve"> <value>The maximum size, in kilobytes, for files to be displayed. This is a safety mechanism to prevent loading large files into RAM.</value> <comment>"RAM" refers to random access memory; "size" refers to disk space; "bytes" refer to the measurement unit</comment> </data> <data name="RegistryPreview.ModuleDescription" xml:space="preserve"> <value>A quick little utility to visualize and edit complex Windows Registry files.</value> </data> <data name="RegistryPreview.ModuleTitle" xml:space="preserve"> <value>Registry Preview</value> </data> <data name="Shell_RegistryPreview.Content" xml:space="preserve"> <value>Registry Preview</value> <comment>Product name: Navigation view item name for Registry Preview</comment> </data> <data name="RegistryPreview_Enable_RegistryPreview.Header" xml:space="preserve"> <value>Enable Registry Preview</value> <comment>Registry Preview is the name of the utility</comment> </data> <data name="Oobe_RegistryPreview_HowToUse.Text" xml:space="preserve"> <value>In File Explorer, right-click a .REG file and select **Preview** from the context menu.</value> </data> <data name="Oobe_RegistryPreview_TipsAndTricks.Text" xml:space="preserve"> <value>You can preview or edit Registry files in File Explorer or by opening the app from the PowerToys launcher.</value> </data> <data name="Oobe_RegistryPreview.Description" xml:space="preserve"> <value>Registry Preview is a quick little utility to visualize and edit complex Windows Registry files.</value> </data> <data name="Oobe_RegistryPreview.Title" xml:space="preserve"> <value>Registry Preview</value> <comment>Do not localize this string</comment> </data> <data name="LearnMore_RegistryPreview.Text" xml:space="preserve"> <value>Learn more about Registry Preview</value> <comment>Registry Preview is a product name, do not loc</comment> </data> <data name="Launch_RegistryPreview.Content" xml:space="preserve"> <value>Launch Registry Preview</value> <comment>"Registry Preview" is the name of the utility</comment> </data> <data name="MouseUtils_MouseJump.Description" xml:space="preserve"> <value>Quickly move the mouse pointer long distances.</value> <comment>"Mouse Jump" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_MouseJump.Header" xml:space="preserve"> <value>Mouse Jump</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_MouseJump_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to turn on or off this mode</value> </data> <data name="MouseUtils_MouseJump_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MouseUtils_Enable_MouseJump.Header" xml:space="preserve"> <value>Enable Mouse Jump</value> <comment>"Mouse Jump" is the name of the utility.</comment> </data> <data name="GPO_AutoDownloadUpdatesIsDisabled.Title" xml:space="preserve"> <value>The system administrator has disabled the automatic download of updates.</value> </data> <data name="Hosts_Toggle_LoopbackDuplicates.Description" xml:space="preserve"> <value>127.0.0.1, ::1, ...</value> <comment>"127.0.0.1 and ::1" are well known loopback addresses, do not loc</comment> </data> <data name="Hosts_Toggle_LoopbackDuplicates.Header" xml:space="preserve"> <value>Consider loopback addresses as duplicates</value> </data> <data name="RegistryPreview_Launch_GroupSettings.Header" xml:space="preserve"> <value>Launch</value> </data> <data name="RegistryPreview_LaunchButton_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Launch Registry Preview</value> </data> <data name="RegistryPreview_LaunchButtonControl.Header" xml:space="preserve"> <value>Launch Registry Preview</value> </data> <data name="RegistryPreview_DefaultRegApp.Header" xml:space="preserve"> <value>Default app</value> </data> <data name="RegistryPreview_DefaultRegApp.Description" xml:space="preserve"> <value>Make Registry Preview default app for opening .reg files</value> <comment>Registry Preview is app name. Do not localize.</comment> </data> <data name="PastePlain_ShortcutWarning.Title" xml:space="preserve"> <value>Using this shortcut may prevent non-text paste actions (e.g. images, files) or built-in paste plain text actions in other applications from functioning.</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize.Header" xml:space="preserve"> <value>Thumbnail Size</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Description_Prefix.Text" xml:space="preserve"> <value>Constrain thumbnail image size to a maximum of</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Description_Suffix.Text" xml:space="preserve"> <value>pixels</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Edit_Height.Header" xml:space="preserve"> <value>Maximum height (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Edit_Width.Header" xml:space="preserve"> <value>Maximum width (px)</value> <comment>px = pixels</comment> </data> <data name="Oobe_Peek.Description" xml:space="preserve"> <value>A lightning fast file preview feature for Windows.</value> </data> <data name="Oobe_Peek.Title" xml:space="preserve"> <value>Peek</value> </data> <data name="Oobe_Peek_HowToUse.Text" xml:space="preserve"> <value>to preview the file that's currently selected in File Explorer.</value> </data> <data name="MWB_PCNameLabel.PlaceholderText" xml:space="preserve"> <value>Device name</value> </data> <data name="MWB_SecurityKeyLabel.PlaceholderText" xml:space="preserve"> <value>Security key</value> </data> <data name="Hosts_Encoding.Description" xml:space="preserve"> <value>Choose the encoding of the hosts file</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Hosts_Encoding.Header" xml:space="preserve"> <value>Encoding</value> </data> <data name="Hosts_Encoding_Utf8.Content" xml:space="preserve"> <value>UTF-8</value> </data> <data name="Hosts_Encoding_Utf8Bom.Content" xml:space="preserve"> <value>UTF-8 with BOM</value> </data> <data name="MouseUtils_MouseHighlighter_AlwaysColor.Header" xml:space="preserve"> <value>Always highlight color</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsAutoHide.Content" xml:space="preserve"> <value>Automatically hide crosshairs when the mouse pointer is hidden</value> </data> <data name="MouseUtils_AutoActivate.Content" xml:space="preserve"> <value>Automatically activate on utility startup</value> </data> <data name="Run_FindMorePlugins.Text" xml:space="preserve"> <value>Find more plugins</value> </data> <data name="Run_PluginUseFindMorePlugins.Content" xml:space="preserve"> <value>Find more plugins</value> </data> <data name="Run_SomePluginsAreGpoManaged.Title" xml:space="preserve"> <value>The system administrator is managing the enabled state of some plugins.</value> </data> <data name="AlwaysOnTop_FrameOpacity.Header" xml:space="preserve"> <value>Opacity (%)</value> </data> <data name="MouseUtils_FindMyMouse_ActivationCustomizedShortcut.Content" xml:space="preserve"> <value>Custom shortcut</value> </data> <data name="MouseUtils_FindMyMouse_ActivationDoubleRightControlPress.Content" xml:space="preserve"> <value>Press Right Control twice</value> <comment>Right control is the physical key on the keyboard.</comment> </data> <data name="MouseUtils_FindMyMouse_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to turn on or off this mode</value> </data> <data name="MouseUtils_FindMyMouse_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="SettingsWindow_AdminTitle" xml:space="preserve"> <value>Administrator: PowerToys Settings</value> <comment>Title of the settings window when running as administrator</comment> </data> </root>
<?xml version="1.0" encoding="utf-8"?> <root> <!-- Microsoft ResX Schema Version 2.0 The primary goals of this format is to allow a simple XML format that is mostly human readable. The generation and parsing of the various data types are done through the TypeConverter classes associated with the data types. Example: ... ado.net/XML headers & schema ... <resheader name="resmimetype">text/microsoft-resx</resheader> <resheader name="version">2.0</resheader> <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader> <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader> <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data> <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data> <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64"> <value>[base64 mime encoded serialized .NET Framework object]</value> </data> <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value> <comment>This is a comment</comment> </data> There are any number of "resheader" rows that contain simple name/value pairs. Each data row contains a name, and value. The row also contains a type or mimetype. Type corresponds to a .NET class that support text/value conversion through the TypeConverter architecture. Classes that don't support this are serialized and stored with the mimetype set. The mimetype is used for serialized objects, and tells the ResXResourceReader how to depersist the object. This is currently not extensible. For a given mimetype the value must be set accordingly: Note - application/x-microsoft.net.object.binary.base64 is the format that the ResXResourceWriter will generate, however the reader can read any of the formats listed below. mimetype: application/x-microsoft.net.object.binary.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.soap.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Soap.SoapFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.bytearray.base64 value : The object must be serialized into a byte array : using a System.ComponentModel.TypeConverter : and then encoded with base64 encoding. --> <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> <xsd:import namespace="http://www.w3.org/XML/1998/namespace" /> <xsd:element name="root" msdata:IsDataSet="true"> <xsd:complexType> <xsd:choice maxOccurs="unbounded"> <xsd:element name="metadata"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" /> </xsd:sequence> <xsd:attribute name="name" use="required" type="xsd:string" /> <xsd:attribute name="type" type="xsd:string" /> <xsd:attribute name="mimetype" type="xsd:string" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="assembly"> <xsd:complexType> <xsd:attribute name="alias" type="xsd:string" /> <xsd:attribute name="name" type="xsd:string" /> </xsd:complexType> </xsd:element> <xsd:element name="data"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" /> <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="resheader"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" /> </xsd:complexType> </xsd:element> </xsd:choice> </xsd:complexType> </xsd:element> </xsd:schema> <resheader name="resmimetype"> <value>text/microsoft-resx</value> </resheader> <resheader name="version"> <value>2.0</value> </resheader> <resheader name="reader"> <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <resheader name="writer"> <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <data name="Attribution_Rooler.Text" xml:space="preserve"> <value>Inspired by Rooler</value> <comment>Rooler is a name of the tool.</comment> </data> <data name="Shell_VideoConference.Content" xml:space="preserve"> <value>Video Conference Mute</value> <comment>Navigation view item name for Video Conference</comment> </data> <data name="Shell_MeasureTool.Content" xml:space="preserve"> <value>Screen Ruler</value> <comment>Product name: Navigation view item name for Screen Ruler</comment> </data> <data name="MeasureTool.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="MeasureTool.ModuleDescription" xml:space="preserve"> <value>Screen Ruler is a quick and easy way to measure pixels on your screen.</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool.ModuleTitle" xml:space="preserve"> <value>Screen Ruler</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool_ActivationSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="MeasureTool_Settings.Header" xml:space="preserve"> <value>Behavior</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MeasureTool_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to bring up the command bar</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool_DefaultMeasureStyle.Header" xml:space="preserve"> <value>Default measure style</value> </data> <data name="MeasureTool_DefaultMeasureStyle.Description" xml:space="preserve"> <value>The utility will start having the selected style activated</value> </data> <data name="MeasureTool_DefaultMeasureStyle_None.Content" xml:space="preserve"> <value>None</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Bounds.Content" xml:space="preserve"> <value>Bounds</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Spacing.Content" xml:space="preserve"> <value>Spacing</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Horizontal_Spacing.Content" xml:space="preserve"> <value>Horizontal spacing</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Vertical_Spacing.Content" xml:space="preserve"> <value>Vertical spacing</value> </data> <data name="MeasureTool_UnitsOfMeasure.Header" xml:space="preserve"> <value>Units of measurement</value> </data> <data name="MeasureTool_UnitsOfMeasure_Pixels.Content" xml:space="preserve"> <value>Pixels</value> </data> <data name="MeasureTool_UnitsOfMeasure_Inches.Content" xml:space="preserve"> <value>Inches</value> </data> <data name="MeasureTool_UnitsOfMeasure_Centimeters.Content" xml:space="preserve"> <value>Centimeters</value> </data> <data name="MeasureTool_PixelTolerance.Header" xml:space="preserve"> <value>Pixel tolerance for edge detection</value> </data> <data name="MeasureTool_MeasureCrossColor.Header" xml:space="preserve"> <value>Line color</value> </data> <data name="MeasureTool_ContinuousCapture.Header" xml:space="preserve"> <value>Capture screen continuously during measuring</value> </data> <data name="MeasureTool_ContinuousCapture.Description" xml:space="preserve"> <value>Refresh screen contexts in real-time instead of making a screenshot once</value> </data> <data name="MeasureTool_PerColorChannelEdgeDetection.Header" xml:space="preserve"> <value>Per color channel edge detection</value> </data> <data name="MeasureTool_PerColorChannelEdgeDetection.Description" xml:space="preserve"> <value>If enabled, test that all color channels are within a tolerance distance from each other. Otherwise, check that the sum of all color channels differences is smaller than the tolerance.</value> </data> <data name="MeasureTool_DrawFeetOnCross.Header" xml:space="preserve"> <value>Draw feet on cross</value> </data> <data name="MeasureTool_DrawFeetOnCross.Description" xml:space="preserve"> <value>Adds feet to the end of cross lines</value> </data> <data name="MeasureTool_EnableMeasureTool.Header" xml:space="preserve"> <value>Enable Screen Ruler</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MouseWithoutBorders_ActivationSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="MouseWithoutBorders_DeviceLayoutSettings.Header" xml:space="preserve"> <value>Device layout</value> </data> <data name="MouseWithoutBorders_DeviceLayoutSettings.Description" xml:space="preserve"> <value>Drag and drop a machine to rearrange the order.</value> </data> <data name="MouseWithoutBorders_CannotDragDropAsAdmin.Title" xml:space="preserve"> <value>It is not possible to use drag and drop while running PowerToys elevated. As a workaround, please restart PowerToys without elevation to edit the device layout.</value> </data> <data name="MouseWithoutBorders_KeySettings.Header" xml:space="preserve"> <value>Encryption key</value> </data> <data name="MouseWithoutBorders_SecurityKey.Header" xml:space="preserve"> <value>Security key</value> </data> <data name="MouseWithoutBorders_SecurityKey.Description" xml:space="preserve"> <value>The key must be auto generated in one machine by clicking on New Key, then typed in other machines</value> </data> <data name="MouseWithoutBorders_NewKey.Content" xml:space="preserve"> <value>New key</value> </data> <data name="MouseWithoutBorders_CopyMachineName.Text" xml:space="preserve"> <value>Copy to clipboard</value> </data> <data name="MouseWithoutBorders_ReconnectButton.Text" xml:space="preserve"> <value>Refresh connections</value> </data> <data name="MouseWithoutBorders_ReconnectTooltip.Text" xml:space="preserve"> <value>Reestablishes connections with other devices if you are experiencing issues.</value> </data> <data name="MouseWithoutBorders_ThisMachineNameLabel.Header" xml:space="preserve"> <value>Host name of this device</value> </data> <data name="MouseWithoutBorders_Connect.Content" xml:space="preserve"> <value>Connect</value> </data> <data name="MouseWithoutBorders_UninstallService.Header" xml:space="preserve"> <value>Uninstall service</value> </data> <data name="MouseWithoutBorders_UninstallService.Description" xml:space="preserve"> <value>Removes the service from the computer. Needs to run as administrator.</value> </data> <data name="MouseWithoutBorders_Settings.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="MouseWithoutBorders_TroubleShooting.Header" xml:space="preserve"> <value>Troubleshooting</value> </data> <data name="MouseWithoutBorders_AddFirewallRuleButtonControl.Header" xml:space="preserve"> <value>Add a firewall rule for Mouse Without Borders</value> <comment>"Mouse Without Borders" is a product name</comment> </data> <data name="MouseWithoutBorders_AddFirewallRuleButtonControl.Description" xml:space="preserve"> <value>Adding a firewall rule might help solve connection issues.</value> </data> <data name="MouseWithoutBorders_RunAsAdminText.Title" xml:space="preserve"> <value>You need to run as administrator to modify this setting.</value> </data> <data name="MouseWithoutBorders_ServiceUserUninstallWarning.Title" xml:space="preserve"> <value>If PowerToys is installed as a user, uninstalling/upgrading may require the Mouse Without Borders service to be removed manually later.</value> </data> <data name="MouseWithoutBorders_ServiceSettings.Header" xml:space="preserve"> <value>Service</value> </data> <data name="MouseWithoutBorders_Toggle_Enable.Header" xml:space="preserve"> <value>Enable Mouse Without Borders</value> </data> <data name="MouseWithoutBorders.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="MouseWithoutBorders.ModuleDescription" xml:space="preserve"> <value>Mouse Without Borders is a quick and easy way to move your cursor across multiple devices.</value> <comment>"Mouse Without Borders" is the name of the utility</comment> </data> <data name="MouseWithoutBorders.ModuleTitle" xml:space="preserve"> <value>Mouse Without Borders</value> <comment>"Mouse Without Borders" is the name of the utility</comment> </data> <data name="MouseWithoutBorders_UseService.Header" xml:space="preserve"> <value>Use Service</value> </data> <data name="MouseWithoutBorders_UseService.Description" xml:space="preserve"> <value>Runs in service mode, that allows MWB to control remote machines when they're locked. Also allows control of system and administrator applications.</value> </data> <data name="MouseWithoutBorders_MatrixOneRow.Header" xml:space="preserve"> <value>Devices in a single row</value> </data> <data name="MouseWithoutBorders_MatrixOneRow.Description" xml:space="preserve"> <value>Sets whether the devices are aligned on a single row. A two by two matrix is considered otherwise.</value> </data> <data name="MouseWithoutBorders_WrapMouse.Header" xml:space="preserve"> <value>Wrap mouse</value> </data> <data name="MouseWithoutBorders_WrapMouse.Description" xml:space="preserve"> <value>Move control back to the first machine when mouse moves past the last one.</value> </data> <data name="MouseWithoutBorders_ShareClipboard.Header" xml:space="preserve"> <value>Share clipboard</value> </data> <data name="MouseWithoutBorders_TransferFile.Header" xml:space="preserve"> <value>Transfer file</value> </data> <data name="MouseWithoutBorders_HideMouseAtScreenEdge.Header" xml:space="preserve"> <value>Hide mouse at the screen edge</value> </data> <data name="MouseWithoutBorders_DrawMouseCursor.Header" xml:space="preserve"> <value>Draw mouse cursor</value> </data> <data name="MouseWithoutBorders_ValidateRemoteMachineIP.Header" xml:space="preserve"> <value>Validate remote machine IP</value> </data> <data name="MouseWithoutBorders_SameSubnetOnly.Header" xml:space="preserve"> <value>Same subnet only</value> </data> <data name="MouseWithoutBorders_BlockScreenSaverOnOtherMachines.Header" xml:space="preserve"> <value>Block screen saver on other machines</value> </data> <data name="MouseWithoutBorders_MoveMouseRelatively.Header" xml:space="preserve"> <value>Move mouse relatively</value> </data> <data name="MouseWithoutBorders_BlockMouseAtScreenCorners.Header" xml:space="preserve"> <value>Block mouse at screen corners</value> </data> <data name="MouseWithoutBorders_ShowClipboardAndNetworkStatusMessages.Header" xml:space="preserve"> <value>Show clipboard and network status messages</value> </data> <data name="MouseWithoutBorders_ShowOriginalUI.Header" xml:space="preserve"> <value>Show the original Mouse Without Borders UI</value> </data> <data name="MouseWithoutBorders_ShowOriginalUI.Description" xml:space="preserve"> <value>This is accessible from the system tray and requires a restart.</value> </data> <data name="MouseWithoutBorders_ShareClipboard.Description" xml:space="preserve"> <value>If share clipboard stops working, Ctrl+Alt+Del then Esc may solve the problem.</value> </data> <data name="MouseWithoutBorders_TransferFile.Description" xml:space="preserve"> <value>If a file (&lt;100MB) is copied, it will be transferred to the remote machine clipboard.</value> </data> <data name="MouseWithoutBorders_HideMouseAtScreenEdge.Description" xml:space="preserve"> <value>Hide the mouse cursor at the top edge of the screen when switching to other machine. This option also steals the focus from any full-screen app to ensure the keyboard input is redirected.</value> </data> <data name="MouseWithoutBorders_DrawMouseCursor.Description" xml:space="preserve"> <value>Mouse cursor may not be visible in Windows 10 and later versions of Windows when there is no physical mouse attached.</value> </data> <data name="MouseWithoutBorders_ValidateRemoteMachineIP.Description" xml:space="preserve"> <value>Reverse DNS lookup to validate machine IP Address.</value> </data> <data name="MouseWithoutBorders_SameSubnetOnly.Description" xml:space="preserve"> <value>Only connect to machines in the same intranet NNN.NNN.*.* (only works when both machines have IPv4 enabled)</value> </data> <data name="MouseWithoutBorders_IPAddressMapping_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: MyLaptop 192.168.0.24</value> <comment>Don't translate MyLaptop</comment> </data> <data name="MouseWithoutBorders_IPAddressMapping.Header" xml:space="preserve"> <value>IP address mapping</value> </data> <data name="MouseWithoutBorders_IPAddressMapping.Description" xml:space="preserve"> <value>Resolve machine's IP address using manually entered mappings below.</value> </data> <data name="MouseWithoutBorders_BlockScreenSaverOnOtherMachines.Description" xml:space="preserve"> <value>Prevent screen saver from starting on other machines when user is actively working on this machine.</value> </data> <data name="MouseWithoutBorders_MoveMouseRelatively.Description" xml:space="preserve"> <value>Use this option when remote machine's monitor settings are different, or remote machine has multiple monitors.</value> </data> <data name="MouseWithoutBorders_BlockMouseAtScreenCorners.Description" xml:space="preserve"> <value>To avoid accident machine-switch at screen corners.</value> </data> <data name="MouseWithoutBorders_ShowClipboardAndNetworkStatusMessages.Description" xml:space="preserve"> <value>Show clipboard activities and network status in system tray notifications</value> </data> <data name="MouseWithoutBorders_KeyboardShortcuts_Group.Header" xml:space="preserve"> <value>Keyboard shortcuts</value> <comment>keyboard is the hardware peripheral</comment> </data> <data name="MouseWithoutBorders_AdvancedSettings_Group.Header" xml:space="preserve"> <value>Advanced Settings</value> </data> <data name="MouseWithoutBorders_EasyMouseOption.Header" xml:space="preserve"> <value>Easy Mouse: move between machines by moving the mouse pointer to the screen edges.</value> </data> <data name="MouseWithoutBorders_EasyMouseOption.Description" xml:space="preserve"> <value>Can also be set to move only when pressing Shift or Ctrl.</value> <comment>Shift and Ctrl are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_EasyMouseOption_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_EasyMouseOption_Enabled.Content" xml:space="preserve"> <value>Enabled</value> </data> <data name="MouseWithoutBorders_EasyMouseOption_Ctrl.Content" xml:space="preserve"> <value>Ctrl</value> <comment>This is the Ctrl keyboard key</comment> </data> <data name="MouseWithoutBorders_EasyMouseOption_Shift.Content" xml:space="preserve"> <value>Shift</value> <comment>This is the Shift keyboard key</comment> </data> <data name="MouseWithoutBorders_LockMachinesShortcut.Header" xml:space="preserve"> <value>Shortcut to lock all machines.</value> </data> <data name="MouseWithoutBorders_LockMachinesShortcut.Description" xml:space="preserve"> <value>Hit this hotkey twice to lock all machines. Note: Only the machines which have the same shortcut configured will be locked.</value> </data> <data name="MouseWithoutBorders_ToggleEasyMouseShortcut.Header" xml:space="preserve"> <value>Shortcut to toggle Easy Mouse.</value> <comment>Ctrl and Alt are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_ToggleEasyMouseShortcut.Description" xml:space="preserve"> <value>Only works if EasyMouse is set to Enabled or Disabled.</value> </data> <data name="MouseWithoutBorders_ToggleEasyMouseShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut.Header" xml:space="preserve"> <value>Shortcut to switch between machines. Ctrl+Alt+:</value> <comment>Ctrl and Alt are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut.Description" xml:space="preserve"> <value>Click on Ctrl+Alt+ the chosen option to switch between machines.</value> <comment>Ctrl and Alt are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut_F1.Content" xml:space="preserve"> <value>F1, F2, F3, F4</value> <comment>Don't localize. These are keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut_1.Content" xml:space="preserve"> <value>1, 2, 3, 4</value> <comment>Don't localize. These are keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_LockMachinesShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_ReconnectShortcut.Header" xml:space="preserve"> <value>Shortcut to try reconnecting</value> </data> <data name="MouseWithoutBorders_ReconnectShortcut.Description" xml:space="preserve"> <value>Just in case the connection is lost for any reason.</value> </data> <data name="MouseWithoutBorders_ReconnectShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut.Header" xml:space="preserve"> <value>Shortcut to switch to multiple machine mode.</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut.Description" xml:space="preserve"> <value>Allows controlling all computers at once.</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut_Ctrl3.Content" xml:space="preserve"> <value>Ctrl three times</value> <comment>This is the Ctrl keyboard key</comment> </data> <data name="VideoConference_Enable.Header" xml:space="preserve"> <value>Enable Video Conference Mute</value> </data> <data name="VideoConference.ModuleDescription" xml:space="preserve"> <value>Video Conference Mute is a quick and easy way to do a global "mute" of both your microphone and webcam. Disabling this module or closing PowerToys will unmute the microphone and camera.</value> </data> <data name="VideoConference_CameraAndMicrophoneMuteHotkeyControl_Header.Header" xml:space="preserve"> <value>Mute camera &amp; microphone</value> </data> <data name="VideoConference_MicrophoneMuteHotkeyControl_Header.Header" xml:space="preserve"> <value>Mute microphone</value> </data> <data name="VideoConference_MicrophonePushToTalkHotkeyControl_Header.Header" xml:space="preserve"> <value>Push to talk</value> </data> <data name="VideoConference_CameraMuteHotkeyControl_Header.Header" xml:space="preserve"> <value>Mute camera</value> </data> <data name="VideoConference_SelectedCamera.Header" xml:space="preserve"> <value>Selected camera</value> </data> <data name="VideoConference_SelectedMicrophone.Header" xml:space="preserve"> <value>Selected microphone</value> </data> <data name="VideoConference_PushToReverse.Header" xml:space="preserve"> <value>Push to reverse</value> </data> <data name="VideoConference_PushToReverse.Description" xml:space="preserve"> <value>If enabled, allows both push to talk and push to mute, depending on microphone state</value> </data> <data name="VideoConference_CameraOverlayImagePathHeader.Header" xml:space="preserve"> <value>Image displayed when camera is muted</value> </data> <data name="VideoConference_ToolbarPosition.Header" xml:space="preserve"> <value>Toolbar position</value> </data> <data name="VideoConference_ToolbarPosition_TopCenter.Content" xml:space="preserve"> <value>Top center</value> </data> <data name="VideoConference_ToolbarPosition_TopLeftCorner.Content" xml:space="preserve"> <value>Top left corner</value> </data> <data name="VideoConference_ToolbarPosition_TopRightCorner.Content" xml:space="preserve"> <value>Top right corner</value> </data> <data name="VideoConference_ToolbarPosition_BottomLeftCorner.Content" xml:space="preserve"> <value>Bottom left corner</value> </data> <data name="VideoConference_ToolbarPosition_BottomCenter.Content" xml:space="preserve"> <value>Bottom center</value> </data> <data name="VideoConference_ToolbarPosition_BottomRightCorner.Content" xml:space="preserve"> <value>Bottom right corner</value> </data> <data name="VideoConference_ToolbarMonitor.Header" xml:space="preserve"> <value>Show toolbar on</value> </data> <data name="VideoConference_ToolbarMonitor_Main.Content" xml:space="preserve"> <value>Main monitor</value> </data> <data name="VideoConference_ToolbarMonitor_UnderCursor.Content" xml:space="preserve"> <value>Monitor under cursor</value> </data> <data name="VideoConference_ToolbarMonitor_ActiveWindow.Content" xml:space="preserve"> <value>Active window monitor</value> </data> <data name="VideoConference_ToolbarMonitor_All.Content" xml:space="preserve"> <value>All monitors</value> </data> <data name="VideoConference_ToolbarHide.Header" xml:space="preserve"> <value>Hide toolbar</value> </data> <data name="VideoConference_ToolbarHideMuted.Content" xml:space="preserve"> <value>When both camera and microphone are muted</value> </data> <data name="VideoConference_ToolbarHideNever.Content" xml:space="preserve"> <value>Never</value> </data> <data name="VideoConference_ToolbarHideUnmuted.Content" xml:space="preserve"> <value>When both camera and microphone are unmuted</value> </data> <data name="VideoConference_ToolbarHideTimeout.Content" xml:space="preserve"> <value>After timeout</value> </data> <data name="VideoConference.ModuleTitle" xml:space="preserve"> <value>Video Conference Mute</value> </data> <data name="VideoConference_Camera.Header" xml:space="preserve"> <value>Camera</value> </data> <data name="VideoConference_Camera.Description" xml:space="preserve"> <value>To use this feature, make sure to select PowerToys VideoConference Mute as your camera source in your apps.</value> </data> <data name="VideoConference_Microphone.Header" xml:space="preserve"> <value>Microphone</value> </data> <data name="VideoConference_Toolbar.Header" xml:space="preserve"> <value>Toolbar</value> </data> <data name="VideoConference_Behavior.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="VideoConference_StartupAction.Header" xml:space="preserve"> <value>Startup action</value> </data> <data name="VideoConference_StartupActionNothing.Content" xml:space="preserve"> <value>Nothing</value> </data> <data name="VideoConference_StartupActionUnmute.Content" xml:space="preserve"> <value>Unmute</value> </data> <data name="VideoConference_StartupActionMute.Content" xml:space="preserve"> <value>Mute</value> </data> <data name="VideoConference_Shortcuts.Header" xml:space="preserve"> <value>Shortcuts</value> </data> <data name="VideoConference_CameraOverlayImageAlt.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Camera overlay image preview</value> </data> <data name="VideoConference_CameraOverlayImageBrowse.Content" xml:space="preserve"> <value>Browse</value> </data> <data name="VideoConference_CameraOverlayImageClear.Content" xml:space="preserve"> <value>Clear</value> </data> <data name="Shell_General.Content" xml:space="preserve"> <value>General</value> <comment>Navigation view item name for General</comment> </data> <data name="Shell_Awake.Content" xml:space="preserve"> <value>Awake</value> <comment>Product name: Navigation view item name for Awake</comment> </data> <data name="Shell_PowerLauncher.Content" xml:space="preserve"> <value>PowerToys Run</value> <comment>Product name: Navigation view item name for PowerToys Run</comment> </data> <data name="Shell_PowerRename.Content" xml:space="preserve"> <value>PowerRename</value> <comment>Product name: Navigation view item name for PowerRename</comment> </data> <data name="Shell_ShortcutGuide.Content" xml:space="preserve"> <value>Shortcut Guide</value> <comment>Product name: Navigation view item name for Shortcut Guide</comment> </data> <data name="Shell_PowerPreview.Content" xml:space="preserve"> <value>File Explorer add-ons</value> <comment>Product name: Navigation view item name for File Explorer. Please use File Explorer as in the context of File Explorer in Windows</comment> </data> <data name="Shell_FancyZones.Content" xml:space="preserve"> <value>FancyZones</value> <comment>Product name: Navigation view item name for FancyZones</comment> </data> <data name="Shell_ImageResizer.Content" xml:space="preserve"> <value>Image Resizer</value> <comment>Product name: Navigation view item name for Image Resizer</comment> </data> <data name="Shell_ColorPicker.Content" xml:space="preserve"> <value>Color Picker</value> <comment>Product name: Navigation view item name for Color Picker</comment> </data> <data name="Shell_KeyboardManager.Content" xml:space="preserve"> <value>Keyboard Manager</value> <comment>Product name: Navigation view item name for Keyboard Manager</comment> </data> <data name="Shell_MouseWithoutBorders.Content" xml:space="preserve"> <value>Mouse Without Borders</value> <comment>Product name: Navigation view item name for Mouse Without Borders</comment> </data> <data name="Shell_MouseUtilities.Content" xml:space="preserve"> <value>Mouse utilities</value> <comment>Product name: Navigation view item name for Mouse utilities</comment> </data> <data name="Shell_NavigationMenu_Announce_Collapse" xml:space="preserve"> <value>Navigation closed</value> <comment>Accessibility announcement when the navigation pane collapses</comment> </data> <data name="Shell_NavigationMenu_Announce_Open" xml:space="preserve"> <value>Navigation opened</value> <comment>Accessibility announcement when the navigation pane opens</comment> </data> <data name="KeyboardManager_ConfigHeader.Text" xml:space="preserve"> <value>Current configuration</value> <comment>Keyboard Manager current configuration header</comment> </data> <data name="KeyboardManager.ModuleDescription" xml:space="preserve"> <value>Reconfigure your keyboard by remapping keys and shortcuts</value> <comment>Keyboard Manager page description</comment> </data> <data name="KeyboardManager_EnableToggle.Header" xml:space="preserve"> <value>Enable Keyboard Manager</value> <comment>Keyboard Manager enable toggle header. Do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="KeyboardManager_ProfileDescription.Text" xml:space="preserve"> <value>Select the profile to display the active key remap and shortcuts</value> <comment>Keyboard Manager configuration dropdown description</comment> </data> <data name="KeyboardManager_RemapKeyboardButton.Header" xml:space="preserve"> <value>Remap a key</value> <comment>Keyboard Manager remap keyboard button content</comment> </data> <data name="KeyboardManager_Keys.Header" xml:space="preserve"> <value>Keys</value> <comment>Keyboard Manager remap keyboard header</comment> </data> <data name="KeyboardManager_RemapShortcutsButton.Header" xml:space="preserve"> <value>Remap a shortcut</value> <comment>Keyboard Manager remap shortcuts button</comment> </data> <data name="KeyboardManager_Shortcuts.Header" xml:space="preserve"> <value>Shortcuts</value> <comment>Keyboard Manager remap keyboard header</comment> </data> <data name="KeyboardManager_All_Apps_Description" xml:space="preserve"> <value>All Apps</value> <comment>Should be the same as EditShortcuts_AllApps from keyboard manager editor</comment> </data> <data name="Shortcuts.Header" xml:space="preserve"> <value>Shortcuts</value> </data> <data name="Shortcut.Header" xml:space="preserve"> <value>Shortcut</value> </data> <data name="RemapKeysList.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Current Key Remappings</value> </data> <data name="RemapShortcutsList.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Current Shortcut Remappings</value> </data> <data name="KeyboardManager_RemappedKeysListItem.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Key Remapping</value> <comment>key as in keyboard key</comment> </data> <data name="KeyboardManager_RemappedShortcutsListItem.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Shortcut Remapping</value> </data> <data name="KeyboardManager_RemappedTo.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Remapped to</value> </data> <data name="KeyboardManager_ShortcutRemappedTo.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Remapped to</value> </data> <data name="KeyboardManager_TargetApp.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>For Target Application</value> <comment>What computer application would this be for</comment> </data> <data name="KeyboardManager_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Keyboard Manager</value> <comment>do not loc, product name</comment> </data> <data name="ColorPicker.ModuleDescription" xml:space="preserve"> <value>Quick and simple system-wide color picker.</value> </data> <data name="ColorPicker_EnableColorPicker.Header" xml:space="preserve"> <value>Enable Color Picker</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="ColorPicker_ChangeCursor.Content" xml:space="preserve"> <value>Change cursor when picking a color</value> </data> <data name="PowerLauncher.ModuleDescription" xml:space="preserve"> <value>A quick launcher that has additional capabilities without sacrificing performance.</value> </data> <data name="PowerLauncher_EnablePowerLauncher.Header" xml:space="preserve"> <value>Enable PowerToys Run</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="PowerLauncher_SearchResults.Header" xml:space="preserve"> <value>Search &amp; results</value> </data> <data name="PowerLauncher_SearchResultPreference.Header" xml:space="preserve"> <value>Search result preference</value> </data> <data name="PowerLauncher_UsePinyin.Header" xml:space="preserve"> <value>Use Pinyin</value> </data> <data name="PowerLauncher_UsePinyin.Description" xml:space="preserve"> <value>Experimental: Use Pinyin on the search query. May not work for every plugin.</value> </data> <data name="PowerLauncher_SearchResultPreference_MostRecentlyUsed" xml:space="preserve"> <value>Most recently used</value> </data> <data name="PowerLauncher_SearchResultPreference_AlphabeticalOrder" xml:space="preserve"> <value>Alphabetical order</value> </data> <data name="PowerLauncher_SearchResultPreference_RunningProcessesOpenApplications" xml:space="preserve"> <value>Running processes/open applications</value> </data> <data name="PowerLauncher_SearchTypePreference.Header" xml:space="preserve"> <value>Search type preference</value> </data> <data name="PowerLauncher_SearchTypePreference_ApplicationName" xml:space="preserve"> <value>Application name</value> </data> <data name="PowerLauncher_SearchTypePreference_StringInApplication" xml:space="preserve"> <value>A string that is contained in the application</value> </data> <data name="PowerLauncher_SearchTypePreference_ExecutableName" xml:space="preserve"> <value>Executable name</value> </data> <data name="PowerLauncher_MaximumNumberOfResults.Header" xml:space="preserve"> <value>Number of results shown before scrolling</value> </data> <data name="PowerLauncher_OpenPowerLauncher.Header" xml:space="preserve"> <value>Open PowerToys Run</value> </data> <data name="PowerLauncher_OpenFileLocation.Header" xml:space="preserve"> <value>Open file location</value> </data> <data name="PowerLauncher_CopyPathLocation.Header" xml:space="preserve"> <value>Copy path location</value> </data> <data name="PowerLauncher_OpenConsole.Header" xml:space="preserve"> <value>Open console</value> <comment>console refers to Windows command prompt</comment> </data> <data name="PowerLauncher_OverrideWinRKey.Content" xml:space="preserve"> <value>Override Win+R shortcut</value> </data> <data name="PowerLauncher_OverrideWinSKey.Content" xml:space="preserve"> <value>Override Win+S shortcut</value> </data> <data name="PowerLauncher_IgnoreHotkeysInFullScreen.Content" xml:space="preserve"> <value>Ignore shortcuts in fullscreen mode</value> </data> <data name="PowerLauncher_UseCentralizedKeyboardHook.Header" xml:space="preserve"> <value>Use centralized keyboard hook</value> </data> <data name="PowerLauncher_UseCentralizedKeyboardHook.Description" xml:space="preserve"> <value>Try this if there are issues with the shortcut (PowerToys Run might not get focus when triggered from an elevated window)</value> </data> <data name="PowerLauncher_ClearInputOnLaunch.Content" xml:space="preserve"> <value>Clear the previous query on launch</value> </data> <data name="PowerLauncher_TabSelectsContextButtons.Header" xml:space="preserve"> <value>Tab through context buttons</value> </data> <data name="PowerLauncher_TabSelectsContextButtons.Description" xml:space="preserve"> <value>Pressing tab will first select through the available context buttons of the current selection before moving onto the next result</value> </data> <data name="PowerLauncher_GenerateThumbnailsFromFiles.Header" xml:space="preserve"> <value>Generate thumbnails from files</value> </data> <data name="PowerLauncher_GenerateThumbnailsFromFiles.Description" xml:space="preserve"> <value>Results will try to generate thumbnails for files. Disabling this setting may increase stability and speed</value> </data> <data name="PowerLauncher_SearchQueryResultsWithDelay.Header" xml:space="preserve"> <value>Input Smoothing</value> <comment>This is about adding a delay to wait for more input before executing a search</comment> </data> <data name="PowerLauncher_SearchQueryResultsWithDelay.Description" xml:space="preserve"> <value>Wait for more input before searching. This reduces interface jumpiness and system load.</value> </data> <data name="PowerLauncher_FastSearchInputDelayMs.Header" xml:space="preserve"> <value>Immediate plugins</value> </data> <data name="PowerLauncher_FastSearchInputDelayMs.Description" xml:space="preserve"> <value>Affects the plugins that make the UI wait for their results by this amount. Recommended: 30-50 ms.</value> </data> <data name="PowerLauncher_SlowSearchInputDelayMs.Header" xml:space="preserve"> <value>Background execution plugins</value> </data> <data name="PowerLauncher_SlowSearchInputDelayMs.Description" xml:space="preserve"> <value>Affects the plugins that execute in the background by this amount. Recommended: 100-150 ms.</value> </data> <data name="PowerLauncher_SearchInputDelayMs.Header" xml:space="preserve"> <value>Fast plugin throttle (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="KeyboardManager_KeysMappingLayoutRightHeader.Text" xml:space="preserve"> <value>To:</value> <comment>Keyboard Manager mapping keys view right header</comment> </data> <data name="Appearance_GroupSettings.Text" xml:space="preserve"> <value>Appearance</value> </data> <data name="Fancyzones_ImageHyperlinkToDocs.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>FancyZones windows</value> <comment>do not loc the Product name</comment> </data> <data name="FancyZones.ModuleDescription" xml:space="preserve"> <value>Create window layouts to help make multi-tasking easy.</value> <comment>windows refers to application windows</comment> </data> <data name="FancyZones_DisplayOrWorkAreaChangeMoveWindowsCheckBoxControl.Content" xml:space="preserve"> <value>Keep windows in their zones when the screen resolution or work area changes</value> <comment>windows refers to application windows</comment> </data> <data name="FancyZones_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable FancyZones</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="FancyZones_ExcludeApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="FancyZones_ExcludeApps.Description" xml:space="preserve"> <value>Excludes an application from snapping to zones and will only react to Windows Snap - add one application name per line</value> </data> <data name="FancyZones_HighlightOpacity.Header" xml:space="preserve"> <value>Opacity (%)</value> </data> <data name="FancyZones_HotkeyEditorControl.Header" xml:space="preserve"> <value>Open layout editor</value> <comment>Shortcut to launch the FancyZones layout editor application</comment> </data> <data name="FancyZones_WindowSwitching_GroupSettings.Header" xml:space="preserve"> <value>Switch between windows in the current zone</value> </data> <data name="FancyZones_HotkeyNextTabControl.Header" xml:space="preserve"> <value>Next window</value> </data> <data name="FancyZones_HotkeyPrevTabControl.Header" xml:space="preserve"> <value>Previous window</value> </data> <data name="SettingsPage_SetShortcut.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Shortcut setting</value> </data> <data name="SettingsPage_SetShortcut_Glyph.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Information Symbol</value> </data> <data name="FancyZones_LaunchEditorButtonControl.Header" xml:space="preserve"> <value>Launch layout editor</value> <comment>launches the FancyZones layout editor application</comment> </data> <data name="FancyZones_LaunchEditorButtonControl.Description" xml:space="preserve"> <value>Set and manage your layouts</value> <comment>launches the FancyZones layout editor application</comment> </data> <data name="FancyZones_MakeDraggedWindowTransparentCheckBoxControl.Content" xml:space="preserve"> <value>Make dragged window transparent</value> </data> <data name="FancyZones_MouseDragCheckBoxControl_Header.Content" xml:space="preserve"> <value>Use a non-primary mouse button to toggle zone activation</value> </data> <data name="FancyZones_MouseMiddleClickSpanningMultipleZonesCheckBoxControl_Header.Content" xml:space="preserve"> <value>Use middle-click mouse button to toggle multiple zones spanning</value> </data> <data name="FancyZones_MoveWindowsAcrossAllMonitorsCheckBoxControl.Content" xml:space="preserve"> <value>Move windows between zones across all monitors</value> </data> <data name="FancyZones_OverrideSnapHotkeys.Header" xml:space="preserve"> <value>Override Windows Snap</value> </data> <data name="FancyZones_OverrideSnapHotkeys.Description" xml:space="preserve"> <value>This overrides the Windows Snap shortcut (Win + arrow) to move windows between zones</value> </data> <data name="FancyZones_ShiftDragCheckBoxControl_Header.Content" xml:space="preserve"> <value>Hold Shift key to activate zones while dragging a window</value> </data> <data name="FancyZones_ActivationNoShiftDrag" xml:space="preserve"> <value>Drag windows to activate zones</value> </data> <data name="FancyZones_ShowZonesOnAllMonitorsCheckBoxControl.Content" xml:space="preserve"> <value>Show zones on all monitors while dragging a window</value> </data> <data name="FancyZones_AppLastZoneMoveWindows.Content" xml:space="preserve"> <value>Move newly created windows to their last known zone</value> <comment>windows refers to application windows</comment> </data> <data name="FancyZones_OpenWindowOnActiveMonitor.Content" xml:space="preserve"> <value>Move newly created windows to the current active monitor (Experimental)</value> </data> <data name="FancyZones_UseCursorPosEditorStartupScreen.Header" xml:space="preserve"> <value>Launch editor on the display</value> </data> <data name="FancyZones_UseCursorPosEditorStartupScreen.Description" xml:space="preserve"> <value>When using multiple displays</value> </data> <data name="FancyZones_LaunchPositionMouse.Content" xml:space="preserve"> <value>Where the mouse pointer is</value> </data> <data name="FancyZones_LaunchPositionScreen.Content" xml:space="preserve"> <value>With active focus</value> </data> <data name="FancyZones_ZoneBehavior_GroupSettings.Header" xml:space="preserve"> <value>Zone behavior</value> </data> <data name="FancyZones_ZoneBehavior_GroupSettings.Description" xml:space="preserve"> <value>Manage how zones behave when using FancyZones</value> </data> <data name="FancyZones_Zones.Header" xml:space="preserve"> <value>Zones</value> </data> <data name="FancyZones_ZoneHighlightColor.Header" xml:space="preserve"> <value>Highlight color</value> </data> <data name="FancyZones_ZoneSetChangeMoveWindows.Content" xml:space="preserve"> <value>During zone layout changes, windows assigned to a zone will match new size/positions</value> </data> <data name="AttributionTitle.Text" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="General.ModuleTitle" xml:space="preserve"> <value>General</value> </data> <data name="GeneralPage_CheckForUpdates.Content" xml:space="preserve"> <value>Check for updates</value> </data> <data name="General_SettingsBackupAndRestoreLocationText.Header" xml:space="preserve"> <value>Location</value> </data> <data name="General_SettingsBackupAndRestore_ButtonBackup.Content" xml:space="preserve"> <value>Backup</value> </data> <data name="General_SettingsBackupInfo_FileNameHeader.Text" xml:space="preserve"> <value>File name:</value> </data> <data name="General_SettingsBackupAndRestore_LinkRefresh.Text" xml:space="preserve"> <value>Refresh</value> </data> <data name="General_SettingsBackupAndRestore_ButtonRestore.Content" xml:space="preserve"> <value>Restore</value> </data> <data name="General_SettingsBackupAndRestore_ButtonSelectLocation.Text" xml:space="preserve"> <value>Select folder</value> </data> <data name="GeneralPage_UpdateNow.Content" xml:space="preserve"> <value>Update now</value> </data> <data name="GeneralPage_PrivacyStatement_URL.Text" xml:space="preserve"> <value>Privacy statement</value> </data> <data name="GeneralPage_ReportAbug.Text" xml:space="preserve"> <value>Report a bug</value> <comment>Report an issue inside powertoys</comment> </data> <data name="GeneralPage_RequestAFeature_URL.Text" xml:space="preserve"> <value>Request a feature</value> <comment>Tell our team what we should build</comment> </data> <data name="GeneralPage_RestartAsAdmin_Button.Content" xml:space="preserve"> <value>Restart PowerToys as administrator</value> <comment>running PowerToys as a higher level user, account is typically referred to as an admin / administrator</comment> </data> <data name="GeneralPage_RunAtStartUp.Header" xml:space="preserve"> <value>Run at startup</value> </data> <data name="GeneralPage_RunAtStartUp.Description" xml:space="preserve"> <value>PowerToys will launch automatically</value> </data> <data name="PowerRename.ModuleDescription" xml:space="preserve"> <value>A Windows Shell extension for more advanced bulk renaming using search &amp; replace or regular expressions.</value> </data> <data name="PowerRename_ShellIntegration.Header" xml:space="preserve"> <value>Shell integration</value> <comment>This refers to directly integrating in with Windows</comment> </data> <data name="PowerRename_Toggle_Enable.Header" xml:space="preserve"> <value>Enable PowerRename</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="RadioButtons_Name_Theme.Text" xml:space="preserve"> <value>Settings theme</value> </data> <data name="PowerRename_Toggle_HideIcon.Content" xml:space="preserve"> <value>Hide icon in context menu</value> </data> <data name="PowerRename_Toggle_ContextMenu.Header" xml:space="preserve"> <value>Show PowerRename in</value> </data> <data name="PowerRename_Toggle_StandardContextMenu.Content" xml:space="preserve"> <value>Default and extended context menu</value> </data> <data name="PowerRename_Toggle_ExtendedContextMenu.Content" xml:space="preserve"> <value>Extended context menu only</value> </data> <data name="ExtendedContextMenuInfo.Title" xml:space="preserve"> <value>Press Shift + right-click on files to open the extended context menu</value> </data> <data name="PowerRename_Toggle_MaxDispListNum.Header" xml:space="preserve"> <value>Maximum number of items</value> </data> <data name="PowerRename_Toggle_RestoreFlagsOnLaunch.Header" xml:space="preserve"> <value>Show recently used strings</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_MD.Header" xml:space="preserve"> <value>Markdown</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_MD.Description" xml:space="preserve"> <value>.md, .markdown, .mdown, .mkdn, .mkd, .mdwn, .mdtxt, .mdtext</value> <comment>File extensions, should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_Monaco.Header" xml:space="preserve"> <value>Source code files (Monaco)</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_Monaco.Description" xml:space="preserve"> <value>.cpp, .py, .json, .xml, .csproj, ...</value> <comment>File extensions should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_SVG.Header" xml:space="preserve"> <value>Scalable Vector Graphics</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_SVG.Description" xml:space="preserve"> <value>.svg</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_Preview_SVG_Color_Mode.Header" xml:space="preserve"> <value>Color mode</value> </data> <data name="FileExplorerPreview_Preview_SVG_Color_Mode_Default.Content" xml:space="preserve"> <value>Windows default</value> </data> <data name="FileExplorerPreview_Preview_SVG_Color_Solid_Color.Content" xml:space="preserve"> <value>Solid color</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade.Content" xml:space="preserve"> <value>Checkered pattern</value> </data> <data name="FileExplorerPreview_Preview_SVG_Background_Color.Header" xml:space="preserve"> <value>Color</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_Mode.Header" xml:space="preserve"> <value>Checkered shade</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_1.Content" xml:space="preserve"> <value>Light</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_2.Content" xml:space="preserve"> <value>Medium</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_3.Content" xml:space="preserve"> <value>Dark</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_PDF.Header" xml:space="preserve"> <value>Portable Document Format</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_PDF.Description" xml:space="preserve"> <value>.pdf</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_SVG.Header" xml:space="preserve"> <value>Scalable Vector Graphics</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_SVG.Description" xml:space="preserve"> <value>.svg</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_STL.Header" xml:space="preserve"> <value>Stereolithography</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_STL.Description" xml:space="preserve"> <value>.stl</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_Color_Thumbnail_STL.Header" xml:space="preserve"> <value>Color</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_PDF.Header" xml:space="preserve"> <value>Portable Document Format</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_PDF.Description" xml:space="preserve"> <value>.pdf</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview.ModuleDescription" xml:space="preserve"> <value>These settings allow you to manage your Windows File Explorer custom preview handlers.</value> </data> <data name="PowerRename_AutoCompleteHeader.Header" xml:space="preserve"> <value>Auto-complete</value> </data> <data name="OpenSource_Notice.Text" xml:space="preserve"> <value>Open-source notice</value> </data> <data name="PowerRename_Toggle_AutoComplete.Header" xml:space="preserve"> <value>Enable auto-complete for the search &amp; replace fields</value> </data> <data name="FancyZones_BorderColor.Header" xml:space="preserve"> <value>Border color</value> </data> <data name="FancyZones_InActiveColor.Header" xml:space="preserve"> <value>Inactive color</value> </data> <data name="ShortcutGuide.ModuleDescription" xml:space="preserve"> <value>Shows a help overlay with Windows shortcuts.</value> </data> <data name="ShortcutGuide_PressTimeForGlobalWindowsShortcuts.Header" xml:space="preserve"> <value>Press duration before showing global Windows shortcuts (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="ShortcutGuide_ActivationMethod.Header" xml:space="preserve"> <value>Activation method</value> </data> <data name="ShortcutGuide_ActivationMethod.Description" xml:space="preserve"> <value>Use a shortcut or press the Windows key for some time to activate</value> </data> <data name="Radio_ShortcutGuide_ActivationMethod_CustomizedShortcut.Content" xml:space="preserve"> <value>Custom shortcut</value> </data> <data name="Radio_ShortcutGuide_ActivationMethod_LongPressWindowsKey.Content" xml:space="preserve"> <value>Hold down Windows key</value> </data> <data name="ShortcutGuide_PressWinKeyWarning.Title" xml:space="preserve"> <value>In some edge cases Shortcut Guide might not function correctly when using this activation method</value> </data> <data name="Appearance_Behavior.Header" xml:space="preserve"> <value>Appearance &amp; behavior</value> </data> <data name="General_SettingsBackupAndRestoreTitle.Header" xml:space="preserve"> <value>Backup &amp; restore</value> </data> <data name="General_SettingsBackupAndRestore.Header" xml:space="preserve"> <value>Backup and restore your settings</value> </data> <data name="General_SettingsBackupAndRestore.Description" xml:space="preserve"> <value>PowerToys will restart automatically if needed</value> </data> <data name="ShortcutGuide_Enable.Header" xml:space="preserve"> <value>Enable Shortcut Guide</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="ShortcutGuide_OverlayOpacity.Header" xml:space="preserve"> <value>Background opacity (%)</value> </data> <data name="ShortcutGuide_DisabledApps.Header" xml:space="preserve"> <value>Exclude apps</value> </data> <data name="ShortcutGuide_DisabledApps.Description" xml:space="preserve"> <value>Turns off Shortcut Guide when these applications have focus - add one application name per line</value> </data> <data name="ShortcutGuide_DisabledApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> <comment>Don't translate outlook.exe</comment> </data> <data name="ImageResizer_CustomSizes.Header" xml:space="preserve"> <value>Image sizes</value> </data> <data name="ImageResizer_Presets.Header" xml:space="preserve"> <value>Presets</value> </data> <data name="ImageResizer_Presets.Description" xml:space="preserve"> <value>Manage preset sizes that can be used in the editor</value> </data> <data name="ImageResizer_FilenameFormatHeader.Description" xml:space="preserve"> <value>This format is used as the filename for resized images</value> </data> <data name="ImageResizer.ModuleDescription" xml:space="preserve"> <value>Lets you resize images by right-clicking.</value> </data> <data name="ImageResizer_EnableToggle.Header" xml:space="preserve"> <value>Enable Image Resizer</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="ImagesSizesListView.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Image Size</value> </data> <data name="ImageResizer_Configurations.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Configurations</value> </data> <data name="ImageResizer_Name.Header" xml:space="preserve"> <value>Name</value> </data> <data name="ImageResizer_Fit.Header" xml:space="preserve"> <value>Fit</value> </data> <data name="ImageResizer_Width.Header" xml:space="preserve"> <value>Width</value> </data> <data name="ImageResizer_Height.Header" xml:space="preserve"> <value>Height</value> </data> <data name="ImageResizer_Size.Header" xml:space="preserve"> <value>Unit</value> </data> <data name="RemoveButton.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Remove</value> <comment>Removes a user defined setting group for Image Resizer</comment> </data> <data name="RemoveItem.Text" xml:space="preserve"> <value>Delete</value> </data> <data name="ImageResizer_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Image Resizer</value> </data> <data name="ImageResizer_AddSizeButton.Content" xml:space="preserve"> <value>Add new size</value> </data> <data name="ImageResizer_SaveSizeButton.Label" xml:space="preserve"> <value>Save sizes</value> </data> <data name="ImageResizer_Encoding.Header" xml:space="preserve"> <value>JPEG quality level (%)</value> </data> <data name="ImageResizer_PNGInterlacing.Header" xml:space="preserve"> <value>PNG interlacing</value> </data> <data name="ImageResizer_TIFFCompression.Header" xml:space="preserve"> <value>TIFF compression</value> </data> <data name="File.Header" xml:space="preserve"> <value>File</value> <comment>as in a computer file</comment> </data> <data name="Default.Content" xml:space="preserve"> <value>Default</value> </data> <data name="ImageResizer_ENCODER_TIFF_CCITT3.Content" xml:space="preserve"> <value>CCITT3</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_CCITT4.Content" xml:space="preserve"> <value>CCITT4</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_Default.Content" xml:space="preserve"> <value>Default</value> </data> <data name="ImageResizer_ENCODER_TIFF_LZW.Content" xml:space="preserve"> <value>LZW</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_None.Content" xml:space="preserve"> <value>None</value> </data> <data name="ImageResizer_ENCODER_TIFF_RLE.Content" xml:space="preserve"> <value>RLE</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_Zip.Content" xml:space="preserve"> <value>Zip</value> <comment>do not loc</comment> </data> <data name="ImageResizer_FallbackEncoder_BMP.Content" xml:space="preserve"> <value>BMP encoder</value> </data> <data name="ImageResizer_FallbackEncoder_GIF.Content" xml:space="preserve"> <value>GIF encoder</value> </data> <data name="ImageResizer_FallbackEncoder_JPEG.Content" xml:space="preserve"> <value>JPEG encoder</value> </data> <data name="ImageResizer_FallbackEncoder_PNG.Content" xml:space="preserve"> <value>PNG encoder</value> </data> <data name="ImageResizer_FallbackEncoder_TIFF.Content" xml:space="preserve"> <value>TIFF encoder</value> </data> <data name="ImageResizer_FallbackEncoder_WMPhoto.Content" xml:space="preserve"> <value>WMPhoto encoder</value> </data> <data name="ImageResizer_Sizes_Fit_Fill.Content" xml:space="preserve"> <value>Fill</value> <comment>Refers to filling an image into a certain size. It could overflow</comment> </data> <data name="ImageResizer_Sizes_Fit_Fill_ThirdPersonSingular.Text" xml:space="preserve"> <value>Fill</value> <comment>Refers to filling an image into a certain size. It could overflow</comment> </data> <data name="ImageResizer_Sizes_Fit_Fit.Content" xml:space="preserve"> <value>Fit</value> <comment>Refers to fitting an image into a certain size. It won't overflow</comment> </data> <data name="ImageResizer_Sizes_Fit_Stretch.Content" xml:space="preserve"> <value>Stretch</value> <comment>Refers to stretching an image into a certain size. Won't overflow but could distort.</comment> </data> <data name="ImageResizer_Sizes_Units_CM.Content" xml:space="preserve"> <value>Centimeters</value> </data> <data name="ImageResizer_Sizes_Units_Inches.Content" xml:space="preserve"> <value>Inches</value> </data> <data name="ImageResizer_Sizes_Units_Percent.Content" xml:space="preserve"> <value>Percent</value> </data> <data name="ImageResizer_Sizes_Units_Pixels.Content" xml:space="preserve"> <value>Pixels</value> </data> <data name="Off.Content" xml:space="preserve"> <value>Off</value> </data> <data name="On.Content" xml:space="preserve"> <value>On</value> </data> <data name="GeneralPage_ToggleSwitch_AlwaysRunElevated_Link.Content" xml:space="preserve"> <value>Learn more about administrator mode</value> </data> <data name="GeneralPage_ToggleSwitch_AutoDownloadUpdates.Header" xml:space="preserve"> <value>Download updates automatically</value> </data> <data name="GeneralPage_ToggleSwitch_AutoDownloadUpdates.Description" xml:space="preserve"> <value>Except on metered connections</value> </data> <data name="GeneralPage_ToggleSwitch_RunningAsAdminNote.Text" xml:space="preserve"> <value>Currently running as administrator</value> </data> <data name="GeneralSettings_AlwaysRunAsAdminText.Header" xml:space="preserve"> <value>Always run as administrator</value> </data> <data name="GeneralSettings_AlwaysRunAsAdminText.Description" xml:space="preserve"> <value>You need to run as administrator to use this setting</value> </data> <data name="GeneralSettings_RunningAsUserText" xml:space="preserve"> <value>Running as user</value> </data> <data name="GeneralSettings_RunningAsAdminText" xml:space="preserve"> <value>Running as administrator</value> </data> <data name="FancyZones.ModuleTitle" xml:space="preserve"> <value>FancyZones</value> </data> <data name="FileExplorerPreview.ModuleTitle" xml:space="preserve"> <value>File Explorer</value> </data> <data name="FileExplorerPreview_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>File Explorer</value> <comment>Use same translation as Windows does for File Explorer</comment> </data> <data name="ImageResizer.ModuleTitle" xml:space="preserve"> <value>Image Resizer</value> </data> <data name="KeyboardManager.ModuleTitle" xml:space="preserve"> <value>Keyboard Manager</value> </data> <data name="ColorPicker.ModuleTitle" xml:space="preserve"> <value>Color Picker</value> </data> <data name="PowerLauncher.ModuleTitle" xml:space="preserve"> <value>PowerToys Run</value> </data> <data name="PowerToys_Run_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>PowerToys Run</value> </data> <data name="PowerRename.ModuleTitle" xml:space="preserve"> <value>PowerRename</value> <comment>do not loc the product name</comment> </data> <data name="PowerRename_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>PowerRename</value> <comment>do not loc</comment> </data> <data name="ShortcutGuide.ModuleTitle" xml:space="preserve"> <value>Shortcut Guide</value> </data> <data name="Shortcut_Guide_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Shortcut Guide</value> </data> <data name="General_Repository.Text" xml:space="preserve"> <value>GitHub repository</value> </data> <data name="General_Version.Header" xml:space="preserve"> <value>Version</value> </data> <data name="General_VersionLastChecked.Text" xml:space="preserve"> <value>Last checked: </value> </data> <data name="General_SettingsBackupInfo_DateHeader.Text" xml:space="preserve"> <value>Created at:</value> </data> <data name="General_SettingsBackupAndRestoreStatusInfo.Header" xml:space="preserve"> <value>Backup information</value> </data> <data name="General_SettingsBackupInfo_SourceHeader.Text" xml:space="preserve"> <value>Source machine:</value> </data> <data name="General_SettingsBackupInfo_StatusHeader.Text" xml:space="preserve"> <value>Status:</value> </data> <data name="General_Version.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Version</value> </data> <data name="Admin_mode.Header" xml:space="preserve"> <value>Administrator mode</value> </data> <data name="FancyZones_RestoreSize.Content" xml:space="preserve"> <value>Restore the original size of windows when unsnapping</value> </data> <data name="ImageResizer_FallBackEncoderText.Header" xml:space="preserve"> <value>Fallback encoder</value> </data> <data name="ImageResizer_FileFormatDescription.Text" xml:space="preserve"> <value>The following parameters can be used:</value> </data> <data name="ImageResizer_FilenameFormatHeader.Header" xml:space="preserve"> <value>Filename format</value> </data> <data name="ImageResizer_FileModifiedDate.Header" xml:space="preserve"> <value>File modified timestamp</value> </data> <data name="ImageResizer_FileModifiedDate.Description" xml:space="preserve"> <value>Used as the 'modified timestamp' in the file properties</value> </data> <data name="ImageResizer_UseOriginalDate.Content" xml:space="preserve"> <value>Original file timestamp</value> </data> <data name="ImageResizer_UseResizeDate.Content" xml:space="preserve"> <value>Timestamp of resize action</value> </data> <data name="Encoding.Header" xml:space="preserve"> <value>Encoding</value> </data> <data name="KeyboardManager_RemapKeyboardButton.Description" xml:space="preserve"> <value>Remap keys to other keys or shortcuts</value> </data> <data name="KeyboardManager_RemapShortcutsButton.Description" xml:space="preserve"> <value>Remap shortcuts to other shortcuts or keys for all or specific applications</value> </data> <data name="General.ModuleDescription" xml:space="preserve"> <value>Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. Made with 💗 by Microsoft and the PowerToys community.</value> <comment>Windows refers to the OS</comment> </data> <data name="FancyZones_SpanZonesAcrossMonitors.Header" xml:space="preserve"> <value>Allow zones to span across monitors</value> </data> <data name="ImageResizer_Formatting_ActualHeight.Text" xml:space="preserve"> <value>Actual height</value> </data> <data name="ImageResizer_Formatting_ActualWidth.Text" xml:space="preserve"> <value>Actual width</value> </data> <data name="ImageResizer_Formatting_Filename.Text" xml:space="preserve"> <value>Original filename</value> </data> <data name="ImageResizer_Formatting_SelectedHeight.Text" xml:space="preserve"> <value>Selected height</value> </data> <data name="ImageResizer_Formatting_SelectedWidth.Text" xml:space="preserve"> <value>Selected width</value> </data> <data name="ImageResizer_Formatting_Sizename.Text" xml:space="preserve"> <value>Size name</value> </data> <data name="FancyZones_MoveWindowsBasedOnPositionCheckBoxControl.Content" xml:space="preserve"> <value>Move windows based on their position</value> <comment>Windows refers to application windows</comment> </data> <data name="GeneralSettings_NewVersionIsAvailable" xml:space="preserve"> <value>New update available</value> </data> <data name="GeneralSettings_VersionIsLatest" xml:space="preserve"> <value>PowerToys is up to date.</value> </data> <data name="FileExplorerPreview_IconThumbnail_GroupSettings.Header" xml:space="preserve"> <value>Thumbnail icon Preview</value> </data> <data name="FileExplorerPreview_IconThumbnail_GroupSettings.Description" xml:space="preserve"> <value>Select the file types for which thumbnail previews must be rendered.</value> </data> <data name="FileExplorerPreview_PreviewPane.Header" xml:space="preserve"> <value>Preview Pane</value> </data> <data name="FileExplorerPreview_PreviewPane.Description" xml:space="preserve"> <value>Select the file types which must be rendered in the Preview Pane. Ensure that Preview Pane is open by toggling the view with Alt + P in File Explorer.</value> <comment>Preview Pane and File Explorer are app/feature names in Windows. 'Alt + P' is a shortcut</comment> </data> <data name="FileExplorerPreview_RunAsAdminRequired.Title" xml:space="preserve"> <value>You need to run as administrator to modify these settings.</value> </data> <data name="FileExplorerPreview_RebootRequired.Title" xml:space="preserve"> <value>A reboot may be required for changes to these settings to take effect</value> </data> <data name="FileExplorerPreview_PreviewHandlerOutlookIncompatibility.Title" xml:space="preserve"> <value>Enabling the preview handlers will override other preview handlers already installed - there have been reports of incompatibility between Outlook and the PDF Preview Handler.</value> <comment>Outlook is the name of a Microsoft product</comment> </data> <data name="FileExplorerPreview_ThumbnailsMightNotAppearOnRemoteFolders.Title" xml:space="preserve"> <value>Thumbnails might not appear on paths managed by cloud storage solutions like OneDrive, since these solutions may get their thumbnails from the cloud instead of generating them locally.</value> <comment>OneDrive is the name of a Microsoft product</comment> </data> <data name="FancyZones_ExcludeApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> <comment>Don't translate outlook.exe</comment> </data> <data name="ImageResizer_FilenameFormatPlaceholder.PlaceholderText" xml:space="preserve"> <value>Example: %1 (%2)</value> </data> <data name="ImageResizer_FilenameParameters.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Filename parameters</value> </data> <data name="Radio_Theme_Dark.Content" xml:space="preserve"> <value>Dark</value> <comment>Dark refers to color, not weight</comment> </data> <data name="Radio_Theme_Light.Content" xml:space="preserve"> <value>Light</value> <comment>Light refers to color, not weight</comment> </data> <data name="Radio_Theme_Default.Content" xml:space="preserve"> <value>Windows default</value> <comment>Windows refers to the Operating system</comment> </data> <data name="Windows_Color_Settings.Content" xml:space="preserve"> <value>Windows color settings</value> <comment>Windows refers to the Operating system</comment> </data> <data name="ColorPicker_CopiedColorRepresentation.Header" xml:space="preserve"> <value>Default color format</value> </data> <data name="ColorPickerFirst.Content" xml:space="preserve"> <value>Pick a color and open editor</value> </data> <data name="EditorFirst.Content" xml:space="preserve"> <value>Open editor</value> </data> <data name="ColorPickerOnly.Content" xml:space="preserve"> <value>Only pick a color</value> </data> <data name="ColorPicker_ActivationAction.Header" xml:space="preserve"> <value>Activation behavior</value> </data> <data name="ColorFormats.Header" xml:space="preserve"> <value>Picker behavior</value> </data> <data name="ColorPicker_CopiedColorRepresentation.Description" xml:space="preserve"> <value>This format will be copied to your clipboard</value> </data> <data name="KBM_KeysCannotBeRemapped.Text" xml:space="preserve"> <value>Learn more about remapping limitations</value> <comment>This is a link that will discuss what is and is not possible for Keyboard manager to remap</comment> </data> <data name="FancyZones_Editor_GroupSettings.Header" xml:space="preserve"> <value>Editor</value> <comment>refers to the FancyZone editor</comment> </data> <data name="FancyZones_WindowBehavior_GroupSettings.Header" xml:space="preserve"> <value>Window behavior</value> </data> <data name="FancyZones_WindowBehavior_GroupSettings.Description" xml:space="preserve"> <value>Manage how windows behave when using FancyZones</value> </data> <data name="FancyZones_Windows.Header" xml:space="preserve"> <value>Windows</value> <comment>Do translate: refers to a set of application windows, not the product name</comment> </data> <data name="PowerRename_BehaviorHeader.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="PowerRename_Toggle_UseBoostLib.Header" xml:space="preserve"> <value>Use Boost library</value> <comment>Boost is a product name, should not be translated</comment> </data> <data name="PowerRename_Toggle_UseBoostLib.Description" xml:space="preserve"> <value>Provides extended features but may use different regex syntax</value> <comment>Boost is a product name, should not be translated</comment> </data> <data name="MadeWithOssLove.Text" xml:space="preserve"> <value>Made with 💗 by Microsoft and the PowerToys community.</value> </data> <data name="ColorPicker_ColorFormats.Header" xml:space="preserve"> <value>Color formats</value> </data> <data name="ColorPicker_ColorFormats.Description" xml:space="preserve"> <value>Configure the color formats (edit, delete, hide, reorder them)</value> </data> <data name="MoveUp.Text" xml:space="preserve"> <value>Move up</value> </data> <data name="MoveDown.Text" xml:space="preserve"> <value>Move down</value> </data> <data name="ColorPickerAddNewFormat.Content" xml:space="preserve"> <value>Add new format</value> </data> <data name="NewColorFormat.Header" xml:space="preserve"> <value>Format</value> </data> <data name="NewColorName.Header" xml:space="preserve"> <value>Name</value> </data> <data name="AddCustomColorFormat" xml:space="preserve"> <value>Add custom color format</value> </data> <data name="ColorFormatSave" xml:space="preserve"> <value>Save</value> </data> <data name="EditCustomColorFormat" xml:space="preserve"> <value>Edit custom color format</value> </data> <data name="ColorFormatUpdate" xml:space="preserve"> <value>Update</value> </data> <data name="CustomColorFormatDefaultName" xml:space="preserve"> <value>My Format</value> </data> <data name="ColorFormatDialog.SecondaryButtonText" xml:space="preserve"> <value>Cancel</value> </data> <data name="ColorFormatEditorHelpline1.Text" xml:space="preserve"> <value>The following parameters can be used:</value> </data> <data name="Help_red" xml:space="preserve"> <value>red</value> </data> <data name="Help_green" xml:space="preserve"> <value>green</value> </data> <data name="Help_blue" xml:space="preserve"> <value>blue</value> </data> <data name="Help_alpha" xml:space="preserve"> <value>alpha</value> </data> <data name="Help_cyan" xml:space="preserve"> <value>cyan</value> </data> <data name="Help_magenta" xml:space="preserve"> <value>magenta</value> </data> <data name="Help_yellow" xml:space="preserve"> <value>yellow</value> </data> <data name="Help_black_key" xml:space="preserve"> <value>black key</value> </data> <data name="Help_hue" xml:space="preserve"> <value>hue</value> </data> <data name="Help_hueNat" xml:space="preserve"> <value>hue (natural)</value> </data> <data name="Help_saturationI" xml:space="preserve"> <value>saturation (HSI)</value> </data> <data name="Help_saturationL" xml:space="preserve"> <value>saturation (HSL)</value> </data> <data name="Help_saturationB" xml:space="preserve"> <value>saturation (HSB)</value> </data> <data name="Help_brightness" xml:space="preserve"> <value>brightness</value> </data> <data name="Help_intensity" xml:space="preserve"> <value>intensity</value> </data> <data name="Help_lightnessNat" xml:space="preserve"> <value>lightness (nat)</value> </data> <data name="Help_lightnessCIE" xml:space="preserve"> <value>lightness (CIE)</value> </data> <data name="Help_value" xml:space="preserve"> <value>value</value> </data> <data name="Help_whiteness" xml:space="preserve"> <value>whiteness</value> </data> <data name="Help_blackness" xml:space="preserve"> <value>blackness</value> </data> <data name="Help_chromaticityA" xml:space="preserve"> <value>chromaticityA</value> </data> <data name="Help_chromaticityB" xml:space="preserve"> <value>chromaticityB</value> </data> <data name="Help_X_value" xml:space="preserve"> <value>X value</value> </data> <data name="Help_Y_value" xml:space="preserve"> <value>Y value</value> </data> <data name="Help_Z_value" xml:space="preserve"> <value>Z value</value> </data> <data name="Help_decimal_value_RGB" xml:space="preserve"> <value>decimal value (RGB)</value> </data> <data name="Help_decimal_value_BGR" xml:space="preserve"> <value>decimal value (BGR)</value> </data> <data name="Help_color_name" xml:space="preserve"> <value>color name</value> </data> <data name="ColorFormatEditorHelpline2.Text" xml:space="preserve"> <value>The red, green, blue and alpha values can be formatted to the following formats:</value> </data> <data name="Help_byte" xml:space="preserve"> <value>byte value (default)</value> </data> <data name="Help_hexL1" xml:space="preserve"> <value>hex lowercase one digit</value> </data> <data name="Help_hexU1" xml:space="preserve"> <value>hex uppercase one digit</value> </data> <data name="Help_hexL2" xml:space="preserve"> <value>hex lowercase two digits</value> </data> <data name="Help_hexU2" xml:space="preserve"> <value>hex uppercase two digits</value> </data> <data name="Help_floatWith" xml:space="preserve"> <value>float with leading zero</value> </data> <data name="Help_floatWithout" xml:space="preserve"> <value>float without leading zero</value> </data> <data name="ColorFormatEditorHelpline3.Text" xml:space="preserve"> <value>Example: %ReX means red value in hex uppercase two digits format.</value> </data> <data name="ColorPicker_ShowColorName.Header" xml:space="preserve"> <value>Show color name</value> </data> <data name="ColorPicker_ShowColorName.Description" xml:space="preserve"> <value>This will show the name of the color when picking a color</value> </data> <data name="ImageResizer_DefaultSize_Large" xml:space="preserve"> <value>Large</value> <comment>The size of the image</comment> </data> <data name="ImageResizer_DefaultSize_Medium" xml:space="preserve"> <value>Medium</value> <comment>The size of the image</comment> </data> <data name="ImageResizer_DefaultSize_Phone" xml:space="preserve"> <value>Phone</value> <comment>The size of the image referring to a Mobile Phone typical image size</comment> </data> <data name="ImageResizer_DefaultSize_Small" xml:space="preserve"> <value>Small</value> <comment>The size of the image</comment> </data> <data name="FancyZones_MoveWindowBasedOnRelativePosition_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Windows key + Up, down, left or right arrow key to move windows based on relative position</value> </data> <data name="FancyZones_MoveWindowLeftRightBasedOnZoneIndex_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Windows key + Left or right arrow keys to move windows based on zone index</value> </data> <data name="FancyZones_MoveWindowBasedOnRelativePosition_Description.Text" xml:space="preserve"> <value>Windows key +    or </value> <comment>Do not loc the icons (hex numbers)</comment> </data> <data name="FancyZones_MoveWindowLeftRightBasedOnZoneIndex_Description.Text" xml:space="preserve"> <value>Windows key +  or </value> <comment>Do not loc the icons (hex numbers)</comment> </data> <data name="FancyZones_MoveWindowBasedOnRelativePosition.Text" xml:space="preserve"> <value>Relative position</value> </data> <data name="FancyZones_MoveWindow.Header" xml:space="preserve"> <value>Move windows based on</value> </data> <data name="FancyZones_MoveWindowLeftRightBasedOnZoneIndex.Text" xml:space="preserve"> <value>Zone index</value> </data> <data name="ColorPicker_Editor.Header" xml:space="preserve"> <value>Color formats</value> </data> <data name="FancyZones_OverlappingZonesClosestCenter.Content" xml:space="preserve"> <value>Activate the zone whose center is closest to the cursor</value> </data> <data name="FancyZones_OverlappingZonesLargest.Content" xml:space="preserve"> <value>Activate the largest zone by area</value> </data> <data name="FancyZones_OverlappingZonesPositional.Content" xml:space="preserve"> <value>Split the overlapped area into multiple activation targets</value> </data> <data name="FancyZones_OverlappingZonesSmallest.Content" xml:space="preserve"> <value>Activate the smallest zone by area</value> </data> <data name="FancyZones_OverlappingZones.Header" xml:space="preserve"> <value>When multiple zones overlap</value> </data> <data name="PowerLauncher_Plugins.Header" xml:space="preserve"> <value>Plugins</value> </data> <data name="PowerLauncher_ActionKeyword.Header" xml:space="preserve"> <value>Direct activation command</value> </data> <data name="PowerLauncher_AuthoredBy.Text" xml:space="preserve"> <value>Authored by</value> <comment>example: Authored by Microsoft</comment> </data> <data name="PowerLauncher_IncludeInGlobalResultTitle.Text" xml:space="preserve"> <value>Include in global result</value> </data> <data name="PowerLauncher_IncludeInGlobalResultDescription.Text" xml:space="preserve"> <value>Show results on queries without direct activation command</value> </data> <data name="PowerLauncher_EnablePluginToggle.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Enable plugin</value> </data> <data name="PowerLauncher_EnablePluginToggle.OnContent" xml:space="preserve"> <value>On</value> </data> <data name="PowerLauncher_EnablePluginToggle.OffContent" xml:space="preserve"> <value>Off</value> </data> <data name="Run_AdditionalOptions.Text" xml:space="preserve"> <value>Additional options</value> </data> <data name="Run_NotAccessibleWarning.Title" xml:space="preserve"> <value>Please define an activation command or allow this plugin to be used in the global results.</value> </data> <data name="Run_AllPluginsDisabled.Title" xml:space="preserve"> <value>PowerToys Run can't provide any results without plugins</value> </data> <data name="Run_AllPluginsDisabled.Message" xml:space="preserve"> <value>Enable at least one plugin to get started</value> </data> <data name="Run_PluginUse.Header" xml:space="preserve"> <value>Plugins</value> </data> <data name="Run_PluginUseDescription.Text" xml:space="preserve"> <value>Include or remove plugins from the global results, change the direct activation phrase and configure additional options</value> </data> <data name="Run_PositionAppearance_GroupSettings.Header" xml:space="preserve"> <value>Position &amp; appearance</value> </data> <data name="Run_PositionHeader.Header" xml:space="preserve"> <value>Preferred monitor position</value> <comment>as in Show PowerToys Run on primary monitor</comment> </data> <data name="Run_PositionHeader.Description" xml:space="preserve"> <value>If multiple monitors are in use, PowerToys Run can be launched on the desired monitor</value> <comment>as in Show PowerToys Run on primary monitor</comment> </data> <data name="Run_Radio_Position_Cursor.Content" xml:space="preserve"> <value>Monitor with mouse cursor</value> </data> <data name="Run_Radio_Position_Focus.Content" xml:space="preserve"> <value>Monitor with focused window</value> </data> <data name="Run_Radio_Position_Primary_Monitor.Content" xml:space="preserve"> <value>Primary monitor</value> </data> <data name="Run_PluginsLoading.Text" xml:space="preserve"> <value>Plugins are loading...</value> </data> <data name="ColorPicker_ButtonDown.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Move the color down</value> </data> <data name="ColorPicker_ButtonUp.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Move the color up</value> </data> <data name="FancyZones_FlashZonesOnQuickSwitch.Content" xml:space="preserve"> <value>Flash zones when switching layout</value> </data> <data name="FancyZones_Layouts.Header" xml:space="preserve"> <value>Layouts</value> </data> <data name="FancyZones_QuickLayoutSwitch.Header" xml:space="preserve"> <value>Enable quick layout switch</value> </data> <data name="FancyZones_QuickLayoutSwitch.Description" xml:space="preserve"> <value>Layout-specific shortcuts can be configured in the editor</value> </data> <data name="FancyZones_QuickLayoutSwitch_GroupSettings.Text" xml:space="preserve"> <value>Quick layout switch</value> </data> <data name="Activation_Shortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="Activation_Shortcut.Description" xml:space="preserve"> <value>Customize the shortcut to activate this module</value> </data> <data name="Oobe_GetStarted.Text" xml:space="preserve"> <value>Let's get started!</value> </data> <data name="Oobe_PowerToysDescription.Text" xml:space="preserve"> <value>Welcome to PowerToys! These overviews will help you quickly learn the basics of all our utilities.</value> </data> <data name="Oobe_GettingStarted.Text" xml:space="preserve"> <value>Getting started</value> </data> <data name="Oobe_Launch.Text" xml:space="preserve"> <value>Launch</value> </data> <data name="Launch_ColorPicker.Content" xml:space="preserve"> <value>Launch Color Picker</value> </data> <data name="Oobe_LearnMore.Text" xml:space="preserve"> <value>Learn more about</value> </data> <data name="Oobe_ColorPicker.Description" xml:space="preserve"> <value>Color Picker is a system-wide color selection tool for Windows that enables you to pick colors from any currently running application and automatically copies it in a configurable format to your clipboard.</value> </data> <data name="Oobe_FancyZones.Description" xml:space="preserve"> <value>FancyZones is a window manager that makes it easy to create complex window layouts and quickly position windows into those layouts.</value> </data> <data name="Oobe_FileLocksmith.Description" xml:space="preserve"> <value>File Locksmith lists which processes are using the selected files or directories and allows closing those processes.</value> </data> <data name="Oobe_FileExplorer.Description" xml:space="preserve"> <value>PowerToys introduces add-ons to the Windows File Explorer that will enable files like Markdown (.md), PDF (.pdf), SVG (.svg), STL (.stl), G-code (.gcode) and developer files to be viewed in the preview pane. It introduces File Explorer thumbnail support for a number of these file types as well.</value> </data> <data name="Oobe_ImageResizer.Description" xml:space="preserve"> <value>Image Resizer is a Windows shell extension for simple bulk image-resizing.</value> </data> <data name="Oobe_KBM.Description" xml:space="preserve"> <value>Keyboard Manager allows you to customize the keyboard to be more productive by remapping keys and creating your own keyboard shortcuts.</value> </data> <data name="Oobe_MouseWithoutBorders.Description" xml:space="preserve"> <value>Mouse Without Borders enables using the mouse pointer, keyboard, clipboard and drag and drop between machines in the same local network.</value> </data> <data name="Oobe_PowerRename.Description" xml:space="preserve"> <value>PowerRename enables you to perform simple bulk renaming, searching and replacing file names.</value> </data> <data name="Oobe_Run.Description" xml:space="preserve"> <value>PowerToys Run is a quick launcher for power users that contains some additional features without sacrificing performance.</value> </data> <data name="Oobe_MeasureTool.Description" xml:space="preserve"> <value>Screen Ruler is a quick and easy way to measure pixels on your screen.</value> </data> <data name="Oobe_ShortcutGuide.Description" xml:space="preserve"> <value>Shortcut Guide presents the user with a listing of available shortcuts for the current state of the desktop.</value> </data> <data name="Oobe_VideoConference.Description" xml:space="preserve"> <value>Video Conference Mute allows users to quickly mute the microphone and turn off the camera while on a conference call with a single keystroke, regardless of what application has focus on your computer.</value> </data> <data name="Oobe_MouseUtils.Description" xml:space="preserve"> <value>A collection of utilities to enhance your mouse.</value> <comment>Mouse as in the hardware peripheral</comment> </data> <data name="Oobe_Overview.Description" xml:space="preserve"> <value>Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. Take a moment to preview the various utilities listed or view our comprehensive documentation.</value> </data> <data name="Oobe_Overview_DescriptionLinkText.Text" xml:space="preserve"> <value>Documentation on Microsoft Docs</value> </data> <data name="ReleaseNotes.Content" xml:space="preserve"> <value>Release notes</value> </data> <data name="Oobe_ColorPicker_HowToUse.Text" xml:space="preserve"> <value>to open Color Picker.</value> </data> <data name="Oobe_ColorPicker_TipsAndTricks.Text" xml:space="preserve"> <value>To select a color with more precision, **scroll the mouse wheel** to zoom in.</value> </data> <data name="Oobe_FancyZones_HowToUse.Text" xml:space="preserve"> <value>**Shift** + **drag the window** to snap a window to a zone, and release the window in the desired zone.</value> </data> <data name="Oobe_FancyZones_HowToUse_Shortcut.Text" xml:space="preserve"> <value>to open the FancyZones editor.</value> </data> <data name="Oobe_FancyZones_TipsAndTricks.Text" xml:space="preserve"> <value>Snap a window to multiple zones by holding the **Ctrl** key (while also holding **Shift**) when dragging a window.</value> </data> <data name="Oobe_FileLocksmith_HowToUse.Text" xml:space="preserve"> <value>In File Explorer, right-click one or more selected files and select **What's using this file?** from the context menu.</value> </data> <data name="Oobe_FileLocksmith_TipsAndTricks.Text" xml:space="preserve"> <value>Press the **Restart Elevated** button from the File Locksmith UI to also get information on elevated processes that might be using the files.</value> </data> <data name="Oobe_FileExplorer_HowToEnable.Text" xml:space="preserve"> <value>Select **View** which is located at the top of File Explorer, followed by **Show**, and then **Preview pane**. From there, simply click on one of the supported files in the File Explorer and observe the content on the preview pane!</value> </data> <data name="Oobe_HowToCreateMappings.Text" xml:space="preserve"> <value>How to create mappings</value> </data> <data name="Oobe_HowToEnable.Text" xml:space="preserve"> <value>How to enable</value> </data> <data name="Oobe_HowToLaunch.Text" xml:space="preserve"> <value>How to launch</value> </data> <data name="Oobe_HowToUse.Text" xml:space="preserve"> <value>How to use</value> </data> <data name="Oobe_ImageResizer_HowToLaunch.Text" xml:space="preserve"> <value>In File Explorer, right-click one or more image files and select **Resize pictures** from the context menu.</value> </data> <data name="Oobe_ImageResizer_TipsAndTricks.Text" xml:space="preserve"> <value>Want a custom size? You can add them in the PowerToys Settings!</value> </data> <data name="Oobe_KBM_HowToCreateMappings.Text" xml:space="preserve"> <value>Launch **PowerToys Settings**, navigate to the Keyboard Manager menu, and select either **Remap a key** or **Remap a shortcut**.</value> </data> <data name="Oobe_KBM_TipsAndTricks.Text" xml:space="preserve"> <value>Want to only have a shortcut work for a single application? Use the Target App field when creating the shortcut remapping.</value> </data> <data name="Oobe_MouseWithoutBorders_HowToUse.Text" xml:space="preserve"> <value>Use the Settings screen on each machine to connect to the other machines using the same key. If a connection is not working, it may be necessary to add an exception to the Windows Firewall.</value> </data> <data name="Oobe_MouseWithoutBorders_TipsAndTricks.Text" xml:space="preserve"> <value>Use the service option in Settings to install a service enabling Mouse Without Borders to function even in the lock screen.</value> </data> <data name="Oobe_PowerRename_HowToUse.Text" xml:space="preserve"> <value>In File Explorer, right-click one or more selected files and select **PowerRename** from the context menu.</value> </data> <data name="Oobe_PowerRename_TipsAndTricks.Text" xml:space="preserve"> <value>PowerRename supports searching for files using regular expressions to enable more advanced renaming functionalities.</value> </data> <data name="Oobe_Run_HowToLaunch.Text" xml:space="preserve"> <value>to open Run and just start typing.</value> </data> <data name="Oobe_Run_TipsAndTricks.Text" xml:space="preserve"> <value>PowerToys Run supports various action keys to funnel search queries for a specific subset of results. Typing `&lt;` searches for running processes only, `?` will search only for file, or `.` for installed applications! See PowerToys documentation for the complete set of 'Action Keys' available.</value> </data> <data name="Oobe_ShortcutGuide_HowToLaunch.Text" xml:space="preserve"> <value>to open Shortcut Guide, press it again to close or press **Esc**.</value> </data> <data name="Oobe_TipsAndTricks.Text" xml:space="preserve"> <value>Tips &amp; tricks</value> </data> <data name="Oobe_VideoConference_ToggleMicVid.Text" xml:space="preserve"> <value>to toggle both your microphone and video</value> </data> <data name="Oobe_VideoConference_ToggleMic.Text" xml:space="preserve"> <value>to toggle your microphone</value> </data> <data name="Oobe_VideoConference_PushToTalkMic.Text" xml:space="preserve"> <value>to toggle your microphone until key release</value> </data> <data name="Oobe_VideoConference_ToggleVid.Text" xml:space="preserve"> <value>to toggle your video</value> </data> <data name="Oobe_MeasureTool_Activation.Text" xml:space="preserve"> <value>to bring up the Screen Ruler command bar.</value> </data> <data name="Oobe_MeasureTool_HowToLaunch.Text" xml:space="preserve"> <value>The Bounds mode lets you select a specific area to measure. You can also shift-drag an area to persist in on screen. The various Spacing modes allows tracing similar pixels along horizontal and vertical axes with a customizable pixel tolerance threshold (use settings or mouse wheel to adjust it).</value> </data> <data name="Oobe_MeasureTool.Title" xml:space="preserve"> <value>Screen Ruler</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_ColorPicker.Title" xml:space="preserve"> <value>Color Picker</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_FancyZones.Title" xml:space="preserve"> <value>FancyZones</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_FileLocksmith.Title" xml:space="preserve"> <value>File Locksmith</value> </data> <data name="Oobe_ImageResizer.Title" xml:space="preserve"> <value>Image Resizer</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_KBM.Title" xml:space="preserve"> <value>Keyboard Manager</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_MouseWithoutBorders.Title" xml:space="preserve"> <value>Mouse Without Borders</value> <comment>Product name. Do not localize this string</comment> </data> <data name="Oobe_PowerRename.Title" xml:space="preserve"> <value>PowerRename</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_Run.Title" xml:space="preserve"> <value>PowerToys Run</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_ShortcutGuide.Title" xml:space="preserve"> <value>Shortcut Guide</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_VideoConference.Title" xml:space="preserve"> <value>Video Conference Mute</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_Overview.Title" xml:space="preserve"> <value>Welcome</value> </data> <data name="Oobe_WhatsNew.Text" xml:space="preserve"> <value>What's new</value> </data> <data name="Oobe_WhatsNew_LoadingError.Title" xml:space="preserve"> <value>Couldn't load the release notes.</value> </data> <data name="Oobe_WhatsNew_LoadingError.Message" xml:space="preserve"> <value>Please check your internet connection.</value> </data> <data name="Oobe_WhatsNew_ProxyAuthenticationWarning.Title" xml:space="preserve"> <value>Couldn't load the release notes.</value> </data> <data name="Oobe_WhatsNew_ProxyAuthenticationWarning.Message" xml:space="preserve"> <value>Your proxy server requires authentication.</value> </data> <data name="Oobe_WhatsNew_DetailedReleaseNotesLink.Text" xml:space="preserve"> <value>See more detailed release notes on GitHub</value> <comment>Don't loc "GitHub", it's the name of a product</comment> </data> <data name="OOBE_Settings.Content" xml:space="preserve"> <value>Open Settings</value> </data> <data name="Oobe_NavViewItem.Content" xml:space="preserve"> <value>Welcome to PowerToys</value> <comment>Don't loc "PowerToys"</comment> </data> <data name="Feedback_NavViewItem.Content" xml:space="preserve"> <value>Give feedback</value> </data> <data name="OobeWindow_Title" xml:space="preserve"> <value>Welcome to PowerToys</value> </data> <data name="OobeWindow_TitleTxt.Text" xml:space="preserve"> <value>Welcome to PowerToys</value> </data> <data name="SettingsWindow_Title" xml:space="preserve"> <value>PowerToys Settings</value> <comment>Title of the settings window when running as user</comment> </data> <data name="Awake.ModuleTitle" xml:space="preserve"> <value>Awake</value> </data> <data name="Awake.ModuleDescription" xml:space="preserve"> <value>A convenient way to keep your PC awake on-demand.</value> </data> <data name="Awake_EnableSettingsCard.Header" xml:space="preserve"> <value>Enable Awake</value> <comment>Awake is a product name, do not loc</comment> </data> <data name="Awake_NoKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep using the selected power plan</value> </data> <data name="Awake_IndefiniteKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep awake indefinitely</value> </data> <data name="Awake_TemporaryKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep awake for a time interval</value> </data> <data name="Awake_ExpirableKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep awake until expiration</value> </data> <data name="Awake_DisplaySettingsCard.Header" xml:space="preserve"> <value>Keep screen on</value> </data> <data name="Awake_DisplaySettingsCard.Description" xml:space="preserve"> <value>This setting is only available when keeping the PC awake</value> </data> <data name="Awake_ExpirationSettingsExpander.Description" xml:space="preserve"> <value>Keep custom awake state until a specific date and time</value> </data> <data name="Awake_ModeSettingsCard.Header" xml:space="preserve"> <value>Mode</value> </data> <data name="Awake_BehaviorSettingsGroup.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="Awake_IntervalHoursInput.Header" xml:space="preserve"> <value>Hours</value> </data> <data name="Awake_IntervalMinutesInput.Header" xml:space="preserve"> <value>Minutes</value> </data> <data name="Awake_ExpirationSettingsExpander_Date.Header" xml:space="preserve"> <value>End date</value> </data> <data name="Awake_ExpirationSettingsExpander_Time.Header" xml:space="preserve"> <value>End time</value> </data> <data name="Oobe_Awake.Title" xml:space="preserve"> <value>Awake</value> <comment>Module name, do not loc</comment> </data> <data name="Oobe_Awake.Description" xml:space="preserve"> <value>Awake is a Windows tool designed to keep your PC awake on-demand without having to manage its power settings. This behavior can be helpful when running time-consuming tasks while ensuring that your PC does not go to sleep or turn off its screens.</value> </data> <data name="Oobe_Awake_HowToUse.Text" xml:space="preserve"> <value>Open **PowerToys Settings** and enable Awake</value> </data> <data name="Oobe_Awake_TipsAndTricks.Text" xml:space="preserve"> <value>You can always change modes quickly by **right-clicking the Awake icon** in the system tray.</value> </data> <data name="General_FailedToDownloadTheNewVersion.Title" xml:space="preserve"> <value>An error occurred trying to install this update:</value> </data> <data name="General_InstallNow.Content" xml:space="preserve"> <value>Install now</value> </data> <data name="General_ReadMore.Text" xml:space="preserve"> <value>Read more</value> </data> <data name="General_NewVersionAvailable.Title" xml:space="preserve"> <value>An update is available:</value> </data> <data name="General_Downloading.Text" xml:space="preserve"> <value>Downloading...</value> </data> <data name="General_TryAgainToDownloadAndInstall.Content" xml:space="preserve"> <value>Try again to download and install</value> </data> <data name="General_CheckingForUpdates.Text" xml:space="preserve"> <value>Checking for updates...</value> </data> <data name="General_NewVersionReadyToInstall.Title" xml:space="preserve"> <value>An update is ready to install:</value> </data> <data name="General_UpToDate.Title" xml:space="preserve"> <value>PowerToys is up to date</value> </data> <data name="General_CantCheck.Title" xml:space="preserve"> <value>Network error. Please try again later</value> </data> <data name="General_DownloadAndInstall.Content" xml:space="preserve"> <value>Download &amp; install</value> </data> <data name="ImageResizer_Fit_Fill_ThirdPersonSingular" xml:space="preserve"> <value>Fills</value> </data> <data name="ImageResizer_Fit_Fit_ThirdPersonSingular" xml:space="preserve"> <value>Fits within</value> </data> <data name="ImageResizer_Fit_Stretch_ThirdPersonSingular" xml:space="preserve"> <value>Stretches to</value> </data> <data name="ImageResizer_Unit_Centimeter" xml:space="preserve"> <value>Centimeters</value> </data> <data name="ImageResizer_Unit_Inch" xml:space="preserve"> <value>Inches</value> </data> <data name="ImageResizer_Unit_Percent" xml:space="preserve"> <value>Percent</value> </data> <data name="ImageResizer_Unit_Pixel" xml:space="preserve"> <value>Pixels</value> </data> <data name="EditButton.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Edit</value> </data> <data name="ImageResizer_EditSize.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Edit size</value> </data> <data name="No" xml:space="preserve"> <value>No</value> <comment>Label of a cancel button</comment> </data> <data name="Delete_Dialog_Description" xml:space="preserve"> <value>Are you sure you want to delete this item?</value> </data> <data name="Yes" xml:space="preserve"> <value>Yes</value> <comment>Label of a confirmation button</comment> </data> <data name="SeeWhatsNew.Content" xml:space="preserve"> <value>See what's new</value> </data> <data name="Awake_ModeSettingsCard.Description" xml:space="preserve"> <value>Manage the state of your device when Awake is active</value> </data> <data name="ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="Enable_ColorFormat.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Enable colorformat</value> </data> <data name="More_Options_Button.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>More options</value> </data> <data name="More_Options_ButtonTooltip.Text" xml:space="preserve"> <value>More options</value> </data> <data name="To.Text" xml:space="preserve"> <value>to</value> <comment>as in: from x to y</comment> </data> <data name="LearnMore_Awake.Text" xml:space="preserve"> <value>Learn more about Awake</value> <comment>Awake is a product name, do not loc</comment> </data> <data name="LearnMore_ColorPicker.Text" xml:space="preserve"> <value>Learn more about Color Picker</value> <comment>Color Picker is a product name, do not loc</comment> </data> <data name="LearnMore_FancyZones.Text" xml:space="preserve"> <value>Learn more about FancyZones</value> <comment>FancyZones is a product name, do not loc</comment> </data> <data name="LearnMore_FileLocksmith.Text" xml:space="preserve"> <value>Learn more about File Locksmith</value> </data> <data name="LearnMore_ImageResizer.Text" xml:space="preserve"> <value>Learn more about Image Resizer</value> <comment>Image Resizer is a product name, do not loc</comment> </data> <data name="LearnMore_KBM.Text" xml:space="preserve"> <value>Learn more about Keyboard Manager</value> <comment>Keyboard Manager is a product name, do not loc</comment> </data> <data name="LearnMore_MouseUtils.Text" xml:space="preserve"> <value>Learn more about Mouse utilities</value> <comment>Mouse utilities is a product name, do not loc</comment> </data> <data name="LearnMore_PastePlain.Text" xml:space="preserve"> <value>Learn more about Paste as Plain Text</value> <comment> Paste as Plain Text is the name of the module. </comment> </data> <data name="LearnMore_MouseWithoutBorders.Text" xml:space="preserve"> <value>Learn more about Mouse Without Borders</value> <comment>Mouse Without Borders is the name of the module. </comment> </data> <data name="LearnMore_PowerPreview.Text" xml:space="preserve"> <value>Learn more about File Explorer add-ons</value> <comment>File Explorer is a product name, localize as Windows does</comment> </data> <data name="LearnMore_Peek.Text" xml:space="preserve"> <value>Learn more about Peek</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="LearnMore_PowerRename.Text" xml:space="preserve"> <value>Learn more about PowerRename</value> <comment>PowerRename is a product name, do not loc</comment> </data> <data name="LearnMore_Run.Text" xml:space="preserve"> <value>Learn more about PowerToys Run</value> <comment>PowerToys Run is a product name, do not loc</comment> </data> <data name="LearnMore_MeasureTool.Text" xml:space="preserve"> <value>Learn more about Screen Ruler</value> <comment>Screen Ruler is a product name, do not loc</comment> </data> <data name="LearnMore_ShortcutGuide.Text" xml:space="preserve"> <value>Learn more about Shortcut Guide</value> <comment>Shortcut Guide is a product name, do not loc</comment> </data> <data name="LearnMore_VCM.Text" xml:space="preserve"> <value>Learn more about Video Conference Mute</value> <comment>Video Conference Mute is a product name, do not loc</comment> </data> <data name="Oobe_FileExplorer.Title" xml:space="preserve"> <value>File Explorer add-ons</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_MouseUtils.Title" xml:space="preserve"> <value>Mouse utilities</value> <comment>Mouse as in the hardware peripheral</comment> </data> <data name="Oobe_MouseUtils_FindMyMouse.Text" xml:space="preserve"> <value>Find My Mouse</value> <comment>Mouse as in the hardware peripheral</comment> </data> <data name="Oobe_MouseUtils_FindMyMouse_Description.Text" xml:space="preserve"> <value>Focus the mouse pointer pressing the Ctrl key twice, using a custom shortcut or shaking the mouse.</value> <comment>Mouse as in the hardware peripheral. Key as in a keyboard key</comment> </data> <data name="Oobe_MouseUtils_MouseHighlighter.Text" xml:space="preserve"> <value>Mouse Highlighter</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MouseHighlighter_Description.Text" xml:space="preserve"> <value>Use a keyboard shortcut to highlight left and right mouse clicks.</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MousePointerCrosshairs.Text" xml:space="preserve"> <value>Mouse Pointer Crosshairs</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MousePointerCrosshairs_Description.Text" xml:space="preserve"> <value>Draw crosshairs centered around the mouse pointer.</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MouseJump.Text" xml:space="preserve"> <value>Mouse Jump</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MouseJump_Description.Text" xml:space="preserve"> <value>Jump the mouse pointer quickly to anywhere on your desktop.</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Launch_Run.Content" xml:space="preserve"> <value>Launch PowerToys Run</value> </data> <data name="Launch_ShortcutGuide.Content" xml:space="preserve"> <value>Launch Shortcut Guide</value> </data> <data name="ColorPicker_ColorFormat_ToggleSwitch.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Show format in editor</value> </data> <data name="GeneralPage_Documentation.Text" xml:space="preserve"> <value>Documentation</value> </data> <data name="PowerLauncher_SearchList.PlaceholderText" xml:space="preserve"> <value>Search this list</value> </data> <data name="PowerLauncher_SearchList.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Search this list</value> </data> <data name="Awake.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="ColorPicker.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="General.SecondaryLinksHeader" xml:space="preserve"> <value>Related information</value> </data> <data name="ImageResizer.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="MouseUtils.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="PowerLauncher.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="PowerRename.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="EditTooltip.Text" xml:space="preserve"> <value>Edit</value> </data> <data name="RemoveTooltip.Text" xml:space="preserve"> <value>Remove</value> </data> <data name="Activation_Shortcut_Cancel" xml:space="preserve"> <value>Cancel</value> </data> <data name="Activation_Shortcut_Description" xml:space="preserve"> <value>Press a combination of keys to change this shortcut</value> </data> <data name="Activation_Shortcut_With_Disable_Description" xml:space="preserve"> <value>Press a combination of keys to change this shortcut. Right-click to remove the key combination, thereby deactivating the shortcut.</value> </data> <data name="Activation_Shortcut_Reset" xml:space="preserve"> <value>Reset</value> </data> <data name="Activation_Shortcut_Save" xml:space="preserve"> <value>Save</value> </data> <data name="Activation_Shortcut_Title" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="InvalidShortcut.Title" xml:space="preserve"> <value>Invalid shortcut</value> </data> <data name="InvalidShortcutWarningLabel.Text" xml:space="preserve"> <value>Only shortcuts that start with **Windows key**, **Ctrl**, **Alt** or **Shift** are valid.</value> <comment>The ** sequences are used for text formatting of the key names. Don't remove them on translation.</comment> </data> <data name="FancyZones_SpanZonesAcrossMonitors.Description" xml:space="preserve"> <value>All monitors must have the same DPI scaling and will be treated as one large combined rectangle which contains all monitors</value> </data> <data name="ImageResizer_DefaultSize_NewSizePrefix" xml:space="preserve"> <value>New size</value> <comment>First part of the default name of new sizes that can be added in PT's settings ui.</comment> </data> <data name="Awake_IntervalSettingsCard.Header" xml:space="preserve"> <value>Interval before returning to the previous awakeness state</value> </data> <data name="Awake_ExpirationSettingsExpander.Header" xml:space="preserve"> <value>End date and time</value> </data> <data name="MouseUtils.ModuleTitle" xml:space="preserve"> <value>Mouse utilities</value> </data> <data name="MouseUtils.ModuleDescription" xml:space="preserve"> <value>A collection of mouse utilities.</value> </data> <data name="MouseUtils_FindMyMouse.Header" xml:space="preserve"> <value>Find My Mouse</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_FindMyMouse.Description" xml:space="preserve"> <value>Find My Mouse highlights the position of the cursor when pressing the Ctrl key twice, using a custom shortcut or when shaking the mouse.</value> <comment>"Ctrl" is a keyboard key. "Find My Mouse" is the name of the utility</comment> </data> <data name="MouseUtils_Enable_FindMyMouse.Header" xml:space="preserve"> <value>Enable Find My Mouse</value> <comment>"Find My Mouse" is the name of the utility.</comment> </data> <data name="MouseUtils_FindMyMouse_ActivationMethod.Header" xml:space="preserve"> <value>Activation method</value> </data> <data name="MouseUtils_FindMyMouse_ActivationDoubleControlPress.Content" xml:space="preserve"> <value>Press Left Control twice</value> <comment>Left control is the physical key on the keyboard.</comment> </data> <data name="MouseUtils_FindMyMouse_ActivationShakeMouse.Content" xml:space="preserve"> <value>Shake mouse</value> <comment>Mouse is the hardware peripheral.</comment> </data> <data name="MouseUtils_FindMyMouse_ExcludedApps.Description" xml:space="preserve"> <value>Prevents module activation when an excluded application is the foreground application</value> </data> <data name="MouseUtils_FindMyMouse_ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="MouseUtils_FindMyMouse_ExcludedApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> </data> <data name="MouseUtils_Prevent_Activation_On_Game_Mode.Content" xml:space="preserve"> <value>Do not activate when Game Mode is on</value> <comment>"Game mode" is the Windows feature to prevent notification when playing a game.</comment> </data> <data name="MouseUtils_FindMyMouse_BackgroundColor.Header" xml:space="preserve"> <value>Background color</value> </data> <data name="MouseUtils_FindMyMouse_SpotlightColor.Header" xml:space="preserve"> <value>Spotlight color</value> </data> <data name="MouseUtils_FindMyMouse_OverlayOpacity.Header" xml:space="preserve"> <value>Overlay opacity (%)</value> </data> <data name="MouseUtils_FindMyMouse_SpotlightRadius.Header" xml:space="preserve"> <value>Spotlight radius (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_FindMyMouse_SpotlightInitialZoom.Header" xml:space="preserve"> <value>Spotlight initial zoom</value> </data> <data name="MouseUtils_FindMyMouse_SpotlightInitialZoom.Description" xml:space="preserve"> <value>Spotlight zoom factor at animation start</value> </data> <data name="MouseUtils_FindMyMouse_AnimationDurationMs.Header" xml:space="preserve"> <value>Animation duration (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_FindMyMouse_AnimationDurationMs.Description" xml:space="preserve"> <value>Time before the spotlight appears (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_FindMyMouse_AnimationDurationMs_Disabled.Message" xml:space="preserve"> <value>Animations are disabled by OS. See Settings &gt; Accessibility &gt; Visual effects</value> </data> <data name="MouseUtils_FindMyMouse_ShakingMinimumDistance.Header" xml:space="preserve"> <value>Shake minimum distance</value> </data> <data name="MouseUtils_FindMyMouse_ShakingMinimumDistance.Description" xml:space="preserve"> <value>The minimum distance for mouse shaking activation, for adjusting sensitivity</value> </data> <data name="MouseUtils_MouseHighlighter.Header" xml:space="preserve"> <value>Mouse Highlighter</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_MouseHighlighter.Description" xml:space="preserve"> <value>Mouse Highlighter mode will highlight mouse clicks.</value> <comment>"Mouse Highlighter" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_Enable_MouseHighlighter.Header" xml:space="preserve"> <value>Enable Mouse Highlighter</value> <comment>"Find My Mouse" is the name of the utility.</comment> </data> <data name="MouseUtils_MouseHighlighter_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MouseUtils_MouseHighlighter_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to turn on or off this mode</value> <comment>"Mouse Highlighter" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_MouseHighlighter_PrimaryButtonClickColor.Header" xml:space="preserve"> <value>Primary button highlight color</value> </data> <data name="MouseUtils_MouseHighlighter_SecondaryButtonClickColor.Header" xml:space="preserve"> <value>Secondary button highlight color</value> </data> <data name="MouseUtils_MouseHighlighter_HighlightRadius.Header" xml:space="preserve"> <value>Radius (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDelayMs.Header" xml:space="preserve"> <value>Fade delay (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDelayMs.Description" xml:space="preserve"> <value>Time before the highlight begins to fade (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDurationMs.Header" xml:space="preserve"> <value>Fade duration (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDurationMs.Description" xml:space="preserve"> <value>Duration of the disappear animation (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MousePointerCrosshairs.Header" xml:space="preserve"> <value>Mouse Pointer Crosshairs</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_MousePointerCrosshairs.Description" xml:space="preserve"> <value>Mouse Pointer Crosshairs draws crosshairs centered on the mouse pointer.</value> <comment>"Mouse Pointer Crosshairs" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_Enable_MousePointerCrosshairs.Header" xml:space="preserve"> <value>Enable Mouse Pointer Crosshairs</value> <comment>"Mouse Pointer Crosshairs" is the name of the utility.</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MouseUtils_MousePointerCrosshairs_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to show/hide the crosshairs</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsColor.Header" xml:space="preserve"> <value>Crosshairs color</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsOpacity.Header" xml:space="preserve"> <value>Crosshairs opacity (%)</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsRadius.Header" xml:space="preserve"> <value>Crosshairs center radius (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsThickness.Header" xml:space="preserve"> <value>Crosshairs thickness (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsBorderColor.Header" xml:space="preserve"> <value>Crosshairs border color</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsBorderSize.Header" xml:space="preserve"> <value>Crosshairs border size (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_IsCrosshairsFixedLengthEnabled.Header" xml:space="preserve"> <value>Fix crosshairs length</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsFixedLength.Header" xml:space="preserve"> <value>Crosshairs fixed length (px)</value> <comment>px = pixels</comment> </data> <data name="FancyZones_Radio_Custom_Colors.Content" xml:space="preserve"> <value>Custom colors</value> </data> <data name="FancyZones_Radio_Default_Theme.Content" xml:space="preserve"> <value>Windows default</value> </data> <data name="ColorModeHeader.Header" xml:space="preserve"> <value>App theme</value> </data> <data name="FancyZones_Zone_Appearance.Description" xml:space="preserve"> <value>Customize the way zones look</value> </data> <data name="FancyZones_Zone_Appearance.Header" xml:space="preserve"> <value>Zone appearance</value> </data> <data name="VideoConference_DeprecationWarning.Title" xml:space="preserve"> <value>VCM is moving into legacy mode (maintenance only).</value> </data> <data name="VideoConference_DeprecationWarningButton.Content" xml:space="preserve"> <value>Learn more</value> </data> <data name="LearnMore.Content" xml:space="preserve"> <value>Learn more</value> </data> <data name="VideoConference_RunAsAdminRequired.Title" xml:space="preserve"> <value>You need to run as administrator to modify these settings.</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_GCODE.Header" xml:space="preserve"> <value>Geometric Code</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_GCODE.Description" xml:space="preserve"> <value>Only .gcode files with embedded thumbnails are supported</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_GCODE.Header" xml:space="preserve"> <value>Geometric Code</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_GCODE.Description" xml:space="preserve"> <value>Only .gcode files with embedded thumbnails are supported</value> </data> <data name="FancyZones_NumberColor.Header" xml:space="preserve"> <value>Number color</value> </data> <data name="FancyZones_ShowZoneNumberCheckBoxControl.Content" xml:space="preserve"> <value>Show zone number</value> </data> <data name="ToggleSwitch.OffContent" xml:space="preserve"> <value>Off</value> <comment>The state of a ToggleSwitch when it's off</comment> </data> <data name="ToggleSwitch.OnContent" xml:space="preserve"> <value>On</value> <comment>The state of a ToggleSwitch when it's on</comment> </data> <data name="CropAndLock.ModuleDescription" xml:space="preserve"> <value>Crop And Lock allows you to crop a current application into a smaller window or just create a thumbnail. Focus the target window and press the shortcut to start cropping.</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="CropAndLock.ModuleTitle" xml:space="preserve"> <value>Crop And Lock </value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="CropAndLock_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="CropAndLock_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="Shell_CropAndLock.Content" xml:space="preserve"> <value>Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="LearnMore_CropAndLock.Text" xml:space="preserve"> <value>Learn more about Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="CropAndLock_ReparentActivation_Shortcut.Header" xml:space="preserve"> <value>Reparent shortcut</value> </data> <data name="CropAndLock_ReparentActivation_Shortcut.Description" xml:space="preserve"> <value>Shortcut to crop an application's window into a cropped window. This is experimental and can cause issues with some applications, since the cropped window will contain the original application window.</value> </data> <data name="CropAndLock_ThumbnailActivation_Shortcut.Header" xml:space="preserve"> <value>Thumbnail shortcut</value> </data> <data name="CropAndLock_ThumbnailActivation_Shortcut.Description" xml:space="preserve"> <value>Shortcut to crop and create a thumbnail of another window. The application isn't controllable through the thumbnail but it'll have less compatibility issues. </value> </data> <data name="CropAndLock.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="Oobe_CropAndLock.Title" xml:space="preserve"> <value>Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="Oobe_CropAndLock.Description" xml:space="preserve"> <value>Crop And Lock allows you to crop a current application into a smaller window or just create a thumbnail. Focus the target window and press the shortcut to start cropping.</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="Oobe_CropAndLock_HowToUse_Thumbnail.Text" xml:space="preserve"> <value>to crop and create a thumbnail of another window. The application isn't controllable through the thumbnail but it'll have less compatibility issues.</value> </data> <data name="Oobe_CropAndLock_HowToUse_Reparent.Text" xml:space="preserve"> <value>to crop an application's window into a cropped window. This is experimental and can cause issues with some applications, since the cropped window will contain the original application window.</value> </data> <data name="AlwaysOnTop.ModuleDescription" xml:space="preserve"> <value>Always On Top is a quick and easy way to pin windows on top.</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop.ModuleTitle" xml:space="preserve"> <value>Always On Top </value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="Peek_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="AlwaysOnTop_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_ExcludedApps.Description" xml:space="preserve"> <value>Excludes an application from pinning on top</value> </data> <data name="AlwaysOnTop_ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="AlwaysOnTop_ExcludedApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> </data> <data name="AlwaysOnTop_FrameColor.Header" xml:space="preserve"> <value>Color</value> </data> <data name="AlwaysOnTop_FrameEnabled.Header" xml:space="preserve"> <value>Show a border around the pinned window</value> </data> <data name="AlwaysOnTop_FrameThickness.Header" xml:space="preserve"> <value>Thickness (px)</value> <comment>px = pixels</comment> </data> <data name="AlwaysOnTop_Behavior_GroupSettings.Header" xml:space="preserve"> <value>Appearance &amp; behavior</value> </data> <data name="Shell_AlwaysOnTop.Content" xml:space="preserve"> <value>Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_GameMode.Content" xml:space="preserve"> <value>Do not activate when Game Mode is on</value> <comment>Game Mode is a Windows feature</comment> </data> <data name="AlwaysOnTop_SoundTitle.Header" xml:space="preserve"> <value>Sound</value> </data> <data name="AlwaysOnTop_Sound.Content" xml:space="preserve"> <value>Play a sound when pinning a window</value> </data> <data name="AlwaysOnTop_Behavior.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="LearnMore_AlwaysOnTop.Text" xml:space="preserve"> <value>Learn more about Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="AlwaysOnTop_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to pin or unpin an app window</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="Oobe_AlwaysOnTop.Title" xml:space="preserve"> <value>Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="Oobe_AlwaysOnTop.Description" xml:space="preserve"> <value>Always On Top improves your multitasking workflow by pinning an application window so it's always in front - even when focus changes to another window after that.</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="Oobe_AlwaysOnTop_HowToUse.Text" xml:space="preserve"> <value>to pin or unpin the selected window so it's always on top of all other windows.</value> </data> <data name="Oobe_AlwaysOnTop_TipsAndTricks.Text" xml:space="preserve"> <value>You can tweak the visual outline of the pinned windows in PowerToys settings.</value> </data> <data name="AlwaysOnTop_FrameColor_Mode.Header" xml:space="preserve"> <value>Color mode</value> </data> <data name="AlwaysOnTop_Radio_Custom_Color.Content" xml:space="preserve"> <value>Custom color</value> </data> <data name="AlwaysOnTop_Radio_Windows_Default.Content" xml:space="preserve"> <value>Windows default</value> </data> <data name="FileExplorerPreview.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Monaco_Wrap_Text.Content" xml:space="preserve"> <value>Wrap text</value> <comment>Feature on or off</comment> </data> <data name="FancyZones_AllowPopupWindowSnap.Description" xml:space="preserve"> <value>This setting can affect all popup windows including notifications</value> </data> <data name="FancyZones_AllowPopupWindowSnap.Header" xml:space="preserve"> <value>Allow popup windows snapping</value> </data> <data name="FancyZones_AllowChildWindowSnap.Content" xml:space="preserve"> <value>Allow child windows snapping</value> </data> <data name="Shell_WhatsNew.Content" xml:space="preserve"> <value>What's new</value> </data> <data name="Shell_Peek.Content" xml:space="preserve"> <value>Peek</value> <comment>Product name: Navigation view item name for Peek</comment> </data> <data name="Peek.ModuleTitle" xml:space="preserve"> <value>Peek</value> </data> <data name="Peek.ModuleDescription" xml:space="preserve"> <value>Peek is a quick and easy way to preview files. Select a file in File Explorer and press the shortcut to open the file preview.</value> </data> <data name="Peek_EnablePeek.Header" xml:space="preserve"> <value>Enable Peek</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="Peek_BehaviorHeader.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="Peek_AlwaysRunNotElevated.Header" xml:space="preserve"> <value>Always run not elevated, even when PowerToys is elevated</value> </data> <data name="Peek_AlwaysRunNotElevated.Description" xml:space="preserve"> <value>Tries to run Peek without elevated permissions, to fix access to network shares. You need to disable and re-enable Peek for changes to this value to take effect.</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="Peek_CloseAfterLosingFocus.Header" xml:space="preserve"> <value>Automatically close the Peek window after it loses focus</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="FancyZones_DisableRoundCornersOnWindowSnap.Content" xml:space="preserve"> <value>Disable round corners when window is snapped</value> </data> <data name="PowerLauncher_SearchQueryTuningEnabled.Description" xml:space="preserve"> <value>Fine tune results ordering</value> </data> <data name="PowerLauncher_SearchQueryTuningEnabled.Header" xml:space="preserve"> <value>Results order tuning</value> </data> <data name="PowerLauncher_SearchClickedItemWeight.Description" xml:space="preserve"> <value>Use a higher number to get selected results to rise faster. The default is 5, 0 to disable.</value> </data> <data name="PowerLauncher_SearchClickedItemWeight.Header" xml:space="preserve"> <value>Selected item weight</value> </data> <data name="PowerLauncher_WaitForSlowResults.Description" xml:space="preserve"> <value>Selecting this can help preselect the top, more relevant result, but at the risk of jumpiness</value> </data> <data name="PowerLauncher_WaitForSlowResults.Header" xml:space="preserve"> <value>Wait on slower plugin results before selecting top item in results</value> </data> <data name="PowerLauncher_PluginWeightBoost.Description" xml:space="preserve"> <value>Use a higher number to have this plugin's result show higher in the global results. Default is 0.</value> </data> <data name="PowerLauncher_PluginWeightBoost.Header" xml:space="preserve"> <value>Global sort order score modifier</value> </data> <data name="AlwaysOnTop_RoundCorners.Content" xml:space="preserve"> <value>Enable round corners</value> </data> <data name="LearnMore_QuickAccent.Text" xml:space="preserve"> <value>Learn more about Quick Accent</value> <comment>Quick Accent is a product name, do not loc</comment> </data> <data name="QuickAccent_EnableQuickAccent.Header" xml:space="preserve"> <value>Enable Quick Accent</value> </data> <data name="Shell_QuickAccent.Content" xml:space="preserve"> <value>Quick Accent</value> </data> <data name="QuickAccent.ModuleDescription" xml:space="preserve"> <value>Quick Accent is an alternative way to type accented characters, useful for when a keyboard doesn't support that specific accent. Activate by holding the key for the character you want to add an accent to, then press the activation key (space, left or right arrow keys) and an overlay to select accented characters will appear!</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent.ModuleTitle" xml:space="preserve"> <value>Quick Accent</value> </data> <data name="QuickAccent.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> </data> <data name="AlwaysOnTop_ShortDescription" xml:space="preserve"> <value>Pin a window</value> </data> <data name="Awake_ShortDescription" xml:space="preserve"> <value>Keep your PC awake</value> </data> <data name="ColorPicker_ShortDescription" xml:space="preserve"> <value>Pick a color</value> </data> <data name="CropAndLock_Thumbnail" xml:space="preserve"> <value>Thumbnail</value> </data> <data name="CropAndLock_Reparent" xml:space="preserve"> <value>Reparent</value> </data> <data name="FancyZones_OpenEditor" xml:space="preserve"> <value>Open editor</value> </data> <data name="FileLocksmith_ShortDescription" xml:space="preserve"> <value>Right-click on files or directories to show running processes</value> </data> <data name="FindMyMouse_ShortDescription" xml:space="preserve"> <value>Find the mouse</value> </data> <data name="ImageResizer_ShortDescription" xml:space="preserve"> <value>Select Image Resizer in the right-click context menu</value> </data> <data name="MouseHighlighter_ShortDescription" xml:space="preserve"> <value>Highlight clicks</value> </data> <data name="MouseJump_ShortDescription" xml:space="preserve"> <value>Quickly move the mouse pointer</value> </data> <data name="MouseCrosshairs_ShortDescription" xml:space="preserve"> <value>Draw crosshairs centered on the mouse pointer</value> </data> <data name="MouseWithoutBorders_ShortDescription" xml:space="preserve"> <value>Move your cursor across multiple devices</value> </data> <data name="PastePlain_ShortDescription" xml:space="preserve"> <value>Paste clipboard content without formatting</value> </data> <data name="Peek_ShortDescription" xml:space="preserve"> <value>Quick and easy previewer</value> </data> <data name="PowerRename_ShortDescription" xml:space="preserve"> <value>Select Power Rename in right-click context menu</value> </data> <data name="Run_ShortDescription" xml:space="preserve"> <value>A quick launcher</value> </data> <data name="PowerAccent_ShortDescription" xml:space="preserve"> <value>An alternative way to type accented characters</value> </data> <data name="RegistryPreview_ShortDescription" xml:space="preserve"> <value>Visualize and edit Windows Registry files</value> </data> <data name="ScreenRuler_ShortDescription" xml:space="preserve"> <value>Measure pixels on your screen</value> </data> <data name="ShortcutGuide_ShortDescription" xml:space="preserve"> <value>Show a help overlay with Windows shortcuts</value> </data> <data name="PowerOcr_ShortDescription" xml:space="preserve"> <value>A convenient way to copy text from anywhere on screen</value> </data> <data name="Dashboard_Activation" xml:space="preserve"> <value>Activation</value> </data> <data name="DashboardKBMShowMappingsButton.Content" xml:space="preserve"> <value>Show remappings</value> </data> <data name="Oobe_QuickAccent.Description" xml:space="preserve"> <value>Quick Accent is an easy way to write letters with accents, like on a smartphone.</value> </data> <data name="Oobe_QuickAccent.Title" xml:space="preserve"> <value>Quick Accent</value> </data> <data name="Oobe_QuickAccent_HowToUse.Text" xml:space="preserve"> <value>Open **PowerToys Settings** and enable Quick Accent. While holding the key for the character you want to add an accent to, press the Activation Key and an overlay to select the accented character will appear.</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="QuickAccent_Activation_Shortcut.Header" xml:space="preserve"> <value>Activation key</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent_Activation_Shortcut.Description" xml:space="preserve"> <value>Press this key after holding down the target letter</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent_Activation_Key_Arrows.Content" xml:space="preserve"> <value>Left/Right Arrow</value> <comment>Left/Right arrow keyboard keys</comment> </data> <data name="QuickAccent_Activation_Key_Space.Content" xml:space="preserve"> <value>Space</value> <comment>Space is the space keyboard key</comment> </data> <data name="QuickAccent_Activation_Key_Either.Content" xml:space="preserve"> <value>Left, Right or Space</value> <comment>All are keys on a keyboard</comment> </data> <data name="QuickAccent_Toolbar.Header" xml:space="preserve"> <value>Toolbar</value> </data> <data name="QuickAccent_ToolbarPosition.Header" xml:space="preserve"> <value>Toolbar position</value> </data> <data name="QuickAccent_ToolbarPosition_TopCenter.Content" xml:space="preserve"> <value>Top center</value> </data> <data name="QuickAccent_ToolbarPosition_TopLeftCorner.Content" xml:space="preserve"> <value>Top left corner</value> </data> <data name="QuickAccent_ToolbarPosition_TopRightCorner.Content" xml:space="preserve"> <value>Top right corner</value> </data> <data name="QuickAccent_ToolbarPosition_BottomLeftCorner.Content" xml:space="preserve"> <value>Bottom left corner</value> </data> <data name="QuickAccent_ToolbarPosition_BottomCenter.Content" xml:space="preserve"> <value>Bottom center</value> </data> <data name="QuickAccent_ToolbarPosition_BottomRightCorner.Content" xml:space="preserve"> <value>Bottom right corner</value> </data> <data name="QuickAccent_ToolbarPosition_Center.Content" xml:space="preserve"> <value>Center</value> </data> <data name="QuickAccent_ToolbarPosition_Left.Content" xml:space="preserve"> <value>Left</value> </data> <data name="QuickAccent_ToolbarPosition_Right.Content" xml:space="preserve"> <value>Right</value> </data> <data name="QuickAccent_Behavior.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="QuickAccent_InputTimeMs.Header" xml:space="preserve"> <value>Input delay (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="QuickAccent_InputTimeMs.Description" xml:space="preserve"> <value>Hold the key down for this much time to make the accent menu appear (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="QuickAccent_ExcludedApps.Description" xml:space="preserve"> <value>Prevents module activation if a foreground application is excluded. Add one application name per line.</value> </data> <data name="QuickAccent_ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="QuickAccent_ExcludedApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: Teams.exe</value> </data> <data name="LearnMore_TextExtractor.Text" xml:space="preserve"> <value>Learn more about Text Extractor</value> </data> <data name="TextExtractor_Cancel" xml:space="preserve"> <value>cancel</value> </data> <data name="General_SettingsBackupAndRestore_NothingToBackup" xml:space="preserve"> <value>A new backup was not created because no settings have been changed since last backup.</value> </data> <data name="General_SettingsBackupAndRestore_NoBackupFound" xml:space="preserve"> <value>No backup found</value> </data> <data name="General_SettingsBackupAndRestore_FailedToParseTime" xml:space="preserve"> <value>Failed to parse time</value> </data> <data name="General_SettingsBackupAndRestore_UnknownBackupTime" xml:space="preserve"> <value>Unknown</value> </data> <data name="General_SettingsBackupAndRestore_UnknownBackupSource" xml:space="preserve"> <value>Unknown</value> </data> <data name="General_SettingsBackupAndRestore_ThisMachine" xml:space="preserve"> <value>This computer</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsMatch" xml:space="preserve"> <value>Current settings match</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsStatusAt" xml:space="preserve"> <value>at</value> <comment>E.g., Food was served 'at' noon.</comment> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsDiffer" xml:space="preserve"> <value>Current settings differ</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsNoChecked" xml:space="preserve"> <value>Checking...</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsUnknown" xml:space="preserve"> <value>Unknown</value> </data> <data name="General_SettingsBackupAndRestore_NeverRestored" xml:space="preserve"> <value>Never restored</value> </data> <data name="General_SettingsBackupAndRestore_NothingToRestore" xml:space="preserve"> <value>Nothing to restore.</value> </data> <data name="General_SettingsBackupAndRestore_NoSettingsFilesFound" xml:space="preserve"> <value>No settings files found.</value> </data> <data name="General_SettingsBackupAndRestore_BackupError" xml:space="preserve"> <value>There was an error. Try another backup location.</value> </data> <data name="General_SettingsBackupAndRestore_SettingsFormatError" xml:space="preserve"> <value>There was an error in the settings format. Please check the settings file:</value> </data> <data name="General_SettingsBackupAndRestore_BackupComplete" xml:space="preserve"> <value>Backup completed.</value> </data> <data name="General_SettingsBackupAndRestore_NoBackupSyncPath" xml:space="preserve"> <value>No backup location selected.</value> </data> <data name="General_SettingsBackupAndRestore_NoBackupsFound" xml:space="preserve"> <value>No backups found to restore.</value> </data> <data name="General_SettingsBackupAndRestore_InvalidBackupLocation" xml:space="preserve"> <value>Invalid backup location.</value> </data> <data name="TextExtractor.ModuleDescription" xml:space="preserve"> <value>Text Extractor is a convenient way to copy text from anywhere on screen</value> </data> <data name="TextExtractor.ModuleTitle" xml:space="preserve"> <value>Text Extractor</value> </data> <data name="TextExtractor_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Text Extractor</value> </data> <data name="TextExtractor_SupportedLanguages.Title" xml:space="preserve"> <value>Text Extractor can only recognize languages that have the OCR pack installed.</value> </data> <data name="TextExtractor_SupportedLanguages_Link.Content" xml:space="preserve"> <value>Learn more about supported languages</value> </data> <data name="Shell_TextExtractor.Content" xml:space="preserve"> <value>Text Extractor</value> </data> <data name="Launch_TextExtractor.Content" xml:space="preserve"> <value>Launch Text Extractor</value> </data> <data name="Oobe_TextExtractor.Title" xml:space="preserve"> <value>Text Extractor</value> </data> <data name="Oobe_TextExtractor_HowToUse.Text" xml:space="preserve"> <value>to open Text Extractor and then selecting a region to copy the text from.</value> </data> <data name="Oobe_TextExtractor_TipsAndTricks.Text" xml:space="preserve"> <value>Hold the shift key to move the selection region around.</value> </data> <data name="TextExtractor.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> </data> <data name="Oobe_TextExtractor.Description" xml:space="preserve"> <value>Text Extractor works like Snipping Tool, but copies the text out of the selected region using OCR and puts it on the clipboard.</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Monaco_Try_Format.Description" xml:space="preserve"> <value>Applies to json and xml. Files remain unchanged.</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Monaco_Try_Format.Header" xml:space="preserve"> <value>Try to format the source for preview</value> </data> <data name="Run_ConflictingKeywordInfo.Title" xml:space="preserve"> <value>Some characters and phrases may conflict with global queries of other plugins if you use them as activation command.</value> </data> <data name="Run_ConflictingKeywordInfo_Link.Content" xml:space="preserve"> <value>Learn more about conflicting activation commands</value> </data> <data name="MeasureTool_ContinuousCapture_Information.Title" xml:space="preserve"> <value>The continuous capture mode will consume more resources when in use. Also, measurements will be excluded from screenshots and screen capture.</value> <comment>pointer as in mouse pointer. Resources refer to things like CPU, GPU, RAM</comment> </data> <data name="QuickAccent_Description_Indicator.Header" xml:space="preserve"> <value>Show the Unicode code and name of the currently selected character</value> </data> <data name="QuickAccent_SortByUsageFrequency_Indicator.Header" xml:space="preserve"> <value>Sort characters by usage frequency</value> </data> <data name="QuickAccent_SortByUsageFrequency_Indicator.Description" xml:space="preserve"> <value>Track characters usage frequency and sort them accordingly</value> </data> <data name="QuickAccent_StartSelectionFromTheLeft_Indicator.Header" xml:space="preserve"> <value>Start selection from the left</value> </data> <data name="QuickAccent_StartSelectionFromTheLeft_Indicator.Description" xml:space="preserve"> <value>Start selection from the leftmost character for all activation keys, including left and right arrows</value> </data> <data name="QuickAccent_DisableFullscreen.Header" xml:space="preserve"> <value>Disable when Game Mode is On</value> </data> <data name="QuickAccent_Language.Header" xml:space="preserve"> <value>Characters</value> </data> <data name="QuickAccent_SelectedLanguage.Header" xml:space="preserve"> <value>Choose a character set</value> </data> <data name="QuickAccent_SelectedLanguage.Description" xml:space="preserve"> <value>Show only accented characters common to the selected set</value> </data> <data name="QuickAccent_SelectedLanguage_All.Content" xml:space="preserve"> <value>All available</value> </data> <data name="QuickAccent_SelectedLanguage_Catalan.Content" xml:space="preserve"> <value>Catalan</value> </data> <data name="QuickAccent_SelectedLanguage_Currency.Content" xml:space="preserve"> <value>Currency</value> </data> <data name="QuickAccent_SelectedLanguage_Croatian.Content" xml:space="preserve"> <value>Croatian</value> </data> <data name="QuickAccent_SelectedLanguage_Czech.Content" xml:space="preserve"> <value>Czech</value> </data> <data name="QuickAccent_SelectedLanguage_Gaeilge.Content" xml:space="preserve"> <value>Gaeilge</value> <comment>Gaelic language spoken in Ireland</comment> </data> <data name="QuickAccent_SelectedLanguage_Gaidhlig.Content" xml:space="preserve"> <value>Gàidhlig</value> <comment>Scottish Gaelic</comment> </data> <data name="QuickAccent_SelectedLanguage_German.Content" xml:space="preserve"> <value>German</value> </data> <data name="QuickAccent_SelectedLanguage_Hebrew.Content" xml:space="preserve"> <value>Hebrew</value> </data> <data name="QuickAccent_SelectedLanguage_French.Content" xml:space="preserve"> <value>French</value> </data> <data name="QuickAccent_SelectedLanguage_Estonian.Content" xml:space="preserve"> <value>Estonian</value> </data> <data name="QuickAccent_SelectedLanguage_Lithuanian.Content" xml:space="preserve"> <value>Lithuanian</value> </data> <data name="QuickAccent_SelectedLanguage_Macedonian.Content" xml:space="preserve"> <value>Macedonian</value> </data> <data name="QuickAccent_SelectedLanguage_Maori.Content" xml:space="preserve"> <value>Maori</value> </data> <data name="QuickAccent_SelectedLanguage_Dutch.Content" xml:space="preserve"> <value>Dutch</value> </data> <data name="QuickAccent_SelectedLanguage_Norwegian.Content" xml:space="preserve"> <value>Norwegian</value> </data> <data name="QuickAccent_SelectedLanguage_Pinyin.Content" xml:space="preserve"> <value>Pinyin</value> </data> <data name="QuickAccent_SelectedLanguage_Polish.Content" xml:space="preserve"> <value>Polish</value> </data> <data name="QuickAccent_SelectedLanguage_Portuguese.Content" xml:space="preserve"> <value>Portuguese</value> </data> <data name="QuickAccent_SelectedLanguage_Slovakian.Content" xml:space="preserve"> <value>Slovakian</value> </data> <data name="QuickAccent_SelectedLanguage_Spanish.Content" xml:space="preserve"> <value>Spanish</value> </data> <data name="QuickAccent_SelectedLanguage_Swedish.Content" xml:space="preserve"> <value>Swedish</value> </data> <data name="QuickAccent_SelectedLanguage_Turkish.Content" xml:space="preserve"> <value>Turkish</value> </data> <data name="QuickAccent_SelectedLanguage_Icelandic.Content" xml:space="preserve"> <value>Icelandic</value> </data> <data name="QuickAccent_SelectedLanguage_Romanian.Content" xml:space="preserve"> <value>Romanian</value> </data> <data name="QuickAccent_SelectedLanguage_Serbian.Content" xml:space="preserve"> <value>Serbian</value> </data> <data name="QuickAccent_SelectedLanguage_Hungarian.Content" xml:space="preserve"> <value>Hungarian</value> </data> <data name="QuickAccent_SelectedLanguage_Italian.Content" xml:space="preserve"> <value>Italian</value> </data> <data name="QuickAccent_SelectedLanguage_Kurdish.Content" xml:space="preserve"> <value>Kurdish</value> </data> <data name="QuickAccent_SelectedLanguage_Welsh.Content" xml:space="preserve"> <value>Welsh</value> </data> <data name="Hosts.ModuleDescription" xml:space="preserve"> <value>Quick and simple utility for managing hosts file.</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Hosts.ModuleTitle" xml:space="preserve"> <value>Hosts File Editor</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Shell_Hosts.Content" xml:space="preserve"> <value>Hosts File Editor</value> <comment>Products name: Navigation view item name for Hosts File Editor</comment> </data> <data name="Hosts_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Hosts_Toggle_ShowStartupWarning.Header" xml:space="preserve"> <value>Show a warning at startup</value> </data> <data name="Hosts_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="Hosts_LaunchButtonControl.Description" xml:space="preserve"> <value>Manage your hosts file</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Hosts_LaunchButtonControl.Header" xml:space="preserve"> <value>Launch Host File Editor</value> <comment>"Host File Editor" is a product name</comment> </data> <data name="Hosts_LaunchButton_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Launch Host File Editor</value> <comment>"Host File Editor" is a product name</comment> </data> <data name="Hosts_AdditionalLinesPosition.Header" xml:space="preserve"> <value>Position of additional content</value> </data> <data name="Hosts_AdditionalLinesPosition_Bottom.Content" xml:space="preserve"> <value>Bottom</value> </data> <data name="Hosts_AdditionalLinesPosition_Top.Content" xml:space="preserve"> <value>Top</value> </data> <data name="Hosts_Behavior_GroupSettings.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="Launch_Hosts.Content" xml:space="preserve"> <value>Launch Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="LearnMore_Hosts.Text" xml:space="preserve"> <value>Learn more about Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Oobe_Hosts.Description" xml:space="preserve"> <value>Hosts File Editor is a quick and simple utility for managing hosts file.</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Oobe_Hosts.Title" xml:space="preserve"> <value>Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Hosts_Toggle_LaunchAdministrator.Description" xml:space="preserve"> <value>Needs to be launched as administrator in order to make changes to the hosts file</value> </data> <data name="Hosts_Toggle_LaunchAdministrator.Header" xml:space="preserve"> <value>Launch as administrator</value> </data> <data name="ShortcutGuide_PressTimeForTaskbarIconShortcuts.Header" xml:space="preserve"> <value>Press duration before showing taskbar icon shortcuts (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="FileLocksmith.ModuleDescription" xml:space="preserve"> <value>A Windows shell extension to find out which processes are using the selected files and directories.</value> </data> <data name="FileLocksmith.ModuleTitle" xml:space="preserve"> <value>File Locksmith</value> </data> <data name="Shell_FileLocksmith.Content" xml:space="preserve"> <value>File Locksmith</value> <comment>Product name: Navigation view item name for FileLocksmith</comment> </data> <data name="FileLocksmith_Enable_FileLocksmith.Header" xml:space="preserve"> <value>Enable File Locksmith</value> <comment>File Locksmith is the name of the utility</comment> </data> <data name="FileLocksmith_Toggle_StandardContextMenu.Content" xml:space="preserve"> <value>Default and extended context menu</value> </data> <data name="FileLocksmith_Toggle_ExtendedContextMenu.Content" xml:space="preserve"> <value>Extended context menu only</value> </data> <data name="FileLocksmith_Toggle_ContextMenu.Header" xml:space="preserve"> <value>Show File Locksmith in</value> </data> <data name="FileLocksmith_ShellIntegration.Header" xml:space="preserve"> <value>Shell integration</value> <comment>This refers to directly integrating in with Windows</comment> </data> <data name="GPO_IsSettingForced.Title" xml:space="preserve"> <value>This setting is enforced by your System Administrator.</value> </data> <data name="Hosts_AdditionalLinesPosition.Description" xml:space="preserve"> <value>Additional content includes the file header and lines that can't parse</value> </data> <data name="TextExtractor_Languages.Header" xml:space="preserve"> <value>Preferred language</value> </data> <data name="Alternate_OOBE_AlwaysOnTop_Description.Text" xml:space="preserve"> <value>Pin a window so that:</value> </data> <data name="Alternate_OOBE_AlwaysOnTop_Title.Text" xml:space="preserve"> <value>Always On Top</value> </data> <data name="Alternate_OOBE_ColorPicker_Description.Text" xml:space="preserve"> <value>To pick a color:</value> </data> <data name="Alternate_OOBE_ColorPicker_Title.Text" xml:space="preserve"> <value>Color Picker</value> </data> <data name="Alternate_OOBE_Description.Text" xml:space="preserve"> <value>Here are a few shortcuts to get you started:</value> </data> <data name="Alternate_OOBE_FancyZones_Description.Text" xml:space="preserve"> <value>To open the FancyZones editor, press:</value> </data> <data name="Alternate_OOBE_FancyZones_Title.Text" xml:space="preserve"> <value>FancyZones</value> </data> <data name="Alternate_OOBE_Run_Description.Text" xml:space="preserve"> <value>Get access to your files and more:</value> </data> <data name="Alternate_OOBE_Run_Title.Text" xml:space="preserve"> <value>PowerToys Run</value> </data> <data name="General_Experimentation.Header" xml:space="preserve"> <value>Experimentation</value> </data> <data name="GeneralPage_EnableExperimentation.Description" xml:space="preserve"> <value>Note: Only Windows Insider builds may be selected for experimentation</value> </data> <data name="GeneralPage_EnableExperimentation.Header" xml:space="preserve"> <value>Allow experimentation with new features</value> </data> <data name="GPO_ExperimentationIsDisallowed.Title" xml:space="preserve"> <value>The system administrator has disabled experimentation.</value> </data> <data name="Shell_PastePlain.Content" xml:space="preserve"> <value>Paste As Plain Text</value> <comment>Product name: Navigation view item name for Paste as Plain Text</comment> </data> <data name="PastePlain.ModuleDescription" xml:space="preserve"> <value>Paste As Plain Text is a quick shortcut for pasting the text contents of your clipboard without formatting. Note: the formatted text in the clipboard is replaced with the unformatted text.</value> </data> <data name="PastePlain.ModuleTitle" xml:space="preserve"> <value>Paste As Plain Text</value> </data> <data name="PastePlain_Cancel" xml:space="preserve"> <value>cancel</value> </data> <data name="PastePlain_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Paste As Plain Text</value> </data> <data name="Oobe_PastePlain.Description" xml:space="preserve"> <value>Paste As Plain Text strips rich formatting from your clipboard data and pastes it as non-formatted text.</value> </data> <data name="Oobe_PastePlain.Title" xml:space="preserve"> <value>Paste As Plain Text</value> </data> <data name="Oobe_PastePlain_HowToUse.Text" xml:space="preserve"> <value>to paste your clipboard data as plain text. Note: this will replace the formatted text in your clipboard with the plain text.</value> </data> <data name="AllAppsTxt.Text" xml:space="preserve"> <value>All apps</value> </data> <data name="BackBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Back</value> </data> <data name="BackLabel.Text" xml:space="preserve"> <value>Back</value> </data> <data name="BugReportBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Bug report</value> </data> <data name="BugReportTooltip.Text" xml:space="preserve"> <value>Bug report</value> </data> <data name="DocsBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Documentation</value> </data> <data name="DocsTooltip.Text" xml:space="preserve"> <value>Documentation</value> </data> <data name="FZEditorString" xml:space="preserve"> <value>FancyZones Editor</value> <comment>Do not localize this string</comment> </data> <data name="MoreBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>More</value> </data> <data name="MoreLabel.Text" xml:space="preserve"> <value>More</value> </data> <data name="SettingsBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Settings</value> </data> <data name="SettingsTooltip.Text" xml:space="preserve"> <value>Settings</value> </data> <data name="ShortcutsTxt.Text" xml:space="preserve"> <value>Shortcuts</value> </data> <data name="UpdateAvailable.Title" xml:space="preserve"> <value>Update available</value> </data> <data name="FileExplorerPreview_Toggle_Monaco_Max_File_Size.Header" xml:space="preserve"> <value>Maximum file size to preview</value> <comment>Size refers to the disk space used by a file</comment> </data> <data name="FileExplorerPreview_Toggle_Monaco_Max_File_Size.Description" xml:space="preserve"> <value>The maximum size, in kilobytes, for files to be displayed. This is a safety mechanism to prevent loading large files into RAM.</value> <comment>"RAM" refers to random access memory; "size" refers to disk space; "bytes" refer to the measurement unit</comment> </data> <data name="RegistryPreview.ModuleDescription" xml:space="preserve"> <value>A quick little utility to visualize and edit complex Windows Registry files.</value> </data> <data name="RegistryPreview.ModuleTitle" xml:space="preserve"> <value>Registry Preview</value> </data> <data name="Shell_RegistryPreview.Content" xml:space="preserve"> <value>Registry Preview</value> <comment>Product name: Navigation view item name for Registry Preview</comment> </data> <data name="RegistryPreview_Enable_RegistryPreview.Header" xml:space="preserve"> <value>Enable Registry Preview</value> <comment>Registry Preview is the name of the utility</comment> </data> <data name="Oobe_RegistryPreview_HowToUse.Text" xml:space="preserve"> <value>In File Explorer, right-click a .REG file and select **Preview** from the context menu.</value> </data> <data name="Oobe_RegistryPreview_TipsAndTricks.Text" xml:space="preserve"> <value>You can preview or edit Registry files in File Explorer or by opening the app from the PowerToys launcher.</value> </data> <data name="Oobe_RegistryPreview.Description" xml:space="preserve"> <value>Registry Preview is a quick little utility to visualize and edit complex Windows Registry files.</value> </data> <data name="Oobe_RegistryPreview.Title" xml:space="preserve"> <value>Registry Preview</value> <comment>Do not localize this string</comment> </data> <data name="LearnMore_RegistryPreview.Text" xml:space="preserve"> <value>Learn more about Registry Preview</value> <comment>Registry Preview is a product name, do not loc</comment> </data> <data name="Launch_RegistryPreview.Content" xml:space="preserve"> <value>Launch Registry Preview</value> <comment>"Registry Preview" is the name of the utility</comment> </data> <data name="MouseUtils_MouseJump.Description" xml:space="preserve"> <value>Quickly move the mouse pointer long distances.</value> <comment>"Mouse Jump" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_MouseJump.Header" xml:space="preserve"> <value>Mouse Jump</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_MouseJump_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to turn on or off this mode</value> </data> <data name="MouseUtils_MouseJump_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MouseUtils_Enable_MouseJump.Header" xml:space="preserve"> <value>Enable Mouse Jump</value> <comment>"Mouse Jump" is the name of the utility.</comment> </data> <data name="GPO_AutoDownloadUpdatesIsDisabled.Title" xml:space="preserve"> <value>The system administrator has disabled the automatic download of updates.</value> </data> <data name="Hosts_Toggle_LoopbackDuplicates.Description" xml:space="preserve"> <value>127.0.0.1, ::1, ...</value> <comment>"127.0.0.1 and ::1" are well known loopback addresses, do not loc</comment> </data> <data name="Hosts_Toggle_LoopbackDuplicates.Header" xml:space="preserve"> <value>Consider loopback addresses as duplicates</value> </data> <data name="RegistryPreview_Launch_GroupSettings.Header" xml:space="preserve"> <value>Launch</value> </data> <data name="RegistryPreview_LaunchButton_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Launch Registry Preview</value> </data> <data name="RegistryPreview_LaunchButtonControl.Header" xml:space="preserve"> <value>Launch Registry Preview</value> </data> <data name="RegistryPreview_DefaultRegApp.Header" xml:space="preserve"> <value>Default app</value> </data> <data name="RegistryPreview_DefaultRegApp.Description" xml:space="preserve"> <value>Make Registry Preview default app for opening .reg files</value> <comment>Registry Preview is app name. Do not localize.</comment> </data> <data name="PastePlain_ShortcutWarning.Title" xml:space="preserve"> <value>Using this shortcut may prevent non-text paste actions (e.g. images, files) or built-in paste plain text actions in other applications from functioning.</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize.Header" xml:space="preserve"> <value>Thumbnail Size</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Description_Prefix.Text" xml:space="preserve"> <value>Constrain thumbnail image size to a maximum of</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Description_Suffix.Text" xml:space="preserve"> <value>pixels</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Edit_Height.Header" xml:space="preserve"> <value>Maximum height (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Edit_Width.Header" xml:space="preserve"> <value>Maximum width (px)</value> <comment>px = pixels</comment> </data> <data name="Oobe_Peek.Description" xml:space="preserve"> <value>A lightning fast file preview feature for Windows.</value> </data> <data name="Oobe_Peek.Title" xml:space="preserve"> <value>Peek</value> </data> <data name="Oobe_Peek_HowToUse.Text" xml:space="preserve"> <value>to preview the file that's currently selected in File Explorer.</value> </data> <data name="MWB_PCNameLabel.PlaceholderText" xml:space="preserve"> <value>Device name</value> </data> <data name="MWB_SecurityKeyLabel.PlaceholderText" xml:space="preserve"> <value>Security key</value> </data> <data name="Hosts_Encoding.Description" xml:space="preserve"> <value>Choose the encoding of the hosts file</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Hosts_Encoding.Header" xml:space="preserve"> <value>Encoding</value> </data> <data name="Hosts_Encoding_Utf8.Content" xml:space="preserve"> <value>UTF-8</value> </data> <data name="Hosts_Encoding_Utf8Bom.Content" xml:space="preserve"> <value>UTF-8 with BOM</value> </data> <data name="MouseUtils_MouseHighlighter_AlwaysColor.Header" xml:space="preserve"> <value>Always highlight color</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsAutoHide.Content" xml:space="preserve"> <value>Automatically hide crosshairs when the mouse pointer is hidden</value> </data> <data name="MouseUtils_AutoActivate.Content" xml:space="preserve"> <value>Automatically activate on utility startup</value> </data> <data name="Run_FindMorePlugins.Text" xml:space="preserve"> <value>Find more plugins</value> </data> <data name="Run_PluginUseFindMorePlugins.Content" xml:space="preserve"> <value>Find more plugins</value> </data> <data name="Run_SomePluginsAreGpoManaged.Title" xml:space="preserve"> <value>The system administrator is managing the enabled state of some plugins.</value> </data> <data name="AlwaysOnTop_FrameOpacity.Header" xml:space="preserve"> <value>Opacity (%)</value> </data> <data name="MouseUtils_FindMyMouse_ActivationCustomizedShortcut.Content" xml:space="preserve"> <value>Custom shortcut</value> </data> <data name="MouseUtils_FindMyMouse_ActivationDoubleRightControlPress.Content" xml:space="preserve"> <value>Press Right Control twice</value> <comment>Right control is the physical key on the keyboard.</comment> </data> <data name="MouseUtils_FindMyMouse_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to turn on or off this mode</value> </data> <data name="MouseUtils_FindMyMouse_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="SettingsWindow_AdminTitle" xml:space="preserve"> <value>Administrator: PowerToys Settings</value> <comment>Title of the settings window when running as administrator</comment> </data> <data name="DashboardTitle.Text" xml:space="preserve"> <value>Dashboard</value> </data> <data name="Shell_Dashboard.Content" xml:space="preserve"> <value>Dashboard</value> </data> <data name="GPO_IsSettingForcedText.Text" xml:space="preserve"> <value>This setting is enforced by your System Administrator.</value> </data> <data name="DisabledModules.Text" xml:space="preserve"> <value>Disabled modules</value> </data> <data name="EnabledModules.Text" xml:space="preserve"> <value>Enabled modules</value> </data> </root>
donlaci
8c22f0c48540793452b70d913b2a6a719c881a33
1f936df3ebce73b726ed11c9fa38fd477b4b0fbd
maybe Resize an image instead?
stefansjfw
360
microsoft/PowerToys
29,023
[Settings] Adding a Dashboard Panel
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request Adding a new Dashboard panel to the settings app. It contains the active modules with a brief description, activation shortcut if present, launch button if reasonable and a quick link button to the module's settings page. The new dashboard panel contains a list of all the modules as well, where the user can toggle the modules' enabled/disabled state. ![Dashboard](https://github.com/microsoft/PowerToys/assets/9866362/a773ff5b-0321-4eb3-9c3d-b5b4df9a25f5) <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [X] **Closes:** #26816 - [ ] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected - [ ] **Tests:** Added/updated and all pass - [ ] **Localization:** All end user facing strings can be localized - [ ] **Dev docs:** Added/updated - [ ] **New binaries:** Added on the required places - [ ] [JSON for signing](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ESRPSigning_core.json) for new binaries - [ ] [WXS for installer](https://github.com/microsoft/PowerToys/blob/main/installer/PowerToysSetup/Product.wxs) for new binaries and localization folder - [ ] [YML for CI pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ci/templates/build-powertoys-steps.yml) for new test projects - [ ] [YML for signed pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/release.yml) - [ ] **Documentation updated:** If checked, please file a pull request on [our docs repo](https://github.com/MicrosoftDocs/windows-uwp/tree/docs/hub/powertoys) and link it here: #xxx <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed Tested locally
null
2023-10-04 18:35:54+00:00
2023-10-20 12:23:25+00:00
src/settings-ui/Settings.UI/Strings/en-us/Resources.resw
<?xml version="1.0" encoding="utf-8"?> <root> <!-- Microsoft ResX Schema Version 2.0 The primary goals of this format is to allow a simple XML format that is mostly human readable. The generation and parsing of the various data types are done through the TypeConverter classes associated with the data types. Example: ... ado.net/XML headers & schema ... <resheader name="resmimetype">text/microsoft-resx</resheader> <resheader name="version">2.0</resheader> <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader> <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader> <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data> <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data> <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64"> <value>[base64 mime encoded serialized .NET Framework object]</value> </data> <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value> <comment>This is a comment</comment> </data> There are any number of "resheader" rows that contain simple name/value pairs. Each data row contains a name, and value. The row also contains a type or mimetype. Type corresponds to a .NET class that support text/value conversion through the TypeConverter architecture. Classes that don't support this are serialized and stored with the mimetype set. The mimetype is used for serialized objects, and tells the ResXResourceReader how to depersist the object. This is currently not extensible. For a given mimetype the value must be set accordingly: Note - application/x-microsoft.net.object.binary.base64 is the format that the ResXResourceWriter will generate, however the reader can read any of the formats listed below. mimetype: application/x-microsoft.net.object.binary.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.soap.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Soap.SoapFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.bytearray.base64 value : The object must be serialized into a byte array : using a System.ComponentModel.TypeConverter : and then encoded with base64 encoding. --> <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> <xsd:import namespace="http://www.w3.org/XML/1998/namespace" /> <xsd:element name="root" msdata:IsDataSet="true"> <xsd:complexType> <xsd:choice maxOccurs="unbounded"> <xsd:element name="metadata"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" /> </xsd:sequence> <xsd:attribute name="name" use="required" type="xsd:string" /> <xsd:attribute name="type" type="xsd:string" /> <xsd:attribute name="mimetype" type="xsd:string" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="assembly"> <xsd:complexType> <xsd:attribute name="alias" type="xsd:string" /> <xsd:attribute name="name" type="xsd:string" /> </xsd:complexType> </xsd:element> <xsd:element name="data"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" /> <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="resheader"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" /> </xsd:complexType> </xsd:element> </xsd:choice> </xsd:complexType> </xsd:element> </xsd:schema> <resheader name="resmimetype"> <value>text/microsoft-resx</value> </resheader> <resheader name="version"> <value>2.0</value> </resheader> <resheader name="reader"> <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <resheader name="writer"> <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <data name="Attribution_Rooler.Text" xml:space="preserve"> <value>Inspired by Rooler</value> <comment>Rooler is a name of the tool.</comment> </data> <data name="Shell_VideoConference.Content" xml:space="preserve"> <value>Video Conference Mute</value> <comment>Navigation view item name for Video Conference</comment> </data> <data name="Shell_MeasureTool.Content" xml:space="preserve"> <value>Screen Ruler</value> <comment>Product name: Navigation view item name for Screen Ruler</comment> </data> <data name="MeasureTool.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="MeasureTool.ModuleDescription" xml:space="preserve"> <value>Screen Ruler is a quick and easy way to measure pixels on your screen.</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool.ModuleTitle" xml:space="preserve"> <value>Screen Ruler</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool_ActivationSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="MeasureTool_Settings.Header" xml:space="preserve"> <value>Behavior</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MeasureTool_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to bring up the command bar</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool_DefaultMeasureStyle.Header" xml:space="preserve"> <value>Default measure style</value> </data> <data name="MeasureTool_DefaultMeasureStyle.Description" xml:space="preserve"> <value>The utility will start having the selected style activated</value> </data> <data name="MeasureTool_DefaultMeasureStyle_None.Content" xml:space="preserve"> <value>None</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Bounds.Content" xml:space="preserve"> <value>Bounds</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Spacing.Content" xml:space="preserve"> <value>Spacing</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Horizontal_Spacing.Content" xml:space="preserve"> <value>Horizontal spacing</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Vertical_Spacing.Content" xml:space="preserve"> <value>Vertical spacing</value> </data> <data name="MeasureTool_UnitsOfMeasure.Header" xml:space="preserve"> <value>Units of measurement</value> </data> <data name="MeasureTool_UnitsOfMeasure_Pixels.Content" xml:space="preserve"> <value>Pixels</value> </data> <data name="MeasureTool_UnitsOfMeasure_Inches.Content" xml:space="preserve"> <value>Inches</value> </data> <data name="MeasureTool_UnitsOfMeasure_Centimeters.Content" xml:space="preserve"> <value>Centimeters</value> </data> <data name="MeasureTool_PixelTolerance.Header" xml:space="preserve"> <value>Pixel tolerance for edge detection</value> </data> <data name="MeasureTool_MeasureCrossColor.Header" xml:space="preserve"> <value>Line color</value> </data> <data name="MeasureTool_ContinuousCapture.Header" xml:space="preserve"> <value>Capture screen continuously during measuring</value> </data> <data name="MeasureTool_ContinuousCapture.Description" xml:space="preserve"> <value>Refresh screen contexts in real-time instead of making a screenshot once</value> </data> <data name="MeasureTool_PerColorChannelEdgeDetection.Header" xml:space="preserve"> <value>Per color channel edge detection</value> </data> <data name="MeasureTool_PerColorChannelEdgeDetection.Description" xml:space="preserve"> <value>If enabled, test that all color channels are within a tolerance distance from each other. Otherwise, check that the sum of all color channels differences is smaller than the tolerance.</value> </data> <data name="MeasureTool_DrawFeetOnCross.Header" xml:space="preserve"> <value>Draw feet on cross</value> </data> <data name="MeasureTool_DrawFeetOnCross.Description" xml:space="preserve"> <value>Adds feet to the end of cross lines</value> </data> <data name="MeasureTool_EnableMeasureTool.Header" xml:space="preserve"> <value>Enable Screen Ruler</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MouseWithoutBorders_ActivationSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="MouseWithoutBorders_DeviceLayoutSettings.Header" xml:space="preserve"> <value>Device layout</value> </data> <data name="MouseWithoutBorders_DeviceLayoutSettings.Description" xml:space="preserve"> <value>Drag and drop a machine to rearrange the order.</value> </data> <data name="MouseWithoutBorders_CannotDragDropAsAdmin.Title" xml:space="preserve"> <value>It is not possible to use drag and drop while running PowerToys elevated. As a workaround, please restart PowerToys without elevation to edit the device layout.</value> </data> <data name="MouseWithoutBorders_KeySettings.Header" xml:space="preserve"> <value>Encryption key</value> </data> <data name="MouseWithoutBorders_SecurityKey.Header" xml:space="preserve"> <value>Security key</value> </data> <data name="MouseWithoutBorders_SecurityKey.Description" xml:space="preserve"> <value>The key must be auto generated in one machine by clicking on New Key, then typed in other machines</value> </data> <data name="MouseWithoutBorders_NewKey.Content" xml:space="preserve"> <value>New key</value> </data> <data name="MouseWithoutBorders_CopyMachineName.Text" xml:space="preserve"> <value>Copy to clipboard</value> </data> <data name="MouseWithoutBorders_ReconnectButton.Text" xml:space="preserve"> <value>Refresh connections</value> </data> <data name="MouseWithoutBorders_ReconnectTooltip.Text" xml:space="preserve"> <value>Reestablishes connections with other devices if you are experiencing issues.</value> </data> <data name="MouseWithoutBorders_ThisMachineNameLabel.Header" xml:space="preserve"> <value>Host name of this device</value> </data> <data name="MouseWithoutBorders_Connect.Content" xml:space="preserve"> <value>Connect</value> </data> <data name="MouseWithoutBorders_UninstallService.Header" xml:space="preserve"> <value>Uninstall service</value> </data> <data name="MouseWithoutBorders_UninstallService.Description" xml:space="preserve"> <value>Removes the service from the computer. Needs to run as administrator.</value> </data> <data name="MouseWithoutBorders_Settings.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="MouseWithoutBorders_TroubleShooting.Header" xml:space="preserve"> <value>Troubleshooting</value> </data> <data name="MouseWithoutBorders_AddFirewallRuleButtonControl.Header" xml:space="preserve"> <value>Add a firewall rule for Mouse Without Borders</value> <comment>"Mouse Without Borders" is a product name</comment> </data> <data name="MouseWithoutBorders_AddFirewallRuleButtonControl.Description" xml:space="preserve"> <value>Adding a firewall rule might help solve connection issues.</value> </data> <data name="MouseWithoutBorders_RunAsAdminText.Title" xml:space="preserve"> <value>You need to run as administrator to modify this setting.</value> </data> <data name="MouseWithoutBorders_ServiceUserUninstallWarning.Title" xml:space="preserve"> <value>If PowerToys is installed as a user, uninstalling/upgrading may require the Mouse Without Borders service to be removed manually later.</value> </data> <data name="MouseWithoutBorders_ServiceSettings.Header" xml:space="preserve"> <value>Service</value> </data> <data name="MouseWithoutBorders_Toggle_Enable.Header" xml:space="preserve"> <value>Enable Mouse Without Borders</value> </data> <data name="MouseWithoutBorders.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="MouseWithoutBorders.ModuleDescription" xml:space="preserve"> <value>Mouse Without Borders is a quick and easy way to move your cursor across multiple devices.</value> <comment>"Mouse Without Borders" is the name of the utility</comment> </data> <data name="MouseWithoutBorders.ModuleTitle" xml:space="preserve"> <value>Mouse Without Borders</value> <comment>"Mouse Without Borders" is the name of the utility</comment> </data> <data name="MouseWithoutBorders_UseService.Header" xml:space="preserve"> <value>Use Service</value> </data> <data name="MouseWithoutBorders_UseService.Description" xml:space="preserve"> <value>Runs in service mode, that allows MWB to control remote machines when they're locked. Also allows control of system and administrator applications.</value> </data> <data name="MouseWithoutBorders_MatrixOneRow.Header" xml:space="preserve"> <value>Devices in a single row</value> </data> <data name="MouseWithoutBorders_MatrixOneRow.Description" xml:space="preserve"> <value>Sets whether the devices are aligned on a single row. A two by two matrix is considered otherwise.</value> </data> <data name="MouseWithoutBorders_WrapMouse.Header" xml:space="preserve"> <value>Wrap mouse</value> </data> <data name="MouseWithoutBorders_WrapMouse.Description" xml:space="preserve"> <value>Move control back to the first machine when mouse moves past the last one.</value> </data> <data name="MouseWithoutBorders_ShareClipboard.Header" xml:space="preserve"> <value>Share clipboard</value> </data> <data name="MouseWithoutBorders_TransferFile.Header" xml:space="preserve"> <value>Transfer file</value> </data> <data name="MouseWithoutBorders_HideMouseAtScreenEdge.Header" xml:space="preserve"> <value>Hide mouse at the screen edge</value> </data> <data name="MouseWithoutBorders_DrawMouseCursor.Header" xml:space="preserve"> <value>Draw mouse cursor</value> </data> <data name="MouseWithoutBorders_ValidateRemoteMachineIP.Header" xml:space="preserve"> <value>Validate remote machine IP</value> </data> <data name="MouseWithoutBorders_SameSubnetOnly.Header" xml:space="preserve"> <value>Same subnet only</value> </data> <data name="MouseWithoutBorders_BlockScreenSaverOnOtherMachines.Header" xml:space="preserve"> <value>Block screen saver on other machines</value> </data> <data name="MouseWithoutBorders_MoveMouseRelatively.Header" xml:space="preserve"> <value>Move mouse relatively</value> </data> <data name="MouseWithoutBorders_BlockMouseAtScreenCorners.Header" xml:space="preserve"> <value>Block mouse at screen corners</value> </data> <data name="MouseWithoutBorders_ShowClipboardAndNetworkStatusMessages.Header" xml:space="preserve"> <value>Show clipboard and network status messages</value> </data> <data name="MouseWithoutBorders_ShowOriginalUI.Header" xml:space="preserve"> <value>Show the original Mouse Without Borders UI</value> </data> <data name="MouseWithoutBorders_ShowOriginalUI.Description" xml:space="preserve"> <value>This is accessible from the system tray and requires a restart.</value> </data> <data name="MouseWithoutBorders_ShareClipboard.Description" xml:space="preserve"> <value>If share clipboard stops working, Ctrl+Alt+Del then Esc may solve the problem.</value> </data> <data name="MouseWithoutBorders_TransferFile.Description" xml:space="preserve"> <value>If a file (&lt;100MB) is copied, it will be transferred to the remote machine clipboard.</value> </data> <data name="MouseWithoutBorders_HideMouseAtScreenEdge.Description" xml:space="preserve"> <value>Hide the mouse cursor at the top edge of the screen when switching to other machine. This option also steals the focus from any full-screen app to ensure the keyboard input is redirected.</value> </data> <data name="MouseWithoutBorders_DrawMouseCursor.Description" xml:space="preserve"> <value>Mouse cursor may not be visible in Windows 10 and later versions of Windows when there is no physical mouse attached.</value> </data> <data name="MouseWithoutBorders_ValidateRemoteMachineIP.Description" xml:space="preserve"> <value>Reverse DNS lookup to validate machine IP Address.</value> </data> <data name="MouseWithoutBorders_SameSubnetOnly.Description" xml:space="preserve"> <value>Only connect to machines in the same intranet NNN.NNN.*.* (only works when both machines have IPv4 enabled)</value> </data> <data name="MouseWithoutBorders_IPAddressMapping_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: MyLaptop 192.168.0.24</value> <comment>Don't translate MyLaptop</comment> </data> <data name="MouseWithoutBorders_IPAddressMapping.Header" xml:space="preserve"> <value>IP address mapping</value> </data> <data name="MouseWithoutBorders_IPAddressMapping.Description" xml:space="preserve"> <value>Resolve machine's IP address using manually entered mappings below.</value> </data> <data name="MouseWithoutBorders_BlockScreenSaverOnOtherMachines.Description" xml:space="preserve"> <value>Prevent screen saver from starting on other machines when user is actively working on this machine.</value> </data> <data name="MouseWithoutBorders_MoveMouseRelatively.Description" xml:space="preserve"> <value>Use this option when remote machine's monitor settings are different, or remote machine has multiple monitors.</value> </data> <data name="MouseWithoutBorders_BlockMouseAtScreenCorners.Description" xml:space="preserve"> <value>To avoid accident machine-switch at screen corners.</value> </data> <data name="MouseWithoutBorders_ShowClipboardAndNetworkStatusMessages.Description" xml:space="preserve"> <value>Show clipboard activities and network status in system tray notifications</value> </data> <data name="MouseWithoutBorders_KeyboardShortcuts_Group.Header" xml:space="preserve"> <value>Keyboard shortcuts</value> <comment>keyboard is the hardware peripheral</comment> </data> <data name="MouseWithoutBorders_AdvancedSettings_Group.Header" xml:space="preserve"> <value>Advanced Settings</value> </data> <data name="MouseWithoutBorders_EasyMouseOption.Header" xml:space="preserve"> <value>Easy Mouse: move between machines by moving the mouse pointer to the screen edges.</value> </data> <data name="MouseWithoutBorders_EasyMouseOption.Description" xml:space="preserve"> <value>Can also be set to move only when pressing Shift or Ctrl.</value> <comment>Shift and Ctrl are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_EasyMouseOption_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_EasyMouseOption_Enabled.Content" xml:space="preserve"> <value>Enabled</value> </data> <data name="MouseWithoutBorders_EasyMouseOption_Ctrl.Content" xml:space="preserve"> <value>Ctrl</value> <comment>This is the Ctrl keyboard key</comment> </data> <data name="MouseWithoutBorders_EasyMouseOption_Shift.Content" xml:space="preserve"> <value>Shift</value> <comment>This is the Shift keyboard key</comment> </data> <data name="MouseWithoutBorders_LockMachinesShortcut.Header" xml:space="preserve"> <value>Shortcut to lock all machines.</value> </data> <data name="MouseWithoutBorders_LockMachinesShortcut.Description" xml:space="preserve"> <value>Hit this hotkey twice to lock all machines. Note: Only the machines which have the same shortcut configured will be locked.</value> </data> <data name="MouseWithoutBorders_ToggleEasyMouseShortcut.Header" xml:space="preserve"> <value>Shortcut to toggle Easy Mouse.</value> <comment>Ctrl and Alt are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_ToggleEasyMouseShortcut.Description" xml:space="preserve"> <value>Only works if EasyMouse is set to Enabled or Disabled.</value> </data> <data name="MouseWithoutBorders_ToggleEasyMouseShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut.Header" xml:space="preserve"> <value>Shortcut to switch between machines. Ctrl+Alt+:</value> <comment>Ctrl and Alt are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut.Description" xml:space="preserve"> <value>Click on Ctrl+Alt+ the chosen option to switch between machines.</value> <comment>Ctrl and Alt are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut_F1.Content" xml:space="preserve"> <value>F1, F2, F3, F4</value> <comment>Don't localize. These are keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut_1.Content" xml:space="preserve"> <value>1, 2, 3, 4</value> <comment>Don't localize. These are keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_LockMachinesShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_ReconnectShortcut.Header" xml:space="preserve"> <value>Shortcut to try reconnecting</value> </data> <data name="MouseWithoutBorders_ReconnectShortcut.Description" xml:space="preserve"> <value>Just in case the connection is lost for any reason.</value> </data> <data name="MouseWithoutBorders_ReconnectShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut.Header" xml:space="preserve"> <value>Shortcut to switch to multiple machine mode.</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut.Description" xml:space="preserve"> <value>Allows controlling all computers at once.</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut_Ctrl3.Content" xml:space="preserve"> <value>Ctrl three times</value> <comment>This is the Ctrl keyboard key</comment> </data> <data name="VideoConference_Enable.Header" xml:space="preserve"> <value>Enable Video Conference Mute</value> </data> <data name="VideoConference.ModuleDescription" xml:space="preserve"> <value>Video Conference Mute is a quick and easy way to do a global "mute" of both your microphone and webcam. Disabling this module or closing PowerToys will unmute the microphone and camera.</value> </data> <data name="VideoConference_CameraAndMicrophoneMuteHotkeyControl_Header.Header" xml:space="preserve"> <value>Mute camera &amp; microphone</value> </data> <data name="VideoConference_MicrophoneMuteHotkeyControl_Header.Header" xml:space="preserve"> <value>Mute microphone</value> </data> <data name="VideoConference_MicrophonePushToTalkHotkeyControl_Header.Header" xml:space="preserve"> <value>Push to talk</value> </data> <data name="VideoConference_CameraMuteHotkeyControl_Header.Header" xml:space="preserve"> <value>Mute camera</value> </data> <data name="VideoConference_SelectedCamera.Header" xml:space="preserve"> <value>Selected camera</value> </data> <data name="VideoConference_SelectedMicrophone.Header" xml:space="preserve"> <value>Selected microphone</value> </data> <data name="VideoConference_PushToReverse.Header" xml:space="preserve"> <value>Push to reverse</value> </data> <data name="VideoConference_PushToReverse.Description" xml:space="preserve"> <value>If enabled, allows both push to talk and push to mute, depending on microphone state</value> </data> <data name="VideoConference_CameraOverlayImagePathHeader.Header" xml:space="preserve"> <value>Image displayed when camera is muted</value> </data> <data name="VideoConference_ToolbarPosition.Header" xml:space="preserve"> <value>Toolbar position</value> </data> <data name="VideoConference_ToolbarPosition_TopCenter.Content" xml:space="preserve"> <value>Top center</value> </data> <data name="VideoConference_ToolbarPosition_TopLeftCorner.Content" xml:space="preserve"> <value>Top left corner</value> </data> <data name="VideoConference_ToolbarPosition_TopRightCorner.Content" xml:space="preserve"> <value>Top right corner</value> </data> <data name="VideoConference_ToolbarPosition_BottomLeftCorner.Content" xml:space="preserve"> <value>Bottom left corner</value> </data> <data name="VideoConference_ToolbarPosition_BottomCenter.Content" xml:space="preserve"> <value>Bottom center</value> </data> <data name="VideoConference_ToolbarPosition_BottomRightCorner.Content" xml:space="preserve"> <value>Bottom right corner</value> </data> <data name="VideoConference_ToolbarMonitor.Header" xml:space="preserve"> <value>Show toolbar on</value> </data> <data name="VideoConference_ToolbarMonitor_Main.Content" xml:space="preserve"> <value>Main monitor</value> </data> <data name="VideoConference_ToolbarMonitor_UnderCursor.Content" xml:space="preserve"> <value>Monitor under cursor</value> </data> <data name="VideoConference_ToolbarMonitor_ActiveWindow.Content" xml:space="preserve"> <value>Active window monitor</value> </data> <data name="VideoConference_ToolbarMonitor_All.Content" xml:space="preserve"> <value>All monitors</value> </data> <data name="VideoConference_ToolbarHide.Header" xml:space="preserve"> <value>Hide toolbar</value> </data> <data name="VideoConference_ToolbarHideMuted.Content" xml:space="preserve"> <value>When both camera and microphone are muted</value> </data> <data name="VideoConference_ToolbarHideNever.Content" xml:space="preserve"> <value>Never</value> </data> <data name="VideoConference_ToolbarHideUnmuted.Content" xml:space="preserve"> <value>When both camera and microphone are unmuted</value> </data> <data name="VideoConference_ToolbarHideTimeout.Content" xml:space="preserve"> <value>After timeout</value> </data> <data name="VideoConference.ModuleTitle" xml:space="preserve"> <value>Video Conference Mute</value> </data> <data name="VideoConference_Camera.Header" xml:space="preserve"> <value>Camera</value> </data> <data name="VideoConference_Camera.Description" xml:space="preserve"> <value>To use this feature, make sure to select PowerToys VideoConference Mute as your camera source in your apps.</value> </data> <data name="VideoConference_Microphone.Header" xml:space="preserve"> <value>Microphone</value> </data> <data name="VideoConference_Toolbar.Header" xml:space="preserve"> <value>Toolbar</value> </data> <data name="VideoConference_Behavior.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="VideoConference_StartupAction.Header" xml:space="preserve"> <value>Startup action</value> </data> <data name="VideoConference_StartupActionNothing.Content" xml:space="preserve"> <value>Nothing</value> </data> <data name="VideoConference_StartupActionUnmute.Content" xml:space="preserve"> <value>Unmute</value> </data> <data name="VideoConference_StartupActionMute.Content" xml:space="preserve"> <value>Mute</value> </data> <data name="VideoConference_Shortcuts.Header" xml:space="preserve"> <value>Shortcuts</value> </data> <data name="VideoConference_CameraOverlayImageAlt.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Camera overlay image preview</value> </data> <data name="VideoConference_CameraOverlayImageBrowse.Content" xml:space="preserve"> <value>Browse</value> </data> <data name="VideoConference_CameraOverlayImageClear.Content" xml:space="preserve"> <value>Clear</value> </data> <data name="Shell_General.Content" xml:space="preserve"> <value>General</value> <comment>Navigation view item name for General</comment> </data> <data name="Shell_Awake.Content" xml:space="preserve"> <value>Awake</value> <comment>Product name: Navigation view item name for Awake</comment> </data> <data name="Shell_PowerLauncher.Content" xml:space="preserve"> <value>PowerToys Run</value> <comment>Product name: Navigation view item name for PowerToys Run</comment> </data> <data name="Shell_PowerRename.Content" xml:space="preserve"> <value>PowerRename</value> <comment>Product name: Navigation view item name for PowerRename</comment> </data> <data name="Shell_ShortcutGuide.Content" xml:space="preserve"> <value>Shortcut Guide</value> <comment>Product name: Navigation view item name for Shortcut Guide</comment> </data> <data name="Shell_PowerPreview.Content" xml:space="preserve"> <value>File Explorer add-ons</value> <comment>Product name: Navigation view item name for File Explorer. Please use File Explorer as in the context of File Explorer in Windows</comment> </data> <data name="Shell_FancyZones.Content" xml:space="preserve"> <value>FancyZones</value> <comment>Product name: Navigation view item name for FancyZones</comment> </data> <data name="Shell_ImageResizer.Content" xml:space="preserve"> <value>Image Resizer</value> <comment>Product name: Navigation view item name for Image Resizer</comment> </data> <data name="Shell_ColorPicker.Content" xml:space="preserve"> <value>Color Picker</value> <comment>Product name: Navigation view item name for Color Picker</comment> </data> <data name="Shell_KeyboardManager.Content" xml:space="preserve"> <value>Keyboard Manager</value> <comment>Product name: Navigation view item name for Keyboard Manager</comment> </data> <data name="Shell_MouseWithoutBorders.Content" xml:space="preserve"> <value>Mouse Without Borders</value> <comment>Product name: Navigation view item name for Mouse Without Borders</comment> </data> <data name="Shell_MouseUtilities.Content" xml:space="preserve"> <value>Mouse utilities</value> <comment>Product name: Navigation view item name for Mouse utilities</comment> </data> <data name="Shell_NavigationMenu_Announce_Collapse" xml:space="preserve"> <value>Navigation closed</value> <comment>Accessibility announcement when the navigation pane collapses</comment> </data> <data name="Shell_NavigationMenu_Announce_Open" xml:space="preserve"> <value>Navigation opened</value> <comment>Accessibility announcement when the navigation pane opens</comment> </data> <data name="KeyboardManager_ConfigHeader.Text" xml:space="preserve"> <value>Current configuration</value> <comment>Keyboard Manager current configuration header</comment> </data> <data name="KeyboardManager.ModuleDescription" xml:space="preserve"> <value>Reconfigure your keyboard by remapping keys and shortcuts</value> <comment>Keyboard Manager page description</comment> </data> <data name="KeyboardManager_EnableToggle.Header" xml:space="preserve"> <value>Enable Keyboard Manager</value> <comment>Keyboard Manager enable toggle header. Do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="KeyboardManager_ProfileDescription.Text" xml:space="preserve"> <value>Select the profile to display the active key remap and shortcuts</value> <comment>Keyboard Manager configuration dropdown description</comment> </data> <data name="KeyboardManager_RemapKeyboardButton.Header" xml:space="preserve"> <value>Remap a key</value> <comment>Keyboard Manager remap keyboard button content</comment> </data> <data name="KeyboardManager_Keys.Header" xml:space="preserve"> <value>Keys</value> <comment>Keyboard Manager remap keyboard header</comment> </data> <data name="KeyboardManager_RemapShortcutsButton.Header" xml:space="preserve"> <value>Remap a shortcut</value> <comment>Keyboard Manager remap shortcuts button</comment> </data> <data name="KeyboardManager_Shortcuts.Header" xml:space="preserve"> <value>Shortcuts</value> <comment>Keyboard Manager remap keyboard header</comment> </data> <data name="KeyboardManager_All_Apps_Description" xml:space="preserve"> <value>All Apps</value> <comment>Should be the same as EditShortcuts_AllApps from keyboard manager editor</comment> </data> <data name="Shortcuts.Header" xml:space="preserve"> <value>Shortcuts</value> </data> <data name="Shortcut.Header" xml:space="preserve"> <value>Shortcut</value> </data> <data name="RemapKeysList.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Current Key Remappings</value> </data> <data name="RemapShortcutsList.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Current Shortcut Remappings</value> </data> <data name="KeyboardManager_RemappedKeysListItem.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Key Remapping</value> <comment>key as in keyboard key</comment> </data> <data name="KeyboardManager_RemappedShortcutsListItem.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Shortcut Remapping</value> </data> <data name="KeyboardManager_RemappedTo.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Remapped to</value> </data> <data name="KeyboardManager_ShortcutRemappedTo.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Remapped to</value> </data> <data name="KeyboardManager_TargetApp.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>For Target Application</value> <comment>What computer application would this be for</comment> </data> <data name="KeyboardManager_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Keyboard Manager</value> <comment>do not loc, product name</comment> </data> <data name="ColorPicker.ModuleDescription" xml:space="preserve"> <value>Quick and simple system-wide color picker.</value> </data> <data name="ColorPicker_EnableColorPicker.Header" xml:space="preserve"> <value>Enable Color Picker</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="ColorPicker_ChangeCursor.Content" xml:space="preserve"> <value>Change cursor when picking a color</value> </data> <data name="PowerLauncher.ModuleDescription" xml:space="preserve"> <value>A quick launcher that has additional capabilities without sacrificing performance.</value> </data> <data name="PowerLauncher_EnablePowerLauncher.Header" xml:space="preserve"> <value>Enable PowerToys Run</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="PowerLauncher_SearchResults.Header" xml:space="preserve"> <value>Search &amp; results</value> </data> <data name="PowerLauncher_SearchResultPreference.Header" xml:space="preserve"> <value>Search result preference</value> </data> <data name="PowerLauncher_UsePinyin.Header" xml:space="preserve"> <value>Use Pinyin</value> </data> <data name="PowerLauncher_UsePinyin.Description" xml:space="preserve"> <value>Experimental: Use Pinyin on the search query. May not work for every plugin.</value> </data> <data name="PowerLauncher_SearchResultPreference_MostRecentlyUsed" xml:space="preserve"> <value>Most recently used</value> </data> <data name="PowerLauncher_SearchResultPreference_AlphabeticalOrder" xml:space="preserve"> <value>Alphabetical order</value> </data> <data name="PowerLauncher_SearchResultPreference_RunningProcessesOpenApplications" xml:space="preserve"> <value>Running processes/open applications</value> </data> <data name="PowerLauncher_SearchTypePreference.Header" xml:space="preserve"> <value>Search type preference</value> </data> <data name="PowerLauncher_SearchTypePreference_ApplicationName" xml:space="preserve"> <value>Application name</value> </data> <data name="PowerLauncher_SearchTypePreference_StringInApplication" xml:space="preserve"> <value>A string that is contained in the application</value> </data> <data name="PowerLauncher_SearchTypePreference_ExecutableName" xml:space="preserve"> <value>Executable name</value> </data> <data name="PowerLauncher_MaximumNumberOfResults.Header" xml:space="preserve"> <value>Number of results shown before scrolling</value> </data> <data name="PowerLauncher_OpenPowerLauncher.Header" xml:space="preserve"> <value>Open PowerToys Run</value> </data> <data name="PowerLauncher_OpenFileLocation.Header" xml:space="preserve"> <value>Open file location</value> </data> <data name="PowerLauncher_CopyPathLocation.Header" xml:space="preserve"> <value>Copy path location</value> </data> <data name="PowerLauncher_OpenConsole.Header" xml:space="preserve"> <value>Open console</value> <comment>console refers to Windows command prompt</comment> </data> <data name="PowerLauncher_OverrideWinRKey.Content" xml:space="preserve"> <value>Override Win+R shortcut</value> </data> <data name="PowerLauncher_OverrideWinSKey.Content" xml:space="preserve"> <value>Override Win+S shortcut</value> </data> <data name="PowerLauncher_IgnoreHotkeysInFullScreen.Content" xml:space="preserve"> <value>Ignore shortcuts in fullscreen mode</value> </data> <data name="PowerLauncher_UseCentralizedKeyboardHook.Header" xml:space="preserve"> <value>Use centralized keyboard hook</value> </data> <data name="PowerLauncher_UseCentralizedKeyboardHook.Description" xml:space="preserve"> <value>Try this if there are issues with the shortcut (PowerToys Run might not get focus when triggered from an elevated window)</value> </data> <data name="PowerLauncher_ClearInputOnLaunch.Content" xml:space="preserve"> <value>Clear the previous query on launch</value> </data> <data name="PowerLauncher_TabSelectsContextButtons.Header" xml:space="preserve"> <value>Tab through context buttons</value> </data> <data name="PowerLauncher_TabSelectsContextButtons.Description" xml:space="preserve"> <value>Pressing tab will first select through the available context buttons of the current selection before moving onto the next result</value> </data> <data name="PowerLauncher_GenerateThumbnailsFromFiles.Header" xml:space="preserve"> <value>Generate thumbnails from files</value> </data> <data name="PowerLauncher_GenerateThumbnailsFromFiles.Description" xml:space="preserve"> <value>Results will try to generate thumbnails for files. Disabling this setting may increase stability and speed</value> </data> <data name="PowerLauncher_SearchQueryResultsWithDelay.Header" xml:space="preserve"> <value>Input Smoothing</value> <comment>This is about adding a delay to wait for more input before executing a search</comment> </data> <data name="PowerLauncher_SearchQueryResultsWithDelay.Description" xml:space="preserve"> <value>Wait for more input before searching. This reduces interface jumpiness and system load.</value> </data> <data name="PowerLauncher_FastSearchInputDelayMs.Header" xml:space="preserve"> <value>Immediate plugins</value> </data> <data name="PowerLauncher_FastSearchInputDelayMs.Description" xml:space="preserve"> <value>Affects the plugins that make the UI wait for their results by this amount. Recommended: 30-50 ms.</value> </data> <data name="PowerLauncher_SlowSearchInputDelayMs.Header" xml:space="preserve"> <value>Background execution plugins</value> </data> <data name="PowerLauncher_SlowSearchInputDelayMs.Description" xml:space="preserve"> <value>Affects the plugins that execute in the background by this amount. Recommended: 100-150 ms.</value> </data> <data name="PowerLauncher_SearchInputDelayMs.Header" xml:space="preserve"> <value>Fast plugin throttle (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="KeyboardManager_KeysMappingLayoutRightHeader.Text" xml:space="preserve"> <value>To:</value> <comment>Keyboard Manager mapping keys view right header</comment> </data> <data name="Appearance_GroupSettings.Text" xml:space="preserve"> <value>Appearance</value> </data> <data name="Fancyzones_ImageHyperlinkToDocs.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>FancyZones windows</value> <comment>do not loc the Product name</comment> </data> <data name="FancyZones.ModuleDescription" xml:space="preserve"> <value>Create window layouts to help make multi-tasking easy.</value> <comment>windows refers to application windows</comment> </data> <data name="FancyZones_DisplayOrWorkAreaChangeMoveWindowsCheckBoxControl.Content" xml:space="preserve"> <value>Keep windows in their zones when the screen resolution or work area changes</value> <comment>windows refers to application windows</comment> </data> <data name="FancyZones_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable FancyZones</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="FancyZones_ExcludeApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="FancyZones_ExcludeApps.Description" xml:space="preserve"> <value>Excludes an application from snapping to zones and will only react to Windows Snap - add one application name per line</value> </data> <data name="FancyZones_HighlightOpacity.Header" xml:space="preserve"> <value>Opacity (%)</value> </data> <data name="FancyZones_HotkeyEditorControl.Header" xml:space="preserve"> <value>Open layout editor</value> <comment>Shortcut to launch the FancyZones layout editor application</comment> </data> <data name="FancyZones_WindowSwitching_GroupSettings.Header" xml:space="preserve"> <value>Switch between windows in the current zone</value> </data> <data name="FancyZones_HotkeyNextTabControl.Header" xml:space="preserve"> <value>Next window</value> </data> <data name="FancyZones_HotkeyPrevTabControl.Header" xml:space="preserve"> <value>Previous window</value> </data> <data name="SettingsPage_SetShortcut.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Shortcut setting</value> </data> <data name="SettingsPage_SetShortcut_Glyph.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Information Symbol</value> </data> <data name="FancyZones_LaunchEditorButtonControl.Header" xml:space="preserve"> <value>Launch layout editor</value> <comment>launches the FancyZones layout editor application</comment> </data> <data name="FancyZones_LaunchEditorButtonControl.Description" xml:space="preserve"> <value>Set and manage your layouts</value> <comment>launches the FancyZones layout editor application</comment> </data> <data name="FancyZones_MakeDraggedWindowTransparentCheckBoxControl.Content" xml:space="preserve"> <value>Make dragged window transparent</value> </data> <data name="FancyZones_MouseDragCheckBoxControl_Header.Content" xml:space="preserve"> <value>Use a non-primary mouse button to toggle zone activation</value> </data> <data name="FancyZones_MouseMiddleClickSpanningMultipleZonesCheckBoxControl_Header.Content" xml:space="preserve"> <value>Use middle-click mouse button to toggle multiple zones spanning</value> </data> <data name="FancyZones_MoveWindowsAcrossAllMonitorsCheckBoxControl.Content" xml:space="preserve"> <value>Move windows between zones across all monitors</value> </data> <data name="FancyZones_OverrideSnapHotkeys.Header" xml:space="preserve"> <value>Override Windows Snap</value> </data> <data name="FancyZones_OverrideSnapHotkeys.Description" xml:space="preserve"> <value>This overrides the Windows Snap shortcut (Win + arrow) to move windows between zones</value> </data> <data name="FancyZones_ShiftDragCheckBoxControl_Header.Content" xml:space="preserve"> <value>Hold Shift key to activate zones while dragging</value> </data> <data name="FancyZones_ShowZonesOnAllMonitorsCheckBoxControl.Content" xml:space="preserve"> <value>Show zones on all monitors while dragging a window</value> </data> <data name="FancyZones_AppLastZoneMoveWindows.Content" xml:space="preserve"> <value>Move newly created windows to their last known zone</value> <comment>windows refers to application windows</comment> </data> <data name="FancyZones_OpenWindowOnActiveMonitor.Content" xml:space="preserve"> <value>Move newly created windows to the current active monitor (Experimental)</value> </data> <data name="FancyZones_UseCursorPosEditorStartupScreen.Header" xml:space="preserve"> <value>Launch editor on the display</value> </data> <data name="FancyZones_UseCursorPosEditorStartupScreen.Description" xml:space="preserve"> <value>When using multiple displays</value> </data> <data name="FancyZones_LaunchPositionMouse.Content" xml:space="preserve"> <value>Where the mouse pointer is</value> </data> <data name="FancyZones_LaunchPositionScreen.Content" xml:space="preserve"> <value>With active focus</value> </data> <data name="FancyZones_ZoneBehavior_GroupSettings.Header" xml:space="preserve"> <value>Zone behavior</value> </data> <data name="FancyZones_ZoneBehavior_GroupSettings.Description" xml:space="preserve"> <value>Manage how zones behave when using FancyZones</value> </data> <data name="FancyZones_Zones.Header" xml:space="preserve"> <value>Zones</value> </data> <data name="FancyZones_ZoneHighlightColor.Header" xml:space="preserve"> <value>Highlight color</value> </data> <data name="FancyZones_ZoneSetChangeMoveWindows.Content" xml:space="preserve"> <value>During zone layout changes, windows assigned to a zone will match new size/positions</value> </data> <data name="AttributionTitle.Text" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="General.ModuleTitle" xml:space="preserve"> <value>General</value> </data> <data name="GeneralPage_CheckForUpdates.Content" xml:space="preserve"> <value>Check for updates</value> </data> <data name="General_SettingsBackupAndRestoreLocationText.Header" xml:space="preserve"> <value>Location</value> </data> <data name="General_SettingsBackupAndRestore_ButtonBackup.Content" xml:space="preserve"> <value>Backup</value> </data> <data name="General_SettingsBackupInfo_FileNameHeader.Text" xml:space="preserve"> <value>File name:</value> </data> <data name="General_SettingsBackupAndRestore_LinkRefresh.Text" xml:space="preserve"> <value>Refresh</value> </data> <data name="General_SettingsBackupAndRestore_ButtonRestore.Content" xml:space="preserve"> <value>Restore</value> </data> <data name="General_SettingsBackupAndRestore_ButtonSelectLocation.Text" xml:space="preserve"> <value>Select folder</value> </data> <data name="GeneralPage_UpdateNow.Content" xml:space="preserve"> <value>Update now</value> </data> <data name="GeneralPage_PrivacyStatement_URL.Text" xml:space="preserve"> <value>Privacy statement</value> </data> <data name="GeneralPage_ReportAbug.Text" xml:space="preserve"> <value>Report a bug</value> <comment>Report an issue inside powertoys</comment> </data> <data name="GeneralPage_RequestAFeature_URL.Text" xml:space="preserve"> <value>Request a feature</value> <comment>Tell our team what we should build</comment> </data> <data name="GeneralPage_RestartAsAdmin_Button.Content" xml:space="preserve"> <value>Restart PowerToys as administrator</value> <comment>running PowerToys as a higher level user, account is typically referred to as an admin / administrator</comment> </data> <data name="GeneralPage_RunAtStartUp.Header" xml:space="preserve"> <value>Run at startup</value> </data> <data name="GeneralPage_RunAtStartUp.Description" xml:space="preserve"> <value>PowerToys will launch automatically</value> </data> <data name="PowerRename.ModuleDescription" xml:space="preserve"> <value>A Windows Shell extension for more advanced bulk renaming using search &amp; replace or regular expressions.</value> </data> <data name="PowerRename_ShellIntegration.Header" xml:space="preserve"> <value>Shell integration</value> <comment>This refers to directly integrating in with Windows</comment> </data> <data name="PowerRename_Toggle_Enable.Header" xml:space="preserve"> <value>Enable PowerRename</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="RadioButtons_Name_Theme.Text" xml:space="preserve"> <value>Settings theme</value> </data> <data name="PowerRename_Toggle_HideIcon.Content" xml:space="preserve"> <value>Hide icon in context menu</value> </data> <data name="PowerRename_Toggle_ContextMenu.Header" xml:space="preserve"> <value>Show PowerRename in</value> </data> <data name="PowerRename_Toggle_StandardContextMenu.Content" xml:space="preserve"> <value>Default and extended context menu</value> </data> <data name="PowerRename_Toggle_ExtendedContextMenu.Content" xml:space="preserve"> <value>Extended context menu only</value> </data> <data name="ExtendedContextMenuInfo.Title" xml:space="preserve"> <value>Press Shift + right-click on files to open the extended context menu</value> </data> <data name="PowerRename_Toggle_MaxDispListNum.Header" xml:space="preserve"> <value>Maximum number of items</value> </data> <data name="PowerRename_Toggle_RestoreFlagsOnLaunch.Header" xml:space="preserve"> <value>Show recently used strings</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_MD.Header" xml:space="preserve"> <value>Markdown</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_MD.Description" xml:space="preserve"> <value>.md, .markdown, .mdown, .mkdn, .mkd, .mdwn, .mdtxt, .mdtext</value> <comment>File extensions, should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_Monaco.Header" xml:space="preserve"> <value>Source code files (Monaco)</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_Monaco.Description" xml:space="preserve"> <value>.cpp, .py, .json, .xml, .csproj, ...</value> <comment>File extensions should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_SVG.Header" xml:space="preserve"> <value>Scalable Vector Graphics</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_SVG.Description" xml:space="preserve"> <value>.svg</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_Preview_SVG_Color_Mode.Header" xml:space="preserve"> <value>Color mode</value> </data> <data name="FileExplorerPreview_Preview_SVG_Color_Mode_Default.Content" xml:space="preserve"> <value>Windows default</value> </data> <data name="FileExplorerPreview_Preview_SVG_Color_Solid_Color.Content" xml:space="preserve"> <value>Solid color</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade.Content" xml:space="preserve"> <value>Checkered pattern</value> </data> <data name="FileExplorerPreview_Preview_SVG_Background_Color.Header" xml:space="preserve"> <value>Color</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_Mode.Header" xml:space="preserve"> <value>Checkered shade</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_1.Content" xml:space="preserve"> <value>Light</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_2.Content" xml:space="preserve"> <value>Medium</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_3.Content" xml:space="preserve"> <value>Dark</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_PDF.Header" xml:space="preserve"> <value>Portable Document Format</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_PDF.Description" xml:space="preserve"> <value>.pdf</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_SVG.Header" xml:space="preserve"> <value>Scalable Vector Graphics</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_SVG.Description" xml:space="preserve"> <value>.svg</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_STL.Header" xml:space="preserve"> <value>Stereolithography</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_STL.Description" xml:space="preserve"> <value>.stl</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_Color_Thumbnail_STL.Header" xml:space="preserve"> <value>Color</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_PDF.Header" xml:space="preserve"> <value>Portable Document Format</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_PDF.Description" xml:space="preserve"> <value>.pdf</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview.ModuleDescription" xml:space="preserve"> <value>These settings allow you to manage your Windows File Explorer custom preview handlers.</value> </data> <data name="PowerRename_AutoCompleteHeader.Header" xml:space="preserve"> <value>Auto-complete</value> </data> <data name="OpenSource_Notice.Text" xml:space="preserve"> <value>Open-source notice</value> </data> <data name="PowerRename_Toggle_AutoComplete.Header" xml:space="preserve"> <value>Enable auto-complete for the search &amp; replace fields</value> </data> <data name="FancyZones_BorderColor.Header" xml:space="preserve"> <value>Border color</value> </data> <data name="FancyZones_InActiveColor.Header" xml:space="preserve"> <value>Inactive color</value> </data> <data name="ShortcutGuide.ModuleDescription" xml:space="preserve"> <value>Shows a help overlay with Windows shortcuts.</value> </data> <data name="ShortcutGuide_PressTimeForGlobalWindowsShortcuts.Header" xml:space="preserve"> <value>Press duration before showing global Windows shortcuts (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="ShortcutGuide_ActivationMethod.Header" xml:space="preserve"> <value>Activation method</value> </data> <data name="ShortcutGuide_ActivationMethod.Description" xml:space="preserve"> <value>Use a shortcut or press the Windows key for some time to activate</value> </data> <data name="Radio_ShortcutGuide_ActivationMethod_CustomizedShortcut.Content" xml:space="preserve"> <value>Custom shortcut</value> </data> <data name="Radio_ShortcutGuide_ActivationMethod_LongPressWindowsKey.Content" xml:space="preserve"> <value>Hold down Windows key</value> </data> <data name="ShortcutGuide_PressWinKeyWarning.Title" xml:space="preserve"> <value>In some edge cases Shortcut Guide might not function correctly when using this activation method</value> </data> <data name="Appearance_Behavior.Header" xml:space="preserve"> <value>Appearance &amp; behavior</value> </data> <data name="General_SettingsBackupAndRestoreTitle.Header" xml:space="preserve"> <value>Backup &amp; restore</value> </data> <data name="General_SettingsBackupAndRestore.Header" xml:space="preserve"> <value>Backup and restore your settings</value> </data> <data name="General_SettingsBackupAndRestore.Description" xml:space="preserve"> <value>PowerToys will restart automatically if needed</value> </data> <data name="ShortcutGuide_Enable.Header" xml:space="preserve"> <value>Enable Shortcut Guide</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="ShortcutGuide_OverlayOpacity.Header" xml:space="preserve"> <value>Background opacity (%)</value> </data> <data name="ShortcutGuide_DisabledApps.Header" xml:space="preserve"> <value>Exclude apps</value> </data> <data name="ShortcutGuide_DisabledApps.Description" xml:space="preserve"> <value>Turns off Shortcut Guide when these applications have focus - add one application name per line</value> </data> <data name="ShortcutGuide_DisabledApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> <comment>Don't translate outlook.exe</comment> </data> <data name="ImageResizer_CustomSizes.Header" xml:space="preserve"> <value>Image sizes</value> </data> <data name="ImageResizer_Presets.Header" xml:space="preserve"> <value>Presets</value> </data> <data name="ImageResizer_Presets.Description" xml:space="preserve"> <value>Manage preset sizes that can be used in the editor</value> </data> <data name="ImageResizer_FilenameFormatHeader.Description" xml:space="preserve"> <value>This format is used as the filename for resized images</value> </data> <data name="ImageResizer.ModuleDescription" xml:space="preserve"> <value>Lets you resize images by right-clicking.</value> </data> <data name="ImageResizer_EnableToggle.Header" xml:space="preserve"> <value>Enable Image Resizer</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="ImagesSizesListView.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Image Size</value> </data> <data name="ImageResizer_Configurations.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Configurations</value> </data> <data name="ImageResizer_Name.Header" xml:space="preserve"> <value>Name</value> </data> <data name="ImageResizer_Fit.Header" xml:space="preserve"> <value>Fit</value> </data> <data name="ImageResizer_Width.Header" xml:space="preserve"> <value>Width</value> </data> <data name="ImageResizer_Height.Header" xml:space="preserve"> <value>Height</value> </data> <data name="ImageResizer_Size.Header" xml:space="preserve"> <value>Unit</value> </data> <data name="RemoveButton.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Remove</value> <comment>Removes a user defined setting group for Image Resizer</comment> </data> <data name="RemoveItem.Text" xml:space="preserve"> <value>Delete</value> </data> <data name="ImageResizer_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Image Resizer</value> </data> <data name="ImageResizer_AddSizeButton.Content" xml:space="preserve"> <value>Add new size</value> </data> <data name="ImageResizer_SaveSizeButton.Label" xml:space="preserve"> <value>Save sizes</value> </data> <data name="ImageResizer_Encoding.Header" xml:space="preserve"> <value>JPEG quality level (%)</value> </data> <data name="ImageResizer_PNGInterlacing.Header" xml:space="preserve"> <value>PNG interlacing</value> </data> <data name="ImageResizer_TIFFCompression.Header" xml:space="preserve"> <value>TIFF compression</value> </data> <data name="File.Header" xml:space="preserve"> <value>File</value> <comment>as in a computer file</comment> </data> <data name="Default.Content" xml:space="preserve"> <value>Default</value> </data> <data name="ImageResizer_ENCODER_TIFF_CCITT3.Content" xml:space="preserve"> <value>CCITT3</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_CCITT4.Content" xml:space="preserve"> <value>CCITT4</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_Default.Content" xml:space="preserve"> <value>Default</value> </data> <data name="ImageResizer_ENCODER_TIFF_LZW.Content" xml:space="preserve"> <value>LZW</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_None.Content" xml:space="preserve"> <value>None</value> </data> <data name="ImageResizer_ENCODER_TIFF_RLE.Content" xml:space="preserve"> <value>RLE</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_Zip.Content" xml:space="preserve"> <value>Zip</value> <comment>do not loc</comment> </data> <data name="ImageResizer_FallbackEncoder_BMP.Content" xml:space="preserve"> <value>BMP encoder</value> </data> <data name="ImageResizer_FallbackEncoder_GIF.Content" xml:space="preserve"> <value>GIF encoder</value> </data> <data name="ImageResizer_FallbackEncoder_JPEG.Content" xml:space="preserve"> <value>JPEG encoder</value> </data> <data name="ImageResizer_FallbackEncoder_PNG.Content" xml:space="preserve"> <value>PNG encoder</value> </data> <data name="ImageResizer_FallbackEncoder_TIFF.Content" xml:space="preserve"> <value>TIFF encoder</value> </data> <data name="ImageResizer_FallbackEncoder_WMPhoto.Content" xml:space="preserve"> <value>WMPhoto encoder</value> </data> <data name="ImageResizer_Sizes_Fit_Fill.Content" xml:space="preserve"> <value>Fill</value> <comment>Refers to filling an image into a certain size. It could overflow</comment> </data> <data name="ImageResizer_Sizes_Fit_Fill_ThirdPersonSingular.Text" xml:space="preserve"> <value>Fill</value> <comment>Refers to filling an image into a certain size. It could overflow</comment> </data> <data name="ImageResizer_Sizes_Fit_Fit.Content" xml:space="preserve"> <value>Fit</value> <comment>Refers to fitting an image into a certain size. It won't overflow</comment> </data> <data name="ImageResizer_Sizes_Fit_Stretch.Content" xml:space="preserve"> <value>Stretch</value> <comment>Refers to stretching an image into a certain size. Won't overflow but could distort.</comment> </data> <data name="ImageResizer_Sizes_Units_CM.Content" xml:space="preserve"> <value>Centimeters</value> </data> <data name="ImageResizer_Sizes_Units_Inches.Content" xml:space="preserve"> <value>Inches</value> </data> <data name="ImageResizer_Sizes_Units_Percent.Content" xml:space="preserve"> <value>Percent</value> </data> <data name="ImageResizer_Sizes_Units_Pixels.Content" xml:space="preserve"> <value>Pixels</value> </data> <data name="Off.Content" xml:space="preserve"> <value>Off</value> </data> <data name="On.Content" xml:space="preserve"> <value>On</value> </data> <data name="GeneralPage_ToggleSwitch_AlwaysRunElevated_Link.Content" xml:space="preserve"> <value>Learn more about administrator mode</value> </data> <data name="GeneralPage_ToggleSwitch_AutoDownloadUpdates.Header" xml:space="preserve"> <value>Download updates automatically</value> </data> <data name="GeneralPage_ToggleSwitch_AutoDownloadUpdates.Description" xml:space="preserve"> <value>Except on metered connections</value> </data> <data name="GeneralPage_ToggleSwitch_RunningAsAdminNote.Text" xml:space="preserve"> <value>Currently running as administrator</value> </data> <data name="GeneralSettings_AlwaysRunAsAdminText.Header" xml:space="preserve"> <value>Always run as administrator</value> </data> <data name="GeneralSettings_AlwaysRunAsAdminText.Description" xml:space="preserve"> <value>You need to run as administrator to use this setting</value> </data> <data name="GeneralSettings_RunningAsUserText" xml:space="preserve"> <value>Running as user</value> </data> <data name="GeneralSettings_RunningAsAdminText" xml:space="preserve"> <value>Running as administrator</value> </data> <data name="FancyZones.ModuleTitle" xml:space="preserve"> <value>FancyZones</value> </data> <data name="FileExplorerPreview.ModuleTitle" xml:space="preserve"> <value>File Explorer</value> </data> <data name="FileExplorerPreview_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>File Explorer</value> <comment>Use same translation as Windows does for File Explorer</comment> </data> <data name="ImageResizer.ModuleTitle" xml:space="preserve"> <value>Image Resizer</value> </data> <data name="KeyboardManager.ModuleTitle" xml:space="preserve"> <value>Keyboard Manager</value> </data> <data name="ColorPicker.ModuleTitle" xml:space="preserve"> <value>Color Picker</value> </data> <data name="PowerLauncher.ModuleTitle" xml:space="preserve"> <value>PowerToys Run</value> </data> <data name="PowerToys_Run_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>PowerToys Run</value> </data> <data name="PowerRename.ModuleTitle" xml:space="preserve"> <value>PowerRename</value> <comment>do not loc the product name</comment> </data> <data name="PowerRename_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>PowerRename</value> <comment>do not loc</comment> </data> <data name="ShortcutGuide.ModuleTitle" xml:space="preserve"> <value>Shortcut Guide</value> </data> <data name="Shortcut_Guide_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Shortcut Guide</value> </data> <data name="General_Repository.Text" xml:space="preserve"> <value>GitHub repository</value> </data> <data name="General_Version.Header" xml:space="preserve"> <value>Version</value> </data> <data name="General_VersionLastChecked.Text" xml:space="preserve"> <value>Last checked: </value> </data> <data name="General_SettingsBackupInfo_DateHeader.Text" xml:space="preserve"> <value>Created at:</value> </data> <data name="General_SettingsBackupAndRestoreStatusInfo.Header" xml:space="preserve"> <value>Backup information</value> </data> <data name="General_SettingsBackupInfo_SourceHeader.Text" xml:space="preserve"> <value>Source machine:</value> </data> <data name="General_SettingsBackupInfo_StatusHeader.Text" xml:space="preserve"> <value>Status:</value> </data> <data name="General_Version.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Version</value> </data> <data name="Admin_mode.Header" xml:space="preserve"> <value>Administrator mode</value> </data> <data name="FancyZones_RestoreSize.Content" xml:space="preserve"> <value>Restore the original size of windows when unsnapping</value> </data> <data name="ImageResizer_FallBackEncoderText.Header" xml:space="preserve"> <value>Fallback encoder</value> </data> <data name="ImageResizer_FileFormatDescription.Text" xml:space="preserve"> <value>The following parameters can be used:</value> </data> <data name="ImageResizer_FilenameFormatHeader.Header" xml:space="preserve"> <value>Filename format</value> </data> <data name="ImageResizer_FileModifiedDate.Header" xml:space="preserve"> <value>File modified timestamp</value> </data> <data name="ImageResizer_FileModifiedDate.Description" xml:space="preserve"> <value>Used as the 'modified timestamp' in the file properties</value> </data> <data name="ImageResizer_UseOriginalDate.Content" xml:space="preserve"> <value>Original file timestamp</value> </data> <data name="ImageResizer_UseResizeDate.Content" xml:space="preserve"> <value>Timestamp of resize action</value> </data> <data name="Encoding.Header" xml:space="preserve"> <value>Encoding</value> </data> <data name="KeyboardManager_RemapKeyboardButton.Description" xml:space="preserve"> <value>Remap keys to other keys or shortcuts</value> </data> <data name="KeyboardManager_RemapShortcutsButton.Description" xml:space="preserve"> <value>Remap shortcuts to other shortcuts or keys for all or specific applications</value> </data> <data name="General.ModuleDescription" xml:space="preserve"> <value>Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. Made with 💗 by Microsoft and the PowerToys community.</value> <comment>Windows refers to the OS</comment> </data> <data name="FancyZones_SpanZonesAcrossMonitors.Header" xml:space="preserve"> <value>Allow zones to span across monitors</value> </data> <data name="ImageResizer_Formatting_ActualHeight.Text" xml:space="preserve"> <value>Actual height</value> </data> <data name="ImageResizer_Formatting_ActualWidth.Text" xml:space="preserve"> <value>Actual width</value> </data> <data name="ImageResizer_Formatting_Filename.Text" xml:space="preserve"> <value>Original filename</value> </data> <data name="ImageResizer_Formatting_SelectedHeight.Text" xml:space="preserve"> <value>Selected height</value> </data> <data name="ImageResizer_Formatting_SelectedWidth.Text" xml:space="preserve"> <value>Selected width</value> </data> <data name="ImageResizer_Formatting_Sizename.Text" xml:space="preserve"> <value>Size name</value> </data> <data name="FancyZones_MoveWindowsBasedOnPositionCheckBoxControl.Content" xml:space="preserve"> <value>Move windows based on their position</value> <comment>Windows refers to application windows</comment> </data> <data name="GeneralSettings_NewVersionIsAvailable" xml:space="preserve"> <value>New update available</value> </data> <data name="GeneralSettings_VersionIsLatest" xml:space="preserve"> <value>PowerToys is up to date.</value> </data> <data name="FileExplorerPreview_IconThumbnail_GroupSettings.Header" xml:space="preserve"> <value>Thumbnail icon Preview</value> </data> <data name="FileExplorerPreview_IconThumbnail_GroupSettings.Description" xml:space="preserve"> <value>Select the file types for which thumbnail previews must be rendered.</value> </data> <data name="FileExplorerPreview_PreviewPane.Header" xml:space="preserve"> <value>Preview Pane</value> </data> <data name="FileExplorerPreview_PreviewPane.Description" xml:space="preserve"> <value>Select the file types which must be rendered in the Preview Pane. Ensure that Preview Pane is open by toggling the view with Alt + P in File Explorer.</value> <comment>Preview Pane and File Explorer are app/feature names in Windows. 'Alt + P' is a shortcut</comment> </data> <data name="FileExplorerPreview_RunAsAdminRequired.Title" xml:space="preserve"> <value>You need to run as administrator to modify these settings.</value> </data> <data name="FileExplorerPreview_RebootRequired.Title" xml:space="preserve"> <value>A reboot may be required for changes to these settings to take effect</value> </data> <data name="FileExplorerPreview_PreviewHandlerOutlookIncompatibility.Title" xml:space="preserve"> <value>Enabling the preview handlers will override other preview handlers already installed - there have been reports of incompatibility between Outlook and the PDF Preview Handler.</value> <comment>Outlook is the name of a Microsoft product</comment> </data> <data name="FileExplorerPreview_ThumbnailsMightNotAppearOnRemoteFolders.Title" xml:space="preserve"> <value>Thumbnails might not appear on paths managed by cloud storage solutions like OneDrive, since these solutions may get their thumbnails from the cloud instead of generating them locally.</value> <comment>OneDrive is the name of a Microsoft product</comment> </data> <data name="FancyZones_ExcludeApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> <comment>Don't translate outlook.exe</comment> </data> <data name="ImageResizer_FilenameFormatPlaceholder.PlaceholderText" xml:space="preserve"> <value>Example: %1 (%2)</value> </data> <data name="ImageResizer_FilenameParameters.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Filename parameters</value> </data> <data name="Radio_Theme_Dark.Content" xml:space="preserve"> <value>Dark</value> <comment>Dark refers to color, not weight</comment> </data> <data name="Radio_Theme_Light.Content" xml:space="preserve"> <value>Light</value> <comment>Light refers to color, not weight</comment> </data> <data name="Radio_Theme_Default.Content" xml:space="preserve"> <value>Windows default</value> <comment>Windows refers to the Operating system</comment> </data> <data name="Windows_Color_Settings.Content" xml:space="preserve"> <value>Windows color settings</value> <comment>Windows refers to the Operating system</comment> </data> <data name="ColorPicker_CopiedColorRepresentation.Header" xml:space="preserve"> <value>Default color format</value> </data> <data name="ColorPickerFirst.Content" xml:space="preserve"> <value>Pick a color and open editor</value> </data> <data name="EditorFirst.Content" xml:space="preserve"> <value>Open editor</value> </data> <data name="ColorPickerOnly.Content" xml:space="preserve"> <value>Only pick a color</value> </data> <data name="ColorPicker_ActivationAction.Header" xml:space="preserve"> <value>Activation behavior</value> </data> <data name="ColorFormats.Header" xml:space="preserve"> <value>Picker behavior</value> </data> <data name="ColorPicker_CopiedColorRepresentation.Description" xml:space="preserve"> <value>This format will be copied to your clipboard</value> </data> <data name="KBM_KeysCannotBeRemapped.Text" xml:space="preserve"> <value>Learn more about remapping limitations</value> <comment>This is a link that will discuss what is and is not possible for Keyboard manager to remap</comment> </data> <data name="FancyZones_Editor_GroupSettings.Header" xml:space="preserve"> <value>Editor</value> <comment>refers to the FancyZone editor</comment> </data> <data name="FancyZones_WindowBehavior_GroupSettings.Header" xml:space="preserve"> <value>Window behavior</value> </data> <data name="FancyZones_WindowBehavior_GroupSettings.Description" xml:space="preserve"> <value>Manage how windows behave when using FancyZones</value> </data> <data name="FancyZones_Windows.Header" xml:space="preserve"> <value>Windows</value> <comment>Do translate: refers to a set of application windows, not the product name</comment> </data> <data name="PowerRename_BehaviorHeader.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="PowerRename_Toggle_UseBoostLib.Header" xml:space="preserve"> <value>Use Boost library</value> <comment>Boost is a product name, should not be translated</comment> </data> <data name="PowerRename_Toggle_UseBoostLib.Description" xml:space="preserve"> <value>Provides extended features but may use different regex syntax</value> <comment>Boost is a product name, should not be translated</comment> </data> <data name="MadeWithOssLove.Text" xml:space="preserve"> <value>Made with 💗 by Microsoft and the PowerToys community.</value> </data> <data name="ColorPicker_ColorFormats.Header" xml:space="preserve"> <value>Color formats</value> </data> <data name="ColorPicker_ColorFormats.Description" xml:space="preserve"> <value>Configure the color formats (edit, delete, hide, reorder them)</value> </data> <data name="MoveUp.Text" xml:space="preserve"> <value>Move up</value> </data> <data name="MoveDown.Text" xml:space="preserve"> <value>Move down</value> </data> <data name="ColorPickerAddNewFormat.Content" xml:space="preserve"> <value>Add new format</value> </data> <data name="NewColorFormat.Header" xml:space="preserve"> <value>Format</value> </data> <data name="NewColorName.Header" xml:space="preserve"> <value>Name</value> </data> <data name="AddCustomColorFormat" xml:space="preserve"> <value>Add custom color format</value> </data> <data name="ColorFormatSave" xml:space="preserve"> <value>Save</value> </data> <data name="EditCustomColorFormat" xml:space="preserve"> <value>Edit custom color format</value> </data> <data name="ColorFormatUpdate" xml:space="preserve"> <value>Update</value> </data> <data name="CustomColorFormatDefaultName" xml:space="preserve"> <value>My Format</value> </data> <data name="ColorFormatDialog.SecondaryButtonText" xml:space="preserve"> <value>Cancel</value> </data> <data name="ColorFormatEditorHelpline1.Text" xml:space="preserve"> <value>The following parameters can be used:</value> </data> <data name="Help_red" xml:space="preserve"> <value>red</value> </data> <data name="Help_green" xml:space="preserve"> <value>green</value> </data> <data name="Help_blue" xml:space="preserve"> <value>blue</value> </data> <data name="Help_alpha" xml:space="preserve"> <value>alpha</value> </data> <data name="Help_cyan" xml:space="preserve"> <value>cyan</value> </data> <data name="Help_magenta" xml:space="preserve"> <value>magenta</value> </data> <data name="Help_yellow" xml:space="preserve"> <value>yellow</value> </data> <data name="Help_black_key" xml:space="preserve"> <value>black key</value> </data> <data name="Help_hue" xml:space="preserve"> <value>hue</value> </data> <data name="Help_hueNat" xml:space="preserve"> <value>hue (natural)</value> </data> <data name="Help_saturationI" xml:space="preserve"> <value>saturation (HSI)</value> </data> <data name="Help_saturationL" xml:space="preserve"> <value>saturation (HSL)</value> </data> <data name="Help_saturationB" xml:space="preserve"> <value>saturation (HSB)</value> </data> <data name="Help_brightness" xml:space="preserve"> <value>brightness</value> </data> <data name="Help_intensity" xml:space="preserve"> <value>intensity</value> </data> <data name="Help_lightnessNat" xml:space="preserve"> <value>lightness (nat)</value> </data> <data name="Help_lightnessCIE" xml:space="preserve"> <value>lightness (CIE)</value> </data> <data name="Help_value" xml:space="preserve"> <value>value</value> </data> <data name="Help_whiteness" xml:space="preserve"> <value>whiteness</value> </data> <data name="Help_blackness" xml:space="preserve"> <value>blackness</value> </data> <data name="Help_chromaticityA" xml:space="preserve"> <value>chromaticityA</value> </data> <data name="Help_chromaticityB" xml:space="preserve"> <value>chromaticityB</value> </data> <data name="Help_X_value" xml:space="preserve"> <value>X value</value> </data> <data name="Help_Y_value" xml:space="preserve"> <value>Y value</value> </data> <data name="Help_Z_value" xml:space="preserve"> <value>Z value</value> </data> <data name="Help_decimal_value_RGB" xml:space="preserve"> <value>decimal value (RGB)</value> </data> <data name="Help_decimal_value_BGR" xml:space="preserve"> <value>decimal value (BGR)</value> </data> <data name="Help_color_name" xml:space="preserve"> <value>color name</value> </data> <data name="ColorFormatEditorHelpline2.Text" xml:space="preserve"> <value>The red, green, blue and alpha values can be formatted to the following formats:</value> </data> <data name="Help_byte" xml:space="preserve"> <value>byte value (default)</value> </data> <data name="Help_hexL1" xml:space="preserve"> <value>hex lowercase one digit</value> </data> <data name="Help_hexU1" xml:space="preserve"> <value>hex uppercase one digit</value> </data> <data name="Help_hexL2" xml:space="preserve"> <value>hex lowercase two digits</value> </data> <data name="Help_hexU2" xml:space="preserve"> <value>hex uppercase two digits</value> </data> <data name="Help_floatWith" xml:space="preserve"> <value>float with leading zero</value> </data> <data name="Help_floatWithout" xml:space="preserve"> <value>float without leading zero</value> </data> <data name="ColorFormatEditorHelpline3.Text" xml:space="preserve"> <value>Example: %ReX means red value in hex uppercase two digits format.</value> </data> <data name="ColorPicker_ShowColorName.Header" xml:space="preserve"> <value>Show color name</value> </data> <data name="ColorPicker_ShowColorName.Description" xml:space="preserve"> <value>This will show the name of the color when picking a color</value> </data> <data name="ImageResizer_DefaultSize_Large" xml:space="preserve"> <value>Large</value> <comment>The size of the image</comment> </data> <data name="ImageResizer_DefaultSize_Medium" xml:space="preserve"> <value>Medium</value> <comment>The size of the image</comment> </data> <data name="ImageResizer_DefaultSize_Phone" xml:space="preserve"> <value>Phone</value> <comment>The size of the image referring to a Mobile Phone typical image size</comment> </data> <data name="ImageResizer_DefaultSize_Small" xml:space="preserve"> <value>Small</value> <comment>The size of the image</comment> </data> <data name="FancyZones_MoveWindowBasedOnRelativePosition_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Windows key + Up, down, left or right arrow key to move windows based on relative position</value> </data> <data name="FancyZones_MoveWindowLeftRightBasedOnZoneIndex_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Windows key + Left or right arrow keys to move windows based on zone index</value> </data> <data name="FancyZones_MoveWindowBasedOnRelativePosition_Description.Text" xml:space="preserve"> <value>Windows key +    or </value> <comment>Do not loc the icons (hex numbers)</comment> </data> <data name="FancyZones_MoveWindowLeftRightBasedOnZoneIndex_Description.Text" xml:space="preserve"> <value>Windows key +  or </value> <comment>Do not loc the icons (hex numbers)</comment> </data> <data name="FancyZones_MoveWindowBasedOnRelativePosition.Text" xml:space="preserve"> <value>Relative position</value> </data> <data name="FancyZones_MoveWindow.Header" xml:space="preserve"> <value>Move windows based on</value> </data> <data name="FancyZones_MoveWindowLeftRightBasedOnZoneIndex.Text" xml:space="preserve"> <value>Zone index</value> </data> <data name="ColorPicker_Editor.Header" xml:space="preserve"> <value>Color formats</value> </data> <data name="FancyZones_OverlappingZonesClosestCenter.Content" xml:space="preserve"> <value>Activate the zone whose center is closest to the cursor</value> </data> <data name="FancyZones_OverlappingZonesLargest.Content" xml:space="preserve"> <value>Activate the largest zone by area</value> </data> <data name="FancyZones_OverlappingZonesPositional.Content" xml:space="preserve"> <value>Split the overlapped area into multiple activation targets</value> </data> <data name="FancyZones_OverlappingZonesSmallest.Content" xml:space="preserve"> <value>Activate the smallest zone by area</value> </data> <data name="FancyZones_OverlappingZones.Header" xml:space="preserve"> <value>When multiple zones overlap</value> </data> <data name="PowerLauncher_Plugins.Header" xml:space="preserve"> <value>Plugins</value> </data> <data name="PowerLauncher_ActionKeyword.Header" xml:space="preserve"> <value>Direct activation command</value> </data> <data name="PowerLauncher_AuthoredBy.Text" xml:space="preserve"> <value>Authored by</value> <comment>example: Authored by Microsoft</comment> </data> <data name="PowerLauncher_IncludeInGlobalResultTitle.Text" xml:space="preserve"> <value>Include in global result</value> </data> <data name="PowerLauncher_IncludeInGlobalResultDescription.Text" xml:space="preserve"> <value>Show results on queries without direct activation command</value> </data> <data name="PowerLauncher_EnablePluginToggle.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Enable plugin</value> </data> <data name="PowerLauncher_EnablePluginToggle.OnContent" xml:space="preserve"> <value>On</value> </data> <data name="PowerLauncher_EnablePluginToggle.OffContent" xml:space="preserve"> <value>Off</value> </data> <data name="Run_AdditionalOptions.Text" xml:space="preserve"> <value>Additional options</value> </data> <data name="Run_NotAccessibleWarning.Title" xml:space="preserve"> <value>Please define an activation command or allow this plugin to be used in the global results.</value> </data> <data name="Run_AllPluginsDisabled.Title" xml:space="preserve"> <value>PowerToys Run can't provide any results without plugins</value> </data> <data name="Run_AllPluginsDisabled.Message" xml:space="preserve"> <value>Enable at least one plugin to get started</value> </data> <data name="Run_PluginUse.Header" xml:space="preserve"> <value>Plugins</value> </data> <data name="Run_PluginUseDescription.Text" xml:space="preserve"> <value>Include or remove plugins from the global results, change the direct activation phrase and configure additional options</value> </data> <data name="Run_PositionAppearance_GroupSettings.Header" xml:space="preserve"> <value>Position &amp; appearance</value> </data> <data name="Run_PositionHeader.Header" xml:space="preserve"> <value>Preferred monitor position</value> <comment>as in Show PowerToys Run on primary monitor</comment> </data> <data name="Run_PositionHeader.Description" xml:space="preserve"> <value>If multiple monitors are in use, PowerToys Run can be launched on the desired monitor</value> <comment>as in Show PowerToys Run on primary monitor</comment> </data> <data name="Run_Radio_Position_Cursor.Content" xml:space="preserve"> <value>Monitor with mouse cursor</value> </data> <data name="Run_Radio_Position_Focus.Content" xml:space="preserve"> <value>Monitor with focused window</value> </data> <data name="Run_Radio_Position_Primary_Monitor.Content" xml:space="preserve"> <value>Primary monitor</value> </data> <data name="Run_PluginsLoading.Text" xml:space="preserve"> <value>Plugins are loading...</value> </data> <data name="ColorPicker_ButtonDown.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Move the color down</value> </data> <data name="ColorPicker_ButtonUp.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Move the color up</value> </data> <data name="FancyZones_FlashZonesOnQuickSwitch.Content" xml:space="preserve"> <value>Flash zones when switching layout</value> </data> <data name="FancyZones_Layouts.Header" xml:space="preserve"> <value>Layouts</value> </data> <data name="FancyZones_QuickLayoutSwitch.Header" xml:space="preserve"> <value>Enable quick layout switch</value> </data> <data name="FancyZones_QuickLayoutSwitch.Description" xml:space="preserve"> <value>Layout-specific shortcuts can be configured in the editor</value> </data> <data name="FancyZones_QuickLayoutSwitch_GroupSettings.Text" xml:space="preserve"> <value>Quick layout switch</value> </data> <data name="Activation_Shortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="Activation_Shortcut.Description" xml:space="preserve"> <value>Customize the shortcut to activate this module</value> </data> <data name="Oobe_GetStarted.Text" xml:space="preserve"> <value>Let's get started!</value> </data> <data name="Oobe_PowerToysDescription.Text" xml:space="preserve"> <value>Welcome to PowerToys! These overviews will help you quickly learn the basics of all our utilities.</value> </data> <data name="Oobe_GettingStarted.Text" xml:space="preserve"> <value>Getting started</value> </data> <data name="Oobe_Launch.Text" xml:space="preserve"> <value>Launch</value> </data> <data name="Launch_ColorPicker.Content" xml:space="preserve"> <value>Launch Color Picker</value> </data> <data name="Oobe_LearnMore.Text" xml:space="preserve"> <value>Learn more about</value> </data> <data name="Oobe_ColorPicker.Description" xml:space="preserve"> <value>Color Picker is a system-wide color selection tool for Windows that enables you to pick colors from any currently running application and automatically copies it in a configurable format to your clipboard.</value> </data> <data name="Oobe_FancyZones.Description" xml:space="preserve"> <value>FancyZones is a window manager that makes it easy to create complex window layouts and quickly position windows into those layouts.</value> </data> <data name="Oobe_FileLocksmith.Description" xml:space="preserve"> <value>File Locksmith lists which processes are using the selected files or directories and allows closing those processes.</value> </data> <data name="Oobe_FileExplorer.Description" xml:space="preserve"> <value>PowerToys introduces add-ons to the Windows File Explorer that will enable files like Markdown (.md), PDF (.pdf), SVG (.svg), STL (.stl), G-code (.gcode) and developer files to be viewed in the preview pane. It introduces File Explorer thumbnail support for a number of these file types as well.</value> </data> <data name="Oobe_ImageResizer.Description" xml:space="preserve"> <value>Image Resizer is a Windows shell extension for simple bulk image-resizing.</value> </data> <data name="Oobe_KBM.Description" xml:space="preserve"> <value>Keyboard Manager allows you to customize the keyboard to be more productive by remapping keys and creating your own keyboard shortcuts.</value> </data> <data name="Oobe_MouseWithoutBorders.Description" xml:space="preserve"> <value>Mouse Without Borders enables using the mouse pointer, keyboard, clipboard and drag and drop between machines in the same local network.</value> </data> <data name="Oobe_PowerRename.Description" xml:space="preserve"> <value>PowerRename enables you to perform simple bulk renaming, searching and replacing file names.</value> </data> <data name="Oobe_Run.Description" xml:space="preserve"> <value>PowerToys Run is a quick launcher for power users that contains some additional features without sacrificing performance.</value> </data> <data name="Oobe_MeasureTool.Description" xml:space="preserve"> <value>Screen Ruler is a quick and easy way to measure pixels on your screen.</value> </data> <data name="Oobe_ShortcutGuide.Description" xml:space="preserve"> <value>Shortcut Guide presents the user with a listing of available shortcuts for the current state of the desktop.</value> </data> <data name="Oobe_VideoConference.Description" xml:space="preserve"> <value>Video Conference Mute allows users to quickly mute the microphone and turn off the camera while on a conference call with a single keystroke, regardless of what application has focus on your computer.</value> </data> <data name="Oobe_MouseUtils.Description" xml:space="preserve"> <value>A collection of utilities to enhance your mouse.</value> <comment>Mouse as in the hardware peripheral</comment> </data> <data name="Oobe_Overview.Description" xml:space="preserve"> <value>Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. Take a moment to preview the various utilities listed or view our comprehensive documentation.</value> </data> <data name="Oobe_Overview_DescriptionLinkText.Text" xml:space="preserve"> <value>Documentation on Microsoft Docs</value> </data> <data name="ReleaseNotes.Content" xml:space="preserve"> <value>Release notes</value> </data> <data name="Oobe_ColorPicker_HowToUse.Text" xml:space="preserve"> <value>to open Color Picker.</value> </data> <data name="Oobe_ColorPicker_TipsAndTricks.Text" xml:space="preserve"> <value>To select a color with more precision, **scroll the mouse wheel** to zoom in.</value> </data> <data name="Oobe_FancyZones_HowToUse.Text" xml:space="preserve"> <value>**Shift** + **drag the window** to snap a window to a zone, and release the window in the desired zone.</value> </data> <data name="Oobe_FancyZones_HowToUse_Shortcut.Text" xml:space="preserve"> <value>to open the FancyZones editor.</value> </data> <data name="Oobe_FancyZones_TipsAndTricks.Text" xml:space="preserve"> <value>Snap a window to multiple zones by holding the **Ctrl** key (while also holding **Shift**) when dragging a window.</value> </data> <data name="Oobe_FileLocksmith_HowToUse.Text" xml:space="preserve"> <value>In File Explorer, right-click one or more selected files and select **What's using this file?** from the context menu.</value> </data> <data name="Oobe_FileLocksmith_TipsAndTricks.Text" xml:space="preserve"> <value>Press the **Restart Elevated** button from the File Locksmith UI to also get information on elevated processes that might be using the files.</value> </data> <data name="Oobe_FileExplorer_HowToEnable.Text" xml:space="preserve"> <value>Select **View** which is located at the top of File Explorer, followed by **Show**, and then **Preview pane**. From there, simply click on one of the supported files in the File Explorer and observe the content on the preview pane!</value> </data> <data name="Oobe_HowToCreateMappings.Text" xml:space="preserve"> <value>How to create mappings</value> </data> <data name="Oobe_HowToEnable.Text" xml:space="preserve"> <value>How to enable</value> </data> <data name="Oobe_HowToLaunch.Text" xml:space="preserve"> <value>How to launch</value> </data> <data name="Oobe_HowToUse.Text" xml:space="preserve"> <value>How to use</value> </data> <data name="Oobe_ImageResizer_HowToLaunch.Text" xml:space="preserve"> <value>In File Explorer, right-click one or more image files and select **Resize pictures** from the context menu.</value> </data> <data name="Oobe_ImageResizer_TipsAndTricks.Text" xml:space="preserve"> <value>Want a custom size? You can add them in the PowerToys Settings!</value> </data> <data name="Oobe_KBM_HowToCreateMappings.Text" xml:space="preserve"> <value>Launch **PowerToys Settings**, navigate to the Keyboard Manager menu, and select either **Remap a key** or **Remap a shortcut**.</value> </data> <data name="Oobe_KBM_TipsAndTricks.Text" xml:space="preserve"> <value>Want to only have a shortcut work for a single application? Use the Target App field when creating the shortcut remapping.</value> </data> <data name="Oobe_MouseWithoutBorders_HowToUse.Text" xml:space="preserve"> <value>Use the Settings screen on each machine to connect to the other machines using the same key. If a connection is not working, it may be necessary to add an exception to the Windows Firewall.</value> </data> <data name="Oobe_MouseWithoutBorders_TipsAndTricks.Text" xml:space="preserve"> <value>Use the service option in Settings to install a service enabling Mouse Without Borders to function even in the lock screen.</value> </data> <data name="Oobe_PowerRename_HowToUse.Text" xml:space="preserve"> <value>In File Explorer, right-click one or more selected files and select **PowerRename** from the context menu.</value> </data> <data name="Oobe_PowerRename_TipsAndTricks.Text" xml:space="preserve"> <value>PowerRename supports searching for files using regular expressions to enable more advanced renaming functionalities.</value> </data> <data name="Oobe_Run_HowToLaunch.Text" xml:space="preserve"> <value>to open Run and just start typing.</value> </data> <data name="Oobe_Run_TipsAndTricks.Text" xml:space="preserve"> <value>PowerToys Run supports various action keys to funnel search queries for a specific subset of results. Typing `&lt;` searches for running processes only, `?` will search only for file, or `.` for installed applications! See PowerToys documentation for the complete set of 'Action Keys' available.</value> </data> <data name="Oobe_ShortcutGuide_HowToLaunch.Text" xml:space="preserve"> <value>to open Shortcut Guide, press it again to close or press **Esc**.</value> </data> <data name="Oobe_TipsAndTricks.Text" xml:space="preserve"> <value>Tips &amp; tricks</value> </data> <data name="Oobe_VideoConference_ToggleMicVid.Text" xml:space="preserve"> <value>to toggle both your microphone and video</value> </data> <data name="Oobe_VideoConference_ToggleMic.Text" xml:space="preserve"> <value>to toggle your microphone</value> </data> <data name="Oobe_VideoConference_PushToTalkMic.Text" xml:space="preserve"> <value>to toggle your microphone until key release</value> </data> <data name="Oobe_VideoConference_ToggleVid.Text" xml:space="preserve"> <value>to toggle your video</value> </data> <data name="Oobe_MeasureTool_Activation.Text" xml:space="preserve"> <value>to bring up the Screen Ruler command bar.</value> </data> <data name="Oobe_MeasureTool_HowToLaunch.Text" xml:space="preserve"> <value>The Bounds mode lets you select a specific area to measure. You can also shift-drag an area to persist in on screen. The various Spacing modes allows tracing similar pixels along horizontal and vertical axes with a customizable pixel tolerance threshold (use settings or mouse wheel to adjust it).</value> </data> <data name="Oobe_MeasureTool.Title" xml:space="preserve"> <value>Screen Ruler</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_ColorPicker.Title" xml:space="preserve"> <value>Color Picker</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_FancyZones.Title" xml:space="preserve"> <value>FancyZones</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_FileLocksmith.Title" xml:space="preserve"> <value>File Locksmith</value> </data> <data name="Oobe_ImageResizer.Title" xml:space="preserve"> <value>Image Resizer</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_KBM.Title" xml:space="preserve"> <value>Keyboard Manager</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_MouseWithoutBorders.Title" xml:space="preserve"> <value>Mouse Without Borders</value> <comment>Product name. Do not localize this string</comment> </data> <data name="Oobe_PowerRename.Title" xml:space="preserve"> <value>PowerRename</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_Run.Title" xml:space="preserve"> <value>PowerToys Run</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_ShortcutGuide.Title" xml:space="preserve"> <value>Shortcut Guide</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_VideoConference.Title" xml:space="preserve"> <value>Video Conference Mute</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_Overview.Title" xml:space="preserve"> <value>Welcome</value> </data> <data name="Oobe_WhatsNew.Text" xml:space="preserve"> <value>What's new</value> </data> <data name="Oobe_WhatsNew_LoadingError.Title" xml:space="preserve"> <value>Couldn't load the release notes.</value> </data> <data name="Oobe_WhatsNew_LoadingError.Message" xml:space="preserve"> <value>Please check your internet connection.</value> </data> <data name="Oobe_WhatsNew_ProxyAuthenticationWarning.Title" xml:space="preserve"> <value>Couldn't load the release notes.</value> </data> <data name="Oobe_WhatsNew_ProxyAuthenticationWarning.Message" xml:space="preserve"> <value>Your proxy server requires authentication.</value> </data> <data name="Oobe_WhatsNew_DetailedReleaseNotesLink.Text" xml:space="preserve"> <value>See more detailed release notes on GitHub</value> <comment>Don't loc "GitHub", it's the name of a product</comment> </data> <data name="OOBE_Settings.Content" xml:space="preserve"> <value>Open Settings</value> </data> <data name="Oobe_NavViewItem.Content" xml:space="preserve"> <value>Welcome to PowerToys</value> <comment>Don't loc "PowerToys"</comment> </data> <data name="Feedback_NavViewItem.Content" xml:space="preserve"> <value>Give feedback</value> </data> <data name="OobeWindow_Title" xml:space="preserve"> <value>Welcome to PowerToys</value> </data> <data name="OobeWindow_TitleTxt.Text" xml:space="preserve"> <value>Welcome to PowerToys</value> </data> <data name="SettingsWindow_Title" xml:space="preserve"> <value>PowerToys Settings</value> <comment>Title of the settings window when running as user</comment> </data> <data name="Awake.ModuleTitle" xml:space="preserve"> <value>Awake</value> </data> <data name="Awake.ModuleDescription" xml:space="preserve"> <value>A convenient way to keep your PC awake on-demand.</value> </data> <data name="Awake_EnableSettingsCard.Header" xml:space="preserve"> <value>Enable Awake</value> <comment>Awake is a product name, do not loc</comment> </data> <data name="Awake_NoKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep using the selected power plan</value> </data> <data name="Awake_IndefiniteKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep awake indefinitely</value> </data> <data name="Awake_TemporaryKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep awake for a time interval</value> </data> <data name="Awake_ExpirableKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep awake until expiration</value> </data> <data name="Awake_DisplaySettingsCard.Header" xml:space="preserve"> <value>Keep screen on</value> </data> <data name="Awake_DisplaySettingsCard.Description" xml:space="preserve"> <value>This setting is only available when keeping the PC awake</value> </data> <data name="Awake_ExpirationSettingsExpander.Description" xml:space="preserve"> <value>Keep custom awake state until a specific date and time</value> </data> <data name="Awake_ModeSettingsCard.Header" xml:space="preserve"> <value>Mode</value> </data> <data name="Awake_BehaviorSettingsGroup.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="Awake_IntervalHoursInput.Header" xml:space="preserve"> <value>Hours</value> </data> <data name="Awake_IntervalMinutesInput.Header" xml:space="preserve"> <value>Minutes</value> </data> <data name="Awake_ExpirationSettingsExpander_Date.Header" xml:space="preserve"> <value>End date</value> </data> <data name="Awake_ExpirationSettingsExpander_Time.Header" xml:space="preserve"> <value>End time</value> </data> <data name="Oobe_Awake.Title" xml:space="preserve"> <value>Awake</value> <comment>Module name, do not loc</comment> </data> <data name="Oobe_Awake.Description" xml:space="preserve"> <value>Awake is a Windows tool designed to keep your PC awake on-demand without having to manage its power settings. This behavior can be helpful when running time-consuming tasks while ensuring that your PC does not go to sleep or turn off its screens.</value> </data> <data name="Oobe_Awake_HowToUse.Text" xml:space="preserve"> <value>Open **PowerToys Settings** and enable Awake</value> </data> <data name="Oobe_Awake_TipsAndTricks.Text" xml:space="preserve"> <value>You can always change modes quickly by **right-clicking the Awake icon** in the system tray.</value> </data> <data name="General_FailedToDownloadTheNewVersion.Title" xml:space="preserve"> <value>An error occurred trying to install this update:</value> </data> <data name="General_InstallNow.Content" xml:space="preserve"> <value>Install now</value> </data> <data name="General_ReadMore.Text" xml:space="preserve"> <value>Read more</value> </data> <data name="General_NewVersionAvailable.Title" xml:space="preserve"> <value>An update is available:</value> </data> <data name="General_Downloading.Text" xml:space="preserve"> <value>Downloading...</value> </data> <data name="General_TryAgainToDownloadAndInstall.Content" xml:space="preserve"> <value>Try again to download and install</value> </data> <data name="General_CheckingForUpdates.Text" xml:space="preserve"> <value>Checking for updates...</value> </data> <data name="General_NewVersionReadyToInstall.Title" xml:space="preserve"> <value>An update is ready to install:</value> </data> <data name="General_UpToDate.Title" xml:space="preserve"> <value>PowerToys is up to date</value> </data> <data name="General_CantCheck.Title" xml:space="preserve"> <value>Network error. Please try again later</value> </data> <data name="General_DownloadAndInstall.Content" xml:space="preserve"> <value>Download &amp; install</value> </data> <data name="ImageResizer_Fit_Fill_ThirdPersonSingular" xml:space="preserve"> <value>Fills</value> </data> <data name="ImageResizer_Fit_Fit_ThirdPersonSingular" xml:space="preserve"> <value>Fits within</value> </data> <data name="ImageResizer_Fit_Stretch_ThirdPersonSingular" xml:space="preserve"> <value>Stretches to</value> </data> <data name="ImageResizer_Unit_Centimeter" xml:space="preserve"> <value>Centimeters</value> </data> <data name="ImageResizer_Unit_Inch" xml:space="preserve"> <value>Inches</value> </data> <data name="ImageResizer_Unit_Percent" xml:space="preserve"> <value>Percent</value> </data> <data name="ImageResizer_Unit_Pixel" xml:space="preserve"> <value>Pixels</value> </data> <data name="EditButton.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Edit</value> </data> <data name="ImageResizer_EditSize.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Edit size</value> </data> <data name="No" xml:space="preserve"> <value>No</value> <comment>Label of a cancel button</comment> </data> <data name="Delete_Dialog_Description" xml:space="preserve"> <value>Are you sure you want to delete this item?</value> </data> <data name="Yes" xml:space="preserve"> <value>Yes</value> <comment>Label of a confirmation button</comment> </data> <data name="SeeWhatsNew.Content" xml:space="preserve"> <value>See what's new</value> </data> <data name="Awake_ModeSettingsCard.Description" xml:space="preserve"> <value>Manage the state of your device when Awake is active</value> </data> <data name="ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="Enable_ColorFormat.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Enable colorformat</value> </data> <data name="More_Options_Button.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>More options</value> </data> <data name="More_Options_ButtonTooltip.Text" xml:space="preserve"> <value>More options</value> </data> <data name="To.Text" xml:space="preserve"> <value>to</value> <comment>as in: from x to y</comment> </data> <data name="LearnMore_Awake.Text" xml:space="preserve"> <value>Learn more about Awake</value> <comment>Awake is a product name, do not loc</comment> </data> <data name="LearnMore_ColorPicker.Text" xml:space="preserve"> <value>Learn more about Color Picker</value> <comment>Color Picker is a product name, do not loc</comment> </data> <data name="LearnMore_FancyZones.Text" xml:space="preserve"> <value>Learn more about FancyZones</value> <comment>FancyZones is a product name, do not loc</comment> </data> <data name="LearnMore_FileLocksmith.Text" xml:space="preserve"> <value>Learn more about File Locksmith</value> </data> <data name="LearnMore_ImageResizer.Text" xml:space="preserve"> <value>Learn more about Image Resizer</value> <comment>Image Resizer is a product name, do not loc</comment> </data> <data name="LearnMore_KBM.Text" xml:space="preserve"> <value>Learn more about Keyboard Manager</value> <comment>Keyboard Manager is a product name, do not loc</comment> </data> <data name="LearnMore_MouseUtils.Text" xml:space="preserve"> <value>Learn more about Mouse utilities</value> <comment>Mouse utilities is a product name, do not loc</comment> </data> <data name="LearnMore_PastePlain.Text" xml:space="preserve"> <value>Learn more about Paste as Plain Text</value> <comment> Paste as Plain Text is the name of the module. </comment> </data> <data name="LearnMore_MouseWithoutBorders.Text" xml:space="preserve"> <value>Learn more about Mouse Without Borders</value> <comment>Mouse Without Borders is the name of the module. </comment> </data> <data name="LearnMore_PowerPreview.Text" xml:space="preserve"> <value>Learn more about File Explorer add-ons</value> <comment>File Explorer is a product name, localize as Windows does</comment> </data> <data name="LearnMore_Peek.Text" xml:space="preserve"> <value>Learn more about Peek</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="LearnMore_PowerRename.Text" xml:space="preserve"> <value>Learn more about PowerRename</value> <comment>PowerRename is a product name, do not loc</comment> </data> <data name="LearnMore_Run.Text" xml:space="preserve"> <value>Learn more about PowerToys Run</value> <comment>PowerToys Run is a product name, do not loc</comment> </data> <data name="LearnMore_MeasureTool.Text" xml:space="preserve"> <value>Learn more about Screen Ruler</value> <comment>Screen Ruler is a product name, do not loc</comment> </data> <data name="LearnMore_ShortcutGuide.Text" xml:space="preserve"> <value>Learn more about Shortcut Guide</value> <comment>Shortcut Guide is a product name, do not loc</comment> </data> <data name="LearnMore_VCM.Text" xml:space="preserve"> <value>Learn more about Video Conference Mute</value> <comment>Video Conference Mute is a product name, do not loc</comment> </data> <data name="Oobe_FileExplorer.Title" xml:space="preserve"> <value>File Explorer add-ons</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_MouseUtils.Title" xml:space="preserve"> <value>Mouse utilities</value> <comment>Mouse as in the hardware peripheral</comment> </data> <data name="Oobe_MouseUtils_FindMyMouse.Text" xml:space="preserve"> <value>Find My Mouse</value> <comment>Mouse as in the hardware peripheral</comment> </data> <data name="Oobe_MouseUtils_FindMyMouse_Description.Text" xml:space="preserve"> <value>Focus the mouse pointer pressing the Ctrl key twice, using a custom shortcut or shaking the mouse.</value> <comment>Mouse as in the hardware peripheral. Key as in a keyboard key</comment> </data> <data name="Oobe_MouseUtils_MouseHighlighter.Text" xml:space="preserve"> <value>Mouse Highlighter</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MouseHighlighter_Description.Text" xml:space="preserve"> <value>Use a keyboard shortcut to highlight left and right mouse clicks.</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MousePointerCrosshairs.Text" xml:space="preserve"> <value>Mouse Pointer Crosshairs</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MousePointerCrosshairs_Description.Text" xml:space="preserve"> <value>Draw crosshairs centered around the mouse pointer.</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MouseJump.Text" xml:space="preserve"> <value>Mouse Jump</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MouseJump_Description.Text" xml:space="preserve"> <value>Jump the mouse pointer quickly to anywhere on your desktop.</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Launch_Run.Content" xml:space="preserve"> <value>Launch PowerToys Run</value> </data> <data name="Launch_ShortcutGuide.Content" xml:space="preserve"> <value>Launch Shortcut Guide</value> </data> <data name="ColorPicker_ColorFormat_ToggleSwitch.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Show format in editor</value> </data> <data name="GeneralPage_Documentation.Text" xml:space="preserve"> <value>Documentation</value> </data> <data name="PowerLauncher_SearchList.PlaceholderText" xml:space="preserve"> <value>Search this list</value> </data> <data name="PowerLauncher_SearchList.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Search this list</value> </data> <data name="Awake.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="ColorPicker.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="General.SecondaryLinksHeader" xml:space="preserve"> <value>Related information</value> </data> <data name="ImageResizer.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="MouseUtils.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="PowerLauncher.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="PowerRename.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="EditTooltip.Text" xml:space="preserve"> <value>Edit</value> </data> <data name="RemoveTooltip.Text" xml:space="preserve"> <value>Remove</value> </data> <data name="Activation_Shortcut_Cancel" xml:space="preserve"> <value>Cancel</value> </data> <data name="Activation_Shortcut_Description" xml:space="preserve"> <value>Press a combination of keys to change this shortcut</value> </data> <data name="Activation_Shortcut_With_Disable_Description" xml:space="preserve"> <value>Press a combination of keys to change this shortcut. Right-click to remove the key combination, thereby deactivating the shortcut.</value> </data> <data name="Activation_Shortcut_Reset" xml:space="preserve"> <value>Reset</value> </data> <data name="Activation_Shortcut_Save" xml:space="preserve"> <value>Save</value> </data> <data name="Activation_Shortcut_Title" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="InvalidShortcut.Title" xml:space="preserve"> <value>Invalid shortcut</value> </data> <data name="InvalidShortcutWarningLabel.Text" xml:space="preserve"> <value>Only shortcuts that start with **Windows key**, **Ctrl**, **Alt** or **Shift** are valid.</value> <comment>The ** sequences are used for text formatting of the key names. Don't remove them on translation.</comment> </data> <data name="FancyZones_SpanZonesAcrossMonitors.Description" xml:space="preserve"> <value>All monitors must have the same DPI scaling and will be treated as one large combined rectangle which contains all monitors</value> </data> <data name="ImageResizer_DefaultSize_NewSizePrefix" xml:space="preserve"> <value>New size</value> <comment>First part of the default name of new sizes that can be added in PT's settings ui.</comment> </data> <data name="Awake_IntervalSettingsCard.Header" xml:space="preserve"> <value>Interval before returning to the previous awakeness state</value> </data> <data name="Awake_ExpirationSettingsExpander.Header" xml:space="preserve"> <value>End date and time</value> </data> <data name="MouseUtils.ModuleTitle" xml:space="preserve"> <value>Mouse utilities</value> </data> <data name="MouseUtils.ModuleDescription" xml:space="preserve"> <value>A collection of mouse utilities.</value> </data> <data name="MouseUtils_FindMyMouse.Header" xml:space="preserve"> <value>Find My Mouse</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_FindMyMouse.Description" xml:space="preserve"> <value>Find My Mouse highlights the position of the cursor when pressing the Ctrl key twice, using a custom shortcut or when shaking the mouse.</value> <comment>"Ctrl" is a keyboard key. "Find My Mouse" is the name of the utility</comment> </data> <data name="MouseUtils_Enable_FindMyMouse.Header" xml:space="preserve"> <value>Enable Find My Mouse</value> <comment>"Find My Mouse" is the name of the utility.</comment> </data> <data name="MouseUtils_FindMyMouse_ActivationMethod.Header" xml:space="preserve"> <value>Activation method</value> </data> <data name="MouseUtils_FindMyMouse_ActivationDoubleControlPress.Content" xml:space="preserve"> <value>Press Left Control twice</value> <comment>Left control is the physical key on the keyboard.</comment> </data> <data name="MouseUtils_FindMyMouse_ActivationShakeMouse.Content" xml:space="preserve"> <value>Shake mouse</value> <comment>Mouse is the hardware peripheral.</comment> </data> <data name="MouseUtils_FindMyMouse_ExcludedApps.Description" xml:space="preserve"> <value>Prevents module activation when an excluded application is the foreground application</value> </data> <data name="MouseUtils_FindMyMouse_ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="MouseUtils_FindMyMouse_ExcludedApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> </data> <data name="MouseUtils_Prevent_Activation_On_Game_Mode.Content" xml:space="preserve"> <value>Do not activate when Game Mode is on</value> <comment>"Game mode" is the Windows feature to prevent notification when playing a game.</comment> </data> <data name="MouseUtils_FindMyMouse_BackgroundColor.Header" xml:space="preserve"> <value>Background color</value> </data> <data name="MouseUtils_FindMyMouse_SpotlightColor.Header" xml:space="preserve"> <value>Spotlight color</value> </data> <data name="MouseUtils_FindMyMouse_OverlayOpacity.Header" xml:space="preserve"> <value>Overlay opacity (%)</value> </data> <data name="MouseUtils_FindMyMouse_SpotlightRadius.Header" xml:space="preserve"> <value>Spotlight radius (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_FindMyMouse_SpotlightInitialZoom.Header" xml:space="preserve"> <value>Spotlight initial zoom</value> </data> <data name="MouseUtils_FindMyMouse_SpotlightInitialZoom.Description" xml:space="preserve"> <value>Spotlight zoom factor at animation start</value> </data> <data name="MouseUtils_FindMyMouse_AnimationDurationMs.Header" xml:space="preserve"> <value>Animation duration (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_FindMyMouse_AnimationDurationMs.Description" xml:space="preserve"> <value>Time before the spotlight appears (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_FindMyMouse_AnimationDurationMs_Disabled.Message" xml:space="preserve"> <value>Animations are disabled by OS. See Settings &gt; Accessibility &gt; Visual effects</value> </data> <data name="MouseUtils_FindMyMouse_ShakingMinimumDistance.Header" xml:space="preserve"> <value>Shake minimum distance</value> </data> <data name="MouseUtils_FindMyMouse_ShakingMinimumDistance.Description" xml:space="preserve"> <value>The minimum distance for mouse shaking activation, for adjusting sensitivity</value> </data> <data name="MouseUtils_MouseHighlighter.Header" xml:space="preserve"> <value>Mouse Highlighter</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_MouseHighlighter.Description" xml:space="preserve"> <value>Mouse Highlighter mode will highlight mouse clicks.</value> <comment>"Mouse Highlighter" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_Enable_MouseHighlighter.Header" xml:space="preserve"> <value>Enable Mouse Highlighter</value> <comment>"Find My Mouse" is the name of the utility.</comment> </data> <data name="MouseUtils_MouseHighlighter_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MouseUtils_MouseHighlighter_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to turn on or off this mode</value> <comment>"Mouse Highlighter" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_MouseHighlighter_PrimaryButtonClickColor.Header" xml:space="preserve"> <value>Primary button highlight color</value> </data> <data name="MouseUtils_MouseHighlighter_SecondaryButtonClickColor.Header" xml:space="preserve"> <value>Secondary button highlight color</value> </data> <data name="MouseUtils_MouseHighlighter_HighlightRadius.Header" xml:space="preserve"> <value>Radius (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDelayMs.Header" xml:space="preserve"> <value>Fade delay (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDelayMs.Description" xml:space="preserve"> <value>Time before the highlight begins to fade (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDurationMs.Header" xml:space="preserve"> <value>Fade duration (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDurationMs.Description" xml:space="preserve"> <value>Duration of the disappear animation (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MousePointerCrosshairs.Header" xml:space="preserve"> <value>Mouse Pointer Crosshairs</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_MousePointerCrosshairs.Description" xml:space="preserve"> <value>Mouse Pointer Crosshairs draws crosshairs centered on the mouse pointer.</value> <comment>"Mouse Pointer Crosshairs" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_Enable_MousePointerCrosshairs.Header" xml:space="preserve"> <value>Enable Mouse Pointer Crosshairs</value> <comment>"Mouse Pointer Crosshairs" is the name of the utility.</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MouseUtils_MousePointerCrosshairs_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to show/hide the crosshairs</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsColor.Header" xml:space="preserve"> <value>Crosshairs color</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsOpacity.Header" xml:space="preserve"> <value>Crosshairs opacity (%)</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsRadius.Header" xml:space="preserve"> <value>Crosshairs center radius (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsThickness.Header" xml:space="preserve"> <value>Crosshairs thickness (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsBorderColor.Header" xml:space="preserve"> <value>Crosshairs border color</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsBorderSize.Header" xml:space="preserve"> <value>Crosshairs border size (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_IsCrosshairsFixedLengthEnabled.Header" xml:space="preserve"> <value>Fix crosshairs length</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsFixedLength.Header" xml:space="preserve"> <value>Crosshairs fixed length (px)</value> <comment>px = pixels</comment> </data> <data name="FancyZones_Radio_Custom_Colors.Content" xml:space="preserve"> <value>Custom colors</value> </data> <data name="FancyZones_Radio_Default_Theme.Content" xml:space="preserve"> <value>Windows default</value> </data> <data name="ColorModeHeader.Header" xml:space="preserve"> <value>App theme</value> </data> <data name="FancyZones_Zone_Appearance.Description" xml:space="preserve"> <value>Customize the way zones look</value> </data> <data name="FancyZones_Zone_Appearance.Header" xml:space="preserve"> <value>Zone appearance</value> </data> <data name="VideoConference_DeprecationWarning.Title" xml:space="preserve"> <value>VCM is moving into legacy mode (maintenance only).</value> </data> <data name="VideoConference_DeprecationWarningButton.Content" xml:space="preserve"> <value>Learn more</value> </data> <data name="VideoConference_RunAsAdminRequired.Title" xml:space="preserve"> <value>You need to run as administrator to modify these settings.</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_GCODE.Header" xml:space="preserve"> <value>Geometric Code</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_GCODE.Description" xml:space="preserve"> <value>Only .gcode files with embedded thumbnails are supported</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_GCODE.Header" xml:space="preserve"> <value>Geometric Code</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_GCODE.Description" xml:space="preserve"> <value>Only .gcode files with embedded thumbnails are supported</value> </data> <data name="FancyZones_NumberColor.Header" xml:space="preserve"> <value>Number color</value> </data> <data name="FancyZones_ShowZoneNumberCheckBoxControl.Content" xml:space="preserve"> <value>Show zone number</value> </data> <data name="ToggleSwitch.OffContent" xml:space="preserve"> <value>Off</value> <comment>The state of a ToggleSwitch when it's off</comment> </data> <data name="ToggleSwitch.OnContent" xml:space="preserve"> <value>On</value> <comment>The state of a ToggleSwitch when it's on</comment> </data> <data name="CropAndLock.ModuleDescription" xml:space="preserve"> <value>Crop And Lock allows you to crop a current application into a smaller window or just create a thumbnail. Focus the target window and press the shortcut to start cropping.</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="CropAndLock.ModuleTitle" xml:space="preserve"> <value>Crop And Lock </value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="CropAndLock_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="CropAndLock_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="Shell_CropAndLock.Content" xml:space="preserve"> <value>Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="LearnMore_CropAndLock.Text" xml:space="preserve"> <value>Learn more about Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="CropAndLock_ReparentActivation_Shortcut.Header" xml:space="preserve"> <value>Reparent shortcut</value> </data> <data name="CropAndLock_ReparentActivation_Shortcut.Description" xml:space="preserve"> <value>Shortcut to crop an application's window into a cropped window. This is experimental and can cause issues with some applications, since the cropped window will contain the original application window.</value> </data> <data name="CropAndLock_ThumbnailActivation_Shortcut.Header" xml:space="preserve"> <value>Thumbnail shortcut</value> </data> <data name="CropAndLock_ThumbnailActivation_Shortcut.Description" xml:space="preserve"> <value>Shortcut to crop and create a thumbnail of another window. The application isn't controllable through the thumbnail but it'll have less compatibility issues. </value> </data> <data name="CropAndLock.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="Oobe_CropAndLock.Title" xml:space="preserve"> <value>Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="Oobe_CropAndLock.Description" xml:space="preserve"> <value>Crop And Lock allows you to crop a current application into a smaller window or just create a thumbnail. Focus the target window and press the shortcut to start cropping.</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="Oobe_CropAndLock_HowToUse_Thumbnail.Text" xml:space="preserve"> <value>to crop and create a thumbnail of another window. The application isn't controllable through the thumbnail but it'll have less compatibility issues.</value> </data> <data name="Oobe_CropAndLock_HowToUse_Reparent.Text" xml:space="preserve"> <value>to crop an application's window into a cropped window. This is experimental and can cause issues with some applications, since the cropped window will contain the original application window.</value> </data> <data name="AlwaysOnTop.ModuleDescription" xml:space="preserve"> <value>Always On Top is a quick and easy way to pin windows on top.</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop.ModuleTitle" xml:space="preserve"> <value>Always On Top </value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="Peek_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="AlwaysOnTop_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_ExcludedApps.Description" xml:space="preserve"> <value>Excludes an application from pinning on top</value> </data> <data name="AlwaysOnTop_ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="AlwaysOnTop_ExcludedApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> </data> <data name="AlwaysOnTop_FrameColor.Header" xml:space="preserve"> <value>Color</value> </data> <data name="AlwaysOnTop_FrameEnabled.Header" xml:space="preserve"> <value>Show a border around the pinned window</value> </data> <data name="AlwaysOnTop_FrameThickness.Header" xml:space="preserve"> <value>Thickness (px)</value> <comment>px = pixels</comment> </data> <data name="AlwaysOnTop_Behavior_GroupSettings.Header" xml:space="preserve"> <value>Appearance &amp; behavior</value> </data> <data name="Shell_AlwaysOnTop.Content" xml:space="preserve"> <value>Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_GameMode.Content" xml:space="preserve"> <value>Do not activate when Game Mode is on</value> <comment>Game Mode is a Windows feature</comment> </data> <data name="AlwaysOnTop_SoundTitle.Header" xml:space="preserve"> <value>Sound</value> </data> <data name="AlwaysOnTop_Sound.Content" xml:space="preserve"> <value>Play a sound when pinning a window</value> </data> <data name="AlwaysOnTop_Behavior.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="LearnMore_AlwaysOnTop.Text" xml:space="preserve"> <value>Learn more about Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="AlwaysOnTop_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to pin or unpin an app window</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="Oobe_AlwaysOnTop.Title" xml:space="preserve"> <value>Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="Oobe_AlwaysOnTop.Description" xml:space="preserve"> <value>Always On Top improves your multitasking workflow by pinning an application window so it's always in front - even when focus changes to another window after that.</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="Oobe_AlwaysOnTop_HowToUse.Text" xml:space="preserve"> <value>to pin or unpin the selected window so it's always on top of all other windows.</value> </data> <data name="Oobe_AlwaysOnTop_TipsAndTricks.Text" xml:space="preserve"> <value>You can tweak the visual outline of the pinned windows in PowerToys settings.</value> </data> <data name="AlwaysOnTop_FrameColor_Mode.Header" xml:space="preserve"> <value>Color mode</value> </data> <data name="AlwaysOnTop_Radio_Custom_Color.Content" xml:space="preserve"> <value>Custom color</value> </data> <data name="AlwaysOnTop_Radio_Windows_Default.Content" xml:space="preserve"> <value>Windows default</value> </data> <data name="FileExplorerPreview.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Monaco_Wrap_Text.Content" xml:space="preserve"> <value>Wrap text</value> <comment>Feature on or off</comment> </data> <data name="FancyZones_AllowPopupWindowSnap.Description" xml:space="preserve"> <value>This setting can affect all popup windows including notifications</value> </data> <data name="FancyZones_AllowPopupWindowSnap.Header" xml:space="preserve"> <value>Allow popup windows snapping</value> </data> <data name="FancyZones_AllowChildWindowSnap.Content" xml:space="preserve"> <value>Allow child windows snapping</value> </data> <data name="Shell_WhatsNew.Content" xml:space="preserve"> <value>What's new</value> </data> <data name="Shell_Peek.Content" xml:space="preserve"> <value>Peek</value> <comment>Product name: Navigation view item name for Peek</comment> </data> <data name="Peek.ModuleTitle" xml:space="preserve"> <value>Peek</value> </data> <data name="Peek.ModuleDescription" xml:space="preserve"> <value>Peek is a quick and easy way to preview files. Select a file in File Explorer and press the shortcut to open the file preview.</value> </data> <data name="Peek_EnablePeek.Header" xml:space="preserve"> <value>Enable Peek</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="Peek_BehaviorHeader.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="Peek_AlwaysRunNotElevated.Header" xml:space="preserve"> <value>Always run not elevated, even when PowerToys is elevated</value> </data> <data name="Peek_AlwaysRunNotElevated.Description" xml:space="preserve"> <value>Tries to run Peek without elevated permissions, to fix access to network shares. You need to disable and re-enable Peek for changes to this value to take effect.</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="Peek_CloseAfterLosingFocus.Header" xml:space="preserve"> <value>Automatically close the Peek window after it loses focus</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="FancyZones_DisableRoundCornersOnWindowSnap.Content" xml:space="preserve"> <value>Disable round corners when window is snapped</value> </data> <data name="PowerLauncher_SearchQueryTuningEnabled.Description" xml:space="preserve"> <value>Fine tune results ordering</value> </data> <data name="PowerLauncher_SearchQueryTuningEnabled.Header" xml:space="preserve"> <value>Results order tuning</value> </data> <data name="PowerLauncher_SearchClickedItemWeight.Description" xml:space="preserve"> <value>Use a higher number to get selected results to rise faster. The default is 5, 0 to disable.</value> </data> <data name="PowerLauncher_SearchClickedItemWeight.Header" xml:space="preserve"> <value>Selected item weight</value> </data> <data name="PowerLauncher_WaitForSlowResults.Description" xml:space="preserve"> <value>Selecting this can help preselect the top, more relevant result, but at the risk of jumpiness</value> </data> <data name="PowerLauncher_WaitForSlowResults.Header" xml:space="preserve"> <value>Wait on slower plugin results before selecting top item in results</value> </data> <data name="PowerLauncher_PluginWeightBoost.Description" xml:space="preserve"> <value>Use a higher number to have this plugin's result show higher in the global results. Default is 0.</value> </data> <data name="PowerLauncher_PluginWeightBoost.Header" xml:space="preserve"> <value>Global sort order score modifier</value> </data> <data name="AlwaysOnTop_RoundCorners.Content" xml:space="preserve"> <value>Enable round corners</value> </data> <data name="LearnMore_QuickAccent.Text" xml:space="preserve"> <value>Learn more about Quick Accent</value> <comment>Quick Accent is a product name, do not loc</comment> </data> <data name="QuickAccent_EnableQuickAccent.Header" xml:space="preserve"> <value>Enable Quick Accent</value> </data> <data name="Shell_QuickAccent.Content" xml:space="preserve"> <value>Quick Accent</value> </data> <data name="QuickAccent.ModuleDescription" xml:space="preserve"> <value>Quick Accent is an alternative way to type accented characters, useful for when a keyboard doesn't support that specific accent. Activate by holding the key for the character you want to add an accent to, then press the activation key (space, left or right arrow keys) and an overlay to select accented characters will appear!</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent.ModuleTitle" xml:space="preserve"> <value>Quick Accent</value> </data> <data name="QuickAccent.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> </data> <data name="Oobe_QuickAccent.Description" xml:space="preserve"> <value>Quick Accent is an easy way to write letters with accents, like on a smartphone.</value> </data> <data name="Oobe_QuickAccent.Title" xml:space="preserve"> <value>Quick Accent</value> </data> <data name="Oobe_QuickAccent_HowToUse.Text" xml:space="preserve"> <value>Open **PowerToys Settings** and enable Quick Accent. While holding the key for the character you want to add an accent to, press the Activation Key and an overlay to select the accented character will appear.</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="QuickAccent_Activation_Shortcut.Header" xml:space="preserve"> <value>Activation key</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent_Activation_Shortcut.Description" xml:space="preserve"> <value>Press this key after holding down the target letter</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent_Activation_Key_Arrows.Content" xml:space="preserve"> <value>Left/Right Arrow</value> <comment>Left/Right arrow keyboard keys</comment> </data> <data name="QuickAccent_Activation_Key_Space.Content" xml:space="preserve"> <value>Space</value> <comment>Space is the space keyboard key</comment> </data> <data name="QuickAccent_Activation_Key_Either.Content" xml:space="preserve"> <value>Left, Right or Space</value> <comment>All are keys on a keyboard</comment> </data> <data name="QuickAccent_Toolbar.Header" xml:space="preserve"> <value>Toolbar</value> </data> <data name="QuickAccent_ToolbarPosition.Header" xml:space="preserve"> <value>Toolbar position</value> </data> <data name="QuickAccent_ToolbarPosition_TopCenter.Content" xml:space="preserve"> <value>Top center</value> </data> <data name="QuickAccent_ToolbarPosition_TopLeftCorner.Content" xml:space="preserve"> <value>Top left corner</value> </data> <data name="QuickAccent_ToolbarPosition_TopRightCorner.Content" xml:space="preserve"> <value>Top right corner</value> </data> <data name="QuickAccent_ToolbarPosition_BottomLeftCorner.Content" xml:space="preserve"> <value>Bottom left corner</value> </data> <data name="QuickAccent_ToolbarPosition_BottomCenter.Content" xml:space="preserve"> <value>Bottom center</value> </data> <data name="QuickAccent_ToolbarPosition_BottomRightCorner.Content" xml:space="preserve"> <value>Bottom right corner</value> </data> <data name="QuickAccent_ToolbarPosition_Center.Content" xml:space="preserve"> <value>Center</value> </data> <data name="QuickAccent_ToolbarPosition_Left.Content" xml:space="preserve"> <value>Left</value> </data> <data name="QuickAccent_ToolbarPosition_Right.Content" xml:space="preserve"> <value>Right</value> </data> <data name="QuickAccent_Behavior.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="QuickAccent_InputTimeMs.Header" xml:space="preserve"> <value>Input delay (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="QuickAccent_InputTimeMs.Description" xml:space="preserve"> <value>Hold the key down for this much time to make the accent menu appear (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="QuickAccent_ExcludedApps.Description" xml:space="preserve"> <value>Prevents module activation if a foreground application is excluded. Add one application name per line.</value> </data> <data name="QuickAccent_ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="QuickAccent_ExcludedApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: Teams.exe</value> </data> <data name="LearnMore_TextExtractor.Text" xml:space="preserve"> <value>Learn more about Text Extractor</value> </data> <data name="TextExtractor_Cancel" xml:space="preserve"> <value>cancel</value> </data> <data name="General_SettingsBackupAndRestore_NothingToBackup" xml:space="preserve"> <value>A new backup was not created because no settings have been changed since last backup.</value> </data> <data name="General_SettingsBackupAndRestore_NoBackupFound" xml:space="preserve"> <value>No backup found</value> </data> <data name="General_SettingsBackupAndRestore_FailedToParseTime" xml:space="preserve"> <value>Failed to parse time</value> </data> <data name="General_SettingsBackupAndRestore_UnknownBackupTime" xml:space="preserve"> <value>Unknown</value> </data> <data name="General_SettingsBackupAndRestore_UnknownBackupSource" xml:space="preserve"> <value>Unknown</value> </data> <data name="General_SettingsBackupAndRestore_ThisMachine" xml:space="preserve"> <value>This computer</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsMatch" xml:space="preserve"> <value>Current settings match</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsStatusAt" xml:space="preserve"> <value>at</value> <comment>E.g., Food was served 'at' noon.</comment> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsDiffer" xml:space="preserve"> <value>Current settings differ</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsNoChecked" xml:space="preserve"> <value>Checking...</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsUnknown" xml:space="preserve"> <value>Unknown</value> </data> <data name="General_SettingsBackupAndRestore_NeverRestored" xml:space="preserve"> <value>Never restored</value> </data> <data name="General_SettingsBackupAndRestore_NothingToRestore" xml:space="preserve"> <value>Nothing to restore.</value> </data> <data name="General_SettingsBackupAndRestore_NoSettingsFilesFound" xml:space="preserve"> <value>No settings files found.</value> </data> <data name="General_SettingsBackupAndRestore_BackupError" xml:space="preserve"> <value>There was an error. Try another backup location.</value> </data> <data name="General_SettingsBackupAndRestore_SettingsFormatError" xml:space="preserve"> <value>There was an error in the settings format. Please check the settings file:</value> </data> <data name="General_SettingsBackupAndRestore_BackupComplete" xml:space="preserve"> <value>Backup completed.</value> </data> <data name="General_SettingsBackupAndRestore_NoBackupSyncPath" xml:space="preserve"> <value>No backup location selected.</value> </data> <data name="General_SettingsBackupAndRestore_NoBackupsFound" xml:space="preserve"> <value>No backups found to restore.</value> </data> <data name="General_SettingsBackupAndRestore_InvalidBackupLocation" xml:space="preserve"> <value>Invalid backup location.</value> </data> <data name="TextExtractor.ModuleDescription" xml:space="preserve"> <value>Text Extractor is a convenient way to copy text from anywhere on screen</value> </data> <data name="TextExtractor.ModuleTitle" xml:space="preserve"> <value>Text Extractor</value> </data> <data name="TextExtractor_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Text Extractor</value> </data> <data name="TextExtractor_SupportedLanguages.Title" xml:space="preserve"> <value>Text Extractor can only recognize languages that have the OCR pack installed.</value> </data> <data name="TextExtractor_SupportedLanguages_Link.Content" xml:space="preserve"> <value>Learn more about supported languages</value> </data> <data name="Shell_TextExtractor.Content" xml:space="preserve"> <value>Text Extractor</value> </data> <data name="Launch_TextExtractor.Content" xml:space="preserve"> <value>Launch Text Extractor</value> </data> <data name="Oobe_TextExtractor.Title" xml:space="preserve"> <value>Text Extractor</value> </data> <data name="Oobe_TextExtractor_HowToUse.Text" xml:space="preserve"> <value>to open Text Extractor and then selecting a region to copy the text from.</value> </data> <data name="Oobe_TextExtractor_TipsAndTricks.Text" xml:space="preserve"> <value>Hold the shift key to move the selection region around.</value> </data> <data name="TextExtractor.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> </data> <data name="Oobe_TextExtractor.Description" xml:space="preserve"> <value>Text Extractor works like Snipping Tool, but copies the text out of the selected region using OCR and puts it on the clipboard.</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Monaco_Try_Format.Description" xml:space="preserve"> <value>Applies to json and xml. Files remain unchanged.</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Monaco_Try_Format.Header" xml:space="preserve"> <value>Try to format the source for preview</value> </data> <data name="Run_ConflictingKeywordInfo.Title" xml:space="preserve"> <value>Some characters and phrases may conflict with global queries of other plugins if you use them as activation command.</value> </data> <data name="Run_ConflictingKeywordInfo_Link.Content" xml:space="preserve"> <value>Learn more about conflicting activation commands</value> </data> <data name="MeasureTool_ContinuousCapture_Information.Title" xml:space="preserve"> <value>The continuous capture mode will consume more resources when in use. Also, measurements will be excluded from screenshots and screen capture.</value> <comment>pointer as in mouse pointer. Resources refer to things like CPU, GPU, RAM</comment> </data> <data name="QuickAccent_Description_Indicator.Header" xml:space="preserve"> <value>Show the Unicode code and name of the currently selected character</value> </data> <data name="QuickAccent_SortByUsageFrequency_Indicator.Header" xml:space="preserve"> <value>Sort characters by usage frequency</value> </data> <data name="QuickAccent_SortByUsageFrequency_Indicator.Description" xml:space="preserve"> <value>Track characters usage frequency and sort them accordingly</value> </data> <data name="QuickAccent_StartSelectionFromTheLeft_Indicator.Header" xml:space="preserve"> <value>Start selection from the left</value> </data> <data name="QuickAccent_StartSelectionFromTheLeft_Indicator.Description" xml:space="preserve"> <value>Start selection from the leftmost character for all activation keys, including left and right arrows</value> </data> <data name="QuickAccent_DisableFullscreen.Header" xml:space="preserve"> <value>Disable when Game Mode is On</value> </data> <data name="QuickAccent_Language.Header" xml:space="preserve"> <value>Characters</value> </data> <data name="QuickAccent_SelectedLanguage.Header" xml:space="preserve"> <value>Choose a character set</value> </data> <data name="QuickAccent_SelectedLanguage.Description" xml:space="preserve"> <value>Show only accented characters common to the selected set</value> </data> <data name="QuickAccent_SelectedLanguage_All.Content" xml:space="preserve"> <value>All available</value> </data> <data name="QuickAccent_SelectedLanguage_Catalan.Content" xml:space="preserve"> <value>Catalan</value> </data> <data name="QuickAccent_SelectedLanguage_Currency.Content" xml:space="preserve"> <value>Currency</value> </data> <data name="QuickAccent_SelectedLanguage_Croatian.Content" xml:space="preserve"> <value>Croatian</value> </data> <data name="QuickAccent_SelectedLanguage_Czech.Content" xml:space="preserve"> <value>Czech</value> </data> <data name="QuickAccent_SelectedLanguage_Gaeilge.Content" xml:space="preserve"> <value>Gaeilge</value> <comment>Gaelic language spoken in Ireland</comment> </data> <data name="QuickAccent_SelectedLanguage_Gaidhlig.Content" xml:space="preserve"> <value>Gàidhlig</value> <comment>Scottish Gaelic</comment> </data> <data name="QuickAccent_SelectedLanguage_German.Content" xml:space="preserve"> <value>German</value> </data> <data name="QuickAccent_SelectedLanguage_Hebrew.Content" xml:space="preserve"> <value>Hebrew</value> </data> <data name="QuickAccent_SelectedLanguage_French.Content" xml:space="preserve"> <value>French</value> </data> <data name="QuickAccent_SelectedLanguage_Estonian.Content" xml:space="preserve"> <value>Estonian</value> </data> <data name="QuickAccent_SelectedLanguage_Lithuanian.Content" xml:space="preserve"> <value>Lithuanian</value> </data> <data name="QuickAccent_SelectedLanguage_Macedonian.Content" xml:space="preserve"> <value>Macedonian</value> </data> <data name="QuickAccent_SelectedLanguage_Maori.Content" xml:space="preserve"> <value>Maori</value> </data> <data name="QuickAccent_SelectedLanguage_Dutch.Content" xml:space="preserve"> <value>Dutch</value> </data> <data name="QuickAccent_SelectedLanguage_Norwegian.Content" xml:space="preserve"> <value>Norwegian</value> </data> <data name="QuickAccent_SelectedLanguage_Pinyin.Content" xml:space="preserve"> <value>Pinyin</value> </data> <data name="QuickAccent_SelectedLanguage_Polish.Content" xml:space="preserve"> <value>Polish</value> </data> <data name="QuickAccent_SelectedLanguage_Portuguese.Content" xml:space="preserve"> <value>Portuguese</value> </data> <data name="QuickAccent_SelectedLanguage_Slovakian.Content" xml:space="preserve"> <value>Slovakian</value> </data> <data name="QuickAccent_SelectedLanguage_Spanish.Content" xml:space="preserve"> <value>Spanish</value> </data> <data name="QuickAccent_SelectedLanguage_Swedish.Content" xml:space="preserve"> <value>Swedish</value> </data> <data name="QuickAccent_SelectedLanguage_Turkish.Content" xml:space="preserve"> <value>Turkish</value> </data> <data name="QuickAccent_SelectedLanguage_Icelandic.Content" xml:space="preserve"> <value>Icelandic</value> </data> <data name="QuickAccent_SelectedLanguage_Romanian.Content" xml:space="preserve"> <value>Romanian</value> </data> <data name="QuickAccent_SelectedLanguage_Serbian.Content" xml:space="preserve"> <value>Serbian</value> </data> <data name="QuickAccent_SelectedLanguage_Hungarian.Content" xml:space="preserve"> <value>Hungarian</value> </data> <data name="QuickAccent_SelectedLanguage_Italian.Content" xml:space="preserve"> <value>Italian</value> </data> <data name="QuickAccent_SelectedLanguage_Kurdish.Content" xml:space="preserve"> <value>Kurdish</value> </data> <data name="QuickAccent_SelectedLanguage_Welsh.Content" xml:space="preserve"> <value>Welsh</value> </data> <data name="Hosts.ModuleDescription" xml:space="preserve"> <value>Quick and simple utility for managing hosts file.</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Hosts.ModuleTitle" xml:space="preserve"> <value>Hosts File Editor</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Shell_Hosts.Content" xml:space="preserve"> <value>Hosts File Editor</value> <comment>Products name: Navigation view item name for Hosts File Editor</comment> </data> <data name="Hosts_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Hosts_Toggle_ShowStartupWarning.Header" xml:space="preserve"> <value>Show a warning at startup</value> </data> <data name="Hosts_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="Hosts_LaunchButtonControl.Description" xml:space="preserve"> <value>Manage your hosts file</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Hosts_LaunchButtonControl.Header" xml:space="preserve"> <value>Launch Host File Editor</value> <comment>"Host File Editor" is a product name</comment> </data> <data name="Hosts_LaunchButton_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Launch Host File Editor</value> <comment>"Host File Editor" is a product name</comment> </data> <data name="Hosts_AdditionalLinesPosition.Header" xml:space="preserve"> <value>Position of additional content</value> </data> <data name="Hosts_AdditionalLinesPosition_Bottom.Content" xml:space="preserve"> <value>Bottom</value> </data> <data name="Hosts_AdditionalLinesPosition_Top.Content" xml:space="preserve"> <value>Top</value> </data> <data name="Hosts_Behavior_GroupSettings.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="Launch_Hosts.Content" xml:space="preserve"> <value>Launch Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="LearnMore_Hosts.Text" xml:space="preserve"> <value>Learn more about Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Oobe_Hosts.Description" xml:space="preserve"> <value>Hosts File Editor is a quick and simple utility for managing hosts file.</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Oobe_Hosts.Title" xml:space="preserve"> <value>Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Hosts_Toggle_LaunchAdministrator.Description" xml:space="preserve"> <value>Needs to be launched as administrator in order to make changes to the hosts file</value> </data> <data name="Hosts_Toggle_LaunchAdministrator.Header" xml:space="preserve"> <value>Launch as administrator</value> </data> <data name="ShortcutGuide_PressTimeForTaskbarIconShortcuts.Header" xml:space="preserve"> <value>Press duration before showing taskbar icon shortcuts (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="FileLocksmith.ModuleDescription" xml:space="preserve"> <value>A Windows shell extension to find out which processes are using the selected files and directories.</value> </data> <data name="FileLocksmith.ModuleTitle" xml:space="preserve"> <value>File Locksmith</value> </data> <data name="Shell_FileLocksmith.Content" xml:space="preserve"> <value>File Locksmith</value> <comment>Product name: Navigation view item name for FileLocksmith</comment> </data> <data name="FileLocksmith_Enable_FileLocksmith.Header" xml:space="preserve"> <value>Enable File Locksmith</value> <comment>File Locksmith is the name of the utility</comment> </data> <data name="FileLocksmith_Toggle_StandardContextMenu.Content" xml:space="preserve"> <value>Default and extended context menu</value> </data> <data name="FileLocksmith_Toggle_ExtendedContextMenu.Content" xml:space="preserve"> <value>Extended context menu only</value> </data> <data name="FileLocksmith_Toggle_ContextMenu.Header" xml:space="preserve"> <value>Show File Locksmith in</value> </data> <data name="FileLocksmith_ShellIntegration.Header" xml:space="preserve"> <value>Shell integration</value> <comment>This refers to directly integrating in with Windows</comment> </data> <data name="GPO_IsSettingForced.Title" xml:space="preserve"> <value>The system administrator is forcing this setting.</value> </data> <data name="Hosts_AdditionalLinesPosition.Description" xml:space="preserve"> <value>Additional content includes the file header and lines that can't parse</value> </data> <data name="TextExtractor_Languages.Header" xml:space="preserve"> <value>Preferred language</value> </data> <data name="Alternate_OOBE_AlwaysOnTop_Description.Text" xml:space="preserve"> <value>Pin a window so that:</value> </data> <data name="Alternate_OOBE_AlwaysOnTop_Title.Text" xml:space="preserve"> <value>Always On Top</value> </data> <data name="Alternate_OOBE_ColorPicker_Description.Text" xml:space="preserve"> <value>To pick a color:</value> </data> <data name="Alternate_OOBE_ColorPicker_Title.Text" xml:space="preserve"> <value>Color Picker</value> </data> <data name="Alternate_OOBE_Description.Text" xml:space="preserve"> <value>Here are a few shortcuts to get you started:</value> </data> <data name="Alternate_OOBE_FancyZones_Description.Text" xml:space="preserve"> <value>To open the FancyZones editor, press:</value> </data> <data name="Alternate_OOBE_FancyZones_Title.Text" xml:space="preserve"> <value>FancyZones</value> </data> <data name="Alternate_OOBE_Run_Description.Text" xml:space="preserve"> <value>Get access to your files and more:</value> </data> <data name="Alternate_OOBE_Run_Title.Text" xml:space="preserve"> <value>PowerToys Run</value> </data> <data name="General_Experimentation.Header" xml:space="preserve"> <value>Experimentation</value> </data> <data name="GeneralPage_EnableExperimentation.Description" xml:space="preserve"> <value>Note: Only Windows Insider builds may be selected for experimentation</value> </data> <data name="GeneralPage_EnableExperimentation.Header" xml:space="preserve"> <value>Allow experimentation with new features</value> </data> <data name="GPO_ExperimentationIsDisallowed.Title" xml:space="preserve"> <value>The system administrator has disabled experimentation.</value> </data> <data name="Shell_PastePlain.Content" xml:space="preserve"> <value>Paste As Plain Text</value> <comment>Product name: Navigation view item name for Paste as Plain Text</comment> </data> <data name="PastePlain.ModuleDescription" xml:space="preserve"> <value>Paste As Plain Text is a quick shortcut for pasting the text contents of your clipboard without formatting. Note: the formatted text in the clipboard is replaced with the unformatted text.</value> </data> <data name="PastePlain.ModuleTitle" xml:space="preserve"> <value>Paste As Plain Text</value> </data> <data name="PastePlain_Cancel" xml:space="preserve"> <value>cancel</value> </data> <data name="PastePlain_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Paste As Plain Text</value> </data> <data name="Oobe_PastePlain.Description" xml:space="preserve"> <value>Paste As Plain Text strips rich formatting from your clipboard data and pastes it as non-formatted text.</value> </data> <data name="Oobe_PastePlain.Title" xml:space="preserve"> <value>Paste As Plain Text</value> </data> <data name="Oobe_PastePlain_HowToUse.Text" xml:space="preserve"> <value>to paste your clipboard data as plain text. Note: this will replace the formatted text in your clipboard with the plain text.</value> </data> <data name="AllAppsTxt.Text" xml:space="preserve"> <value>All apps</value> </data> <data name="BackBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Back</value> </data> <data name="BackLabel.Text" xml:space="preserve"> <value>Back</value> </data> <data name="BugReportBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Bug report</value> </data> <data name="BugReportTooltip.Text" xml:space="preserve"> <value>Bug report</value> </data> <data name="DocsBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Documentation</value> </data> <data name="DocsTooltip.Text" xml:space="preserve"> <value>Documentation</value> </data> <data name="FZEditorString" xml:space="preserve"> <value>FancyZones Editor</value> <comment>Do not localize this string</comment> </data> <data name="MoreBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>More</value> </data> <data name="MoreLabel.Text" xml:space="preserve"> <value>More</value> </data> <data name="SettingsBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Settings</value> </data> <data name="SettingsTooltip.Text" xml:space="preserve"> <value>Settings</value> </data> <data name="ShortcutsTxt.Text" xml:space="preserve"> <value>Shortcuts</value> </data> <data name="UpdateAvailable.Title" xml:space="preserve"> <value>Update available</value> </data> <data name="FileExplorerPreview_Toggle_Monaco_Max_File_Size.Header" xml:space="preserve"> <value>Maximum file size to preview</value> <comment>Size refers to the disk space used by a file</comment> </data> <data name="FileExplorerPreview_Toggle_Monaco_Max_File_Size.Description" xml:space="preserve"> <value>The maximum size, in kilobytes, for files to be displayed. This is a safety mechanism to prevent loading large files into RAM.</value> <comment>"RAM" refers to random access memory; "size" refers to disk space; "bytes" refer to the measurement unit</comment> </data> <data name="RegistryPreview.ModuleDescription" xml:space="preserve"> <value>A quick little utility to visualize and edit complex Windows Registry files.</value> </data> <data name="RegistryPreview.ModuleTitle" xml:space="preserve"> <value>Registry Preview</value> </data> <data name="Shell_RegistryPreview.Content" xml:space="preserve"> <value>Registry Preview</value> <comment>Product name: Navigation view item name for Registry Preview</comment> </data> <data name="RegistryPreview_Enable_RegistryPreview.Header" xml:space="preserve"> <value>Enable Registry Preview</value> <comment>Registry Preview is the name of the utility</comment> </data> <data name="Oobe_RegistryPreview_HowToUse.Text" xml:space="preserve"> <value>In File Explorer, right-click a .REG file and select **Preview** from the context menu.</value> </data> <data name="Oobe_RegistryPreview_TipsAndTricks.Text" xml:space="preserve"> <value>You can preview or edit Registry files in File Explorer or by opening the app from the PowerToys launcher.</value> </data> <data name="Oobe_RegistryPreview.Description" xml:space="preserve"> <value>Registry Preview is a quick little utility to visualize and edit complex Windows Registry files.</value> </data> <data name="Oobe_RegistryPreview.Title" xml:space="preserve"> <value>Registry Preview</value> <comment>Do not localize this string</comment> </data> <data name="LearnMore_RegistryPreview.Text" xml:space="preserve"> <value>Learn more about Registry Preview</value> <comment>Registry Preview is a product name, do not loc</comment> </data> <data name="Launch_RegistryPreview.Content" xml:space="preserve"> <value>Launch Registry Preview</value> <comment>"Registry Preview" is the name of the utility</comment> </data> <data name="MouseUtils_MouseJump.Description" xml:space="preserve"> <value>Quickly move the mouse pointer long distances.</value> <comment>"Mouse Jump" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_MouseJump.Header" xml:space="preserve"> <value>Mouse Jump</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_MouseJump_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to turn on or off this mode</value> </data> <data name="MouseUtils_MouseJump_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MouseUtils_Enable_MouseJump.Header" xml:space="preserve"> <value>Enable Mouse Jump</value> <comment>"Mouse Jump" is the name of the utility.</comment> </data> <data name="GPO_AutoDownloadUpdatesIsDisabled.Title" xml:space="preserve"> <value>The system administrator has disabled the automatic download of updates.</value> </data> <data name="Hosts_Toggle_LoopbackDuplicates.Description" xml:space="preserve"> <value>127.0.0.1, ::1, ...</value> <comment>"127.0.0.1 and ::1" are well known loopback addresses, do not loc</comment> </data> <data name="Hosts_Toggle_LoopbackDuplicates.Header" xml:space="preserve"> <value>Consider loopback addresses as duplicates</value> </data> <data name="RegistryPreview_Launch_GroupSettings.Header" xml:space="preserve"> <value>Launch</value> </data> <data name="RegistryPreview_LaunchButton_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Launch Registry Preview</value> </data> <data name="RegistryPreview_LaunchButtonControl.Header" xml:space="preserve"> <value>Launch Registry Preview</value> </data> <data name="RegistryPreview_DefaultRegApp.Header" xml:space="preserve"> <value>Default app</value> </data> <data name="RegistryPreview_DefaultRegApp.Description" xml:space="preserve"> <value>Make Registry Preview default app for opening .reg files</value> <comment>Registry Preview is app name. Do not localize.</comment> </data> <data name="PastePlain_ShortcutWarning.Title" xml:space="preserve"> <value>Using this shortcut may prevent non-text paste actions (e.g. images, files) or built-in paste plain text actions in other applications from functioning.</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize.Header" xml:space="preserve"> <value>Thumbnail Size</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Description_Prefix.Text" xml:space="preserve"> <value>Constrain thumbnail image size to a maximum of</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Description_Suffix.Text" xml:space="preserve"> <value>pixels</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Edit_Height.Header" xml:space="preserve"> <value>Maximum height (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Edit_Width.Header" xml:space="preserve"> <value>Maximum width (px)</value> <comment>px = pixels</comment> </data> <data name="Oobe_Peek.Description" xml:space="preserve"> <value>A lightning fast file preview feature for Windows.</value> </data> <data name="Oobe_Peek.Title" xml:space="preserve"> <value>Peek</value> </data> <data name="Oobe_Peek_HowToUse.Text" xml:space="preserve"> <value>to preview the file that's currently selected in File Explorer.</value> </data> <data name="MWB_PCNameLabel.PlaceholderText" xml:space="preserve"> <value>Device name</value> </data> <data name="MWB_SecurityKeyLabel.PlaceholderText" xml:space="preserve"> <value>Security key</value> </data> <data name="Hosts_Encoding.Description" xml:space="preserve"> <value>Choose the encoding of the hosts file</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Hosts_Encoding.Header" xml:space="preserve"> <value>Encoding</value> </data> <data name="Hosts_Encoding_Utf8.Content" xml:space="preserve"> <value>UTF-8</value> </data> <data name="Hosts_Encoding_Utf8Bom.Content" xml:space="preserve"> <value>UTF-8 with BOM</value> </data> <data name="MouseUtils_MouseHighlighter_AlwaysColor.Header" xml:space="preserve"> <value>Always highlight color</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsAutoHide.Content" xml:space="preserve"> <value>Automatically hide crosshairs when the mouse pointer is hidden</value> </data> <data name="MouseUtils_AutoActivate.Content" xml:space="preserve"> <value>Automatically activate on utility startup</value> </data> <data name="Run_FindMorePlugins.Text" xml:space="preserve"> <value>Find more plugins</value> </data> <data name="Run_PluginUseFindMorePlugins.Content" xml:space="preserve"> <value>Find more plugins</value> </data> <data name="Run_SomePluginsAreGpoManaged.Title" xml:space="preserve"> <value>The system administrator is managing the enabled state of some plugins.</value> </data> <data name="AlwaysOnTop_FrameOpacity.Header" xml:space="preserve"> <value>Opacity (%)</value> </data> <data name="MouseUtils_FindMyMouse_ActivationCustomizedShortcut.Content" xml:space="preserve"> <value>Custom shortcut</value> </data> <data name="MouseUtils_FindMyMouse_ActivationDoubleRightControlPress.Content" xml:space="preserve"> <value>Press Right Control twice</value> <comment>Right control is the physical key on the keyboard.</comment> </data> <data name="MouseUtils_FindMyMouse_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to turn on or off this mode</value> </data> <data name="MouseUtils_FindMyMouse_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="SettingsWindow_AdminTitle" xml:space="preserve"> <value>Administrator: PowerToys Settings</value> <comment>Title of the settings window when running as administrator</comment> </data> </root>
<?xml version="1.0" encoding="utf-8"?> <root> <!-- Microsoft ResX Schema Version 2.0 The primary goals of this format is to allow a simple XML format that is mostly human readable. The generation and parsing of the various data types are done through the TypeConverter classes associated with the data types. Example: ... ado.net/XML headers & schema ... <resheader name="resmimetype">text/microsoft-resx</resheader> <resheader name="version">2.0</resheader> <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader> <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader> <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data> <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data> <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64"> <value>[base64 mime encoded serialized .NET Framework object]</value> </data> <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value> <comment>This is a comment</comment> </data> There are any number of "resheader" rows that contain simple name/value pairs. Each data row contains a name, and value. The row also contains a type or mimetype. Type corresponds to a .NET class that support text/value conversion through the TypeConverter architecture. Classes that don't support this are serialized and stored with the mimetype set. The mimetype is used for serialized objects, and tells the ResXResourceReader how to depersist the object. This is currently not extensible. For a given mimetype the value must be set accordingly: Note - application/x-microsoft.net.object.binary.base64 is the format that the ResXResourceWriter will generate, however the reader can read any of the formats listed below. mimetype: application/x-microsoft.net.object.binary.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.soap.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Soap.SoapFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.bytearray.base64 value : The object must be serialized into a byte array : using a System.ComponentModel.TypeConverter : and then encoded with base64 encoding. --> <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> <xsd:import namespace="http://www.w3.org/XML/1998/namespace" /> <xsd:element name="root" msdata:IsDataSet="true"> <xsd:complexType> <xsd:choice maxOccurs="unbounded"> <xsd:element name="metadata"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" /> </xsd:sequence> <xsd:attribute name="name" use="required" type="xsd:string" /> <xsd:attribute name="type" type="xsd:string" /> <xsd:attribute name="mimetype" type="xsd:string" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="assembly"> <xsd:complexType> <xsd:attribute name="alias" type="xsd:string" /> <xsd:attribute name="name" type="xsd:string" /> </xsd:complexType> </xsd:element> <xsd:element name="data"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" /> <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="resheader"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" /> </xsd:complexType> </xsd:element> </xsd:choice> </xsd:complexType> </xsd:element> </xsd:schema> <resheader name="resmimetype"> <value>text/microsoft-resx</value> </resheader> <resheader name="version"> <value>2.0</value> </resheader> <resheader name="reader"> <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <resheader name="writer"> <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <data name="Attribution_Rooler.Text" xml:space="preserve"> <value>Inspired by Rooler</value> <comment>Rooler is a name of the tool.</comment> </data> <data name="Shell_VideoConference.Content" xml:space="preserve"> <value>Video Conference Mute</value> <comment>Navigation view item name for Video Conference</comment> </data> <data name="Shell_MeasureTool.Content" xml:space="preserve"> <value>Screen Ruler</value> <comment>Product name: Navigation view item name for Screen Ruler</comment> </data> <data name="MeasureTool.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="MeasureTool.ModuleDescription" xml:space="preserve"> <value>Screen Ruler is a quick and easy way to measure pixels on your screen.</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool.ModuleTitle" xml:space="preserve"> <value>Screen Ruler</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool_ActivationSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="MeasureTool_Settings.Header" xml:space="preserve"> <value>Behavior</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MeasureTool_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to bring up the command bar</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MeasureTool_DefaultMeasureStyle.Header" xml:space="preserve"> <value>Default measure style</value> </data> <data name="MeasureTool_DefaultMeasureStyle.Description" xml:space="preserve"> <value>The utility will start having the selected style activated</value> </data> <data name="MeasureTool_DefaultMeasureStyle_None.Content" xml:space="preserve"> <value>None</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Bounds.Content" xml:space="preserve"> <value>Bounds</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Spacing.Content" xml:space="preserve"> <value>Spacing</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Horizontal_Spacing.Content" xml:space="preserve"> <value>Horizontal spacing</value> </data> <data name="MeasureTool_DefaultMeasureStyle_Vertical_Spacing.Content" xml:space="preserve"> <value>Vertical spacing</value> </data> <data name="MeasureTool_UnitsOfMeasure.Header" xml:space="preserve"> <value>Units of measurement</value> </data> <data name="MeasureTool_UnitsOfMeasure_Pixels.Content" xml:space="preserve"> <value>Pixels</value> </data> <data name="MeasureTool_UnitsOfMeasure_Inches.Content" xml:space="preserve"> <value>Inches</value> </data> <data name="MeasureTool_UnitsOfMeasure_Centimeters.Content" xml:space="preserve"> <value>Centimeters</value> </data> <data name="MeasureTool_PixelTolerance.Header" xml:space="preserve"> <value>Pixel tolerance for edge detection</value> </data> <data name="MeasureTool_MeasureCrossColor.Header" xml:space="preserve"> <value>Line color</value> </data> <data name="MeasureTool_ContinuousCapture.Header" xml:space="preserve"> <value>Capture screen continuously during measuring</value> </data> <data name="MeasureTool_ContinuousCapture.Description" xml:space="preserve"> <value>Refresh screen contexts in real-time instead of making a screenshot once</value> </data> <data name="MeasureTool_PerColorChannelEdgeDetection.Header" xml:space="preserve"> <value>Per color channel edge detection</value> </data> <data name="MeasureTool_PerColorChannelEdgeDetection.Description" xml:space="preserve"> <value>If enabled, test that all color channels are within a tolerance distance from each other. Otherwise, check that the sum of all color channels differences is smaller than the tolerance.</value> </data> <data name="MeasureTool_DrawFeetOnCross.Header" xml:space="preserve"> <value>Draw feet on cross</value> </data> <data name="MeasureTool_DrawFeetOnCross.Description" xml:space="preserve"> <value>Adds feet to the end of cross lines</value> </data> <data name="MeasureTool_EnableMeasureTool.Header" xml:space="preserve"> <value>Enable Screen Ruler</value> <comment>"Screen Ruler" is the name of the utility</comment> </data> <data name="MouseWithoutBorders_ActivationSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="MouseWithoutBorders_DeviceLayoutSettings.Header" xml:space="preserve"> <value>Device layout</value> </data> <data name="MouseWithoutBorders_DeviceLayoutSettings.Description" xml:space="preserve"> <value>Drag and drop a machine to rearrange the order.</value> </data> <data name="MouseWithoutBorders_CannotDragDropAsAdmin.Title" xml:space="preserve"> <value>It is not possible to use drag and drop while running PowerToys elevated. As a workaround, please restart PowerToys without elevation to edit the device layout.</value> </data> <data name="MouseWithoutBorders_KeySettings.Header" xml:space="preserve"> <value>Encryption key</value> </data> <data name="MouseWithoutBorders_SecurityKey.Header" xml:space="preserve"> <value>Security key</value> </data> <data name="MouseWithoutBorders_SecurityKey.Description" xml:space="preserve"> <value>The key must be auto generated in one machine by clicking on New Key, then typed in other machines</value> </data> <data name="MouseWithoutBorders_NewKey.Content" xml:space="preserve"> <value>New key</value> </data> <data name="MouseWithoutBorders_CopyMachineName.Text" xml:space="preserve"> <value>Copy to clipboard</value> </data> <data name="MouseWithoutBorders_ReconnectButton.Text" xml:space="preserve"> <value>Refresh connections</value> </data> <data name="MouseWithoutBorders_ReconnectTooltip.Text" xml:space="preserve"> <value>Reestablishes connections with other devices if you are experiencing issues.</value> </data> <data name="MouseWithoutBorders_ThisMachineNameLabel.Header" xml:space="preserve"> <value>Host name of this device</value> </data> <data name="MouseWithoutBorders_Connect.Content" xml:space="preserve"> <value>Connect</value> </data> <data name="MouseWithoutBorders_UninstallService.Header" xml:space="preserve"> <value>Uninstall service</value> </data> <data name="MouseWithoutBorders_UninstallService.Description" xml:space="preserve"> <value>Removes the service from the computer. Needs to run as administrator.</value> </data> <data name="MouseWithoutBorders_Settings.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="MouseWithoutBorders_TroubleShooting.Header" xml:space="preserve"> <value>Troubleshooting</value> </data> <data name="MouseWithoutBorders_AddFirewallRuleButtonControl.Header" xml:space="preserve"> <value>Add a firewall rule for Mouse Without Borders</value> <comment>"Mouse Without Borders" is a product name</comment> </data> <data name="MouseWithoutBorders_AddFirewallRuleButtonControl.Description" xml:space="preserve"> <value>Adding a firewall rule might help solve connection issues.</value> </data> <data name="MouseWithoutBorders_RunAsAdminText.Title" xml:space="preserve"> <value>You need to run as administrator to modify this setting.</value> </data> <data name="MouseWithoutBorders_ServiceUserUninstallWarning.Title" xml:space="preserve"> <value>If PowerToys is installed as a user, uninstalling/upgrading may require the Mouse Without Borders service to be removed manually later.</value> </data> <data name="MouseWithoutBorders_ServiceSettings.Header" xml:space="preserve"> <value>Service</value> </data> <data name="MouseWithoutBorders_Toggle_Enable.Header" xml:space="preserve"> <value>Enable Mouse Without Borders</value> </data> <data name="MouseWithoutBorders.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="MouseWithoutBorders.ModuleDescription" xml:space="preserve"> <value>Mouse Without Borders is a quick and easy way to move your cursor across multiple devices.</value> <comment>"Mouse Without Borders" is the name of the utility</comment> </data> <data name="MouseWithoutBorders.ModuleTitle" xml:space="preserve"> <value>Mouse Without Borders</value> <comment>"Mouse Without Borders" is the name of the utility</comment> </data> <data name="MouseWithoutBorders_UseService.Header" xml:space="preserve"> <value>Use Service</value> </data> <data name="MouseWithoutBorders_UseService.Description" xml:space="preserve"> <value>Runs in service mode, that allows MWB to control remote machines when they're locked. Also allows control of system and administrator applications.</value> </data> <data name="MouseWithoutBorders_MatrixOneRow.Header" xml:space="preserve"> <value>Devices in a single row</value> </data> <data name="MouseWithoutBorders_MatrixOneRow.Description" xml:space="preserve"> <value>Sets whether the devices are aligned on a single row. A two by two matrix is considered otherwise.</value> </data> <data name="MouseWithoutBorders_WrapMouse.Header" xml:space="preserve"> <value>Wrap mouse</value> </data> <data name="MouseWithoutBorders_WrapMouse.Description" xml:space="preserve"> <value>Move control back to the first machine when mouse moves past the last one.</value> </data> <data name="MouseWithoutBorders_ShareClipboard.Header" xml:space="preserve"> <value>Share clipboard</value> </data> <data name="MouseWithoutBorders_TransferFile.Header" xml:space="preserve"> <value>Transfer file</value> </data> <data name="MouseWithoutBorders_HideMouseAtScreenEdge.Header" xml:space="preserve"> <value>Hide mouse at the screen edge</value> </data> <data name="MouseWithoutBorders_DrawMouseCursor.Header" xml:space="preserve"> <value>Draw mouse cursor</value> </data> <data name="MouseWithoutBorders_ValidateRemoteMachineIP.Header" xml:space="preserve"> <value>Validate remote machine IP</value> </data> <data name="MouseWithoutBorders_SameSubnetOnly.Header" xml:space="preserve"> <value>Same subnet only</value> </data> <data name="MouseWithoutBorders_BlockScreenSaverOnOtherMachines.Header" xml:space="preserve"> <value>Block screen saver on other machines</value> </data> <data name="MouseWithoutBorders_MoveMouseRelatively.Header" xml:space="preserve"> <value>Move mouse relatively</value> </data> <data name="MouseWithoutBorders_BlockMouseAtScreenCorners.Header" xml:space="preserve"> <value>Block mouse at screen corners</value> </data> <data name="MouseWithoutBorders_ShowClipboardAndNetworkStatusMessages.Header" xml:space="preserve"> <value>Show clipboard and network status messages</value> </data> <data name="MouseWithoutBorders_ShowOriginalUI.Header" xml:space="preserve"> <value>Show the original Mouse Without Borders UI</value> </data> <data name="MouseWithoutBorders_ShowOriginalUI.Description" xml:space="preserve"> <value>This is accessible from the system tray and requires a restart.</value> </data> <data name="MouseWithoutBorders_ShareClipboard.Description" xml:space="preserve"> <value>If share clipboard stops working, Ctrl+Alt+Del then Esc may solve the problem.</value> </data> <data name="MouseWithoutBorders_TransferFile.Description" xml:space="preserve"> <value>If a file (&lt;100MB) is copied, it will be transferred to the remote machine clipboard.</value> </data> <data name="MouseWithoutBorders_HideMouseAtScreenEdge.Description" xml:space="preserve"> <value>Hide the mouse cursor at the top edge of the screen when switching to other machine. This option also steals the focus from any full-screen app to ensure the keyboard input is redirected.</value> </data> <data name="MouseWithoutBorders_DrawMouseCursor.Description" xml:space="preserve"> <value>Mouse cursor may not be visible in Windows 10 and later versions of Windows when there is no physical mouse attached.</value> </data> <data name="MouseWithoutBorders_ValidateRemoteMachineIP.Description" xml:space="preserve"> <value>Reverse DNS lookup to validate machine IP Address.</value> </data> <data name="MouseWithoutBorders_SameSubnetOnly.Description" xml:space="preserve"> <value>Only connect to machines in the same intranet NNN.NNN.*.* (only works when both machines have IPv4 enabled)</value> </data> <data name="MouseWithoutBorders_IPAddressMapping_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: MyLaptop 192.168.0.24</value> <comment>Don't translate MyLaptop</comment> </data> <data name="MouseWithoutBorders_IPAddressMapping.Header" xml:space="preserve"> <value>IP address mapping</value> </data> <data name="MouseWithoutBorders_IPAddressMapping.Description" xml:space="preserve"> <value>Resolve machine's IP address using manually entered mappings below.</value> </data> <data name="MouseWithoutBorders_BlockScreenSaverOnOtherMachines.Description" xml:space="preserve"> <value>Prevent screen saver from starting on other machines when user is actively working on this machine.</value> </data> <data name="MouseWithoutBorders_MoveMouseRelatively.Description" xml:space="preserve"> <value>Use this option when remote machine's monitor settings are different, or remote machine has multiple monitors.</value> </data> <data name="MouseWithoutBorders_BlockMouseAtScreenCorners.Description" xml:space="preserve"> <value>To avoid accident machine-switch at screen corners.</value> </data> <data name="MouseWithoutBorders_ShowClipboardAndNetworkStatusMessages.Description" xml:space="preserve"> <value>Show clipboard activities and network status in system tray notifications</value> </data> <data name="MouseWithoutBorders_KeyboardShortcuts_Group.Header" xml:space="preserve"> <value>Keyboard shortcuts</value> <comment>keyboard is the hardware peripheral</comment> </data> <data name="MouseWithoutBorders_AdvancedSettings_Group.Header" xml:space="preserve"> <value>Advanced Settings</value> </data> <data name="MouseWithoutBorders_EasyMouseOption.Header" xml:space="preserve"> <value>Easy Mouse: move between machines by moving the mouse pointer to the screen edges.</value> </data> <data name="MouseWithoutBorders_EasyMouseOption.Description" xml:space="preserve"> <value>Can also be set to move only when pressing Shift or Ctrl.</value> <comment>Shift and Ctrl are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_EasyMouseOption_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_EasyMouseOption_Enabled.Content" xml:space="preserve"> <value>Enabled</value> </data> <data name="MouseWithoutBorders_EasyMouseOption_Ctrl.Content" xml:space="preserve"> <value>Ctrl</value> <comment>This is the Ctrl keyboard key</comment> </data> <data name="MouseWithoutBorders_EasyMouseOption_Shift.Content" xml:space="preserve"> <value>Shift</value> <comment>This is the Shift keyboard key</comment> </data> <data name="MouseWithoutBorders_LockMachinesShortcut.Header" xml:space="preserve"> <value>Shortcut to lock all machines.</value> </data> <data name="MouseWithoutBorders_LockMachinesShortcut.Description" xml:space="preserve"> <value>Hit this hotkey twice to lock all machines. Note: Only the machines which have the same shortcut configured will be locked.</value> </data> <data name="MouseWithoutBorders_ToggleEasyMouseShortcut.Header" xml:space="preserve"> <value>Shortcut to toggle Easy Mouse.</value> <comment>Ctrl and Alt are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_ToggleEasyMouseShortcut.Description" xml:space="preserve"> <value>Only works if EasyMouse is set to Enabled or Disabled.</value> </data> <data name="MouseWithoutBorders_ToggleEasyMouseShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut.Header" xml:space="preserve"> <value>Shortcut to switch between machines. Ctrl+Alt+:</value> <comment>Ctrl and Alt are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut.Description" xml:space="preserve"> <value>Click on Ctrl+Alt+ the chosen option to switch between machines.</value> <comment>Ctrl and Alt are the keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut_F1.Content" xml:space="preserve"> <value>F1, F2, F3, F4</value> <comment>Don't localize. These are keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut_1.Content" xml:space="preserve"> <value>1, 2, 3, 4</value> <comment>Don't localize. These are keyboard keys</comment> </data> <data name="MouseWithoutBorders_SwitchBetweenMachineShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_LockMachinesShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_ReconnectShortcut.Header" xml:space="preserve"> <value>Shortcut to try reconnecting</value> </data> <data name="MouseWithoutBorders_ReconnectShortcut.Description" xml:space="preserve"> <value>Just in case the connection is lost for any reason.</value> </data> <data name="MouseWithoutBorders_ReconnectShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut.Header" xml:space="preserve"> <value>Shortcut to switch to multiple machine mode.</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut.Description" xml:space="preserve"> <value>Allows controlling all computers at once.</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut_Disabled.Content" xml:space="preserve"> <value>Disabled</value> </data> <data name="MouseWithoutBorders_Switch2AllPcShortcut_Ctrl3.Content" xml:space="preserve"> <value>Ctrl three times</value> <comment>This is the Ctrl keyboard key</comment> </data> <data name="VideoConference_Enable.Header" xml:space="preserve"> <value>Enable Video Conference Mute</value> </data> <data name="VideoConference.ModuleDescription" xml:space="preserve"> <value>Video Conference Mute is a quick and easy way to do a global "mute" of both your microphone and webcam. Disabling this module or closing PowerToys will unmute the microphone and camera.</value> </data> <data name="VideoConference_CameraAndMicrophoneMuteHotkeyControl_Header.Header" xml:space="preserve"> <value>Mute camera &amp; microphone</value> </data> <data name="VideoConference_MicrophoneMuteHotkeyControl_Header.Header" xml:space="preserve"> <value>Mute microphone</value> </data> <data name="VideoConference_MicrophonePushToTalkHotkeyControl_Header.Header" xml:space="preserve"> <value>Push to talk</value> </data> <data name="VideoConference_CameraMuteHotkeyControl_Header.Header" xml:space="preserve"> <value>Mute camera</value> </data> <data name="VideoConference_SelectedCamera.Header" xml:space="preserve"> <value>Selected camera</value> </data> <data name="VideoConference_SelectedMicrophone.Header" xml:space="preserve"> <value>Selected microphone</value> </data> <data name="VideoConference_PushToReverse.Header" xml:space="preserve"> <value>Push to reverse</value> </data> <data name="VideoConference_PushToReverse.Description" xml:space="preserve"> <value>If enabled, allows both push to talk and push to mute, depending on microphone state</value> </data> <data name="VideoConference_CameraOverlayImagePathHeader.Header" xml:space="preserve"> <value>Image displayed when camera is muted</value> </data> <data name="VideoConference_ToolbarPosition.Header" xml:space="preserve"> <value>Toolbar position</value> </data> <data name="VideoConference_ToolbarPosition_TopCenter.Content" xml:space="preserve"> <value>Top center</value> </data> <data name="VideoConference_ToolbarPosition_TopLeftCorner.Content" xml:space="preserve"> <value>Top left corner</value> </data> <data name="VideoConference_ToolbarPosition_TopRightCorner.Content" xml:space="preserve"> <value>Top right corner</value> </data> <data name="VideoConference_ToolbarPosition_BottomLeftCorner.Content" xml:space="preserve"> <value>Bottom left corner</value> </data> <data name="VideoConference_ToolbarPosition_BottomCenter.Content" xml:space="preserve"> <value>Bottom center</value> </data> <data name="VideoConference_ToolbarPosition_BottomRightCorner.Content" xml:space="preserve"> <value>Bottom right corner</value> </data> <data name="VideoConference_ToolbarMonitor.Header" xml:space="preserve"> <value>Show toolbar on</value> </data> <data name="VideoConference_ToolbarMonitor_Main.Content" xml:space="preserve"> <value>Main monitor</value> </data> <data name="VideoConference_ToolbarMonitor_UnderCursor.Content" xml:space="preserve"> <value>Monitor under cursor</value> </data> <data name="VideoConference_ToolbarMonitor_ActiveWindow.Content" xml:space="preserve"> <value>Active window monitor</value> </data> <data name="VideoConference_ToolbarMonitor_All.Content" xml:space="preserve"> <value>All monitors</value> </data> <data name="VideoConference_ToolbarHide.Header" xml:space="preserve"> <value>Hide toolbar</value> </data> <data name="VideoConference_ToolbarHideMuted.Content" xml:space="preserve"> <value>When both camera and microphone are muted</value> </data> <data name="VideoConference_ToolbarHideNever.Content" xml:space="preserve"> <value>Never</value> </data> <data name="VideoConference_ToolbarHideUnmuted.Content" xml:space="preserve"> <value>When both camera and microphone are unmuted</value> </data> <data name="VideoConference_ToolbarHideTimeout.Content" xml:space="preserve"> <value>After timeout</value> </data> <data name="VideoConference.ModuleTitle" xml:space="preserve"> <value>Video Conference Mute</value> </data> <data name="VideoConference_Camera.Header" xml:space="preserve"> <value>Camera</value> </data> <data name="VideoConference_Camera.Description" xml:space="preserve"> <value>To use this feature, make sure to select PowerToys VideoConference Mute as your camera source in your apps.</value> </data> <data name="VideoConference_Microphone.Header" xml:space="preserve"> <value>Microphone</value> </data> <data name="VideoConference_Toolbar.Header" xml:space="preserve"> <value>Toolbar</value> </data> <data name="VideoConference_Behavior.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="VideoConference_StartupAction.Header" xml:space="preserve"> <value>Startup action</value> </data> <data name="VideoConference_StartupActionNothing.Content" xml:space="preserve"> <value>Nothing</value> </data> <data name="VideoConference_StartupActionUnmute.Content" xml:space="preserve"> <value>Unmute</value> </data> <data name="VideoConference_StartupActionMute.Content" xml:space="preserve"> <value>Mute</value> </data> <data name="VideoConference_Shortcuts.Header" xml:space="preserve"> <value>Shortcuts</value> </data> <data name="VideoConference_CameraOverlayImageAlt.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Camera overlay image preview</value> </data> <data name="VideoConference_CameraOverlayImageBrowse.Content" xml:space="preserve"> <value>Browse</value> </data> <data name="VideoConference_CameraOverlayImageClear.Content" xml:space="preserve"> <value>Clear</value> </data> <data name="Shell_General.Content" xml:space="preserve"> <value>General</value> <comment>Navigation view item name for General</comment> </data> <data name="Shell_Awake.Content" xml:space="preserve"> <value>Awake</value> <comment>Product name: Navigation view item name for Awake</comment> </data> <data name="Shell_PowerLauncher.Content" xml:space="preserve"> <value>PowerToys Run</value> <comment>Product name: Navigation view item name for PowerToys Run</comment> </data> <data name="Shell_PowerRename.Content" xml:space="preserve"> <value>PowerRename</value> <comment>Product name: Navigation view item name for PowerRename</comment> </data> <data name="Shell_ShortcutGuide.Content" xml:space="preserve"> <value>Shortcut Guide</value> <comment>Product name: Navigation view item name for Shortcut Guide</comment> </data> <data name="Shell_PowerPreview.Content" xml:space="preserve"> <value>File Explorer add-ons</value> <comment>Product name: Navigation view item name for File Explorer. Please use File Explorer as in the context of File Explorer in Windows</comment> </data> <data name="Shell_FancyZones.Content" xml:space="preserve"> <value>FancyZones</value> <comment>Product name: Navigation view item name for FancyZones</comment> </data> <data name="Shell_ImageResizer.Content" xml:space="preserve"> <value>Image Resizer</value> <comment>Product name: Navigation view item name for Image Resizer</comment> </data> <data name="Shell_ColorPicker.Content" xml:space="preserve"> <value>Color Picker</value> <comment>Product name: Navigation view item name for Color Picker</comment> </data> <data name="Shell_KeyboardManager.Content" xml:space="preserve"> <value>Keyboard Manager</value> <comment>Product name: Navigation view item name for Keyboard Manager</comment> </data> <data name="Shell_MouseWithoutBorders.Content" xml:space="preserve"> <value>Mouse Without Borders</value> <comment>Product name: Navigation view item name for Mouse Without Borders</comment> </data> <data name="Shell_MouseUtilities.Content" xml:space="preserve"> <value>Mouse utilities</value> <comment>Product name: Navigation view item name for Mouse utilities</comment> </data> <data name="Shell_NavigationMenu_Announce_Collapse" xml:space="preserve"> <value>Navigation closed</value> <comment>Accessibility announcement when the navigation pane collapses</comment> </data> <data name="Shell_NavigationMenu_Announce_Open" xml:space="preserve"> <value>Navigation opened</value> <comment>Accessibility announcement when the navigation pane opens</comment> </data> <data name="KeyboardManager_ConfigHeader.Text" xml:space="preserve"> <value>Current configuration</value> <comment>Keyboard Manager current configuration header</comment> </data> <data name="KeyboardManager.ModuleDescription" xml:space="preserve"> <value>Reconfigure your keyboard by remapping keys and shortcuts</value> <comment>Keyboard Manager page description</comment> </data> <data name="KeyboardManager_EnableToggle.Header" xml:space="preserve"> <value>Enable Keyboard Manager</value> <comment>Keyboard Manager enable toggle header. Do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="KeyboardManager_ProfileDescription.Text" xml:space="preserve"> <value>Select the profile to display the active key remap and shortcuts</value> <comment>Keyboard Manager configuration dropdown description</comment> </data> <data name="KeyboardManager_RemapKeyboardButton.Header" xml:space="preserve"> <value>Remap a key</value> <comment>Keyboard Manager remap keyboard button content</comment> </data> <data name="KeyboardManager_Keys.Header" xml:space="preserve"> <value>Keys</value> <comment>Keyboard Manager remap keyboard header</comment> </data> <data name="KeyboardManager_RemapShortcutsButton.Header" xml:space="preserve"> <value>Remap a shortcut</value> <comment>Keyboard Manager remap shortcuts button</comment> </data> <data name="KeyboardManager_Shortcuts.Header" xml:space="preserve"> <value>Shortcuts</value> <comment>Keyboard Manager remap keyboard header</comment> </data> <data name="KeyboardManager_All_Apps_Description" xml:space="preserve"> <value>All Apps</value> <comment>Should be the same as EditShortcuts_AllApps from keyboard manager editor</comment> </data> <data name="Shortcuts.Header" xml:space="preserve"> <value>Shortcuts</value> </data> <data name="Shortcut.Header" xml:space="preserve"> <value>Shortcut</value> </data> <data name="RemapKeysList.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Current Key Remappings</value> </data> <data name="RemapShortcutsList.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Current Shortcut Remappings</value> </data> <data name="KeyboardManager_RemappedKeysListItem.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Key Remapping</value> <comment>key as in keyboard key</comment> </data> <data name="KeyboardManager_RemappedShortcutsListItem.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Shortcut Remapping</value> </data> <data name="KeyboardManager_RemappedTo.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Remapped to</value> </data> <data name="KeyboardManager_ShortcutRemappedTo.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Remapped to</value> </data> <data name="KeyboardManager_TargetApp.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>For Target Application</value> <comment>What computer application would this be for</comment> </data> <data name="KeyboardManager_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Keyboard Manager</value> <comment>do not loc, product name</comment> </data> <data name="ColorPicker.ModuleDescription" xml:space="preserve"> <value>Quick and simple system-wide color picker.</value> </data> <data name="ColorPicker_EnableColorPicker.Header" xml:space="preserve"> <value>Enable Color Picker</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="ColorPicker_ChangeCursor.Content" xml:space="preserve"> <value>Change cursor when picking a color</value> </data> <data name="PowerLauncher.ModuleDescription" xml:space="preserve"> <value>A quick launcher that has additional capabilities without sacrificing performance.</value> </data> <data name="PowerLauncher_EnablePowerLauncher.Header" xml:space="preserve"> <value>Enable PowerToys Run</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="PowerLauncher_SearchResults.Header" xml:space="preserve"> <value>Search &amp; results</value> </data> <data name="PowerLauncher_SearchResultPreference.Header" xml:space="preserve"> <value>Search result preference</value> </data> <data name="PowerLauncher_UsePinyin.Header" xml:space="preserve"> <value>Use Pinyin</value> </data> <data name="PowerLauncher_UsePinyin.Description" xml:space="preserve"> <value>Experimental: Use Pinyin on the search query. May not work for every plugin.</value> </data> <data name="PowerLauncher_SearchResultPreference_MostRecentlyUsed" xml:space="preserve"> <value>Most recently used</value> </data> <data name="PowerLauncher_SearchResultPreference_AlphabeticalOrder" xml:space="preserve"> <value>Alphabetical order</value> </data> <data name="PowerLauncher_SearchResultPreference_RunningProcessesOpenApplications" xml:space="preserve"> <value>Running processes/open applications</value> </data> <data name="PowerLauncher_SearchTypePreference.Header" xml:space="preserve"> <value>Search type preference</value> </data> <data name="PowerLauncher_SearchTypePreference_ApplicationName" xml:space="preserve"> <value>Application name</value> </data> <data name="PowerLauncher_SearchTypePreference_StringInApplication" xml:space="preserve"> <value>A string that is contained in the application</value> </data> <data name="PowerLauncher_SearchTypePreference_ExecutableName" xml:space="preserve"> <value>Executable name</value> </data> <data name="PowerLauncher_MaximumNumberOfResults.Header" xml:space="preserve"> <value>Number of results shown before scrolling</value> </data> <data name="PowerLauncher_OpenPowerLauncher.Header" xml:space="preserve"> <value>Open PowerToys Run</value> </data> <data name="PowerLauncher_OpenFileLocation.Header" xml:space="preserve"> <value>Open file location</value> </data> <data name="PowerLauncher_CopyPathLocation.Header" xml:space="preserve"> <value>Copy path location</value> </data> <data name="PowerLauncher_OpenConsole.Header" xml:space="preserve"> <value>Open console</value> <comment>console refers to Windows command prompt</comment> </data> <data name="PowerLauncher_OverrideWinRKey.Content" xml:space="preserve"> <value>Override Win+R shortcut</value> </data> <data name="PowerLauncher_OverrideWinSKey.Content" xml:space="preserve"> <value>Override Win+S shortcut</value> </data> <data name="PowerLauncher_IgnoreHotkeysInFullScreen.Content" xml:space="preserve"> <value>Ignore shortcuts in fullscreen mode</value> </data> <data name="PowerLauncher_UseCentralizedKeyboardHook.Header" xml:space="preserve"> <value>Use centralized keyboard hook</value> </data> <data name="PowerLauncher_UseCentralizedKeyboardHook.Description" xml:space="preserve"> <value>Try this if there are issues with the shortcut (PowerToys Run might not get focus when triggered from an elevated window)</value> </data> <data name="PowerLauncher_ClearInputOnLaunch.Content" xml:space="preserve"> <value>Clear the previous query on launch</value> </data> <data name="PowerLauncher_TabSelectsContextButtons.Header" xml:space="preserve"> <value>Tab through context buttons</value> </data> <data name="PowerLauncher_TabSelectsContextButtons.Description" xml:space="preserve"> <value>Pressing tab will first select through the available context buttons of the current selection before moving onto the next result</value> </data> <data name="PowerLauncher_GenerateThumbnailsFromFiles.Header" xml:space="preserve"> <value>Generate thumbnails from files</value> </data> <data name="PowerLauncher_GenerateThumbnailsFromFiles.Description" xml:space="preserve"> <value>Results will try to generate thumbnails for files. Disabling this setting may increase stability and speed</value> </data> <data name="PowerLauncher_SearchQueryResultsWithDelay.Header" xml:space="preserve"> <value>Input Smoothing</value> <comment>This is about adding a delay to wait for more input before executing a search</comment> </data> <data name="PowerLauncher_SearchQueryResultsWithDelay.Description" xml:space="preserve"> <value>Wait for more input before searching. This reduces interface jumpiness and system load.</value> </data> <data name="PowerLauncher_FastSearchInputDelayMs.Header" xml:space="preserve"> <value>Immediate plugins</value> </data> <data name="PowerLauncher_FastSearchInputDelayMs.Description" xml:space="preserve"> <value>Affects the plugins that make the UI wait for their results by this amount. Recommended: 30-50 ms.</value> </data> <data name="PowerLauncher_SlowSearchInputDelayMs.Header" xml:space="preserve"> <value>Background execution plugins</value> </data> <data name="PowerLauncher_SlowSearchInputDelayMs.Description" xml:space="preserve"> <value>Affects the plugins that execute in the background by this amount. Recommended: 100-150 ms.</value> </data> <data name="PowerLauncher_SearchInputDelayMs.Header" xml:space="preserve"> <value>Fast plugin throttle (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="KeyboardManager_KeysMappingLayoutRightHeader.Text" xml:space="preserve"> <value>To:</value> <comment>Keyboard Manager mapping keys view right header</comment> </data> <data name="Appearance_GroupSettings.Text" xml:space="preserve"> <value>Appearance</value> </data> <data name="Fancyzones_ImageHyperlinkToDocs.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>FancyZones windows</value> <comment>do not loc the Product name</comment> </data> <data name="FancyZones.ModuleDescription" xml:space="preserve"> <value>Create window layouts to help make multi-tasking easy.</value> <comment>windows refers to application windows</comment> </data> <data name="FancyZones_DisplayOrWorkAreaChangeMoveWindowsCheckBoxControl.Content" xml:space="preserve"> <value>Keep windows in their zones when the screen resolution or work area changes</value> <comment>windows refers to application windows</comment> </data> <data name="FancyZones_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable FancyZones</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="FancyZones_ExcludeApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="FancyZones_ExcludeApps.Description" xml:space="preserve"> <value>Excludes an application from snapping to zones and will only react to Windows Snap - add one application name per line</value> </data> <data name="FancyZones_HighlightOpacity.Header" xml:space="preserve"> <value>Opacity (%)</value> </data> <data name="FancyZones_HotkeyEditorControl.Header" xml:space="preserve"> <value>Open layout editor</value> <comment>Shortcut to launch the FancyZones layout editor application</comment> </data> <data name="FancyZones_WindowSwitching_GroupSettings.Header" xml:space="preserve"> <value>Switch between windows in the current zone</value> </data> <data name="FancyZones_HotkeyNextTabControl.Header" xml:space="preserve"> <value>Next window</value> </data> <data name="FancyZones_HotkeyPrevTabControl.Header" xml:space="preserve"> <value>Previous window</value> </data> <data name="SettingsPage_SetShortcut.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Shortcut setting</value> </data> <data name="SettingsPage_SetShortcut_Glyph.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Information Symbol</value> </data> <data name="FancyZones_LaunchEditorButtonControl.Header" xml:space="preserve"> <value>Launch layout editor</value> <comment>launches the FancyZones layout editor application</comment> </data> <data name="FancyZones_LaunchEditorButtonControl.Description" xml:space="preserve"> <value>Set and manage your layouts</value> <comment>launches the FancyZones layout editor application</comment> </data> <data name="FancyZones_MakeDraggedWindowTransparentCheckBoxControl.Content" xml:space="preserve"> <value>Make dragged window transparent</value> </data> <data name="FancyZones_MouseDragCheckBoxControl_Header.Content" xml:space="preserve"> <value>Use a non-primary mouse button to toggle zone activation</value> </data> <data name="FancyZones_MouseMiddleClickSpanningMultipleZonesCheckBoxControl_Header.Content" xml:space="preserve"> <value>Use middle-click mouse button to toggle multiple zones spanning</value> </data> <data name="FancyZones_MoveWindowsAcrossAllMonitorsCheckBoxControl.Content" xml:space="preserve"> <value>Move windows between zones across all monitors</value> </data> <data name="FancyZones_OverrideSnapHotkeys.Header" xml:space="preserve"> <value>Override Windows Snap</value> </data> <data name="FancyZones_OverrideSnapHotkeys.Description" xml:space="preserve"> <value>This overrides the Windows Snap shortcut (Win + arrow) to move windows between zones</value> </data> <data name="FancyZones_ShiftDragCheckBoxControl_Header.Content" xml:space="preserve"> <value>Hold Shift key to activate zones while dragging a window</value> </data> <data name="FancyZones_ActivationNoShiftDrag" xml:space="preserve"> <value>Drag windows to activate zones</value> </data> <data name="FancyZones_ShowZonesOnAllMonitorsCheckBoxControl.Content" xml:space="preserve"> <value>Show zones on all monitors while dragging a window</value> </data> <data name="FancyZones_AppLastZoneMoveWindows.Content" xml:space="preserve"> <value>Move newly created windows to their last known zone</value> <comment>windows refers to application windows</comment> </data> <data name="FancyZones_OpenWindowOnActiveMonitor.Content" xml:space="preserve"> <value>Move newly created windows to the current active monitor (Experimental)</value> </data> <data name="FancyZones_UseCursorPosEditorStartupScreen.Header" xml:space="preserve"> <value>Launch editor on the display</value> </data> <data name="FancyZones_UseCursorPosEditorStartupScreen.Description" xml:space="preserve"> <value>When using multiple displays</value> </data> <data name="FancyZones_LaunchPositionMouse.Content" xml:space="preserve"> <value>Where the mouse pointer is</value> </data> <data name="FancyZones_LaunchPositionScreen.Content" xml:space="preserve"> <value>With active focus</value> </data> <data name="FancyZones_ZoneBehavior_GroupSettings.Header" xml:space="preserve"> <value>Zone behavior</value> </data> <data name="FancyZones_ZoneBehavior_GroupSettings.Description" xml:space="preserve"> <value>Manage how zones behave when using FancyZones</value> </data> <data name="FancyZones_Zones.Header" xml:space="preserve"> <value>Zones</value> </data> <data name="FancyZones_ZoneHighlightColor.Header" xml:space="preserve"> <value>Highlight color</value> </data> <data name="FancyZones_ZoneSetChangeMoveWindows.Content" xml:space="preserve"> <value>During zone layout changes, windows assigned to a zone will match new size/positions</value> </data> <data name="AttributionTitle.Text" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="General.ModuleTitle" xml:space="preserve"> <value>General</value> </data> <data name="GeneralPage_CheckForUpdates.Content" xml:space="preserve"> <value>Check for updates</value> </data> <data name="General_SettingsBackupAndRestoreLocationText.Header" xml:space="preserve"> <value>Location</value> </data> <data name="General_SettingsBackupAndRestore_ButtonBackup.Content" xml:space="preserve"> <value>Backup</value> </data> <data name="General_SettingsBackupInfo_FileNameHeader.Text" xml:space="preserve"> <value>File name:</value> </data> <data name="General_SettingsBackupAndRestore_LinkRefresh.Text" xml:space="preserve"> <value>Refresh</value> </data> <data name="General_SettingsBackupAndRestore_ButtonRestore.Content" xml:space="preserve"> <value>Restore</value> </data> <data name="General_SettingsBackupAndRestore_ButtonSelectLocation.Text" xml:space="preserve"> <value>Select folder</value> </data> <data name="GeneralPage_UpdateNow.Content" xml:space="preserve"> <value>Update now</value> </data> <data name="GeneralPage_PrivacyStatement_URL.Text" xml:space="preserve"> <value>Privacy statement</value> </data> <data name="GeneralPage_ReportAbug.Text" xml:space="preserve"> <value>Report a bug</value> <comment>Report an issue inside powertoys</comment> </data> <data name="GeneralPage_RequestAFeature_URL.Text" xml:space="preserve"> <value>Request a feature</value> <comment>Tell our team what we should build</comment> </data> <data name="GeneralPage_RestartAsAdmin_Button.Content" xml:space="preserve"> <value>Restart PowerToys as administrator</value> <comment>running PowerToys as a higher level user, account is typically referred to as an admin / administrator</comment> </data> <data name="GeneralPage_RunAtStartUp.Header" xml:space="preserve"> <value>Run at startup</value> </data> <data name="GeneralPage_RunAtStartUp.Description" xml:space="preserve"> <value>PowerToys will launch automatically</value> </data> <data name="PowerRename.ModuleDescription" xml:space="preserve"> <value>A Windows Shell extension for more advanced bulk renaming using search &amp; replace or regular expressions.</value> </data> <data name="PowerRename_ShellIntegration.Header" xml:space="preserve"> <value>Shell integration</value> <comment>This refers to directly integrating in with Windows</comment> </data> <data name="PowerRename_Toggle_Enable.Header" xml:space="preserve"> <value>Enable PowerRename</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="RadioButtons_Name_Theme.Text" xml:space="preserve"> <value>Settings theme</value> </data> <data name="PowerRename_Toggle_HideIcon.Content" xml:space="preserve"> <value>Hide icon in context menu</value> </data> <data name="PowerRename_Toggle_ContextMenu.Header" xml:space="preserve"> <value>Show PowerRename in</value> </data> <data name="PowerRename_Toggle_StandardContextMenu.Content" xml:space="preserve"> <value>Default and extended context menu</value> </data> <data name="PowerRename_Toggle_ExtendedContextMenu.Content" xml:space="preserve"> <value>Extended context menu only</value> </data> <data name="ExtendedContextMenuInfo.Title" xml:space="preserve"> <value>Press Shift + right-click on files to open the extended context menu</value> </data> <data name="PowerRename_Toggle_MaxDispListNum.Header" xml:space="preserve"> <value>Maximum number of items</value> </data> <data name="PowerRename_Toggle_RestoreFlagsOnLaunch.Header" xml:space="preserve"> <value>Show recently used strings</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_MD.Header" xml:space="preserve"> <value>Markdown</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_MD.Description" xml:space="preserve"> <value>.md, .markdown, .mdown, .mkdn, .mkd, .mdwn, .mdtxt, .mdtext</value> <comment>File extensions, should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_Monaco.Header" xml:space="preserve"> <value>Source code files (Monaco)</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_Monaco.Description" xml:space="preserve"> <value>.cpp, .py, .json, .xml, .csproj, ...</value> <comment>File extensions should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_SVG.Header" xml:space="preserve"> <value>Scalable Vector Graphics</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_SVG.Description" xml:space="preserve"> <value>.svg</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_Preview_SVG_Color_Mode.Header" xml:space="preserve"> <value>Color mode</value> </data> <data name="FileExplorerPreview_Preview_SVG_Color_Mode_Default.Content" xml:space="preserve"> <value>Windows default</value> </data> <data name="FileExplorerPreview_Preview_SVG_Color_Solid_Color.Content" xml:space="preserve"> <value>Solid color</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade.Content" xml:space="preserve"> <value>Checkered pattern</value> </data> <data name="FileExplorerPreview_Preview_SVG_Background_Color.Header" xml:space="preserve"> <value>Color</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_Mode.Header" xml:space="preserve"> <value>Checkered shade</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_1.Content" xml:space="preserve"> <value>Light</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_2.Content" xml:space="preserve"> <value>Medium</value> </data> <data name="FileExplorerPreview_Preview_SVG_Checkered_Shade_3.Content" xml:space="preserve"> <value>Dark</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_PDF.Header" xml:space="preserve"> <value>Portable Document Format</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_PDF.Description" xml:space="preserve"> <value>.pdf</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_SVG.Header" xml:space="preserve"> <value>Scalable Vector Graphics</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_SVG.Description" xml:space="preserve"> <value>.svg</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_STL.Header" xml:space="preserve"> <value>Stereolithography</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_STL.Description" xml:space="preserve"> <value>.stl</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview_Color_Thumbnail_STL.Header" xml:space="preserve"> <value>Color</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_PDF.Header" xml:space="preserve"> <value>Portable Document Format</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_PDF.Description" xml:space="preserve"> <value>.pdf</value> <comment>File extension, should not be altered</comment> </data> <data name="FileExplorerPreview.ModuleDescription" xml:space="preserve"> <value>These settings allow you to manage your Windows File Explorer custom preview handlers.</value> </data> <data name="PowerRename_AutoCompleteHeader.Header" xml:space="preserve"> <value>Auto-complete</value> </data> <data name="OpenSource_Notice.Text" xml:space="preserve"> <value>Open-source notice</value> </data> <data name="PowerRename_Toggle_AutoComplete.Header" xml:space="preserve"> <value>Enable auto-complete for the search &amp; replace fields</value> </data> <data name="FancyZones_BorderColor.Header" xml:space="preserve"> <value>Border color</value> </data> <data name="FancyZones_InActiveColor.Header" xml:space="preserve"> <value>Inactive color</value> </data> <data name="ShortcutGuide.ModuleDescription" xml:space="preserve"> <value>Shows a help overlay with Windows shortcuts.</value> </data> <data name="ShortcutGuide_PressTimeForGlobalWindowsShortcuts.Header" xml:space="preserve"> <value>Press duration before showing global Windows shortcuts (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="ShortcutGuide_ActivationMethod.Header" xml:space="preserve"> <value>Activation method</value> </data> <data name="ShortcutGuide_ActivationMethod.Description" xml:space="preserve"> <value>Use a shortcut or press the Windows key for some time to activate</value> </data> <data name="Radio_ShortcutGuide_ActivationMethod_CustomizedShortcut.Content" xml:space="preserve"> <value>Custom shortcut</value> </data> <data name="Radio_ShortcutGuide_ActivationMethod_LongPressWindowsKey.Content" xml:space="preserve"> <value>Hold down Windows key</value> </data> <data name="ShortcutGuide_PressWinKeyWarning.Title" xml:space="preserve"> <value>In some edge cases Shortcut Guide might not function correctly when using this activation method</value> </data> <data name="Appearance_Behavior.Header" xml:space="preserve"> <value>Appearance &amp; behavior</value> </data> <data name="General_SettingsBackupAndRestoreTitle.Header" xml:space="preserve"> <value>Backup &amp; restore</value> </data> <data name="General_SettingsBackupAndRestore.Header" xml:space="preserve"> <value>Backup and restore your settings</value> </data> <data name="General_SettingsBackupAndRestore.Description" xml:space="preserve"> <value>PowerToys will restart automatically if needed</value> </data> <data name="ShortcutGuide_Enable.Header" xml:space="preserve"> <value>Enable Shortcut Guide</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="ShortcutGuide_OverlayOpacity.Header" xml:space="preserve"> <value>Background opacity (%)</value> </data> <data name="ShortcutGuide_DisabledApps.Header" xml:space="preserve"> <value>Exclude apps</value> </data> <data name="ShortcutGuide_DisabledApps.Description" xml:space="preserve"> <value>Turns off Shortcut Guide when these applications have focus - add one application name per line</value> </data> <data name="ShortcutGuide_DisabledApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> <comment>Don't translate outlook.exe</comment> </data> <data name="ImageResizer_CustomSizes.Header" xml:space="preserve"> <value>Image sizes</value> </data> <data name="ImageResizer_Presets.Header" xml:space="preserve"> <value>Presets</value> </data> <data name="ImageResizer_Presets.Description" xml:space="preserve"> <value>Manage preset sizes that can be used in the editor</value> </data> <data name="ImageResizer_FilenameFormatHeader.Description" xml:space="preserve"> <value>This format is used as the filename for resized images</value> </data> <data name="ImageResizer.ModuleDescription" xml:space="preserve"> <value>Lets you resize images by right-clicking.</value> </data> <data name="ImageResizer_EnableToggle.Header" xml:space="preserve"> <value>Enable Image Resizer</value> <comment>do not loc the Product name. Do you want this feature on / off</comment> </data> <data name="ImagesSizesListView.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Image Size</value> </data> <data name="ImageResizer_Configurations.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Configurations</value> </data> <data name="ImageResizer_Name.Header" xml:space="preserve"> <value>Name</value> </data> <data name="ImageResizer_Fit.Header" xml:space="preserve"> <value>Fit</value> </data> <data name="ImageResizer_Width.Header" xml:space="preserve"> <value>Width</value> </data> <data name="ImageResizer_Height.Header" xml:space="preserve"> <value>Height</value> </data> <data name="ImageResizer_Size.Header" xml:space="preserve"> <value>Unit</value> </data> <data name="RemoveButton.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Remove</value> <comment>Removes a user defined setting group for Image Resizer</comment> </data> <data name="RemoveItem.Text" xml:space="preserve"> <value>Delete</value> </data> <data name="ImageResizer_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Image Resizer</value> </data> <data name="ImageResizer_AddSizeButton.Content" xml:space="preserve"> <value>Add new size</value> </data> <data name="ImageResizer_SaveSizeButton.Label" xml:space="preserve"> <value>Save sizes</value> </data> <data name="ImageResizer_Encoding.Header" xml:space="preserve"> <value>JPEG quality level (%)</value> </data> <data name="ImageResizer_PNGInterlacing.Header" xml:space="preserve"> <value>PNG interlacing</value> </data> <data name="ImageResizer_TIFFCompression.Header" xml:space="preserve"> <value>TIFF compression</value> </data> <data name="File.Header" xml:space="preserve"> <value>File</value> <comment>as in a computer file</comment> </data> <data name="Default.Content" xml:space="preserve"> <value>Default</value> </data> <data name="ImageResizer_ENCODER_TIFF_CCITT3.Content" xml:space="preserve"> <value>CCITT3</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_CCITT4.Content" xml:space="preserve"> <value>CCITT4</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_Default.Content" xml:space="preserve"> <value>Default</value> </data> <data name="ImageResizer_ENCODER_TIFF_LZW.Content" xml:space="preserve"> <value>LZW</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_None.Content" xml:space="preserve"> <value>None</value> </data> <data name="ImageResizer_ENCODER_TIFF_RLE.Content" xml:space="preserve"> <value>RLE</value> <comment>do not loc</comment> </data> <data name="ImageResizer_ENCODER_TIFF_Zip.Content" xml:space="preserve"> <value>Zip</value> <comment>do not loc</comment> </data> <data name="ImageResizer_FallbackEncoder_BMP.Content" xml:space="preserve"> <value>BMP encoder</value> </data> <data name="ImageResizer_FallbackEncoder_GIF.Content" xml:space="preserve"> <value>GIF encoder</value> </data> <data name="ImageResizer_FallbackEncoder_JPEG.Content" xml:space="preserve"> <value>JPEG encoder</value> </data> <data name="ImageResizer_FallbackEncoder_PNG.Content" xml:space="preserve"> <value>PNG encoder</value> </data> <data name="ImageResizer_FallbackEncoder_TIFF.Content" xml:space="preserve"> <value>TIFF encoder</value> </data> <data name="ImageResizer_FallbackEncoder_WMPhoto.Content" xml:space="preserve"> <value>WMPhoto encoder</value> </data> <data name="ImageResizer_Sizes_Fit_Fill.Content" xml:space="preserve"> <value>Fill</value> <comment>Refers to filling an image into a certain size. It could overflow</comment> </data> <data name="ImageResizer_Sizes_Fit_Fill_ThirdPersonSingular.Text" xml:space="preserve"> <value>Fill</value> <comment>Refers to filling an image into a certain size. It could overflow</comment> </data> <data name="ImageResizer_Sizes_Fit_Fit.Content" xml:space="preserve"> <value>Fit</value> <comment>Refers to fitting an image into a certain size. It won't overflow</comment> </data> <data name="ImageResizer_Sizes_Fit_Stretch.Content" xml:space="preserve"> <value>Stretch</value> <comment>Refers to stretching an image into a certain size. Won't overflow but could distort.</comment> </data> <data name="ImageResizer_Sizes_Units_CM.Content" xml:space="preserve"> <value>Centimeters</value> </data> <data name="ImageResizer_Sizes_Units_Inches.Content" xml:space="preserve"> <value>Inches</value> </data> <data name="ImageResizer_Sizes_Units_Percent.Content" xml:space="preserve"> <value>Percent</value> </data> <data name="ImageResizer_Sizes_Units_Pixels.Content" xml:space="preserve"> <value>Pixels</value> </data> <data name="Off.Content" xml:space="preserve"> <value>Off</value> </data> <data name="On.Content" xml:space="preserve"> <value>On</value> </data> <data name="GeneralPage_ToggleSwitch_AlwaysRunElevated_Link.Content" xml:space="preserve"> <value>Learn more about administrator mode</value> </data> <data name="GeneralPage_ToggleSwitch_AutoDownloadUpdates.Header" xml:space="preserve"> <value>Download updates automatically</value> </data> <data name="GeneralPage_ToggleSwitch_AutoDownloadUpdates.Description" xml:space="preserve"> <value>Except on metered connections</value> </data> <data name="GeneralPage_ToggleSwitch_RunningAsAdminNote.Text" xml:space="preserve"> <value>Currently running as administrator</value> </data> <data name="GeneralSettings_AlwaysRunAsAdminText.Header" xml:space="preserve"> <value>Always run as administrator</value> </data> <data name="GeneralSettings_AlwaysRunAsAdminText.Description" xml:space="preserve"> <value>You need to run as administrator to use this setting</value> </data> <data name="GeneralSettings_RunningAsUserText" xml:space="preserve"> <value>Running as user</value> </data> <data name="GeneralSettings_RunningAsAdminText" xml:space="preserve"> <value>Running as administrator</value> </data> <data name="FancyZones.ModuleTitle" xml:space="preserve"> <value>FancyZones</value> </data> <data name="FileExplorerPreview.ModuleTitle" xml:space="preserve"> <value>File Explorer</value> </data> <data name="FileExplorerPreview_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>File Explorer</value> <comment>Use same translation as Windows does for File Explorer</comment> </data> <data name="ImageResizer.ModuleTitle" xml:space="preserve"> <value>Image Resizer</value> </data> <data name="KeyboardManager.ModuleTitle" xml:space="preserve"> <value>Keyboard Manager</value> </data> <data name="ColorPicker.ModuleTitle" xml:space="preserve"> <value>Color Picker</value> </data> <data name="PowerLauncher.ModuleTitle" xml:space="preserve"> <value>PowerToys Run</value> </data> <data name="PowerToys_Run_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>PowerToys Run</value> </data> <data name="PowerRename.ModuleTitle" xml:space="preserve"> <value>PowerRename</value> <comment>do not loc the product name</comment> </data> <data name="PowerRename_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>PowerRename</value> <comment>do not loc</comment> </data> <data name="ShortcutGuide.ModuleTitle" xml:space="preserve"> <value>Shortcut Guide</value> </data> <data name="Shortcut_Guide_Image.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Shortcut Guide</value> </data> <data name="General_Repository.Text" xml:space="preserve"> <value>GitHub repository</value> </data> <data name="General_Version.Header" xml:space="preserve"> <value>Version</value> </data> <data name="General_VersionLastChecked.Text" xml:space="preserve"> <value>Last checked: </value> </data> <data name="General_SettingsBackupInfo_DateHeader.Text" xml:space="preserve"> <value>Created at:</value> </data> <data name="General_SettingsBackupAndRestoreStatusInfo.Header" xml:space="preserve"> <value>Backup information</value> </data> <data name="General_SettingsBackupInfo_SourceHeader.Text" xml:space="preserve"> <value>Source machine:</value> </data> <data name="General_SettingsBackupInfo_StatusHeader.Text" xml:space="preserve"> <value>Status:</value> </data> <data name="General_Version.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Version</value> </data> <data name="Admin_mode.Header" xml:space="preserve"> <value>Administrator mode</value> </data> <data name="FancyZones_RestoreSize.Content" xml:space="preserve"> <value>Restore the original size of windows when unsnapping</value> </data> <data name="ImageResizer_FallBackEncoderText.Header" xml:space="preserve"> <value>Fallback encoder</value> </data> <data name="ImageResizer_FileFormatDescription.Text" xml:space="preserve"> <value>The following parameters can be used:</value> </data> <data name="ImageResizer_FilenameFormatHeader.Header" xml:space="preserve"> <value>Filename format</value> </data> <data name="ImageResizer_FileModifiedDate.Header" xml:space="preserve"> <value>File modified timestamp</value> </data> <data name="ImageResizer_FileModifiedDate.Description" xml:space="preserve"> <value>Used as the 'modified timestamp' in the file properties</value> </data> <data name="ImageResizer_UseOriginalDate.Content" xml:space="preserve"> <value>Original file timestamp</value> </data> <data name="ImageResizer_UseResizeDate.Content" xml:space="preserve"> <value>Timestamp of resize action</value> </data> <data name="Encoding.Header" xml:space="preserve"> <value>Encoding</value> </data> <data name="KeyboardManager_RemapKeyboardButton.Description" xml:space="preserve"> <value>Remap keys to other keys or shortcuts</value> </data> <data name="KeyboardManager_RemapShortcutsButton.Description" xml:space="preserve"> <value>Remap shortcuts to other shortcuts or keys for all or specific applications</value> </data> <data name="General.ModuleDescription" xml:space="preserve"> <value>Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. Made with 💗 by Microsoft and the PowerToys community.</value> <comment>Windows refers to the OS</comment> </data> <data name="FancyZones_SpanZonesAcrossMonitors.Header" xml:space="preserve"> <value>Allow zones to span across monitors</value> </data> <data name="ImageResizer_Formatting_ActualHeight.Text" xml:space="preserve"> <value>Actual height</value> </data> <data name="ImageResizer_Formatting_ActualWidth.Text" xml:space="preserve"> <value>Actual width</value> </data> <data name="ImageResizer_Formatting_Filename.Text" xml:space="preserve"> <value>Original filename</value> </data> <data name="ImageResizer_Formatting_SelectedHeight.Text" xml:space="preserve"> <value>Selected height</value> </data> <data name="ImageResizer_Formatting_SelectedWidth.Text" xml:space="preserve"> <value>Selected width</value> </data> <data name="ImageResizer_Formatting_Sizename.Text" xml:space="preserve"> <value>Size name</value> </data> <data name="FancyZones_MoveWindowsBasedOnPositionCheckBoxControl.Content" xml:space="preserve"> <value>Move windows based on their position</value> <comment>Windows refers to application windows</comment> </data> <data name="GeneralSettings_NewVersionIsAvailable" xml:space="preserve"> <value>New update available</value> </data> <data name="GeneralSettings_VersionIsLatest" xml:space="preserve"> <value>PowerToys is up to date.</value> </data> <data name="FileExplorerPreview_IconThumbnail_GroupSettings.Header" xml:space="preserve"> <value>Thumbnail icon Preview</value> </data> <data name="FileExplorerPreview_IconThumbnail_GroupSettings.Description" xml:space="preserve"> <value>Select the file types for which thumbnail previews must be rendered.</value> </data> <data name="FileExplorerPreview_PreviewPane.Header" xml:space="preserve"> <value>Preview Pane</value> </data> <data name="FileExplorerPreview_PreviewPane.Description" xml:space="preserve"> <value>Select the file types which must be rendered in the Preview Pane. Ensure that Preview Pane is open by toggling the view with Alt + P in File Explorer.</value> <comment>Preview Pane and File Explorer are app/feature names in Windows. 'Alt + P' is a shortcut</comment> </data> <data name="FileExplorerPreview_RunAsAdminRequired.Title" xml:space="preserve"> <value>You need to run as administrator to modify these settings.</value> </data> <data name="FileExplorerPreview_RebootRequired.Title" xml:space="preserve"> <value>A reboot may be required for changes to these settings to take effect</value> </data> <data name="FileExplorerPreview_PreviewHandlerOutlookIncompatibility.Title" xml:space="preserve"> <value>Enabling the preview handlers will override other preview handlers already installed - there have been reports of incompatibility between Outlook and the PDF Preview Handler.</value> <comment>Outlook is the name of a Microsoft product</comment> </data> <data name="FileExplorerPreview_ThumbnailsMightNotAppearOnRemoteFolders.Title" xml:space="preserve"> <value>Thumbnails might not appear on paths managed by cloud storage solutions like OneDrive, since these solutions may get their thumbnails from the cloud instead of generating them locally.</value> <comment>OneDrive is the name of a Microsoft product</comment> </data> <data name="FancyZones_ExcludeApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> <comment>Don't translate outlook.exe</comment> </data> <data name="ImageResizer_FilenameFormatPlaceholder.PlaceholderText" xml:space="preserve"> <value>Example: %1 (%2)</value> </data> <data name="ImageResizer_FilenameParameters.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Filename parameters</value> </data> <data name="Radio_Theme_Dark.Content" xml:space="preserve"> <value>Dark</value> <comment>Dark refers to color, not weight</comment> </data> <data name="Radio_Theme_Light.Content" xml:space="preserve"> <value>Light</value> <comment>Light refers to color, not weight</comment> </data> <data name="Radio_Theme_Default.Content" xml:space="preserve"> <value>Windows default</value> <comment>Windows refers to the Operating system</comment> </data> <data name="Windows_Color_Settings.Content" xml:space="preserve"> <value>Windows color settings</value> <comment>Windows refers to the Operating system</comment> </data> <data name="ColorPicker_CopiedColorRepresentation.Header" xml:space="preserve"> <value>Default color format</value> </data> <data name="ColorPickerFirst.Content" xml:space="preserve"> <value>Pick a color and open editor</value> </data> <data name="EditorFirst.Content" xml:space="preserve"> <value>Open editor</value> </data> <data name="ColorPickerOnly.Content" xml:space="preserve"> <value>Only pick a color</value> </data> <data name="ColorPicker_ActivationAction.Header" xml:space="preserve"> <value>Activation behavior</value> </data> <data name="ColorFormats.Header" xml:space="preserve"> <value>Picker behavior</value> </data> <data name="ColorPicker_CopiedColorRepresentation.Description" xml:space="preserve"> <value>This format will be copied to your clipboard</value> </data> <data name="KBM_KeysCannotBeRemapped.Text" xml:space="preserve"> <value>Learn more about remapping limitations</value> <comment>This is a link that will discuss what is and is not possible for Keyboard manager to remap</comment> </data> <data name="FancyZones_Editor_GroupSettings.Header" xml:space="preserve"> <value>Editor</value> <comment>refers to the FancyZone editor</comment> </data> <data name="FancyZones_WindowBehavior_GroupSettings.Header" xml:space="preserve"> <value>Window behavior</value> </data> <data name="FancyZones_WindowBehavior_GroupSettings.Description" xml:space="preserve"> <value>Manage how windows behave when using FancyZones</value> </data> <data name="FancyZones_Windows.Header" xml:space="preserve"> <value>Windows</value> <comment>Do translate: refers to a set of application windows, not the product name</comment> </data> <data name="PowerRename_BehaviorHeader.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="PowerRename_Toggle_UseBoostLib.Header" xml:space="preserve"> <value>Use Boost library</value> <comment>Boost is a product name, should not be translated</comment> </data> <data name="PowerRename_Toggle_UseBoostLib.Description" xml:space="preserve"> <value>Provides extended features but may use different regex syntax</value> <comment>Boost is a product name, should not be translated</comment> </data> <data name="MadeWithOssLove.Text" xml:space="preserve"> <value>Made with 💗 by Microsoft and the PowerToys community.</value> </data> <data name="ColorPicker_ColorFormats.Header" xml:space="preserve"> <value>Color formats</value> </data> <data name="ColorPicker_ColorFormats.Description" xml:space="preserve"> <value>Configure the color formats (edit, delete, hide, reorder them)</value> </data> <data name="MoveUp.Text" xml:space="preserve"> <value>Move up</value> </data> <data name="MoveDown.Text" xml:space="preserve"> <value>Move down</value> </data> <data name="ColorPickerAddNewFormat.Content" xml:space="preserve"> <value>Add new format</value> </data> <data name="NewColorFormat.Header" xml:space="preserve"> <value>Format</value> </data> <data name="NewColorName.Header" xml:space="preserve"> <value>Name</value> </data> <data name="AddCustomColorFormat" xml:space="preserve"> <value>Add custom color format</value> </data> <data name="ColorFormatSave" xml:space="preserve"> <value>Save</value> </data> <data name="EditCustomColorFormat" xml:space="preserve"> <value>Edit custom color format</value> </data> <data name="ColorFormatUpdate" xml:space="preserve"> <value>Update</value> </data> <data name="CustomColorFormatDefaultName" xml:space="preserve"> <value>My Format</value> </data> <data name="ColorFormatDialog.SecondaryButtonText" xml:space="preserve"> <value>Cancel</value> </data> <data name="ColorFormatEditorHelpline1.Text" xml:space="preserve"> <value>The following parameters can be used:</value> </data> <data name="Help_red" xml:space="preserve"> <value>red</value> </data> <data name="Help_green" xml:space="preserve"> <value>green</value> </data> <data name="Help_blue" xml:space="preserve"> <value>blue</value> </data> <data name="Help_alpha" xml:space="preserve"> <value>alpha</value> </data> <data name="Help_cyan" xml:space="preserve"> <value>cyan</value> </data> <data name="Help_magenta" xml:space="preserve"> <value>magenta</value> </data> <data name="Help_yellow" xml:space="preserve"> <value>yellow</value> </data> <data name="Help_black_key" xml:space="preserve"> <value>black key</value> </data> <data name="Help_hue" xml:space="preserve"> <value>hue</value> </data> <data name="Help_hueNat" xml:space="preserve"> <value>hue (natural)</value> </data> <data name="Help_saturationI" xml:space="preserve"> <value>saturation (HSI)</value> </data> <data name="Help_saturationL" xml:space="preserve"> <value>saturation (HSL)</value> </data> <data name="Help_saturationB" xml:space="preserve"> <value>saturation (HSB)</value> </data> <data name="Help_brightness" xml:space="preserve"> <value>brightness</value> </data> <data name="Help_intensity" xml:space="preserve"> <value>intensity</value> </data> <data name="Help_lightnessNat" xml:space="preserve"> <value>lightness (nat)</value> </data> <data name="Help_lightnessCIE" xml:space="preserve"> <value>lightness (CIE)</value> </data> <data name="Help_value" xml:space="preserve"> <value>value</value> </data> <data name="Help_whiteness" xml:space="preserve"> <value>whiteness</value> </data> <data name="Help_blackness" xml:space="preserve"> <value>blackness</value> </data> <data name="Help_chromaticityA" xml:space="preserve"> <value>chromaticityA</value> </data> <data name="Help_chromaticityB" xml:space="preserve"> <value>chromaticityB</value> </data> <data name="Help_X_value" xml:space="preserve"> <value>X value</value> </data> <data name="Help_Y_value" xml:space="preserve"> <value>Y value</value> </data> <data name="Help_Z_value" xml:space="preserve"> <value>Z value</value> </data> <data name="Help_decimal_value_RGB" xml:space="preserve"> <value>decimal value (RGB)</value> </data> <data name="Help_decimal_value_BGR" xml:space="preserve"> <value>decimal value (BGR)</value> </data> <data name="Help_color_name" xml:space="preserve"> <value>color name</value> </data> <data name="ColorFormatEditorHelpline2.Text" xml:space="preserve"> <value>The red, green, blue and alpha values can be formatted to the following formats:</value> </data> <data name="Help_byte" xml:space="preserve"> <value>byte value (default)</value> </data> <data name="Help_hexL1" xml:space="preserve"> <value>hex lowercase one digit</value> </data> <data name="Help_hexU1" xml:space="preserve"> <value>hex uppercase one digit</value> </data> <data name="Help_hexL2" xml:space="preserve"> <value>hex lowercase two digits</value> </data> <data name="Help_hexU2" xml:space="preserve"> <value>hex uppercase two digits</value> </data> <data name="Help_floatWith" xml:space="preserve"> <value>float with leading zero</value> </data> <data name="Help_floatWithout" xml:space="preserve"> <value>float without leading zero</value> </data> <data name="ColorFormatEditorHelpline3.Text" xml:space="preserve"> <value>Example: %ReX means red value in hex uppercase two digits format.</value> </data> <data name="ColorPicker_ShowColorName.Header" xml:space="preserve"> <value>Show color name</value> </data> <data name="ColorPicker_ShowColorName.Description" xml:space="preserve"> <value>This will show the name of the color when picking a color</value> </data> <data name="ImageResizer_DefaultSize_Large" xml:space="preserve"> <value>Large</value> <comment>The size of the image</comment> </data> <data name="ImageResizer_DefaultSize_Medium" xml:space="preserve"> <value>Medium</value> <comment>The size of the image</comment> </data> <data name="ImageResizer_DefaultSize_Phone" xml:space="preserve"> <value>Phone</value> <comment>The size of the image referring to a Mobile Phone typical image size</comment> </data> <data name="ImageResizer_DefaultSize_Small" xml:space="preserve"> <value>Small</value> <comment>The size of the image</comment> </data> <data name="FancyZones_MoveWindowBasedOnRelativePosition_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Windows key + Up, down, left or right arrow key to move windows based on relative position</value> </data> <data name="FancyZones_MoveWindowLeftRightBasedOnZoneIndex_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Windows key + Left or right arrow keys to move windows based on zone index</value> </data> <data name="FancyZones_MoveWindowBasedOnRelativePosition_Description.Text" xml:space="preserve"> <value>Windows key +    or </value> <comment>Do not loc the icons (hex numbers)</comment> </data> <data name="FancyZones_MoveWindowLeftRightBasedOnZoneIndex_Description.Text" xml:space="preserve"> <value>Windows key +  or </value> <comment>Do not loc the icons (hex numbers)</comment> </data> <data name="FancyZones_MoveWindowBasedOnRelativePosition.Text" xml:space="preserve"> <value>Relative position</value> </data> <data name="FancyZones_MoveWindow.Header" xml:space="preserve"> <value>Move windows based on</value> </data> <data name="FancyZones_MoveWindowLeftRightBasedOnZoneIndex.Text" xml:space="preserve"> <value>Zone index</value> </data> <data name="ColorPicker_Editor.Header" xml:space="preserve"> <value>Color formats</value> </data> <data name="FancyZones_OverlappingZonesClosestCenter.Content" xml:space="preserve"> <value>Activate the zone whose center is closest to the cursor</value> </data> <data name="FancyZones_OverlappingZonesLargest.Content" xml:space="preserve"> <value>Activate the largest zone by area</value> </data> <data name="FancyZones_OverlappingZonesPositional.Content" xml:space="preserve"> <value>Split the overlapped area into multiple activation targets</value> </data> <data name="FancyZones_OverlappingZonesSmallest.Content" xml:space="preserve"> <value>Activate the smallest zone by area</value> </data> <data name="FancyZones_OverlappingZones.Header" xml:space="preserve"> <value>When multiple zones overlap</value> </data> <data name="PowerLauncher_Plugins.Header" xml:space="preserve"> <value>Plugins</value> </data> <data name="PowerLauncher_ActionKeyword.Header" xml:space="preserve"> <value>Direct activation command</value> </data> <data name="PowerLauncher_AuthoredBy.Text" xml:space="preserve"> <value>Authored by</value> <comment>example: Authored by Microsoft</comment> </data> <data name="PowerLauncher_IncludeInGlobalResultTitle.Text" xml:space="preserve"> <value>Include in global result</value> </data> <data name="PowerLauncher_IncludeInGlobalResultDescription.Text" xml:space="preserve"> <value>Show results on queries without direct activation command</value> </data> <data name="PowerLauncher_EnablePluginToggle.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Enable plugin</value> </data> <data name="PowerLauncher_EnablePluginToggle.OnContent" xml:space="preserve"> <value>On</value> </data> <data name="PowerLauncher_EnablePluginToggle.OffContent" xml:space="preserve"> <value>Off</value> </data> <data name="Run_AdditionalOptions.Text" xml:space="preserve"> <value>Additional options</value> </data> <data name="Run_NotAccessibleWarning.Title" xml:space="preserve"> <value>Please define an activation command or allow this plugin to be used in the global results.</value> </data> <data name="Run_AllPluginsDisabled.Title" xml:space="preserve"> <value>PowerToys Run can't provide any results without plugins</value> </data> <data name="Run_AllPluginsDisabled.Message" xml:space="preserve"> <value>Enable at least one plugin to get started</value> </data> <data name="Run_PluginUse.Header" xml:space="preserve"> <value>Plugins</value> </data> <data name="Run_PluginUseDescription.Text" xml:space="preserve"> <value>Include or remove plugins from the global results, change the direct activation phrase and configure additional options</value> </data> <data name="Run_PositionAppearance_GroupSettings.Header" xml:space="preserve"> <value>Position &amp; appearance</value> </data> <data name="Run_PositionHeader.Header" xml:space="preserve"> <value>Preferred monitor position</value> <comment>as in Show PowerToys Run on primary monitor</comment> </data> <data name="Run_PositionHeader.Description" xml:space="preserve"> <value>If multiple monitors are in use, PowerToys Run can be launched on the desired monitor</value> <comment>as in Show PowerToys Run on primary monitor</comment> </data> <data name="Run_Radio_Position_Cursor.Content" xml:space="preserve"> <value>Monitor with mouse cursor</value> </data> <data name="Run_Radio_Position_Focus.Content" xml:space="preserve"> <value>Monitor with focused window</value> </data> <data name="Run_Radio_Position_Primary_Monitor.Content" xml:space="preserve"> <value>Primary monitor</value> </data> <data name="Run_PluginsLoading.Text" xml:space="preserve"> <value>Plugins are loading...</value> </data> <data name="ColorPicker_ButtonDown.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Move the color down</value> </data> <data name="ColorPicker_ButtonUp.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Move the color up</value> </data> <data name="FancyZones_FlashZonesOnQuickSwitch.Content" xml:space="preserve"> <value>Flash zones when switching layout</value> </data> <data name="FancyZones_Layouts.Header" xml:space="preserve"> <value>Layouts</value> </data> <data name="FancyZones_QuickLayoutSwitch.Header" xml:space="preserve"> <value>Enable quick layout switch</value> </data> <data name="FancyZones_QuickLayoutSwitch.Description" xml:space="preserve"> <value>Layout-specific shortcuts can be configured in the editor</value> </data> <data name="FancyZones_QuickLayoutSwitch_GroupSettings.Text" xml:space="preserve"> <value>Quick layout switch</value> </data> <data name="Activation_Shortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="Activation_Shortcut.Description" xml:space="preserve"> <value>Customize the shortcut to activate this module</value> </data> <data name="Oobe_GetStarted.Text" xml:space="preserve"> <value>Let's get started!</value> </data> <data name="Oobe_PowerToysDescription.Text" xml:space="preserve"> <value>Welcome to PowerToys! These overviews will help you quickly learn the basics of all our utilities.</value> </data> <data name="Oobe_GettingStarted.Text" xml:space="preserve"> <value>Getting started</value> </data> <data name="Oobe_Launch.Text" xml:space="preserve"> <value>Launch</value> </data> <data name="Launch_ColorPicker.Content" xml:space="preserve"> <value>Launch Color Picker</value> </data> <data name="Oobe_LearnMore.Text" xml:space="preserve"> <value>Learn more about</value> </data> <data name="Oobe_ColorPicker.Description" xml:space="preserve"> <value>Color Picker is a system-wide color selection tool for Windows that enables you to pick colors from any currently running application and automatically copies it in a configurable format to your clipboard.</value> </data> <data name="Oobe_FancyZones.Description" xml:space="preserve"> <value>FancyZones is a window manager that makes it easy to create complex window layouts and quickly position windows into those layouts.</value> </data> <data name="Oobe_FileLocksmith.Description" xml:space="preserve"> <value>File Locksmith lists which processes are using the selected files or directories and allows closing those processes.</value> </data> <data name="Oobe_FileExplorer.Description" xml:space="preserve"> <value>PowerToys introduces add-ons to the Windows File Explorer that will enable files like Markdown (.md), PDF (.pdf), SVG (.svg), STL (.stl), G-code (.gcode) and developer files to be viewed in the preview pane. It introduces File Explorer thumbnail support for a number of these file types as well.</value> </data> <data name="Oobe_ImageResizer.Description" xml:space="preserve"> <value>Image Resizer is a Windows shell extension for simple bulk image-resizing.</value> </data> <data name="Oobe_KBM.Description" xml:space="preserve"> <value>Keyboard Manager allows you to customize the keyboard to be more productive by remapping keys and creating your own keyboard shortcuts.</value> </data> <data name="Oobe_MouseWithoutBorders.Description" xml:space="preserve"> <value>Mouse Without Borders enables using the mouse pointer, keyboard, clipboard and drag and drop between machines in the same local network.</value> </data> <data name="Oobe_PowerRename.Description" xml:space="preserve"> <value>PowerRename enables you to perform simple bulk renaming, searching and replacing file names.</value> </data> <data name="Oobe_Run.Description" xml:space="preserve"> <value>PowerToys Run is a quick launcher for power users that contains some additional features without sacrificing performance.</value> </data> <data name="Oobe_MeasureTool.Description" xml:space="preserve"> <value>Screen Ruler is a quick and easy way to measure pixels on your screen.</value> </data> <data name="Oobe_ShortcutGuide.Description" xml:space="preserve"> <value>Shortcut Guide presents the user with a listing of available shortcuts for the current state of the desktop.</value> </data> <data name="Oobe_VideoConference.Description" xml:space="preserve"> <value>Video Conference Mute allows users to quickly mute the microphone and turn off the camera while on a conference call with a single keystroke, regardless of what application has focus on your computer.</value> </data> <data name="Oobe_MouseUtils.Description" xml:space="preserve"> <value>A collection of utilities to enhance your mouse.</value> <comment>Mouse as in the hardware peripheral</comment> </data> <data name="Oobe_Overview.Description" xml:space="preserve"> <value>Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. Take a moment to preview the various utilities listed or view our comprehensive documentation.</value> </data> <data name="Oobe_Overview_DescriptionLinkText.Text" xml:space="preserve"> <value>Documentation on Microsoft Docs</value> </data> <data name="ReleaseNotes.Content" xml:space="preserve"> <value>Release notes</value> </data> <data name="Oobe_ColorPicker_HowToUse.Text" xml:space="preserve"> <value>to open Color Picker.</value> </data> <data name="Oobe_ColorPicker_TipsAndTricks.Text" xml:space="preserve"> <value>To select a color with more precision, **scroll the mouse wheel** to zoom in.</value> </data> <data name="Oobe_FancyZones_HowToUse.Text" xml:space="preserve"> <value>**Shift** + **drag the window** to snap a window to a zone, and release the window in the desired zone.</value> </data> <data name="Oobe_FancyZones_HowToUse_Shortcut.Text" xml:space="preserve"> <value>to open the FancyZones editor.</value> </data> <data name="Oobe_FancyZones_TipsAndTricks.Text" xml:space="preserve"> <value>Snap a window to multiple zones by holding the **Ctrl** key (while also holding **Shift**) when dragging a window.</value> </data> <data name="Oobe_FileLocksmith_HowToUse.Text" xml:space="preserve"> <value>In File Explorer, right-click one or more selected files and select **What's using this file?** from the context menu.</value> </data> <data name="Oobe_FileLocksmith_TipsAndTricks.Text" xml:space="preserve"> <value>Press the **Restart Elevated** button from the File Locksmith UI to also get information on elevated processes that might be using the files.</value> </data> <data name="Oobe_FileExplorer_HowToEnable.Text" xml:space="preserve"> <value>Select **View** which is located at the top of File Explorer, followed by **Show**, and then **Preview pane**. From there, simply click on one of the supported files in the File Explorer and observe the content on the preview pane!</value> </data> <data name="Oobe_HowToCreateMappings.Text" xml:space="preserve"> <value>How to create mappings</value> </data> <data name="Oobe_HowToEnable.Text" xml:space="preserve"> <value>How to enable</value> </data> <data name="Oobe_HowToLaunch.Text" xml:space="preserve"> <value>How to launch</value> </data> <data name="Oobe_HowToUse.Text" xml:space="preserve"> <value>How to use</value> </data> <data name="Oobe_ImageResizer_HowToLaunch.Text" xml:space="preserve"> <value>In File Explorer, right-click one or more image files and select **Resize pictures** from the context menu.</value> </data> <data name="Oobe_ImageResizer_TipsAndTricks.Text" xml:space="preserve"> <value>Want a custom size? You can add them in the PowerToys Settings!</value> </data> <data name="Oobe_KBM_HowToCreateMappings.Text" xml:space="preserve"> <value>Launch **PowerToys Settings**, navigate to the Keyboard Manager menu, and select either **Remap a key** or **Remap a shortcut**.</value> </data> <data name="Oobe_KBM_TipsAndTricks.Text" xml:space="preserve"> <value>Want to only have a shortcut work for a single application? Use the Target App field when creating the shortcut remapping.</value> </data> <data name="Oobe_MouseWithoutBorders_HowToUse.Text" xml:space="preserve"> <value>Use the Settings screen on each machine to connect to the other machines using the same key. If a connection is not working, it may be necessary to add an exception to the Windows Firewall.</value> </data> <data name="Oobe_MouseWithoutBorders_TipsAndTricks.Text" xml:space="preserve"> <value>Use the service option in Settings to install a service enabling Mouse Without Borders to function even in the lock screen.</value> </data> <data name="Oobe_PowerRename_HowToUse.Text" xml:space="preserve"> <value>In File Explorer, right-click one or more selected files and select **PowerRename** from the context menu.</value> </data> <data name="Oobe_PowerRename_TipsAndTricks.Text" xml:space="preserve"> <value>PowerRename supports searching for files using regular expressions to enable more advanced renaming functionalities.</value> </data> <data name="Oobe_Run_HowToLaunch.Text" xml:space="preserve"> <value>to open Run and just start typing.</value> </data> <data name="Oobe_Run_TipsAndTricks.Text" xml:space="preserve"> <value>PowerToys Run supports various action keys to funnel search queries for a specific subset of results. Typing `&lt;` searches for running processes only, `?` will search only for file, or `.` for installed applications! See PowerToys documentation for the complete set of 'Action Keys' available.</value> </data> <data name="Oobe_ShortcutGuide_HowToLaunch.Text" xml:space="preserve"> <value>to open Shortcut Guide, press it again to close or press **Esc**.</value> </data> <data name="Oobe_TipsAndTricks.Text" xml:space="preserve"> <value>Tips &amp; tricks</value> </data> <data name="Oobe_VideoConference_ToggleMicVid.Text" xml:space="preserve"> <value>to toggle both your microphone and video</value> </data> <data name="Oobe_VideoConference_ToggleMic.Text" xml:space="preserve"> <value>to toggle your microphone</value> </data> <data name="Oobe_VideoConference_PushToTalkMic.Text" xml:space="preserve"> <value>to toggle your microphone until key release</value> </data> <data name="Oobe_VideoConference_ToggleVid.Text" xml:space="preserve"> <value>to toggle your video</value> </data> <data name="Oobe_MeasureTool_Activation.Text" xml:space="preserve"> <value>to bring up the Screen Ruler command bar.</value> </data> <data name="Oobe_MeasureTool_HowToLaunch.Text" xml:space="preserve"> <value>The Bounds mode lets you select a specific area to measure. You can also shift-drag an area to persist in on screen. The various Spacing modes allows tracing similar pixels along horizontal and vertical axes with a customizable pixel tolerance threshold (use settings or mouse wheel to adjust it).</value> </data> <data name="Oobe_MeasureTool.Title" xml:space="preserve"> <value>Screen Ruler</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_ColorPicker.Title" xml:space="preserve"> <value>Color Picker</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_FancyZones.Title" xml:space="preserve"> <value>FancyZones</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_FileLocksmith.Title" xml:space="preserve"> <value>File Locksmith</value> </data> <data name="Oobe_ImageResizer.Title" xml:space="preserve"> <value>Image Resizer</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_KBM.Title" xml:space="preserve"> <value>Keyboard Manager</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_MouseWithoutBorders.Title" xml:space="preserve"> <value>Mouse Without Borders</value> <comment>Product name. Do not localize this string</comment> </data> <data name="Oobe_PowerRename.Title" xml:space="preserve"> <value>PowerRename</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_Run.Title" xml:space="preserve"> <value>PowerToys Run</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_ShortcutGuide.Title" xml:space="preserve"> <value>Shortcut Guide</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_VideoConference.Title" xml:space="preserve"> <value>Video Conference Mute</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_Overview.Title" xml:space="preserve"> <value>Welcome</value> </data> <data name="Oobe_WhatsNew.Text" xml:space="preserve"> <value>What's new</value> </data> <data name="Oobe_WhatsNew_LoadingError.Title" xml:space="preserve"> <value>Couldn't load the release notes.</value> </data> <data name="Oobe_WhatsNew_LoadingError.Message" xml:space="preserve"> <value>Please check your internet connection.</value> </data> <data name="Oobe_WhatsNew_ProxyAuthenticationWarning.Title" xml:space="preserve"> <value>Couldn't load the release notes.</value> </data> <data name="Oobe_WhatsNew_ProxyAuthenticationWarning.Message" xml:space="preserve"> <value>Your proxy server requires authentication.</value> </data> <data name="Oobe_WhatsNew_DetailedReleaseNotesLink.Text" xml:space="preserve"> <value>See more detailed release notes on GitHub</value> <comment>Don't loc "GitHub", it's the name of a product</comment> </data> <data name="OOBE_Settings.Content" xml:space="preserve"> <value>Open Settings</value> </data> <data name="Oobe_NavViewItem.Content" xml:space="preserve"> <value>Welcome to PowerToys</value> <comment>Don't loc "PowerToys"</comment> </data> <data name="Feedback_NavViewItem.Content" xml:space="preserve"> <value>Give feedback</value> </data> <data name="OobeWindow_Title" xml:space="preserve"> <value>Welcome to PowerToys</value> </data> <data name="OobeWindow_TitleTxt.Text" xml:space="preserve"> <value>Welcome to PowerToys</value> </data> <data name="SettingsWindow_Title" xml:space="preserve"> <value>PowerToys Settings</value> <comment>Title of the settings window when running as user</comment> </data> <data name="Awake.ModuleTitle" xml:space="preserve"> <value>Awake</value> </data> <data name="Awake.ModuleDescription" xml:space="preserve"> <value>A convenient way to keep your PC awake on-demand.</value> </data> <data name="Awake_EnableSettingsCard.Header" xml:space="preserve"> <value>Enable Awake</value> <comment>Awake is a product name, do not loc</comment> </data> <data name="Awake_NoKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep using the selected power plan</value> </data> <data name="Awake_IndefiniteKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep awake indefinitely</value> </data> <data name="Awake_TemporaryKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep awake for a time interval</value> </data> <data name="Awake_ExpirableKeepAwakeSelector.Content" xml:space="preserve"> <value>Keep awake until expiration</value> </data> <data name="Awake_DisplaySettingsCard.Header" xml:space="preserve"> <value>Keep screen on</value> </data> <data name="Awake_DisplaySettingsCard.Description" xml:space="preserve"> <value>This setting is only available when keeping the PC awake</value> </data> <data name="Awake_ExpirationSettingsExpander.Description" xml:space="preserve"> <value>Keep custom awake state until a specific date and time</value> </data> <data name="Awake_ModeSettingsCard.Header" xml:space="preserve"> <value>Mode</value> </data> <data name="Awake_BehaviorSettingsGroup.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="Awake_IntervalHoursInput.Header" xml:space="preserve"> <value>Hours</value> </data> <data name="Awake_IntervalMinutesInput.Header" xml:space="preserve"> <value>Minutes</value> </data> <data name="Awake_ExpirationSettingsExpander_Date.Header" xml:space="preserve"> <value>End date</value> </data> <data name="Awake_ExpirationSettingsExpander_Time.Header" xml:space="preserve"> <value>End time</value> </data> <data name="Oobe_Awake.Title" xml:space="preserve"> <value>Awake</value> <comment>Module name, do not loc</comment> </data> <data name="Oobe_Awake.Description" xml:space="preserve"> <value>Awake is a Windows tool designed to keep your PC awake on-demand without having to manage its power settings. This behavior can be helpful when running time-consuming tasks while ensuring that your PC does not go to sleep or turn off its screens.</value> </data> <data name="Oobe_Awake_HowToUse.Text" xml:space="preserve"> <value>Open **PowerToys Settings** and enable Awake</value> </data> <data name="Oobe_Awake_TipsAndTricks.Text" xml:space="preserve"> <value>You can always change modes quickly by **right-clicking the Awake icon** in the system tray.</value> </data> <data name="General_FailedToDownloadTheNewVersion.Title" xml:space="preserve"> <value>An error occurred trying to install this update:</value> </data> <data name="General_InstallNow.Content" xml:space="preserve"> <value>Install now</value> </data> <data name="General_ReadMore.Text" xml:space="preserve"> <value>Read more</value> </data> <data name="General_NewVersionAvailable.Title" xml:space="preserve"> <value>An update is available:</value> </data> <data name="General_Downloading.Text" xml:space="preserve"> <value>Downloading...</value> </data> <data name="General_TryAgainToDownloadAndInstall.Content" xml:space="preserve"> <value>Try again to download and install</value> </data> <data name="General_CheckingForUpdates.Text" xml:space="preserve"> <value>Checking for updates...</value> </data> <data name="General_NewVersionReadyToInstall.Title" xml:space="preserve"> <value>An update is ready to install:</value> </data> <data name="General_UpToDate.Title" xml:space="preserve"> <value>PowerToys is up to date</value> </data> <data name="General_CantCheck.Title" xml:space="preserve"> <value>Network error. Please try again later</value> </data> <data name="General_DownloadAndInstall.Content" xml:space="preserve"> <value>Download &amp; install</value> </data> <data name="ImageResizer_Fit_Fill_ThirdPersonSingular" xml:space="preserve"> <value>Fills</value> </data> <data name="ImageResizer_Fit_Fit_ThirdPersonSingular" xml:space="preserve"> <value>Fits within</value> </data> <data name="ImageResizer_Fit_Stretch_ThirdPersonSingular" xml:space="preserve"> <value>Stretches to</value> </data> <data name="ImageResizer_Unit_Centimeter" xml:space="preserve"> <value>Centimeters</value> </data> <data name="ImageResizer_Unit_Inch" xml:space="preserve"> <value>Inches</value> </data> <data name="ImageResizer_Unit_Percent" xml:space="preserve"> <value>Percent</value> </data> <data name="ImageResizer_Unit_Pixel" xml:space="preserve"> <value>Pixels</value> </data> <data name="EditButton.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Edit</value> </data> <data name="ImageResizer_EditSize.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Edit size</value> </data> <data name="No" xml:space="preserve"> <value>No</value> <comment>Label of a cancel button</comment> </data> <data name="Delete_Dialog_Description" xml:space="preserve"> <value>Are you sure you want to delete this item?</value> </data> <data name="Yes" xml:space="preserve"> <value>Yes</value> <comment>Label of a confirmation button</comment> </data> <data name="SeeWhatsNew.Content" xml:space="preserve"> <value>See what's new</value> </data> <data name="Awake_ModeSettingsCard.Description" xml:space="preserve"> <value>Manage the state of your device when Awake is active</value> </data> <data name="ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="Enable_ColorFormat.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Enable colorformat</value> </data> <data name="More_Options_Button.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>More options</value> </data> <data name="More_Options_ButtonTooltip.Text" xml:space="preserve"> <value>More options</value> </data> <data name="To.Text" xml:space="preserve"> <value>to</value> <comment>as in: from x to y</comment> </data> <data name="LearnMore_Awake.Text" xml:space="preserve"> <value>Learn more about Awake</value> <comment>Awake is a product name, do not loc</comment> </data> <data name="LearnMore_ColorPicker.Text" xml:space="preserve"> <value>Learn more about Color Picker</value> <comment>Color Picker is a product name, do not loc</comment> </data> <data name="LearnMore_FancyZones.Text" xml:space="preserve"> <value>Learn more about FancyZones</value> <comment>FancyZones is a product name, do not loc</comment> </data> <data name="LearnMore_FileLocksmith.Text" xml:space="preserve"> <value>Learn more about File Locksmith</value> </data> <data name="LearnMore_ImageResizer.Text" xml:space="preserve"> <value>Learn more about Image Resizer</value> <comment>Image Resizer is a product name, do not loc</comment> </data> <data name="LearnMore_KBM.Text" xml:space="preserve"> <value>Learn more about Keyboard Manager</value> <comment>Keyboard Manager is a product name, do not loc</comment> </data> <data name="LearnMore_MouseUtils.Text" xml:space="preserve"> <value>Learn more about Mouse utilities</value> <comment>Mouse utilities is a product name, do not loc</comment> </data> <data name="LearnMore_PastePlain.Text" xml:space="preserve"> <value>Learn more about Paste as Plain Text</value> <comment> Paste as Plain Text is the name of the module. </comment> </data> <data name="LearnMore_MouseWithoutBorders.Text" xml:space="preserve"> <value>Learn more about Mouse Without Borders</value> <comment>Mouse Without Borders is the name of the module. </comment> </data> <data name="LearnMore_PowerPreview.Text" xml:space="preserve"> <value>Learn more about File Explorer add-ons</value> <comment>File Explorer is a product name, localize as Windows does</comment> </data> <data name="LearnMore_Peek.Text" xml:space="preserve"> <value>Learn more about Peek</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="LearnMore_PowerRename.Text" xml:space="preserve"> <value>Learn more about PowerRename</value> <comment>PowerRename is a product name, do not loc</comment> </data> <data name="LearnMore_Run.Text" xml:space="preserve"> <value>Learn more about PowerToys Run</value> <comment>PowerToys Run is a product name, do not loc</comment> </data> <data name="LearnMore_MeasureTool.Text" xml:space="preserve"> <value>Learn more about Screen Ruler</value> <comment>Screen Ruler is a product name, do not loc</comment> </data> <data name="LearnMore_ShortcutGuide.Text" xml:space="preserve"> <value>Learn more about Shortcut Guide</value> <comment>Shortcut Guide is a product name, do not loc</comment> </data> <data name="LearnMore_VCM.Text" xml:space="preserve"> <value>Learn more about Video Conference Mute</value> <comment>Video Conference Mute is a product name, do not loc</comment> </data> <data name="Oobe_FileExplorer.Title" xml:space="preserve"> <value>File Explorer add-ons</value> <comment>Do not localize this string</comment> </data> <data name="Oobe_MouseUtils.Title" xml:space="preserve"> <value>Mouse utilities</value> <comment>Mouse as in the hardware peripheral</comment> </data> <data name="Oobe_MouseUtils_FindMyMouse.Text" xml:space="preserve"> <value>Find My Mouse</value> <comment>Mouse as in the hardware peripheral</comment> </data> <data name="Oobe_MouseUtils_FindMyMouse_Description.Text" xml:space="preserve"> <value>Focus the mouse pointer pressing the Ctrl key twice, using a custom shortcut or shaking the mouse.</value> <comment>Mouse as in the hardware peripheral. Key as in a keyboard key</comment> </data> <data name="Oobe_MouseUtils_MouseHighlighter.Text" xml:space="preserve"> <value>Mouse Highlighter</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MouseHighlighter_Description.Text" xml:space="preserve"> <value>Use a keyboard shortcut to highlight left and right mouse clicks.</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MousePointerCrosshairs.Text" xml:space="preserve"> <value>Mouse Pointer Crosshairs</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MousePointerCrosshairs_Description.Text" xml:space="preserve"> <value>Draw crosshairs centered around the mouse pointer.</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MouseJump.Text" xml:space="preserve"> <value>Mouse Jump</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Oobe_MouseUtils_MouseJump_Description.Text" xml:space="preserve"> <value>Jump the mouse pointer quickly to anywhere on your desktop.</value> <comment>Mouse as in the hardware peripheral.</comment> </data> <data name="Launch_Run.Content" xml:space="preserve"> <value>Launch PowerToys Run</value> </data> <data name="Launch_ShortcutGuide.Content" xml:space="preserve"> <value>Launch Shortcut Guide</value> </data> <data name="ColorPicker_ColorFormat_ToggleSwitch.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Show format in editor</value> </data> <data name="GeneralPage_Documentation.Text" xml:space="preserve"> <value>Documentation</value> </data> <data name="PowerLauncher_SearchList.PlaceholderText" xml:space="preserve"> <value>Search this list</value> </data> <data name="PowerLauncher_SearchList.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Search this list</value> </data> <data name="Awake.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="ColorPicker.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="General.SecondaryLinksHeader" xml:space="preserve"> <value>Related information</value> </data> <data name="ImageResizer.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="MouseUtils.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="PowerLauncher.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="PowerRename.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="EditTooltip.Text" xml:space="preserve"> <value>Edit</value> </data> <data name="RemoveTooltip.Text" xml:space="preserve"> <value>Remove</value> </data> <data name="Activation_Shortcut_Cancel" xml:space="preserve"> <value>Cancel</value> </data> <data name="Activation_Shortcut_Description" xml:space="preserve"> <value>Press a combination of keys to change this shortcut</value> </data> <data name="Activation_Shortcut_With_Disable_Description" xml:space="preserve"> <value>Press a combination of keys to change this shortcut. Right-click to remove the key combination, thereby deactivating the shortcut.</value> </data> <data name="Activation_Shortcut_Reset" xml:space="preserve"> <value>Reset</value> </data> <data name="Activation_Shortcut_Save" xml:space="preserve"> <value>Save</value> </data> <data name="Activation_Shortcut_Title" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="InvalidShortcut.Title" xml:space="preserve"> <value>Invalid shortcut</value> </data> <data name="InvalidShortcutWarningLabel.Text" xml:space="preserve"> <value>Only shortcuts that start with **Windows key**, **Ctrl**, **Alt** or **Shift** are valid.</value> <comment>The ** sequences are used for text formatting of the key names. Don't remove them on translation.</comment> </data> <data name="FancyZones_SpanZonesAcrossMonitors.Description" xml:space="preserve"> <value>All monitors must have the same DPI scaling and will be treated as one large combined rectangle which contains all monitors</value> </data> <data name="ImageResizer_DefaultSize_NewSizePrefix" xml:space="preserve"> <value>New size</value> <comment>First part of the default name of new sizes that can be added in PT's settings ui.</comment> </data> <data name="Awake_IntervalSettingsCard.Header" xml:space="preserve"> <value>Interval before returning to the previous awakeness state</value> </data> <data name="Awake_ExpirationSettingsExpander.Header" xml:space="preserve"> <value>End date and time</value> </data> <data name="MouseUtils.ModuleTitle" xml:space="preserve"> <value>Mouse utilities</value> </data> <data name="MouseUtils.ModuleDescription" xml:space="preserve"> <value>A collection of mouse utilities.</value> </data> <data name="MouseUtils_FindMyMouse.Header" xml:space="preserve"> <value>Find My Mouse</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_FindMyMouse.Description" xml:space="preserve"> <value>Find My Mouse highlights the position of the cursor when pressing the Ctrl key twice, using a custom shortcut or when shaking the mouse.</value> <comment>"Ctrl" is a keyboard key. "Find My Mouse" is the name of the utility</comment> </data> <data name="MouseUtils_Enable_FindMyMouse.Header" xml:space="preserve"> <value>Enable Find My Mouse</value> <comment>"Find My Mouse" is the name of the utility.</comment> </data> <data name="MouseUtils_FindMyMouse_ActivationMethod.Header" xml:space="preserve"> <value>Activation method</value> </data> <data name="MouseUtils_FindMyMouse_ActivationDoubleControlPress.Content" xml:space="preserve"> <value>Press Left Control twice</value> <comment>Left control is the physical key on the keyboard.</comment> </data> <data name="MouseUtils_FindMyMouse_ActivationShakeMouse.Content" xml:space="preserve"> <value>Shake mouse</value> <comment>Mouse is the hardware peripheral.</comment> </data> <data name="MouseUtils_FindMyMouse_ExcludedApps.Description" xml:space="preserve"> <value>Prevents module activation when an excluded application is the foreground application</value> </data> <data name="MouseUtils_FindMyMouse_ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="MouseUtils_FindMyMouse_ExcludedApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> </data> <data name="MouseUtils_Prevent_Activation_On_Game_Mode.Content" xml:space="preserve"> <value>Do not activate when Game Mode is on</value> <comment>"Game mode" is the Windows feature to prevent notification when playing a game.</comment> </data> <data name="MouseUtils_FindMyMouse_BackgroundColor.Header" xml:space="preserve"> <value>Background color</value> </data> <data name="MouseUtils_FindMyMouse_SpotlightColor.Header" xml:space="preserve"> <value>Spotlight color</value> </data> <data name="MouseUtils_FindMyMouse_OverlayOpacity.Header" xml:space="preserve"> <value>Overlay opacity (%)</value> </data> <data name="MouseUtils_FindMyMouse_SpotlightRadius.Header" xml:space="preserve"> <value>Spotlight radius (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_FindMyMouse_SpotlightInitialZoom.Header" xml:space="preserve"> <value>Spotlight initial zoom</value> </data> <data name="MouseUtils_FindMyMouse_SpotlightInitialZoom.Description" xml:space="preserve"> <value>Spotlight zoom factor at animation start</value> </data> <data name="MouseUtils_FindMyMouse_AnimationDurationMs.Header" xml:space="preserve"> <value>Animation duration (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_FindMyMouse_AnimationDurationMs.Description" xml:space="preserve"> <value>Time before the spotlight appears (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_FindMyMouse_AnimationDurationMs_Disabled.Message" xml:space="preserve"> <value>Animations are disabled by OS. See Settings &gt; Accessibility &gt; Visual effects</value> </data> <data name="MouseUtils_FindMyMouse_ShakingMinimumDistance.Header" xml:space="preserve"> <value>Shake minimum distance</value> </data> <data name="MouseUtils_FindMyMouse_ShakingMinimumDistance.Description" xml:space="preserve"> <value>The minimum distance for mouse shaking activation, for adjusting sensitivity</value> </data> <data name="MouseUtils_MouseHighlighter.Header" xml:space="preserve"> <value>Mouse Highlighter</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_MouseHighlighter.Description" xml:space="preserve"> <value>Mouse Highlighter mode will highlight mouse clicks.</value> <comment>"Mouse Highlighter" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_Enable_MouseHighlighter.Header" xml:space="preserve"> <value>Enable Mouse Highlighter</value> <comment>"Find My Mouse" is the name of the utility.</comment> </data> <data name="MouseUtils_MouseHighlighter_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MouseUtils_MouseHighlighter_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to turn on or off this mode</value> <comment>"Mouse Highlighter" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_MouseHighlighter_PrimaryButtonClickColor.Header" xml:space="preserve"> <value>Primary button highlight color</value> </data> <data name="MouseUtils_MouseHighlighter_SecondaryButtonClickColor.Header" xml:space="preserve"> <value>Secondary button highlight color</value> </data> <data name="MouseUtils_MouseHighlighter_HighlightRadius.Header" xml:space="preserve"> <value>Radius (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDelayMs.Header" xml:space="preserve"> <value>Fade delay (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDelayMs.Description" xml:space="preserve"> <value>Time before the highlight begins to fade (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDurationMs.Header" xml:space="preserve"> <value>Fade duration (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MouseHighlighter_FadeDurationMs.Description" xml:space="preserve"> <value>Duration of the disappear animation (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="MouseUtils_MousePointerCrosshairs.Header" xml:space="preserve"> <value>Mouse Pointer Crosshairs</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_MousePointerCrosshairs.Description" xml:space="preserve"> <value>Mouse Pointer Crosshairs draws crosshairs centered on the mouse pointer.</value> <comment>"Mouse Pointer Crosshairs" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_Enable_MousePointerCrosshairs.Header" xml:space="preserve"> <value>Enable Mouse Pointer Crosshairs</value> <comment>"Mouse Pointer Crosshairs" is the name of the utility.</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MouseUtils_MousePointerCrosshairs_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to show/hide the crosshairs</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsColor.Header" xml:space="preserve"> <value>Crosshairs color</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsOpacity.Header" xml:space="preserve"> <value>Crosshairs opacity (%)</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsRadius.Header" xml:space="preserve"> <value>Crosshairs center radius (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsThickness.Header" xml:space="preserve"> <value>Crosshairs thickness (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsBorderColor.Header" xml:space="preserve"> <value>Crosshairs border color</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsBorderSize.Header" xml:space="preserve"> <value>Crosshairs border size (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MousePointerCrosshairs_IsCrosshairsFixedLengthEnabled.Header" xml:space="preserve"> <value>Fix crosshairs length</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsFixedLength.Header" xml:space="preserve"> <value>Crosshairs fixed length (px)</value> <comment>px = pixels</comment> </data> <data name="FancyZones_Radio_Custom_Colors.Content" xml:space="preserve"> <value>Custom colors</value> </data> <data name="FancyZones_Radio_Default_Theme.Content" xml:space="preserve"> <value>Windows default</value> </data> <data name="ColorModeHeader.Header" xml:space="preserve"> <value>App theme</value> </data> <data name="FancyZones_Zone_Appearance.Description" xml:space="preserve"> <value>Customize the way zones look</value> </data> <data name="FancyZones_Zone_Appearance.Header" xml:space="preserve"> <value>Zone appearance</value> </data> <data name="VideoConference_DeprecationWarning.Title" xml:space="preserve"> <value>VCM is moving into legacy mode (maintenance only).</value> </data> <data name="VideoConference_DeprecationWarningButton.Content" xml:space="preserve"> <value>Learn more</value> </data> <data name="LearnMore.Content" xml:space="preserve"> <value>Learn more</value> </data> <data name="VideoConference_RunAsAdminRequired.Title" xml:space="preserve"> <value>You need to run as administrator to modify these settings.</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_GCODE.Header" xml:space="preserve"> <value>Geometric Code</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Thumbnail_GCODE.Description" xml:space="preserve"> <value>Only .gcode files with embedded thumbnails are supported</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_GCODE.Header" xml:space="preserve"> <value>Geometric Code</value> <comment>File type, do not translate</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Preview_GCODE.Description" xml:space="preserve"> <value>Only .gcode files with embedded thumbnails are supported</value> </data> <data name="FancyZones_NumberColor.Header" xml:space="preserve"> <value>Number color</value> </data> <data name="FancyZones_ShowZoneNumberCheckBoxControl.Content" xml:space="preserve"> <value>Show zone number</value> </data> <data name="ToggleSwitch.OffContent" xml:space="preserve"> <value>Off</value> <comment>The state of a ToggleSwitch when it's off</comment> </data> <data name="ToggleSwitch.OnContent" xml:space="preserve"> <value>On</value> <comment>The state of a ToggleSwitch when it's on</comment> </data> <data name="CropAndLock.ModuleDescription" xml:space="preserve"> <value>Crop And Lock allows you to crop a current application into a smaller window or just create a thumbnail. Focus the target window and press the shortcut to start cropping.</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="CropAndLock.ModuleTitle" xml:space="preserve"> <value>Crop And Lock </value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="CropAndLock_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="CropAndLock_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="Shell_CropAndLock.Content" xml:space="preserve"> <value>Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="LearnMore_CropAndLock.Text" xml:space="preserve"> <value>Learn more about Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="CropAndLock_ReparentActivation_Shortcut.Header" xml:space="preserve"> <value>Reparent shortcut</value> </data> <data name="CropAndLock_ReparentActivation_Shortcut.Description" xml:space="preserve"> <value>Shortcut to crop an application's window into a cropped window. This is experimental and can cause issues with some applications, since the cropped window will contain the original application window.</value> </data> <data name="CropAndLock_ThumbnailActivation_Shortcut.Header" xml:space="preserve"> <value>Thumbnail shortcut</value> </data> <data name="CropAndLock_ThumbnailActivation_Shortcut.Description" xml:space="preserve"> <value>Shortcut to crop and create a thumbnail of another window. The application isn't controllable through the thumbnail but it'll have less compatibility issues. </value> </data> <data name="CropAndLock.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="Oobe_CropAndLock.Title" xml:space="preserve"> <value>Crop And Lock</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="Oobe_CropAndLock.Description" xml:space="preserve"> <value>Crop And Lock allows you to crop a current application into a smaller window or just create a thumbnail. Focus the target window and press the shortcut to start cropping.</value> <comment>"Crop And Lock" is the name of the utility</comment> </data> <data name="Oobe_CropAndLock_HowToUse_Thumbnail.Text" xml:space="preserve"> <value>to crop and create a thumbnail of another window. The application isn't controllable through the thumbnail but it'll have less compatibility issues.</value> </data> <data name="Oobe_CropAndLock_HowToUse_Reparent.Text" xml:space="preserve"> <value>to crop an application's window into a cropped window. This is experimental and can cause issues with some applications, since the cropped window will contain the original application window.</value> </data> <data name="AlwaysOnTop.ModuleDescription" xml:space="preserve"> <value>Always On Top is a quick and easy way to pin windows on top.</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop.ModuleTitle" xml:space="preserve"> <value>Always On Top </value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="Peek_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="AlwaysOnTop_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_ExcludedApps.Description" xml:space="preserve"> <value>Excludes an application from pinning on top</value> </data> <data name="AlwaysOnTop_ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="AlwaysOnTop_ExcludedApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: outlook.exe</value> </data> <data name="AlwaysOnTop_FrameColor.Header" xml:space="preserve"> <value>Color</value> </data> <data name="AlwaysOnTop_FrameEnabled.Header" xml:space="preserve"> <value>Show a border around the pinned window</value> </data> <data name="AlwaysOnTop_FrameThickness.Header" xml:space="preserve"> <value>Thickness (px)</value> <comment>px = pixels</comment> </data> <data name="AlwaysOnTop_Behavior_GroupSettings.Header" xml:space="preserve"> <value>Appearance &amp; behavior</value> </data> <data name="Shell_AlwaysOnTop.Content" xml:space="preserve"> <value>Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_GameMode.Content" xml:space="preserve"> <value>Do not activate when Game Mode is on</value> <comment>Game Mode is a Windows feature</comment> </data> <data name="AlwaysOnTop_SoundTitle.Header" xml:space="preserve"> <value>Sound</value> </data> <data name="AlwaysOnTop_Sound.Content" xml:space="preserve"> <value>Play a sound when pinning a window</value> </data> <data name="AlwaysOnTop_Behavior.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="LearnMore_AlwaysOnTop.Text" xml:space="preserve"> <value>Learn more about Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="AlwaysOnTop_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="AlwaysOnTop_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to pin or unpin an app window</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="Oobe_AlwaysOnTop.Title" xml:space="preserve"> <value>Always On Top</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="Oobe_AlwaysOnTop.Description" xml:space="preserve"> <value>Always On Top improves your multitasking workflow by pinning an application window so it's always in front - even when focus changes to another window after that.</value> <comment>"Always On Top" is the name of the utility</comment> </data> <data name="Oobe_AlwaysOnTop_HowToUse.Text" xml:space="preserve"> <value>to pin or unpin the selected window so it's always on top of all other windows.</value> </data> <data name="Oobe_AlwaysOnTop_TipsAndTricks.Text" xml:space="preserve"> <value>You can tweak the visual outline of the pinned windows in PowerToys settings.</value> </data> <data name="AlwaysOnTop_FrameColor_Mode.Header" xml:space="preserve"> <value>Color mode</value> </data> <data name="AlwaysOnTop_Radio_Custom_Color.Content" xml:space="preserve"> <value>Custom color</value> </data> <data name="AlwaysOnTop_Radio_Windows_Default.Content" xml:space="preserve"> <value>Windows default</value> </data> <data name="FileExplorerPreview.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> <comment>giving credit to the projects this utility was based on</comment> </data> <data name="FileExplorerPreview_ToggleSwitch_Monaco_Wrap_Text.Content" xml:space="preserve"> <value>Wrap text</value> <comment>Feature on or off</comment> </data> <data name="FancyZones_AllowPopupWindowSnap.Description" xml:space="preserve"> <value>This setting can affect all popup windows including notifications</value> </data> <data name="FancyZones_AllowPopupWindowSnap.Header" xml:space="preserve"> <value>Allow popup windows snapping</value> </data> <data name="FancyZones_AllowChildWindowSnap.Content" xml:space="preserve"> <value>Allow child windows snapping</value> </data> <data name="Shell_WhatsNew.Content" xml:space="preserve"> <value>What's new</value> </data> <data name="Shell_Peek.Content" xml:space="preserve"> <value>Peek</value> <comment>Product name: Navigation view item name for Peek</comment> </data> <data name="Peek.ModuleTitle" xml:space="preserve"> <value>Peek</value> </data> <data name="Peek.ModuleDescription" xml:space="preserve"> <value>Peek is a quick and easy way to preview files. Select a file in File Explorer and press the shortcut to open the file preview.</value> </data> <data name="Peek_EnablePeek.Header" xml:space="preserve"> <value>Enable Peek</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="Peek_BehaviorHeader.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="Peek_AlwaysRunNotElevated.Header" xml:space="preserve"> <value>Always run not elevated, even when PowerToys is elevated</value> </data> <data name="Peek_AlwaysRunNotElevated.Description" xml:space="preserve"> <value>Tries to run Peek without elevated permissions, to fix access to network shares. You need to disable and re-enable Peek for changes to this value to take effect.</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="Peek_CloseAfterLosingFocus.Header" xml:space="preserve"> <value>Automatically close the Peek window after it loses focus</value> <comment>Peek is a product name, do not loc</comment> </data> <data name="FancyZones_DisableRoundCornersOnWindowSnap.Content" xml:space="preserve"> <value>Disable round corners when window is snapped</value> </data> <data name="PowerLauncher_SearchQueryTuningEnabled.Description" xml:space="preserve"> <value>Fine tune results ordering</value> </data> <data name="PowerLauncher_SearchQueryTuningEnabled.Header" xml:space="preserve"> <value>Results order tuning</value> </data> <data name="PowerLauncher_SearchClickedItemWeight.Description" xml:space="preserve"> <value>Use a higher number to get selected results to rise faster. The default is 5, 0 to disable.</value> </data> <data name="PowerLauncher_SearchClickedItemWeight.Header" xml:space="preserve"> <value>Selected item weight</value> </data> <data name="PowerLauncher_WaitForSlowResults.Description" xml:space="preserve"> <value>Selecting this can help preselect the top, more relevant result, but at the risk of jumpiness</value> </data> <data name="PowerLauncher_WaitForSlowResults.Header" xml:space="preserve"> <value>Wait on slower plugin results before selecting top item in results</value> </data> <data name="PowerLauncher_PluginWeightBoost.Description" xml:space="preserve"> <value>Use a higher number to have this plugin's result show higher in the global results. Default is 0.</value> </data> <data name="PowerLauncher_PluginWeightBoost.Header" xml:space="preserve"> <value>Global sort order score modifier</value> </data> <data name="AlwaysOnTop_RoundCorners.Content" xml:space="preserve"> <value>Enable round corners</value> </data> <data name="LearnMore_QuickAccent.Text" xml:space="preserve"> <value>Learn more about Quick Accent</value> <comment>Quick Accent is a product name, do not loc</comment> </data> <data name="QuickAccent_EnableQuickAccent.Header" xml:space="preserve"> <value>Enable Quick Accent</value> </data> <data name="Shell_QuickAccent.Content" xml:space="preserve"> <value>Quick Accent</value> </data> <data name="QuickAccent.ModuleDescription" xml:space="preserve"> <value>Quick Accent is an alternative way to type accented characters, useful for when a keyboard doesn't support that specific accent. Activate by holding the key for the character you want to add an accent to, then press the activation key (space, left or right arrow keys) and an overlay to select accented characters will appear!</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent.ModuleTitle" xml:space="preserve"> <value>Quick Accent</value> </data> <data name="QuickAccent.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> </data> <data name="AlwaysOnTop_ShortDescription" xml:space="preserve"> <value>Pin a window</value> </data> <data name="Awake_ShortDescription" xml:space="preserve"> <value>Keep your PC awake</value> </data> <data name="ColorPicker_ShortDescription" xml:space="preserve"> <value>Pick a color</value> </data> <data name="CropAndLock_Thumbnail" xml:space="preserve"> <value>Thumbnail</value> </data> <data name="CropAndLock_Reparent" xml:space="preserve"> <value>Reparent</value> </data> <data name="FancyZones_OpenEditor" xml:space="preserve"> <value>Open editor</value> </data> <data name="FileLocksmith_ShortDescription" xml:space="preserve"> <value>Right-click on files or directories to show running processes</value> </data> <data name="FindMyMouse_ShortDescription" xml:space="preserve"> <value>Find the mouse</value> </data> <data name="ImageResizer_ShortDescription" xml:space="preserve"> <value>Select Image Resizer in the right-click context menu</value> </data> <data name="MouseHighlighter_ShortDescription" xml:space="preserve"> <value>Highlight clicks</value> </data> <data name="MouseJump_ShortDescription" xml:space="preserve"> <value>Quickly move the mouse pointer</value> </data> <data name="MouseCrosshairs_ShortDescription" xml:space="preserve"> <value>Draw crosshairs centered on the mouse pointer</value> </data> <data name="MouseWithoutBorders_ShortDescription" xml:space="preserve"> <value>Move your cursor across multiple devices</value> </data> <data name="PastePlain_ShortDescription" xml:space="preserve"> <value>Paste clipboard content without formatting</value> </data> <data name="Peek_ShortDescription" xml:space="preserve"> <value>Quick and easy previewer</value> </data> <data name="PowerRename_ShortDescription" xml:space="preserve"> <value>Select Power Rename in right-click context menu</value> </data> <data name="Run_ShortDescription" xml:space="preserve"> <value>A quick launcher</value> </data> <data name="PowerAccent_ShortDescription" xml:space="preserve"> <value>An alternative way to type accented characters</value> </data> <data name="RegistryPreview_ShortDescription" xml:space="preserve"> <value>Visualize and edit Windows Registry files</value> </data> <data name="ScreenRuler_ShortDescription" xml:space="preserve"> <value>Measure pixels on your screen</value> </data> <data name="ShortcutGuide_ShortDescription" xml:space="preserve"> <value>Show a help overlay with Windows shortcuts</value> </data> <data name="PowerOcr_ShortDescription" xml:space="preserve"> <value>A convenient way to copy text from anywhere on screen</value> </data> <data name="Dashboard_Activation" xml:space="preserve"> <value>Activation</value> </data> <data name="DashboardKBMShowMappingsButton.Content" xml:space="preserve"> <value>Show remappings</value> </data> <data name="Oobe_QuickAccent.Description" xml:space="preserve"> <value>Quick Accent is an easy way to write letters with accents, like on a smartphone.</value> </data> <data name="Oobe_QuickAccent.Title" xml:space="preserve"> <value>Quick Accent</value> </data> <data name="Oobe_QuickAccent_HowToUse.Text" xml:space="preserve"> <value>Open **PowerToys Settings** and enable Quick Accent. While holding the key for the character you want to add an accent to, press the Activation Key and an overlay to select the accented character will appear.</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="QuickAccent_Activation_Shortcut.Header" xml:space="preserve"> <value>Activation key</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent_Activation_Shortcut.Description" xml:space="preserve"> <value>Press this key after holding down the target letter</value> <comment>key refers to a physical key on a keyboard</comment> </data> <data name="QuickAccent_Activation_Key_Arrows.Content" xml:space="preserve"> <value>Left/Right Arrow</value> <comment>Left/Right arrow keyboard keys</comment> </data> <data name="QuickAccent_Activation_Key_Space.Content" xml:space="preserve"> <value>Space</value> <comment>Space is the space keyboard key</comment> </data> <data name="QuickAccent_Activation_Key_Either.Content" xml:space="preserve"> <value>Left, Right or Space</value> <comment>All are keys on a keyboard</comment> </data> <data name="QuickAccent_Toolbar.Header" xml:space="preserve"> <value>Toolbar</value> </data> <data name="QuickAccent_ToolbarPosition.Header" xml:space="preserve"> <value>Toolbar position</value> </data> <data name="QuickAccent_ToolbarPosition_TopCenter.Content" xml:space="preserve"> <value>Top center</value> </data> <data name="QuickAccent_ToolbarPosition_TopLeftCorner.Content" xml:space="preserve"> <value>Top left corner</value> </data> <data name="QuickAccent_ToolbarPosition_TopRightCorner.Content" xml:space="preserve"> <value>Top right corner</value> </data> <data name="QuickAccent_ToolbarPosition_BottomLeftCorner.Content" xml:space="preserve"> <value>Bottom left corner</value> </data> <data name="QuickAccent_ToolbarPosition_BottomCenter.Content" xml:space="preserve"> <value>Bottom center</value> </data> <data name="QuickAccent_ToolbarPosition_BottomRightCorner.Content" xml:space="preserve"> <value>Bottom right corner</value> </data> <data name="QuickAccent_ToolbarPosition_Center.Content" xml:space="preserve"> <value>Center</value> </data> <data name="QuickAccent_ToolbarPosition_Left.Content" xml:space="preserve"> <value>Left</value> </data> <data name="QuickAccent_ToolbarPosition_Right.Content" xml:space="preserve"> <value>Right</value> </data> <data name="QuickAccent_Behavior.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="QuickAccent_InputTimeMs.Header" xml:space="preserve"> <value>Input delay (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="QuickAccent_InputTimeMs.Description" xml:space="preserve"> <value>Hold the key down for this much time to make the accent menu appear (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="QuickAccent_ExcludedApps.Description" xml:space="preserve"> <value>Prevents module activation if a foreground application is excluded. Add one application name per line.</value> </data> <data name="QuickAccent_ExcludedApps.Header" xml:space="preserve"> <value>Excluded apps</value> </data> <data name="QuickAccent_ExcludedApps_TextBoxControl.PlaceholderText" xml:space="preserve"> <value>Example: Teams.exe</value> </data> <data name="LearnMore_TextExtractor.Text" xml:space="preserve"> <value>Learn more about Text Extractor</value> </data> <data name="TextExtractor_Cancel" xml:space="preserve"> <value>cancel</value> </data> <data name="General_SettingsBackupAndRestore_NothingToBackup" xml:space="preserve"> <value>A new backup was not created because no settings have been changed since last backup.</value> </data> <data name="General_SettingsBackupAndRestore_NoBackupFound" xml:space="preserve"> <value>No backup found</value> </data> <data name="General_SettingsBackupAndRestore_FailedToParseTime" xml:space="preserve"> <value>Failed to parse time</value> </data> <data name="General_SettingsBackupAndRestore_UnknownBackupTime" xml:space="preserve"> <value>Unknown</value> </data> <data name="General_SettingsBackupAndRestore_UnknownBackupSource" xml:space="preserve"> <value>Unknown</value> </data> <data name="General_SettingsBackupAndRestore_ThisMachine" xml:space="preserve"> <value>This computer</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsMatch" xml:space="preserve"> <value>Current settings match</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsStatusAt" xml:space="preserve"> <value>at</value> <comment>E.g., Food was served 'at' noon.</comment> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsDiffer" xml:space="preserve"> <value>Current settings differ</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsNoChecked" xml:space="preserve"> <value>Checking...</value> </data> <data name="General_SettingsBackupAndRestore_CurrentSettingsUnknown" xml:space="preserve"> <value>Unknown</value> </data> <data name="General_SettingsBackupAndRestore_NeverRestored" xml:space="preserve"> <value>Never restored</value> </data> <data name="General_SettingsBackupAndRestore_NothingToRestore" xml:space="preserve"> <value>Nothing to restore.</value> </data> <data name="General_SettingsBackupAndRestore_NoSettingsFilesFound" xml:space="preserve"> <value>No settings files found.</value> </data> <data name="General_SettingsBackupAndRestore_BackupError" xml:space="preserve"> <value>There was an error. Try another backup location.</value> </data> <data name="General_SettingsBackupAndRestore_SettingsFormatError" xml:space="preserve"> <value>There was an error in the settings format. Please check the settings file:</value> </data> <data name="General_SettingsBackupAndRestore_BackupComplete" xml:space="preserve"> <value>Backup completed.</value> </data> <data name="General_SettingsBackupAndRestore_NoBackupSyncPath" xml:space="preserve"> <value>No backup location selected.</value> </data> <data name="General_SettingsBackupAndRestore_NoBackupsFound" xml:space="preserve"> <value>No backups found to restore.</value> </data> <data name="General_SettingsBackupAndRestore_InvalidBackupLocation" xml:space="preserve"> <value>Invalid backup location.</value> </data> <data name="TextExtractor.ModuleDescription" xml:space="preserve"> <value>Text Extractor is a convenient way to copy text from anywhere on screen</value> </data> <data name="TextExtractor.ModuleTitle" xml:space="preserve"> <value>Text Extractor</value> </data> <data name="TextExtractor_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Text Extractor</value> </data> <data name="TextExtractor_SupportedLanguages.Title" xml:space="preserve"> <value>Text Extractor can only recognize languages that have the OCR pack installed.</value> </data> <data name="TextExtractor_SupportedLanguages_Link.Content" xml:space="preserve"> <value>Learn more about supported languages</value> </data> <data name="Shell_TextExtractor.Content" xml:space="preserve"> <value>Text Extractor</value> </data> <data name="Launch_TextExtractor.Content" xml:space="preserve"> <value>Launch Text Extractor</value> </data> <data name="Oobe_TextExtractor.Title" xml:space="preserve"> <value>Text Extractor</value> </data> <data name="Oobe_TextExtractor_HowToUse.Text" xml:space="preserve"> <value>to open Text Extractor and then selecting a region to copy the text from.</value> </data> <data name="Oobe_TextExtractor_TipsAndTricks.Text" xml:space="preserve"> <value>Hold the shift key to move the selection region around.</value> </data> <data name="TextExtractor.SecondaryLinksHeader" xml:space="preserve"> <value>Attribution</value> </data> <data name="Oobe_TextExtractor.Description" xml:space="preserve"> <value>Text Extractor works like Snipping Tool, but copies the text out of the selected region using OCR and puts it on the clipboard.</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Monaco_Try_Format.Description" xml:space="preserve"> <value>Applies to json and xml. Files remain unchanged.</value> </data> <data name="FileExplorerPreview_ToggleSwitch_Monaco_Try_Format.Header" xml:space="preserve"> <value>Try to format the source for preview</value> </data> <data name="Run_ConflictingKeywordInfo.Title" xml:space="preserve"> <value>Some characters and phrases may conflict with global queries of other plugins if you use them as activation command.</value> </data> <data name="Run_ConflictingKeywordInfo_Link.Content" xml:space="preserve"> <value>Learn more about conflicting activation commands</value> </data> <data name="MeasureTool_ContinuousCapture_Information.Title" xml:space="preserve"> <value>The continuous capture mode will consume more resources when in use. Also, measurements will be excluded from screenshots and screen capture.</value> <comment>pointer as in mouse pointer. Resources refer to things like CPU, GPU, RAM</comment> </data> <data name="QuickAccent_Description_Indicator.Header" xml:space="preserve"> <value>Show the Unicode code and name of the currently selected character</value> </data> <data name="QuickAccent_SortByUsageFrequency_Indicator.Header" xml:space="preserve"> <value>Sort characters by usage frequency</value> </data> <data name="QuickAccent_SortByUsageFrequency_Indicator.Description" xml:space="preserve"> <value>Track characters usage frequency and sort them accordingly</value> </data> <data name="QuickAccent_StartSelectionFromTheLeft_Indicator.Header" xml:space="preserve"> <value>Start selection from the left</value> </data> <data name="QuickAccent_StartSelectionFromTheLeft_Indicator.Description" xml:space="preserve"> <value>Start selection from the leftmost character for all activation keys, including left and right arrows</value> </data> <data name="QuickAccent_DisableFullscreen.Header" xml:space="preserve"> <value>Disable when Game Mode is On</value> </data> <data name="QuickAccent_Language.Header" xml:space="preserve"> <value>Characters</value> </data> <data name="QuickAccent_SelectedLanguage.Header" xml:space="preserve"> <value>Choose a character set</value> </data> <data name="QuickAccent_SelectedLanguage.Description" xml:space="preserve"> <value>Show only accented characters common to the selected set</value> </data> <data name="QuickAccent_SelectedLanguage_All.Content" xml:space="preserve"> <value>All available</value> </data> <data name="QuickAccent_SelectedLanguage_Catalan.Content" xml:space="preserve"> <value>Catalan</value> </data> <data name="QuickAccent_SelectedLanguage_Currency.Content" xml:space="preserve"> <value>Currency</value> </data> <data name="QuickAccent_SelectedLanguage_Croatian.Content" xml:space="preserve"> <value>Croatian</value> </data> <data name="QuickAccent_SelectedLanguage_Czech.Content" xml:space="preserve"> <value>Czech</value> </data> <data name="QuickAccent_SelectedLanguage_Gaeilge.Content" xml:space="preserve"> <value>Gaeilge</value> <comment>Gaelic language spoken in Ireland</comment> </data> <data name="QuickAccent_SelectedLanguage_Gaidhlig.Content" xml:space="preserve"> <value>Gàidhlig</value> <comment>Scottish Gaelic</comment> </data> <data name="QuickAccent_SelectedLanguage_German.Content" xml:space="preserve"> <value>German</value> </data> <data name="QuickAccent_SelectedLanguage_Hebrew.Content" xml:space="preserve"> <value>Hebrew</value> </data> <data name="QuickAccent_SelectedLanguage_French.Content" xml:space="preserve"> <value>French</value> </data> <data name="QuickAccent_SelectedLanguage_Estonian.Content" xml:space="preserve"> <value>Estonian</value> </data> <data name="QuickAccent_SelectedLanguage_Lithuanian.Content" xml:space="preserve"> <value>Lithuanian</value> </data> <data name="QuickAccent_SelectedLanguage_Macedonian.Content" xml:space="preserve"> <value>Macedonian</value> </data> <data name="QuickAccent_SelectedLanguage_Maori.Content" xml:space="preserve"> <value>Maori</value> </data> <data name="QuickAccent_SelectedLanguage_Dutch.Content" xml:space="preserve"> <value>Dutch</value> </data> <data name="QuickAccent_SelectedLanguage_Norwegian.Content" xml:space="preserve"> <value>Norwegian</value> </data> <data name="QuickAccent_SelectedLanguage_Pinyin.Content" xml:space="preserve"> <value>Pinyin</value> </data> <data name="QuickAccent_SelectedLanguage_Polish.Content" xml:space="preserve"> <value>Polish</value> </data> <data name="QuickAccent_SelectedLanguage_Portuguese.Content" xml:space="preserve"> <value>Portuguese</value> </data> <data name="QuickAccent_SelectedLanguage_Slovakian.Content" xml:space="preserve"> <value>Slovakian</value> </data> <data name="QuickAccent_SelectedLanguage_Spanish.Content" xml:space="preserve"> <value>Spanish</value> </data> <data name="QuickAccent_SelectedLanguage_Swedish.Content" xml:space="preserve"> <value>Swedish</value> </data> <data name="QuickAccent_SelectedLanguage_Turkish.Content" xml:space="preserve"> <value>Turkish</value> </data> <data name="QuickAccent_SelectedLanguage_Icelandic.Content" xml:space="preserve"> <value>Icelandic</value> </data> <data name="QuickAccent_SelectedLanguage_Romanian.Content" xml:space="preserve"> <value>Romanian</value> </data> <data name="QuickAccent_SelectedLanguage_Serbian.Content" xml:space="preserve"> <value>Serbian</value> </data> <data name="QuickAccent_SelectedLanguage_Hungarian.Content" xml:space="preserve"> <value>Hungarian</value> </data> <data name="QuickAccent_SelectedLanguage_Italian.Content" xml:space="preserve"> <value>Italian</value> </data> <data name="QuickAccent_SelectedLanguage_Kurdish.Content" xml:space="preserve"> <value>Kurdish</value> </data> <data name="QuickAccent_SelectedLanguage_Welsh.Content" xml:space="preserve"> <value>Welsh</value> </data> <data name="Hosts.ModuleDescription" xml:space="preserve"> <value>Quick and simple utility for managing hosts file.</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Hosts.ModuleTitle" xml:space="preserve"> <value>Hosts File Editor</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Shell_Hosts.Content" xml:space="preserve"> <value>Hosts File Editor</value> <comment>Products name: Navigation view item name for Hosts File Editor</comment> </data> <data name="Hosts_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Hosts_Toggle_ShowStartupWarning.Header" xml:space="preserve"> <value>Show a warning at startup</value> </data> <data name="Hosts_Activation_GroupSettings.Header" xml:space="preserve"> <value>Activation</value> </data> <data name="Hosts_LaunchButtonControl.Description" xml:space="preserve"> <value>Manage your hosts file</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Hosts_LaunchButtonControl.Header" xml:space="preserve"> <value>Launch Host File Editor</value> <comment>"Host File Editor" is a product name</comment> </data> <data name="Hosts_LaunchButton_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Launch Host File Editor</value> <comment>"Host File Editor" is a product name</comment> </data> <data name="Hosts_AdditionalLinesPosition.Header" xml:space="preserve"> <value>Position of additional content</value> </data> <data name="Hosts_AdditionalLinesPosition_Bottom.Content" xml:space="preserve"> <value>Bottom</value> </data> <data name="Hosts_AdditionalLinesPosition_Top.Content" xml:space="preserve"> <value>Top</value> </data> <data name="Hosts_Behavior_GroupSettings.Header" xml:space="preserve"> <value>Behavior</value> </data> <data name="Launch_Hosts.Content" xml:space="preserve"> <value>Launch Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="LearnMore_Hosts.Text" xml:space="preserve"> <value>Learn more about Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Oobe_Hosts.Description" xml:space="preserve"> <value>Hosts File Editor is a quick and simple utility for managing hosts file.</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Oobe_Hosts.Title" xml:space="preserve"> <value>Hosts File Editor</value> <comment>"Hosts File Editor" is the name of the utility</comment> </data> <data name="Hosts_Toggle_LaunchAdministrator.Description" xml:space="preserve"> <value>Needs to be launched as administrator in order to make changes to the hosts file</value> </data> <data name="Hosts_Toggle_LaunchAdministrator.Header" xml:space="preserve"> <value>Launch as administrator</value> </data> <data name="ShortcutGuide_PressTimeForTaskbarIconShortcuts.Header" xml:space="preserve"> <value>Press duration before showing taskbar icon shortcuts (ms)</value> <comment>ms = milliseconds</comment> </data> <data name="FileLocksmith.ModuleDescription" xml:space="preserve"> <value>A Windows shell extension to find out which processes are using the selected files and directories.</value> </data> <data name="FileLocksmith.ModuleTitle" xml:space="preserve"> <value>File Locksmith</value> </data> <data name="Shell_FileLocksmith.Content" xml:space="preserve"> <value>File Locksmith</value> <comment>Product name: Navigation view item name for FileLocksmith</comment> </data> <data name="FileLocksmith_Enable_FileLocksmith.Header" xml:space="preserve"> <value>Enable File Locksmith</value> <comment>File Locksmith is the name of the utility</comment> </data> <data name="FileLocksmith_Toggle_StandardContextMenu.Content" xml:space="preserve"> <value>Default and extended context menu</value> </data> <data name="FileLocksmith_Toggle_ExtendedContextMenu.Content" xml:space="preserve"> <value>Extended context menu only</value> </data> <data name="FileLocksmith_Toggle_ContextMenu.Header" xml:space="preserve"> <value>Show File Locksmith in</value> </data> <data name="FileLocksmith_ShellIntegration.Header" xml:space="preserve"> <value>Shell integration</value> <comment>This refers to directly integrating in with Windows</comment> </data> <data name="GPO_IsSettingForced.Title" xml:space="preserve"> <value>This setting is enforced by your System Administrator.</value> </data> <data name="Hosts_AdditionalLinesPosition.Description" xml:space="preserve"> <value>Additional content includes the file header and lines that can't parse</value> </data> <data name="TextExtractor_Languages.Header" xml:space="preserve"> <value>Preferred language</value> </data> <data name="Alternate_OOBE_AlwaysOnTop_Description.Text" xml:space="preserve"> <value>Pin a window so that:</value> </data> <data name="Alternate_OOBE_AlwaysOnTop_Title.Text" xml:space="preserve"> <value>Always On Top</value> </data> <data name="Alternate_OOBE_ColorPicker_Description.Text" xml:space="preserve"> <value>To pick a color:</value> </data> <data name="Alternate_OOBE_ColorPicker_Title.Text" xml:space="preserve"> <value>Color Picker</value> </data> <data name="Alternate_OOBE_Description.Text" xml:space="preserve"> <value>Here are a few shortcuts to get you started:</value> </data> <data name="Alternate_OOBE_FancyZones_Description.Text" xml:space="preserve"> <value>To open the FancyZones editor, press:</value> </data> <data name="Alternate_OOBE_FancyZones_Title.Text" xml:space="preserve"> <value>FancyZones</value> </data> <data name="Alternate_OOBE_Run_Description.Text" xml:space="preserve"> <value>Get access to your files and more:</value> </data> <data name="Alternate_OOBE_Run_Title.Text" xml:space="preserve"> <value>PowerToys Run</value> </data> <data name="General_Experimentation.Header" xml:space="preserve"> <value>Experimentation</value> </data> <data name="GeneralPage_EnableExperimentation.Description" xml:space="preserve"> <value>Note: Only Windows Insider builds may be selected for experimentation</value> </data> <data name="GeneralPage_EnableExperimentation.Header" xml:space="preserve"> <value>Allow experimentation with new features</value> </data> <data name="GPO_ExperimentationIsDisallowed.Title" xml:space="preserve"> <value>The system administrator has disabled experimentation.</value> </data> <data name="Shell_PastePlain.Content" xml:space="preserve"> <value>Paste As Plain Text</value> <comment>Product name: Navigation view item name for Paste as Plain Text</comment> </data> <data name="PastePlain.ModuleDescription" xml:space="preserve"> <value>Paste As Plain Text is a quick shortcut for pasting the text contents of your clipboard without formatting. Note: the formatted text in the clipboard is replaced with the unformatted text.</value> </data> <data name="PastePlain.ModuleTitle" xml:space="preserve"> <value>Paste As Plain Text</value> </data> <data name="PastePlain_Cancel" xml:space="preserve"> <value>cancel</value> </data> <data name="PastePlain_EnableToggleControl_HeaderText.Header" xml:space="preserve"> <value>Enable Paste As Plain Text</value> </data> <data name="Oobe_PastePlain.Description" xml:space="preserve"> <value>Paste As Plain Text strips rich formatting from your clipboard data and pastes it as non-formatted text.</value> </data> <data name="Oobe_PastePlain.Title" xml:space="preserve"> <value>Paste As Plain Text</value> </data> <data name="Oobe_PastePlain_HowToUse.Text" xml:space="preserve"> <value>to paste your clipboard data as plain text. Note: this will replace the formatted text in your clipboard with the plain text.</value> </data> <data name="AllAppsTxt.Text" xml:space="preserve"> <value>All apps</value> </data> <data name="BackBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Back</value> </data> <data name="BackLabel.Text" xml:space="preserve"> <value>Back</value> </data> <data name="BugReportBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Bug report</value> </data> <data name="BugReportTooltip.Text" xml:space="preserve"> <value>Bug report</value> </data> <data name="DocsBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Documentation</value> </data> <data name="DocsTooltip.Text" xml:space="preserve"> <value>Documentation</value> </data> <data name="FZEditorString" xml:space="preserve"> <value>FancyZones Editor</value> <comment>Do not localize this string</comment> </data> <data name="MoreBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>More</value> </data> <data name="MoreLabel.Text" xml:space="preserve"> <value>More</value> </data> <data name="SettingsBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Settings</value> </data> <data name="SettingsTooltip.Text" xml:space="preserve"> <value>Settings</value> </data> <data name="ShortcutsTxt.Text" xml:space="preserve"> <value>Shortcuts</value> </data> <data name="UpdateAvailable.Title" xml:space="preserve"> <value>Update available</value> </data> <data name="FileExplorerPreview_Toggle_Monaco_Max_File_Size.Header" xml:space="preserve"> <value>Maximum file size to preview</value> <comment>Size refers to the disk space used by a file</comment> </data> <data name="FileExplorerPreview_Toggle_Monaco_Max_File_Size.Description" xml:space="preserve"> <value>The maximum size, in kilobytes, for files to be displayed. This is a safety mechanism to prevent loading large files into RAM.</value> <comment>"RAM" refers to random access memory; "size" refers to disk space; "bytes" refer to the measurement unit</comment> </data> <data name="RegistryPreview.ModuleDescription" xml:space="preserve"> <value>A quick little utility to visualize and edit complex Windows Registry files.</value> </data> <data name="RegistryPreview.ModuleTitle" xml:space="preserve"> <value>Registry Preview</value> </data> <data name="Shell_RegistryPreview.Content" xml:space="preserve"> <value>Registry Preview</value> <comment>Product name: Navigation view item name for Registry Preview</comment> </data> <data name="RegistryPreview_Enable_RegistryPreview.Header" xml:space="preserve"> <value>Enable Registry Preview</value> <comment>Registry Preview is the name of the utility</comment> </data> <data name="Oobe_RegistryPreview_HowToUse.Text" xml:space="preserve"> <value>In File Explorer, right-click a .REG file and select **Preview** from the context menu.</value> </data> <data name="Oobe_RegistryPreview_TipsAndTricks.Text" xml:space="preserve"> <value>You can preview or edit Registry files in File Explorer or by opening the app from the PowerToys launcher.</value> </data> <data name="Oobe_RegistryPreview.Description" xml:space="preserve"> <value>Registry Preview is a quick little utility to visualize and edit complex Windows Registry files.</value> </data> <data name="Oobe_RegistryPreview.Title" xml:space="preserve"> <value>Registry Preview</value> <comment>Do not localize this string</comment> </data> <data name="LearnMore_RegistryPreview.Text" xml:space="preserve"> <value>Learn more about Registry Preview</value> <comment>Registry Preview is a product name, do not loc</comment> </data> <data name="Launch_RegistryPreview.Content" xml:space="preserve"> <value>Launch Registry Preview</value> <comment>"Registry Preview" is the name of the utility</comment> </data> <data name="MouseUtils_MouseJump.Description" xml:space="preserve"> <value>Quickly move the mouse pointer long distances.</value> <comment>"Mouse Jump" is the name of the utility. Mouse is the hardware mouse.</comment> </data> <data name="MouseUtils_MouseJump.Header" xml:space="preserve"> <value>Mouse Jump</value> <comment>Refers to the utility name</comment> </data> <data name="MouseUtils_MouseJump_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to turn on or off this mode</value> </data> <data name="MouseUtils_MouseJump_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="MouseUtils_Enable_MouseJump.Header" xml:space="preserve"> <value>Enable Mouse Jump</value> <comment>"Mouse Jump" is the name of the utility.</comment> </data> <data name="GPO_AutoDownloadUpdatesIsDisabled.Title" xml:space="preserve"> <value>The system administrator has disabled the automatic download of updates.</value> </data> <data name="Hosts_Toggle_LoopbackDuplicates.Description" xml:space="preserve"> <value>127.0.0.1, ::1, ...</value> <comment>"127.0.0.1 and ::1" are well known loopback addresses, do not loc</comment> </data> <data name="Hosts_Toggle_LoopbackDuplicates.Header" xml:space="preserve"> <value>Consider loopback addresses as duplicates</value> </data> <data name="RegistryPreview_Launch_GroupSettings.Header" xml:space="preserve"> <value>Launch</value> </data> <data name="RegistryPreview_LaunchButton_Accessible.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Launch Registry Preview</value> </data> <data name="RegistryPreview_LaunchButtonControl.Header" xml:space="preserve"> <value>Launch Registry Preview</value> </data> <data name="RegistryPreview_DefaultRegApp.Header" xml:space="preserve"> <value>Default app</value> </data> <data name="RegistryPreview_DefaultRegApp.Description" xml:space="preserve"> <value>Make Registry Preview default app for opening .reg files</value> <comment>Registry Preview is app name. Do not localize.</comment> </data> <data name="PastePlain_ShortcutWarning.Title" xml:space="preserve"> <value>Using this shortcut may prevent non-text paste actions (e.g. images, files) or built-in paste plain text actions in other applications from functioning.</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize.Header" xml:space="preserve"> <value>Thumbnail Size</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Description_Prefix.Text" xml:space="preserve"> <value>Constrain thumbnail image size to a maximum of</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Description_Suffix.Text" xml:space="preserve"> <value>pixels</value> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Edit_Height.Header" xml:space="preserve"> <value>Maximum height (px)</value> <comment>px = pixels</comment> </data> <data name="MouseUtils_MouseJump_ThumbnailSize_Edit_Width.Header" xml:space="preserve"> <value>Maximum width (px)</value> <comment>px = pixels</comment> </data> <data name="Oobe_Peek.Description" xml:space="preserve"> <value>A lightning fast file preview feature for Windows.</value> </data> <data name="Oobe_Peek.Title" xml:space="preserve"> <value>Peek</value> </data> <data name="Oobe_Peek_HowToUse.Text" xml:space="preserve"> <value>to preview the file that's currently selected in File Explorer.</value> </data> <data name="MWB_PCNameLabel.PlaceholderText" xml:space="preserve"> <value>Device name</value> </data> <data name="MWB_SecurityKeyLabel.PlaceholderText" xml:space="preserve"> <value>Security key</value> </data> <data name="Hosts_Encoding.Description" xml:space="preserve"> <value>Choose the encoding of the hosts file</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Hosts_Encoding.Header" xml:space="preserve"> <value>Encoding</value> </data> <data name="Hosts_Encoding_Utf8.Content" xml:space="preserve"> <value>UTF-8</value> </data> <data name="Hosts_Encoding_Utf8Bom.Content" xml:space="preserve"> <value>UTF-8 with BOM</value> </data> <data name="MouseUtils_MouseHighlighter_AlwaysColor.Header" xml:space="preserve"> <value>Always highlight color</value> </data> <data name="MouseUtils_MousePointerCrosshairs_CrosshairsAutoHide.Content" xml:space="preserve"> <value>Automatically hide crosshairs when the mouse pointer is hidden</value> </data> <data name="MouseUtils_AutoActivate.Content" xml:space="preserve"> <value>Automatically activate on utility startup</value> </data> <data name="Run_FindMorePlugins.Text" xml:space="preserve"> <value>Find more plugins</value> </data> <data name="Run_PluginUseFindMorePlugins.Content" xml:space="preserve"> <value>Find more plugins</value> </data> <data name="Run_SomePluginsAreGpoManaged.Title" xml:space="preserve"> <value>The system administrator is managing the enabled state of some plugins.</value> </data> <data name="AlwaysOnTop_FrameOpacity.Header" xml:space="preserve"> <value>Opacity (%)</value> </data> <data name="MouseUtils_FindMyMouse_ActivationCustomizedShortcut.Content" xml:space="preserve"> <value>Custom shortcut</value> </data> <data name="MouseUtils_FindMyMouse_ActivationDoubleRightControlPress.Content" xml:space="preserve"> <value>Press Right Control twice</value> <comment>Right control is the physical key on the keyboard.</comment> </data> <data name="MouseUtils_FindMyMouse_ActivationShortcut.Description" xml:space="preserve"> <value>Customize the shortcut to turn on or off this mode</value> </data> <data name="MouseUtils_FindMyMouse_ActivationShortcut.Header" xml:space="preserve"> <value>Activation shortcut</value> </data> <data name="SettingsWindow_AdminTitle" xml:space="preserve"> <value>Administrator: PowerToys Settings</value> <comment>Title of the settings window when running as administrator</comment> </data> <data name="DashboardTitle.Text" xml:space="preserve"> <value>Dashboard</value> </data> <data name="Shell_Dashboard.Content" xml:space="preserve"> <value>Dashboard</value> </data> <data name="GPO_IsSettingForcedText.Text" xml:space="preserve"> <value>This setting is enforced by your System Administrator.</value> </data> <data name="DisabledModules.Text" xml:space="preserve"> <value>Disabled modules</value> </data> <data name="EnabledModules.Text" xml:space="preserve"> <value>Enabled modules</value> </data> </root>
donlaci
8c22f0c48540793452b70d913b2a6a719c881a33
1f936df3ebce73b726ed11c9fa38fd477b4b0fbd
Select Power Rename in right-click context menu to rename files/folders? or something similar
stefansjfw
361
microsoft/PowerToys
29,014
[Build] Switch the release pipeline to use the 1ES governed template
The 1ES governed template is the YAML version of the old CDPx build pipeline -- it runs a bunch of checks before and after building the code, makes sure that artifacts only flow out through approved channels, etc., etc. One critical difference between this pipeline and the original is that we can only produce one artifact **per job**, and that that artifact must be unique across the entire build. Therefore, I've separated the x64 and arm64 artifacts into unique buckets: `setup-x64` and `setup-arm64`. Some failures are expected, and therefore have been baselined: - The WiX static library is built with C4996 disabled, which is an illegal configuration. This impacts PowerToysCustomActions. - boost x86 is built with a couple other warnings disabled, which is also an illegal configuration. The `sdl.gdnbaselines` file contains binary hash and rule pairings for each of these failures, plus about 300 more that were automatically included but not considered to be severe enough to fail the build. The build takes about 1h 15m wall time, which we can bring down by judiciously combining the signing steps for the installers. Related to #28910 (we had to enable Control Flow Guard to pass the BinSkim checks)
null
2023-10-04 15:38:30+00:00
2023-10-05 23:25:17+00:00
.pipelines/release.yml
# This build should never run as CI or against a pull request. trigger: none pr: none pool: name: SHINE-INT-L demands: ImageOverride -equals SHINE-VS17-Latest parameters: - name: buildConfigurations type: object default: - Release - name: buildPlatforms type: object default: - x64 - arm64 - name: versionNumber type: string default: '0.0.1' variables: IsPipeline: 1 # The installer uses this to detect whether it should pick up localizations SkipCppCodeAnalysis: 1 # Skip the code analysis to speed up release CI. It runs on PR CI, anyway IsExperimentationLive: 1 # The build and installer use this to turn on experimentation name: $(BuildDefinitionName)_$(date:yyMM).$(date:dd)$(rev:rrr) resources: repositories: - repository: self type: git ref: main jobs: - job: Build strategy: matrix: ${{ each config in parameters.buildConfigurations }}: ${{ each platform in parameters.buildPlatforms }}: ${{ config }}_${{ platform }}: BuildConfiguration: ${{ config }} BuildPlatform: ${{ platform }} NUGET_RESTORE_MSBUILD_ARGS: /p:Platform=${{ platform }} # Required for nuget to work due to self contained NODE_OPTIONS: --max_old_space_size=16384 displayName: Build timeoutInMinutes: 120 # Some of the loc stuff adds quite a bit of time. cancelTimeoutInMinutes: 1 steps: - checkout: self clean: true submodules: true persistCredentials: True # Sets versions for all PowerToy created DLLs - task: PowerShell@1 displayName: Set Versions.Prop inputs: scriptName: .pipelines/versionSetting.ps1 arguments: -versionNumber '${{ parameters.versionNumber }}' -DevEnvironment '' # Guardian tool needs 'Microsoft.NETCore.App', version '2.1.0' (x64) - task: UseDotNet@2 displayName: 'Use .NET Core 2.1 SDK' inputs: packageType: sdk version: '2.1.x' - task: UseDotNet@2 displayName: 'Use .NET 7 SDK' inputs: packageType: sdk version: '7.x' - task: NuGetAuthenticate@1 - task: NuGetToolInstaller@1 displayName: Use NuGet Installer latest # this will restore the following nugets: # - main solution # - Bug report tool # - Webcam report tool # - Installer # - Bootstrapper Installer - task: PowerShell@2 displayName: Download and install WiX 3.14 development build inputs: targetType: filePath filePath: '$(build.sourcesdirectory)\.pipelines\installWiX.ps1' - task: MicrosoftTDBuild.tdbuild-task.tdbuild-task.TouchdownBuildTask@1 displayName: 'Download Localization Files -- PowerToys 37400' inputs: teamId: 37400 authId: '$(TouchdownApplicationID)' authKey: '$(TouchdownApplicationKey)' resourceFilePath: | **\Resources.resx **\Resource.resx **\Resources.resw appendRelativeDir: true localizationTarget: false # pseudoSetting: Included - task: PowerShell@2 displayName: Move Loc files into correct locations inputs: targetType: inline script: >- $VerbosePreference = "Continue" ./tools/build/move-and-rename-resx.ps1 ./tools/build/move-uwp-resw.ps1 pwsh: true - task: CmdLine@2 displayName: Moving telem files inputs: script: | call nuget.exe restore -configFile .pipelines/release-nuget.config -PackagesDirectory . .pipelines/packages.config || exit /b 1 move /Y "Microsoft.PowerToys.Telemetry.2.0.0\build\include\TraceLoggingDefines.h" "src\common\Telemetry\TraceLoggingDefines.h" || exit /b 1 move /Y "Microsoft.PowerToys.Telemetry.2.0.0\build\include\TelemetryBase.cs" "src\common\Telemetry\TelemetryBase.cs" || exit /b 1 ## ALL BUT INSTALLER BUILDING - task: VSBuild@1 displayName: Build PowerToys main project inputs: solution: '**\PowerToys.sln' vsVersion: 17.0 msbuildArgs: -restore /p:RestorePackagesConfig=true /p:RestoreConfigFile="$(Build.SourcesDirectory)\.pipelines\release-nuget.config" /p:CIBuild=true /bl:$(Build.SourcesDirectory)\msbuild.binlog platform: $(BuildPlatform) configuration: $(BuildConfiguration) clean: true maximumCpuCount: true - task: VSBuild@1 displayName: Build BugReportTool inputs: solution: '**/tools/BugReportTool/BugReportTool.sln' vsVersion: 17.0 msbuildArgs: -restore /p:RestorePackagesConfig=true /p:RestoreConfigFile="$(Build.SourcesDirectory)\.pipelines\release-nuget.config" /p:CIBuild=true /bl:$(Build.SourcesDirectory)\msbuild.binlog platform: $(BuildPlatform) configuration: $(BuildConfiguration) clean: true maximumCpuCount: true - task: VSBuild@1 displayName: Build WebcamReportTool inputs: solution: '**/tools/WebcamReportTool/WebcamReportTool.sln' vsVersion: 17.0 msbuildArgs: -restore /p:RestorePackagesConfig=true /p:RestoreConfigFile="$(Build.SourcesDirectory)\.pipelines\release-nuget.config" /p:CIBuild=true /bl:$(Build.SourcesDirectory)\msbuild.binlog platform: $(BuildPlatform) configuration: $(BuildConfiguration) clean: true maximumCpuCount: true - task: VSBuild@1 displayName: Build StylesReportTool inputs: solution: '**/tools/StylesReportTool/StylesReportTool.sln' vsVersion: 17.0 msbuildArgs: -restore /p:RestorePackagesConfig=true /p:RestoreConfigFile="$(Build.SourcesDirectory)\.pipelines\release-nuget.config" /p:CIBuild=true /bl:$(Build.SourcesDirectory)\msbuild.binlog platform: $(BuildPlatform) configuration: $(BuildConfiguration) clean: true maximumCpuCount: true - task: VSBuild@1 displayName: Publish Settings for Packaging inputs: solution: 'src/settings-ui/Settings.UI/PowerToys.Settings.csproj' vsVersion: 17.0 msbuildArgs: >- /target:Publish /p:Configuration=$(BuildConfiguration);Platform=$(BuildPlatform);AppxBundle=Never /p:VCRTForwarders-IncludeDebugCRT=false /p:PowerToysRoot=$(Build.SourcesDirectory) /p:PublishProfile=InstallationPublishProfile.pubxml platform: $(BuildPlatform) configuration: $(BuildConfiguration) maximumCpuCount: true - task: VSBuild@1 displayName: Publish Launcher for Packaging inputs: solution: 'src/modules/launcher/PowerLauncher/PowerLauncher.csproj' vsVersion: 17.0 # The arguments should be the same as the ones for Settings; make sure they are. msbuildArgs: >- /target:Publish /p:Configuration=$(BuildConfiguration);Platform=$(BuildPlatform);AppxBundle=Never /p:VCRTForwarders-IncludeDebugCRT=false /p:PowerToysRoot=$(Build.SourcesDirectory) /p:PublishProfile=InstallationPublishProfile.pubxml platform: $(BuildPlatform) configuration: $(BuildConfiguration) maximumCpuCount: true - task: VSBuild@1 displayName: Publish Monaco Preview Handler for Packaging inputs: solution: 'src/modules/previewpane/MonacoPreviewHandler/MonacoPreviewHandler.csproj' vsVersion: 17.0 # The arguments should be the same as the ones for Settings; make sure they are. msbuildArgs: >- /target:Publish /p:Configuration=$(BuildConfiguration);Platform=$(BuildPlatform);AppxBundle=Never /p:VCRTForwarders-IncludeDebugCRT=false /p:PowerToysRoot=$(Build.SourcesDirectory) /p:PublishProfile=InstallationPublishProfile.pubxml platform: $(BuildPlatform) configuration: $(BuildConfiguration) maximumCpuCount: true - task: VSBuild@1 displayName: Publish Markdown Preview Handler for Packaging inputs: solution: 'src/modules/previewpane/MarkdownPreviewHandler/MarkdownPreviewHandler.csproj' vsVersion: 17.0 # The arguments should be the same as the ones for Settings; make sure they are. msbuildArgs: >- /target:Publish /p:Configuration=$(BuildConfiguration);Platform=$(BuildPlatform);AppxBundle=Never /p:VCRTForwarders-IncludeDebugCRT=false /p:PowerToysRoot=$(Build.SourcesDirectory) /p:PublishProfile=InstallationPublishProfile.pubxml platform: $(BuildPlatform) configuration: $(BuildConfiguration) maximumCpuCount: true - task: VSBuild@1 displayName: Publish Svg Preview Handler for Packaging inputs: solution: 'src/modules/previewpane/SvgPreviewHandler/SvgPreviewHandler.csproj' vsVersion: 17.0 # The arguments should be the same as the ones for Settings; make sure they are. msbuildArgs: >- /target:Publish /p:Configuration=$(BuildConfiguration);Platform=$(BuildPlatform);AppxBundle=Never /p:VCRTForwarders-IncludeDebugCRT=false /p:PowerToysRoot=$(Build.SourcesDirectory) /p:PublishProfile=InstallationPublishProfile.pubxml platform: $(BuildPlatform) configuration: $(BuildConfiguration) maximumCpuCount: true - task: VSBuild@1 displayName: Publish Svg Thumbnail Provider for Packaging inputs: solution: 'src/modules/previewpane/SvgThumbnailProvider/SvgThumbnailProvider.csproj' vsVersion: 17.0 # The arguments should be the same as the ones for Settings; make sure they are. msbuildArgs: >- /target:Publish /p:Configuration=$(BuildConfiguration);Platform=$(BuildPlatform);AppxBundle=Never /p:VCRTForwarders-IncludeDebugCRT=false /p:PowerToysRoot=$(Build.SourcesDirectory) /p:PublishProfile=InstallationPublishProfile.pubxml platform: $(BuildPlatform) configuration: $(BuildConfiguration) maximumCpuCount: true - task: VSBuild@1 displayName: Publish File Locksmith UI for Packaging inputs: solution: 'src/modules/FileLocksmith/FileLocksmithUI/FileLocksmithUI.csproj' vsVersion: 17.0 # The arguments should be the same as the ones for Settings; make sure they are. msbuildArgs: >- /target:Publish /p:Configuration=$(BuildConfiguration);Platform=$(BuildPlatform);AppxBundle=Never /p:VCRTForwarders-IncludeDebugCRT=false /p:PowerToysRoot=$(Build.SourcesDirectory) /p:PublishProfile=InstallationPublishProfile.pubxml platform: $(BuildPlatform) configuration: $(BuildConfiguration) maximumCpuCount: true # Check if deps.json files don't reference different dll versions. - task: PowerShell@2 displayName: Audit deps.json files for all applications inputs: filePath: '.pipelines/verifyDepsJsonLibraryVersions.ps1' arguments: -targetDir '$(build.sourcesdirectory)\$(BuildPlatform)\$(BuildConfiguration)' pwsh: true # Check if asset files on the main application paths are playing nice and avoiding basic conflicts. - task: PowerShell@2 displayName: Audit base applications path asset conflicts inputs: filePath: '.pipelines/verifyPossibleAssetConflicts.ps1' arguments: -targetDir '$(build.sourcesdirectory)\$(BuildPlatform)\$(BuildConfiguration)' pwsh: true - task: PowerShell@2 displayName: Audit WinAppSDK applications path asset conflicts inputs: filePath: '.pipelines/verifyPossibleAssetConflicts.ps1' arguments: -targetDir '$(build.sourcesdirectory)\$(BuildPlatform)\$(BuildConfiguration)\WinUI3Apps' pwsh: true #### MAIN SIGNING AREA # reference https://dev.azure.com/microsoft/Dart/_git/AppDriver?path=/ESRPSigning.json&version=GBarm64-netcore&_a=contents for winappdriver # https://dev.azure.com/microsoft/Dart/_git/AppDriver?path=/CIPolicy.xml&version=GBarm64-netcore&_a=contents - task: SFP.build-tasks.custom-build-task-1.EsrpCodeSigning@1 displayName: Sign Core PT inputs: ConnectedServiceName: 'Terminal/Console/WinAppDriver Team Code Signing Connection' FolderPath: '$(BuildPlatform)/$(BuildConfiguration)' # Video conf uses x86 and x64. signType: batchSigning batchSignPolicyFile: '$(build.sourcesdirectory)\.pipelines\ESRPSigning_core.json' ciPolicyFile: '$(build.sourcesdirectory)\.pipelines\CIPolicy.xml' - task: SFP.build-tasks.custom-build-task-1.EsrpCodeSigning@1 displayName: Sign x86 directshow VCM inputs: ConnectedServiceName: 'Terminal/Console/WinAppDriver Team Code Signing Connection' FolderPath: 'x86/$(BuildConfiguration)' # Video conf uses x86 and x64. signType: batchSigning batchSignPolicyFile: '$(build.sourcesdirectory)\.pipelines\ESRPSigning_vcm.json' ciPolicyFile: '$(build.sourcesdirectory)\.pipelines\CIPolicy.xml' #### END SIGNING ## END MAIN - task: PublishBuildArtifacts@1 displayName: 'Publish Artifact: binlog' condition: failed() continueOnError: True inputs: PathtoPublish: $(Build.SourcesDirectory)\msbuild.binlog ArtifactName: binlog-$(BuildPlatform) - task: ComponentGovernanceComponentDetection@0 displayName: Component Detection - task: CopyFiles@2 displayName: Copying files for symbols inputs: contents: >- **/*.pdb flattenFolders: True targetFolder: $(Build.ArtifactStagingDirectory)/Symbols-$(BuildPlatform)/ - task: PowerShell@2 displayName: 'Remove unneeded files from ArtifactStagingDirectory' inputs: targetType: 'inline' script: | cd $(Build.ArtifactStagingDirectory)/Symbols-$(BuildPlatform)/ Remove-Item vc143.pdb Remove-Item *test* - task: PublishSymbols@2 displayName: Publish symbols path continueOnError: True inputs: SearchPattern: | $(Build.ArtifactStagingDirectory)/Symbols-$(BuildPlatform)/**/*.* IndexSources: false SymbolServerType: TeamServices - task: PublishBuildArtifacts@1 displayName: 'Publish Artifact: Symbols' inputs: PathtoPublish: $(System.ArtifactsDirectory)/Symbols-$(BuildPlatform)/ ArtifactName: Symbols-${{ parameters.versionNumber }}-$(BuildPlatform) - task: DeleteFiles@1 displayName: 'Remove symbols from ArtifactStagingDirectory' inputs: Contents: '*' SourceFolder: $(Build.ArtifactStagingDirectory)/Symbols-$(BuildPlatform)/ RemoveSourceFolder: True - template: installer-steps.yml parameters: versionNumber: ${{ parameters.versionNumber }} perUserArg: "false" buildSubDir: "MachineSetup" installerPrefix: "PowerToysSetup" - task: PowerShell@2 displayName: Clean installer dir before building per-user installer inputs: targetType: inline script: git clean -xfd -e *exe -- .\installer\ pwsh: true - template: installer-steps.yml parameters: versionNumber: ${{ parameters.versionNumber }} perUserArg: "true" buildSubDir: "UserSetup" installerPrefix: "PowerToysUserSetup" - task: CopyFiles@2 displayName: Copying setup file over inputs: contents: "**/PowerToys*Setup-*.exe" flattenFolders: True targetFolder: $(Build.ArtifactStagingDirectory) - task: PowerShell@2 displayName: 'Calculating SHA256 hash' inputs: targetType: 'inline' script: | $p = "$(System.ArtifactsDirectory)\"; $staging = "$(Build.ArtifactStagingDirectory)\" $userHash = ((get-item $p\PowerToysUserSetup*.exe | Get-FileHash).Hash); $machineHash = ((get-item $p\PowerToysSetup*.exe | Get-FileHash).Hash); $userPlat = "hash_user_$(BuildPlatform).txt"; $machinePlat = "hash_machine_$(BuildPlatform).txt"; $combinedUserPath = $staging + $userPlat; $combinedMachinePath = $staging + $machinePlat; echo $p echo $userPlat echo $userHash echo $combinedUserPath echo $machinePlat echo $machineHash echo $combinedMachinePath $userHash | out-file -filepath $combinedUserPath $machineHash | out-file -filepath $combinedMachinePath pwsh: true - task: PublishBuildArtifacts@1 displayName: "Publish Artifact: PowerToySetup" inputs: PathtoPublish: $(System.ArtifactsDirectory) ArtifactName: setup-$(BuildPlatform) # Publishing the GPO files with a version number - task: PublishBuildArtifacts@1 displayName: 'Publish Artifact: GPO Files' inputs: PathtoPublish: src\gpo\assets ArtifactName: GroupPolicyObjectsFiles-${{ parameters.versionNumber }} ...
# This build should never run as CI or against a pull request. name: $(BuildDefinitionName)_$(date:yyMM).$(date:dd)$(rev:rrr) trigger: none resources: repositories: - repository: 1ESPipelineTemplates type: git name: 1ESPipelineTemplates/1ESPipelineTemplates ref: refs/tags/release parameters: - name: buildConfigurations type: object default: - Release - name: buildPlatforms type: object default: - x64 - arm64 - name: versionNumber type: string default: '0.0.1' extends: template: v1/1ES.Official.PipelineTemplate.yml@1ESPipelineTemplates parameters: customBuildTags: - 1ES.PT.ViaStartRight pool: name: SHINE-INT-S image: SHINE-VS17-Latest os: windows stages: - stage: build displayName: Build (Complete) pool: name: SHINE-INT-L image: SHINE-VS17-Latest os: windows jobs: - job: Build strategy: matrix: ${{ each config in parameters.buildConfigurations }}: ${{ each platform in parameters.buildPlatforms }}: ${{ config }}_${{ platform }}: BuildConfiguration: ${{ config }} BuildPlatform: ${{ platform }} templateContext: outputs: - output: pipelineArtifact artifactName: setup-$(BuildPlatform) targetPath: $(Build.ArtifactStagingDirectory) sdl: baseline: baselineFile: $(Build.SourcesDirectory)\.pipelines\sdl.gdnbaselines displayName: Build timeoutInMinutes: 240 # Some of the 1ES Pipeline stuff and Loc take a very long time cancelTimeoutInMinutes: 1 variables: NUGET_RESTORE_MSBUILD_ARGS: /p:Platform=$(BuildPlatform) # Required for nuget to work due to self contained NODE_OPTIONS: --max_old_space_size=16384 IsPipeline: 1 # The installer uses this to detect whether it should pick up localizations SkipCppCodeAnalysis: 1 # Skip the code analysis to speed up release CI. It runs on PR CI, anyway IsExperimentationLive: 1 # The build and installer use this to turn on experimentation steps: - checkout: self clean: true submodules: true persistCredentials: True # Sets versions for all PowerToy created DLLs - task: PowerShell@1 displayName: Set Versions.Prop inputs: scriptName: .pipelines/versionSetting.ps1 arguments: -versionNumber '${{ parameters.versionNumber }}' -DevEnvironment '' # ESRP needs 'Microsoft.NETCore.App', version '6.0.0' (x64) - task: UseDotNet@2 displayName: 'Use .NET 6 SDK' inputs: packageType: sdk version: '6.x' - task: UseDotNet@2 displayName: 'Use .NET 7 SDK' inputs: packageType: sdk version: '7.x' - task: NuGetAuthenticate@1 - task: NuGetToolInstaller@1 displayName: Use NuGet Installer latest # this will restore the following nugets: # - main solution # - Bug report tool # - Webcam report tool # - Installer # - Bootstrapper Installer - task: PowerShell@2 displayName: Download and install WiX 3.14 development build inputs: targetType: filePath filePath: '$(build.sourcesdirectory)\.pipelines\installWiX.ps1' - task: MicrosoftTDBuild.tdbuild-task.tdbuild-task.TouchdownBuildTask@1 displayName: 'Download Localization Files -- PowerToys 37400' inputs: teamId: 37400 authId: '$(TouchdownApplicationID)' authKey: '$(TouchdownApplicationKey)' resourceFilePath: | **\Resources.resx **\Resource.resx **\Resources.resw appendRelativeDir: true localizationTarget: false # pseudoSetting: Included - task: PowerShell@2 displayName: Move Loc files into correct locations inputs: targetType: inline script: >- $VerbosePreference = "Continue" ./tools/build/move-and-rename-resx.ps1 ./tools/build/move-uwp-resw.ps1 pwsh: true - task: CmdLine@2 displayName: Moving telem files inputs: script: | call nuget.exe restore -configFile .pipelines/release-nuget.config -PackagesDirectory . .pipelines/packages.config || exit /b 1 move /Y "Microsoft.PowerToys.Telemetry.2.0.0\build\include\TraceLoggingDefines.h" "src\common\Telemetry\TraceLoggingDefines.h" || exit /b 1 move /Y "Microsoft.PowerToys.Telemetry.2.0.0\build\include\TelemetryBase.cs" "src\common\Telemetry\TelemetryBase.cs" || exit /b 1 ## ALL BUT INSTALLER BUILDING - task: VSBuild@1 displayName: Build PowerToys main project inputs: solution: '**\PowerToys.sln' vsVersion: 17.0 msbuildArgs: -restore /p:RestorePackagesConfig=true /p:RestoreConfigFile="$(Build.SourcesDirectory)\.pipelines\release-nuget.config" /p:CIBuild=true /bl:$(Build.SourcesDirectory)\msbuild.binlog platform: $(BuildPlatform) configuration: $(BuildConfiguration) clean: true maximumCpuCount: true - task: VSBuild@1 displayName: Build BugReportTool inputs: solution: '**/tools/BugReportTool/BugReportTool.sln' vsVersion: 17.0 msbuildArgs: -restore /p:RestorePackagesConfig=true /p:RestoreConfigFile="$(Build.SourcesDirectory)\.pipelines\release-nuget.config" /p:CIBuild=true /bl:$(Build.SourcesDirectory)\msbuild.binlog platform: $(BuildPlatform) configuration: $(BuildConfiguration) clean: true maximumCpuCount: true - task: VSBuild@1 displayName: Build WebcamReportTool inputs: solution: '**/tools/WebcamReportTool/WebcamReportTool.sln' vsVersion: 17.0 msbuildArgs: -restore /p:RestorePackagesConfig=true /p:RestoreConfigFile="$(Build.SourcesDirectory)\.pipelines\release-nuget.config" /p:CIBuild=true /bl:$(Build.SourcesDirectory)\msbuild.binlog platform: $(BuildPlatform) configuration: $(BuildConfiguration) clean: true maximumCpuCount: true - task: VSBuild@1 displayName: Build StylesReportTool inputs: solution: '**/tools/StylesReportTool/StylesReportTool.sln' vsVersion: 17.0 msbuildArgs: -restore /p:RestorePackagesConfig=true /p:RestoreConfigFile="$(Build.SourcesDirectory)\.pipelines\release-nuget.config" /p:CIBuild=true /bl:$(Build.SourcesDirectory)\msbuild.binlog platform: $(BuildPlatform) configuration: $(BuildConfiguration) clean: true maximumCpuCount: true - task: VSBuild@1 displayName: Publish Settings for Packaging inputs: solution: 'src/settings-ui/Settings.UI/PowerToys.Settings.csproj' vsVersion: 17.0 msbuildArgs: >- /target:Publish /p:Configuration=$(BuildConfiguration);Platform=$(BuildPlatform);AppxBundle=Never /p:VCRTForwarders-IncludeDebugCRT=false /p:PowerToysRoot=$(Build.SourcesDirectory) /p:PublishProfile=InstallationPublishProfile.pubxml platform: $(BuildPlatform) configuration: $(BuildConfiguration) maximumCpuCount: true - task: VSBuild@1 displayName: Publish Launcher for Packaging inputs: solution: 'src/modules/launcher/PowerLauncher/PowerLauncher.csproj' vsVersion: 17.0 # The arguments should be the same as the ones for Settings; make sure they are. msbuildArgs: >- /target:Publish /p:Configuration=$(BuildConfiguration);Platform=$(BuildPlatform);AppxBundle=Never /p:VCRTForwarders-IncludeDebugCRT=false /p:PowerToysRoot=$(Build.SourcesDirectory) /p:PublishProfile=InstallationPublishProfile.pubxml platform: $(BuildPlatform) configuration: $(BuildConfiguration) maximumCpuCount: true - task: VSBuild@1 displayName: Publish Monaco Preview Handler for Packaging inputs: solution: 'src/modules/previewpane/MonacoPreviewHandler/MonacoPreviewHandler.csproj' vsVersion: 17.0 # The arguments should be the same as the ones for Settings; make sure they are. msbuildArgs: >- /target:Publish /p:Configuration=$(BuildConfiguration);Platform=$(BuildPlatform);AppxBundle=Never /p:VCRTForwarders-IncludeDebugCRT=false /p:PowerToysRoot=$(Build.SourcesDirectory) /p:PublishProfile=InstallationPublishProfile.pubxml platform: $(BuildPlatform) configuration: $(BuildConfiguration) maximumCpuCount: true - task: VSBuild@1 displayName: Publish Markdown Preview Handler for Packaging inputs: solution: 'src/modules/previewpane/MarkdownPreviewHandler/MarkdownPreviewHandler.csproj' vsVersion: 17.0 # The arguments should be the same as the ones for Settings; make sure they are. msbuildArgs: >- /target:Publish /p:Configuration=$(BuildConfiguration);Platform=$(BuildPlatform);AppxBundle=Never /p:VCRTForwarders-IncludeDebugCRT=false /p:PowerToysRoot=$(Build.SourcesDirectory) /p:PublishProfile=InstallationPublishProfile.pubxml platform: $(BuildPlatform) configuration: $(BuildConfiguration) maximumCpuCount: true - task: VSBuild@1 displayName: Publish Svg Preview Handler for Packaging inputs: solution: 'src/modules/previewpane/SvgPreviewHandler/SvgPreviewHandler.csproj' vsVersion: 17.0 # The arguments should be the same as the ones for Settings; make sure they are. msbuildArgs: >- /target:Publish /p:Configuration=$(BuildConfiguration);Platform=$(BuildPlatform);AppxBundle=Never /p:VCRTForwarders-IncludeDebugCRT=false /p:PowerToysRoot=$(Build.SourcesDirectory) /p:PublishProfile=InstallationPublishProfile.pubxml platform: $(BuildPlatform) configuration: $(BuildConfiguration) maximumCpuCount: true - task: VSBuild@1 displayName: Publish Svg Thumbnail Provider for Packaging inputs: solution: 'src/modules/previewpane/SvgThumbnailProvider/SvgThumbnailProvider.csproj' vsVersion: 17.0 # The arguments should be the same as the ones for Settings; make sure they are. msbuildArgs: >- /target:Publish /p:Configuration=$(BuildConfiguration);Platform=$(BuildPlatform);AppxBundle=Never /p:VCRTForwarders-IncludeDebugCRT=false /p:PowerToysRoot=$(Build.SourcesDirectory) /p:PublishProfile=InstallationPublishProfile.pubxml platform: $(BuildPlatform) configuration: $(BuildConfiguration) maximumCpuCount: true - task: VSBuild@1 displayName: Publish File Locksmith UI for Packaging inputs: solution: 'src/modules/FileLocksmith/FileLocksmithUI/FileLocksmithUI.csproj' vsVersion: 17.0 # The arguments should be the same as the ones for Settings; make sure they are. msbuildArgs: >- /target:Publish /p:Configuration=$(BuildConfiguration);Platform=$(BuildPlatform);AppxBundle=Never /p:VCRTForwarders-IncludeDebugCRT=false /p:PowerToysRoot=$(Build.SourcesDirectory) /p:PublishProfile=InstallationPublishProfile.pubxml platform: $(BuildPlatform) configuration: $(BuildConfiguration) maximumCpuCount: true # Check if deps.json files don't reference different dll versions. - task: PowerShell@2 displayName: Audit deps.json files for all applications inputs: filePath: '.pipelines/verifyDepsJsonLibraryVersions.ps1' arguments: -targetDir '$(build.sourcesdirectory)\$(BuildPlatform)\$(BuildConfiguration)' pwsh: true # Check if asset files on the main application paths are playing nice and avoiding basic conflicts. - task: PowerShell@2 displayName: Audit base applications path asset conflicts inputs: filePath: '.pipelines/verifyPossibleAssetConflicts.ps1' arguments: -targetDir '$(build.sourcesdirectory)\$(BuildPlatform)\$(BuildConfiguration)' pwsh: true - task: PowerShell@2 displayName: Audit WinAppSDK applications path asset conflicts inputs: filePath: '.pipelines/verifyPossibleAssetConflicts.ps1' arguments: -targetDir '$(build.sourcesdirectory)\$(BuildPlatform)\$(BuildConfiguration)\WinUI3Apps' pwsh: true #### MAIN SIGNING AREA # reference https://dev.azure.com/microsoft/Dart/_git/AppDriver?path=/ESRPSigning.json&version=GBarm64-netcore&_a=contents for winappdriver # https://dev.azure.com/microsoft/Dart/_git/AppDriver?path=/CIPolicy.xml&version=GBarm64-netcore&_a=contents - task: SFP.build-tasks.custom-build-task-1.EsrpCodeSigning@3 displayName: Sign Core PT inputs: ConnectedServiceName: 'Terminal/Console/WinAppDriver Team Code Signing Connection' FolderPath: '$(BuildPlatform)/$(BuildConfiguration)' # Video conf uses x86 and x64. signType: batchSigning batchSignPolicyFile: '$(build.sourcesdirectory)\.pipelines\ESRPSigning_core.json' ciPolicyFile: '$(build.sourcesdirectory)\.pipelines\CIPolicy.xml' - task: SFP.build-tasks.custom-build-task-1.EsrpCodeSigning@3 displayName: Sign x86 directshow VCM inputs: ConnectedServiceName: 'Terminal/Console/WinAppDriver Team Code Signing Connection' FolderPath: 'x86/$(BuildConfiguration)' # Video conf uses x86 and x64. signType: batchSigning batchSignPolicyFile: '$(build.sourcesdirectory)\.pipelines\ESRPSigning_vcm.json' ciPolicyFile: '$(build.sourcesdirectory)\.pipelines\CIPolicy.xml' #### END SIGNING ## END MAIN - pwsh: |- Move-Item msbuild.binlog "$(Build.ArtifactStagingDirectory)/" displayName: Stage binlog into artifact directory condition: always() - task: ComponentGovernanceComponentDetection@0 displayName: Component Detection - task: CopyFiles@2 displayName: Copying files for symbols inputs: contents: >- **/*.pdb flattenFolders: True targetFolder: $(Build.ArtifactStagingDirectory)/Symbols-$(BuildPlatform)/ - task: PowerShell@2 displayName: 'Remove unneeded files from ArtifactStagingDirectory' inputs: targetType: 'inline' script: | cd $(Build.ArtifactStagingDirectory)/Symbols-$(BuildPlatform)/ Remove-Item vc143.pdb Remove-Item *test* - task: PublishSymbols@2 displayName: Publish symbols path continueOnError: True inputs: SearchPattern: | $(Build.ArtifactStagingDirectory)/Symbols-$(BuildPlatform)/**/*.* IndexSources: false SymbolServerType: TeamServices - template: .pipelines/installer-steps.yml@self parameters: versionNumber: ${{ parameters.versionNumber }} perUserArg: "false" buildSubDir: "MachineSetup" installerPrefix: "PowerToysSetup" - task: PowerShell@2 displayName: Clean installer dir before building per-user installer inputs: targetType: inline script: git clean -xfd -e *exe -- .\installer\ pwsh: true - template: .pipelines/installer-steps.yml@self parameters: versionNumber: ${{ parameters.versionNumber }} perUserArg: "true" buildSubDir: "UserSetup" installerPrefix: "PowerToysUserSetup" - task: CopyFiles@2 displayName: Copying setup file over inputs: contents: "**/PowerToys*Setup-*.exe" flattenFolders: True targetFolder: $(Build.ArtifactStagingDirectory) - task: PowerShell@2 displayName: 'Calculating SHA256 hash' inputs: targetType: 'inline' script: | $p = "$(System.ArtifactsDirectory)\"; $staging = "$(Build.ArtifactStagingDirectory)\" $userHash = ((get-item $p\PowerToysUserSetup*.exe | Get-FileHash).Hash); $machineHash = ((get-item $p\PowerToysSetup*.exe | Get-FileHash).Hash); $userPlat = "hash_user_$(BuildPlatform).txt"; $machinePlat = "hash_machine_$(BuildPlatform).txt"; $combinedUserPath = $staging + $userPlat; $combinedMachinePath = $staging + $machinePlat; echo $p echo $userPlat echo $userHash echo $combinedUserPath echo $machinePlat echo $machineHash echo $combinedMachinePath $userHash | out-file -filepath $combinedUserPath $machineHash | out-file -filepath $combinedMachinePath pwsh: true # Publishing the GPO files - pwsh: |- New-Item "$(Build.ArtifactStagingDirectory)/gpo" -Type Directory Copy-Item src\gpo\assets\* "$(Build.ArtifactStagingDirectory)/gpo" -Recurse displayName: Stage the GPO files ...
DHowett
45150067b3d5c2211f01560bd8d139f95aa94f9c
03ad83836dfba0c5433718e44e8d68fa830ce291
Just keeping us up to date with the newest ESRP version; this one requires NET 6 instead of NET 2.1 (whoa)
DHowett
362
microsoft/PowerToys
29,014
[Build] Switch the release pipeline to use the 1ES governed template
The 1ES governed template is the YAML version of the old CDPx build pipeline -- it runs a bunch of checks before and after building the code, makes sure that artifacts only flow out through approved channels, etc., etc. One critical difference between this pipeline and the original is that we can only produce one artifact **per job**, and that that artifact must be unique across the entire build. Therefore, I've separated the x64 and arm64 artifacts into unique buckets: `setup-x64` and `setup-arm64`. Some failures are expected, and therefore have been baselined: - The WiX static library is built with C4996 disabled, which is an illegal configuration. This impacts PowerToysCustomActions. - boost x86 is built with a couple other warnings disabled, which is also an illegal configuration. The `sdl.gdnbaselines` file contains binary hash and rule pairings for each of these failures, plus about 300 more that were automatically included but not considered to be severe enough to fail the build. The build takes about 1h 15m wall time, which we can bring down by judiciously combining the signing steps for the installers. Related to #28910 (we had to enable Control Flow Guard to pass the BinSkim checks)
null
2023-10-04 15:38:30+00:00
2023-10-05 23:25:17+00:00
.pipelines/release.yml
# This build should never run as CI or against a pull request. trigger: none pr: none pool: name: SHINE-INT-L demands: ImageOverride -equals SHINE-VS17-Latest parameters: - name: buildConfigurations type: object default: - Release - name: buildPlatforms type: object default: - x64 - arm64 - name: versionNumber type: string default: '0.0.1' variables: IsPipeline: 1 # The installer uses this to detect whether it should pick up localizations SkipCppCodeAnalysis: 1 # Skip the code analysis to speed up release CI. It runs on PR CI, anyway IsExperimentationLive: 1 # The build and installer use this to turn on experimentation name: $(BuildDefinitionName)_$(date:yyMM).$(date:dd)$(rev:rrr) resources: repositories: - repository: self type: git ref: main jobs: - job: Build strategy: matrix: ${{ each config in parameters.buildConfigurations }}: ${{ each platform in parameters.buildPlatforms }}: ${{ config }}_${{ platform }}: BuildConfiguration: ${{ config }} BuildPlatform: ${{ platform }} NUGET_RESTORE_MSBUILD_ARGS: /p:Platform=${{ platform }} # Required for nuget to work due to self contained NODE_OPTIONS: --max_old_space_size=16384 displayName: Build timeoutInMinutes: 120 # Some of the loc stuff adds quite a bit of time. cancelTimeoutInMinutes: 1 steps: - checkout: self clean: true submodules: true persistCredentials: True # Sets versions for all PowerToy created DLLs - task: PowerShell@1 displayName: Set Versions.Prop inputs: scriptName: .pipelines/versionSetting.ps1 arguments: -versionNumber '${{ parameters.versionNumber }}' -DevEnvironment '' # Guardian tool needs 'Microsoft.NETCore.App', version '2.1.0' (x64) - task: UseDotNet@2 displayName: 'Use .NET Core 2.1 SDK' inputs: packageType: sdk version: '2.1.x' - task: UseDotNet@2 displayName: 'Use .NET 7 SDK' inputs: packageType: sdk version: '7.x' - task: NuGetAuthenticate@1 - task: NuGetToolInstaller@1 displayName: Use NuGet Installer latest # this will restore the following nugets: # - main solution # - Bug report tool # - Webcam report tool # - Installer # - Bootstrapper Installer - task: PowerShell@2 displayName: Download and install WiX 3.14 development build inputs: targetType: filePath filePath: '$(build.sourcesdirectory)\.pipelines\installWiX.ps1' - task: MicrosoftTDBuild.tdbuild-task.tdbuild-task.TouchdownBuildTask@1 displayName: 'Download Localization Files -- PowerToys 37400' inputs: teamId: 37400 authId: '$(TouchdownApplicationID)' authKey: '$(TouchdownApplicationKey)' resourceFilePath: | **\Resources.resx **\Resource.resx **\Resources.resw appendRelativeDir: true localizationTarget: false # pseudoSetting: Included - task: PowerShell@2 displayName: Move Loc files into correct locations inputs: targetType: inline script: >- $VerbosePreference = "Continue" ./tools/build/move-and-rename-resx.ps1 ./tools/build/move-uwp-resw.ps1 pwsh: true - task: CmdLine@2 displayName: Moving telem files inputs: script: | call nuget.exe restore -configFile .pipelines/release-nuget.config -PackagesDirectory . .pipelines/packages.config || exit /b 1 move /Y "Microsoft.PowerToys.Telemetry.2.0.0\build\include\TraceLoggingDefines.h" "src\common\Telemetry\TraceLoggingDefines.h" || exit /b 1 move /Y "Microsoft.PowerToys.Telemetry.2.0.0\build\include\TelemetryBase.cs" "src\common\Telemetry\TelemetryBase.cs" || exit /b 1 ## ALL BUT INSTALLER BUILDING - task: VSBuild@1 displayName: Build PowerToys main project inputs: solution: '**\PowerToys.sln' vsVersion: 17.0 msbuildArgs: -restore /p:RestorePackagesConfig=true /p:RestoreConfigFile="$(Build.SourcesDirectory)\.pipelines\release-nuget.config" /p:CIBuild=true /bl:$(Build.SourcesDirectory)\msbuild.binlog platform: $(BuildPlatform) configuration: $(BuildConfiguration) clean: true maximumCpuCount: true - task: VSBuild@1 displayName: Build BugReportTool inputs: solution: '**/tools/BugReportTool/BugReportTool.sln' vsVersion: 17.0 msbuildArgs: -restore /p:RestorePackagesConfig=true /p:RestoreConfigFile="$(Build.SourcesDirectory)\.pipelines\release-nuget.config" /p:CIBuild=true /bl:$(Build.SourcesDirectory)\msbuild.binlog platform: $(BuildPlatform) configuration: $(BuildConfiguration) clean: true maximumCpuCount: true - task: VSBuild@1 displayName: Build WebcamReportTool inputs: solution: '**/tools/WebcamReportTool/WebcamReportTool.sln' vsVersion: 17.0 msbuildArgs: -restore /p:RestorePackagesConfig=true /p:RestoreConfigFile="$(Build.SourcesDirectory)\.pipelines\release-nuget.config" /p:CIBuild=true /bl:$(Build.SourcesDirectory)\msbuild.binlog platform: $(BuildPlatform) configuration: $(BuildConfiguration) clean: true maximumCpuCount: true - task: VSBuild@1 displayName: Build StylesReportTool inputs: solution: '**/tools/StylesReportTool/StylesReportTool.sln' vsVersion: 17.0 msbuildArgs: -restore /p:RestorePackagesConfig=true /p:RestoreConfigFile="$(Build.SourcesDirectory)\.pipelines\release-nuget.config" /p:CIBuild=true /bl:$(Build.SourcesDirectory)\msbuild.binlog platform: $(BuildPlatform) configuration: $(BuildConfiguration) clean: true maximumCpuCount: true - task: VSBuild@1 displayName: Publish Settings for Packaging inputs: solution: 'src/settings-ui/Settings.UI/PowerToys.Settings.csproj' vsVersion: 17.0 msbuildArgs: >- /target:Publish /p:Configuration=$(BuildConfiguration);Platform=$(BuildPlatform);AppxBundle=Never /p:VCRTForwarders-IncludeDebugCRT=false /p:PowerToysRoot=$(Build.SourcesDirectory) /p:PublishProfile=InstallationPublishProfile.pubxml platform: $(BuildPlatform) configuration: $(BuildConfiguration) maximumCpuCount: true - task: VSBuild@1 displayName: Publish Launcher for Packaging inputs: solution: 'src/modules/launcher/PowerLauncher/PowerLauncher.csproj' vsVersion: 17.0 # The arguments should be the same as the ones for Settings; make sure they are. msbuildArgs: >- /target:Publish /p:Configuration=$(BuildConfiguration);Platform=$(BuildPlatform);AppxBundle=Never /p:VCRTForwarders-IncludeDebugCRT=false /p:PowerToysRoot=$(Build.SourcesDirectory) /p:PublishProfile=InstallationPublishProfile.pubxml platform: $(BuildPlatform) configuration: $(BuildConfiguration) maximumCpuCount: true - task: VSBuild@1 displayName: Publish Monaco Preview Handler for Packaging inputs: solution: 'src/modules/previewpane/MonacoPreviewHandler/MonacoPreviewHandler.csproj' vsVersion: 17.0 # The arguments should be the same as the ones for Settings; make sure they are. msbuildArgs: >- /target:Publish /p:Configuration=$(BuildConfiguration);Platform=$(BuildPlatform);AppxBundle=Never /p:VCRTForwarders-IncludeDebugCRT=false /p:PowerToysRoot=$(Build.SourcesDirectory) /p:PublishProfile=InstallationPublishProfile.pubxml platform: $(BuildPlatform) configuration: $(BuildConfiguration) maximumCpuCount: true - task: VSBuild@1 displayName: Publish Markdown Preview Handler for Packaging inputs: solution: 'src/modules/previewpane/MarkdownPreviewHandler/MarkdownPreviewHandler.csproj' vsVersion: 17.0 # The arguments should be the same as the ones for Settings; make sure they are. msbuildArgs: >- /target:Publish /p:Configuration=$(BuildConfiguration);Platform=$(BuildPlatform);AppxBundle=Never /p:VCRTForwarders-IncludeDebugCRT=false /p:PowerToysRoot=$(Build.SourcesDirectory) /p:PublishProfile=InstallationPublishProfile.pubxml platform: $(BuildPlatform) configuration: $(BuildConfiguration) maximumCpuCount: true - task: VSBuild@1 displayName: Publish Svg Preview Handler for Packaging inputs: solution: 'src/modules/previewpane/SvgPreviewHandler/SvgPreviewHandler.csproj' vsVersion: 17.0 # The arguments should be the same as the ones for Settings; make sure they are. msbuildArgs: >- /target:Publish /p:Configuration=$(BuildConfiguration);Platform=$(BuildPlatform);AppxBundle=Never /p:VCRTForwarders-IncludeDebugCRT=false /p:PowerToysRoot=$(Build.SourcesDirectory) /p:PublishProfile=InstallationPublishProfile.pubxml platform: $(BuildPlatform) configuration: $(BuildConfiguration) maximumCpuCount: true - task: VSBuild@1 displayName: Publish Svg Thumbnail Provider for Packaging inputs: solution: 'src/modules/previewpane/SvgThumbnailProvider/SvgThumbnailProvider.csproj' vsVersion: 17.0 # The arguments should be the same as the ones for Settings; make sure they are. msbuildArgs: >- /target:Publish /p:Configuration=$(BuildConfiguration);Platform=$(BuildPlatform);AppxBundle=Never /p:VCRTForwarders-IncludeDebugCRT=false /p:PowerToysRoot=$(Build.SourcesDirectory) /p:PublishProfile=InstallationPublishProfile.pubxml platform: $(BuildPlatform) configuration: $(BuildConfiguration) maximumCpuCount: true - task: VSBuild@1 displayName: Publish File Locksmith UI for Packaging inputs: solution: 'src/modules/FileLocksmith/FileLocksmithUI/FileLocksmithUI.csproj' vsVersion: 17.0 # The arguments should be the same as the ones for Settings; make sure they are. msbuildArgs: >- /target:Publish /p:Configuration=$(BuildConfiguration);Platform=$(BuildPlatform);AppxBundle=Never /p:VCRTForwarders-IncludeDebugCRT=false /p:PowerToysRoot=$(Build.SourcesDirectory) /p:PublishProfile=InstallationPublishProfile.pubxml platform: $(BuildPlatform) configuration: $(BuildConfiguration) maximumCpuCount: true # Check if deps.json files don't reference different dll versions. - task: PowerShell@2 displayName: Audit deps.json files for all applications inputs: filePath: '.pipelines/verifyDepsJsonLibraryVersions.ps1' arguments: -targetDir '$(build.sourcesdirectory)\$(BuildPlatform)\$(BuildConfiguration)' pwsh: true # Check if asset files on the main application paths are playing nice and avoiding basic conflicts. - task: PowerShell@2 displayName: Audit base applications path asset conflicts inputs: filePath: '.pipelines/verifyPossibleAssetConflicts.ps1' arguments: -targetDir '$(build.sourcesdirectory)\$(BuildPlatform)\$(BuildConfiguration)' pwsh: true - task: PowerShell@2 displayName: Audit WinAppSDK applications path asset conflicts inputs: filePath: '.pipelines/verifyPossibleAssetConflicts.ps1' arguments: -targetDir '$(build.sourcesdirectory)\$(BuildPlatform)\$(BuildConfiguration)\WinUI3Apps' pwsh: true #### MAIN SIGNING AREA # reference https://dev.azure.com/microsoft/Dart/_git/AppDriver?path=/ESRPSigning.json&version=GBarm64-netcore&_a=contents for winappdriver # https://dev.azure.com/microsoft/Dart/_git/AppDriver?path=/CIPolicy.xml&version=GBarm64-netcore&_a=contents - task: SFP.build-tasks.custom-build-task-1.EsrpCodeSigning@1 displayName: Sign Core PT inputs: ConnectedServiceName: 'Terminal/Console/WinAppDriver Team Code Signing Connection' FolderPath: '$(BuildPlatform)/$(BuildConfiguration)' # Video conf uses x86 and x64. signType: batchSigning batchSignPolicyFile: '$(build.sourcesdirectory)\.pipelines\ESRPSigning_core.json' ciPolicyFile: '$(build.sourcesdirectory)\.pipelines\CIPolicy.xml' - task: SFP.build-tasks.custom-build-task-1.EsrpCodeSigning@1 displayName: Sign x86 directshow VCM inputs: ConnectedServiceName: 'Terminal/Console/WinAppDriver Team Code Signing Connection' FolderPath: 'x86/$(BuildConfiguration)' # Video conf uses x86 and x64. signType: batchSigning batchSignPolicyFile: '$(build.sourcesdirectory)\.pipelines\ESRPSigning_vcm.json' ciPolicyFile: '$(build.sourcesdirectory)\.pipelines\CIPolicy.xml' #### END SIGNING ## END MAIN - task: PublishBuildArtifacts@1 displayName: 'Publish Artifact: binlog' condition: failed() continueOnError: True inputs: PathtoPublish: $(Build.SourcesDirectory)\msbuild.binlog ArtifactName: binlog-$(BuildPlatform) - task: ComponentGovernanceComponentDetection@0 displayName: Component Detection - task: CopyFiles@2 displayName: Copying files for symbols inputs: contents: >- **/*.pdb flattenFolders: True targetFolder: $(Build.ArtifactStagingDirectory)/Symbols-$(BuildPlatform)/ - task: PowerShell@2 displayName: 'Remove unneeded files from ArtifactStagingDirectory' inputs: targetType: 'inline' script: | cd $(Build.ArtifactStagingDirectory)/Symbols-$(BuildPlatform)/ Remove-Item vc143.pdb Remove-Item *test* - task: PublishSymbols@2 displayName: Publish symbols path continueOnError: True inputs: SearchPattern: | $(Build.ArtifactStagingDirectory)/Symbols-$(BuildPlatform)/**/*.* IndexSources: false SymbolServerType: TeamServices - task: PublishBuildArtifacts@1 displayName: 'Publish Artifact: Symbols' inputs: PathtoPublish: $(System.ArtifactsDirectory)/Symbols-$(BuildPlatform)/ ArtifactName: Symbols-${{ parameters.versionNumber }}-$(BuildPlatform) - task: DeleteFiles@1 displayName: 'Remove symbols from ArtifactStagingDirectory' inputs: Contents: '*' SourceFolder: $(Build.ArtifactStagingDirectory)/Symbols-$(BuildPlatform)/ RemoveSourceFolder: True - template: installer-steps.yml parameters: versionNumber: ${{ parameters.versionNumber }} perUserArg: "false" buildSubDir: "MachineSetup" installerPrefix: "PowerToysSetup" - task: PowerShell@2 displayName: Clean installer dir before building per-user installer inputs: targetType: inline script: git clean -xfd -e *exe -- .\installer\ pwsh: true - template: installer-steps.yml parameters: versionNumber: ${{ parameters.versionNumber }} perUserArg: "true" buildSubDir: "UserSetup" installerPrefix: "PowerToysUserSetup" - task: CopyFiles@2 displayName: Copying setup file over inputs: contents: "**/PowerToys*Setup-*.exe" flattenFolders: True targetFolder: $(Build.ArtifactStagingDirectory) - task: PowerShell@2 displayName: 'Calculating SHA256 hash' inputs: targetType: 'inline' script: | $p = "$(System.ArtifactsDirectory)\"; $staging = "$(Build.ArtifactStagingDirectory)\" $userHash = ((get-item $p\PowerToysUserSetup*.exe | Get-FileHash).Hash); $machineHash = ((get-item $p\PowerToysSetup*.exe | Get-FileHash).Hash); $userPlat = "hash_user_$(BuildPlatform).txt"; $machinePlat = "hash_machine_$(BuildPlatform).txt"; $combinedUserPath = $staging + $userPlat; $combinedMachinePath = $staging + $machinePlat; echo $p echo $userPlat echo $userHash echo $combinedUserPath echo $machinePlat echo $machineHash echo $combinedMachinePath $userHash | out-file -filepath $combinedUserPath $machineHash | out-file -filepath $combinedMachinePath pwsh: true - task: PublishBuildArtifacts@1 displayName: "Publish Artifact: PowerToySetup" inputs: PathtoPublish: $(System.ArtifactsDirectory) ArtifactName: setup-$(BuildPlatform) # Publishing the GPO files with a version number - task: PublishBuildArtifacts@1 displayName: 'Publish Artifact: GPO Files' inputs: PathtoPublish: src\gpo\assets ArtifactName: GroupPolicyObjectsFiles-${{ parameters.versionNumber }} ...
# This build should never run as CI or against a pull request. name: $(BuildDefinitionName)_$(date:yyMM).$(date:dd)$(rev:rrr) trigger: none resources: repositories: - repository: 1ESPipelineTemplates type: git name: 1ESPipelineTemplates/1ESPipelineTemplates ref: refs/tags/release parameters: - name: buildConfigurations type: object default: - Release - name: buildPlatforms type: object default: - x64 - arm64 - name: versionNumber type: string default: '0.0.1' extends: template: v1/1ES.Official.PipelineTemplate.yml@1ESPipelineTemplates parameters: customBuildTags: - 1ES.PT.ViaStartRight pool: name: SHINE-INT-S image: SHINE-VS17-Latest os: windows stages: - stage: build displayName: Build (Complete) pool: name: SHINE-INT-L image: SHINE-VS17-Latest os: windows jobs: - job: Build strategy: matrix: ${{ each config in parameters.buildConfigurations }}: ${{ each platform in parameters.buildPlatforms }}: ${{ config }}_${{ platform }}: BuildConfiguration: ${{ config }} BuildPlatform: ${{ platform }} templateContext: outputs: - output: pipelineArtifact artifactName: setup-$(BuildPlatform) targetPath: $(Build.ArtifactStagingDirectory) sdl: baseline: baselineFile: $(Build.SourcesDirectory)\.pipelines\sdl.gdnbaselines displayName: Build timeoutInMinutes: 240 # Some of the 1ES Pipeline stuff and Loc take a very long time cancelTimeoutInMinutes: 1 variables: NUGET_RESTORE_MSBUILD_ARGS: /p:Platform=$(BuildPlatform) # Required for nuget to work due to self contained NODE_OPTIONS: --max_old_space_size=16384 IsPipeline: 1 # The installer uses this to detect whether it should pick up localizations SkipCppCodeAnalysis: 1 # Skip the code analysis to speed up release CI. It runs on PR CI, anyway IsExperimentationLive: 1 # The build and installer use this to turn on experimentation steps: - checkout: self clean: true submodules: true persistCredentials: True # Sets versions for all PowerToy created DLLs - task: PowerShell@1 displayName: Set Versions.Prop inputs: scriptName: .pipelines/versionSetting.ps1 arguments: -versionNumber '${{ parameters.versionNumber }}' -DevEnvironment '' # ESRP needs 'Microsoft.NETCore.App', version '6.0.0' (x64) - task: UseDotNet@2 displayName: 'Use .NET 6 SDK' inputs: packageType: sdk version: '6.x' - task: UseDotNet@2 displayName: 'Use .NET 7 SDK' inputs: packageType: sdk version: '7.x' - task: NuGetAuthenticate@1 - task: NuGetToolInstaller@1 displayName: Use NuGet Installer latest # this will restore the following nugets: # - main solution # - Bug report tool # - Webcam report tool # - Installer # - Bootstrapper Installer - task: PowerShell@2 displayName: Download and install WiX 3.14 development build inputs: targetType: filePath filePath: '$(build.sourcesdirectory)\.pipelines\installWiX.ps1' - task: MicrosoftTDBuild.tdbuild-task.tdbuild-task.TouchdownBuildTask@1 displayName: 'Download Localization Files -- PowerToys 37400' inputs: teamId: 37400 authId: '$(TouchdownApplicationID)' authKey: '$(TouchdownApplicationKey)' resourceFilePath: | **\Resources.resx **\Resource.resx **\Resources.resw appendRelativeDir: true localizationTarget: false # pseudoSetting: Included - task: PowerShell@2 displayName: Move Loc files into correct locations inputs: targetType: inline script: >- $VerbosePreference = "Continue" ./tools/build/move-and-rename-resx.ps1 ./tools/build/move-uwp-resw.ps1 pwsh: true - task: CmdLine@2 displayName: Moving telem files inputs: script: | call nuget.exe restore -configFile .pipelines/release-nuget.config -PackagesDirectory . .pipelines/packages.config || exit /b 1 move /Y "Microsoft.PowerToys.Telemetry.2.0.0\build\include\TraceLoggingDefines.h" "src\common\Telemetry\TraceLoggingDefines.h" || exit /b 1 move /Y "Microsoft.PowerToys.Telemetry.2.0.0\build\include\TelemetryBase.cs" "src\common\Telemetry\TelemetryBase.cs" || exit /b 1 ## ALL BUT INSTALLER BUILDING - task: VSBuild@1 displayName: Build PowerToys main project inputs: solution: '**\PowerToys.sln' vsVersion: 17.0 msbuildArgs: -restore /p:RestorePackagesConfig=true /p:RestoreConfigFile="$(Build.SourcesDirectory)\.pipelines\release-nuget.config" /p:CIBuild=true /bl:$(Build.SourcesDirectory)\msbuild.binlog platform: $(BuildPlatform) configuration: $(BuildConfiguration) clean: true maximumCpuCount: true - task: VSBuild@1 displayName: Build BugReportTool inputs: solution: '**/tools/BugReportTool/BugReportTool.sln' vsVersion: 17.0 msbuildArgs: -restore /p:RestorePackagesConfig=true /p:RestoreConfigFile="$(Build.SourcesDirectory)\.pipelines\release-nuget.config" /p:CIBuild=true /bl:$(Build.SourcesDirectory)\msbuild.binlog platform: $(BuildPlatform) configuration: $(BuildConfiguration) clean: true maximumCpuCount: true - task: VSBuild@1 displayName: Build WebcamReportTool inputs: solution: '**/tools/WebcamReportTool/WebcamReportTool.sln' vsVersion: 17.0 msbuildArgs: -restore /p:RestorePackagesConfig=true /p:RestoreConfigFile="$(Build.SourcesDirectory)\.pipelines\release-nuget.config" /p:CIBuild=true /bl:$(Build.SourcesDirectory)\msbuild.binlog platform: $(BuildPlatform) configuration: $(BuildConfiguration) clean: true maximumCpuCount: true - task: VSBuild@1 displayName: Build StylesReportTool inputs: solution: '**/tools/StylesReportTool/StylesReportTool.sln' vsVersion: 17.0 msbuildArgs: -restore /p:RestorePackagesConfig=true /p:RestoreConfigFile="$(Build.SourcesDirectory)\.pipelines\release-nuget.config" /p:CIBuild=true /bl:$(Build.SourcesDirectory)\msbuild.binlog platform: $(BuildPlatform) configuration: $(BuildConfiguration) clean: true maximumCpuCount: true - task: VSBuild@1 displayName: Publish Settings for Packaging inputs: solution: 'src/settings-ui/Settings.UI/PowerToys.Settings.csproj' vsVersion: 17.0 msbuildArgs: >- /target:Publish /p:Configuration=$(BuildConfiguration);Platform=$(BuildPlatform);AppxBundle=Never /p:VCRTForwarders-IncludeDebugCRT=false /p:PowerToysRoot=$(Build.SourcesDirectory) /p:PublishProfile=InstallationPublishProfile.pubxml platform: $(BuildPlatform) configuration: $(BuildConfiguration) maximumCpuCount: true - task: VSBuild@1 displayName: Publish Launcher for Packaging inputs: solution: 'src/modules/launcher/PowerLauncher/PowerLauncher.csproj' vsVersion: 17.0 # The arguments should be the same as the ones for Settings; make sure they are. msbuildArgs: >- /target:Publish /p:Configuration=$(BuildConfiguration);Platform=$(BuildPlatform);AppxBundle=Never /p:VCRTForwarders-IncludeDebugCRT=false /p:PowerToysRoot=$(Build.SourcesDirectory) /p:PublishProfile=InstallationPublishProfile.pubxml platform: $(BuildPlatform) configuration: $(BuildConfiguration) maximumCpuCount: true - task: VSBuild@1 displayName: Publish Monaco Preview Handler for Packaging inputs: solution: 'src/modules/previewpane/MonacoPreviewHandler/MonacoPreviewHandler.csproj' vsVersion: 17.0 # The arguments should be the same as the ones for Settings; make sure they are. msbuildArgs: >- /target:Publish /p:Configuration=$(BuildConfiguration);Platform=$(BuildPlatform);AppxBundle=Never /p:VCRTForwarders-IncludeDebugCRT=false /p:PowerToysRoot=$(Build.SourcesDirectory) /p:PublishProfile=InstallationPublishProfile.pubxml platform: $(BuildPlatform) configuration: $(BuildConfiguration) maximumCpuCount: true - task: VSBuild@1 displayName: Publish Markdown Preview Handler for Packaging inputs: solution: 'src/modules/previewpane/MarkdownPreviewHandler/MarkdownPreviewHandler.csproj' vsVersion: 17.0 # The arguments should be the same as the ones for Settings; make sure they are. msbuildArgs: >- /target:Publish /p:Configuration=$(BuildConfiguration);Platform=$(BuildPlatform);AppxBundle=Never /p:VCRTForwarders-IncludeDebugCRT=false /p:PowerToysRoot=$(Build.SourcesDirectory) /p:PublishProfile=InstallationPublishProfile.pubxml platform: $(BuildPlatform) configuration: $(BuildConfiguration) maximumCpuCount: true - task: VSBuild@1 displayName: Publish Svg Preview Handler for Packaging inputs: solution: 'src/modules/previewpane/SvgPreviewHandler/SvgPreviewHandler.csproj' vsVersion: 17.0 # The arguments should be the same as the ones for Settings; make sure they are. msbuildArgs: >- /target:Publish /p:Configuration=$(BuildConfiguration);Platform=$(BuildPlatform);AppxBundle=Never /p:VCRTForwarders-IncludeDebugCRT=false /p:PowerToysRoot=$(Build.SourcesDirectory) /p:PublishProfile=InstallationPublishProfile.pubxml platform: $(BuildPlatform) configuration: $(BuildConfiguration) maximumCpuCount: true - task: VSBuild@1 displayName: Publish Svg Thumbnail Provider for Packaging inputs: solution: 'src/modules/previewpane/SvgThumbnailProvider/SvgThumbnailProvider.csproj' vsVersion: 17.0 # The arguments should be the same as the ones for Settings; make sure they are. msbuildArgs: >- /target:Publish /p:Configuration=$(BuildConfiguration);Platform=$(BuildPlatform);AppxBundle=Never /p:VCRTForwarders-IncludeDebugCRT=false /p:PowerToysRoot=$(Build.SourcesDirectory) /p:PublishProfile=InstallationPublishProfile.pubxml platform: $(BuildPlatform) configuration: $(BuildConfiguration) maximumCpuCount: true - task: VSBuild@1 displayName: Publish File Locksmith UI for Packaging inputs: solution: 'src/modules/FileLocksmith/FileLocksmithUI/FileLocksmithUI.csproj' vsVersion: 17.0 # The arguments should be the same as the ones for Settings; make sure they are. msbuildArgs: >- /target:Publish /p:Configuration=$(BuildConfiguration);Platform=$(BuildPlatform);AppxBundle=Never /p:VCRTForwarders-IncludeDebugCRT=false /p:PowerToysRoot=$(Build.SourcesDirectory) /p:PublishProfile=InstallationPublishProfile.pubxml platform: $(BuildPlatform) configuration: $(BuildConfiguration) maximumCpuCount: true # Check if deps.json files don't reference different dll versions. - task: PowerShell@2 displayName: Audit deps.json files for all applications inputs: filePath: '.pipelines/verifyDepsJsonLibraryVersions.ps1' arguments: -targetDir '$(build.sourcesdirectory)\$(BuildPlatform)\$(BuildConfiguration)' pwsh: true # Check if asset files on the main application paths are playing nice and avoiding basic conflicts. - task: PowerShell@2 displayName: Audit base applications path asset conflicts inputs: filePath: '.pipelines/verifyPossibleAssetConflicts.ps1' arguments: -targetDir '$(build.sourcesdirectory)\$(BuildPlatform)\$(BuildConfiguration)' pwsh: true - task: PowerShell@2 displayName: Audit WinAppSDK applications path asset conflicts inputs: filePath: '.pipelines/verifyPossibleAssetConflicts.ps1' arguments: -targetDir '$(build.sourcesdirectory)\$(BuildPlatform)\$(BuildConfiguration)\WinUI3Apps' pwsh: true #### MAIN SIGNING AREA # reference https://dev.azure.com/microsoft/Dart/_git/AppDriver?path=/ESRPSigning.json&version=GBarm64-netcore&_a=contents for winappdriver # https://dev.azure.com/microsoft/Dart/_git/AppDriver?path=/CIPolicy.xml&version=GBarm64-netcore&_a=contents - task: SFP.build-tasks.custom-build-task-1.EsrpCodeSigning@3 displayName: Sign Core PT inputs: ConnectedServiceName: 'Terminal/Console/WinAppDriver Team Code Signing Connection' FolderPath: '$(BuildPlatform)/$(BuildConfiguration)' # Video conf uses x86 and x64. signType: batchSigning batchSignPolicyFile: '$(build.sourcesdirectory)\.pipelines\ESRPSigning_core.json' ciPolicyFile: '$(build.sourcesdirectory)\.pipelines\CIPolicy.xml' - task: SFP.build-tasks.custom-build-task-1.EsrpCodeSigning@3 displayName: Sign x86 directshow VCM inputs: ConnectedServiceName: 'Terminal/Console/WinAppDriver Team Code Signing Connection' FolderPath: 'x86/$(BuildConfiguration)' # Video conf uses x86 and x64. signType: batchSigning batchSignPolicyFile: '$(build.sourcesdirectory)\.pipelines\ESRPSigning_vcm.json' ciPolicyFile: '$(build.sourcesdirectory)\.pipelines\CIPolicy.xml' #### END SIGNING ## END MAIN - pwsh: |- Move-Item msbuild.binlog "$(Build.ArtifactStagingDirectory)/" displayName: Stage binlog into artifact directory condition: always() - task: ComponentGovernanceComponentDetection@0 displayName: Component Detection - task: CopyFiles@2 displayName: Copying files for symbols inputs: contents: >- **/*.pdb flattenFolders: True targetFolder: $(Build.ArtifactStagingDirectory)/Symbols-$(BuildPlatform)/ - task: PowerShell@2 displayName: 'Remove unneeded files from ArtifactStagingDirectory' inputs: targetType: 'inline' script: | cd $(Build.ArtifactStagingDirectory)/Symbols-$(BuildPlatform)/ Remove-Item vc143.pdb Remove-Item *test* - task: PublishSymbols@2 displayName: Publish symbols path continueOnError: True inputs: SearchPattern: | $(Build.ArtifactStagingDirectory)/Symbols-$(BuildPlatform)/**/*.* IndexSources: false SymbolServerType: TeamServices - template: .pipelines/installer-steps.yml@self parameters: versionNumber: ${{ parameters.versionNumber }} perUserArg: "false" buildSubDir: "MachineSetup" installerPrefix: "PowerToysSetup" - task: PowerShell@2 displayName: Clean installer dir before building per-user installer inputs: targetType: inline script: git clean -xfd -e *exe -- .\installer\ pwsh: true - template: .pipelines/installer-steps.yml@self parameters: versionNumber: ${{ parameters.versionNumber }} perUserArg: "true" buildSubDir: "UserSetup" installerPrefix: "PowerToysUserSetup" - task: CopyFiles@2 displayName: Copying setup file over inputs: contents: "**/PowerToys*Setup-*.exe" flattenFolders: True targetFolder: $(Build.ArtifactStagingDirectory) - task: PowerShell@2 displayName: 'Calculating SHA256 hash' inputs: targetType: 'inline' script: | $p = "$(System.ArtifactsDirectory)\"; $staging = "$(Build.ArtifactStagingDirectory)\" $userHash = ((get-item $p\PowerToysUserSetup*.exe | Get-FileHash).Hash); $machineHash = ((get-item $p\PowerToysSetup*.exe | Get-FileHash).Hash); $userPlat = "hash_user_$(BuildPlatform).txt"; $machinePlat = "hash_machine_$(BuildPlatform).txt"; $combinedUserPath = $staging + $userPlat; $combinedMachinePath = $staging + $machinePlat; echo $p echo $userPlat echo $userHash echo $combinedUserPath echo $machinePlat echo $machineHash echo $combinedMachinePath $userHash | out-file -filepath $combinedUserPath $machineHash | out-file -filepath $combinedMachinePath pwsh: true # Publishing the GPO files - pwsh: |- New-Item "$(Build.ArtifactStagingDirectory)/gpo" -Type Directory Copy-Item src\gpo\assets\* "$(Build.ArtifactStagingDirectory)/gpo" -Recurse displayName: Stage the GPO files ...
DHowett
45150067b3d5c2211f01560bd8d139f95aa94f9c
03ad83836dfba0c5433718e44e8d68fa830ce291
If I'm reading properly, according to [Reference Template Paths](https://learn.microsoft.com/en-us/azure/devops/pipelines/process/templates?view=azure-devops&pivots=templates-includes#reference-template-paths) this SHOULD cause a problem since we're already in the `.pipelines` directory? But I'm not sure it actually does.
snickler
363
microsoft/PowerToys
29,014
[Build] Switch the release pipeline to use the 1ES governed template
The 1ES governed template is the YAML version of the old CDPx build pipeline -- it runs a bunch of checks before and after building the code, makes sure that artifacts only flow out through approved channels, etc., etc. One critical difference between this pipeline and the original is that we can only produce one artifact **per job**, and that that artifact must be unique across the entire build. Therefore, I've separated the x64 and arm64 artifacts into unique buckets: `setup-x64` and `setup-arm64`. Some failures are expected, and therefore have been baselined: - The WiX static library is built with C4996 disabled, which is an illegal configuration. This impacts PowerToysCustomActions. - boost x86 is built with a couple other warnings disabled, which is also an illegal configuration. The `sdl.gdnbaselines` file contains binary hash and rule pairings for each of these failures, plus about 300 more that were automatically included but not considered to be severe enough to fail the build. The build takes about 1h 15m wall time, which we can bring down by judiciously combining the signing steps for the installers. Related to #28910 (we had to enable Control Flow Guard to pass the BinSkim checks)
null
2023-10-04 15:38:30+00:00
2023-10-05 23:25:17+00:00
.pipelines/release.yml
# This build should never run as CI or against a pull request. trigger: none pr: none pool: name: SHINE-INT-L demands: ImageOverride -equals SHINE-VS17-Latest parameters: - name: buildConfigurations type: object default: - Release - name: buildPlatforms type: object default: - x64 - arm64 - name: versionNumber type: string default: '0.0.1' variables: IsPipeline: 1 # The installer uses this to detect whether it should pick up localizations SkipCppCodeAnalysis: 1 # Skip the code analysis to speed up release CI. It runs on PR CI, anyway IsExperimentationLive: 1 # The build and installer use this to turn on experimentation name: $(BuildDefinitionName)_$(date:yyMM).$(date:dd)$(rev:rrr) resources: repositories: - repository: self type: git ref: main jobs: - job: Build strategy: matrix: ${{ each config in parameters.buildConfigurations }}: ${{ each platform in parameters.buildPlatforms }}: ${{ config }}_${{ platform }}: BuildConfiguration: ${{ config }} BuildPlatform: ${{ platform }} NUGET_RESTORE_MSBUILD_ARGS: /p:Platform=${{ platform }} # Required for nuget to work due to self contained NODE_OPTIONS: --max_old_space_size=16384 displayName: Build timeoutInMinutes: 120 # Some of the loc stuff adds quite a bit of time. cancelTimeoutInMinutes: 1 steps: - checkout: self clean: true submodules: true persistCredentials: True # Sets versions for all PowerToy created DLLs - task: PowerShell@1 displayName: Set Versions.Prop inputs: scriptName: .pipelines/versionSetting.ps1 arguments: -versionNumber '${{ parameters.versionNumber }}' -DevEnvironment '' # Guardian tool needs 'Microsoft.NETCore.App', version '2.1.0' (x64) - task: UseDotNet@2 displayName: 'Use .NET Core 2.1 SDK' inputs: packageType: sdk version: '2.1.x' - task: UseDotNet@2 displayName: 'Use .NET 7 SDK' inputs: packageType: sdk version: '7.x' - task: NuGetAuthenticate@1 - task: NuGetToolInstaller@1 displayName: Use NuGet Installer latest # this will restore the following nugets: # - main solution # - Bug report tool # - Webcam report tool # - Installer # - Bootstrapper Installer - task: PowerShell@2 displayName: Download and install WiX 3.14 development build inputs: targetType: filePath filePath: '$(build.sourcesdirectory)\.pipelines\installWiX.ps1' - task: MicrosoftTDBuild.tdbuild-task.tdbuild-task.TouchdownBuildTask@1 displayName: 'Download Localization Files -- PowerToys 37400' inputs: teamId: 37400 authId: '$(TouchdownApplicationID)' authKey: '$(TouchdownApplicationKey)' resourceFilePath: | **\Resources.resx **\Resource.resx **\Resources.resw appendRelativeDir: true localizationTarget: false # pseudoSetting: Included - task: PowerShell@2 displayName: Move Loc files into correct locations inputs: targetType: inline script: >- $VerbosePreference = "Continue" ./tools/build/move-and-rename-resx.ps1 ./tools/build/move-uwp-resw.ps1 pwsh: true - task: CmdLine@2 displayName: Moving telem files inputs: script: | call nuget.exe restore -configFile .pipelines/release-nuget.config -PackagesDirectory . .pipelines/packages.config || exit /b 1 move /Y "Microsoft.PowerToys.Telemetry.2.0.0\build\include\TraceLoggingDefines.h" "src\common\Telemetry\TraceLoggingDefines.h" || exit /b 1 move /Y "Microsoft.PowerToys.Telemetry.2.0.0\build\include\TelemetryBase.cs" "src\common\Telemetry\TelemetryBase.cs" || exit /b 1 ## ALL BUT INSTALLER BUILDING - task: VSBuild@1 displayName: Build PowerToys main project inputs: solution: '**\PowerToys.sln' vsVersion: 17.0 msbuildArgs: -restore /p:RestorePackagesConfig=true /p:RestoreConfigFile="$(Build.SourcesDirectory)\.pipelines\release-nuget.config" /p:CIBuild=true /bl:$(Build.SourcesDirectory)\msbuild.binlog platform: $(BuildPlatform) configuration: $(BuildConfiguration) clean: true maximumCpuCount: true - task: VSBuild@1 displayName: Build BugReportTool inputs: solution: '**/tools/BugReportTool/BugReportTool.sln' vsVersion: 17.0 msbuildArgs: -restore /p:RestorePackagesConfig=true /p:RestoreConfigFile="$(Build.SourcesDirectory)\.pipelines\release-nuget.config" /p:CIBuild=true /bl:$(Build.SourcesDirectory)\msbuild.binlog platform: $(BuildPlatform) configuration: $(BuildConfiguration) clean: true maximumCpuCount: true - task: VSBuild@1 displayName: Build WebcamReportTool inputs: solution: '**/tools/WebcamReportTool/WebcamReportTool.sln' vsVersion: 17.0 msbuildArgs: -restore /p:RestorePackagesConfig=true /p:RestoreConfigFile="$(Build.SourcesDirectory)\.pipelines\release-nuget.config" /p:CIBuild=true /bl:$(Build.SourcesDirectory)\msbuild.binlog platform: $(BuildPlatform) configuration: $(BuildConfiguration) clean: true maximumCpuCount: true - task: VSBuild@1 displayName: Build StylesReportTool inputs: solution: '**/tools/StylesReportTool/StylesReportTool.sln' vsVersion: 17.0 msbuildArgs: -restore /p:RestorePackagesConfig=true /p:RestoreConfigFile="$(Build.SourcesDirectory)\.pipelines\release-nuget.config" /p:CIBuild=true /bl:$(Build.SourcesDirectory)\msbuild.binlog platform: $(BuildPlatform) configuration: $(BuildConfiguration) clean: true maximumCpuCount: true - task: VSBuild@1 displayName: Publish Settings for Packaging inputs: solution: 'src/settings-ui/Settings.UI/PowerToys.Settings.csproj' vsVersion: 17.0 msbuildArgs: >- /target:Publish /p:Configuration=$(BuildConfiguration);Platform=$(BuildPlatform);AppxBundle=Never /p:VCRTForwarders-IncludeDebugCRT=false /p:PowerToysRoot=$(Build.SourcesDirectory) /p:PublishProfile=InstallationPublishProfile.pubxml platform: $(BuildPlatform) configuration: $(BuildConfiguration) maximumCpuCount: true - task: VSBuild@1 displayName: Publish Launcher for Packaging inputs: solution: 'src/modules/launcher/PowerLauncher/PowerLauncher.csproj' vsVersion: 17.0 # The arguments should be the same as the ones for Settings; make sure they are. msbuildArgs: >- /target:Publish /p:Configuration=$(BuildConfiguration);Platform=$(BuildPlatform);AppxBundle=Never /p:VCRTForwarders-IncludeDebugCRT=false /p:PowerToysRoot=$(Build.SourcesDirectory) /p:PublishProfile=InstallationPublishProfile.pubxml platform: $(BuildPlatform) configuration: $(BuildConfiguration) maximumCpuCount: true - task: VSBuild@1 displayName: Publish Monaco Preview Handler for Packaging inputs: solution: 'src/modules/previewpane/MonacoPreviewHandler/MonacoPreviewHandler.csproj' vsVersion: 17.0 # The arguments should be the same as the ones for Settings; make sure they are. msbuildArgs: >- /target:Publish /p:Configuration=$(BuildConfiguration);Platform=$(BuildPlatform);AppxBundle=Never /p:VCRTForwarders-IncludeDebugCRT=false /p:PowerToysRoot=$(Build.SourcesDirectory) /p:PublishProfile=InstallationPublishProfile.pubxml platform: $(BuildPlatform) configuration: $(BuildConfiguration) maximumCpuCount: true - task: VSBuild@1 displayName: Publish Markdown Preview Handler for Packaging inputs: solution: 'src/modules/previewpane/MarkdownPreviewHandler/MarkdownPreviewHandler.csproj' vsVersion: 17.0 # The arguments should be the same as the ones for Settings; make sure they are. msbuildArgs: >- /target:Publish /p:Configuration=$(BuildConfiguration);Platform=$(BuildPlatform);AppxBundle=Never /p:VCRTForwarders-IncludeDebugCRT=false /p:PowerToysRoot=$(Build.SourcesDirectory) /p:PublishProfile=InstallationPublishProfile.pubxml platform: $(BuildPlatform) configuration: $(BuildConfiguration) maximumCpuCount: true - task: VSBuild@1 displayName: Publish Svg Preview Handler for Packaging inputs: solution: 'src/modules/previewpane/SvgPreviewHandler/SvgPreviewHandler.csproj' vsVersion: 17.0 # The arguments should be the same as the ones for Settings; make sure they are. msbuildArgs: >- /target:Publish /p:Configuration=$(BuildConfiguration);Platform=$(BuildPlatform);AppxBundle=Never /p:VCRTForwarders-IncludeDebugCRT=false /p:PowerToysRoot=$(Build.SourcesDirectory) /p:PublishProfile=InstallationPublishProfile.pubxml platform: $(BuildPlatform) configuration: $(BuildConfiguration) maximumCpuCount: true - task: VSBuild@1 displayName: Publish Svg Thumbnail Provider for Packaging inputs: solution: 'src/modules/previewpane/SvgThumbnailProvider/SvgThumbnailProvider.csproj' vsVersion: 17.0 # The arguments should be the same as the ones for Settings; make sure they are. msbuildArgs: >- /target:Publish /p:Configuration=$(BuildConfiguration);Platform=$(BuildPlatform);AppxBundle=Never /p:VCRTForwarders-IncludeDebugCRT=false /p:PowerToysRoot=$(Build.SourcesDirectory) /p:PublishProfile=InstallationPublishProfile.pubxml platform: $(BuildPlatform) configuration: $(BuildConfiguration) maximumCpuCount: true - task: VSBuild@1 displayName: Publish File Locksmith UI for Packaging inputs: solution: 'src/modules/FileLocksmith/FileLocksmithUI/FileLocksmithUI.csproj' vsVersion: 17.0 # The arguments should be the same as the ones for Settings; make sure they are. msbuildArgs: >- /target:Publish /p:Configuration=$(BuildConfiguration);Platform=$(BuildPlatform);AppxBundle=Never /p:VCRTForwarders-IncludeDebugCRT=false /p:PowerToysRoot=$(Build.SourcesDirectory) /p:PublishProfile=InstallationPublishProfile.pubxml platform: $(BuildPlatform) configuration: $(BuildConfiguration) maximumCpuCount: true # Check if deps.json files don't reference different dll versions. - task: PowerShell@2 displayName: Audit deps.json files for all applications inputs: filePath: '.pipelines/verifyDepsJsonLibraryVersions.ps1' arguments: -targetDir '$(build.sourcesdirectory)\$(BuildPlatform)\$(BuildConfiguration)' pwsh: true # Check if asset files on the main application paths are playing nice and avoiding basic conflicts. - task: PowerShell@2 displayName: Audit base applications path asset conflicts inputs: filePath: '.pipelines/verifyPossibleAssetConflicts.ps1' arguments: -targetDir '$(build.sourcesdirectory)\$(BuildPlatform)\$(BuildConfiguration)' pwsh: true - task: PowerShell@2 displayName: Audit WinAppSDK applications path asset conflicts inputs: filePath: '.pipelines/verifyPossibleAssetConflicts.ps1' arguments: -targetDir '$(build.sourcesdirectory)\$(BuildPlatform)\$(BuildConfiguration)\WinUI3Apps' pwsh: true #### MAIN SIGNING AREA # reference https://dev.azure.com/microsoft/Dart/_git/AppDriver?path=/ESRPSigning.json&version=GBarm64-netcore&_a=contents for winappdriver # https://dev.azure.com/microsoft/Dart/_git/AppDriver?path=/CIPolicy.xml&version=GBarm64-netcore&_a=contents - task: SFP.build-tasks.custom-build-task-1.EsrpCodeSigning@1 displayName: Sign Core PT inputs: ConnectedServiceName: 'Terminal/Console/WinAppDriver Team Code Signing Connection' FolderPath: '$(BuildPlatform)/$(BuildConfiguration)' # Video conf uses x86 and x64. signType: batchSigning batchSignPolicyFile: '$(build.sourcesdirectory)\.pipelines\ESRPSigning_core.json' ciPolicyFile: '$(build.sourcesdirectory)\.pipelines\CIPolicy.xml' - task: SFP.build-tasks.custom-build-task-1.EsrpCodeSigning@1 displayName: Sign x86 directshow VCM inputs: ConnectedServiceName: 'Terminal/Console/WinAppDriver Team Code Signing Connection' FolderPath: 'x86/$(BuildConfiguration)' # Video conf uses x86 and x64. signType: batchSigning batchSignPolicyFile: '$(build.sourcesdirectory)\.pipelines\ESRPSigning_vcm.json' ciPolicyFile: '$(build.sourcesdirectory)\.pipelines\CIPolicy.xml' #### END SIGNING ## END MAIN - task: PublishBuildArtifacts@1 displayName: 'Publish Artifact: binlog' condition: failed() continueOnError: True inputs: PathtoPublish: $(Build.SourcesDirectory)\msbuild.binlog ArtifactName: binlog-$(BuildPlatform) - task: ComponentGovernanceComponentDetection@0 displayName: Component Detection - task: CopyFiles@2 displayName: Copying files for symbols inputs: contents: >- **/*.pdb flattenFolders: True targetFolder: $(Build.ArtifactStagingDirectory)/Symbols-$(BuildPlatform)/ - task: PowerShell@2 displayName: 'Remove unneeded files from ArtifactStagingDirectory' inputs: targetType: 'inline' script: | cd $(Build.ArtifactStagingDirectory)/Symbols-$(BuildPlatform)/ Remove-Item vc143.pdb Remove-Item *test* - task: PublishSymbols@2 displayName: Publish symbols path continueOnError: True inputs: SearchPattern: | $(Build.ArtifactStagingDirectory)/Symbols-$(BuildPlatform)/**/*.* IndexSources: false SymbolServerType: TeamServices - task: PublishBuildArtifacts@1 displayName: 'Publish Artifact: Symbols' inputs: PathtoPublish: $(System.ArtifactsDirectory)/Symbols-$(BuildPlatform)/ ArtifactName: Symbols-${{ parameters.versionNumber }}-$(BuildPlatform) - task: DeleteFiles@1 displayName: 'Remove symbols from ArtifactStagingDirectory' inputs: Contents: '*' SourceFolder: $(Build.ArtifactStagingDirectory)/Symbols-$(BuildPlatform)/ RemoveSourceFolder: True - template: installer-steps.yml parameters: versionNumber: ${{ parameters.versionNumber }} perUserArg: "false" buildSubDir: "MachineSetup" installerPrefix: "PowerToysSetup" - task: PowerShell@2 displayName: Clean installer dir before building per-user installer inputs: targetType: inline script: git clean -xfd -e *exe -- .\installer\ pwsh: true - template: installer-steps.yml parameters: versionNumber: ${{ parameters.versionNumber }} perUserArg: "true" buildSubDir: "UserSetup" installerPrefix: "PowerToysUserSetup" - task: CopyFiles@2 displayName: Copying setup file over inputs: contents: "**/PowerToys*Setup-*.exe" flattenFolders: True targetFolder: $(Build.ArtifactStagingDirectory) - task: PowerShell@2 displayName: 'Calculating SHA256 hash' inputs: targetType: 'inline' script: | $p = "$(System.ArtifactsDirectory)\"; $staging = "$(Build.ArtifactStagingDirectory)\" $userHash = ((get-item $p\PowerToysUserSetup*.exe | Get-FileHash).Hash); $machineHash = ((get-item $p\PowerToysSetup*.exe | Get-FileHash).Hash); $userPlat = "hash_user_$(BuildPlatform).txt"; $machinePlat = "hash_machine_$(BuildPlatform).txt"; $combinedUserPath = $staging + $userPlat; $combinedMachinePath = $staging + $machinePlat; echo $p echo $userPlat echo $userHash echo $combinedUserPath echo $machinePlat echo $machineHash echo $combinedMachinePath $userHash | out-file -filepath $combinedUserPath $machineHash | out-file -filepath $combinedMachinePath pwsh: true - task: PublishBuildArtifacts@1 displayName: "Publish Artifact: PowerToySetup" inputs: PathtoPublish: $(System.ArtifactsDirectory) ArtifactName: setup-$(BuildPlatform) # Publishing the GPO files with a version number - task: PublishBuildArtifacts@1 displayName: 'Publish Artifact: GPO Files' inputs: PathtoPublish: src\gpo\assets ArtifactName: GroupPolicyObjectsFiles-${{ parameters.versionNumber }} ...
# This build should never run as CI or against a pull request. name: $(BuildDefinitionName)_$(date:yyMM).$(date:dd)$(rev:rrr) trigger: none resources: repositories: - repository: 1ESPipelineTemplates type: git name: 1ESPipelineTemplates/1ESPipelineTemplates ref: refs/tags/release parameters: - name: buildConfigurations type: object default: - Release - name: buildPlatforms type: object default: - x64 - arm64 - name: versionNumber type: string default: '0.0.1' extends: template: v1/1ES.Official.PipelineTemplate.yml@1ESPipelineTemplates parameters: customBuildTags: - 1ES.PT.ViaStartRight pool: name: SHINE-INT-S image: SHINE-VS17-Latest os: windows stages: - stage: build displayName: Build (Complete) pool: name: SHINE-INT-L image: SHINE-VS17-Latest os: windows jobs: - job: Build strategy: matrix: ${{ each config in parameters.buildConfigurations }}: ${{ each platform in parameters.buildPlatforms }}: ${{ config }}_${{ platform }}: BuildConfiguration: ${{ config }} BuildPlatform: ${{ platform }} templateContext: outputs: - output: pipelineArtifact artifactName: setup-$(BuildPlatform) targetPath: $(Build.ArtifactStagingDirectory) sdl: baseline: baselineFile: $(Build.SourcesDirectory)\.pipelines\sdl.gdnbaselines displayName: Build timeoutInMinutes: 240 # Some of the 1ES Pipeline stuff and Loc take a very long time cancelTimeoutInMinutes: 1 variables: NUGET_RESTORE_MSBUILD_ARGS: /p:Platform=$(BuildPlatform) # Required for nuget to work due to self contained NODE_OPTIONS: --max_old_space_size=16384 IsPipeline: 1 # The installer uses this to detect whether it should pick up localizations SkipCppCodeAnalysis: 1 # Skip the code analysis to speed up release CI. It runs on PR CI, anyway IsExperimentationLive: 1 # The build and installer use this to turn on experimentation steps: - checkout: self clean: true submodules: true persistCredentials: True # Sets versions for all PowerToy created DLLs - task: PowerShell@1 displayName: Set Versions.Prop inputs: scriptName: .pipelines/versionSetting.ps1 arguments: -versionNumber '${{ parameters.versionNumber }}' -DevEnvironment '' # ESRP needs 'Microsoft.NETCore.App', version '6.0.0' (x64) - task: UseDotNet@2 displayName: 'Use .NET 6 SDK' inputs: packageType: sdk version: '6.x' - task: UseDotNet@2 displayName: 'Use .NET 7 SDK' inputs: packageType: sdk version: '7.x' - task: NuGetAuthenticate@1 - task: NuGetToolInstaller@1 displayName: Use NuGet Installer latest # this will restore the following nugets: # - main solution # - Bug report tool # - Webcam report tool # - Installer # - Bootstrapper Installer - task: PowerShell@2 displayName: Download and install WiX 3.14 development build inputs: targetType: filePath filePath: '$(build.sourcesdirectory)\.pipelines\installWiX.ps1' - task: MicrosoftTDBuild.tdbuild-task.tdbuild-task.TouchdownBuildTask@1 displayName: 'Download Localization Files -- PowerToys 37400' inputs: teamId: 37400 authId: '$(TouchdownApplicationID)' authKey: '$(TouchdownApplicationKey)' resourceFilePath: | **\Resources.resx **\Resource.resx **\Resources.resw appendRelativeDir: true localizationTarget: false # pseudoSetting: Included - task: PowerShell@2 displayName: Move Loc files into correct locations inputs: targetType: inline script: >- $VerbosePreference = "Continue" ./tools/build/move-and-rename-resx.ps1 ./tools/build/move-uwp-resw.ps1 pwsh: true - task: CmdLine@2 displayName: Moving telem files inputs: script: | call nuget.exe restore -configFile .pipelines/release-nuget.config -PackagesDirectory . .pipelines/packages.config || exit /b 1 move /Y "Microsoft.PowerToys.Telemetry.2.0.0\build\include\TraceLoggingDefines.h" "src\common\Telemetry\TraceLoggingDefines.h" || exit /b 1 move /Y "Microsoft.PowerToys.Telemetry.2.0.0\build\include\TelemetryBase.cs" "src\common\Telemetry\TelemetryBase.cs" || exit /b 1 ## ALL BUT INSTALLER BUILDING - task: VSBuild@1 displayName: Build PowerToys main project inputs: solution: '**\PowerToys.sln' vsVersion: 17.0 msbuildArgs: -restore /p:RestorePackagesConfig=true /p:RestoreConfigFile="$(Build.SourcesDirectory)\.pipelines\release-nuget.config" /p:CIBuild=true /bl:$(Build.SourcesDirectory)\msbuild.binlog platform: $(BuildPlatform) configuration: $(BuildConfiguration) clean: true maximumCpuCount: true - task: VSBuild@1 displayName: Build BugReportTool inputs: solution: '**/tools/BugReportTool/BugReportTool.sln' vsVersion: 17.0 msbuildArgs: -restore /p:RestorePackagesConfig=true /p:RestoreConfigFile="$(Build.SourcesDirectory)\.pipelines\release-nuget.config" /p:CIBuild=true /bl:$(Build.SourcesDirectory)\msbuild.binlog platform: $(BuildPlatform) configuration: $(BuildConfiguration) clean: true maximumCpuCount: true - task: VSBuild@1 displayName: Build WebcamReportTool inputs: solution: '**/tools/WebcamReportTool/WebcamReportTool.sln' vsVersion: 17.0 msbuildArgs: -restore /p:RestorePackagesConfig=true /p:RestoreConfigFile="$(Build.SourcesDirectory)\.pipelines\release-nuget.config" /p:CIBuild=true /bl:$(Build.SourcesDirectory)\msbuild.binlog platform: $(BuildPlatform) configuration: $(BuildConfiguration) clean: true maximumCpuCount: true - task: VSBuild@1 displayName: Build StylesReportTool inputs: solution: '**/tools/StylesReportTool/StylesReportTool.sln' vsVersion: 17.0 msbuildArgs: -restore /p:RestorePackagesConfig=true /p:RestoreConfigFile="$(Build.SourcesDirectory)\.pipelines\release-nuget.config" /p:CIBuild=true /bl:$(Build.SourcesDirectory)\msbuild.binlog platform: $(BuildPlatform) configuration: $(BuildConfiguration) clean: true maximumCpuCount: true - task: VSBuild@1 displayName: Publish Settings for Packaging inputs: solution: 'src/settings-ui/Settings.UI/PowerToys.Settings.csproj' vsVersion: 17.0 msbuildArgs: >- /target:Publish /p:Configuration=$(BuildConfiguration);Platform=$(BuildPlatform);AppxBundle=Never /p:VCRTForwarders-IncludeDebugCRT=false /p:PowerToysRoot=$(Build.SourcesDirectory) /p:PublishProfile=InstallationPublishProfile.pubxml platform: $(BuildPlatform) configuration: $(BuildConfiguration) maximumCpuCount: true - task: VSBuild@1 displayName: Publish Launcher for Packaging inputs: solution: 'src/modules/launcher/PowerLauncher/PowerLauncher.csproj' vsVersion: 17.0 # The arguments should be the same as the ones for Settings; make sure they are. msbuildArgs: >- /target:Publish /p:Configuration=$(BuildConfiguration);Platform=$(BuildPlatform);AppxBundle=Never /p:VCRTForwarders-IncludeDebugCRT=false /p:PowerToysRoot=$(Build.SourcesDirectory) /p:PublishProfile=InstallationPublishProfile.pubxml platform: $(BuildPlatform) configuration: $(BuildConfiguration) maximumCpuCount: true - task: VSBuild@1 displayName: Publish Monaco Preview Handler for Packaging inputs: solution: 'src/modules/previewpane/MonacoPreviewHandler/MonacoPreviewHandler.csproj' vsVersion: 17.0 # The arguments should be the same as the ones for Settings; make sure they are. msbuildArgs: >- /target:Publish /p:Configuration=$(BuildConfiguration);Platform=$(BuildPlatform);AppxBundle=Never /p:VCRTForwarders-IncludeDebugCRT=false /p:PowerToysRoot=$(Build.SourcesDirectory) /p:PublishProfile=InstallationPublishProfile.pubxml platform: $(BuildPlatform) configuration: $(BuildConfiguration) maximumCpuCount: true - task: VSBuild@1 displayName: Publish Markdown Preview Handler for Packaging inputs: solution: 'src/modules/previewpane/MarkdownPreviewHandler/MarkdownPreviewHandler.csproj' vsVersion: 17.0 # The arguments should be the same as the ones for Settings; make sure they are. msbuildArgs: >- /target:Publish /p:Configuration=$(BuildConfiguration);Platform=$(BuildPlatform);AppxBundle=Never /p:VCRTForwarders-IncludeDebugCRT=false /p:PowerToysRoot=$(Build.SourcesDirectory) /p:PublishProfile=InstallationPublishProfile.pubxml platform: $(BuildPlatform) configuration: $(BuildConfiguration) maximumCpuCount: true - task: VSBuild@1 displayName: Publish Svg Preview Handler for Packaging inputs: solution: 'src/modules/previewpane/SvgPreviewHandler/SvgPreviewHandler.csproj' vsVersion: 17.0 # The arguments should be the same as the ones for Settings; make sure they are. msbuildArgs: >- /target:Publish /p:Configuration=$(BuildConfiguration);Platform=$(BuildPlatform);AppxBundle=Never /p:VCRTForwarders-IncludeDebugCRT=false /p:PowerToysRoot=$(Build.SourcesDirectory) /p:PublishProfile=InstallationPublishProfile.pubxml platform: $(BuildPlatform) configuration: $(BuildConfiguration) maximumCpuCount: true - task: VSBuild@1 displayName: Publish Svg Thumbnail Provider for Packaging inputs: solution: 'src/modules/previewpane/SvgThumbnailProvider/SvgThumbnailProvider.csproj' vsVersion: 17.0 # The arguments should be the same as the ones for Settings; make sure they are. msbuildArgs: >- /target:Publish /p:Configuration=$(BuildConfiguration);Platform=$(BuildPlatform);AppxBundle=Never /p:VCRTForwarders-IncludeDebugCRT=false /p:PowerToysRoot=$(Build.SourcesDirectory) /p:PublishProfile=InstallationPublishProfile.pubxml platform: $(BuildPlatform) configuration: $(BuildConfiguration) maximumCpuCount: true - task: VSBuild@1 displayName: Publish File Locksmith UI for Packaging inputs: solution: 'src/modules/FileLocksmith/FileLocksmithUI/FileLocksmithUI.csproj' vsVersion: 17.0 # The arguments should be the same as the ones for Settings; make sure they are. msbuildArgs: >- /target:Publish /p:Configuration=$(BuildConfiguration);Platform=$(BuildPlatform);AppxBundle=Never /p:VCRTForwarders-IncludeDebugCRT=false /p:PowerToysRoot=$(Build.SourcesDirectory) /p:PublishProfile=InstallationPublishProfile.pubxml platform: $(BuildPlatform) configuration: $(BuildConfiguration) maximumCpuCount: true # Check if deps.json files don't reference different dll versions. - task: PowerShell@2 displayName: Audit deps.json files for all applications inputs: filePath: '.pipelines/verifyDepsJsonLibraryVersions.ps1' arguments: -targetDir '$(build.sourcesdirectory)\$(BuildPlatform)\$(BuildConfiguration)' pwsh: true # Check if asset files on the main application paths are playing nice and avoiding basic conflicts. - task: PowerShell@2 displayName: Audit base applications path asset conflicts inputs: filePath: '.pipelines/verifyPossibleAssetConflicts.ps1' arguments: -targetDir '$(build.sourcesdirectory)\$(BuildPlatform)\$(BuildConfiguration)' pwsh: true - task: PowerShell@2 displayName: Audit WinAppSDK applications path asset conflicts inputs: filePath: '.pipelines/verifyPossibleAssetConflicts.ps1' arguments: -targetDir '$(build.sourcesdirectory)\$(BuildPlatform)\$(BuildConfiguration)\WinUI3Apps' pwsh: true #### MAIN SIGNING AREA # reference https://dev.azure.com/microsoft/Dart/_git/AppDriver?path=/ESRPSigning.json&version=GBarm64-netcore&_a=contents for winappdriver # https://dev.azure.com/microsoft/Dart/_git/AppDriver?path=/CIPolicy.xml&version=GBarm64-netcore&_a=contents - task: SFP.build-tasks.custom-build-task-1.EsrpCodeSigning@3 displayName: Sign Core PT inputs: ConnectedServiceName: 'Terminal/Console/WinAppDriver Team Code Signing Connection' FolderPath: '$(BuildPlatform)/$(BuildConfiguration)' # Video conf uses x86 and x64. signType: batchSigning batchSignPolicyFile: '$(build.sourcesdirectory)\.pipelines\ESRPSigning_core.json' ciPolicyFile: '$(build.sourcesdirectory)\.pipelines\CIPolicy.xml' - task: SFP.build-tasks.custom-build-task-1.EsrpCodeSigning@3 displayName: Sign x86 directshow VCM inputs: ConnectedServiceName: 'Terminal/Console/WinAppDriver Team Code Signing Connection' FolderPath: 'x86/$(BuildConfiguration)' # Video conf uses x86 and x64. signType: batchSigning batchSignPolicyFile: '$(build.sourcesdirectory)\.pipelines\ESRPSigning_vcm.json' ciPolicyFile: '$(build.sourcesdirectory)\.pipelines\CIPolicy.xml' #### END SIGNING ## END MAIN - pwsh: |- Move-Item msbuild.binlog "$(Build.ArtifactStagingDirectory)/" displayName: Stage binlog into artifact directory condition: always() - task: ComponentGovernanceComponentDetection@0 displayName: Component Detection - task: CopyFiles@2 displayName: Copying files for symbols inputs: contents: >- **/*.pdb flattenFolders: True targetFolder: $(Build.ArtifactStagingDirectory)/Symbols-$(BuildPlatform)/ - task: PowerShell@2 displayName: 'Remove unneeded files from ArtifactStagingDirectory' inputs: targetType: 'inline' script: | cd $(Build.ArtifactStagingDirectory)/Symbols-$(BuildPlatform)/ Remove-Item vc143.pdb Remove-Item *test* - task: PublishSymbols@2 displayName: Publish symbols path continueOnError: True inputs: SearchPattern: | $(Build.ArtifactStagingDirectory)/Symbols-$(BuildPlatform)/**/*.* IndexSources: false SymbolServerType: TeamServices - template: .pipelines/installer-steps.yml@self parameters: versionNumber: ${{ parameters.versionNumber }} perUserArg: "false" buildSubDir: "MachineSetup" installerPrefix: "PowerToysSetup" - task: PowerShell@2 displayName: Clean installer dir before building per-user installer inputs: targetType: inline script: git clean -xfd -e *exe -- .\installer\ pwsh: true - template: .pipelines/installer-steps.yml@self parameters: versionNumber: ${{ parameters.versionNumber }} perUserArg: "true" buildSubDir: "UserSetup" installerPrefix: "PowerToysUserSetup" - task: CopyFiles@2 displayName: Copying setup file over inputs: contents: "**/PowerToys*Setup-*.exe" flattenFolders: True targetFolder: $(Build.ArtifactStagingDirectory) - task: PowerShell@2 displayName: 'Calculating SHA256 hash' inputs: targetType: 'inline' script: | $p = "$(System.ArtifactsDirectory)\"; $staging = "$(Build.ArtifactStagingDirectory)\" $userHash = ((get-item $p\PowerToysUserSetup*.exe | Get-FileHash).Hash); $machineHash = ((get-item $p\PowerToysSetup*.exe | Get-FileHash).Hash); $userPlat = "hash_user_$(BuildPlatform).txt"; $machinePlat = "hash_machine_$(BuildPlatform).txt"; $combinedUserPath = $staging + $userPlat; $combinedMachinePath = $staging + $machinePlat; echo $p echo $userPlat echo $userHash echo $combinedUserPath echo $machinePlat echo $machineHash echo $combinedMachinePath $userHash | out-file -filepath $combinedUserPath $machineHash | out-file -filepath $combinedMachinePath pwsh: true # Publishing the GPO files - pwsh: |- New-Item "$(Build.ArtifactStagingDirectory)/gpo" -Type Directory Copy-Item src\gpo\assets\* "$(Build.ArtifactStagingDirectory)/gpo" -Recurse displayName: Stage the GPO files ...
DHowett
45150067b3d5c2211f01560bd8d139f95aa94f9c
03ad83836dfba0c5433718e44e8d68fa830ce291
Actually, never mind. I see the build success. Disregard :).
snickler
364
microsoft/PowerToys
29,014
[Build] Switch the release pipeline to use the 1ES governed template
The 1ES governed template is the YAML version of the old CDPx build pipeline -- it runs a bunch of checks before and after building the code, makes sure that artifacts only flow out through approved channels, etc., etc. One critical difference between this pipeline and the original is that we can only produce one artifact **per job**, and that that artifact must be unique across the entire build. Therefore, I've separated the x64 and arm64 artifacts into unique buckets: `setup-x64` and `setup-arm64`. Some failures are expected, and therefore have been baselined: - The WiX static library is built with C4996 disabled, which is an illegal configuration. This impacts PowerToysCustomActions. - boost x86 is built with a couple other warnings disabled, which is also an illegal configuration. The `sdl.gdnbaselines` file contains binary hash and rule pairings for each of these failures, plus about 300 more that were automatically included but not considered to be severe enough to fail the build. The build takes about 1h 15m wall time, which we can bring down by judiciously combining the signing steps for the installers. Related to #28910 (we had to enable Control Flow Guard to pass the BinSkim checks)
null
2023-10-04 15:38:30+00:00
2023-10-05 23:25:17+00:00
.pipelines/release.yml
# This build should never run as CI or against a pull request. trigger: none pr: none pool: name: SHINE-INT-L demands: ImageOverride -equals SHINE-VS17-Latest parameters: - name: buildConfigurations type: object default: - Release - name: buildPlatforms type: object default: - x64 - arm64 - name: versionNumber type: string default: '0.0.1' variables: IsPipeline: 1 # The installer uses this to detect whether it should pick up localizations SkipCppCodeAnalysis: 1 # Skip the code analysis to speed up release CI. It runs on PR CI, anyway IsExperimentationLive: 1 # The build and installer use this to turn on experimentation name: $(BuildDefinitionName)_$(date:yyMM).$(date:dd)$(rev:rrr) resources: repositories: - repository: self type: git ref: main jobs: - job: Build strategy: matrix: ${{ each config in parameters.buildConfigurations }}: ${{ each platform in parameters.buildPlatforms }}: ${{ config }}_${{ platform }}: BuildConfiguration: ${{ config }} BuildPlatform: ${{ platform }} NUGET_RESTORE_MSBUILD_ARGS: /p:Platform=${{ platform }} # Required for nuget to work due to self contained NODE_OPTIONS: --max_old_space_size=16384 displayName: Build timeoutInMinutes: 120 # Some of the loc stuff adds quite a bit of time. cancelTimeoutInMinutes: 1 steps: - checkout: self clean: true submodules: true persistCredentials: True # Sets versions for all PowerToy created DLLs - task: PowerShell@1 displayName: Set Versions.Prop inputs: scriptName: .pipelines/versionSetting.ps1 arguments: -versionNumber '${{ parameters.versionNumber }}' -DevEnvironment '' # Guardian tool needs 'Microsoft.NETCore.App', version '2.1.0' (x64) - task: UseDotNet@2 displayName: 'Use .NET Core 2.1 SDK' inputs: packageType: sdk version: '2.1.x' - task: UseDotNet@2 displayName: 'Use .NET 7 SDK' inputs: packageType: sdk version: '7.x' - task: NuGetAuthenticate@1 - task: NuGetToolInstaller@1 displayName: Use NuGet Installer latest # this will restore the following nugets: # - main solution # - Bug report tool # - Webcam report tool # - Installer # - Bootstrapper Installer - task: PowerShell@2 displayName: Download and install WiX 3.14 development build inputs: targetType: filePath filePath: '$(build.sourcesdirectory)\.pipelines\installWiX.ps1' - task: MicrosoftTDBuild.tdbuild-task.tdbuild-task.TouchdownBuildTask@1 displayName: 'Download Localization Files -- PowerToys 37400' inputs: teamId: 37400 authId: '$(TouchdownApplicationID)' authKey: '$(TouchdownApplicationKey)' resourceFilePath: | **\Resources.resx **\Resource.resx **\Resources.resw appendRelativeDir: true localizationTarget: false # pseudoSetting: Included - task: PowerShell@2 displayName: Move Loc files into correct locations inputs: targetType: inline script: >- $VerbosePreference = "Continue" ./tools/build/move-and-rename-resx.ps1 ./tools/build/move-uwp-resw.ps1 pwsh: true - task: CmdLine@2 displayName: Moving telem files inputs: script: | call nuget.exe restore -configFile .pipelines/release-nuget.config -PackagesDirectory . .pipelines/packages.config || exit /b 1 move /Y "Microsoft.PowerToys.Telemetry.2.0.0\build\include\TraceLoggingDefines.h" "src\common\Telemetry\TraceLoggingDefines.h" || exit /b 1 move /Y "Microsoft.PowerToys.Telemetry.2.0.0\build\include\TelemetryBase.cs" "src\common\Telemetry\TelemetryBase.cs" || exit /b 1 ## ALL BUT INSTALLER BUILDING - task: VSBuild@1 displayName: Build PowerToys main project inputs: solution: '**\PowerToys.sln' vsVersion: 17.0 msbuildArgs: -restore /p:RestorePackagesConfig=true /p:RestoreConfigFile="$(Build.SourcesDirectory)\.pipelines\release-nuget.config" /p:CIBuild=true /bl:$(Build.SourcesDirectory)\msbuild.binlog platform: $(BuildPlatform) configuration: $(BuildConfiguration) clean: true maximumCpuCount: true - task: VSBuild@1 displayName: Build BugReportTool inputs: solution: '**/tools/BugReportTool/BugReportTool.sln' vsVersion: 17.0 msbuildArgs: -restore /p:RestorePackagesConfig=true /p:RestoreConfigFile="$(Build.SourcesDirectory)\.pipelines\release-nuget.config" /p:CIBuild=true /bl:$(Build.SourcesDirectory)\msbuild.binlog platform: $(BuildPlatform) configuration: $(BuildConfiguration) clean: true maximumCpuCount: true - task: VSBuild@1 displayName: Build WebcamReportTool inputs: solution: '**/tools/WebcamReportTool/WebcamReportTool.sln' vsVersion: 17.0 msbuildArgs: -restore /p:RestorePackagesConfig=true /p:RestoreConfigFile="$(Build.SourcesDirectory)\.pipelines\release-nuget.config" /p:CIBuild=true /bl:$(Build.SourcesDirectory)\msbuild.binlog platform: $(BuildPlatform) configuration: $(BuildConfiguration) clean: true maximumCpuCount: true - task: VSBuild@1 displayName: Build StylesReportTool inputs: solution: '**/tools/StylesReportTool/StylesReportTool.sln' vsVersion: 17.0 msbuildArgs: -restore /p:RestorePackagesConfig=true /p:RestoreConfigFile="$(Build.SourcesDirectory)\.pipelines\release-nuget.config" /p:CIBuild=true /bl:$(Build.SourcesDirectory)\msbuild.binlog platform: $(BuildPlatform) configuration: $(BuildConfiguration) clean: true maximumCpuCount: true - task: VSBuild@1 displayName: Publish Settings for Packaging inputs: solution: 'src/settings-ui/Settings.UI/PowerToys.Settings.csproj' vsVersion: 17.0 msbuildArgs: >- /target:Publish /p:Configuration=$(BuildConfiguration);Platform=$(BuildPlatform);AppxBundle=Never /p:VCRTForwarders-IncludeDebugCRT=false /p:PowerToysRoot=$(Build.SourcesDirectory) /p:PublishProfile=InstallationPublishProfile.pubxml platform: $(BuildPlatform) configuration: $(BuildConfiguration) maximumCpuCount: true - task: VSBuild@1 displayName: Publish Launcher for Packaging inputs: solution: 'src/modules/launcher/PowerLauncher/PowerLauncher.csproj' vsVersion: 17.0 # The arguments should be the same as the ones for Settings; make sure they are. msbuildArgs: >- /target:Publish /p:Configuration=$(BuildConfiguration);Platform=$(BuildPlatform);AppxBundle=Never /p:VCRTForwarders-IncludeDebugCRT=false /p:PowerToysRoot=$(Build.SourcesDirectory) /p:PublishProfile=InstallationPublishProfile.pubxml platform: $(BuildPlatform) configuration: $(BuildConfiguration) maximumCpuCount: true - task: VSBuild@1 displayName: Publish Monaco Preview Handler for Packaging inputs: solution: 'src/modules/previewpane/MonacoPreviewHandler/MonacoPreviewHandler.csproj' vsVersion: 17.0 # The arguments should be the same as the ones for Settings; make sure they are. msbuildArgs: >- /target:Publish /p:Configuration=$(BuildConfiguration);Platform=$(BuildPlatform);AppxBundle=Never /p:VCRTForwarders-IncludeDebugCRT=false /p:PowerToysRoot=$(Build.SourcesDirectory) /p:PublishProfile=InstallationPublishProfile.pubxml platform: $(BuildPlatform) configuration: $(BuildConfiguration) maximumCpuCount: true - task: VSBuild@1 displayName: Publish Markdown Preview Handler for Packaging inputs: solution: 'src/modules/previewpane/MarkdownPreviewHandler/MarkdownPreviewHandler.csproj' vsVersion: 17.0 # The arguments should be the same as the ones for Settings; make sure they are. msbuildArgs: >- /target:Publish /p:Configuration=$(BuildConfiguration);Platform=$(BuildPlatform);AppxBundle=Never /p:VCRTForwarders-IncludeDebugCRT=false /p:PowerToysRoot=$(Build.SourcesDirectory) /p:PublishProfile=InstallationPublishProfile.pubxml platform: $(BuildPlatform) configuration: $(BuildConfiguration) maximumCpuCount: true - task: VSBuild@1 displayName: Publish Svg Preview Handler for Packaging inputs: solution: 'src/modules/previewpane/SvgPreviewHandler/SvgPreviewHandler.csproj' vsVersion: 17.0 # The arguments should be the same as the ones for Settings; make sure they are. msbuildArgs: >- /target:Publish /p:Configuration=$(BuildConfiguration);Platform=$(BuildPlatform);AppxBundle=Never /p:VCRTForwarders-IncludeDebugCRT=false /p:PowerToysRoot=$(Build.SourcesDirectory) /p:PublishProfile=InstallationPublishProfile.pubxml platform: $(BuildPlatform) configuration: $(BuildConfiguration) maximumCpuCount: true - task: VSBuild@1 displayName: Publish Svg Thumbnail Provider for Packaging inputs: solution: 'src/modules/previewpane/SvgThumbnailProvider/SvgThumbnailProvider.csproj' vsVersion: 17.0 # The arguments should be the same as the ones for Settings; make sure they are. msbuildArgs: >- /target:Publish /p:Configuration=$(BuildConfiguration);Platform=$(BuildPlatform);AppxBundle=Never /p:VCRTForwarders-IncludeDebugCRT=false /p:PowerToysRoot=$(Build.SourcesDirectory) /p:PublishProfile=InstallationPublishProfile.pubxml platform: $(BuildPlatform) configuration: $(BuildConfiguration) maximumCpuCount: true - task: VSBuild@1 displayName: Publish File Locksmith UI for Packaging inputs: solution: 'src/modules/FileLocksmith/FileLocksmithUI/FileLocksmithUI.csproj' vsVersion: 17.0 # The arguments should be the same as the ones for Settings; make sure they are. msbuildArgs: >- /target:Publish /p:Configuration=$(BuildConfiguration);Platform=$(BuildPlatform);AppxBundle=Never /p:VCRTForwarders-IncludeDebugCRT=false /p:PowerToysRoot=$(Build.SourcesDirectory) /p:PublishProfile=InstallationPublishProfile.pubxml platform: $(BuildPlatform) configuration: $(BuildConfiguration) maximumCpuCount: true # Check if deps.json files don't reference different dll versions. - task: PowerShell@2 displayName: Audit deps.json files for all applications inputs: filePath: '.pipelines/verifyDepsJsonLibraryVersions.ps1' arguments: -targetDir '$(build.sourcesdirectory)\$(BuildPlatform)\$(BuildConfiguration)' pwsh: true # Check if asset files on the main application paths are playing nice and avoiding basic conflicts. - task: PowerShell@2 displayName: Audit base applications path asset conflicts inputs: filePath: '.pipelines/verifyPossibleAssetConflicts.ps1' arguments: -targetDir '$(build.sourcesdirectory)\$(BuildPlatform)\$(BuildConfiguration)' pwsh: true - task: PowerShell@2 displayName: Audit WinAppSDK applications path asset conflicts inputs: filePath: '.pipelines/verifyPossibleAssetConflicts.ps1' arguments: -targetDir '$(build.sourcesdirectory)\$(BuildPlatform)\$(BuildConfiguration)\WinUI3Apps' pwsh: true #### MAIN SIGNING AREA # reference https://dev.azure.com/microsoft/Dart/_git/AppDriver?path=/ESRPSigning.json&version=GBarm64-netcore&_a=contents for winappdriver # https://dev.azure.com/microsoft/Dart/_git/AppDriver?path=/CIPolicy.xml&version=GBarm64-netcore&_a=contents - task: SFP.build-tasks.custom-build-task-1.EsrpCodeSigning@1 displayName: Sign Core PT inputs: ConnectedServiceName: 'Terminal/Console/WinAppDriver Team Code Signing Connection' FolderPath: '$(BuildPlatform)/$(BuildConfiguration)' # Video conf uses x86 and x64. signType: batchSigning batchSignPolicyFile: '$(build.sourcesdirectory)\.pipelines\ESRPSigning_core.json' ciPolicyFile: '$(build.sourcesdirectory)\.pipelines\CIPolicy.xml' - task: SFP.build-tasks.custom-build-task-1.EsrpCodeSigning@1 displayName: Sign x86 directshow VCM inputs: ConnectedServiceName: 'Terminal/Console/WinAppDriver Team Code Signing Connection' FolderPath: 'x86/$(BuildConfiguration)' # Video conf uses x86 and x64. signType: batchSigning batchSignPolicyFile: '$(build.sourcesdirectory)\.pipelines\ESRPSigning_vcm.json' ciPolicyFile: '$(build.sourcesdirectory)\.pipelines\CIPolicy.xml' #### END SIGNING ## END MAIN - task: PublishBuildArtifacts@1 displayName: 'Publish Artifact: binlog' condition: failed() continueOnError: True inputs: PathtoPublish: $(Build.SourcesDirectory)\msbuild.binlog ArtifactName: binlog-$(BuildPlatform) - task: ComponentGovernanceComponentDetection@0 displayName: Component Detection - task: CopyFiles@2 displayName: Copying files for symbols inputs: contents: >- **/*.pdb flattenFolders: True targetFolder: $(Build.ArtifactStagingDirectory)/Symbols-$(BuildPlatform)/ - task: PowerShell@2 displayName: 'Remove unneeded files from ArtifactStagingDirectory' inputs: targetType: 'inline' script: | cd $(Build.ArtifactStagingDirectory)/Symbols-$(BuildPlatform)/ Remove-Item vc143.pdb Remove-Item *test* - task: PublishSymbols@2 displayName: Publish symbols path continueOnError: True inputs: SearchPattern: | $(Build.ArtifactStagingDirectory)/Symbols-$(BuildPlatform)/**/*.* IndexSources: false SymbolServerType: TeamServices - task: PublishBuildArtifacts@1 displayName: 'Publish Artifact: Symbols' inputs: PathtoPublish: $(System.ArtifactsDirectory)/Symbols-$(BuildPlatform)/ ArtifactName: Symbols-${{ parameters.versionNumber }}-$(BuildPlatform) - task: DeleteFiles@1 displayName: 'Remove symbols from ArtifactStagingDirectory' inputs: Contents: '*' SourceFolder: $(Build.ArtifactStagingDirectory)/Symbols-$(BuildPlatform)/ RemoveSourceFolder: True - template: installer-steps.yml parameters: versionNumber: ${{ parameters.versionNumber }} perUserArg: "false" buildSubDir: "MachineSetup" installerPrefix: "PowerToysSetup" - task: PowerShell@2 displayName: Clean installer dir before building per-user installer inputs: targetType: inline script: git clean -xfd -e *exe -- .\installer\ pwsh: true - template: installer-steps.yml parameters: versionNumber: ${{ parameters.versionNumber }} perUserArg: "true" buildSubDir: "UserSetup" installerPrefix: "PowerToysUserSetup" - task: CopyFiles@2 displayName: Copying setup file over inputs: contents: "**/PowerToys*Setup-*.exe" flattenFolders: True targetFolder: $(Build.ArtifactStagingDirectory) - task: PowerShell@2 displayName: 'Calculating SHA256 hash' inputs: targetType: 'inline' script: | $p = "$(System.ArtifactsDirectory)\"; $staging = "$(Build.ArtifactStagingDirectory)\" $userHash = ((get-item $p\PowerToysUserSetup*.exe | Get-FileHash).Hash); $machineHash = ((get-item $p\PowerToysSetup*.exe | Get-FileHash).Hash); $userPlat = "hash_user_$(BuildPlatform).txt"; $machinePlat = "hash_machine_$(BuildPlatform).txt"; $combinedUserPath = $staging + $userPlat; $combinedMachinePath = $staging + $machinePlat; echo $p echo $userPlat echo $userHash echo $combinedUserPath echo $machinePlat echo $machineHash echo $combinedMachinePath $userHash | out-file -filepath $combinedUserPath $machineHash | out-file -filepath $combinedMachinePath pwsh: true - task: PublishBuildArtifacts@1 displayName: "Publish Artifact: PowerToySetup" inputs: PathtoPublish: $(System.ArtifactsDirectory) ArtifactName: setup-$(BuildPlatform) # Publishing the GPO files with a version number - task: PublishBuildArtifacts@1 displayName: 'Publish Artifact: GPO Files' inputs: PathtoPublish: src\gpo\assets ArtifactName: GroupPolicyObjectsFiles-${{ parameters.versionNumber }} ...
# This build should never run as CI or against a pull request. name: $(BuildDefinitionName)_$(date:yyMM).$(date:dd)$(rev:rrr) trigger: none resources: repositories: - repository: 1ESPipelineTemplates type: git name: 1ESPipelineTemplates/1ESPipelineTemplates ref: refs/tags/release parameters: - name: buildConfigurations type: object default: - Release - name: buildPlatforms type: object default: - x64 - arm64 - name: versionNumber type: string default: '0.0.1' extends: template: v1/1ES.Official.PipelineTemplate.yml@1ESPipelineTemplates parameters: customBuildTags: - 1ES.PT.ViaStartRight pool: name: SHINE-INT-S image: SHINE-VS17-Latest os: windows stages: - stage: build displayName: Build (Complete) pool: name: SHINE-INT-L image: SHINE-VS17-Latest os: windows jobs: - job: Build strategy: matrix: ${{ each config in parameters.buildConfigurations }}: ${{ each platform in parameters.buildPlatforms }}: ${{ config }}_${{ platform }}: BuildConfiguration: ${{ config }} BuildPlatform: ${{ platform }} templateContext: outputs: - output: pipelineArtifact artifactName: setup-$(BuildPlatform) targetPath: $(Build.ArtifactStagingDirectory) sdl: baseline: baselineFile: $(Build.SourcesDirectory)\.pipelines\sdl.gdnbaselines displayName: Build timeoutInMinutes: 240 # Some of the 1ES Pipeline stuff and Loc take a very long time cancelTimeoutInMinutes: 1 variables: NUGET_RESTORE_MSBUILD_ARGS: /p:Platform=$(BuildPlatform) # Required for nuget to work due to self contained NODE_OPTIONS: --max_old_space_size=16384 IsPipeline: 1 # The installer uses this to detect whether it should pick up localizations SkipCppCodeAnalysis: 1 # Skip the code analysis to speed up release CI. It runs on PR CI, anyway IsExperimentationLive: 1 # The build and installer use this to turn on experimentation steps: - checkout: self clean: true submodules: true persistCredentials: True # Sets versions for all PowerToy created DLLs - task: PowerShell@1 displayName: Set Versions.Prop inputs: scriptName: .pipelines/versionSetting.ps1 arguments: -versionNumber '${{ parameters.versionNumber }}' -DevEnvironment '' # ESRP needs 'Microsoft.NETCore.App', version '6.0.0' (x64) - task: UseDotNet@2 displayName: 'Use .NET 6 SDK' inputs: packageType: sdk version: '6.x' - task: UseDotNet@2 displayName: 'Use .NET 7 SDK' inputs: packageType: sdk version: '7.x' - task: NuGetAuthenticate@1 - task: NuGetToolInstaller@1 displayName: Use NuGet Installer latest # this will restore the following nugets: # - main solution # - Bug report tool # - Webcam report tool # - Installer # - Bootstrapper Installer - task: PowerShell@2 displayName: Download and install WiX 3.14 development build inputs: targetType: filePath filePath: '$(build.sourcesdirectory)\.pipelines\installWiX.ps1' - task: MicrosoftTDBuild.tdbuild-task.tdbuild-task.TouchdownBuildTask@1 displayName: 'Download Localization Files -- PowerToys 37400' inputs: teamId: 37400 authId: '$(TouchdownApplicationID)' authKey: '$(TouchdownApplicationKey)' resourceFilePath: | **\Resources.resx **\Resource.resx **\Resources.resw appendRelativeDir: true localizationTarget: false # pseudoSetting: Included - task: PowerShell@2 displayName: Move Loc files into correct locations inputs: targetType: inline script: >- $VerbosePreference = "Continue" ./tools/build/move-and-rename-resx.ps1 ./tools/build/move-uwp-resw.ps1 pwsh: true - task: CmdLine@2 displayName: Moving telem files inputs: script: | call nuget.exe restore -configFile .pipelines/release-nuget.config -PackagesDirectory . .pipelines/packages.config || exit /b 1 move /Y "Microsoft.PowerToys.Telemetry.2.0.0\build\include\TraceLoggingDefines.h" "src\common\Telemetry\TraceLoggingDefines.h" || exit /b 1 move /Y "Microsoft.PowerToys.Telemetry.2.0.0\build\include\TelemetryBase.cs" "src\common\Telemetry\TelemetryBase.cs" || exit /b 1 ## ALL BUT INSTALLER BUILDING - task: VSBuild@1 displayName: Build PowerToys main project inputs: solution: '**\PowerToys.sln' vsVersion: 17.0 msbuildArgs: -restore /p:RestorePackagesConfig=true /p:RestoreConfigFile="$(Build.SourcesDirectory)\.pipelines\release-nuget.config" /p:CIBuild=true /bl:$(Build.SourcesDirectory)\msbuild.binlog platform: $(BuildPlatform) configuration: $(BuildConfiguration) clean: true maximumCpuCount: true - task: VSBuild@1 displayName: Build BugReportTool inputs: solution: '**/tools/BugReportTool/BugReportTool.sln' vsVersion: 17.0 msbuildArgs: -restore /p:RestorePackagesConfig=true /p:RestoreConfigFile="$(Build.SourcesDirectory)\.pipelines\release-nuget.config" /p:CIBuild=true /bl:$(Build.SourcesDirectory)\msbuild.binlog platform: $(BuildPlatform) configuration: $(BuildConfiguration) clean: true maximumCpuCount: true - task: VSBuild@1 displayName: Build WebcamReportTool inputs: solution: '**/tools/WebcamReportTool/WebcamReportTool.sln' vsVersion: 17.0 msbuildArgs: -restore /p:RestorePackagesConfig=true /p:RestoreConfigFile="$(Build.SourcesDirectory)\.pipelines\release-nuget.config" /p:CIBuild=true /bl:$(Build.SourcesDirectory)\msbuild.binlog platform: $(BuildPlatform) configuration: $(BuildConfiguration) clean: true maximumCpuCount: true - task: VSBuild@1 displayName: Build StylesReportTool inputs: solution: '**/tools/StylesReportTool/StylesReportTool.sln' vsVersion: 17.0 msbuildArgs: -restore /p:RestorePackagesConfig=true /p:RestoreConfigFile="$(Build.SourcesDirectory)\.pipelines\release-nuget.config" /p:CIBuild=true /bl:$(Build.SourcesDirectory)\msbuild.binlog platform: $(BuildPlatform) configuration: $(BuildConfiguration) clean: true maximumCpuCount: true - task: VSBuild@1 displayName: Publish Settings for Packaging inputs: solution: 'src/settings-ui/Settings.UI/PowerToys.Settings.csproj' vsVersion: 17.0 msbuildArgs: >- /target:Publish /p:Configuration=$(BuildConfiguration);Platform=$(BuildPlatform);AppxBundle=Never /p:VCRTForwarders-IncludeDebugCRT=false /p:PowerToysRoot=$(Build.SourcesDirectory) /p:PublishProfile=InstallationPublishProfile.pubxml platform: $(BuildPlatform) configuration: $(BuildConfiguration) maximumCpuCount: true - task: VSBuild@1 displayName: Publish Launcher for Packaging inputs: solution: 'src/modules/launcher/PowerLauncher/PowerLauncher.csproj' vsVersion: 17.0 # The arguments should be the same as the ones for Settings; make sure they are. msbuildArgs: >- /target:Publish /p:Configuration=$(BuildConfiguration);Platform=$(BuildPlatform);AppxBundle=Never /p:VCRTForwarders-IncludeDebugCRT=false /p:PowerToysRoot=$(Build.SourcesDirectory) /p:PublishProfile=InstallationPublishProfile.pubxml platform: $(BuildPlatform) configuration: $(BuildConfiguration) maximumCpuCount: true - task: VSBuild@1 displayName: Publish Monaco Preview Handler for Packaging inputs: solution: 'src/modules/previewpane/MonacoPreviewHandler/MonacoPreviewHandler.csproj' vsVersion: 17.0 # The arguments should be the same as the ones for Settings; make sure they are. msbuildArgs: >- /target:Publish /p:Configuration=$(BuildConfiguration);Platform=$(BuildPlatform);AppxBundle=Never /p:VCRTForwarders-IncludeDebugCRT=false /p:PowerToysRoot=$(Build.SourcesDirectory) /p:PublishProfile=InstallationPublishProfile.pubxml platform: $(BuildPlatform) configuration: $(BuildConfiguration) maximumCpuCount: true - task: VSBuild@1 displayName: Publish Markdown Preview Handler for Packaging inputs: solution: 'src/modules/previewpane/MarkdownPreviewHandler/MarkdownPreviewHandler.csproj' vsVersion: 17.0 # The arguments should be the same as the ones for Settings; make sure they are. msbuildArgs: >- /target:Publish /p:Configuration=$(BuildConfiguration);Platform=$(BuildPlatform);AppxBundle=Never /p:VCRTForwarders-IncludeDebugCRT=false /p:PowerToysRoot=$(Build.SourcesDirectory) /p:PublishProfile=InstallationPublishProfile.pubxml platform: $(BuildPlatform) configuration: $(BuildConfiguration) maximumCpuCount: true - task: VSBuild@1 displayName: Publish Svg Preview Handler for Packaging inputs: solution: 'src/modules/previewpane/SvgPreviewHandler/SvgPreviewHandler.csproj' vsVersion: 17.0 # The arguments should be the same as the ones for Settings; make sure they are. msbuildArgs: >- /target:Publish /p:Configuration=$(BuildConfiguration);Platform=$(BuildPlatform);AppxBundle=Never /p:VCRTForwarders-IncludeDebugCRT=false /p:PowerToysRoot=$(Build.SourcesDirectory) /p:PublishProfile=InstallationPublishProfile.pubxml platform: $(BuildPlatform) configuration: $(BuildConfiguration) maximumCpuCount: true - task: VSBuild@1 displayName: Publish Svg Thumbnail Provider for Packaging inputs: solution: 'src/modules/previewpane/SvgThumbnailProvider/SvgThumbnailProvider.csproj' vsVersion: 17.0 # The arguments should be the same as the ones for Settings; make sure they are. msbuildArgs: >- /target:Publish /p:Configuration=$(BuildConfiguration);Platform=$(BuildPlatform);AppxBundle=Never /p:VCRTForwarders-IncludeDebugCRT=false /p:PowerToysRoot=$(Build.SourcesDirectory) /p:PublishProfile=InstallationPublishProfile.pubxml platform: $(BuildPlatform) configuration: $(BuildConfiguration) maximumCpuCount: true - task: VSBuild@1 displayName: Publish File Locksmith UI for Packaging inputs: solution: 'src/modules/FileLocksmith/FileLocksmithUI/FileLocksmithUI.csproj' vsVersion: 17.0 # The arguments should be the same as the ones for Settings; make sure they are. msbuildArgs: >- /target:Publish /p:Configuration=$(BuildConfiguration);Platform=$(BuildPlatform);AppxBundle=Never /p:VCRTForwarders-IncludeDebugCRT=false /p:PowerToysRoot=$(Build.SourcesDirectory) /p:PublishProfile=InstallationPublishProfile.pubxml platform: $(BuildPlatform) configuration: $(BuildConfiguration) maximumCpuCount: true # Check if deps.json files don't reference different dll versions. - task: PowerShell@2 displayName: Audit deps.json files for all applications inputs: filePath: '.pipelines/verifyDepsJsonLibraryVersions.ps1' arguments: -targetDir '$(build.sourcesdirectory)\$(BuildPlatform)\$(BuildConfiguration)' pwsh: true # Check if asset files on the main application paths are playing nice and avoiding basic conflicts. - task: PowerShell@2 displayName: Audit base applications path asset conflicts inputs: filePath: '.pipelines/verifyPossibleAssetConflicts.ps1' arguments: -targetDir '$(build.sourcesdirectory)\$(BuildPlatform)\$(BuildConfiguration)' pwsh: true - task: PowerShell@2 displayName: Audit WinAppSDK applications path asset conflicts inputs: filePath: '.pipelines/verifyPossibleAssetConflicts.ps1' arguments: -targetDir '$(build.sourcesdirectory)\$(BuildPlatform)\$(BuildConfiguration)\WinUI3Apps' pwsh: true #### MAIN SIGNING AREA # reference https://dev.azure.com/microsoft/Dart/_git/AppDriver?path=/ESRPSigning.json&version=GBarm64-netcore&_a=contents for winappdriver # https://dev.azure.com/microsoft/Dart/_git/AppDriver?path=/CIPolicy.xml&version=GBarm64-netcore&_a=contents - task: SFP.build-tasks.custom-build-task-1.EsrpCodeSigning@3 displayName: Sign Core PT inputs: ConnectedServiceName: 'Terminal/Console/WinAppDriver Team Code Signing Connection' FolderPath: '$(BuildPlatform)/$(BuildConfiguration)' # Video conf uses x86 and x64. signType: batchSigning batchSignPolicyFile: '$(build.sourcesdirectory)\.pipelines\ESRPSigning_core.json' ciPolicyFile: '$(build.sourcesdirectory)\.pipelines\CIPolicy.xml' - task: SFP.build-tasks.custom-build-task-1.EsrpCodeSigning@3 displayName: Sign x86 directshow VCM inputs: ConnectedServiceName: 'Terminal/Console/WinAppDriver Team Code Signing Connection' FolderPath: 'x86/$(BuildConfiguration)' # Video conf uses x86 and x64. signType: batchSigning batchSignPolicyFile: '$(build.sourcesdirectory)\.pipelines\ESRPSigning_vcm.json' ciPolicyFile: '$(build.sourcesdirectory)\.pipelines\CIPolicy.xml' #### END SIGNING ## END MAIN - pwsh: |- Move-Item msbuild.binlog "$(Build.ArtifactStagingDirectory)/" displayName: Stage binlog into artifact directory condition: always() - task: ComponentGovernanceComponentDetection@0 displayName: Component Detection - task: CopyFiles@2 displayName: Copying files for symbols inputs: contents: >- **/*.pdb flattenFolders: True targetFolder: $(Build.ArtifactStagingDirectory)/Symbols-$(BuildPlatform)/ - task: PowerShell@2 displayName: 'Remove unneeded files from ArtifactStagingDirectory' inputs: targetType: 'inline' script: | cd $(Build.ArtifactStagingDirectory)/Symbols-$(BuildPlatform)/ Remove-Item vc143.pdb Remove-Item *test* - task: PublishSymbols@2 displayName: Publish symbols path continueOnError: True inputs: SearchPattern: | $(Build.ArtifactStagingDirectory)/Symbols-$(BuildPlatform)/**/*.* IndexSources: false SymbolServerType: TeamServices - template: .pipelines/installer-steps.yml@self parameters: versionNumber: ${{ parameters.versionNumber }} perUserArg: "false" buildSubDir: "MachineSetup" installerPrefix: "PowerToysSetup" - task: PowerShell@2 displayName: Clean installer dir before building per-user installer inputs: targetType: inline script: git clean -xfd -e *exe -- .\installer\ pwsh: true - template: .pipelines/installer-steps.yml@self parameters: versionNumber: ${{ parameters.versionNumber }} perUserArg: "true" buildSubDir: "UserSetup" installerPrefix: "PowerToysUserSetup" - task: CopyFiles@2 displayName: Copying setup file over inputs: contents: "**/PowerToys*Setup-*.exe" flattenFolders: True targetFolder: $(Build.ArtifactStagingDirectory) - task: PowerShell@2 displayName: 'Calculating SHA256 hash' inputs: targetType: 'inline' script: | $p = "$(System.ArtifactsDirectory)\"; $staging = "$(Build.ArtifactStagingDirectory)\" $userHash = ((get-item $p\PowerToysUserSetup*.exe | Get-FileHash).Hash); $machineHash = ((get-item $p\PowerToysSetup*.exe | Get-FileHash).Hash); $userPlat = "hash_user_$(BuildPlatform).txt"; $machinePlat = "hash_machine_$(BuildPlatform).txt"; $combinedUserPath = $staging + $userPlat; $combinedMachinePath = $staging + $machinePlat; echo $p echo $userPlat echo $userHash echo $combinedUserPath echo $machinePlat echo $machineHash echo $combinedMachinePath $userHash | out-file -filepath $combinedUserPath $machineHash | out-file -filepath $combinedMachinePath pwsh: true # Publishing the GPO files - pwsh: |- New-Item "$(Build.ArtifactStagingDirectory)/gpo" -Type Directory Copy-Item src\gpo\assets\* "$(Build.ArtifactStagingDirectory)/gpo" -Recurse displayName: Stage the GPO files ...
DHowett
45150067b3d5c2211f01560bd8d139f95aa94f9c
03ad83836dfba0c5433718e44e8d68fa830ce291
This is a weird one. This step list is being transcluded inside a template from a different repository! I learned through trial and error that you need to add `@self` to get back to the originating repository... and that doing so removes any preexisting relative path. The template anchors inside the transcluded step list start out at the repo root 😄
DHowett
365
microsoft/PowerToys
28,984
Modules/hosts typo
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request Fixes simple typo/grammar error. 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. <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [ ] **Closes:** #xxx - [ ] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected - [ ] **Tests:** Added/updated and all pass - [ ] **Localization:** All end user facing strings can be localized - [ ] **Dev docs:** Added/updated - [ ] **New binaries:** Added on the required places - [ ] [JSON for signing](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ESRPSigning_core.json) for new binaries - [ ] [WXS for installer](https://github.com/microsoft/PowerToys/blob/main/installer/PowerToysSetup/Product.wxs) for new binaries and localization folder - [ ] [YML for CI pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ci/templates/build-powertoys-steps.yml) for new test projects - [ ] [YML for signed pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/release.yml) - [ ] **Documentation updated:** If checked, please file a pull request on [our docs repo](https://github.com/MicrosoftDocs/windows-uwp/tree/docs/hub/powertoys) and link it here: #xxx <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed used a dictionary ;)
null
2023-10-03 20:57:22+00:00
2023-10-04 10:02:37+00:00
src/modules/Hosts/Hosts/Strings/en-us/Resources.resw
<?xml version="1.0" encoding="utf-8"?> <root> <!-- Microsoft ResX Schema Version 2.0 The primary goals of this format is to allow a simple XML format that is mostly human readable. The generation and parsing of the various data types are done through the TypeConverter classes associated with the data types. Example: ... ado.net/XML headers & schema ... <resheader name="resmimetype">text/microsoft-resx</resheader> <resheader name="version">2.0</resheader> <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader> <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader> <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data> <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data> <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64"> <value>[base64 mime encoded serialized .NET Framework object]</value> </data> <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value> <comment>This is a comment</comment> </data> There are any number of "resheader" rows that contain simple name/value pairs. Each data row contains a name, and value. The row also contains a type or mimetype. Type corresponds to a .NET class that support text/value conversion through the TypeConverter architecture. Classes that don't support this are serialized and stored with the mimetype set. The mimetype is used for serialized objects, and tells the ResXResourceReader how to depersist the object. This is currently not extensible. For a given mimetype the value must be set accordingly: Note - application/x-microsoft.net.object.binary.base64 is the format that the ResXResourceWriter will generate, however the reader can read any of the formats listed below. mimetype: application/x-microsoft.net.object.binary.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.soap.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Soap.SoapFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.bytearray.base64 value : The object must be serialized into a byte array : using a System.ComponentModel.TypeConverter : and then encoded with base64 encoding. --> <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> <xsd:import namespace="http://www.w3.org/XML/1998/namespace" /> <xsd:element name="root" msdata:IsDataSet="true"> <xsd:complexType> <xsd:choice maxOccurs="unbounded"> <xsd:element name="metadata"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" /> </xsd:sequence> <xsd:attribute name="name" use="required" type="xsd:string" /> <xsd:attribute name="type" type="xsd:string" /> <xsd:attribute name="mimetype" type="xsd:string" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="assembly"> <xsd:complexType> <xsd:attribute name="alias" type="xsd:string" /> <xsd:attribute name="name" type="xsd:string" /> </xsd:complexType> </xsd:element> <xsd:element name="data"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" /> <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="resheader"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" /> </xsd:complexType> </xsd:element> </xsd:choice> </xsd:complexType> </xsd:element> </xsd:schema> <resheader name="resmimetype"> <value>text/microsoft-resx</value> </resheader> <resheader name="version"> <value>2.0</value> </resheader> <resheader name="reader"> <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <resheader name="writer"> <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <data name="Active.Header" xml:space="preserve"> <value>Active</value> </data> <data name="ActiveToggle.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Active</value> </data> <data name="AddBtn" xml:space="preserve"> <value>Add</value> </data> <data name="AddEntry.Text" xml:space="preserve"> <value>New entry</value> </data> <data name="AddEntryBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>New entry</value> </data> <data name="AddEntryBtn.[using:Microsoft.UI.Xaml.Controls]ToolTipService.ToolTip" xml:space="preserve"> <value>New entry (Ctrl+N)</value> </data> <data name="AddEntryLink.Content" xml:space="preserve"> <value>Add an entry</value> </data> <data name="AdditionalLinesBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Additional content</value> </data> <data name="AdditionalLinesBtn.[using:Microsoft.UI.Xaml.Controls]ToolTipService.ToolTip" xml:space="preserve"> <value>Additional content</value> </data> <data name="AdditionalLinesDialog.CloseButtonText" xml:space="preserve"> <value>Cancel</value> </data> <data name="AdditionalLinesDialog.PrimaryButtonText" xml:space="preserve"> <value>Save</value> </data> <data name="AdditionalLinesDialog.Title" xml:space="preserve"> <value>Additional content</value> </data> <data name="AddNewEntryDialog_Title" xml:space="preserve"> <value>Add new entry</value> </data> <data name="Address.Header" xml:space="preserve"> <value>Address</value> <comment>"Address" refers to the IP address of the entry</comment> </data> <data name="AddressFilter.Header" xml:space="preserve"> <value>Address</value> <comment>"Address" refers to the IP address of the entry</comment> </data> <data name="ClearFiltersBtn.Content" xml:space="preserve"> <value>Clear filters</value> </data> <data name="ClearFiltersBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Clear filters</value> </data> <data name="ClearFiltersLink.Content" xml:space="preserve"> <value>Clear filters</value> </data> <data name="Comment.Header" xml:space="preserve"> <value>Comment</value> <comment>"Comment" refers to the comment of the entry</comment> </data> <data name="CommentFilter.Header" xml:space="preserve"> <value>Comment</value> <comment>"Comment" refers to the comment of the entry</comment> </data> <data name="Delete.Text" xml:space="preserve"> <value>Delete</value> </data> <data name="DeleteDialog.CloseButtonText" xml:space="preserve"> <value>No</value> </data> <data name="DeleteDialog.PrimaryButtonText" xml:space="preserve"> <value>Yes</value> </data> <data name="DeleteDialogAreYouSure.Text" xml:space="preserve"> <value>Are you sure you want to delete this entry?</value> </data> <data name="DuplicateEntryIcon.[using:Microsoft.UI.Xaml.Controls]ToolTipService.ToolTip" xml:space="preserve"> <value>Duplicate entry</value> </data> <data name="Edit.Text" xml:space="preserve"> <value>Edit</value> </data> <data name="EmptyFilterResults.Text" xml:space="preserve"> <value>No filter results</value> </data> <data name="EmptyHosts.Text" xml:space="preserve"> <value>No entries in the hosts file</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Entries.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Entries</value> </data> <data name="EntryDialog.CloseButtonText" xml:space="preserve"> <value>Cancel</value> </data> <data name="FileChanged.Message" xml:space="preserve"> <value>Hosts file was modified externally.</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="FileSaveError_FileInUse" xml:space="preserve"> <value>The hosts file cannot be saved because it is being used by another process.</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="FileSaveError_Generic" xml:space="preserve"> <value>Unable to save the hosts file.</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="FileSaveError_NotElevated" xml:space="preserve"> <value>The hosts file cannot be saved because the program isn't running as administrator.</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="FilterBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Filters</value> </data> <data name="FilterBtn.[using:Microsoft.UI.Xaml.Controls]ToolTipService.ToolTip" xml:space="preserve"> <value>Filters</value> </data> <data name="Hosts.Header" xml:space="preserve"> <value>Hosts</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Hosts.[using:Microsoft.UI.Xaml.Controls]ToolTipService.ToolTip" xml:space="preserve"> <value>Seperate multiple hosts by space (e.g. server server.local). Maximum 9 hosts per entry.</value> <comment>Do not localize "server" and "server.local"</comment> </data> <data name="HostsFilter.Header" xml:space="preserve"> <value>Hosts</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="MoveDown.Text" xml:space="preserve"> <value>Move down</value> </data> <data name="MoveUp.Text" xml:space="preserve"> <value>Move up</value> </data> <data name="OpenHostsFileBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Open hosts file</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="OpenHostsFileBtn.[using:Microsoft.UI.Xaml.Controls]ToolTipService.ToolTip" xml:space="preserve"> <value>Open hosts file</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Ping.Text" xml:space="preserve"> <value>Ping</value> <comment>"Ping" refers to the command-line utility, do not loc</comment> </data> <data name="PingIcon.[using:Microsoft.UI.Xaml.Controls]ToolTipService.ToolTip" xml:space="preserve"> <value>Ping response</value> <comment>"Ping" refers to the command-line utility, do not loc</comment> </data> <data name="Reload.Content" xml:space="preserve"> <value>Reload</value> </data> <data name="SettingsBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Settings</value> </data> <data name="SettingsBtn.[using:Microsoft.UI.Xaml.Controls]ToolTipService.ToolTip" xml:space="preserve"> <value>Settings</value> </data> <data name="ShowOnlyDuplicates.Header" xml:space="preserve"> <value>Show only duplicates</value> </data> <data name="TooManyHostsTeachingTip.Subtitle" xml:space="preserve"> <value>Only 9 hosts per entry are supported. The affected entries have been split. This will take effect on next change.</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="TooManyHostsTeachingTip.Title" xml:space="preserve"> <value>Entries contain too many hosts</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="UpdateBtn" xml:space="preserve"> <value>Update</value> </data> <data name="UpdateEntry_Title" xml:space="preserve"> <value>Update the entry</value> </data> <data name="WarningDialog_AcceptBtn" xml:space="preserve"> <value>Accept</value> </data> <data name="WarningDialog_QuitBtn" xml:space="preserve"> <value>Quit</value> </data> <data name="WarningDialog_Text" xml:space="preserve"> <value>Altering hosts file has direct real world impact of how this computer resolves domain names.</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="WarningDialog_Title" xml:space="preserve"> <value>Warning</value> </data> <data name="WindowAdminTitle" xml:space="preserve"> <value>Administrator: Hosts File Editor</value> <comment>Title of the window when running as administrator. "Hosts File Editor" is the name of the utility. "Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="WindowTitle" xml:space="preserve"> <value>Hosts File Editor</value> <comment>Title of the window when running as user. "Hosts File Editor" is the name of the utility. "Hosts" refers to the system hosts file, do not loc</comment> </data> </root>
<?xml version="1.0" encoding="utf-8"?> <root> <!-- Microsoft ResX Schema Version 2.0 The primary goals of this format is to allow a simple XML format that is mostly human readable. The generation and parsing of the various data types are done through the TypeConverter classes associated with the data types. Example: ... ado.net/XML headers & schema ... <resheader name="resmimetype">text/microsoft-resx</resheader> <resheader name="version">2.0</resheader> <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader> <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader> <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data> <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data> <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64"> <value>[base64 mime encoded serialized .NET Framework object]</value> </data> <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value> <comment>This is a comment</comment> </data> There are any number of "resheader" rows that contain simple name/value pairs. Each data row contains a name, and value. The row also contains a type or mimetype. Type corresponds to a .NET class that support text/value conversion through the TypeConverter architecture. Classes that don't support this are serialized and stored with the mimetype set. The mimetype is used for serialized objects, and tells the ResXResourceReader how to depersist the object. This is currently not extensible. For a given mimetype the value must be set accordingly: Note - application/x-microsoft.net.object.binary.base64 is the format that the ResXResourceWriter will generate, however the reader can read any of the formats listed below. mimetype: application/x-microsoft.net.object.binary.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.soap.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Soap.SoapFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.bytearray.base64 value : The object must be serialized into a byte array : using a System.ComponentModel.TypeConverter : and then encoded with base64 encoding. --> <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> <xsd:import namespace="http://www.w3.org/XML/1998/namespace" /> <xsd:element name="root" msdata:IsDataSet="true"> <xsd:complexType> <xsd:choice maxOccurs="unbounded"> <xsd:element name="metadata"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" /> </xsd:sequence> <xsd:attribute name="name" use="required" type="xsd:string" /> <xsd:attribute name="type" type="xsd:string" /> <xsd:attribute name="mimetype" type="xsd:string" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="assembly"> <xsd:complexType> <xsd:attribute name="alias" type="xsd:string" /> <xsd:attribute name="name" type="xsd:string" /> </xsd:complexType> </xsd:element> <xsd:element name="data"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" /> <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="resheader"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" /> </xsd:complexType> </xsd:element> </xsd:choice> </xsd:complexType> </xsd:element> </xsd:schema> <resheader name="resmimetype"> <value>text/microsoft-resx</value> </resheader> <resheader name="version"> <value>2.0</value> </resheader> <resheader name="reader"> <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <resheader name="writer"> <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <data name="Active.Header" xml:space="preserve"> <value>Active</value> </data> <data name="ActiveToggle.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Active</value> </data> <data name="AddBtn" xml:space="preserve"> <value>Add</value> </data> <data name="AddEntry.Text" xml:space="preserve"> <value>New entry</value> </data> <data name="AddEntryBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>New entry</value> </data> <data name="AddEntryBtn.[using:Microsoft.UI.Xaml.Controls]ToolTipService.ToolTip" xml:space="preserve"> <value>New entry (Ctrl+N)</value> </data> <data name="AddEntryLink.Content" xml:space="preserve"> <value>Add an entry</value> </data> <data name="AdditionalLinesBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Additional content</value> </data> <data name="AdditionalLinesBtn.[using:Microsoft.UI.Xaml.Controls]ToolTipService.ToolTip" xml:space="preserve"> <value>Additional content</value> </data> <data name="AdditionalLinesDialog.CloseButtonText" xml:space="preserve"> <value>Cancel</value> </data> <data name="AdditionalLinesDialog.PrimaryButtonText" xml:space="preserve"> <value>Save</value> </data> <data name="AdditionalLinesDialog.Title" xml:space="preserve"> <value>Additional content</value> </data> <data name="AddNewEntryDialog_Title" xml:space="preserve"> <value>Add new entry</value> </data> <data name="Address.Header" xml:space="preserve"> <value>Address</value> <comment>"Address" refers to the IP address of the entry</comment> </data> <data name="AddressFilter.Header" xml:space="preserve"> <value>Address</value> <comment>"Address" refers to the IP address of the entry</comment> </data> <data name="ClearFiltersBtn.Content" xml:space="preserve"> <value>Clear filters</value> </data> <data name="ClearFiltersBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Clear filters</value> </data> <data name="ClearFiltersLink.Content" xml:space="preserve"> <value>Clear filters</value> </data> <data name="Comment.Header" xml:space="preserve"> <value>Comment</value> <comment>"Comment" refers to the comment of the entry</comment> </data> <data name="CommentFilter.Header" xml:space="preserve"> <value>Comment</value> <comment>"Comment" refers to the comment of the entry</comment> </data> <data name="Delete.Text" xml:space="preserve"> <value>Delete</value> </data> <data name="DeleteDialog.CloseButtonText" xml:space="preserve"> <value>No</value> </data> <data name="DeleteDialog.PrimaryButtonText" xml:space="preserve"> <value>Yes</value> </data> <data name="DeleteDialogAreYouSure.Text" xml:space="preserve"> <value>Are you sure you want to delete this entry?</value> </data> <data name="DuplicateEntryIcon.[using:Microsoft.UI.Xaml.Controls]ToolTipService.ToolTip" xml:space="preserve"> <value>Duplicate entry</value> </data> <data name="Edit.Text" xml:space="preserve"> <value>Edit</value> </data> <data name="EmptyFilterResults.Text" xml:space="preserve"> <value>No filter results</value> </data> <data name="EmptyHosts.Text" xml:space="preserve"> <value>No entries in the hosts file</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Entries.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Entries</value> </data> <data name="EntryDialog.CloseButtonText" xml:space="preserve"> <value>Cancel</value> </data> <data name="FileChanged.Message" xml:space="preserve"> <value>Hosts file was modified externally.</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="FileSaveError_FileInUse" xml:space="preserve"> <value>The hosts file cannot be saved because it is being used by another process.</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="FileSaveError_Generic" xml:space="preserve"> <value>Unable to save the hosts file.</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="FileSaveError_NotElevated" xml:space="preserve"> <value>The hosts file cannot be saved because the program isn't running as administrator.</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="FilterBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Filters</value> </data> <data name="FilterBtn.[using:Microsoft.UI.Xaml.Controls]ToolTipService.ToolTip" xml:space="preserve"> <value>Filters</value> </data> <data name="Hosts.Header" xml:space="preserve"> <value>Hosts</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Hosts.[using:Microsoft.UI.Xaml.Controls]ToolTipService.ToolTip" xml:space="preserve"> <value>Separate multiple hosts by space (e.g. server server.local). Maximum 9 hosts per entry.</value> <comment>Do not localize "server" and "server.local"</comment> </data> <data name="HostsFilter.Header" xml:space="preserve"> <value>Hosts</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="MoveDown.Text" xml:space="preserve"> <value>Move down</value> </data> <data name="MoveUp.Text" xml:space="preserve"> <value>Move up</value> </data> <data name="OpenHostsFileBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Open hosts file</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="OpenHostsFileBtn.[using:Microsoft.UI.Xaml.Controls]ToolTipService.ToolTip" xml:space="preserve"> <value>Open hosts file</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Ping.Text" xml:space="preserve"> <value>Ping</value> <comment>"Ping" refers to the command-line utility, do not loc</comment> </data> <data name="PingIcon.[using:Microsoft.UI.Xaml.Controls]ToolTipService.ToolTip" xml:space="preserve"> <value>Ping response</value> <comment>"Ping" refers to the command-line utility, do not loc</comment> </data> <data name="Reload.Content" xml:space="preserve"> <value>Reload</value> </data> <data name="SettingsBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Settings</value> </data> <data name="SettingsBtn.[using:Microsoft.UI.Xaml.Controls]ToolTipService.ToolTip" xml:space="preserve"> <value>Settings</value> </data> <data name="ShowOnlyDuplicates.Header" xml:space="preserve"> <value>Show only duplicates</value> </data> <data name="TooManyHostsTeachingTip.Subtitle" xml:space="preserve"> <value>Only 9 hosts per entry are supported. The affected entries have been split. This will take effect on next change.</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="TooManyHostsTeachingTip.Title" xml:space="preserve"> <value>Entries contain too many hosts</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="UpdateBtn" xml:space="preserve"> <value>Update</value> </data> <data name="UpdateEntry_Title" xml:space="preserve"> <value>Update the entry</value> </data> <data name="WarningDialog_AcceptBtn" xml:space="preserve"> <value>Accept</value> </data> <data name="WarningDialog_QuitBtn" xml:space="preserve"> <value>Quit</value> </data> <data name="WarningDialog_Text" xml:space="preserve"> <value>Altering hosts file has direct real world impact of how this computer resolves domain names.</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="WarningDialog_Title" xml:space="preserve"> <value>Warning</value> </data> <data name="WindowAdminTitle" xml:space="preserve"> <value>Administrator: Hosts File Editor</value> <comment>Title of the window when running as administrator. "Hosts File Editor" is the name of the utility. "Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="WindowTitle" xml:space="preserve"> <value>Hosts File Editor</value> <comment>Title of the window when running as user. "Hosts File Editor" is the name of the utility. "Hosts" refers to the system hosts file, do not loc</comment> </data> </root>
brianteeman
a77a7fd936ab54d21f14e6f77425202c7ecd5cdd
98e2a62c21f7d80918ccc0a6936eedf97e501843
Can we remove this here too https://github.com/microsoft/PowerToys/blob/main/.github/actions/spell-check/expect.txt#L1680
crutkas
366
microsoft/PowerToys
28,984
Modules/hosts typo
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request Fixes simple typo/grammar error. 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. <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [ ] **Closes:** #xxx - [ ] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected - [ ] **Tests:** Added/updated and all pass - [ ] **Localization:** All end user facing strings can be localized - [ ] **Dev docs:** Added/updated - [ ] **New binaries:** Added on the required places - [ ] [JSON for signing](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ESRPSigning_core.json) for new binaries - [ ] [WXS for installer](https://github.com/microsoft/PowerToys/blob/main/installer/PowerToysSetup/Product.wxs) for new binaries and localization folder - [ ] [YML for CI pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ci/templates/build-powertoys-steps.yml) for new test projects - [ ] [YML for signed pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/release.yml) - [ ] **Documentation updated:** If checked, please file a pull request on [our docs repo](https://github.com/MicrosoftDocs/windows-uwp/tree/docs/hub/powertoys) and link it here: #xxx <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed used a dictionary ;)
null
2023-10-03 20:57:22+00:00
2023-10-04 10:02:37+00:00
src/modules/Hosts/Hosts/Strings/en-us/Resources.resw
<?xml version="1.0" encoding="utf-8"?> <root> <!-- Microsoft ResX Schema Version 2.0 The primary goals of this format is to allow a simple XML format that is mostly human readable. The generation and parsing of the various data types are done through the TypeConverter classes associated with the data types. Example: ... ado.net/XML headers & schema ... <resheader name="resmimetype">text/microsoft-resx</resheader> <resheader name="version">2.0</resheader> <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader> <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader> <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data> <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data> <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64"> <value>[base64 mime encoded serialized .NET Framework object]</value> </data> <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value> <comment>This is a comment</comment> </data> There are any number of "resheader" rows that contain simple name/value pairs. Each data row contains a name, and value. The row also contains a type or mimetype. Type corresponds to a .NET class that support text/value conversion through the TypeConverter architecture. Classes that don't support this are serialized and stored with the mimetype set. The mimetype is used for serialized objects, and tells the ResXResourceReader how to depersist the object. This is currently not extensible. For a given mimetype the value must be set accordingly: Note - application/x-microsoft.net.object.binary.base64 is the format that the ResXResourceWriter will generate, however the reader can read any of the formats listed below. mimetype: application/x-microsoft.net.object.binary.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.soap.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Soap.SoapFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.bytearray.base64 value : The object must be serialized into a byte array : using a System.ComponentModel.TypeConverter : and then encoded with base64 encoding. --> <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> <xsd:import namespace="http://www.w3.org/XML/1998/namespace" /> <xsd:element name="root" msdata:IsDataSet="true"> <xsd:complexType> <xsd:choice maxOccurs="unbounded"> <xsd:element name="metadata"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" /> </xsd:sequence> <xsd:attribute name="name" use="required" type="xsd:string" /> <xsd:attribute name="type" type="xsd:string" /> <xsd:attribute name="mimetype" type="xsd:string" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="assembly"> <xsd:complexType> <xsd:attribute name="alias" type="xsd:string" /> <xsd:attribute name="name" type="xsd:string" /> </xsd:complexType> </xsd:element> <xsd:element name="data"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" /> <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="resheader"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" /> </xsd:complexType> </xsd:element> </xsd:choice> </xsd:complexType> </xsd:element> </xsd:schema> <resheader name="resmimetype"> <value>text/microsoft-resx</value> </resheader> <resheader name="version"> <value>2.0</value> </resheader> <resheader name="reader"> <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <resheader name="writer"> <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <data name="Active.Header" xml:space="preserve"> <value>Active</value> </data> <data name="ActiveToggle.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Active</value> </data> <data name="AddBtn" xml:space="preserve"> <value>Add</value> </data> <data name="AddEntry.Text" xml:space="preserve"> <value>New entry</value> </data> <data name="AddEntryBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>New entry</value> </data> <data name="AddEntryBtn.[using:Microsoft.UI.Xaml.Controls]ToolTipService.ToolTip" xml:space="preserve"> <value>New entry (Ctrl+N)</value> </data> <data name="AddEntryLink.Content" xml:space="preserve"> <value>Add an entry</value> </data> <data name="AdditionalLinesBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Additional content</value> </data> <data name="AdditionalLinesBtn.[using:Microsoft.UI.Xaml.Controls]ToolTipService.ToolTip" xml:space="preserve"> <value>Additional content</value> </data> <data name="AdditionalLinesDialog.CloseButtonText" xml:space="preserve"> <value>Cancel</value> </data> <data name="AdditionalLinesDialog.PrimaryButtonText" xml:space="preserve"> <value>Save</value> </data> <data name="AdditionalLinesDialog.Title" xml:space="preserve"> <value>Additional content</value> </data> <data name="AddNewEntryDialog_Title" xml:space="preserve"> <value>Add new entry</value> </data> <data name="Address.Header" xml:space="preserve"> <value>Address</value> <comment>"Address" refers to the IP address of the entry</comment> </data> <data name="AddressFilter.Header" xml:space="preserve"> <value>Address</value> <comment>"Address" refers to the IP address of the entry</comment> </data> <data name="ClearFiltersBtn.Content" xml:space="preserve"> <value>Clear filters</value> </data> <data name="ClearFiltersBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Clear filters</value> </data> <data name="ClearFiltersLink.Content" xml:space="preserve"> <value>Clear filters</value> </data> <data name="Comment.Header" xml:space="preserve"> <value>Comment</value> <comment>"Comment" refers to the comment of the entry</comment> </data> <data name="CommentFilter.Header" xml:space="preserve"> <value>Comment</value> <comment>"Comment" refers to the comment of the entry</comment> </data> <data name="Delete.Text" xml:space="preserve"> <value>Delete</value> </data> <data name="DeleteDialog.CloseButtonText" xml:space="preserve"> <value>No</value> </data> <data name="DeleteDialog.PrimaryButtonText" xml:space="preserve"> <value>Yes</value> </data> <data name="DeleteDialogAreYouSure.Text" xml:space="preserve"> <value>Are you sure you want to delete this entry?</value> </data> <data name="DuplicateEntryIcon.[using:Microsoft.UI.Xaml.Controls]ToolTipService.ToolTip" xml:space="preserve"> <value>Duplicate entry</value> </data> <data name="Edit.Text" xml:space="preserve"> <value>Edit</value> </data> <data name="EmptyFilterResults.Text" xml:space="preserve"> <value>No filter results</value> </data> <data name="EmptyHosts.Text" xml:space="preserve"> <value>No entries in the hosts file</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Entries.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Entries</value> </data> <data name="EntryDialog.CloseButtonText" xml:space="preserve"> <value>Cancel</value> </data> <data name="FileChanged.Message" xml:space="preserve"> <value>Hosts file was modified externally.</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="FileSaveError_FileInUse" xml:space="preserve"> <value>The hosts file cannot be saved because it is being used by another process.</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="FileSaveError_Generic" xml:space="preserve"> <value>Unable to save the hosts file.</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="FileSaveError_NotElevated" xml:space="preserve"> <value>The hosts file cannot be saved because the program isn't running as administrator.</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="FilterBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Filters</value> </data> <data name="FilterBtn.[using:Microsoft.UI.Xaml.Controls]ToolTipService.ToolTip" xml:space="preserve"> <value>Filters</value> </data> <data name="Hosts.Header" xml:space="preserve"> <value>Hosts</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Hosts.[using:Microsoft.UI.Xaml.Controls]ToolTipService.ToolTip" xml:space="preserve"> <value>Seperate multiple hosts by space (e.g. server server.local). Maximum 9 hosts per entry.</value> <comment>Do not localize "server" and "server.local"</comment> </data> <data name="HostsFilter.Header" xml:space="preserve"> <value>Hosts</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="MoveDown.Text" xml:space="preserve"> <value>Move down</value> </data> <data name="MoveUp.Text" xml:space="preserve"> <value>Move up</value> </data> <data name="OpenHostsFileBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Open hosts file</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="OpenHostsFileBtn.[using:Microsoft.UI.Xaml.Controls]ToolTipService.ToolTip" xml:space="preserve"> <value>Open hosts file</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Ping.Text" xml:space="preserve"> <value>Ping</value> <comment>"Ping" refers to the command-line utility, do not loc</comment> </data> <data name="PingIcon.[using:Microsoft.UI.Xaml.Controls]ToolTipService.ToolTip" xml:space="preserve"> <value>Ping response</value> <comment>"Ping" refers to the command-line utility, do not loc</comment> </data> <data name="Reload.Content" xml:space="preserve"> <value>Reload</value> </data> <data name="SettingsBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Settings</value> </data> <data name="SettingsBtn.[using:Microsoft.UI.Xaml.Controls]ToolTipService.ToolTip" xml:space="preserve"> <value>Settings</value> </data> <data name="ShowOnlyDuplicates.Header" xml:space="preserve"> <value>Show only duplicates</value> </data> <data name="TooManyHostsTeachingTip.Subtitle" xml:space="preserve"> <value>Only 9 hosts per entry are supported. The affected entries have been split. This will take effect on next change.</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="TooManyHostsTeachingTip.Title" xml:space="preserve"> <value>Entries contain too many hosts</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="UpdateBtn" xml:space="preserve"> <value>Update</value> </data> <data name="UpdateEntry_Title" xml:space="preserve"> <value>Update the entry</value> </data> <data name="WarningDialog_AcceptBtn" xml:space="preserve"> <value>Accept</value> </data> <data name="WarningDialog_QuitBtn" xml:space="preserve"> <value>Quit</value> </data> <data name="WarningDialog_Text" xml:space="preserve"> <value>Altering hosts file has direct real world impact of how this computer resolves domain names.</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="WarningDialog_Title" xml:space="preserve"> <value>Warning</value> </data> <data name="WindowAdminTitle" xml:space="preserve"> <value>Administrator: Hosts File Editor</value> <comment>Title of the window when running as administrator. "Hosts File Editor" is the name of the utility. "Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="WindowTitle" xml:space="preserve"> <value>Hosts File Editor</value> <comment>Title of the window when running as user. "Hosts File Editor" is the name of the utility. "Hosts" refers to the system hosts file, do not loc</comment> </data> </root>
<?xml version="1.0" encoding="utf-8"?> <root> <!-- Microsoft ResX Schema Version 2.0 The primary goals of this format is to allow a simple XML format that is mostly human readable. The generation and parsing of the various data types are done through the TypeConverter classes associated with the data types. Example: ... ado.net/XML headers & schema ... <resheader name="resmimetype">text/microsoft-resx</resheader> <resheader name="version">2.0</resheader> <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader> <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader> <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data> <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data> <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64"> <value>[base64 mime encoded serialized .NET Framework object]</value> </data> <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value> <comment>This is a comment</comment> </data> There are any number of "resheader" rows that contain simple name/value pairs. Each data row contains a name, and value. The row also contains a type or mimetype. Type corresponds to a .NET class that support text/value conversion through the TypeConverter architecture. Classes that don't support this are serialized and stored with the mimetype set. The mimetype is used for serialized objects, and tells the ResXResourceReader how to depersist the object. This is currently not extensible. For a given mimetype the value must be set accordingly: Note - application/x-microsoft.net.object.binary.base64 is the format that the ResXResourceWriter will generate, however the reader can read any of the formats listed below. mimetype: application/x-microsoft.net.object.binary.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.soap.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Soap.SoapFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.bytearray.base64 value : The object must be serialized into a byte array : using a System.ComponentModel.TypeConverter : and then encoded with base64 encoding. --> <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> <xsd:import namespace="http://www.w3.org/XML/1998/namespace" /> <xsd:element name="root" msdata:IsDataSet="true"> <xsd:complexType> <xsd:choice maxOccurs="unbounded"> <xsd:element name="metadata"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" /> </xsd:sequence> <xsd:attribute name="name" use="required" type="xsd:string" /> <xsd:attribute name="type" type="xsd:string" /> <xsd:attribute name="mimetype" type="xsd:string" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="assembly"> <xsd:complexType> <xsd:attribute name="alias" type="xsd:string" /> <xsd:attribute name="name" type="xsd:string" /> </xsd:complexType> </xsd:element> <xsd:element name="data"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" /> <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="resheader"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" /> </xsd:complexType> </xsd:element> </xsd:choice> </xsd:complexType> </xsd:element> </xsd:schema> <resheader name="resmimetype"> <value>text/microsoft-resx</value> </resheader> <resheader name="version"> <value>2.0</value> </resheader> <resheader name="reader"> <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <resheader name="writer"> <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <data name="Active.Header" xml:space="preserve"> <value>Active</value> </data> <data name="ActiveToggle.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Active</value> </data> <data name="AddBtn" xml:space="preserve"> <value>Add</value> </data> <data name="AddEntry.Text" xml:space="preserve"> <value>New entry</value> </data> <data name="AddEntryBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>New entry</value> </data> <data name="AddEntryBtn.[using:Microsoft.UI.Xaml.Controls]ToolTipService.ToolTip" xml:space="preserve"> <value>New entry (Ctrl+N)</value> </data> <data name="AddEntryLink.Content" xml:space="preserve"> <value>Add an entry</value> </data> <data name="AdditionalLinesBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Additional content</value> </data> <data name="AdditionalLinesBtn.[using:Microsoft.UI.Xaml.Controls]ToolTipService.ToolTip" xml:space="preserve"> <value>Additional content</value> </data> <data name="AdditionalLinesDialog.CloseButtonText" xml:space="preserve"> <value>Cancel</value> </data> <data name="AdditionalLinesDialog.PrimaryButtonText" xml:space="preserve"> <value>Save</value> </data> <data name="AdditionalLinesDialog.Title" xml:space="preserve"> <value>Additional content</value> </data> <data name="AddNewEntryDialog_Title" xml:space="preserve"> <value>Add new entry</value> </data> <data name="Address.Header" xml:space="preserve"> <value>Address</value> <comment>"Address" refers to the IP address of the entry</comment> </data> <data name="AddressFilter.Header" xml:space="preserve"> <value>Address</value> <comment>"Address" refers to the IP address of the entry</comment> </data> <data name="ClearFiltersBtn.Content" xml:space="preserve"> <value>Clear filters</value> </data> <data name="ClearFiltersBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Clear filters</value> </data> <data name="ClearFiltersLink.Content" xml:space="preserve"> <value>Clear filters</value> </data> <data name="Comment.Header" xml:space="preserve"> <value>Comment</value> <comment>"Comment" refers to the comment of the entry</comment> </data> <data name="CommentFilter.Header" xml:space="preserve"> <value>Comment</value> <comment>"Comment" refers to the comment of the entry</comment> </data> <data name="Delete.Text" xml:space="preserve"> <value>Delete</value> </data> <data name="DeleteDialog.CloseButtonText" xml:space="preserve"> <value>No</value> </data> <data name="DeleteDialog.PrimaryButtonText" xml:space="preserve"> <value>Yes</value> </data> <data name="DeleteDialogAreYouSure.Text" xml:space="preserve"> <value>Are you sure you want to delete this entry?</value> </data> <data name="DuplicateEntryIcon.[using:Microsoft.UI.Xaml.Controls]ToolTipService.ToolTip" xml:space="preserve"> <value>Duplicate entry</value> </data> <data name="Edit.Text" xml:space="preserve"> <value>Edit</value> </data> <data name="EmptyFilterResults.Text" xml:space="preserve"> <value>No filter results</value> </data> <data name="EmptyHosts.Text" xml:space="preserve"> <value>No entries in the hosts file</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Entries.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Entries</value> </data> <data name="EntryDialog.CloseButtonText" xml:space="preserve"> <value>Cancel</value> </data> <data name="FileChanged.Message" xml:space="preserve"> <value>Hosts file was modified externally.</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="FileSaveError_FileInUse" xml:space="preserve"> <value>The hosts file cannot be saved because it is being used by another process.</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="FileSaveError_Generic" xml:space="preserve"> <value>Unable to save the hosts file.</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="FileSaveError_NotElevated" xml:space="preserve"> <value>The hosts file cannot be saved because the program isn't running as administrator.</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="FilterBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Filters</value> </data> <data name="FilterBtn.[using:Microsoft.UI.Xaml.Controls]ToolTipService.ToolTip" xml:space="preserve"> <value>Filters</value> </data> <data name="Hosts.Header" xml:space="preserve"> <value>Hosts</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Hosts.[using:Microsoft.UI.Xaml.Controls]ToolTipService.ToolTip" xml:space="preserve"> <value>Separate multiple hosts by space (e.g. server server.local). Maximum 9 hosts per entry.</value> <comment>Do not localize "server" and "server.local"</comment> </data> <data name="HostsFilter.Header" xml:space="preserve"> <value>Hosts</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="MoveDown.Text" xml:space="preserve"> <value>Move down</value> </data> <data name="MoveUp.Text" xml:space="preserve"> <value>Move up</value> </data> <data name="OpenHostsFileBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Open hosts file</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="OpenHostsFileBtn.[using:Microsoft.UI.Xaml.Controls]ToolTipService.ToolTip" xml:space="preserve"> <value>Open hosts file</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="Ping.Text" xml:space="preserve"> <value>Ping</value> <comment>"Ping" refers to the command-line utility, do not loc</comment> </data> <data name="PingIcon.[using:Microsoft.UI.Xaml.Controls]ToolTipService.ToolTip" xml:space="preserve"> <value>Ping response</value> <comment>"Ping" refers to the command-line utility, do not loc</comment> </data> <data name="Reload.Content" xml:space="preserve"> <value>Reload</value> </data> <data name="SettingsBtn.[using:Microsoft.UI.Xaml.Automation]AutomationProperties.Name" xml:space="preserve"> <value>Settings</value> </data> <data name="SettingsBtn.[using:Microsoft.UI.Xaml.Controls]ToolTipService.ToolTip" xml:space="preserve"> <value>Settings</value> </data> <data name="ShowOnlyDuplicates.Header" xml:space="preserve"> <value>Show only duplicates</value> </data> <data name="TooManyHostsTeachingTip.Subtitle" xml:space="preserve"> <value>Only 9 hosts per entry are supported. The affected entries have been split. This will take effect on next change.</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="TooManyHostsTeachingTip.Title" xml:space="preserve"> <value>Entries contain too many hosts</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="UpdateBtn" xml:space="preserve"> <value>Update</value> </data> <data name="UpdateEntry_Title" xml:space="preserve"> <value>Update the entry</value> </data> <data name="WarningDialog_AcceptBtn" xml:space="preserve"> <value>Accept</value> </data> <data name="WarningDialog_QuitBtn" xml:space="preserve"> <value>Quit</value> </data> <data name="WarningDialog_Text" xml:space="preserve"> <value>Altering hosts file has direct real world impact of how this computer resolves domain names.</value> <comment>"Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="WarningDialog_Title" xml:space="preserve"> <value>Warning</value> </data> <data name="WindowAdminTitle" xml:space="preserve"> <value>Administrator: Hosts File Editor</value> <comment>Title of the window when running as administrator. "Hosts File Editor" is the name of the utility. "Hosts" refers to the system hosts file, do not loc</comment> </data> <data name="WindowTitle" xml:space="preserve"> <value>Hosts File Editor</value> <comment>Title of the window when running as user. "Hosts File Editor" is the name of the utility. "Hosts" refers to the system hosts file, do not loc</comment> </data> </root>
brianteeman
a77a7fd936ab54d21f14e6f77425202c7ecd5cdd
98e2a62c21f7d80918ccc0a6936eedf97e501843
yes - I will do that in its own PR so that each PR addresses just one issue
brianteeman
367
microsoft/PowerToys
28,975
[FancyZones] Filtering popup windows - follow up PR
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request Follow-up for https://github.com/microsoft/PowerToys/pull/28956. Removing temporary solution for the hotfix, and updating the generally used filter of processable windows. <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [ ] **Closes:** #xxx - [ ] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected - [ ] **Tests:** Added/updated and all pass - [ ] **Localization:** All end user facing strings can be localized - [ ] **Dev docs:** Added/updated - [ ] **New binaries:** Added on the required places - [ ] [JSON for signing](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ESRPSigning_core.json) for new binaries - [ ] [WXS for installer](https://github.com/microsoft/PowerToys/blob/main/installer/PowerToysSetup/Product.wxs) for new binaries and localization folder - [ ] [YML for CI pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ci/templates/build-powertoys-steps.yml) for new test projects - [ ] [YML for signed pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/release.yml) - [ ] **Documentation updated:** If checked, please file a pull request on [our docs repo](https://github.com/MicrosoftDocs/windows-uwp/tree/docs/hub/powertoys) and link it here: #xxx <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed
null
2023-10-03 12:28:25+00:00
2023-10-12 17:58:45+00:00
src/modules/fancyzones/FancyZonesLib/FancyZonesWindowProcessing.cpp
#include "pch.h" #include "FancyZonesWindowProcessing.h" #include <FancyZonesLib/Settings.h> #include <FancyZonesLib/VirtualDesktop.h> #include <FancyZonesLib/WindowUtils.h> bool FancyZonesWindowProcessing::IsProcessable(HWND window) noexcept { const bool isSplashScreen = FancyZonesWindowUtils::IsSplashScreen(window); if (isSplashScreen) { return false; } const bool windowMinimized = IsIconic(window); if (windowMinimized) { return false; } const bool standard = FancyZonesWindowUtils::IsStandardWindow(window); if (!standard) { return false; } // popup could be the window we don't want to snap: start menu, notification popup, tray window, etc. // also, popup could be the windows we want to snap disregarding the "allowSnapPopupWindows" setting, e.g. Telegram bool isPopup = FancyZonesWindowUtils::IsPopupWindow(window) && !FancyZonesWindowUtils::HasThickFrameAndMinimizeMaximizeButtons(window); if (isPopup && !FancyZonesSettings::settings().allowSnapPopupWindows) { return false; } // allow child windows auto hasOwner = FancyZonesWindowUtils::HasVisibleOwner(window); if (hasOwner && !FancyZonesSettings::settings().allowSnapChildWindows) { return false; } if (FancyZonesWindowUtils::IsExcluded(window)) { return false; } // Switch between virtual desktops results with posting same windows messages that also indicate // creation of new window. We need to check if window being processed is on currently active desktop. if (!VirtualDesktop::instance().IsWindowOnCurrentDesktop(window)) { return false; } return true; }
#include "pch.h" #include "FancyZonesWindowProcessing.h" #include <FancyZonesLib/Settings.h> #include <FancyZonesLib/VirtualDesktop.h> #include <FancyZonesLib/WindowUtils.h> bool FancyZonesWindowProcessing::IsProcessable(HWND window) noexcept { const bool isSplashScreen = FancyZonesWindowUtils::IsSplashScreen(window); if (isSplashScreen) { return false; } const bool windowMinimized = IsIconic(window); if (windowMinimized) { return false; } const bool standard = FancyZonesWindowUtils::IsStandardWindow(window); if (!standard) { return false; } // popup could be the window we don't want to snap: start menu, notification popup, tray window, etc. // also, popup could be the windows we want to snap disregarding the "allowSnapPopupWindows" setting, e.g. Telegram bool isPopup = FancyZonesWindowUtils::IsPopupWindow(window); bool hasThickFrame = FancyZonesWindowUtils::HasThickFrame(window); if (isPopup && (!hasThickFrame || !FancyZonesSettings::settings().allowSnapPopupWindows)) { return false; } // allow child windows auto hasOwner = FancyZonesWindowUtils::HasVisibleOwner(window); if (hasOwner && !FancyZonesSettings::settings().allowSnapChildWindows) { return false; } if (FancyZonesWindowUtils::IsExcluded(window)) { return false; } // Switch between virtual desktops results with posting same windows messages that also indicate // creation of new window. We need to check if window being processed is on currently active desktop. if (!VirtualDesktop::instance().IsWindowOnCurrentDesktop(window)) { return false; } return true; }
SeraphimaZykova
93d80f542c6c111a318e9f43370f4e01dafd0a4c
1b333dfee001b2654a16cc8774f8864e895db067
```suggestion if (isPopup && (!hasThickFrame || !FancyZonesSettings::settings().allowSnapPopupWindows)) ``` The current way it's written is a bit confusing in my opinion. I've had to use Morgan's Theorem to make some sense of what this line meant. I suggest changing it like this to make it a bit more easy to reason about. WDYT?
jaimecbernardo
368
microsoft/PowerToys
28,975
[FancyZones] Filtering popup windows - follow up PR
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request Follow-up for https://github.com/microsoft/PowerToys/pull/28956. Removing temporary solution for the hotfix, and updating the generally used filter of processable windows. <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [ ] **Closes:** #xxx - [ ] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected - [ ] **Tests:** Added/updated and all pass - [ ] **Localization:** All end user facing strings can be localized - [ ] **Dev docs:** Added/updated - [ ] **New binaries:** Added on the required places - [ ] [JSON for signing](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ESRPSigning_core.json) for new binaries - [ ] [WXS for installer](https://github.com/microsoft/PowerToys/blob/main/installer/PowerToysSetup/Product.wxs) for new binaries and localization folder - [ ] [YML for CI pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ci/templates/build-powertoys-steps.yml) for new test projects - [ ] [YML for signed pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/release.yml) - [ ] **Documentation updated:** If checked, please file a pull request on [our docs repo](https://github.com/MicrosoftDocs/windows-uwp/tree/docs/hub/powertoys) and link it here: #xxx <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed
null
2023-10-03 12:28:25+00:00
2023-10-12 17:58:45+00:00
src/modules/fancyzones/FancyZonesLib/FancyZonesWindowProcessing.cpp
#include "pch.h" #include "FancyZonesWindowProcessing.h" #include <FancyZonesLib/Settings.h> #include <FancyZonesLib/VirtualDesktop.h> #include <FancyZonesLib/WindowUtils.h> bool FancyZonesWindowProcessing::IsProcessable(HWND window) noexcept { const bool isSplashScreen = FancyZonesWindowUtils::IsSplashScreen(window); if (isSplashScreen) { return false; } const bool windowMinimized = IsIconic(window); if (windowMinimized) { return false; } const bool standard = FancyZonesWindowUtils::IsStandardWindow(window); if (!standard) { return false; } // popup could be the window we don't want to snap: start menu, notification popup, tray window, etc. // also, popup could be the windows we want to snap disregarding the "allowSnapPopupWindows" setting, e.g. Telegram bool isPopup = FancyZonesWindowUtils::IsPopupWindow(window) && !FancyZonesWindowUtils::HasThickFrameAndMinimizeMaximizeButtons(window); if (isPopup && !FancyZonesSettings::settings().allowSnapPopupWindows) { return false; } // allow child windows auto hasOwner = FancyZonesWindowUtils::HasVisibleOwner(window); if (hasOwner && !FancyZonesSettings::settings().allowSnapChildWindows) { return false; } if (FancyZonesWindowUtils::IsExcluded(window)) { return false; } // Switch between virtual desktops results with posting same windows messages that also indicate // creation of new window. We need to check if window being processed is on currently active desktop. if (!VirtualDesktop::instance().IsWindowOnCurrentDesktop(window)) { return false; } return true; }
#include "pch.h" #include "FancyZonesWindowProcessing.h" #include <FancyZonesLib/Settings.h> #include <FancyZonesLib/VirtualDesktop.h> #include <FancyZonesLib/WindowUtils.h> bool FancyZonesWindowProcessing::IsProcessable(HWND window) noexcept { const bool isSplashScreen = FancyZonesWindowUtils::IsSplashScreen(window); if (isSplashScreen) { return false; } const bool windowMinimized = IsIconic(window); if (windowMinimized) { return false; } const bool standard = FancyZonesWindowUtils::IsStandardWindow(window); if (!standard) { return false; } // popup could be the window we don't want to snap: start menu, notification popup, tray window, etc. // also, popup could be the windows we want to snap disregarding the "allowSnapPopupWindows" setting, e.g. Telegram bool isPopup = FancyZonesWindowUtils::IsPopupWindow(window); bool hasThickFrame = FancyZonesWindowUtils::HasThickFrame(window); if (isPopup && (!hasThickFrame || !FancyZonesSettings::settings().allowSnapPopupWindows)) { return false; } // allow child windows auto hasOwner = FancyZonesWindowUtils::HasVisibleOwner(window); if (hasOwner && !FancyZonesSettings::settings().allowSnapChildWindows) { return false; } if (FancyZonesWindowUtils::IsExcluded(window)) { return false; } // Switch between virtual desktops results with posting same windows messages that also indicate // creation of new window. We need to check if window being processed is on currently active desktop. if (!VirtualDesktop::instance().IsWindowOnCurrentDesktop(window)) { return false; } return true; }
SeraphimaZykova
93d80f542c6c111a318e9f43370f4e01dafd0a4c
1b333dfee001b2654a16cc8774f8864e895db067
Yeah, looks good to me. The result is the same but seems to be more readable. Thanks!
SeraphimaZykova
369
microsoft/PowerToys
28,972
[Run > Shell plugin] Shell selection improvements
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request ⚠ This PR breake existing third party plugins that have ComboBox options! ⚠ _(For compatibility reason we could implement old and new code. But this means we have duplicated code.)_ This PR improves the shell settings for the Shell plugin. Changes in this PR: - The ComboBox items of a `PluginAdditionalOption` now support reordering without braking existing user settings. - PowerShell 7 has been added. - New settings to run CMD, PowerShell and PowerShell 7 in Windows Terminal as console host. - Various text improvements. <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [x] **Closes:** #28876, #28783 - [x] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected - [x] **Tests:** Added/updated and all pass - [x] **Localization:** All end user facing strings can be localized - [ ] **Dev docs:** Added/updated - [ ] **New binaries:** Added on the required places - [ ] [JSON for signing](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ESRPSigning_core.json) for new binaries - [ ] [WXS for installer](https://github.com/microsoft/PowerToys/blob/main/installer/PowerToysSetup/Product.wxs) for new binaries and localization folder - [ ] [YML for CI pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ci/templates/build-powertoys-steps.yml) for new test projects - [ ] [YML for signed pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/release.yml) - [ ] **Documentation updated:** If checked, please file a pull request on [our docs repo](https://github.com/MicrosoftDocs/windows-uwp/tree/docs/hub/powertoys) and link it here: #xxx <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments ![image](https://github.com/microsoft/PowerToys/assets/61519853/21c2efa9-091c-461d-821c-2ddfe3a38b2f) _Note: The name of the "Find and run executable file" item has changed after creating the screenshot._ ![image](https://github.com/microsoft/PowerToys/assets/61519853/77923c40-6230-4cd4-b28d-a6e1c7ba0f11) <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed - Tested settings functionality. - Tested the new shell execution modes. - Validated that setting don't hang or crash if the json content uses the old notation.
null
2023-10-03 09:48:39+00:00
2023-10-11 12:54:50+00:00
src/modules/launcher/Plugins/Microsoft.Plugin.Shell/Properties/Resources.resx
<?xml version="1.0" encoding="utf-8"?> <root> <!-- Microsoft ResX Schema Version 2.0 The primary goals of this format is to allow a simple XML format that is mostly human readable. The generation and parsing of the various data types are done through the TypeConverter classes associated with the data types. Example: ... ado.net/XML headers & schema ... <resheader name="resmimetype">text/microsoft-resx</resheader> <resheader name="version">2.0</resheader> <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader> <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader> <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data> <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data> <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64"> <value>[base64 mime encoded serialized .NET Framework object]</value> </data> <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value> <comment>This is a comment</comment> </data> There are any number of "resheader" rows that contain simple name/value pairs. Each data row contains a name, and value. The row also contains a type or mimetype. Type corresponds to a .NET class that support text/value conversion through the TypeConverter architecture. Classes that don't support this are serialized and stored with the mimetype set. The mimetype is used for serialized objects, and tells the ResXResourceReader how to depersist the object. This is currently not extensible. For a given mimetype the value must be set accordingly: Note - application/x-microsoft.net.object.binary.base64 is the format that the ResXResourceWriter will generate, however the reader can read any of the formats listed below. mimetype: application/x-microsoft.net.object.binary.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.soap.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Soap.SoapFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.bytearray.base64 value : The object must be serialized into a byte array : using a System.ComponentModel.TypeConverter : and then encoded with base64 encoding. --> <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> <xsd:import namespace="http://www.w3.org/XML/1998/namespace" /> <xsd:element name="root" msdata:IsDataSet="true"> <xsd:complexType> <xsd:choice maxOccurs="unbounded"> <xsd:element name="metadata"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" /> </xsd:sequence> <xsd:attribute name="name" use="required" type="xsd:string" /> <xsd:attribute name="type" type="xsd:string" /> <xsd:attribute name="mimetype" type="xsd:string" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="assembly"> <xsd:complexType> <xsd:attribute name="alias" type="xsd:string" /> <xsd:attribute name="name" type="xsd:string" /> </xsd:complexType> </xsd:element> <xsd:element name="data"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" /> <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="resheader"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" /> </xsd:complexType> </xsd:element> </xsd:choice> </xsd:complexType> </xsd:element> </xsd:schema> <resheader name="resmimetype"> <value>text/microsoft-resx</value> </resheader> <resheader name="version"> <value>2.0</value> </resheader> <resheader name="reader"> <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <resheader name="writer"> <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <data name="wox_plugin_cmd_plugin_name" xml:space="preserve"> <value>Shell</value> </data> <data name="wox_plugin_cmd_plugin_description" xml:space="preserve"> <value>Executes commands (e.g 'ping', 'cmd').</value> </data> <data name="wox_plugin_cmd_cmd_has_been_executed_times" xml:space="preserve"> <value>this command has been executed {0} times</value> </data> <data name="wox_plugin_cmd_execute_through_shell" xml:space="preserve"> <value>execute command through command shell</value> </data> <data name="wox_plugin_cmd_run_as_administrator" xml:space="preserve"> <value>Run as administrator (Ctrl+Shift+Enter)</value> </data> <data name="wox_plugin_cmd_command_failed" xml:space="preserve"> <value>Error running the command</value> </data> <data name="wox_plugin_cmd_command_not_found" xml:space="preserve"> <value>Command not found</value> </data> <data name="wox_plugin_cmd_run_as_user" xml:space="preserve"> <value>Run as different user (Ctrl+Shift+U)</value> </data> <data name="wox_leave_shell_open" xml:space="preserve"> <value>Keep shell open</value> </data> <data name="wox_shell_command_execution" xml:space="preserve"> <value>Shell command execution</value> </data> <data name="run_command_in_command_prompt" xml:space="preserve"> <value>Run command in Command Prompt (cmd.exe)</value> </data> <data name="run_command_in_powershell" xml:space="preserve"> <value>Run command in PowerShell (PowerShell.exe)</value> </data> <data name="find_executable_file_and_run_it" xml:space="preserve"> <value>Find executable file and run it</value> </data> <data name="run_command_in_windows_terminal" xml:space="preserve"> <value>Run command in Windows Terminal (wt.exe)</value> </data> </root>
<?xml version="1.0" encoding="utf-8"?> <root> <!-- Microsoft ResX Schema Version 2.0 The primary goals of this format is to allow a simple XML format that is mostly human readable. The generation and parsing of the various data types are done through the TypeConverter classes associated with the data types. Example: ... ado.net/XML headers & schema ... <resheader name="resmimetype">text/microsoft-resx</resheader> <resheader name="version">2.0</resheader> <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader> <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader> <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data> <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data> <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64"> <value>[base64 mime encoded serialized .NET Framework object]</value> </data> <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value> <comment>This is a comment</comment> </data> There are any number of "resheader" rows that contain simple name/value pairs. Each data row contains a name, and value. The row also contains a type or mimetype. Type corresponds to a .NET class that support text/value conversion through the TypeConverter architecture. Classes that don't support this are serialized and stored with the mimetype set. The mimetype is used for serialized objects, and tells the ResXResourceReader how to depersist the object. This is currently not extensible. For a given mimetype the value must be set accordingly: Note - application/x-microsoft.net.object.binary.base64 is the format that the ResXResourceWriter will generate, however the reader can read any of the formats listed below. mimetype: application/x-microsoft.net.object.binary.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.soap.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Soap.SoapFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.bytearray.base64 value : The object must be serialized into a byte array : using a System.ComponentModel.TypeConverter : and then encoded with base64 encoding. --> <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> <xsd:import namespace="http://www.w3.org/XML/1998/namespace" /> <xsd:element name="root" msdata:IsDataSet="true"> <xsd:complexType> <xsd:choice maxOccurs="unbounded"> <xsd:element name="metadata"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" /> </xsd:sequence> <xsd:attribute name="name" use="required" type="xsd:string" /> <xsd:attribute name="type" type="xsd:string" /> <xsd:attribute name="mimetype" type="xsd:string" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="assembly"> <xsd:complexType> <xsd:attribute name="alias" type="xsd:string" /> <xsd:attribute name="name" type="xsd:string" /> </xsd:complexType> </xsd:element> <xsd:element name="data"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" /> <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="resheader"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" /> </xsd:complexType> </xsd:element> </xsd:choice> </xsd:complexType> </xsd:element> </xsd:schema> <resheader name="resmimetype"> <value>text/microsoft-resx</value> </resheader> <resheader name="version"> <value>2.0</value> </resheader> <resheader name="reader"> <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <resheader name="writer"> <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <data name="wox_plugin_cmd_plugin_name" xml:space="preserve"> <value>Shell</value> </data> <data name="wox_plugin_cmd_plugin_description" xml:space="preserve"> <value>Executes commands (e.g 'ping', 'cmd').</value> </data> <data name="wox_plugin_cmd_cmd_has_been_executed_times" xml:space="preserve"> <value>this command has been executed {0} times</value> </data> <data name="wox_plugin_cmd_execute_through_shell" xml:space="preserve"> <value>execute command through command shell</value> </data> <data name="wox_plugin_cmd_run_as_administrator" xml:space="preserve"> <value>Run as administrator (Ctrl+Shift+Enter)</value> </data> <data name="wox_plugin_cmd_command_failed" xml:space="preserve"> <value>Error running the command</value> </data> <data name="wox_plugin_cmd_command_not_found" xml:space="preserve"> <value>Command not found</value> </data> <data name="wox_plugin_cmd_run_as_user" xml:space="preserve"> <value>Run as different user (Ctrl+Shift+U)</value> </data> <data name="wox_leave_shell_open" xml:space="preserve"> <value>Keep shell open</value> </data> <data name="wox_shell_command_execution" xml:space="preserve"> <value>Command execution</value> </data> <data name="run_command_in_command_prompt" xml:space="preserve"> <value>Run in Command Prompt (cmd.exe)</value> </data> <data name="run_command_in_powershell" xml:space="preserve"> <value>Run in PowerShell (PowerShell.exe)</value> </data> <data name="find_executable_file_and_run_it" xml:space="preserve"> <value>Find and run the executable file</value> </data> <data name="run_command_in_powershell_seven" xml:space="preserve"> <value>Run in PowerShell 7 (pwsh.exe)</value> </data> <data name="run_command_in_windows_terminal_cmd" xml:space="preserve"> <value>Run in Command Prompt (cmd.exe) using Windows Terminal</value> </data> <data name="run_command_in_windows_terminal_powershell" xml:space="preserve"> <value>Run in PowerShell (PowerShell.exe) using Windows Terminal</value> </data> <data name="run_command_in_windows_terminal_powershell_seven" xml:space="preserve"> <value>Run in PowerShell 7 (pwsh.exe) using Windows Terminal</value> </data> <data name="run_plugin_cmd_wait_message" xml:space="preserve"> <value>Press Enter to continue</value> <comment>"Enter" means the Enter key on the keyboard.</comment> </data> <data name="wox_shell_command_execution_description" xml:space="preserve"> <value>All entries using the Windows Terminal force the Windows Terminal as the console host regardless of the system settings</value> </data> </root>
htcfreek
5d669df21a756f4381c0e0400917b45992fdb6bd
19827d009382e88d91f319cf5b65326c6bc6f9b1
```suggestion <value>All entries using the Windows Terminal force the Windows Terminal as the console host regardless of the system settings</value> ```
jaimecbernardo
370
microsoft/PowerToys
28,972
[Run > Shell plugin] Shell selection improvements
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request ⚠ This PR breake existing third party plugins that have ComboBox options! ⚠ _(For compatibility reason we could implement old and new code. But this means we have duplicated code.)_ This PR improves the shell settings for the Shell plugin. Changes in this PR: - The ComboBox items of a `PluginAdditionalOption` now support reordering without braking existing user settings. - PowerShell 7 has been added. - New settings to run CMD, PowerShell and PowerShell 7 in Windows Terminal as console host. - Various text improvements. <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [x] **Closes:** #28876, #28783 - [x] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected - [x] **Tests:** Added/updated and all pass - [x] **Localization:** All end user facing strings can be localized - [ ] **Dev docs:** Added/updated - [ ] **New binaries:** Added on the required places - [ ] [JSON for signing](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ESRPSigning_core.json) for new binaries - [ ] [WXS for installer](https://github.com/microsoft/PowerToys/blob/main/installer/PowerToysSetup/Product.wxs) for new binaries and localization folder - [ ] [YML for CI pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ci/templates/build-powertoys-steps.yml) for new test projects - [ ] [YML for signed pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/release.yml) - [ ] **Documentation updated:** If checked, please file a pull request on [our docs repo](https://github.com/MicrosoftDocs/windows-uwp/tree/docs/hub/powertoys) and link it here: #xxx <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments ![image](https://github.com/microsoft/PowerToys/assets/61519853/21c2efa9-091c-461d-821c-2ddfe3a38b2f) _Note: The name of the "Find and run executable file" item has changed after creating the screenshot._ ![image](https://github.com/microsoft/PowerToys/assets/61519853/77923c40-6230-4cd4-b28d-a6e1c7ba0f11) <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed - Tested settings functionality. - Tested the new shell execution modes. - Validated that setting don't hang or crash if the json content uses the old notation.
null
2023-10-03 09:48:39+00:00
2023-10-11 12:54:50+00:00
src/modules/launcher/Plugins/Microsoft.Plugin.Shell/Properties/Resources.resx
<?xml version="1.0" encoding="utf-8"?> <root> <!-- Microsoft ResX Schema Version 2.0 The primary goals of this format is to allow a simple XML format that is mostly human readable. The generation and parsing of the various data types are done through the TypeConverter classes associated with the data types. Example: ... ado.net/XML headers & schema ... <resheader name="resmimetype">text/microsoft-resx</resheader> <resheader name="version">2.0</resheader> <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader> <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader> <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data> <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data> <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64"> <value>[base64 mime encoded serialized .NET Framework object]</value> </data> <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value> <comment>This is a comment</comment> </data> There are any number of "resheader" rows that contain simple name/value pairs. Each data row contains a name, and value. The row also contains a type or mimetype. Type corresponds to a .NET class that support text/value conversion through the TypeConverter architecture. Classes that don't support this are serialized and stored with the mimetype set. The mimetype is used for serialized objects, and tells the ResXResourceReader how to depersist the object. This is currently not extensible. For a given mimetype the value must be set accordingly: Note - application/x-microsoft.net.object.binary.base64 is the format that the ResXResourceWriter will generate, however the reader can read any of the formats listed below. mimetype: application/x-microsoft.net.object.binary.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.soap.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Soap.SoapFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.bytearray.base64 value : The object must be serialized into a byte array : using a System.ComponentModel.TypeConverter : and then encoded with base64 encoding. --> <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> <xsd:import namespace="http://www.w3.org/XML/1998/namespace" /> <xsd:element name="root" msdata:IsDataSet="true"> <xsd:complexType> <xsd:choice maxOccurs="unbounded"> <xsd:element name="metadata"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" /> </xsd:sequence> <xsd:attribute name="name" use="required" type="xsd:string" /> <xsd:attribute name="type" type="xsd:string" /> <xsd:attribute name="mimetype" type="xsd:string" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="assembly"> <xsd:complexType> <xsd:attribute name="alias" type="xsd:string" /> <xsd:attribute name="name" type="xsd:string" /> </xsd:complexType> </xsd:element> <xsd:element name="data"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" /> <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="resheader"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" /> </xsd:complexType> </xsd:element> </xsd:choice> </xsd:complexType> </xsd:element> </xsd:schema> <resheader name="resmimetype"> <value>text/microsoft-resx</value> </resheader> <resheader name="version"> <value>2.0</value> </resheader> <resheader name="reader"> <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <resheader name="writer"> <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <data name="wox_plugin_cmd_plugin_name" xml:space="preserve"> <value>Shell</value> </data> <data name="wox_plugin_cmd_plugin_description" xml:space="preserve"> <value>Executes commands (e.g 'ping', 'cmd').</value> </data> <data name="wox_plugin_cmd_cmd_has_been_executed_times" xml:space="preserve"> <value>this command has been executed {0} times</value> </data> <data name="wox_plugin_cmd_execute_through_shell" xml:space="preserve"> <value>execute command through command shell</value> </data> <data name="wox_plugin_cmd_run_as_administrator" xml:space="preserve"> <value>Run as administrator (Ctrl+Shift+Enter)</value> </data> <data name="wox_plugin_cmd_command_failed" xml:space="preserve"> <value>Error running the command</value> </data> <data name="wox_plugin_cmd_command_not_found" xml:space="preserve"> <value>Command not found</value> </data> <data name="wox_plugin_cmd_run_as_user" xml:space="preserve"> <value>Run as different user (Ctrl+Shift+U)</value> </data> <data name="wox_leave_shell_open" xml:space="preserve"> <value>Keep shell open</value> </data> <data name="wox_shell_command_execution" xml:space="preserve"> <value>Shell command execution</value> </data> <data name="run_command_in_command_prompt" xml:space="preserve"> <value>Run command in Command Prompt (cmd.exe)</value> </data> <data name="run_command_in_powershell" xml:space="preserve"> <value>Run command in PowerShell (PowerShell.exe)</value> </data> <data name="find_executable_file_and_run_it" xml:space="preserve"> <value>Find executable file and run it</value> </data> <data name="run_command_in_windows_terminal" xml:space="preserve"> <value>Run command in Windows Terminal (wt.exe)</value> </data> </root>
<?xml version="1.0" encoding="utf-8"?> <root> <!-- Microsoft ResX Schema Version 2.0 The primary goals of this format is to allow a simple XML format that is mostly human readable. The generation and parsing of the various data types are done through the TypeConverter classes associated with the data types. Example: ... ado.net/XML headers & schema ... <resheader name="resmimetype">text/microsoft-resx</resheader> <resheader name="version">2.0</resheader> <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader> <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader> <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data> <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data> <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64"> <value>[base64 mime encoded serialized .NET Framework object]</value> </data> <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value> <comment>This is a comment</comment> </data> There are any number of "resheader" rows that contain simple name/value pairs. Each data row contains a name, and value. The row also contains a type or mimetype. Type corresponds to a .NET class that support text/value conversion through the TypeConverter architecture. Classes that don't support this are serialized and stored with the mimetype set. The mimetype is used for serialized objects, and tells the ResXResourceReader how to depersist the object. This is currently not extensible. For a given mimetype the value must be set accordingly: Note - application/x-microsoft.net.object.binary.base64 is the format that the ResXResourceWriter will generate, however the reader can read any of the formats listed below. mimetype: application/x-microsoft.net.object.binary.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.soap.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Soap.SoapFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.bytearray.base64 value : The object must be serialized into a byte array : using a System.ComponentModel.TypeConverter : and then encoded with base64 encoding. --> <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> <xsd:import namespace="http://www.w3.org/XML/1998/namespace" /> <xsd:element name="root" msdata:IsDataSet="true"> <xsd:complexType> <xsd:choice maxOccurs="unbounded"> <xsd:element name="metadata"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" /> </xsd:sequence> <xsd:attribute name="name" use="required" type="xsd:string" /> <xsd:attribute name="type" type="xsd:string" /> <xsd:attribute name="mimetype" type="xsd:string" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="assembly"> <xsd:complexType> <xsd:attribute name="alias" type="xsd:string" /> <xsd:attribute name="name" type="xsd:string" /> </xsd:complexType> </xsd:element> <xsd:element name="data"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" /> <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="resheader"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" /> </xsd:complexType> </xsd:element> </xsd:choice> </xsd:complexType> </xsd:element> </xsd:schema> <resheader name="resmimetype"> <value>text/microsoft-resx</value> </resheader> <resheader name="version"> <value>2.0</value> </resheader> <resheader name="reader"> <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <resheader name="writer"> <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <data name="wox_plugin_cmd_plugin_name" xml:space="preserve"> <value>Shell</value> </data> <data name="wox_plugin_cmd_plugin_description" xml:space="preserve"> <value>Executes commands (e.g 'ping', 'cmd').</value> </data> <data name="wox_plugin_cmd_cmd_has_been_executed_times" xml:space="preserve"> <value>this command has been executed {0} times</value> </data> <data name="wox_plugin_cmd_execute_through_shell" xml:space="preserve"> <value>execute command through command shell</value> </data> <data name="wox_plugin_cmd_run_as_administrator" xml:space="preserve"> <value>Run as administrator (Ctrl+Shift+Enter)</value> </data> <data name="wox_plugin_cmd_command_failed" xml:space="preserve"> <value>Error running the command</value> </data> <data name="wox_plugin_cmd_command_not_found" xml:space="preserve"> <value>Command not found</value> </data> <data name="wox_plugin_cmd_run_as_user" xml:space="preserve"> <value>Run as different user (Ctrl+Shift+U)</value> </data> <data name="wox_leave_shell_open" xml:space="preserve"> <value>Keep shell open</value> </data> <data name="wox_shell_command_execution" xml:space="preserve"> <value>Command execution</value> </data> <data name="run_command_in_command_prompt" xml:space="preserve"> <value>Run in Command Prompt (cmd.exe)</value> </data> <data name="run_command_in_powershell" xml:space="preserve"> <value>Run in PowerShell (PowerShell.exe)</value> </data> <data name="find_executable_file_and_run_it" xml:space="preserve"> <value>Find and run the executable file</value> </data> <data name="run_command_in_powershell_seven" xml:space="preserve"> <value>Run in PowerShell 7 (pwsh.exe)</value> </data> <data name="run_command_in_windows_terminal_cmd" xml:space="preserve"> <value>Run in Command Prompt (cmd.exe) using Windows Terminal</value> </data> <data name="run_command_in_windows_terminal_powershell" xml:space="preserve"> <value>Run in PowerShell (PowerShell.exe) using Windows Terminal</value> </data> <data name="run_command_in_windows_terminal_powershell_seven" xml:space="preserve"> <value>Run in PowerShell 7 (pwsh.exe) using Windows Terminal</value> </data> <data name="run_plugin_cmd_wait_message" xml:space="preserve"> <value>Press Enter to continue</value> <comment>"Enter" means the Enter key on the keyboard.</comment> </data> <data name="wox_shell_command_execution_description" xml:space="preserve"> <value>All entries using the Windows Terminal force the Windows Terminal as the console host regardless of the system settings</value> </data> </root>
htcfreek
5d669df21a756f4381c0e0400917b45992fdb6bd
19827d009382e88d91f319cf5b65326c6bc6f9b1
```suggestion <value>Find and run the executable file</value> ```
jaimecbernardo
371
microsoft/PowerToys
28,972
[Run > Shell plugin] Shell selection improvements
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request ⚠ This PR breake existing third party plugins that have ComboBox options! ⚠ _(For compatibility reason we could implement old and new code. But this means we have duplicated code.)_ This PR improves the shell settings for the Shell plugin. Changes in this PR: - The ComboBox items of a `PluginAdditionalOption` now support reordering without braking existing user settings. - PowerShell 7 has been added. - New settings to run CMD, PowerShell and PowerShell 7 in Windows Terminal as console host. - Various text improvements. <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [x] **Closes:** #28876, #28783 - [x] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected - [x] **Tests:** Added/updated and all pass - [x] **Localization:** All end user facing strings can be localized - [ ] **Dev docs:** Added/updated - [ ] **New binaries:** Added on the required places - [ ] [JSON for signing](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ESRPSigning_core.json) for new binaries - [ ] [WXS for installer](https://github.com/microsoft/PowerToys/blob/main/installer/PowerToysSetup/Product.wxs) for new binaries and localization folder - [ ] [YML for CI pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ci/templates/build-powertoys-steps.yml) for new test projects - [ ] [YML for signed pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/release.yml) - [ ] **Documentation updated:** If checked, please file a pull request on [our docs repo](https://github.com/MicrosoftDocs/windows-uwp/tree/docs/hub/powertoys) and link it here: #xxx <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments ![image](https://github.com/microsoft/PowerToys/assets/61519853/21c2efa9-091c-461d-821c-2ddfe3a38b2f) _Note: The name of the "Find and run executable file" item has changed after creating the screenshot._ ![image](https://github.com/microsoft/PowerToys/assets/61519853/77923c40-6230-4cd4-b28d-a6e1c7ba0f11) <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed - Tested settings functionality. - Tested the new shell execution modes. - Validated that setting don't hang or crash if the json content uses the old notation.
null
2023-10-03 09:48:39+00:00
2023-10-11 12:54:50+00:00
src/modules/launcher/Plugins/Microsoft.Plugin.Shell/Properties/Resources.resx
<?xml version="1.0" encoding="utf-8"?> <root> <!-- Microsoft ResX Schema Version 2.0 The primary goals of this format is to allow a simple XML format that is mostly human readable. The generation and parsing of the various data types are done through the TypeConverter classes associated with the data types. Example: ... ado.net/XML headers & schema ... <resheader name="resmimetype">text/microsoft-resx</resheader> <resheader name="version">2.0</resheader> <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader> <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader> <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data> <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data> <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64"> <value>[base64 mime encoded serialized .NET Framework object]</value> </data> <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value> <comment>This is a comment</comment> </data> There are any number of "resheader" rows that contain simple name/value pairs. Each data row contains a name, and value. The row also contains a type or mimetype. Type corresponds to a .NET class that support text/value conversion through the TypeConverter architecture. Classes that don't support this are serialized and stored with the mimetype set. The mimetype is used for serialized objects, and tells the ResXResourceReader how to depersist the object. This is currently not extensible. For a given mimetype the value must be set accordingly: Note - application/x-microsoft.net.object.binary.base64 is the format that the ResXResourceWriter will generate, however the reader can read any of the formats listed below. mimetype: application/x-microsoft.net.object.binary.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.soap.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Soap.SoapFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.bytearray.base64 value : The object must be serialized into a byte array : using a System.ComponentModel.TypeConverter : and then encoded with base64 encoding. --> <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> <xsd:import namespace="http://www.w3.org/XML/1998/namespace" /> <xsd:element name="root" msdata:IsDataSet="true"> <xsd:complexType> <xsd:choice maxOccurs="unbounded"> <xsd:element name="metadata"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" /> </xsd:sequence> <xsd:attribute name="name" use="required" type="xsd:string" /> <xsd:attribute name="type" type="xsd:string" /> <xsd:attribute name="mimetype" type="xsd:string" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="assembly"> <xsd:complexType> <xsd:attribute name="alias" type="xsd:string" /> <xsd:attribute name="name" type="xsd:string" /> </xsd:complexType> </xsd:element> <xsd:element name="data"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" /> <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="resheader"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" /> </xsd:complexType> </xsd:element> </xsd:choice> </xsd:complexType> </xsd:element> </xsd:schema> <resheader name="resmimetype"> <value>text/microsoft-resx</value> </resheader> <resheader name="version"> <value>2.0</value> </resheader> <resheader name="reader"> <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <resheader name="writer"> <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <data name="wox_plugin_cmd_plugin_name" xml:space="preserve"> <value>Shell</value> </data> <data name="wox_plugin_cmd_plugin_description" xml:space="preserve"> <value>Executes commands (e.g 'ping', 'cmd').</value> </data> <data name="wox_plugin_cmd_cmd_has_been_executed_times" xml:space="preserve"> <value>this command has been executed {0} times</value> </data> <data name="wox_plugin_cmd_execute_through_shell" xml:space="preserve"> <value>execute command through command shell</value> </data> <data name="wox_plugin_cmd_run_as_administrator" xml:space="preserve"> <value>Run as administrator (Ctrl+Shift+Enter)</value> </data> <data name="wox_plugin_cmd_command_failed" xml:space="preserve"> <value>Error running the command</value> </data> <data name="wox_plugin_cmd_command_not_found" xml:space="preserve"> <value>Command not found</value> </data> <data name="wox_plugin_cmd_run_as_user" xml:space="preserve"> <value>Run as different user (Ctrl+Shift+U)</value> </data> <data name="wox_leave_shell_open" xml:space="preserve"> <value>Keep shell open</value> </data> <data name="wox_shell_command_execution" xml:space="preserve"> <value>Shell command execution</value> </data> <data name="run_command_in_command_prompt" xml:space="preserve"> <value>Run command in Command Prompt (cmd.exe)</value> </data> <data name="run_command_in_powershell" xml:space="preserve"> <value>Run command in PowerShell (PowerShell.exe)</value> </data> <data name="find_executable_file_and_run_it" xml:space="preserve"> <value>Find executable file and run it</value> </data> <data name="run_command_in_windows_terminal" xml:space="preserve"> <value>Run command in Windows Terminal (wt.exe)</value> </data> </root>
<?xml version="1.0" encoding="utf-8"?> <root> <!-- Microsoft ResX Schema Version 2.0 The primary goals of this format is to allow a simple XML format that is mostly human readable. The generation and parsing of the various data types are done through the TypeConverter classes associated with the data types. Example: ... ado.net/XML headers & schema ... <resheader name="resmimetype">text/microsoft-resx</resheader> <resheader name="version">2.0</resheader> <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader> <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader> <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data> <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data> <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64"> <value>[base64 mime encoded serialized .NET Framework object]</value> </data> <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value> <comment>This is a comment</comment> </data> There are any number of "resheader" rows that contain simple name/value pairs. Each data row contains a name, and value. The row also contains a type or mimetype. Type corresponds to a .NET class that support text/value conversion through the TypeConverter architecture. Classes that don't support this are serialized and stored with the mimetype set. The mimetype is used for serialized objects, and tells the ResXResourceReader how to depersist the object. This is currently not extensible. For a given mimetype the value must be set accordingly: Note - application/x-microsoft.net.object.binary.base64 is the format that the ResXResourceWriter will generate, however the reader can read any of the formats listed below. mimetype: application/x-microsoft.net.object.binary.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.soap.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Soap.SoapFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.bytearray.base64 value : The object must be serialized into a byte array : using a System.ComponentModel.TypeConverter : and then encoded with base64 encoding. --> <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> <xsd:import namespace="http://www.w3.org/XML/1998/namespace" /> <xsd:element name="root" msdata:IsDataSet="true"> <xsd:complexType> <xsd:choice maxOccurs="unbounded"> <xsd:element name="metadata"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" /> </xsd:sequence> <xsd:attribute name="name" use="required" type="xsd:string" /> <xsd:attribute name="type" type="xsd:string" /> <xsd:attribute name="mimetype" type="xsd:string" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="assembly"> <xsd:complexType> <xsd:attribute name="alias" type="xsd:string" /> <xsd:attribute name="name" type="xsd:string" /> </xsd:complexType> </xsd:element> <xsd:element name="data"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" /> <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="resheader"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" /> </xsd:complexType> </xsd:element> </xsd:choice> </xsd:complexType> </xsd:element> </xsd:schema> <resheader name="resmimetype"> <value>text/microsoft-resx</value> </resheader> <resheader name="version"> <value>2.0</value> </resheader> <resheader name="reader"> <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <resheader name="writer"> <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <data name="wox_plugin_cmd_plugin_name" xml:space="preserve"> <value>Shell</value> </data> <data name="wox_plugin_cmd_plugin_description" xml:space="preserve"> <value>Executes commands (e.g 'ping', 'cmd').</value> </data> <data name="wox_plugin_cmd_cmd_has_been_executed_times" xml:space="preserve"> <value>this command has been executed {0} times</value> </data> <data name="wox_plugin_cmd_execute_through_shell" xml:space="preserve"> <value>execute command through command shell</value> </data> <data name="wox_plugin_cmd_run_as_administrator" xml:space="preserve"> <value>Run as administrator (Ctrl+Shift+Enter)</value> </data> <data name="wox_plugin_cmd_command_failed" xml:space="preserve"> <value>Error running the command</value> </data> <data name="wox_plugin_cmd_command_not_found" xml:space="preserve"> <value>Command not found</value> </data> <data name="wox_plugin_cmd_run_as_user" xml:space="preserve"> <value>Run as different user (Ctrl+Shift+U)</value> </data> <data name="wox_leave_shell_open" xml:space="preserve"> <value>Keep shell open</value> </data> <data name="wox_shell_command_execution" xml:space="preserve"> <value>Command execution</value> </data> <data name="run_command_in_command_prompt" xml:space="preserve"> <value>Run in Command Prompt (cmd.exe)</value> </data> <data name="run_command_in_powershell" xml:space="preserve"> <value>Run in PowerShell (PowerShell.exe)</value> </data> <data name="find_executable_file_and_run_it" xml:space="preserve"> <value>Find and run the executable file</value> </data> <data name="run_command_in_powershell_seven" xml:space="preserve"> <value>Run in PowerShell 7 (pwsh.exe)</value> </data> <data name="run_command_in_windows_terminal_cmd" xml:space="preserve"> <value>Run in Command Prompt (cmd.exe) using Windows Terminal</value> </data> <data name="run_command_in_windows_terminal_powershell" xml:space="preserve"> <value>Run in PowerShell (PowerShell.exe) using Windows Terminal</value> </data> <data name="run_command_in_windows_terminal_powershell_seven" xml:space="preserve"> <value>Run in PowerShell 7 (pwsh.exe) using Windows Terminal</value> </data> <data name="run_plugin_cmd_wait_message" xml:space="preserve"> <value>Press Enter to continue</value> <comment>"Enter" means the Enter key on the keyboard.</comment> </data> <data name="wox_shell_command_execution_description" xml:space="preserve"> <value>All entries using the Windows Terminal force the Windows Terminal as the console host regardless of the system settings</value> </data> </root>
htcfreek
5d669df21a756f4381c0e0400917b45992fdb6bd
19827d009382e88d91f319cf5b65326c6bc6f9b1
```suggestion <value>Command execution through the Windows shell</value> ```
jaimecbernardo
372
microsoft/PowerToys
28,972
[Run > Shell plugin] Shell selection improvements
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request ⚠ This PR breake existing third party plugins that have ComboBox options! ⚠ _(For compatibility reason we could implement old and new code. But this means we have duplicated code.)_ This PR improves the shell settings for the Shell plugin. Changes in this PR: - The ComboBox items of a `PluginAdditionalOption` now support reordering without braking existing user settings. - PowerShell 7 has been added. - New settings to run CMD, PowerShell and PowerShell 7 in Windows Terminal as console host. - Various text improvements. <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [x] **Closes:** #28876, #28783 - [x] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected - [x] **Tests:** Added/updated and all pass - [x] **Localization:** All end user facing strings can be localized - [ ] **Dev docs:** Added/updated - [ ] **New binaries:** Added on the required places - [ ] [JSON for signing](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ESRPSigning_core.json) for new binaries - [ ] [WXS for installer](https://github.com/microsoft/PowerToys/blob/main/installer/PowerToysSetup/Product.wxs) for new binaries and localization folder - [ ] [YML for CI pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ci/templates/build-powertoys-steps.yml) for new test projects - [ ] [YML for signed pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/release.yml) - [ ] **Documentation updated:** If checked, please file a pull request on [our docs repo](https://github.com/MicrosoftDocs/windows-uwp/tree/docs/hub/powertoys) and link it here: #xxx <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments ![image](https://github.com/microsoft/PowerToys/assets/61519853/21c2efa9-091c-461d-821c-2ddfe3a38b2f) _Note: The name of the "Find and run executable file" item has changed after creating the screenshot._ ![image](https://github.com/microsoft/PowerToys/assets/61519853/77923c40-6230-4cd4-b28d-a6e1c7ba0f11) <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed - Tested settings functionality. - Tested the new shell execution modes. - Validated that setting don't hang or crash if the json content uses the old notation.
null
2023-10-03 09:48:39+00:00
2023-10-11 12:54:50+00:00
src/modules/launcher/Plugins/Microsoft.Plugin.Shell/Properties/Resources.resx
<?xml version="1.0" encoding="utf-8"?> <root> <!-- Microsoft ResX Schema Version 2.0 The primary goals of this format is to allow a simple XML format that is mostly human readable. The generation and parsing of the various data types are done through the TypeConverter classes associated with the data types. Example: ... ado.net/XML headers & schema ... <resheader name="resmimetype">text/microsoft-resx</resheader> <resheader name="version">2.0</resheader> <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader> <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader> <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data> <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data> <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64"> <value>[base64 mime encoded serialized .NET Framework object]</value> </data> <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value> <comment>This is a comment</comment> </data> There are any number of "resheader" rows that contain simple name/value pairs. Each data row contains a name, and value. The row also contains a type or mimetype. Type corresponds to a .NET class that support text/value conversion through the TypeConverter architecture. Classes that don't support this are serialized and stored with the mimetype set. The mimetype is used for serialized objects, and tells the ResXResourceReader how to depersist the object. This is currently not extensible. For a given mimetype the value must be set accordingly: Note - application/x-microsoft.net.object.binary.base64 is the format that the ResXResourceWriter will generate, however the reader can read any of the formats listed below. mimetype: application/x-microsoft.net.object.binary.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.soap.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Soap.SoapFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.bytearray.base64 value : The object must be serialized into a byte array : using a System.ComponentModel.TypeConverter : and then encoded with base64 encoding. --> <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> <xsd:import namespace="http://www.w3.org/XML/1998/namespace" /> <xsd:element name="root" msdata:IsDataSet="true"> <xsd:complexType> <xsd:choice maxOccurs="unbounded"> <xsd:element name="metadata"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" /> </xsd:sequence> <xsd:attribute name="name" use="required" type="xsd:string" /> <xsd:attribute name="type" type="xsd:string" /> <xsd:attribute name="mimetype" type="xsd:string" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="assembly"> <xsd:complexType> <xsd:attribute name="alias" type="xsd:string" /> <xsd:attribute name="name" type="xsd:string" /> </xsd:complexType> </xsd:element> <xsd:element name="data"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" /> <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="resheader"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" /> </xsd:complexType> </xsd:element> </xsd:choice> </xsd:complexType> </xsd:element> </xsd:schema> <resheader name="resmimetype"> <value>text/microsoft-resx</value> </resheader> <resheader name="version"> <value>2.0</value> </resheader> <resheader name="reader"> <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <resheader name="writer"> <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <data name="wox_plugin_cmd_plugin_name" xml:space="preserve"> <value>Shell</value> </data> <data name="wox_plugin_cmd_plugin_description" xml:space="preserve"> <value>Executes commands (e.g 'ping', 'cmd').</value> </data> <data name="wox_plugin_cmd_cmd_has_been_executed_times" xml:space="preserve"> <value>this command has been executed {0} times</value> </data> <data name="wox_plugin_cmd_execute_through_shell" xml:space="preserve"> <value>execute command through command shell</value> </data> <data name="wox_plugin_cmd_run_as_administrator" xml:space="preserve"> <value>Run as administrator (Ctrl+Shift+Enter)</value> </data> <data name="wox_plugin_cmd_command_failed" xml:space="preserve"> <value>Error running the command</value> </data> <data name="wox_plugin_cmd_command_not_found" xml:space="preserve"> <value>Command not found</value> </data> <data name="wox_plugin_cmd_run_as_user" xml:space="preserve"> <value>Run as different user (Ctrl+Shift+U)</value> </data> <data name="wox_leave_shell_open" xml:space="preserve"> <value>Keep shell open</value> </data> <data name="wox_shell_command_execution" xml:space="preserve"> <value>Shell command execution</value> </data> <data name="run_command_in_command_prompt" xml:space="preserve"> <value>Run command in Command Prompt (cmd.exe)</value> </data> <data name="run_command_in_powershell" xml:space="preserve"> <value>Run command in PowerShell (PowerShell.exe)</value> </data> <data name="find_executable_file_and_run_it" xml:space="preserve"> <value>Find executable file and run it</value> </data> <data name="run_command_in_windows_terminal" xml:space="preserve"> <value>Run command in Windows Terminal (wt.exe)</value> </data> </root>
<?xml version="1.0" encoding="utf-8"?> <root> <!-- Microsoft ResX Schema Version 2.0 The primary goals of this format is to allow a simple XML format that is mostly human readable. The generation and parsing of the various data types are done through the TypeConverter classes associated with the data types. Example: ... ado.net/XML headers & schema ... <resheader name="resmimetype">text/microsoft-resx</resheader> <resheader name="version">2.0</resheader> <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader> <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader> <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data> <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data> <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64"> <value>[base64 mime encoded serialized .NET Framework object]</value> </data> <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value> <comment>This is a comment</comment> </data> There are any number of "resheader" rows that contain simple name/value pairs. Each data row contains a name, and value. The row also contains a type or mimetype. Type corresponds to a .NET class that support text/value conversion through the TypeConverter architecture. Classes that don't support this are serialized and stored with the mimetype set. The mimetype is used for serialized objects, and tells the ResXResourceReader how to depersist the object. This is currently not extensible. For a given mimetype the value must be set accordingly: Note - application/x-microsoft.net.object.binary.base64 is the format that the ResXResourceWriter will generate, however the reader can read any of the formats listed below. mimetype: application/x-microsoft.net.object.binary.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.soap.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Soap.SoapFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.bytearray.base64 value : The object must be serialized into a byte array : using a System.ComponentModel.TypeConverter : and then encoded with base64 encoding. --> <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> <xsd:import namespace="http://www.w3.org/XML/1998/namespace" /> <xsd:element name="root" msdata:IsDataSet="true"> <xsd:complexType> <xsd:choice maxOccurs="unbounded"> <xsd:element name="metadata"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" /> </xsd:sequence> <xsd:attribute name="name" use="required" type="xsd:string" /> <xsd:attribute name="type" type="xsd:string" /> <xsd:attribute name="mimetype" type="xsd:string" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="assembly"> <xsd:complexType> <xsd:attribute name="alias" type="xsd:string" /> <xsd:attribute name="name" type="xsd:string" /> </xsd:complexType> </xsd:element> <xsd:element name="data"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" /> <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="resheader"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" /> </xsd:complexType> </xsd:element> </xsd:choice> </xsd:complexType> </xsd:element> </xsd:schema> <resheader name="resmimetype"> <value>text/microsoft-resx</value> </resheader> <resheader name="version"> <value>2.0</value> </resheader> <resheader name="reader"> <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <resheader name="writer"> <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <data name="wox_plugin_cmd_plugin_name" xml:space="preserve"> <value>Shell</value> </data> <data name="wox_plugin_cmd_plugin_description" xml:space="preserve"> <value>Executes commands (e.g 'ping', 'cmd').</value> </data> <data name="wox_plugin_cmd_cmd_has_been_executed_times" xml:space="preserve"> <value>this command has been executed {0} times</value> </data> <data name="wox_plugin_cmd_execute_through_shell" xml:space="preserve"> <value>execute command through command shell</value> </data> <data name="wox_plugin_cmd_run_as_administrator" xml:space="preserve"> <value>Run as administrator (Ctrl+Shift+Enter)</value> </data> <data name="wox_plugin_cmd_command_failed" xml:space="preserve"> <value>Error running the command</value> </data> <data name="wox_plugin_cmd_command_not_found" xml:space="preserve"> <value>Command not found</value> </data> <data name="wox_plugin_cmd_run_as_user" xml:space="preserve"> <value>Run as different user (Ctrl+Shift+U)</value> </data> <data name="wox_leave_shell_open" xml:space="preserve"> <value>Keep shell open</value> </data> <data name="wox_shell_command_execution" xml:space="preserve"> <value>Command execution</value> </data> <data name="run_command_in_command_prompt" xml:space="preserve"> <value>Run in Command Prompt (cmd.exe)</value> </data> <data name="run_command_in_powershell" xml:space="preserve"> <value>Run in PowerShell (PowerShell.exe)</value> </data> <data name="find_executable_file_and_run_it" xml:space="preserve"> <value>Find and run the executable file</value> </data> <data name="run_command_in_powershell_seven" xml:space="preserve"> <value>Run in PowerShell 7 (pwsh.exe)</value> </data> <data name="run_command_in_windows_terminal_cmd" xml:space="preserve"> <value>Run in Command Prompt (cmd.exe) using Windows Terminal</value> </data> <data name="run_command_in_windows_terminal_powershell" xml:space="preserve"> <value>Run in PowerShell (PowerShell.exe) using Windows Terminal</value> </data> <data name="run_command_in_windows_terminal_powershell_seven" xml:space="preserve"> <value>Run in PowerShell 7 (pwsh.exe) using Windows Terminal</value> </data> <data name="run_plugin_cmd_wait_message" xml:space="preserve"> <value>Press Enter to continue</value> <comment>"Enter" means the Enter key on the keyboard.</comment> </data> <data name="wox_shell_command_execution_description" xml:space="preserve"> <value>All entries using the Windows Terminal force the Windows Terminal as the console host regardless of the system settings</value> </data> </root>
htcfreek
5d669df21a756f4381c0e0400917b45992fdb6bd
19827d009382e88d91f319cf5b65326c6bc6f9b1
@jaimecbernardo This is the name of the setting. Your suggestion doesn't make sense in this case. Do you have a better one or should we keep the existing text? ![image](https://github.com/microsoft/PowerToys/assets/61519853/d5deec01-ab7c-4e49-9149-f14dc7376f84)
htcfreek
373
microsoft/PowerToys
28,972
[Run > Shell plugin] Shell selection improvements
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request ⚠ This PR breake existing third party plugins that have ComboBox options! ⚠ _(For compatibility reason we could implement old and new code. But this means we have duplicated code.)_ This PR improves the shell settings for the Shell plugin. Changes in this PR: - The ComboBox items of a `PluginAdditionalOption` now support reordering without braking existing user settings. - PowerShell 7 has been added. - New settings to run CMD, PowerShell and PowerShell 7 in Windows Terminal as console host. - Various text improvements. <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [x] **Closes:** #28876, #28783 - [x] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected - [x] **Tests:** Added/updated and all pass - [x] **Localization:** All end user facing strings can be localized - [ ] **Dev docs:** Added/updated - [ ] **New binaries:** Added on the required places - [ ] [JSON for signing](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ESRPSigning_core.json) for new binaries - [ ] [WXS for installer](https://github.com/microsoft/PowerToys/blob/main/installer/PowerToysSetup/Product.wxs) for new binaries and localization folder - [ ] [YML for CI pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ci/templates/build-powertoys-steps.yml) for new test projects - [ ] [YML for signed pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/release.yml) - [ ] **Documentation updated:** If checked, please file a pull request on [our docs repo](https://github.com/MicrosoftDocs/windows-uwp/tree/docs/hub/powertoys) and link it here: #xxx <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments ![image](https://github.com/microsoft/PowerToys/assets/61519853/21c2efa9-091c-461d-821c-2ddfe3a38b2f) _Note: The name of the "Find and run executable file" item has changed after creating the screenshot._ ![image](https://github.com/microsoft/PowerToys/assets/61519853/77923c40-6230-4cd4-b28d-a6e1c7ba0f11) <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed - Tested settings functionality. - Tested the new shell execution modes. - Validated that setting don't hang or crash if the json content uses the old notation.
null
2023-10-03 09:48:39+00:00
2023-10-11 12:54:50+00:00
src/modules/launcher/Plugins/Microsoft.Plugin.Shell/Properties/Resources.resx
<?xml version="1.0" encoding="utf-8"?> <root> <!-- Microsoft ResX Schema Version 2.0 The primary goals of this format is to allow a simple XML format that is mostly human readable. The generation and parsing of the various data types are done through the TypeConverter classes associated with the data types. Example: ... ado.net/XML headers & schema ... <resheader name="resmimetype">text/microsoft-resx</resheader> <resheader name="version">2.0</resheader> <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader> <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader> <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data> <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data> <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64"> <value>[base64 mime encoded serialized .NET Framework object]</value> </data> <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value> <comment>This is a comment</comment> </data> There are any number of "resheader" rows that contain simple name/value pairs. Each data row contains a name, and value. The row also contains a type or mimetype. Type corresponds to a .NET class that support text/value conversion through the TypeConverter architecture. Classes that don't support this are serialized and stored with the mimetype set. The mimetype is used for serialized objects, and tells the ResXResourceReader how to depersist the object. This is currently not extensible. For a given mimetype the value must be set accordingly: Note - application/x-microsoft.net.object.binary.base64 is the format that the ResXResourceWriter will generate, however the reader can read any of the formats listed below. mimetype: application/x-microsoft.net.object.binary.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.soap.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Soap.SoapFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.bytearray.base64 value : The object must be serialized into a byte array : using a System.ComponentModel.TypeConverter : and then encoded with base64 encoding. --> <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> <xsd:import namespace="http://www.w3.org/XML/1998/namespace" /> <xsd:element name="root" msdata:IsDataSet="true"> <xsd:complexType> <xsd:choice maxOccurs="unbounded"> <xsd:element name="metadata"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" /> </xsd:sequence> <xsd:attribute name="name" use="required" type="xsd:string" /> <xsd:attribute name="type" type="xsd:string" /> <xsd:attribute name="mimetype" type="xsd:string" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="assembly"> <xsd:complexType> <xsd:attribute name="alias" type="xsd:string" /> <xsd:attribute name="name" type="xsd:string" /> </xsd:complexType> </xsd:element> <xsd:element name="data"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" /> <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="resheader"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" /> </xsd:complexType> </xsd:element> </xsd:choice> </xsd:complexType> </xsd:element> </xsd:schema> <resheader name="resmimetype"> <value>text/microsoft-resx</value> </resheader> <resheader name="version"> <value>2.0</value> </resheader> <resheader name="reader"> <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <resheader name="writer"> <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <data name="wox_plugin_cmd_plugin_name" xml:space="preserve"> <value>Shell</value> </data> <data name="wox_plugin_cmd_plugin_description" xml:space="preserve"> <value>Executes commands (e.g 'ping', 'cmd').</value> </data> <data name="wox_plugin_cmd_cmd_has_been_executed_times" xml:space="preserve"> <value>this command has been executed {0} times</value> </data> <data name="wox_plugin_cmd_execute_through_shell" xml:space="preserve"> <value>execute command through command shell</value> </data> <data name="wox_plugin_cmd_run_as_administrator" xml:space="preserve"> <value>Run as administrator (Ctrl+Shift+Enter)</value> </data> <data name="wox_plugin_cmd_command_failed" xml:space="preserve"> <value>Error running the command</value> </data> <data name="wox_plugin_cmd_command_not_found" xml:space="preserve"> <value>Command not found</value> </data> <data name="wox_plugin_cmd_run_as_user" xml:space="preserve"> <value>Run as different user (Ctrl+Shift+U)</value> </data> <data name="wox_leave_shell_open" xml:space="preserve"> <value>Keep shell open</value> </data> <data name="wox_shell_command_execution" xml:space="preserve"> <value>Shell command execution</value> </data> <data name="run_command_in_command_prompt" xml:space="preserve"> <value>Run command in Command Prompt (cmd.exe)</value> </data> <data name="run_command_in_powershell" xml:space="preserve"> <value>Run command in PowerShell (PowerShell.exe)</value> </data> <data name="find_executable_file_and_run_it" xml:space="preserve"> <value>Find executable file and run it</value> </data> <data name="run_command_in_windows_terminal" xml:space="preserve"> <value>Run command in Windows Terminal (wt.exe)</value> </data> </root>
<?xml version="1.0" encoding="utf-8"?> <root> <!-- Microsoft ResX Schema Version 2.0 The primary goals of this format is to allow a simple XML format that is mostly human readable. The generation and parsing of the various data types are done through the TypeConverter classes associated with the data types. Example: ... ado.net/XML headers & schema ... <resheader name="resmimetype">text/microsoft-resx</resheader> <resheader name="version">2.0</resheader> <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader> <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader> <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data> <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data> <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64"> <value>[base64 mime encoded serialized .NET Framework object]</value> </data> <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value> <comment>This is a comment</comment> </data> There are any number of "resheader" rows that contain simple name/value pairs. Each data row contains a name, and value. The row also contains a type or mimetype. Type corresponds to a .NET class that support text/value conversion through the TypeConverter architecture. Classes that don't support this are serialized and stored with the mimetype set. The mimetype is used for serialized objects, and tells the ResXResourceReader how to depersist the object. This is currently not extensible. For a given mimetype the value must be set accordingly: Note - application/x-microsoft.net.object.binary.base64 is the format that the ResXResourceWriter will generate, however the reader can read any of the formats listed below. mimetype: application/x-microsoft.net.object.binary.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.soap.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Soap.SoapFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.bytearray.base64 value : The object must be serialized into a byte array : using a System.ComponentModel.TypeConverter : and then encoded with base64 encoding. --> <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> <xsd:import namespace="http://www.w3.org/XML/1998/namespace" /> <xsd:element name="root" msdata:IsDataSet="true"> <xsd:complexType> <xsd:choice maxOccurs="unbounded"> <xsd:element name="metadata"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" /> </xsd:sequence> <xsd:attribute name="name" use="required" type="xsd:string" /> <xsd:attribute name="type" type="xsd:string" /> <xsd:attribute name="mimetype" type="xsd:string" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="assembly"> <xsd:complexType> <xsd:attribute name="alias" type="xsd:string" /> <xsd:attribute name="name" type="xsd:string" /> </xsd:complexType> </xsd:element> <xsd:element name="data"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" /> <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="resheader"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" /> </xsd:complexType> </xsd:element> </xsd:choice> </xsd:complexType> </xsd:element> </xsd:schema> <resheader name="resmimetype"> <value>text/microsoft-resx</value> </resheader> <resheader name="version"> <value>2.0</value> </resheader> <resheader name="reader"> <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <resheader name="writer"> <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <data name="wox_plugin_cmd_plugin_name" xml:space="preserve"> <value>Shell</value> </data> <data name="wox_plugin_cmd_plugin_description" xml:space="preserve"> <value>Executes commands (e.g 'ping', 'cmd').</value> </data> <data name="wox_plugin_cmd_cmd_has_been_executed_times" xml:space="preserve"> <value>this command has been executed {0} times</value> </data> <data name="wox_plugin_cmd_execute_through_shell" xml:space="preserve"> <value>execute command through command shell</value> </data> <data name="wox_plugin_cmd_run_as_administrator" xml:space="preserve"> <value>Run as administrator (Ctrl+Shift+Enter)</value> </data> <data name="wox_plugin_cmd_command_failed" xml:space="preserve"> <value>Error running the command</value> </data> <data name="wox_plugin_cmd_command_not_found" xml:space="preserve"> <value>Command not found</value> </data> <data name="wox_plugin_cmd_run_as_user" xml:space="preserve"> <value>Run as different user (Ctrl+Shift+U)</value> </data> <data name="wox_leave_shell_open" xml:space="preserve"> <value>Keep shell open</value> </data> <data name="wox_shell_command_execution" xml:space="preserve"> <value>Command execution</value> </data> <data name="run_command_in_command_prompt" xml:space="preserve"> <value>Run in Command Prompt (cmd.exe)</value> </data> <data name="run_command_in_powershell" xml:space="preserve"> <value>Run in PowerShell (PowerShell.exe)</value> </data> <data name="find_executable_file_and_run_it" xml:space="preserve"> <value>Find and run the executable file</value> </data> <data name="run_command_in_powershell_seven" xml:space="preserve"> <value>Run in PowerShell 7 (pwsh.exe)</value> </data> <data name="run_command_in_windows_terminal_cmd" xml:space="preserve"> <value>Run in Command Prompt (cmd.exe) using Windows Terminal</value> </data> <data name="run_command_in_windows_terminal_powershell" xml:space="preserve"> <value>Run in PowerShell (PowerShell.exe) using Windows Terminal</value> </data> <data name="run_command_in_windows_terminal_powershell_seven" xml:space="preserve"> <value>Run in PowerShell 7 (pwsh.exe) using Windows Terminal</value> </data> <data name="run_plugin_cmd_wait_message" xml:space="preserve"> <value>Press Enter to continue</value> <comment>"Enter" means the Enter key on the keyboard.</comment> </data> <data name="wox_shell_command_execution_description" xml:space="preserve"> <value>All entries using the Windows Terminal force the Windows Terminal as the console host regardless of the system settings</value> </data> </root>
htcfreek
5d669df21a756f4381c0e0400917b45992fdb6bd
19827d009382e88d91f319cf5b65326c6bc6f9b1
For translation the phrase `Execution of commands` might be better.
htcfreek
374
microsoft/PowerToys
28,972
[Run > Shell plugin] Shell selection improvements
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request ⚠ This PR breake existing third party plugins that have ComboBox options! ⚠ _(For compatibility reason we could implement old and new code. But this means we have duplicated code.)_ This PR improves the shell settings for the Shell plugin. Changes in this PR: - The ComboBox items of a `PluginAdditionalOption` now support reordering without braking existing user settings. - PowerShell 7 has been added. - New settings to run CMD, PowerShell and PowerShell 7 in Windows Terminal as console host. - Various text improvements. <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [x] **Closes:** #28876, #28783 - [x] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected - [x] **Tests:** Added/updated and all pass - [x] **Localization:** All end user facing strings can be localized - [ ] **Dev docs:** Added/updated - [ ] **New binaries:** Added on the required places - [ ] [JSON for signing](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ESRPSigning_core.json) for new binaries - [ ] [WXS for installer](https://github.com/microsoft/PowerToys/blob/main/installer/PowerToysSetup/Product.wxs) for new binaries and localization folder - [ ] [YML for CI pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ci/templates/build-powertoys-steps.yml) for new test projects - [ ] [YML for signed pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/release.yml) - [ ] **Documentation updated:** If checked, please file a pull request on [our docs repo](https://github.com/MicrosoftDocs/windows-uwp/tree/docs/hub/powertoys) and link it here: #xxx <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments ![image](https://github.com/microsoft/PowerToys/assets/61519853/21c2efa9-091c-461d-821c-2ddfe3a38b2f) _Note: The name of the "Find and run executable file" item has changed after creating the screenshot._ ![image](https://github.com/microsoft/PowerToys/assets/61519853/77923c40-6230-4cd4-b28d-a6e1c7ba0f11) <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed - Tested settings functionality. - Tested the new shell execution modes. - Validated that setting don't hang or crash if the json content uses the old notation.
null
2023-10-03 09:48:39+00:00
2023-10-11 12:54:50+00:00
src/modules/launcher/Plugins/Microsoft.Plugin.Shell/Properties/Resources.resx
<?xml version="1.0" encoding="utf-8"?> <root> <!-- Microsoft ResX Schema Version 2.0 The primary goals of this format is to allow a simple XML format that is mostly human readable. The generation and parsing of the various data types are done through the TypeConverter classes associated with the data types. Example: ... ado.net/XML headers & schema ... <resheader name="resmimetype">text/microsoft-resx</resheader> <resheader name="version">2.0</resheader> <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader> <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader> <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data> <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data> <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64"> <value>[base64 mime encoded serialized .NET Framework object]</value> </data> <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value> <comment>This is a comment</comment> </data> There are any number of "resheader" rows that contain simple name/value pairs. Each data row contains a name, and value. The row also contains a type or mimetype. Type corresponds to a .NET class that support text/value conversion through the TypeConverter architecture. Classes that don't support this are serialized and stored with the mimetype set. The mimetype is used for serialized objects, and tells the ResXResourceReader how to depersist the object. This is currently not extensible. For a given mimetype the value must be set accordingly: Note - application/x-microsoft.net.object.binary.base64 is the format that the ResXResourceWriter will generate, however the reader can read any of the formats listed below. mimetype: application/x-microsoft.net.object.binary.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.soap.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Soap.SoapFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.bytearray.base64 value : The object must be serialized into a byte array : using a System.ComponentModel.TypeConverter : and then encoded with base64 encoding. --> <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> <xsd:import namespace="http://www.w3.org/XML/1998/namespace" /> <xsd:element name="root" msdata:IsDataSet="true"> <xsd:complexType> <xsd:choice maxOccurs="unbounded"> <xsd:element name="metadata"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" /> </xsd:sequence> <xsd:attribute name="name" use="required" type="xsd:string" /> <xsd:attribute name="type" type="xsd:string" /> <xsd:attribute name="mimetype" type="xsd:string" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="assembly"> <xsd:complexType> <xsd:attribute name="alias" type="xsd:string" /> <xsd:attribute name="name" type="xsd:string" /> </xsd:complexType> </xsd:element> <xsd:element name="data"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" /> <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="resheader"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" /> </xsd:complexType> </xsd:element> </xsd:choice> </xsd:complexType> </xsd:element> </xsd:schema> <resheader name="resmimetype"> <value>text/microsoft-resx</value> </resheader> <resheader name="version"> <value>2.0</value> </resheader> <resheader name="reader"> <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <resheader name="writer"> <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <data name="wox_plugin_cmd_plugin_name" xml:space="preserve"> <value>Shell</value> </data> <data name="wox_plugin_cmd_plugin_description" xml:space="preserve"> <value>Executes commands (e.g 'ping', 'cmd').</value> </data> <data name="wox_plugin_cmd_cmd_has_been_executed_times" xml:space="preserve"> <value>this command has been executed {0} times</value> </data> <data name="wox_plugin_cmd_execute_through_shell" xml:space="preserve"> <value>execute command through command shell</value> </data> <data name="wox_plugin_cmd_run_as_administrator" xml:space="preserve"> <value>Run as administrator (Ctrl+Shift+Enter)</value> </data> <data name="wox_plugin_cmd_command_failed" xml:space="preserve"> <value>Error running the command</value> </data> <data name="wox_plugin_cmd_command_not_found" xml:space="preserve"> <value>Command not found</value> </data> <data name="wox_plugin_cmd_run_as_user" xml:space="preserve"> <value>Run as different user (Ctrl+Shift+U)</value> </data> <data name="wox_leave_shell_open" xml:space="preserve"> <value>Keep shell open</value> </data> <data name="wox_shell_command_execution" xml:space="preserve"> <value>Shell command execution</value> </data> <data name="run_command_in_command_prompt" xml:space="preserve"> <value>Run command in Command Prompt (cmd.exe)</value> </data> <data name="run_command_in_powershell" xml:space="preserve"> <value>Run command in PowerShell (PowerShell.exe)</value> </data> <data name="find_executable_file_and_run_it" xml:space="preserve"> <value>Find executable file and run it</value> </data> <data name="run_command_in_windows_terminal" xml:space="preserve"> <value>Run command in Windows Terminal (wt.exe)</value> </data> </root>
<?xml version="1.0" encoding="utf-8"?> <root> <!-- Microsoft ResX Schema Version 2.0 The primary goals of this format is to allow a simple XML format that is mostly human readable. The generation and parsing of the various data types are done through the TypeConverter classes associated with the data types. Example: ... ado.net/XML headers & schema ... <resheader name="resmimetype">text/microsoft-resx</resheader> <resheader name="version">2.0</resheader> <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader> <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader> <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data> <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data> <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64"> <value>[base64 mime encoded serialized .NET Framework object]</value> </data> <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64"> <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value> <comment>This is a comment</comment> </data> There are any number of "resheader" rows that contain simple name/value pairs. Each data row contains a name, and value. The row also contains a type or mimetype. Type corresponds to a .NET class that support text/value conversion through the TypeConverter architecture. Classes that don't support this are serialized and stored with the mimetype set. The mimetype is used for serialized objects, and tells the ResXResourceReader how to depersist the object. This is currently not extensible. For a given mimetype the value must be set accordingly: Note - application/x-microsoft.net.object.binary.base64 is the format that the ResXResourceWriter will generate, however the reader can read any of the formats listed below. mimetype: application/x-microsoft.net.object.binary.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Binary.BinaryFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.soap.base64 value : The object must be serialized with : System.Runtime.Serialization.Formatters.Soap.SoapFormatter : and then encoded with base64 encoding. mimetype: application/x-microsoft.net.object.bytearray.base64 value : The object must be serialized into a byte array : using a System.ComponentModel.TypeConverter : and then encoded with base64 encoding. --> <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata"> <xsd:import namespace="http://www.w3.org/XML/1998/namespace" /> <xsd:element name="root" msdata:IsDataSet="true"> <xsd:complexType> <xsd:choice maxOccurs="unbounded"> <xsd:element name="metadata"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" /> </xsd:sequence> <xsd:attribute name="name" use="required" type="xsd:string" /> <xsd:attribute name="type" type="xsd:string" /> <xsd:attribute name="mimetype" type="xsd:string" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="assembly"> <xsd:complexType> <xsd:attribute name="alias" type="xsd:string" /> <xsd:attribute name="name" type="xsd:string" /> </xsd:complexType> </xsd:element> <xsd:element name="data"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" /> <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" /> <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" /> <xsd:attribute ref="xml:space" /> </xsd:complexType> </xsd:element> <xsd:element name="resheader"> <xsd:complexType> <xsd:sequence> <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" /> </xsd:sequence> <xsd:attribute name="name" type="xsd:string" use="required" /> </xsd:complexType> </xsd:element> </xsd:choice> </xsd:complexType> </xsd:element> </xsd:schema> <resheader name="resmimetype"> <value>text/microsoft-resx</value> </resheader> <resheader name="version"> <value>2.0</value> </resheader> <resheader name="reader"> <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <resheader name="writer"> <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value> </resheader> <data name="wox_plugin_cmd_plugin_name" xml:space="preserve"> <value>Shell</value> </data> <data name="wox_plugin_cmd_plugin_description" xml:space="preserve"> <value>Executes commands (e.g 'ping', 'cmd').</value> </data> <data name="wox_plugin_cmd_cmd_has_been_executed_times" xml:space="preserve"> <value>this command has been executed {0} times</value> </data> <data name="wox_plugin_cmd_execute_through_shell" xml:space="preserve"> <value>execute command through command shell</value> </data> <data name="wox_plugin_cmd_run_as_administrator" xml:space="preserve"> <value>Run as administrator (Ctrl+Shift+Enter)</value> </data> <data name="wox_plugin_cmd_command_failed" xml:space="preserve"> <value>Error running the command</value> </data> <data name="wox_plugin_cmd_command_not_found" xml:space="preserve"> <value>Command not found</value> </data> <data name="wox_plugin_cmd_run_as_user" xml:space="preserve"> <value>Run as different user (Ctrl+Shift+U)</value> </data> <data name="wox_leave_shell_open" xml:space="preserve"> <value>Keep shell open</value> </data> <data name="wox_shell_command_execution" xml:space="preserve"> <value>Command execution</value> </data> <data name="run_command_in_command_prompt" xml:space="preserve"> <value>Run in Command Prompt (cmd.exe)</value> </data> <data name="run_command_in_powershell" xml:space="preserve"> <value>Run in PowerShell (PowerShell.exe)</value> </data> <data name="find_executable_file_and_run_it" xml:space="preserve"> <value>Find and run the executable file</value> </data> <data name="run_command_in_powershell_seven" xml:space="preserve"> <value>Run in PowerShell 7 (pwsh.exe)</value> </data> <data name="run_command_in_windows_terminal_cmd" xml:space="preserve"> <value>Run in Command Prompt (cmd.exe) using Windows Terminal</value> </data> <data name="run_command_in_windows_terminal_powershell" xml:space="preserve"> <value>Run in PowerShell (PowerShell.exe) using Windows Terminal</value> </data> <data name="run_command_in_windows_terminal_powershell_seven" xml:space="preserve"> <value>Run in PowerShell 7 (pwsh.exe) using Windows Terminal</value> </data> <data name="run_plugin_cmd_wait_message" xml:space="preserve"> <value>Press Enter to continue</value> <comment>"Enter" means the Enter key on the keyboard.</comment> </data> <data name="wox_shell_command_execution_description" xml:space="preserve"> <value>All entries using the Windows Terminal force the Windows Terminal as the console host regardless of the system settings</value> </data> </root>
htcfreek
5d669df21a756f4381c0e0400917b45992fdb6bd
19827d009382e88d91f319cf5b65326c6bc6f9b1
You're right, please disregard this suggestion :) I thought there was an option for running through windows shell but I think that's the "find and run the executable file".
jaimecbernardo
375
microsoft/PowerToys
28,972
[Run > Shell plugin] Shell selection improvements
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request ⚠ This PR breake existing third party plugins that have ComboBox options! ⚠ _(For compatibility reason we could implement old and new code. But this means we have duplicated code.)_ This PR improves the shell settings for the Shell plugin. Changes in this PR: - The ComboBox items of a `PluginAdditionalOption` now support reordering without braking existing user settings. - PowerShell 7 has been added. - New settings to run CMD, PowerShell and PowerShell 7 in Windows Terminal as console host. - Various text improvements. <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [x] **Closes:** #28876, #28783 - [x] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected - [x] **Tests:** Added/updated and all pass - [x] **Localization:** All end user facing strings can be localized - [ ] **Dev docs:** Added/updated - [ ] **New binaries:** Added on the required places - [ ] [JSON for signing](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ESRPSigning_core.json) for new binaries - [ ] [WXS for installer](https://github.com/microsoft/PowerToys/blob/main/installer/PowerToysSetup/Product.wxs) for new binaries and localization folder - [ ] [YML for CI pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ci/templates/build-powertoys-steps.yml) for new test projects - [ ] [YML for signed pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/release.yml) - [ ] **Documentation updated:** If checked, please file a pull request on [our docs repo](https://github.com/MicrosoftDocs/windows-uwp/tree/docs/hub/powertoys) and link it here: #xxx <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments ![image](https://github.com/microsoft/PowerToys/assets/61519853/21c2efa9-091c-461d-821c-2ddfe3a38b2f) _Note: The name of the "Find and run executable file" item has changed after creating the screenshot._ ![image](https://github.com/microsoft/PowerToys/assets/61519853/77923c40-6230-4cd4-b28d-a6e1c7ba0f11) <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed - Tested settings functionality. - Tested the new shell execution modes. - Validated that setting don't hang or crash if the json content uses the old notation.
null
2023-10-03 09:48:39+00:00
2023-10-11 12:54:50+00:00
src/settings-ui/Settings.UI.Library/PluginAdditionalOption.cs
// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System.Collections.Generic; using System.Text.Json.Serialization; namespace Microsoft.PowerToys.Settings.UI.Library { public class PluginAdditionalOption { public enum AdditionalOptionType { Checkbox = 0, Combobox = 1, Textbox = 2, Numberbox = 3, CheckboxAndCombobox = 11, CheckboxAndTextbox = 12, CheckboxAndNumberbox = 13, } /// <summary> /// Gets or sets the layout type of the option in settings ui (Optional; Default is checkbox) /// </summary> public AdditionalOptionType PluginOptionType { get; set; } public string Key { get; set; } public string DisplayLabel { get; set; } /// <summary> /// Gets or sets a value to show a description of this setting in the settings ui. (Optional) /// </summary> [JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)] public string DisplayDescription { get; set; } /// <summary> /// Gets or sets a value to show a label for the second setting if two combined settings are shown /// </summary> [JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)] public string SecondDisplayLabel { get; set; } /// <summary> /// Gets or sets a value to show a description for the second setting in the settings ui if two combined settings are shown. (Optional) /// </summary> [JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)] public string SecondDisplayDescription { get; set; } /// <summary> /// Gets or sets a value indicating whether the checkbox is set or not set /// </summary> public bool Value { get; set; } public int ComboBoxValue { get; set; } [JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)] public List<string> ComboBoxOptions { get; set; } [JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)] public string TextValue { get; set; } /// <summary> /// Gets or sets the value that specifies the maximum number of characters allowed for user input in the text box. (Optional; Default is 0 which means no limit.) /// </summary> [JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)] public int? TextBoxMaxLength { get; set; } public double NumberValue { get; set; } /// <summary> /// Gets or sets a minimal value for the number box. (Optional; Default is Double.MinValue) /// </summary> [JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)] public double? NumberBoxMin { get; set; } /// <summary> /// Gets or sets a maximal value for the number box. (Optional; Default is Double.MaxValue) /// </summary> [JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)] public double? NumberBoxMax { get; set; } /// <summary> /// Gets or sets the value for small changes of the number box. (Optional; Default is 1) /// </summary> [JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)] public double? NumberBoxSmallChange { get; set; } /// <summary> /// Gets or sets the value for large changes of the number box. (Optional; Default is 10) /// </summary> [JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)] public double? NumberBoxLargeChange { get; set; } } }
// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System.Collections.Generic; using System.Text.Json.Serialization; namespace Microsoft.PowerToys.Settings.UI.Library { public class PluginAdditionalOption { public enum AdditionalOptionType { Checkbox = 0, Combobox = 1, Textbox = 2, Numberbox = 3, CheckboxAndCombobox = 11, CheckboxAndTextbox = 12, CheckboxAndNumberbox = 13, } /// <summary> /// Gets or sets the layout type of the option in settings ui (Optional; Default is checkbox) /// </summary> public AdditionalOptionType PluginOptionType { get; set; } public string Key { get; set; } public string DisplayLabel { get; set; } /// <summary> /// Gets or sets a value to show a description of this setting in the settings ui. (Optional) /// </summary> [JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)] public string DisplayDescription { get; set; } /// <summary> /// Gets or sets a value to show a label for the second setting if two combined settings are shown /// </summary> [JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)] public string SecondDisplayLabel { get; set; } /// <summary> /// Gets or sets a value to show a description for the second setting in the settings ui if two combined settings are shown. (Optional) /// </summary> [JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)] public string SecondDisplayDescription { get; set; } /// <summary> /// Gets or sets a value indicating whether the checkbox is set or not set /// </summary> public bool Value { get; set; } public int ComboBoxValue { get; set; } /// <summary> /// Gets or sets the list of dropdown items for the ComboBox. Please use the item name as Key and an integer as Value. /// The value gets converted in settings UI to an integer and will be saved in <see cref="ComboBoxValue"/>. /// You can define the visibility order in settings ui by arranging the list items. /// </summary> [JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)] public List<KeyValuePair<string, string>> ComboBoxItems { get; set; } [JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)] public string TextValue { get; set; } /// <summary> /// Gets or sets the value that specifies the maximum number of characters allowed for user input in the text box. (Optional; Default is 0 which means no limit.) /// </summary> [JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)] public int? TextBoxMaxLength { get; set; } public double NumberValue { get; set; } /// <summary> /// Gets or sets a minimal value for the number box. (Optional; Default is Double.MinValue) /// </summary> [JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)] public double? NumberBoxMin { get; set; } /// <summary> /// Gets or sets a maximal value for the number box. (Optional; Default is Double.MaxValue) /// </summary> [JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)] public double? NumberBoxMax { get; set; } /// <summary> /// Gets or sets the value for small changes of the number box. (Optional; Default is 1) /// </summary> [JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)] public double? NumberBoxSmallChange { get; set; } /// <summary> /// Gets or sets the value for large changes of the number box. (Optional; Default is 10) /// </summary> [JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)] public double? NumberBoxLargeChange { get; set; } // Outdated properties kept for backward compatibility with third-party plugins. (They are only required to not have old third-party plugins crashing when propagating their plugin options.) #pragma warning disable SA1623 // Property summary documentation should match accessors /// <summary> /// PLEASE DON'T USE ANYMORE!! (The property was used for the list of combobox items in the past and is not functional anymore.) /// </summary> [JsonIgnore] public List<string> ComboBoxOptions { get; set; } #pragma warning restore SA1623 // Property summary documentation should match accessors } }
htcfreek
5d669df21a756f4381c0e0400917b45992fdb6bd
19827d009382e88d91f319cf5b65326c6bc6f9b1
Thi is to no have problems with outdated plugins and json files.
htcfreek
376
microsoft/PowerToys
28,972
[Run > Shell plugin] Shell selection improvements
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request ⚠ This PR breake existing third party plugins that have ComboBox options! ⚠ _(For compatibility reason we could implement old and new code. But this means we have duplicated code.)_ This PR improves the shell settings for the Shell plugin. Changes in this PR: - The ComboBox items of a `PluginAdditionalOption` now support reordering without braking existing user settings. - PowerShell 7 has been added. - New settings to run CMD, PowerShell and PowerShell 7 in Windows Terminal as console host. - Various text improvements. <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [x] **Closes:** #28876, #28783 - [x] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected - [x] **Tests:** Added/updated and all pass - [x] **Localization:** All end user facing strings can be localized - [ ] **Dev docs:** Added/updated - [ ] **New binaries:** Added on the required places - [ ] [JSON for signing](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ESRPSigning_core.json) for new binaries - [ ] [WXS for installer](https://github.com/microsoft/PowerToys/blob/main/installer/PowerToysSetup/Product.wxs) for new binaries and localization folder - [ ] [YML for CI pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ci/templates/build-powertoys-steps.yml) for new test projects - [ ] [YML for signed pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/release.yml) - [ ] **Documentation updated:** If checked, please file a pull request on [our docs repo](https://github.com/MicrosoftDocs/windows-uwp/tree/docs/hub/powertoys) and link it here: #xxx <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments ![image](https://github.com/microsoft/PowerToys/assets/61519853/21c2efa9-091c-461d-821c-2ddfe3a38b2f) _Note: The name of the "Find and run executable file" item has changed after creating the screenshot._ ![image](https://github.com/microsoft/PowerToys/assets/61519853/77923c40-6230-4cd4-b28d-a6e1c7ba0f11) <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed - Tested settings functionality. - Tested the new shell execution modes. - Validated that setting don't hang or crash if the json content uses the old notation.
null
2023-10-03 09:48:39+00:00
2023-10-11 12:54:50+00:00
src/settings-ui/Settings.UI.Library/PluginAdditionalOption.cs
// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System.Collections.Generic; using System.Text.Json.Serialization; namespace Microsoft.PowerToys.Settings.UI.Library { public class PluginAdditionalOption { public enum AdditionalOptionType { Checkbox = 0, Combobox = 1, Textbox = 2, Numberbox = 3, CheckboxAndCombobox = 11, CheckboxAndTextbox = 12, CheckboxAndNumberbox = 13, } /// <summary> /// Gets or sets the layout type of the option in settings ui (Optional; Default is checkbox) /// </summary> public AdditionalOptionType PluginOptionType { get; set; } public string Key { get; set; } public string DisplayLabel { get; set; } /// <summary> /// Gets or sets a value to show a description of this setting in the settings ui. (Optional) /// </summary> [JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)] public string DisplayDescription { get; set; } /// <summary> /// Gets or sets a value to show a label for the second setting if two combined settings are shown /// </summary> [JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)] public string SecondDisplayLabel { get; set; } /// <summary> /// Gets or sets a value to show a description for the second setting in the settings ui if two combined settings are shown. (Optional) /// </summary> [JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)] public string SecondDisplayDescription { get; set; } /// <summary> /// Gets or sets a value indicating whether the checkbox is set or not set /// </summary> public bool Value { get; set; } public int ComboBoxValue { get; set; } [JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)] public List<string> ComboBoxOptions { get; set; } [JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)] public string TextValue { get; set; } /// <summary> /// Gets or sets the value that specifies the maximum number of characters allowed for user input in the text box. (Optional; Default is 0 which means no limit.) /// </summary> [JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)] public int? TextBoxMaxLength { get; set; } public double NumberValue { get; set; } /// <summary> /// Gets or sets a minimal value for the number box. (Optional; Default is Double.MinValue) /// </summary> [JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)] public double? NumberBoxMin { get; set; } /// <summary> /// Gets or sets a maximal value for the number box. (Optional; Default is Double.MaxValue) /// </summary> [JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)] public double? NumberBoxMax { get; set; } /// <summary> /// Gets or sets the value for small changes of the number box. (Optional; Default is 1) /// </summary> [JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)] public double? NumberBoxSmallChange { get; set; } /// <summary> /// Gets or sets the value for large changes of the number box. (Optional; Default is 10) /// </summary> [JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)] public double? NumberBoxLargeChange { get; set; } } }
// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System.Collections.Generic; using System.Text.Json.Serialization; namespace Microsoft.PowerToys.Settings.UI.Library { public class PluginAdditionalOption { public enum AdditionalOptionType { Checkbox = 0, Combobox = 1, Textbox = 2, Numberbox = 3, CheckboxAndCombobox = 11, CheckboxAndTextbox = 12, CheckboxAndNumberbox = 13, } /// <summary> /// Gets or sets the layout type of the option in settings ui (Optional; Default is checkbox) /// </summary> public AdditionalOptionType PluginOptionType { get; set; } public string Key { get; set; } public string DisplayLabel { get; set; } /// <summary> /// Gets or sets a value to show a description of this setting in the settings ui. (Optional) /// </summary> [JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)] public string DisplayDescription { get; set; } /// <summary> /// Gets or sets a value to show a label for the second setting if two combined settings are shown /// </summary> [JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)] public string SecondDisplayLabel { get; set; } /// <summary> /// Gets or sets a value to show a description for the second setting in the settings ui if two combined settings are shown. (Optional) /// </summary> [JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)] public string SecondDisplayDescription { get; set; } /// <summary> /// Gets or sets a value indicating whether the checkbox is set or not set /// </summary> public bool Value { get; set; } public int ComboBoxValue { get; set; } /// <summary> /// Gets or sets the list of dropdown items for the ComboBox. Please use the item name as Key and an integer as Value. /// The value gets converted in settings UI to an integer and will be saved in <see cref="ComboBoxValue"/>. /// You can define the visibility order in settings ui by arranging the list items. /// </summary> [JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)] public List<KeyValuePair<string, string>> ComboBoxItems { get; set; } [JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)] public string TextValue { get; set; } /// <summary> /// Gets or sets the value that specifies the maximum number of characters allowed for user input in the text box. (Optional; Default is 0 which means no limit.) /// </summary> [JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)] public int? TextBoxMaxLength { get; set; } public double NumberValue { get; set; } /// <summary> /// Gets or sets a minimal value for the number box. (Optional; Default is Double.MinValue) /// </summary> [JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)] public double? NumberBoxMin { get; set; } /// <summary> /// Gets or sets a maximal value for the number box. (Optional; Default is Double.MaxValue) /// </summary> [JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)] public double? NumberBoxMax { get; set; } /// <summary> /// Gets or sets the value for small changes of the number box. (Optional; Default is 1) /// </summary> [JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)] public double? NumberBoxSmallChange { get; set; } /// <summary> /// Gets or sets the value for large changes of the number box. (Optional; Default is 10) /// </summary> [JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingNull)] public double? NumberBoxLargeChange { get; set; } // Outdated properties kept for backward compatibility with third-party plugins. (They are only required to not have old third-party plugins crashing when propagating their plugin options.) #pragma warning disable SA1623 // Property summary documentation should match accessors /// <summary> /// PLEASE DON'T USE ANYMORE!! (The property was used for the list of combobox items in the past and is not functional anymore.) /// </summary> [JsonIgnore] public List<string> ComboBoxOptions { get; set; } #pragma warning restore SA1623 // Property summary documentation should match accessors } }
htcfreek
5d669df21a756f4381c0e0400917b45992fdb6bd
19827d009382e88d91f319cf5b65326c6bc6f9b1
Note to me: I should rename the property to `ComboBoxItems` for a better code sytel. And I could add `List<String> ComboBoxOptions` for backward compatibility when reading the json.
htcfreek
377
microsoft/PowerToys
28,972
[Run > Shell plugin] Shell selection improvements
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request ⚠ This PR breake existing third party plugins that have ComboBox options! ⚠ _(For compatibility reason we could implement old and new code. But this means we have duplicated code.)_ This PR improves the shell settings for the Shell plugin. Changes in this PR: - The ComboBox items of a `PluginAdditionalOption` now support reordering without braking existing user settings. - PowerShell 7 has been added. - New settings to run CMD, PowerShell and PowerShell 7 in Windows Terminal as console host. - Various text improvements. <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [x] **Closes:** #28876, #28783 - [x] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected - [x] **Tests:** Added/updated and all pass - [x] **Localization:** All end user facing strings can be localized - [ ] **Dev docs:** Added/updated - [ ] **New binaries:** Added on the required places - [ ] [JSON for signing](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ESRPSigning_core.json) for new binaries - [ ] [WXS for installer](https://github.com/microsoft/PowerToys/blob/main/installer/PowerToysSetup/Product.wxs) for new binaries and localization folder - [ ] [YML for CI pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ci/templates/build-powertoys-steps.yml) for new test projects - [ ] [YML for signed pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/release.yml) - [ ] **Documentation updated:** If checked, please file a pull request on [our docs repo](https://github.com/MicrosoftDocs/windows-uwp/tree/docs/hub/powertoys) and link it here: #xxx <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments ![image](https://github.com/microsoft/PowerToys/assets/61519853/21c2efa9-091c-461d-821c-2ddfe3a38b2f) _Note: The name of the "Find and run executable file" item has changed after creating the screenshot._ ![image](https://github.com/microsoft/PowerToys/assets/61519853/77923c40-6230-4cd4-b28d-a6e1c7ba0f11) <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed - Tested settings functionality. - Tested the new shell execution modes. - Validated that setting don't hang or crash if the json content uses the old notation.
null
2023-10-03 09:48:39+00:00
2023-10-11 12:54:50+00:00
src/settings-ui/Settings.UI/ViewModels/PluginAdditionalOptionViewModel.cs
// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System.Collections.Generic; using System.ComponentModel; using System.Runtime.CompilerServices; using Microsoft.PowerToys.Settings.UI.Library; namespace Microsoft.PowerToys.Settings.UI.ViewModels { public class PluginAdditionalOptionViewModel : INotifyPropertyChanged { private PluginAdditionalOption _additionalOption; internal PluginAdditionalOptionViewModel(PluginAdditionalOption additionalOption) { _additionalOption = additionalOption; } // Labels of single and first setting of combined types public string DisplayLabel => _additionalOption.DisplayLabel; public string DisplayDescription => _additionalOption.DisplayDescription; // Labels of second setting of combined types public string SecondDisplayLabel => _additionalOption.SecondDisplayLabel; public string SecondDisplayDescription => _additionalOption.SecondDisplayDescription; // Bool checkbox setting public bool ShowCheckBox => _additionalOption.PluginOptionType == PluginAdditionalOption.AdditionalOptionType.Checkbox; public bool Value { get => _additionalOption.Value; set { if (value != _additionalOption.Value) { _additionalOption.Value = value; NotifyPropertyChanged(); NotifyPropertyChanged(nameof(SecondSettingIsEnabled)); } } } // ComboBox setting public bool ShowComboBox => _additionalOption.PluginOptionType == PluginAdditionalOption.AdditionalOptionType.Combobox && _additionalOption.ComboBoxOptions != null && _additionalOption.ComboBoxOptions.Count > 0; public List<string> ComboBoxOptions => _additionalOption.ComboBoxOptions; public int ComboBoxValue { get => _additionalOption.ComboBoxValue; set { if (value != _additionalOption.ComboBoxValue) { _additionalOption.ComboBoxValue = value; NotifyPropertyChanged(); } } } // TextBox setting public bool ShowTextBox => _additionalOption.PluginOptionType == PluginAdditionalOption.AdditionalOptionType.Textbox; public int TextBoxMaxLength => (_additionalOption.TextBoxMaxLength == null) ? 0 : _additionalOption.TextBoxMaxLength.Value; // 0 is the default and means no limit. public string TextValue { get => _additionalOption.TextValue; set { if (value != _additionalOption.TextValue) { _additionalOption.TextValue = value; NotifyPropertyChanged(); } } } // NumberBox setting public bool ShowNumberBox => _additionalOption.PluginOptionType == PluginAdditionalOption.AdditionalOptionType.Numberbox; public double NumberBoxMin => (_additionalOption.NumberBoxMin == null) ? double.MinValue : _additionalOption.NumberBoxMin.Value; public double NumberBoxMax => (_additionalOption.NumberBoxMax == null) ? double.MaxValue : _additionalOption.NumberBoxMax.Value; public double NumberBoxSmallChange => (_additionalOption.NumberBoxSmallChange == null) ? 1 : _additionalOption.NumberBoxSmallChange.Value; public double NumberBoxLargeChange => (_additionalOption.NumberBoxLargeChange == null) ? 10 : _additionalOption.NumberBoxLargeChange.Value; public double NumberValue { get => _additionalOption.NumberValue; set { if (value != _additionalOption.NumberValue) { _additionalOption.NumberValue = value; NotifyPropertyChanged(); } } } // Show combined settings cards public bool ShowCheckboxAndCombobox => _additionalOption.PluginOptionType == PluginAdditionalOption.AdditionalOptionType.CheckboxAndCombobox; public bool ShowCheckboxAndTextbox => _additionalOption.PluginOptionType == PluginAdditionalOption.AdditionalOptionType.CheckboxAndTextbox; public bool ShowCheckboxAndNumberbox => _additionalOption.PluginOptionType == PluginAdditionalOption.AdditionalOptionType.CheckboxAndNumberbox; // Enabled state of ComboBox, TextBox, NumberBox (If combined with checkbox then checkbox value decides it.) public bool SecondSettingIsEnabled => (int)_additionalOption.PluginOptionType > 10 ? _additionalOption.Value : true; // Handle property changes public event PropertyChangedEventHandler PropertyChanged; private void NotifyPropertyChanged([CallerMemberName] string propertyName = "") { PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName)); } } }
// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System.Collections.Generic; using System.ComponentModel; using System.Globalization; using System.Runtime.CompilerServices; using Microsoft.PowerToys.Settings.UI.Library; namespace Microsoft.PowerToys.Settings.UI.ViewModels { public class PluginAdditionalOptionViewModel : INotifyPropertyChanged { private PluginAdditionalOption _additionalOption; internal PluginAdditionalOptionViewModel(PluginAdditionalOption additionalOption) { _additionalOption = additionalOption; } // Labels of single and first setting of combined types public string DisplayLabel => _additionalOption.DisplayLabel; public string DisplayDescription => _additionalOption.DisplayDescription; // Labels of second setting of combined types public string SecondDisplayLabel => _additionalOption.SecondDisplayLabel; public string SecondDisplayDescription => _additionalOption.SecondDisplayDescription; // Bool checkbox setting public bool ShowCheckBox => _additionalOption.PluginOptionType == PluginAdditionalOption.AdditionalOptionType.Checkbox; public bool Value { get => _additionalOption.Value; set { if (value != _additionalOption.Value) { _additionalOption.Value = value; NotifyPropertyChanged(); NotifyPropertyChanged(nameof(SecondSettingIsEnabled)); } } } // ComboBox setting public bool ShowComboBox => _additionalOption.PluginOptionType == PluginAdditionalOption.AdditionalOptionType.Combobox && _additionalOption.ComboBoxItems != null && _additionalOption.ComboBoxItems.Count > 0; public List<KeyValuePair<string, string>> ComboBoxItems => _additionalOption.ComboBoxItems; public string ComboBoxValue { get => _additionalOption.ComboBoxValue.ToString(CultureInfo.InvariantCulture); set { if (int.Parse(value, CultureInfo.InvariantCulture) != _additionalOption.ComboBoxValue) { _additionalOption.ComboBoxValue = int.Parse(value, CultureInfo.InvariantCulture); NotifyPropertyChanged(); } } } // TextBox setting public bool ShowTextBox => _additionalOption.PluginOptionType == PluginAdditionalOption.AdditionalOptionType.Textbox; public int TextBoxMaxLength => (_additionalOption.TextBoxMaxLength == null) ? 0 : _additionalOption.TextBoxMaxLength.Value; // 0 is the default and means no limit. public string TextValue { get => _additionalOption.TextValue; set { if (value != _additionalOption.TextValue) { _additionalOption.TextValue = value; NotifyPropertyChanged(); } } } // NumberBox setting public bool ShowNumberBox => _additionalOption.PluginOptionType == PluginAdditionalOption.AdditionalOptionType.Numberbox; public double NumberBoxMin => (_additionalOption.NumberBoxMin == null) ? double.MinValue : _additionalOption.NumberBoxMin.Value; public double NumberBoxMax => (_additionalOption.NumberBoxMax == null) ? double.MaxValue : _additionalOption.NumberBoxMax.Value; public double NumberBoxSmallChange => (_additionalOption.NumberBoxSmallChange == null) ? 1 : _additionalOption.NumberBoxSmallChange.Value; public double NumberBoxLargeChange => (_additionalOption.NumberBoxLargeChange == null) ? 10 : _additionalOption.NumberBoxLargeChange.Value; public double NumberValue { get => _additionalOption.NumberValue; set { if (value != _additionalOption.NumberValue) { _additionalOption.NumberValue = value; NotifyPropertyChanged(); } } } // Show combined settings cards public bool ShowCheckboxAndCombobox => _additionalOption.PluginOptionType == PluginAdditionalOption.AdditionalOptionType.CheckboxAndCombobox; public bool ShowCheckboxAndTextbox => _additionalOption.PluginOptionType == PluginAdditionalOption.AdditionalOptionType.CheckboxAndTextbox; public bool ShowCheckboxAndNumberbox => _additionalOption.PluginOptionType == PluginAdditionalOption.AdditionalOptionType.CheckboxAndNumberbox; // Enabled state of ComboBox, TextBox, NumberBox (If combined with checkbox then checkbox value decides it.) public bool SecondSettingIsEnabled => (int)_additionalOption.PluginOptionType > 10 ? _additionalOption.Value : true; // Handle property changes public event PropertyChangedEventHandler PropertyChanged; private void NotifyPropertyChanged([CallerMemberName] string propertyName = "") { PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName)); } } }
htcfreek
5d669df21a756f4381c0e0400917b45992fdb6bd
19827d009382e88d91f319cf5b65326c6bc6f9b1
@jaimecbernardo Do we really need this? Or is this a mistake of VS and can be removed?
htcfreek
378
microsoft/PowerToys
28,972
[Run > Shell plugin] Shell selection improvements
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request ⚠ This PR breake existing third party plugins that have ComboBox options! ⚠ _(For compatibility reason we could implement old and new code. But this means we have duplicated code.)_ This PR improves the shell settings for the Shell plugin. Changes in this PR: - The ComboBox items of a `PluginAdditionalOption` now support reordering without braking existing user settings. - PowerShell 7 has been added. - New settings to run CMD, PowerShell and PowerShell 7 in Windows Terminal as console host. - Various text improvements. <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [x] **Closes:** #28876, #28783 - [x] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected - [x] **Tests:** Added/updated and all pass - [x] **Localization:** All end user facing strings can be localized - [ ] **Dev docs:** Added/updated - [ ] **New binaries:** Added on the required places - [ ] [JSON for signing](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ESRPSigning_core.json) for new binaries - [ ] [WXS for installer](https://github.com/microsoft/PowerToys/blob/main/installer/PowerToysSetup/Product.wxs) for new binaries and localization folder - [ ] [YML for CI pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ci/templates/build-powertoys-steps.yml) for new test projects - [ ] [YML for signed pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/release.yml) - [ ] **Documentation updated:** If checked, please file a pull request on [our docs repo](https://github.com/MicrosoftDocs/windows-uwp/tree/docs/hub/powertoys) and link it here: #xxx <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments ![image](https://github.com/microsoft/PowerToys/assets/61519853/21c2efa9-091c-461d-821c-2ddfe3a38b2f) _Note: The name of the "Find and run executable file" item has changed after creating the screenshot._ ![image](https://github.com/microsoft/PowerToys/assets/61519853/77923c40-6230-4cd4-b28d-a6e1c7ba0f11) <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed - Tested settings functionality. - Tested the new shell execution modes. - Validated that setting don't hang or crash if the json content uses the old notation.
null
2023-10-03 09:48:39+00:00
2023-10-11 12:54:50+00:00
src/settings-ui/Settings.UI/ViewModels/PluginAdditionalOptionViewModel.cs
// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System.Collections.Generic; using System.ComponentModel; using System.Runtime.CompilerServices; using Microsoft.PowerToys.Settings.UI.Library; namespace Microsoft.PowerToys.Settings.UI.ViewModels { public class PluginAdditionalOptionViewModel : INotifyPropertyChanged { private PluginAdditionalOption _additionalOption; internal PluginAdditionalOptionViewModel(PluginAdditionalOption additionalOption) { _additionalOption = additionalOption; } // Labels of single and first setting of combined types public string DisplayLabel => _additionalOption.DisplayLabel; public string DisplayDescription => _additionalOption.DisplayDescription; // Labels of second setting of combined types public string SecondDisplayLabel => _additionalOption.SecondDisplayLabel; public string SecondDisplayDescription => _additionalOption.SecondDisplayDescription; // Bool checkbox setting public bool ShowCheckBox => _additionalOption.PluginOptionType == PluginAdditionalOption.AdditionalOptionType.Checkbox; public bool Value { get => _additionalOption.Value; set { if (value != _additionalOption.Value) { _additionalOption.Value = value; NotifyPropertyChanged(); NotifyPropertyChanged(nameof(SecondSettingIsEnabled)); } } } // ComboBox setting public bool ShowComboBox => _additionalOption.PluginOptionType == PluginAdditionalOption.AdditionalOptionType.Combobox && _additionalOption.ComboBoxOptions != null && _additionalOption.ComboBoxOptions.Count > 0; public List<string> ComboBoxOptions => _additionalOption.ComboBoxOptions; public int ComboBoxValue { get => _additionalOption.ComboBoxValue; set { if (value != _additionalOption.ComboBoxValue) { _additionalOption.ComboBoxValue = value; NotifyPropertyChanged(); } } } // TextBox setting public bool ShowTextBox => _additionalOption.PluginOptionType == PluginAdditionalOption.AdditionalOptionType.Textbox; public int TextBoxMaxLength => (_additionalOption.TextBoxMaxLength == null) ? 0 : _additionalOption.TextBoxMaxLength.Value; // 0 is the default and means no limit. public string TextValue { get => _additionalOption.TextValue; set { if (value != _additionalOption.TextValue) { _additionalOption.TextValue = value; NotifyPropertyChanged(); } } } // NumberBox setting public bool ShowNumberBox => _additionalOption.PluginOptionType == PluginAdditionalOption.AdditionalOptionType.Numberbox; public double NumberBoxMin => (_additionalOption.NumberBoxMin == null) ? double.MinValue : _additionalOption.NumberBoxMin.Value; public double NumberBoxMax => (_additionalOption.NumberBoxMax == null) ? double.MaxValue : _additionalOption.NumberBoxMax.Value; public double NumberBoxSmallChange => (_additionalOption.NumberBoxSmallChange == null) ? 1 : _additionalOption.NumberBoxSmallChange.Value; public double NumberBoxLargeChange => (_additionalOption.NumberBoxLargeChange == null) ? 10 : _additionalOption.NumberBoxLargeChange.Value; public double NumberValue { get => _additionalOption.NumberValue; set { if (value != _additionalOption.NumberValue) { _additionalOption.NumberValue = value; NotifyPropertyChanged(); } } } // Show combined settings cards public bool ShowCheckboxAndCombobox => _additionalOption.PluginOptionType == PluginAdditionalOption.AdditionalOptionType.CheckboxAndCombobox; public bool ShowCheckboxAndTextbox => _additionalOption.PluginOptionType == PluginAdditionalOption.AdditionalOptionType.CheckboxAndTextbox; public bool ShowCheckboxAndNumberbox => _additionalOption.PluginOptionType == PluginAdditionalOption.AdditionalOptionType.CheckboxAndNumberbox; // Enabled state of ComboBox, TextBox, NumberBox (If combined with checkbox then checkbox value decides it.) public bool SecondSettingIsEnabled => (int)_additionalOption.PluginOptionType > 10 ? _additionalOption.Value : true; // Handle property changes public event PropertyChangedEventHandler PropertyChanged; private void NotifyPropertyChanged([CallerMemberName] string propertyName = "") { PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName)); } } }
// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System.Collections.Generic; using System.ComponentModel; using System.Globalization; using System.Runtime.CompilerServices; using Microsoft.PowerToys.Settings.UI.Library; namespace Microsoft.PowerToys.Settings.UI.ViewModels { public class PluginAdditionalOptionViewModel : INotifyPropertyChanged { private PluginAdditionalOption _additionalOption; internal PluginAdditionalOptionViewModel(PluginAdditionalOption additionalOption) { _additionalOption = additionalOption; } // Labels of single and first setting of combined types public string DisplayLabel => _additionalOption.DisplayLabel; public string DisplayDescription => _additionalOption.DisplayDescription; // Labels of second setting of combined types public string SecondDisplayLabel => _additionalOption.SecondDisplayLabel; public string SecondDisplayDescription => _additionalOption.SecondDisplayDescription; // Bool checkbox setting public bool ShowCheckBox => _additionalOption.PluginOptionType == PluginAdditionalOption.AdditionalOptionType.Checkbox; public bool Value { get => _additionalOption.Value; set { if (value != _additionalOption.Value) { _additionalOption.Value = value; NotifyPropertyChanged(); NotifyPropertyChanged(nameof(SecondSettingIsEnabled)); } } } // ComboBox setting public bool ShowComboBox => _additionalOption.PluginOptionType == PluginAdditionalOption.AdditionalOptionType.Combobox && _additionalOption.ComboBoxItems != null && _additionalOption.ComboBoxItems.Count > 0; public List<KeyValuePair<string, string>> ComboBoxItems => _additionalOption.ComboBoxItems; public string ComboBoxValue { get => _additionalOption.ComboBoxValue.ToString(CultureInfo.InvariantCulture); set { if (int.Parse(value, CultureInfo.InvariantCulture) != _additionalOption.ComboBoxValue) { _additionalOption.ComboBoxValue = int.Parse(value, CultureInfo.InvariantCulture); NotifyPropertyChanged(); } } } // TextBox setting public bool ShowTextBox => _additionalOption.PluginOptionType == PluginAdditionalOption.AdditionalOptionType.Textbox; public int TextBoxMaxLength => (_additionalOption.TextBoxMaxLength == null) ? 0 : _additionalOption.TextBoxMaxLength.Value; // 0 is the default and means no limit. public string TextValue { get => _additionalOption.TextValue; set { if (value != _additionalOption.TextValue) { _additionalOption.TextValue = value; NotifyPropertyChanged(); } } } // NumberBox setting public bool ShowNumberBox => _additionalOption.PluginOptionType == PluginAdditionalOption.AdditionalOptionType.Numberbox; public double NumberBoxMin => (_additionalOption.NumberBoxMin == null) ? double.MinValue : _additionalOption.NumberBoxMin.Value; public double NumberBoxMax => (_additionalOption.NumberBoxMax == null) ? double.MaxValue : _additionalOption.NumberBoxMax.Value; public double NumberBoxSmallChange => (_additionalOption.NumberBoxSmallChange == null) ? 1 : _additionalOption.NumberBoxSmallChange.Value; public double NumberBoxLargeChange => (_additionalOption.NumberBoxLargeChange == null) ? 10 : _additionalOption.NumberBoxLargeChange.Value; public double NumberValue { get => _additionalOption.NumberValue; set { if (value != _additionalOption.NumberValue) { _additionalOption.NumberValue = value; NotifyPropertyChanged(); } } } // Show combined settings cards public bool ShowCheckboxAndCombobox => _additionalOption.PluginOptionType == PluginAdditionalOption.AdditionalOptionType.CheckboxAndCombobox; public bool ShowCheckboxAndTextbox => _additionalOption.PluginOptionType == PluginAdditionalOption.AdditionalOptionType.CheckboxAndTextbox; public bool ShowCheckboxAndNumberbox => _additionalOption.PluginOptionType == PluginAdditionalOption.AdditionalOptionType.CheckboxAndNumberbox; // Enabled state of ComboBox, TextBox, NumberBox (If combined with checkbox then checkbox value decides it.) public bool SecondSettingIsEnabled => (int)_additionalOption.PluginOptionType > 10 ? _additionalOption.Value : true; // Handle property changes public event PropertyChangedEventHandler PropertyChanged; private void NotifyPropertyChanged([CallerMemberName] string propertyName = "") { PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName)); } } }
htcfreek
5d669df21a756f4381c0e0400917b45992fdb6bd
19827d009382e88d91f319cf5b65326c6bc6f9b1
It's needed for `CultureInfo`.
jaimecbernardo
379
microsoft/PowerToys
28,972
[Run > Shell plugin] Shell selection improvements
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request ⚠ This PR breake existing third party plugins that have ComboBox options! ⚠ _(For compatibility reason we could implement old and new code. But this means we have duplicated code.)_ This PR improves the shell settings for the Shell plugin. Changes in this PR: - The ComboBox items of a `PluginAdditionalOption` now support reordering without braking existing user settings. - PowerShell 7 has been added. - New settings to run CMD, PowerShell and PowerShell 7 in Windows Terminal as console host. - Various text improvements. <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [x] **Closes:** #28876, #28783 - [x] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected - [x] **Tests:** Added/updated and all pass - [x] **Localization:** All end user facing strings can be localized - [ ] **Dev docs:** Added/updated - [ ] **New binaries:** Added on the required places - [ ] [JSON for signing](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ESRPSigning_core.json) for new binaries - [ ] [WXS for installer](https://github.com/microsoft/PowerToys/blob/main/installer/PowerToysSetup/Product.wxs) for new binaries and localization folder - [ ] [YML for CI pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ci/templates/build-powertoys-steps.yml) for new test projects - [ ] [YML for signed pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/release.yml) - [ ] **Documentation updated:** If checked, please file a pull request on [our docs repo](https://github.com/MicrosoftDocs/windows-uwp/tree/docs/hub/powertoys) and link it here: #xxx <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments ![image](https://github.com/microsoft/PowerToys/assets/61519853/21c2efa9-091c-461d-821c-2ddfe3a38b2f) _Note: The name of the "Find and run executable file" item has changed after creating the screenshot._ ![image](https://github.com/microsoft/PowerToys/assets/61519853/77923c40-6230-4cd4-b28d-a6e1c7ba0f11) <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed - Tested settings functionality. - Tested the new shell execution modes. - Validated that setting don't hang or crash if the json content uses the old notation.
null
2023-10-03 09:48:39+00:00
2023-10-11 12:54:50+00:00
src/settings-ui/Settings.UI/ViewModels/PluginAdditionalOptionViewModel.cs
// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System.Collections.Generic; using System.ComponentModel; using System.Runtime.CompilerServices; using Microsoft.PowerToys.Settings.UI.Library; namespace Microsoft.PowerToys.Settings.UI.ViewModels { public class PluginAdditionalOptionViewModel : INotifyPropertyChanged { private PluginAdditionalOption _additionalOption; internal PluginAdditionalOptionViewModel(PluginAdditionalOption additionalOption) { _additionalOption = additionalOption; } // Labels of single and first setting of combined types public string DisplayLabel => _additionalOption.DisplayLabel; public string DisplayDescription => _additionalOption.DisplayDescription; // Labels of second setting of combined types public string SecondDisplayLabel => _additionalOption.SecondDisplayLabel; public string SecondDisplayDescription => _additionalOption.SecondDisplayDescription; // Bool checkbox setting public bool ShowCheckBox => _additionalOption.PluginOptionType == PluginAdditionalOption.AdditionalOptionType.Checkbox; public bool Value { get => _additionalOption.Value; set { if (value != _additionalOption.Value) { _additionalOption.Value = value; NotifyPropertyChanged(); NotifyPropertyChanged(nameof(SecondSettingIsEnabled)); } } } // ComboBox setting public bool ShowComboBox => _additionalOption.PluginOptionType == PluginAdditionalOption.AdditionalOptionType.Combobox && _additionalOption.ComboBoxOptions != null && _additionalOption.ComboBoxOptions.Count > 0; public List<string> ComboBoxOptions => _additionalOption.ComboBoxOptions; public int ComboBoxValue { get => _additionalOption.ComboBoxValue; set { if (value != _additionalOption.ComboBoxValue) { _additionalOption.ComboBoxValue = value; NotifyPropertyChanged(); } } } // TextBox setting public bool ShowTextBox => _additionalOption.PluginOptionType == PluginAdditionalOption.AdditionalOptionType.Textbox; public int TextBoxMaxLength => (_additionalOption.TextBoxMaxLength == null) ? 0 : _additionalOption.TextBoxMaxLength.Value; // 0 is the default and means no limit. public string TextValue { get => _additionalOption.TextValue; set { if (value != _additionalOption.TextValue) { _additionalOption.TextValue = value; NotifyPropertyChanged(); } } } // NumberBox setting public bool ShowNumberBox => _additionalOption.PluginOptionType == PluginAdditionalOption.AdditionalOptionType.Numberbox; public double NumberBoxMin => (_additionalOption.NumberBoxMin == null) ? double.MinValue : _additionalOption.NumberBoxMin.Value; public double NumberBoxMax => (_additionalOption.NumberBoxMax == null) ? double.MaxValue : _additionalOption.NumberBoxMax.Value; public double NumberBoxSmallChange => (_additionalOption.NumberBoxSmallChange == null) ? 1 : _additionalOption.NumberBoxSmallChange.Value; public double NumberBoxLargeChange => (_additionalOption.NumberBoxLargeChange == null) ? 10 : _additionalOption.NumberBoxLargeChange.Value; public double NumberValue { get => _additionalOption.NumberValue; set { if (value != _additionalOption.NumberValue) { _additionalOption.NumberValue = value; NotifyPropertyChanged(); } } } // Show combined settings cards public bool ShowCheckboxAndCombobox => _additionalOption.PluginOptionType == PluginAdditionalOption.AdditionalOptionType.CheckboxAndCombobox; public bool ShowCheckboxAndTextbox => _additionalOption.PluginOptionType == PluginAdditionalOption.AdditionalOptionType.CheckboxAndTextbox; public bool ShowCheckboxAndNumberbox => _additionalOption.PluginOptionType == PluginAdditionalOption.AdditionalOptionType.CheckboxAndNumberbox; // Enabled state of ComboBox, TextBox, NumberBox (If combined with checkbox then checkbox value decides it.) public bool SecondSettingIsEnabled => (int)_additionalOption.PluginOptionType > 10 ? _additionalOption.Value : true; // Handle property changes public event PropertyChangedEventHandler PropertyChanged; private void NotifyPropertyChanged([CallerMemberName] string propertyName = "") { PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName)); } } }
// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System.Collections.Generic; using System.ComponentModel; using System.Globalization; using System.Runtime.CompilerServices; using Microsoft.PowerToys.Settings.UI.Library; namespace Microsoft.PowerToys.Settings.UI.ViewModels { public class PluginAdditionalOptionViewModel : INotifyPropertyChanged { private PluginAdditionalOption _additionalOption; internal PluginAdditionalOptionViewModel(PluginAdditionalOption additionalOption) { _additionalOption = additionalOption; } // Labels of single and first setting of combined types public string DisplayLabel => _additionalOption.DisplayLabel; public string DisplayDescription => _additionalOption.DisplayDescription; // Labels of second setting of combined types public string SecondDisplayLabel => _additionalOption.SecondDisplayLabel; public string SecondDisplayDescription => _additionalOption.SecondDisplayDescription; // Bool checkbox setting public bool ShowCheckBox => _additionalOption.PluginOptionType == PluginAdditionalOption.AdditionalOptionType.Checkbox; public bool Value { get => _additionalOption.Value; set { if (value != _additionalOption.Value) { _additionalOption.Value = value; NotifyPropertyChanged(); NotifyPropertyChanged(nameof(SecondSettingIsEnabled)); } } } // ComboBox setting public bool ShowComboBox => _additionalOption.PluginOptionType == PluginAdditionalOption.AdditionalOptionType.Combobox && _additionalOption.ComboBoxItems != null && _additionalOption.ComboBoxItems.Count > 0; public List<KeyValuePair<string, string>> ComboBoxItems => _additionalOption.ComboBoxItems; public string ComboBoxValue { get => _additionalOption.ComboBoxValue.ToString(CultureInfo.InvariantCulture); set { if (int.Parse(value, CultureInfo.InvariantCulture) != _additionalOption.ComboBoxValue) { _additionalOption.ComboBoxValue = int.Parse(value, CultureInfo.InvariantCulture); NotifyPropertyChanged(); } } } // TextBox setting public bool ShowTextBox => _additionalOption.PluginOptionType == PluginAdditionalOption.AdditionalOptionType.Textbox; public int TextBoxMaxLength => (_additionalOption.TextBoxMaxLength == null) ? 0 : _additionalOption.TextBoxMaxLength.Value; // 0 is the default and means no limit. public string TextValue { get => _additionalOption.TextValue; set { if (value != _additionalOption.TextValue) { _additionalOption.TextValue = value; NotifyPropertyChanged(); } } } // NumberBox setting public bool ShowNumberBox => _additionalOption.PluginOptionType == PluginAdditionalOption.AdditionalOptionType.Numberbox; public double NumberBoxMin => (_additionalOption.NumberBoxMin == null) ? double.MinValue : _additionalOption.NumberBoxMin.Value; public double NumberBoxMax => (_additionalOption.NumberBoxMax == null) ? double.MaxValue : _additionalOption.NumberBoxMax.Value; public double NumberBoxSmallChange => (_additionalOption.NumberBoxSmallChange == null) ? 1 : _additionalOption.NumberBoxSmallChange.Value; public double NumberBoxLargeChange => (_additionalOption.NumberBoxLargeChange == null) ? 10 : _additionalOption.NumberBoxLargeChange.Value; public double NumberValue { get => _additionalOption.NumberValue; set { if (value != _additionalOption.NumberValue) { _additionalOption.NumberValue = value; NotifyPropertyChanged(); } } } // Show combined settings cards public bool ShowCheckboxAndCombobox => _additionalOption.PluginOptionType == PluginAdditionalOption.AdditionalOptionType.CheckboxAndCombobox; public bool ShowCheckboxAndTextbox => _additionalOption.PluginOptionType == PluginAdditionalOption.AdditionalOptionType.CheckboxAndTextbox; public bool ShowCheckboxAndNumberbox => _additionalOption.PluginOptionType == PluginAdditionalOption.AdditionalOptionType.CheckboxAndNumberbox; // Enabled state of ComboBox, TextBox, NumberBox (If combined with checkbox then checkbox value decides it.) public bool SecondSettingIsEnabled => (int)_additionalOption.PluginOptionType > 10 ? _additionalOption.Value : true; // Handle property changes public event PropertyChangedEventHandler PropertyChanged; private void NotifyPropertyChanged([CallerMemberName] string propertyName = "") { PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName)); } } }
htcfreek
5d669df21a756f4381c0e0400917b45992fdb6bd
19827d009382e88d91f319cf5b65326c6bc6f9b1
`System.Text.Json.Serialization;` is the one I'm not sure it's needed.
jaimecbernardo
380
microsoft/PowerToys
28,972
[Run > Shell plugin] Shell selection improvements
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request ⚠ This PR breake existing third party plugins that have ComboBox options! ⚠ _(For compatibility reason we could implement old and new code. But this means we have duplicated code.)_ This PR improves the shell settings for the Shell plugin. Changes in this PR: - The ComboBox items of a `PluginAdditionalOption` now support reordering without braking existing user settings. - PowerShell 7 has been added. - New settings to run CMD, PowerShell and PowerShell 7 in Windows Terminal as console host. - Various text improvements. <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [x] **Closes:** #28876, #28783 - [x] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected - [x] **Tests:** Added/updated and all pass - [x] **Localization:** All end user facing strings can be localized - [ ] **Dev docs:** Added/updated - [ ] **New binaries:** Added on the required places - [ ] [JSON for signing](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ESRPSigning_core.json) for new binaries - [ ] [WXS for installer](https://github.com/microsoft/PowerToys/blob/main/installer/PowerToysSetup/Product.wxs) for new binaries and localization folder - [ ] [YML for CI pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ci/templates/build-powertoys-steps.yml) for new test projects - [ ] [YML for signed pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/release.yml) - [ ] **Documentation updated:** If checked, please file a pull request on [our docs repo](https://github.com/MicrosoftDocs/windows-uwp/tree/docs/hub/powertoys) and link it here: #xxx <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments ![image](https://github.com/microsoft/PowerToys/assets/61519853/21c2efa9-091c-461d-821c-2ddfe3a38b2f) _Note: The name of the "Find and run executable file" item has changed after creating the screenshot._ ![image](https://github.com/microsoft/PowerToys/assets/61519853/77923c40-6230-4cd4-b28d-a6e1c7ba0f11) <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed - Tested settings functionality. - Tested the new shell execution modes. - Validated that setting don't hang or crash if the json content uses the old notation.
null
2023-10-03 09:48:39+00:00
2023-10-11 12:54:50+00:00
src/settings-ui/Settings.UI/ViewModels/PluginAdditionalOptionViewModel.cs
// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System.Collections.Generic; using System.ComponentModel; using System.Runtime.CompilerServices; using Microsoft.PowerToys.Settings.UI.Library; namespace Microsoft.PowerToys.Settings.UI.ViewModels { public class PluginAdditionalOptionViewModel : INotifyPropertyChanged { private PluginAdditionalOption _additionalOption; internal PluginAdditionalOptionViewModel(PluginAdditionalOption additionalOption) { _additionalOption = additionalOption; } // Labels of single and first setting of combined types public string DisplayLabel => _additionalOption.DisplayLabel; public string DisplayDescription => _additionalOption.DisplayDescription; // Labels of second setting of combined types public string SecondDisplayLabel => _additionalOption.SecondDisplayLabel; public string SecondDisplayDescription => _additionalOption.SecondDisplayDescription; // Bool checkbox setting public bool ShowCheckBox => _additionalOption.PluginOptionType == PluginAdditionalOption.AdditionalOptionType.Checkbox; public bool Value { get => _additionalOption.Value; set { if (value != _additionalOption.Value) { _additionalOption.Value = value; NotifyPropertyChanged(); NotifyPropertyChanged(nameof(SecondSettingIsEnabled)); } } } // ComboBox setting public bool ShowComboBox => _additionalOption.PluginOptionType == PluginAdditionalOption.AdditionalOptionType.Combobox && _additionalOption.ComboBoxOptions != null && _additionalOption.ComboBoxOptions.Count > 0; public List<string> ComboBoxOptions => _additionalOption.ComboBoxOptions; public int ComboBoxValue { get => _additionalOption.ComboBoxValue; set { if (value != _additionalOption.ComboBoxValue) { _additionalOption.ComboBoxValue = value; NotifyPropertyChanged(); } } } // TextBox setting public bool ShowTextBox => _additionalOption.PluginOptionType == PluginAdditionalOption.AdditionalOptionType.Textbox; public int TextBoxMaxLength => (_additionalOption.TextBoxMaxLength == null) ? 0 : _additionalOption.TextBoxMaxLength.Value; // 0 is the default and means no limit. public string TextValue { get => _additionalOption.TextValue; set { if (value != _additionalOption.TextValue) { _additionalOption.TextValue = value; NotifyPropertyChanged(); } } } // NumberBox setting public bool ShowNumberBox => _additionalOption.PluginOptionType == PluginAdditionalOption.AdditionalOptionType.Numberbox; public double NumberBoxMin => (_additionalOption.NumberBoxMin == null) ? double.MinValue : _additionalOption.NumberBoxMin.Value; public double NumberBoxMax => (_additionalOption.NumberBoxMax == null) ? double.MaxValue : _additionalOption.NumberBoxMax.Value; public double NumberBoxSmallChange => (_additionalOption.NumberBoxSmallChange == null) ? 1 : _additionalOption.NumberBoxSmallChange.Value; public double NumberBoxLargeChange => (_additionalOption.NumberBoxLargeChange == null) ? 10 : _additionalOption.NumberBoxLargeChange.Value; public double NumberValue { get => _additionalOption.NumberValue; set { if (value != _additionalOption.NumberValue) { _additionalOption.NumberValue = value; NotifyPropertyChanged(); } } } // Show combined settings cards public bool ShowCheckboxAndCombobox => _additionalOption.PluginOptionType == PluginAdditionalOption.AdditionalOptionType.CheckboxAndCombobox; public bool ShowCheckboxAndTextbox => _additionalOption.PluginOptionType == PluginAdditionalOption.AdditionalOptionType.CheckboxAndTextbox; public bool ShowCheckboxAndNumberbox => _additionalOption.PluginOptionType == PluginAdditionalOption.AdditionalOptionType.CheckboxAndNumberbox; // Enabled state of ComboBox, TextBox, NumberBox (If combined with checkbox then checkbox value decides it.) public bool SecondSettingIsEnabled => (int)_additionalOption.PluginOptionType > 10 ? _additionalOption.Value : true; // Handle property changes public event PropertyChangedEventHandler PropertyChanged; private void NotifyPropertyChanged([CallerMemberName] string propertyName = "") { PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName)); } } }
// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System.Collections.Generic; using System.ComponentModel; using System.Globalization; using System.Runtime.CompilerServices; using Microsoft.PowerToys.Settings.UI.Library; namespace Microsoft.PowerToys.Settings.UI.ViewModels { public class PluginAdditionalOptionViewModel : INotifyPropertyChanged { private PluginAdditionalOption _additionalOption; internal PluginAdditionalOptionViewModel(PluginAdditionalOption additionalOption) { _additionalOption = additionalOption; } // Labels of single and first setting of combined types public string DisplayLabel => _additionalOption.DisplayLabel; public string DisplayDescription => _additionalOption.DisplayDescription; // Labels of second setting of combined types public string SecondDisplayLabel => _additionalOption.SecondDisplayLabel; public string SecondDisplayDescription => _additionalOption.SecondDisplayDescription; // Bool checkbox setting public bool ShowCheckBox => _additionalOption.PluginOptionType == PluginAdditionalOption.AdditionalOptionType.Checkbox; public bool Value { get => _additionalOption.Value; set { if (value != _additionalOption.Value) { _additionalOption.Value = value; NotifyPropertyChanged(); NotifyPropertyChanged(nameof(SecondSettingIsEnabled)); } } } // ComboBox setting public bool ShowComboBox => _additionalOption.PluginOptionType == PluginAdditionalOption.AdditionalOptionType.Combobox && _additionalOption.ComboBoxItems != null && _additionalOption.ComboBoxItems.Count > 0; public List<KeyValuePair<string, string>> ComboBoxItems => _additionalOption.ComboBoxItems; public string ComboBoxValue { get => _additionalOption.ComboBoxValue.ToString(CultureInfo.InvariantCulture); set { if (int.Parse(value, CultureInfo.InvariantCulture) != _additionalOption.ComboBoxValue) { _additionalOption.ComboBoxValue = int.Parse(value, CultureInfo.InvariantCulture); NotifyPropertyChanged(); } } } // TextBox setting public bool ShowTextBox => _additionalOption.PluginOptionType == PluginAdditionalOption.AdditionalOptionType.Textbox; public int TextBoxMaxLength => (_additionalOption.TextBoxMaxLength == null) ? 0 : _additionalOption.TextBoxMaxLength.Value; // 0 is the default and means no limit. public string TextValue { get => _additionalOption.TextValue; set { if (value != _additionalOption.TextValue) { _additionalOption.TextValue = value; NotifyPropertyChanged(); } } } // NumberBox setting public bool ShowNumberBox => _additionalOption.PluginOptionType == PluginAdditionalOption.AdditionalOptionType.Numberbox; public double NumberBoxMin => (_additionalOption.NumberBoxMin == null) ? double.MinValue : _additionalOption.NumberBoxMin.Value; public double NumberBoxMax => (_additionalOption.NumberBoxMax == null) ? double.MaxValue : _additionalOption.NumberBoxMax.Value; public double NumberBoxSmallChange => (_additionalOption.NumberBoxSmallChange == null) ? 1 : _additionalOption.NumberBoxSmallChange.Value; public double NumberBoxLargeChange => (_additionalOption.NumberBoxLargeChange == null) ? 10 : _additionalOption.NumberBoxLargeChange.Value; public double NumberValue { get => _additionalOption.NumberValue; set { if (value != _additionalOption.NumberValue) { _additionalOption.NumberValue = value; NotifyPropertyChanged(); } } } // Show combined settings cards public bool ShowCheckboxAndCombobox => _additionalOption.PluginOptionType == PluginAdditionalOption.AdditionalOptionType.CheckboxAndCombobox; public bool ShowCheckboxAndTextbox => _additionalOption.PluginOptionType == PluginAdditionalOption.AdditionalOptionType.CheckboxAndTextbox; public bool ShowCheckboxAndNumberbox => _additionalOption.PluginOptionType == PluginAdditionalOption.AdditionalOptionType.CheckboxAndNumberbox; // Enabled state of ComboBox, TextBox, NumberBox (If combined with checkbox then checkbox value decides it.) public bool SecondSettingIsEnabled => (int)_additionalOption.PluginOptionType > 10 ? _additionalOption.Value : true; // Handle property changes public event PropertyChangedEventHandler PropertyChanged; private void NotifyPropertyChanged([CallerMemberName] string propertyName = "") { PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName)); } } }
htcfreek
5d669df21a756f4381c0e0400917b45992fdb6bd
19827d009382e88d91f319cf5b65326c6bc6f9b1
~I think for the "JSONIgnore" configuration.~ Nice catch. It's a leftover of a mistake I made.
htcfreek
381
microsoft/PowerToys
28,972
[Run > Shell plugin] Shell selection improvements
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request ⚠ This PR breake existing third party plugins that have ComboBox options! ⚠ _(For compatibility reason we could implement old and new code. But this means we have duplicated code.)_ This PR improves the shell settings for the Shell plugin. Changes in this PR: - The ComboBox items of a `PluginAdditionalOption` now support reordering without braking existing user settings. - PowerShell 7 has been added. - New settings to run CMD, PowerShell and PowerShell 7 in Windows Terminal as console host. - Various text improvements. <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [x] **Closes:** #28876, #28783 - [x] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected - [x] **Tests:** Added/updated and all pass - [x] **Localization:** All end user facing strings can be localized - [ ] **Dev docs:** Added/updated - [ ] **New binaries:** Added on the required places - [ ] [JSON for signing](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ESRPSigning_core.json) for new binaries - [ ] [WXS for installer](https://github.com/microsoft/PowerToys/blob/main/installer/PowerToysSetup/Product.wxs) for new binaries and localization folder - [ ] [YML for CI pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ci/templates/build-powertoys-steps.yml) for new test projects - [ ] [YML for signed pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/release.yml) - [ ] **Documentation updated:** If checked, please file a pull request on [our docs repo](https://github.com/MicrosoftDocs/windows-uwp/tree/docs/hub/powertoys) and link it here: #xxx <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments ![image](https://github.com/microsoft/PowerToys/assets/61519853/21c2efa9-091c-461d-821c-2ddfe3a38b2f) _Note: The name of the "Find and run executable file" item has changed after creating the screenshot._ ![image](https://github.com/microsoft/PowerToys/assets/61519853/77923c40-6230-4cd4-b28d-a6e1c7ba0f11) <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed - Tested settings functionality. - Tested the new shell execution modes. - Validated that setting don't hang or crash if the json content uses the old notation.
null
2023-10-03 09:48:39+00:00
2023-10-11 12:54:50+00:00
src/settings-ui/Settings.UI/ViewModels/PluginAdditionalOptionViewModel.cs
// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System.Collections.Generic; using System.ComponentModel; using System.Runtime.CompilerServices; using Microsoft.PowerToys.Settings.UI.Library; namespace Microsoft.PowerToys.Settings.UI.ViewModels { public class PluginAdditionalOptionViewModel : INotifyPropertyChanged { private PluginAdditionalOption _additionalOption; internal PluginAdditionalOptionViewModel(PluginAdditionalOption additionalOption) { _additionalOption = additionalOption; } // Labels of single and first setting of combined types public string DisplayLabel => _additionalOption.DisplayLabel; public string DisplayDescription => _additionalOption.DisplayDescription; // Labels of second setting of combined types public string SecondDisplayLabel => _additionalOption.SecondDisplayLabel; public string SecondDisplayDescription => _additionalOption.SecondDisplayDescription; // Bool checkbox setting public bool ShowCheckBox => _additionalOption.PluginOptionType == PluginAdditionalOption.AdditionalOptionType.Checkbox; public bool Value { get => _additionalOption.Value; set { if (value != _additionalOption.Value) { _additionalOption.Value = value; NotifyPropertyChanged(); NotifyPropertyChanged(nameof(SecondSettingIsEnabled)); } } } // ComboBox setting public bool ShowComboBox => _additionalOption.PluginOptionType == PluginAdditionalOption.AdditionalOptionType.Combobox && _additionalOption.ComboBoxOptions != null && _additionalOption.ComboBoxOptions.Count > 0; public List<string> ComboBoxOptions => _additionalOption.ComboBoxOptions; public int ComboBoxValue { get => _additionalOption.ComboBoxValue; set { if (value != _additionalOption.ComboBoxValue) { _additionalOption.ComboBoxValue = value; NotifyPropertyChanged(); } } } // TextBox setting public bool ShowTextBox => _additionalOption.PluginOptionType == PluginAdditionalOption.AdditionalOptionType.Textbox; public int TextBoxMaxLength => (_additionalOption.TextBoxMaxLength == null) ? 0 : _additionalOption.TextBoxMaxLength.Value; // 0 is the default and means no limit. public string TextValue { get => _additionalOption.TextValue; set { if (value != _additionalOption.TextValue) { _additionalOption.TextValue = value; NotifyPropertyChanged(); } } } // NumberBox setting public bool ShowNumberBox => _additionalOption.PluginOptionType == PluginAdditionalOption.AdditionalOptionType.Numberbox; public double NumberBoxMin => (_additionalOption.NumberBoxMin == null) ? double.MinValue : _additionalOption.NumberBoxMin.Value; public double NumberBoxMax => (_additionalOption.NumberBoxMax == null) ? double.MaxValue : _additionalOption.NumberBoxMax.Value; public double NumberBoxSmallChange => (_additionalOption.NumberBoxSmallChange == null) ? 1 : _additionalOption.NumberBoxSmallChange.Value; public double NumberBoxLargeChange => (_additionalOption.NumberBoxLargeChange == null) ? 10 : _additionalOption.NumberBoxLargeChange.Value; public double NumberValue { get => _additionalOption.NumberValue; set { if (value != _additionalOption.NumberValue) { _additionalOption.NumberValue = value; NotifyPropertyChanged(); } } } // Show combined settings cards public bool ShowCheckboxAndCombobox => _additionalOption.PluginOptionType == PluginAdditionalOption.AdditionalOptionType.CheckboxAndCombobox; public bool ShowCheckboxAndTextbox => _additionalOption.PluginOptionType == PluginAdditionalOption.AdditionalOptionType.CheckboxAndTextbox; public bool ShowCheckboxAndNumberbox => _additionalOption.PluginOptionType == PluginAdditionalOption.AdditionalOptionType.CheckboxAndNumberbox; // Enabled state of ComboBox, TextBox, NumberBox (If combined with checkbox then checkbox value decides it.) public bool SecondSettingIsEnabled => (int)_additionalOption.PluginOptionType > 10 ? _additionalOption.Value : true; // Handle property changes public event PropertyChangedEventHandler PropertyChanged; private void NotifyPropertyChanged([CallerMemberName] string propertyName = "") { PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName)); } } }
// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System.Collections.Generic; using System.ComponentModel; using System.Globalization; using System.Runtime.CompilerServices; using Microsoft.PowerToys.Settings.UI.Library; namespace Microsoft.PowerToys.Settings.UI.ViewModels { public class PluginAdditionalOptionViewModel : INotifyPropertyChanged { private PluginAdditionalOption _additionalOption; internal PluginAdditionalOptionViewModel(PluginAdditionalOption additionalOption) { _additionalOption = additionalOption; } // Labels of single and first setting of combined types public string DisplayLabel => _additionalOption.DisplayLabel; public string DisplayDescription => _additionalOption.DisplayDescription; // Labels of second setting of combined types public string SecondDisplayLabel => _additionalOption.SecondDisplayLabel; public string SecondDisplayDescription => _additionalOption.SecondDisplayDescription; // Bool checkbox setting public bool ShowCheckBox => _additionalOption.PluginOptionType == PluginAdditionalOption.AdditionalOptionType.Checkbox; public bool Value { get => _additionalOption.Value; set { if (value != _additionalOption.Value) { _additionalOption.Value = value; NotifyPropertyChanged(); NotifyPropertyChanged(nameof(SecondSettingIsEnabled)); } } } // ComboBox setting public bool ShowComboBox => _additionalOption.PluginOptionType == PluginAdditionalOption.AdditionalOptionType.Combobox && _additionalOption.ComboBoxItems != null && _additionalOption.ComboBoxItems.Count > 0; public List<KeyValuePair<string, string>> ComboBoxItems => _additionalOption.ComboBoxItems; public string ComboBoxValue { get => _additionalOption.ComboBoxValue.ToString(CultureInfo.InvariantCulture); set { if (int.Parse(value, CultureInfo.InvariantCulture) != _additionalOption.ComboBoxValue) { _additionalOption.ComboBoxValue = int.Parse(value, CultureInfo.InvariantCulture); NotifyPropertyChanged(); } } } // TextBox setting public bool ShowTextBox => _additionalOption.PluginOptionType == PluginAdditionalOption.AdditionalOptionType.Textbox; public int TextBoxMaxLength => (_additionalOption.TextBoxMaxLength == null) ? 0 : _additionalOption.TextBoxMaxLength.Value; // 0 is the default and means no limit. public string TextValue { get => _additionalOption.TextValue; set { if (value != _additionalOption.TextValue) { _additionalOption.TextValue = value; NotifyPropertyChanged(); } } } // NumberBox setting public bool ShowNumberBox => _additionalOption.PluginOptionType == PluginAdditionalOption.AdditionalOptionType.Numberbox; public double NumberBoxMin => (_additionalOption.NumberBoxMin == null) ? double.MinValue : _additionalOption.NumberBoxMin.Value; public double NumberBoxMax => (_additionalOption.NumberBoxMax == null) ? double.MaxValue : _additionalOption.NumberBoxMax.Value; public double NumberBoxSmallChange => (_additionalOption.NumberBoxSmallChange == null) ? 1 : _additionalOption.NumberBoxSmallChange.Value; public double NumberBoxLargeChange => (_additionalOption.NumberBoxLargeChange == null) ? 10 : _additionalOption.NumberBoxLargeChange.Value; public double NumberValue { get => _additionalOption.NumberValue; set { if (value != _additionalOption.NumberValue) { _additionalOption.NumberValue = value; NotifyPropertyChanged(); } } } // Show combined settings cards public bool ShowCheckboxAndCombobox => _additionalOption.PluginOptionType == PluginAdditionalOption.AdditionalOptionType.CheckboxAndCombobox; public bool ShowCheckboxAndTextbox => _additionalOption.PluginOptionType == PluginAdditionalOption.AdditionalOptionType.CheckboxAndTextbox; public bool ShowCheckboxAndNumberbox => _additionalOption.PluginOptionType == PluginAdditionalOption.AdditionalOptionType.CheckboxAndNumberbox; // Enabled state of ComboBox, TextBox, NumberBox (If combined with checkbox then checkbox value decides it.) public bool SecondSettingIsEnabled => (int)_additionalOption.PluginOptionType > 10 ? _additionalOption.Value : true; // Handle property changes public event PropertyChangedEventHandler PropertyChanged; private void NotifyPropertyChanged([CallerMemberName] string propertyName = "") { PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName)); } } }
htcfreek
5d669df21a756f4381c0e0400917b45992fdb6bd
19827d009382e88d91f319cf5b65326c6bc6f9b1
Was about to push it as well after testing to make sure :P Thanks for the commit. I'll merge after CI passes (and I look at the PR again)
jaimecbernardo
382
microsoft/PowerToys
28,884
[Run] Fix Scientific Notation Errors in Calculator Plugin
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request This PR allows the Calculator plugin in PowerToys Run to use scientific notation (e.g. `5e3 = 5000`). The PR fixes a regression in PowerToys that was introduced in v0.69.1. <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [X] **Closes:** #25656 - [ ] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected - [X] **Tests:** Added/updated and all pass - [ ] **Localization:** All end user facing strings can be localized - [ ] **Dev docs:** Added/updated - [ ] **New binaries:** Added on the required places - [ ] [JSON for signing](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ESRPSigning_core.json) for new binaries - [ ] [WXS for installer](https://github.com/microsoft/PowerToys/blob/main/installer/PowerToysSetup/Product.wxs) for new binaries and localization folder - [ ] [YML for CI pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ci/templates/build-powertoys-steps.yml) for new test projects - [ ] [YML for signed pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/release.yml) - [ ] **Documentation updated:** If checked, please file a pull request on [our docs repo](https://github.com/MicrosoftDocs/windows-uwp/tree/docs/hub/powertoys) and link it here: #xxx <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments Nothing else fixed. <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed I updated the Calculator unit tests to include various expressions using this notation and confirmed that they all pass.
null
2023-09-28 21:24:13+00:00
2024-01-03 11:22:10+00:00
src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.Calculator/CalculateHelper.cs
// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using System.Text.RegularExpressions; namespace Microsoft.PowerToys.Run.Plugin.Calculator { public static class CalculateHelper { private static readonly Regex RegValidExpressChar = new Regex( @"^(" + @"%|" + @"ceil\s*\(|floor\s*\(|exp\s*\(|max\s*\(|min\s*\(|abs\s*\(|log(?:2|10)?\s*\(|ln\s*\(|sqrt\s*\(|pow\s*\(|" + @"factorial\s*\(|sign\s*\(|round\s*\(|rand\s*\(|" + @"sin\s*\(|cos\s*\(|tan\s*\(|arcsin\s*\(|arccos\s*\(|arctan\s*\(|" + @"sinh\s*\(|cosh\s*\(|tanh\s*\(|arsinh\s*\(|arcosh\s*\(|artanh\s*\(|" + @"pi|" + @"==|~=|&&|\|\||" + @"e|[0-9]|0x[0-9a-fA-F]+|0b[01]+|[\+\-\*\/\^\., ""]|[\(\)\|\!\[\]]" + @")+$", RegexOptions.Compiled); public static bool InputValid(string input) { if (string.IsNullOrWhiteSpace(input)) { throw new ArgumentNullException(paramName: nameof(input)); } if (!RegValidExpressChar.IsMatch(input)) { return false; } if (!BracketHelper.IsBracketComplete(input)) { return false; } // If the input ends with a binary operator then it is not a valid input to mages and the Interpret function would throw an exception. Because we expect here that the user has not finished typing we block those inputs. string trimmedInput = input.TrimEnd(); if (trimmedInput.EndsWith('+') || trimmedInput.EndsWith('-') || trimmedInput.EndsWith('*') || trimmedInput.EndsWith('|') || trimmedInput.EndsWith('\\') || trimmedInput.EndsWith('^') || trimmedInput.EndsWith('=') || trimmedInput.EndsWith('&') || trimmedInput.EndsWith('/') || trimmedInput.EndsWith('%')) { return false; } return true; } public static string FixHumanMultiplicationExpressions(string input) { var output = CheckNumberOrConstantThenParenthesisExpr(input); output = CheckNumberOrConstantThenFunc(output); output = CheckParenthesisExprThenFunc(output); output = CheckParenthesisExprThenParenthesisExpr(output); output = CheckNumberThenConstant(output); output = CheckConstantThenConstant(output); return output; } /* * num (exp) * const (exp) */ private static string CheckNumberOrConstantThenParenthesisExpr(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(\d+|pi|e)\s*(\()", m => { if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } /* * num func * const func */ private static string CheckNumberOrConstantThenFunc(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(\d+|pi|e)\s*([a-zA-Z]+[0-9]*\s*\()", m => { if (input[m.Index] == 'e' && input[m.Index + 1] == 'x' && input[m.Index + 2] == 'p') { return m.Value; } if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } /* * (exp) func * func func */ private static string CheckParenthesisExprThenFunc(string input) { var p = @"(\))\s*([a-zA-Z]+[0-9]*\s*\()"; var r = "$1 * $2"; return Regex.Replace(input, p, r); } /* * (exp) (exp) * func (exp) */ private static string CheckParenthesisExprThenParenthesisExpr(string input) { var p = @"(\))\s*(\()"; var r = "$1 * $2"; return Regex.Replace(input, p, r); } /* * num const */ private static string CheckNumberThenConstant(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(\d+)\s*(pi|e)", m => { if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } /* * const const */ private static string CheckConstantThenConstant(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(pi|e)\s*(pi|e)", m => { if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } } }
// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using System.Collections.Generic; using System.Globalization; using System.Text.RegularExpressions; namespace Microsoft.PowerToys.Run.Plugin.Calculator { public static class CalculateHelper { private static readonly Regex RegValidExpressChar = new Regex( @"^(" + @"%|" + @"ceil\s*\(|floor\s*\(|exp\s*\(|max\s*\(|min\s*\(|abs\s*\(|log(?:2|10)?\s*\(|ln\s*\(|sqrt\s*\(|pow\s*\(|" + @"factorial\s*\(|sign\s*\(|round\s*\(|rand\s*\(|" + @"sin\s*\(|cos\s*\(|tan\s*\(|arcsin\s*\(|arccos\s*\(|arctan\s*\(|" + @"sinh\s*\(|cosh\s*\(|tanh\s*\(|arsinh\s*\(|arcosh\s*\(|artanh\s*\(|" + @"pi|" + @"==|~=|&&|\|\||" + @"((-?(\d+(\.\d*)?)|-?(\.\d+))[E](-?\d+))|" + /* expression from CheckScientificNotation between parenthesis */ @"e|[0-9]|0x[0-9a-fA-F]+|0b[01]+|[\+\-\*\/\^\., ""]|[\(\)\|\!\[\]]" + @")+$", RegexOptions.Compiled); public static bool InputValid(string input) { if (string.IsNullOrWhiteSpace(input)) { throw new ArgumentNullException(paramName: nameof(input)); } if (!RegValidExpressChar.IsMatch(input)) { return false; } if (!BracketHelper.IsBracketComplete(input)) { return false; } // If the input ends with a binary operator then it is not a valid input to mages and the Interpret function would throw an exception. Because we expect here that the user has not finished typing we block those inputs. string trimmedInput = input.TrimEnd(); if (trimmedInput.EndsWith('+') || trimmedInput.EndsWith('-') || trimmedInput.EndsWith('*') || trimmedInput.EndsWith('|') || trimmedInput.EndsWith('\\') || trimmedInput.EndsWith('^') || trimmedInput.EndsWith('=') || trimmedInput.EndsWith('&') || trimmedInput.EndsWith('/') || trimmedInput.EndsWith('%')) { return false; } return true; } public static string FixHumanMultiplicationExpressions(string input) { var output = CheckScientificNotation(input); output = CheckNumberOrConstantThenParenthesisExpr(output); output = CheckNumberOrConstantThenFunc(output); output = CheckParenthesisExprThenFunc(output); output = CheckParenthesisExprThenParenthesisExpr(output); output = CheckNumberThenConstant(output); output = CheckConstantThenConstant(output); return output; } private static string CheckScientificNotation(string input) { /** * NOTE: By the time the expression gets to us, it's already in English format. * * Regex explanation: * (-?(\d+({0}\d*)?)|-?({0}\d+)): Used to capture one of two types: * -?(\d+({0}\d*)?): Captures a decimal number starting with a number (e.g. "-1.23") * -?({0}\d+): Captures a decimal number without leading number (e.g. ".23") * E: Captures capital 'E' * (-?\d+): Captures an integer number (e.g. "-1" or "23") */ var p = @"(-?(\d+(\.\d*)?)|-?(\.\d+))E(-?\d+)"; return Regex.Replace(input, p, "($1 * 10^($5))"); } /* * num (exp) * const (exp) */ private static string CheckNumberOrConstantThenParenthesisExpr(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(\d+|pi|e)\s*(\()", m => { if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } /* * num func * const func */ private static string CheckNumberOrConstantThenFunc(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(\d+|pi|e)\s*([a-zA-Z]+[0-9]*\s*\()", m => { if (input[m.Index] == 'e' && input[m.Index + 1] == 'x' && input[m.Index + 2] == 'p') { return m.Value; } if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } /* * (exp) func * func func */ private static string CheckParenthesisExprThenFunc(string input) { var p = @"(\))\s*([a-zA-Z]+[0-9]*\s*\()"; var r = "$1 * $2"; return Regex.Replace(input, p, r); } /* * (exp) (exp) * func (exp) */ private static string CheckParenthesisExprThenParenthesisExpr(string input) { var p = @"(\))\s*(\()"; var r = "$1 * $2"; return Regex.Replace(input, p, r); } /* * num const */ private static string CheckNumberThenConstant(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(\d+)\s*(pi|e)", m => { if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } /* * const const */ private static string CheckConstantThenConstant(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(pi|e)\s*(pi|e)", m => { if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } } }
viggyd
302abf708288ae50c985a4b4d8122d6925eb5935
114f1b45e27ab55c3cf6a2b1d89e6b0c7d8fe7dd
```suggestion var p = @"(-?\d+(\.\d*)?)[eE](-?\d+(\.\d*)?)"; ``` I've simplified the regex: - Remove unnecessary capturing groups and consolidate mantissa section - Fix the exponent section to be of the same form as the mantissa - Does not allow unlimited decimal points anymore
ekcom
383
microsoft/PowerToys
28,884
[Run] Fix Scientific Notation Errors in Calculator Plugin
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request This PR allows the Calculator plugin in PowerToys Run to use scientific notation (e.g. `5e3 = 5000`). The PR fixes a regression in PowerToys that was introduced in v0.69.1. <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [X] **Closes:** #25656 - [ ] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected - [X] **Tests:** Added/updated and all pass - [ ] **Localization:** All end user facing strings can be localized - [ ] **Dev docs:** Added/updated - [ ] **New binaries:** Added on the required places - [ ] [JSON for signing](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ESRPSigning_core.json) for new binaries - [ ] [WXS for installer](https://github.com/microsoft/PowerToys/blob/main/installer/PowerToysSetup/Product.wxs) for new binaries and localization folder - [ ] [YML for CI pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ci/templates/build-powertoys-steps.yml) for new test projects - [ ] [YML for signed pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/release.yml) - [ ] **Documentation updated:** If checked, please file a pull request on [our docs repo](https://github.com/MicrosoftDocs/windows-uwp/tree/docs/hub/powertoys) and link it here: #xxx <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments Nothing else fixed. <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed I updated the Calculator unit tests to include various expressions using this notation and confirmed that they all pass.
null
2023-09-28 21:24:13+00:00
2024-01-03 11:22:10+00:00
src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.Calculator/CalculateHelper.cs
// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using System.Text.RegularExpressions; namespace Microsoft.PowerToys.Run.Plugin.Calculator { public static class CalculateHelper { private static readonly Regex RegValidExpressChar = new Regex( @"^(" + @"%|" + @"ceil\s*\(|floor\s*\(|exp\s*\(|max\s*\(|min\s*\(|abs\s*\(|log(?:2|10)?\s*\(|ln\s*\(|sqrt\s*\(|pow\s*\(|" + @"factorial\s*\(|sign\s*\(|round\s*\(|rand\s*\(|" + @"sin\s*\(|cos\s*\(|tan\s*\(|arcsin\s*\(|arccos\s*\(|arctan\s*\(|" + @"sinh\s*\(|cosh\s*\(|tanh\s*\(|arsinh\s*\(|arcosh\s*\(|artanh\s*\(|" + @"pi|" + @"==|~=|&&|\|\||" + @"e|[0-9]|0x[0-9a-fA-F]+|0b[01]+|[\+\-\*\/\^\., ""]|[\(\)\|\!\[\]]" + @")+$", RegexOptions.Compiled); public static bool InputValid(string input) { if (string.IsNullOrWhiteSpace(input)) { throw new ArgumentNullException(paramName: nameof(input)); } if (!RegValidExpressChar.IsMatch(input)) { return false; } if (!BracketHelper.IsBracketComplete(input)) { return false; } // If the input ends with a binary operator then it is not a valid input to mages and the Interpret function would throw an exception. Because we expect here that the user has not finished typing we block those inputs. string trimmedInput = input.TrimEnd(); if (trimmedInput.EndsWith('+') || trimmedInput.EndsWith('-') || trimmedInput.EndsWith('*') || trimmedInput.EndsWith('|') || trimmedInput.EndsWith('\\') || trimmedInput.EndsWith('^') || trimmedInput.EndsWith('=') || trimmedInput.EndsWith('&') || trimmedInput.EndsWith('/') || trimmedInput.EndsWith('%')) { return false; } return true; } public static string FixHumanMultiplicationExpressions(string input) { var output = CheckNumberOrConstantThenParenthesisExpr(input); output = CheckNumberOrConstantThenFunc(output); output = CheckParenthesisExprThenFunc(output); output = CheckParenthesisExprThenParenthesisExpr(output); output = CheckNumberThenConstant(output); output = CheckConstantThenConstant(output); return output; } /* * num (exp) * const (exp) */ private static string CheckNumberOrConstantThenParenthesisExpr(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(\d+|pi|e)\s*(\()", m => { if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } /* * num func * const func */ private static string CheckNumberOrConstantThenFunc(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(\d+|pi|e)\s*([a-zA-Z]+[0-9]*\s*\()", m => { if (input[m.Index] == 'e' && input[m.Index + 1] == 'x' && input[m.Index + 2] == 'p') { return m.Value; } if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } /* * (exp) func * func func */ private static string CheckParenthesisExprThenFunc(string input) { var p = @"(\))\s*([a-zA-Z]+[0-9]*\s*\()"; var r = "$1 * $2"; return Regex.Replace(input, p, r); } /* * (exp) (exp) * func (exp) */ private static string CheckParenthesisExprThenParenthesisExpr(string input) { var p = @"(\))\s*(\()"; var r = "$1 * $2"; return Regex.Replace(input, p, r); } /* * num const */ private static string CheckNumberThenConstant(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(\d+)\s*(pi|e)", m => { if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } /* * const const */ private static string CheckConstantThenConstant(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(pi|e)\s*(pi|e)", m => { if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } } }
// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using System.Collections.Generic; using System.Globalization; using System.Text.RegularExpressions; namespace Microsoft.PowerToys.Run.Plugin.Calculator { public static class CalculateHelper { private static readonly Regex RegValidExpressChar = new Regex( @"^(" + @"%|" + @"ceil\s*\(|floor\s*\(|exp\s*\(|max\s*\(|min\s*\(|abs\s*\(|log(?:2|10)?\s*\(|ln\s*\(|sqrt\s*\(|pow\s*\(|" + @"factorial\s*\(|sign\s*\(|round\s*\(|rand\s*\(|" + @"sin\s*\(|cos\s*\(|tan\s*\(|arcsin\s*\(|arccos\s*\(|arctan\s*\(|" + @"sinh\s*\(|cosh\s*\(|tanh\s*\(|arsinh\s*\(|arcosh\s*\(|artanh\s*\(|" + @"pi|" + @"==|~=|&&|\|\||" + @"((-?(\d+(\.\d*)?)|-?(\.\d+))[E](-?\d+))|" + /* expression from CheckScientificNotation between parenthesis */ @"e|[0-9]|0x[0-9a-fA-F]+|0b[01]+|[\+\-\*\/\^\., ""]|[\(\)\|\!\[\]]" + @")+$", RegexOptions.Compiled); public static bool InputValid(string input) { if (string.IsNullOrWhiteSpace(input)) { throw new ArgumentNullException(paramName: nameof(input)); } if (!RegValidExpressChar.IsMatch(input)) { return false; } if (!BracketHelper.IsBracketComplete(input)) { return false; } // If the input ends with a binary operator then it is not a valid input to mages and the Interpret function would throw an exception. Because we expect here that the user has not finished typing we block those inputs. string trimmedInput = input.TrimEnd(); if (trimmedInput.EndsWith('+') || trimmedInput.EndsWith('-') || trimmedInput.EndsWith('*') || trimmedInput.EndsWith('|') || trimmedInput.EndsWith('\\') || trimmedInput.EndsWith('^') || trimmedInput.EndsWith('=') || trimmedInput.EndsWith('&') || trimmedInput.EndsWith('/') || trimmedInput.EndsWith('%')) { return false; } return true; } public static string FixHumanMultiplicationExpressions(string input) { var output = CheckScientificNotation(input); output = CheckNumberOrConstantThenParenthesisExpr(output); output = CheckNumberOrConstantThenFunc(output); output = CheckParenthesisExprThenFunc(output); output = CheckParenthesisExprThenParenthesisExpr(output); output = CheckNumberThenConstant(output); output = CheckConstantThenConstant(output); return output; } private static string CheckScientificNotation(string input) { /** * NOTE: By the time the expression gets to us, it's already in English format. * * Regex explanation: * (-?(\d+({0}\d*)?)|-?({0}\d+)): Used to capture one of two types: * -?(\d+({0}\d*)?): Captures a decimal number starting with a number (e.g. "-1.23") * -?({0}\d+): Captures a decimal number without leading number (e.g. ".23") * E: Captures capital 'E' * (-?\d+): Captures an integer number (e.g. "-1" or "23") */ var p = @"(-?(\d+(\.\d*)?)|-?(\.\d+))E(-?\d+)"; return Regex.Replace(input, p, "($1 * 10^($5))"); } /* * num (exp) * const (exp) */ private static string CheckNumberOrConstantThenParenthesisExpr(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(\d+|pi|e)\s*(\()", m => { if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } /* * num func * const func */ private static string CheckNumberOrConstantThenFunc(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(\d+|pi|e)\s*([a-zA-Z]+[0-9]*\s*\()", m => { if (input[m.Index] == 'e' && input[m.Index + 1] == 'x' && input[m.Index + 2] == 'p') { return m.Value; } if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } /* * (exp) func * func func */ private static string CheckParenthesisExprThenFunc(string input) { var p = @"(\))\s*([a-zA-Z]+[0-9]*\s*\()"; var r = "$1 * $2"; return Regex.Replace(input, p, r); } /* * (exp) (exp) * func (exp) */ private static string CheckParenthesisExprThenParenthesisExpr(string input) { var p = @"(\))\s*(\()"; var r = "$1 * $2"; return Regex.Replace(input, p, r); } /* * num const */ private static string CheckNumberThenConstant(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(\d+)\s*(pi|e)", m => { if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } /* * const const */ private static string CheckConstantThenConstant(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(pi|e)\s*(pi|e)", m => { if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } } }
viggyd
302abf708288ae50c985a4b4d8122d6925eb5935
114f1b45e27ab55c3cf6a2b1d89e6b0c7d8fe7dd
This line will need to be updated accordingly from the change in capturing groups. ```suggestion var r = "($1 * 10^($3))"; ```
ekcom
384
microsoft/PowerToys
28,884
[Run] Fix Scientific Notation Errors in Calculator Plugin
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request This PR allows the Calculator plugin in PowerToys Run to use scientific notation (e.g. `5e3 = 5000`). The PR fixes a regression in PowerToys that was introduced in v0.69.1. <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [X] **Closes:** #25656 - [ ] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected - [X] **Tests:** Added/updated and all pass - [ ] **Localization:** All end user facing strings can be localized - [ ] **Dev docs:** Added/updated - [ ] **New binaries:** Added on the required places - [ ] [JSON for signing](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ESRPSigning_core.json) for new binaries - [ ] [WXS for installer](https://github.com/microsoft/PowerToys/blob/main/installer/PowerToysSetup/Product.wxs) for new binaries and localization folder - [ ] [YML for CI pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ci/templates/build-powertoys-steps.yml) for new test projects - [ ] [YML for signed pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/release.yml) - [ ] **Documentation updated:** If checked, please file a pull request on [our docs repo](https://github.com/MicrosoftDocs/windows-uwp/tree/docs/hub/powertoys) and link it here: #xxx <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments Nothing else fixed. <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed I updated the Calculator unit tests to include various expressions using this notation and confirmed that they all pass.
null
2023-09-28 21:24:13+00:00
2024-01-03 11:22:10+00:00
src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.Calculator/CalculateHelper.cs
// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using System.Text.RegularExpressions; namespace Microsoft.PowerToys.Run.Plugin.Calculator { public static class CalculateHelper { private static readonly Regex RegValidExpressChar = new Regex( @"^(" + @"%|" + @"ceil\s*\(|floor\s*\(|exp\s*\(|max\s*\(|min\s*\(|abs\s*\(|log(?:2|10)?\s*\(|ln\s*\(|sqrt\s*\(|pow\s*\(|" + @"factorial\s*\(|sign\s*\(|round\s*\(|rand\s*\(|" + @"sin\s*\(|cos\s*\(|tan\s*\(|arcsin\s*\(|arccos\s*\(|arctan\s*\(|" + @"sinh\s*\(|cosh\s*\(|tanh\s*\(|arsinh\s*\(|arcosh\s*\(|artanh\s*\(|" + @"pi|" + @"==|~=|&&|\|\||" + @"e|[0-9]|0x[0-9a-fA-F]+|0b[01]+|[\+\-\*\/\^\., ""]|[\(\)\|\!\[\]]" + @")+$", RegexOptions.Compiled); public static bool InputValid(string input) { if (string.IsNullOrWhiteSpace(input)) { throw new ArgumentNullException(paramName: nameof(input)); } if (!RegValidExpressChar.IsMatch(input)) { return false; } if (!BracketHelper.IsBracketComplete(input)) { return false; } // If the input ends with a binary operator then it is not a valid input to mages and the Interpret function would throw an exception. Because we expect here that the user has not finished typing we block those inputs. string trimmedInput = input.TrimEnd(); if (trimmedInput.EndsWith('+') || trimmedInput.EndsWith('-') || trimmedInput.EndsWith('*') || trimmedInput.EndsWith('|') || trimmedInput.EndsWith('\\') || trimmedInput.EndsWith('^') || trimmedInput.EndsWith('=') || trimmedInput.EndsWith('&') || trimmedInput.EndsWith('/') || trimmedInput.EndsWith('%')) { return false; } return true; } public static string FixHumanMultiplicationExpressions(string input) { var output = CheckNumberOrConstantThenParenthesisExpr(input); output = CheckNumberOrConstantThenFunc(output); output = CheckParenthesisExprThenFunc(output); output = CheckParenthesisExprThenParenthesisExpr(output); output = CheckNumberThenConstant(output); output = CheckConstantThenConstant(output); return output; } /* * num (exp) * const (exp) */ private static string CheckNumberOrConstantThenParenthesisExpr(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(\d+|pi|e)\s*(\()", m => { if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } /* * num func * const func */ private static string CheckNumberOrConstantThenFunc(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(\d+|pi|e)\s*([a-zA-Z]+[0-9]*\s*\()", m => { if (input[m.Index] == 'e' && input[m.Index + 1] == 'x' && input[m.Index + 2] == 'p') { return m.Value; } if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } /* * (exp) func * func func */ private static string CheckParenthesisExprThenFunc(string input) { var p = @"(\))\s*([a-zA-Z]+[0-9]*\s*\()"; var r = "$1 * $2"; return Regex.Replace(input, p, r); } /* * (exp) (exp) * func (exp) */ private static string CheckParenthesisExprThenParenthesisExpr(string input) { var p = @"(\))\s*(\()"; var r = "$1 * $2"; return Regex.Replace(input, p, r); } /* * num const */ private static string CheckNumberThenConstant(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(\d+)\s*(pi|e)", m => { if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } /* * const const */ private static string CheckConstantThenConstant(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(pi|e)\s*(pi|e)", m => { if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } } }
// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using System.Collections.Generic; using System.Globalization; using System.Text.RegularExpressions; namespace Microsoft.PowerToys.Run.Plugin.Calculator { public static class CalculateHelper { private static readonly Regex RegValidExpressChar = new Regex( @"^(" + @"%|" + @"ceil\s*\(|floor\s*\(|exp\s*\(|max\s*\(|min\s*\(|abs\s*\(|log(?:2|10)?\s*\(|ln\s*\(|sqrt\s*\(|pow\s*\(|" + @"factorial\s*\(|sign\s*\(|round\s*\(|rand\s*\(|" + @"sin\s*\(|cos\s*\(|tan\s*\(|arcsin\s*\(|arccos\s*\(|arctan\s*\(|" + @"sinh\s*\(|cosh\s*\(|tanh\s*\(|arsinh\s*\(|arcosh\s*\(|artanh\s*\(|" + @"pi|" + @"==|~=|&&|\|\||" + @"((-?(\d+(\.\d*)?)|-?(\.\d+))[E](-?\d+))|" + /* expression from CheckScientificNotation between parenthesis */ @"e|[0-9]|0x[0-9a-fA-F]+|0b[01]+|[\+\-\*\/\^\., ""]|[\(\)\|\!\[\]]" + @")+$", RegexOptions.Compiled); public static bool InputValid(string input) { if (string.IsNullOrWhiteSpace(input)) { throw new ArgumentNullException(paramName: nameof(input)); } if (!RegValidExpressChar.IsMatch(input)) { return false; } if (!BracketHelper.IsBracketComplete(input)) { return false; } // If the input ends with a binary operator then it is not a valid input to mages and the Interpret function would throw an exception. Because we expect here that the user has not finished typing we block those inputs. string trimmedInput = input.TrimEnd(); if (trimmedInput.EndsWith('+') || trimmedInput.EndsWith('-') || trimmedInput.EndsWith('*') || trimmedInput.EndsWith('|') || trimmedInput.EndsWith('\\') || trimmedInput.EndsWith('^') || trimmedInput.EndsWith('=') || trimmedInput.EndsWith('&') || trimmedInput.EndsWith('/') || trimmedInput.EndsWith('%')) { return false; } return true; } public static string FixHumanMultiplicationExpressions(string input) { var output = CheckScientificNotation(input); output = CheckNumberOrConstantThenParenthesisExpr(output); output = CheckNumberOrConstantThenFunc(output); output = CheckParenthesisExprThenFunc(output); output = CheckParenthesisExprThenParenthesisExpr(output); output = CheckNumberThenConstant(output); output = CheckConstantThenConstant(output); return output; } private static string CheckScientificNotation(string input) { /** * NOTE: By the time the expression gets to us, it's already in English format. * * Regex explanation: * (-?(\d+({0}\d*)?)|-?({0}\d+)): Used to capture one of two types: * -?(\d+({0}\d*)?): Captures a decimal number starting with a number (e.g. "-1.23") * -?({0}\d+): Captures a decimal number without leading number (e.g. ".23") * E: Captures capital 'E' * (-?\d+): Captures an integer number (e.g. "-1" or "23") */ var p = @"(-?(\d+(\.\d*)?)|-?(\.\d+))E(-?\d+)"; return Regex.Replace(input, p, "($1 * 10^($5))"); } /* * num (exp) * const (exp) */ private static string CheckNumberOrConstantThenParenthesisExpr(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(\d+|pi|e)\s*(\()", m => { if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } /* * num func * const func */ private static string CheckNumberOrConstantThenFunc(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(\d+|pi|e)\s*([a-zA-Z]+[0-9]*\s*\()", m => { if (input[m.Index] == 'e' && input[m.Index + 1] == 'x' && input[m.Index + 2] == 'p') { return m.Value; } if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } /* * (exp) func * func func */ private static string CheckParenthesisExprThenFunc(string input) { var p = @"(\))\s*([a-zA-Z]+[0-9]*\s*\()"; var r = "$1 * $2"; return Regex.Replace(input, p, r); } /* * (exp) (exp) * func (exp) */ private static string CheckParenthesisExprThenParenthesisExpr(string input) { var p = @"(\))\s*(\()"; var r = "$1 * $2"; return Regex.Replace(input, p, r); } /* * num const */ private static string CheckNumberThenConstant(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(\d+)\s*(pi|e)", m => { if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } /* * const const */ private static string CheckConstantThenConstant(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(pi|e)\s*(pi|e)", m => { if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } } }
viggyd
302abf708288ae50c985a4b4d8122d6925eb5935
114f1b45e27ab55c3cf6a2b1d89e6b0c7d8fe7dd
The simplified expression doesn't capture if anything that doesn't start with a digit, so if you had something like `.5e2`, it gets translated to `.(5 * 10^(2))`, which isn't right. That being said, if it's not valid to do something like `.5e2`, I like the new expression better It's why that `|` is in there, since you could theoretically start with a decimal, though I do think that's unlikely
viggyd
385
microsoft/PowerToys
28,884
[Run] Fix Scientific Notation Errors in Calculator Plugin
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request This PR allows the Calculator plugin in PowerToys Run to use scientific notation (e.g. `5e3 = 5000`). The PR fixes a regression in PowerToys that was introduced in v0.69.1. <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [X] **Closes:** #25656 - [ ] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected - [X] **Tests:** Added/updated and all pass - [ ] **Localization:** All end user facing strings can be localized - [ ] **Dev docs:** Added/updated - [ ] **New binaries:** Added on the required places - [ ] [JSON for signing](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ESRPSigning_core.json) for new binaries - [ ] [WXS for installer](https://github.com/microsoft/PowerToys/blob/main/installer/PowerToysSetup/Product.wxs) for new binaries and localization folder - [ ] [YML for CI pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ci/templates/build-powertoys-steps.yml) for new test projects - [ ] [YML for signed pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/release.yml) - [ ] **Documentation updated:** If checked, please file a pull request on [our docs repo](https://github.com/MicrosoftDocs/windows-uwp/tree/docs/hub/powertoys) and link it here: #xxx <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments Nothing else fixed. <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed I updated the Calculator unit tests to include various expressions using this notation and confirmed that they all pass.
null
2023-09-28 21:24:13+00:00
2024-01-03 11:22:10+00:00
src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.Calculator/CalculateHelper.cs
// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using System.Text.RegularExpressions; namespace Microsoft.PowerToys.Run.Plugin.Calculator { public static class CalculateHelper { private static readonly Regex RegValidExpressChar = new Regex( @"^(" + @"%|" + @"ceil\s*\(|floor\s*\(|exp\s*\(|max\s*\(|min\s*\(|abs\s*\(|log(?:2|10)?\s*\(|ln\s*\(|sqrt\s*\(|pow\s*\(|" + @"factorial\s*\(|sign\s*\(|round\s*\(|rand\s*\(|" + @"sin\s*\(|cos\s*\(|tan\s*\(|arcsin\s*\(|arccos\s*\(|arctan\s*\(|" + @"sinh\s*\(|cosh\s*\(|tanh\s*\(|arsinh\s*\(|arcosh\s*\(|artanh\s*\(|" + @"pi|" + @"==|~=|&&|\|\||" + @"e|[0-9]|0x[0-9a-fA-F]+|0b[01]+|[\+\-\*\/\^\., ""]|[\(\)\|\!\[\]]" + @")+$", RegexOptions.Compiled); public static bool InputValid(string input) { if (string.IsNullOrWhiteSpace(input)) { throw new ArgumentNullException(paramName: nameof(input)); } if (!RegValidExpressChar.IsMatch(input)) { return false; } if (!BracketHelper.IsBracketComplete(input)) { return false; } // If the input ends with a binary operator then it is not a valid input to mages and the Interpret function would throw an exception. Because we expect here that the user has not finished typing we block those inputs. string trimmedInput = input.TrimEnd(); if (trimmedInput.EndsWith('+') || trimmedInput.EndsWith('-') || trimmedInput.EndsWith('*') || trimmedInput.EndsWith('|') || trimmedInput.EndsWith('\\') || trimmedInput.EndsWith('^') || trimmedInput.EndsWith('=') || trimmedInput.EndsWith('&') || trimmedInput.EndsWith('/') || trimmedInput.EndsWith('%')) { return false; } return true; } public static string FixHumanMultiplicationExpressions(string input) { var output = CheckNumberOrConstantThenParenthesisExpr(input); output = CheckNumberOrConstantThenFunc(output); output = CheckParenthesisExprThenFunc(output); output = CheckParenthesisExprThenParenthesisExpr(output); output = CheckNumberThenConstant(output); output = CheckConstantThenConstant(output); return output; } /* * num (exp) * const (exp) */ private static string CheckNumberOrConstantThenParenthesisExpr(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(\d+|pi|e)\s*(\()", m => { if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } /* * num func * const func */ private static string CheckNumberOrConstantThenFunc(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(\d+|pi|e)\s*([a-zA-Z]+[0-9]*\s*\()", m => { if (input[m.Index] == 'e' && input[m.Index + 1] == 'x' && input[m.Index + 2] == 'p') { return m.Value; } if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } /* * (exp) func * func func */ private static string CheckParenthesisExprThenFunc(string input) { var p = @"(\))\s*([a-zA-Z]+[0-9]*\s*\()"; var r = "$1 * $2"; return Regex.Replace(input, p, r); } /* * (exp) (exp) * func (exp) */ private static string CheckParenthesisExprThenParenthesisExpr(string input) { var p = @"(\))\s*(\()"; var r = "$1 * $2"; return Regex.Replace(input, p, r); } /* * num const */ private static string CheckNumberThenConstant(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(\d+)\s*(pi|e)", m => { if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } /* * const const */ private static string CheckConstantThenConstant(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(pi|e)\s*(pi|e)", m => { if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } } }
// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using System.Collections.Generic; using System.Globalization; using System.Text.RegularExpressions; namespace Microsoft.PowerToys.Run.Plugin.Calculator { public static class CalculateHelper { private static readonly Regex RegValidExpressChar = new Regex( @"^(" + @"%|" + @"ceil\s*\(|floor\s*\(|exp\s*\(|max\s*\(|min\s*\(|abs\s*\(|log(?:2|10)?\s*\(|ln\s*\(|sqrt\s*\(|pow\s*\(|" + @"factorial\s*\(|sign\s*\(|round\s*\(|rand\s*\(|" + @"sin\s*\(|cos\s*\(|tan\s*\(|arcsin\s*\(|arccos\s*\(|arctan\s*\(|" + @"sinh\s*\(|cosh\s*\(|tanh\s*\(|arsinh\s*\(|arcosh\s*\(|artanh\s*\(|" + @"pi|" + @"==|~=|&&|\|\||" + @"((-?(\d+(\.\d*)?)|-?(\.\d+))[E](-?\d+))|" + /* expression from CheckScientificNotation between parenthesis */ @"e|[0-9]|0x[0-9a-fA-F]+|0b[01]+|[\+\-\*\/\^\., ""]|[\(\)\|\!\[\]]" + @")+$", RegexOptions.Compiled); public static bool InputValid(string input) { if (string.IsNullOrWhiteSpace(input)) { throw new ArgumentNullException(paramName: nameof(input)); } if (!RegValidExpressChar.IsMatch(input)) { return false; } if (!BracketHelper.IsBracketComplete(input)) { return false; } // If the input ends with a binary operator then it is not a valid input to mages and the Interpret function would throw an exception. Because we expect here that the user has not finished typing we block those inputs. string trimmedInput = input.TrimEnd(); if (trimmedInput.EndsWith('+') || trimmedInput.EndsWith('-') || trimmedInput.EndsWith('*') || trimmedInput.EndsWith('|') || trimmedInput.EndsWith('\\') || trimmedInput.EndsWith('^') || trimmedInput.EndsWith('=') || trimmedInput.EndsWith('&') || trimmedInput.EndsWith('/') || trimmedInput.EndsWith('%')) { return false; } return true; } public static string FixHumanMultiplicationExpressions(string input) { var output = CheckScientificNotation(input); output = CheckNumberOrConstantThenParenthesisExpr(output); output = CheckNumberOrConstantThenFunc(output); output = CheckParenthesisExprThenFunc(output); output = CheckParenthesisExprThenParenthesisExpr(output); output = CheckNumberThenConstant(output); output = CheckConstantThenConstant(output); return output; } private static string CheckScientificNotation(string input) { /** * NOTE: By the time the expression gets to us, it's already in English format. * * Regex explanation: * (-?(\d+({0}\d*)?)|-?({0}\d+)): Used to capture one of two types: * -?(\d+({0}\d*)?): Captures a decimal number starting with a number (e.g. "-1.23") * -?({0}\d+): Captures a decimal number without leading number (e.g. ".23") * E: Captures capital 'E' * (-?\d+): Captures an integer number (e.g. "-1" or "23") */ var p = @"(-?(\d+(\.\d*)?)|-?(\.\d+))E(-?\d+)"; return Regex.Replace(input, p, "($1 * 10^($5))"); } /* * num (exp) * const (exp) */ private static string CheckNumberOrConstantThenParenthesisExpr(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(\d+|pi|e)\s*(\()", m => { if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } /* * num func * const func */ private static string CheckNumberOrConstantThenFunc(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(\d+|pi|e)\s*([a-zA-Z]+[0-9]*\s*\()", m => { if (input[m.Index] == 'e' && input[m.Index + 1] == 'x' && input[m.Index + 2] == 'p') { return m.Value; } if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } /* * (exp) func * func func */ private static string CheckParenthesisExprThenFunc(string input) { var p = @"(\))\s*([a-zA-Z]+[0-9]*\s*\()"; var r = "$1 * $2"; return Regex.Replace(input, p, r); } /* * (exp) (exp) * func (exp) */ private static string CheckParenthesisExprThenParenthesisExpr(string input) { var p = @"(\))\s*(\()"; var r = "$1 * $2"; return Regex.Replace(input, p, r); } /* * num const */ private static string CheckNumberThenConstant(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(\d+)\s*(pi|e)", m => { if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } /* * const const */ private static string CheckConstantThenConstant(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(pi|e)\s*(pi|e)", m => { if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } } }
viggyd
302abf708288ae50c985a4b4d8122d6925eb5935
114f1b45e27ab55c3cf6a2b1d89e6b0c7d8fe7dd
Oh, I see what you were doing now. `2e.5` probably shouldn't work since exponential form is typically to a whole number, so that makes sense why you had the two sides different.
ekcom
386
microsoft/PowerToys
28,884
[Run] Fix Scientific Notation Errors in Calculator Plugin
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request This PR allows the Calculator plugin in PowerToys Run to use scientific notation (e.g. `5e3 = 5000`). The PR fixes a regression in PowerToys that was introduced in v0.69.1. <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [X] **Closes:** #25656 - [ ] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected - [X] **Tests:** Added/updated and all pass - [ ] **Localization:** All end user facing strings can be localized - [ ] **Dev docs:** Added/updated - [ ] **New binaries:** Added on the required places - [ ] [JSON for signing](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ESRPSigning_core.json) for new binaries - [ ] [WXS for installer](https://github.com/microsoft/PowerToys/blob/main/installer/PowerToysSetup/Product.wxs) for new binaries and localization folder - [ ] [YML for CI pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ci/templates/build-powertoys-steps.yml) for new test projects - [ ] [YML for signed pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/release.yml) - [ ] **Documentation updated:** If checked, please file a pull request on [our docs repo](https://github.com/MicrosoftDocs/windows-uwp/tree/docs/hub/powertoys) and link it here: #xxx <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments Nothing else fixed. <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed I updated the Calculator unit tests to include various expressions using this notation and confirmed that they all pass.
null
2023-09-28 21:24:13+00:00
2024-01-03 11:22:10+00:00
src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.Calculator/CalculateHelper.cs
// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using System.Text.RegularExpressions; namespace Microsoft.PowerToys.Run.Plugin.Calculator { public static class CalculateHelper { private static readonly Regex RegValidExpressChar = new Regex( @"^(" + @"%|" + @"ceil\s*\(|floor\s*\(|exp\s*\(|max\s*\(|min\s*\(|abs\s*\(|log(?:2|10)?\s*\(|ln\s*\(|sqrt\s*\(|pow\s*\(|" + @"factorial\s*\(|sign\s*\(|round\s*\(|rand\s*\(|" + @"sin\s*\(|cos\s*\(|tan\s*\(|arcsin\s*\(|arccos\s*\(|arctan\s*\(|" + @"sinh\s*\(|cosh\s*\(|tanh\s*\(|arsinh\s*\(|arcosh\s*\(|artanh\s*\(|" + @"pi|" + @"==|~=|&&|\|\||" + @"e|[0-9]|0x[0-9a-fA-F]+|0b[01]+|[\+\-\*\/\^\., ""]|[\(\)\|\!\[\]]" + @")+$", RegexOptions.Compiled); public static bool InputValid(string input) { if (string.IsNullOrWhiteSpace(input)) { throw new ArgumentNullException(paramName: nameof(input)); } if (!RegValidExpressChar.IsMatch(input)) { return false; } if (!BracketHelper.IsBracketComplete(input)) { return false; } // If the input ends with a binary operator then it is not a valid input to mages and the Interpret function would throw an exception. Because we expect here that the user has not finished typing we block those inputs. string trimmedInput = input.TrimEnd(); if (trimmedInput.EndsWith('+') || trimmedInput.EndsWith('-') || trimmedInput.EndsWith('*') || trimmedInput.EndsWith('|') || trimmedInput.EndsWith('\\') || trimmedInput.EndsWith('^') || trimmedInput.EndsWith('=') || trimmedInput.EndsWith('&') || trimmedInput.EndsWith('/') || trimmedInput.EndsWith('%')) { return false; } return true; } public static string FixHumanMultiplicationExpressions(string input) { var output = CheckNumberOrConstantThenParenthesisExpr(input); output = CheckNumberOrConstantThenFunc(output); output = CheckParenthesisExprThenFunc(output); output = CheckParenthesisExprThenParenthesisExpr(output); output = CheckNumberThenConstant(output); output = CheckConstantThenConstant(output); return output; } /* * num (exp) * const (exp) */ private static string CheckNumberOrConstantThenParenthesisExpr(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(\d+|pi|e)\s*(\()", m => { if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } /* * num func * const func */ private static string CheckNumberOrConstantThenFunc(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(\d+|pi|e)\s*([a-zA-Z]+[0-9]*\s*\()", m => { if (input[m.Index] == 'e' && input[m.Index + 1] == 'x' && input[m.Index + 2] == 'p') { return m.Value; } if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } /* * (exp) func * func func */ private static string CheckParenthesisExprThenFunc(string input) { var p = @"(\))\s*([a-zA-Z]+[0-9]*\s*\()"; var r = "$1 * $2"; return Regex.Replace(input, p, r); } /* * (exp) (exp) * func (exp) */ private static string CheckParenthesisExprThenParenthesisExpr(string input) { var p = @"(\))\s*(\()"; var r = "$1 * $2"; return Regex.Replace(input, p, r); } /* * num const */ private static string CheckNumberThenConstant(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(\d+)\s*(pi|e)", m => { if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } /* * const const */ private static string CheckConstantThenConstant(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(pi|e)\s*(pi|e)", m => { if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } } }
// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using System.Collections.Generic; using System.Globalization; using System.Text.RegularExpressions; namespace Microsoft.PowerToys.Run.Plugin.Calculator { public static class CalculateHelper { private static readonly Regex RegValidExpressChar = new Regex( @"^(" + @"%|" + @"ceil\s*\(|floor\s*\(|exp\s*\(|max\s*\(|min\s*\(|abs\s*\(|log(?:2|10)?\s*\(|ln\s*\(|sqrt\s*\(|pow\s*\(|" + @"factorial\s*\(|sign\s*\(|round\s*\(|rand\s*\(|" + @"sin\s*\(|cos\s*\(|tan\s*\(|arcsin\s*\(|arccos\s*\(|arctan\s*\(|" + @"sinh\s*\(|cosh\s*\(|tanh\s*\(|arsinh\s*\(|arcosh\s*\(|artanh\s*\(|" + @"pi|" + @"==|~=|&&|\|\||" + @"((-?(\d+(\.\d*)?)|-?(\.\d+))[E](-?\d+))|" + /* expression from CheckScientificNotation between parenthesis */ @"e|[0-9]|0x[0-9a-fA-F]+|0b[01]+|[\+\-\*\/\^\., ""]|[\(\)\|\!\[\]]" + @")+$", RegexOptions.Compiled); public static bool InputValid(string input) { if (string.IsNullOrWhiteSpace(input)) { throw new ArgumentNullException(paramName: nameof(input)); } if (!RegValidExpressChar.IsMatch(input)) { return false; } if (!BracketHelper.IsBracketComplete(input)) { return false; } // If the input ends with a binary operator then it is not a valid input to mages and the Interpret function would throw an exception. Because we expect here that the user has not finished typing we block those inputs. string trimmedInput = input.TrimEnd(); if (trimmedInput.EndsWith('+') || trimmedInput.EndsWith('-') || trimmedInput.EndsWith('*') || trimmedInput.EndsWith('|') || trimmedInput.EndsWith('\\') || trimmedInput.EndsWith('^') || trimmedInput.EndsWith('=') || trimmedInput.EndsWith('&') || trimmedInput.EndsWith('/') || trimmedInput.EndsWith('%')) { return false; } return true; } public static string FixHumanMultiplicationExpressions(string input) { var output = CheckScientificNotation(input); output = CheckNumberOrConstantThenParenthesisExpr(output); output = CheckNumberOrConstantThenFunc(output); output = CheckParenthesisExprThenFunc(output); output = CheckParenthesisExprThenParenthesisExpr(output); output = CheckNumberThenConstant(output); output = CheckConstantThenConstant(output); return output; } private static string CheckScientificNotation(string input) { /** * NOTE: By the time the expression gets to us, it's already in English format. * * Regex explanation: * (-?(\d+({0}\d*)?)|-?({0}\d+)): Used to capture one of two types: * -?(\d+({0}\d*)?): Captures a decimal number starting with a number (e.g. "-1.23") * -?({0}\d+): Captures a decimal number without leading number (e.g. ".23") * E: Captures capital 'E' * (-?\d+): Captures an integer number (e.g. "-1" or "23") */ var p = @"(-?(\d+(\.\d*)?)|-?(\.\d+))E(-?\d+)"; return Regex.Replace(input, p, "($1 * 10^($5))"); } /* * num (exp) * const (exp) */ private static string CheckNumberOrConstantThenParenthesisExpr(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(\d+|pi|e)\s*(\()", m => { if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } /* * num func * const func */ private static string CheckNumberOrConstantThenFunc(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(\d+|pi|e)\s*([a-zA-Z]+[0-9]*\s*\()", m => { if (input[m.Index] == 'e' && input[m.Index + 1] == 'x' && input[m.Index + 2] == 'p') { return m.Value; } if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } /* * (exp) func * func func */ private static string CheckParenthesisExprThenFunc(string input) { var p = @"(\))\s*([a-zA-Z]+[0-9]*\s*\()"; var r = "$1 * $2"; return Regex.Replace(input, p, r); } /* * (exp) (exp) * func (exp) */ private static string CheckParenthesisExprThenParenthesisExpr(string input) { var p = @"(\))\s*(\()"; var r = "$1 * $2"; return Regex.Replace(input, p, r); } /* * num const */ private static string CheckNumberThenConstant(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(\d+)\s*(pi|e)", m => { if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } /* * const const */ private static string CheckConstantThenConstant(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(pi|e)\s*(pi|e)", m => { if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } } }
viggyd
302abf708288ae50c985a4b4d8122d6925eb5935
114f1b45e27ab55c3cf6a2b1d89e6b0c7d8fe7dd
What do you mean with unlimited decimal points? What was being accepted before that now is not?
jaimecbernardo
387
microsoft/PowerToys
28,884
[Run] Fix Scientific Notation Errors in Calculator Plugin
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request This PR allows the Calculator plugin in PowerToys Run to use scientific notation (e.g. `5e3 = 5000`). The PR fixes a regression in PowerToys that was introduced in v0.69.1. <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [X] **Closes:** #25656 - [ ] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected - [X] **Tests:** Added/updated and all pass - [ ] **Localization:** All end user facing strings can be localized - [ ] **Dev docs:** Added/updated - [ ] **New binaries:** Added on the required places - [ ] [JSON for signing](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ESRPSigning_core.json) for new binaries - [ ] [WXS for installer](https://github.com/microsoft/PowerToys/blob/main/installer/PowerToysSetup/Product.wxs) for new binaries and localization folder - [ ] [YML for CI pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ci/templates/build-powertoys-steps.yml) for new test projects - [ ] [YML for signed pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/release.yml) - [ ] **Documentation updated:** If checked, please file a pull request on [our docs repo](https://github.com/MicrosoftDocs/windows-uwp/tree/docs/hub/powertoys) and link it here: #xxx <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments Nothing else fixed. <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed I updated the Calculator unit tests to include various expressions using this notation and confirmed that they all pass.
null
2023-09-28 21:24:13+00:00
2024-01-03 11:22:10+00:00
src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.Calculator/CalculateHelper.cs
// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using System.Text.RegularExpressions; namespace Microsoft.PowerToys.Run.Plugin.Calculator { public static class CalculateHelper { private static readonly Regex RegValidExpressChar = new Regex( @"^(" + @"%|" + @"ceil\s*\(|floor\s*\(|exp\s*\(|max\s*\(|min\s*\(|abs\s*\(|log(?:2|10)?\s*\(|ln\s*\(|sqrt\s*\(|pow\s*\(|" + @"factorial\s*\(|sign\s*\(|round\s*\(|rand\s*\(|" + @"sin\s*\(|cos\s*\(|tan\s*\(|arcsin\s*\(|arccos\s*\(|arctan\s*\(|" + @"sinh\s*\(|cosh\s*\(|tanh\s*\(|arsinh\s*\(|arcosh\s*\(|artanh\s*\(|" + @"pi|" + @"==|~=|&&|\|\||" + @"e|[0-9]|0x[0-9a-fA-F]+|0b[01]+|[\+\-\*\/\^\., ""]|[\(\)\|\!\[\]]" + @")+$", RegexOptions.Compiled); public static bool InputValid(string input) { if (string.IsNullOrWhiteSpace(input)) { throw new ArgumentNullException(paramName: nameof(input)); } if (!RegValidExpressChar.IsMatch(input)) { return false; } if (!BracketHelper.IsBracketComplete(input)) { return false; } // If the input ends with a binary operator then it is not a valid input to mages and the Interpret function would throw an exception. Because we expect here that the user has not finished typing we block those inputs. string trimmedInput = input.TrimEnd(); if (trimmedInput.EndsWith('+') || trimmedInput.EndsWith('-') || trimmedInput.EndsWith('*') || trimmedInput.EndsWith('|') || trimmedInput.EndsWith('\\') || trimmedInput.EndsWith('^') || trimmedInput.EndsWith('=') || trimmedInput.EndsWith('&') || trimmedInput.EndsWith('/') || trimmedInput.EndsWith('%')) { return false; } return true; } public static string FixHumanMultiplicationExpressions(string input) { var output = CheckNumberOrConstantThenParenthesisExpr(input); output = CheckNumberOrConstantThenFunc(output); output = CheckParenthesisExprThenFunc(output); output = CheckParenthesisExprThenParenthesisExpr(output); output = CheckNumberThenConstant(output); output = CheckConstantThenConstant(output); return output; } /* * num (exp) * const (exp) */ private static string CheckNumberOrConstantThenParenthesisExpr(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(\d+|pi|e)\s*(\()", m => { if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } /* * num func * const func */ private static string CheckNumberOrConstantThenFunc(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(\d+|pi|e)\s*([a-zA-Z]+[0-9]*\s*\()", m => { if (input[m.Index] == 'e' && input[m.Index + 1] == 'x' && input[m.Index + 2] == 'p') { return m.Value; } if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } /* * (exp) func * func func */ private static string CheckParenthesisExprThenFunc(string input) { var p = @"(\))\s*([a-zA-Z]+[0-9]*\s*\()"; var r = "$1 * $2"; return Regex.Replace(input, p, r); } /* * (exp) (exp) * func (exp) */ private static string CheckParenthesisExprThenParenthesisExpr(string input) { var p = @"(\))\s*(\()"; var r = "$1 * $2"; return Regex.Replace(input, p, r); } /* * num const */ private static string CheckNumberThenConstant(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(\d+)\s*(pi|e)", m => { if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } /* * const const */ private static string CheckConstantThenConstant(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(pi|e)\s*(pi|e)", m => { if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } } }
// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using System.Collections.Generic; using System.Globalization; using System.Text.RegularExpressions; namespace Microsoft.PowerToys.Run.Plugin.Calculator { public static class CalculateHelper { private static readonly Regex RegValidExpressChar = new Regex( @"^(" + @"%|" + @"ceil\s*\(|floor\s*\(|exp\s*\(|max\s*\(|min\s*\(|abs\s*\(|log(?:2|10)?\s*\(|ln\s*\(|sqrt\s*\(|pow\s*\(|" + @"factorial\s*\(|sign\s*\(|round\s*\(|rand\s*\(|" + @"sin\s*\(|cos\s*\(|tan\s*\(|arcsin\s*\(|arccos\s*\(|arctan\s*\(|" + @"sinh\s*\(|cosh\s*\(|tanh\s*\(|arsinh\s*\(|arcosh\s*\(|artanh\s*\(|" + @"pi|" + @"==|~=|&&|\|\||" + @"((-?(\d+(\.\d*)?)|-?(\.\d+))[E](-?\d+))|" + /* expression from CheckScientificNotation between parenthesis */ @"e|[0-9]|0x[0-9a-fA-F]+|0b[01]+|[\+\-\*\/\^\., ""]|[\(\)\|\!\[\]]" + @")+$", RegexOptions.Compiled); public static bool InputValid(string input) { if (string.IsNullOrWhiteSpace(input)) { throw new ArgumentNullException(paramName: nameof(input)); } if (!RegValidExpressChar.IsMatch(input)) { return false; } if (!BracketHelper.IsBracketComplete(input)) { return false; } // If the input ends with a binary operator then it is not a valid input to mages and the Interpret function would throw an exception. Because we expect here that the user has not finished typing we block those inputs. string trimmedInput = input.TrimEnd(); if (trimmedInput.EndsWith('+') || trimmedInput.EndsWith('-') || trimmedInput.EndsWith('*') || trimmedInput.EndsWith('|') || trimmedInput.EndsWith('\\') || trimmedInput.EndsWith('^') || trimmedInput.EndsWith('=') || trimmedInput.EndsWith('&') || trimmedInput.EndsWith('/') || trimmedInput.EndsWith('%')) { return false; } return true; } public static string FixHumanMultiplicationExpressions(string input) { var output = CheckScientificNotation(input); output = CheckNumberOrConstantThenParenthesisExpr(output); output = CheckNumberOrConstantThenFunc(output); output = CheckParenthesisExprThenFunc(output); output = CheckParenthesisExprThenParenthesisExpr(output); output = CheckNumberThenConstant(output); output = CheckConstantThenConstant(output); return output; } private static string CheckScientificNotation(string input) { /** * NOTE: By the time the expression gets to us, it's already in English format. * * Regex explanation: * (-?(\d+({0}\d*)?)|-?({0}\d+)): Used to capture one of two types: * -?(\d+({0}\d*)?): Captures a decimal number starting with a number (e.g. "-1.23") * -?({0}\d+): Captures a decimal number without leading number (e.g. ".23") * E: Captures capital 'E' * (-?\d+): Captures an integer number (e.g. "-1" or "23") */ var p = @"(-?(\d+(\.\d*)?)|-?(\.\d+))E(-?\d+)"; return Regex.Replace(input, p, "($1 * 10^($5))"); } /* * num (exp) * const (exp) */ private static string CheckNumberOrConstantThenParenthesisExpr(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(\d+|pi|e)\s*(\()", m => { if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } /* * num func * const func */ private static string CheckNumberOrConstantThenFunc(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(\d+|pi|e)\s*([a-zA-Z]+[0-9]*\s*\()", m => { if (input[m.Index] == 'e' && input[m.Index + 1] == 'x' && input[m.Index + 2] == 'p') { return m.Value; } if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } /* * (exp) func * func func */ private static string CheckParenthesisExprThenFunc(string input) { var p = @"(\))\s*([a-zA-Z]+[0-9]*\s*\()"; var r = "$1 * $2"; return Regex.Replace(input, p, r); } /* * (exp) (exp) * func (exp) */ private static string CheckParenthesisExprThenParenthesisExpr(string input) { var p = @"(\))\s*(\()"; var r = "$1 * $2"; return Regex.Replace(input, p, r); } /* * num const */ private static string CheckNumberThenConstant(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(\d+)\s*(pi|e)", m => { if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } /* * const const */ private static string CheckConstantThenConstant(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(pi|e)\s*(pi|e)", m => { if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } } }
viggyd
302abf708288ae50c985a4b4d8122d6925eb5935
114f1b45e27ab55c3cf6a2b1d89e6b0c7d8fe7dd
Ah, I see. The suggestions were declined.
jaimecbernardo
388
microsoft/PowerToys
28,884
[Run] Fix Scientific Notation Errors in Calculator Plugin
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request This PR allows the Calculator plugin in PowerToys Run to use scientific notation (e.g. `5e3 = 5000`). The PR fixes a regression in PowerToys that was introduced in v0.69.1. <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [X] **Closes:** #25656 - [ ] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected - [X] **Tests:** Added/updated and all pass - [ ] **Localization:** All end user facing strings can be localized - [ ] **Dev docs:** Added/updated - [ ] **New binaries:** Added on the required places - [ ] [JSON for signing](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ESRPSigning_core.json) for new binaries - [ ] [WXS for installer](https://github.com/microsoft/PowerToys/blob/main/installer/PowerToysSetup/Product.wxs) for new binaries and localization folder - [ ] [YML for CI pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ci/templates/build-powertoys-steps.yml) for new test projects - [ ] [YML for signed pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/release.yml) - [ ] **Documentation updated:** If checked, please file a pull request on [our docs repo](https://github.com/MicrosoftDocs/windows-uwp/tree/docs/hub/powertoys) and link it here: #xxx <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments Nothing else fixed. <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed I updated the Calculator unit tests to include various expressions using this notation and confirmed that they all pass.
null
2023-09-28 21:24:13+00:00
2024-01-03 11:22:10+00:00
src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.Calculator/CalculateHelper.cs
// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using System.Text.RegularExpressions; namespace Microsoft.PowerToys.Run.Plugin.Calculator { public static class CalculateHelper { private static readonly Regex RegValidExpressChar = new Regex( @"^(" + @"%|" + @"ceil\s*\(|floor\s*\(|exp\s*\(|max\s*\(|min\s*\(|abs\s*\(|log(?:2|10)?\s*\(|ln\s*\(|sqrt\s*\(|pow\s*\(|" + @"factorial\s*\(|sign\s*\(|round\s*\(|rand\s*\(|" + @"sin\s*\(|cos\s*\(|tan\s*\(|arcsin\s*\(|arccos\s*\(|arctan\s*\(|" + @"sinh\s*\(|cosh\s*\(|tanh\s*\(|arsinh\s*\(|arcosh\s*\(|artanh\s*\(|" + @"pi|" + @"==|~=|&&|\|\||" + @"e|[0-9]|0x[0-9a-fA-F]+|0b[01]+|[\+\-\*\/\^\., ""]|[\(\)\|\!\[\]]" + @")+$", RegexOptions.Compiled); public static bool InputValid(string input) { if (string.IsNullOrWhiteSpace(input)) { throw new ArgumentNullException(paramName: nameof(input)); } if (!RegValidExpressChar.IsMatch(input)) { return false; } if (!BracketHelper.IsBracketComplete(input)) { return false; } // If the input ends with a binary operator then it is not a valid input to mages and the Interpret function would throw an exception. Because we expect here that the user has not finished typing we block those inputs. string trimmedInput = input.TrimEnd(); if (trimmedInput.EndsWith('+') || trimmedInput.EndsWith('-') || trimmedInput.EndsWith('*') || trimmedInput.EndsWith('|') || trimmedInput.EndsWith('\\') || trimmedInput.EndsWith('^') || trimmedInput.EndsWith('=') || trimmedInput.EndsWith('&') || trimmedInput.EndsWith('/') || trimmedInput.EndsWith('%')) { return false; } return true; } public static string FixHumanMultiplicationExpressions(string input) { var output = CheckNumberOrConstantThenParenthesisExpr(input); output = CheckNumberOrConstantThenFunc(output); output = CheckParenthesisExprThenFunc(output); output = CheckParenthesisExprThenParenthesisExpr(output); output = CheckNumberThenConstant(output); output = CheckConstantThenConstant(output); return output; } /* * num (exp) * const (exp) */ private static string CheckNumberOrConstantThenParenthesisExpr(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(\d+|pi|e)\s*(\()", m => { if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } /* * num func * const func */ private static string CheckNumberOrConstantThenFunc(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(\d+|pi|e)\s*([a-zA-Z]+[0-9]*\s*\()", m => { if (input[m.Index] == 'e' && input[m.Index + 1] == 'x' && input[m.Index + 2] == 'p') { return m.Value; } if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } /* * (exp) func * func func */ private static string CheckParenthesisExprThenFunc(string input) { var p = @"(\))\s*([a-zA-Z]+[0-9]*\s*\()"; var r = "$1 * $2"; return Regex.Replace(input, p, r); } /* * (exp) (exp) * func (exp) */ private static string CheckParenthesisExprThenParenthesisExpr(string input) { var p = @"(\))\s*(\()"; var r = "$1 * $2"; return Regex.Replace(input, p, r); } /* * num const */ private static string CheckNumberThenConstant(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(\d+)\s*(pi|e)", m => { if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } /* * const const */ private static string CheckConstantThenConstant(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(pi|e)\s*(pi|e)", m => { if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } } }
// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using System.Collections.Generic; using System.Globalization; using System.Text.RegularExpressions; namespace Microsoft.PowerToys.Run.Plugin.Calculator { public static class CalculateHelper { private static readonly Regex RegValidExpressChar = new Regex( @"^(" + @"%|" + @"ceil\s*\(|floor\s*\(|exp\s*\(|max\s*\(|min\s*\(|abs\s*\(|log(?:2|10)?\s*\(|ln\s*\(|sqrt\s*\(|pow\s*\(|" + @"factorial\s*\(|sign\s*\(|round\s*\(|rand\s*\(|" + @"sin\s*\(|cos\s*\(|tan\s*\(|arcsin\s*\(|arccos\s*\(|arctan\s*\(|" + @"sinh\s*\(|cosh\s*\(|tanh\s*\(|arsinh\s*\(|arcosh\s*\(|artanh\s*\(|" + @"pi|" + @"==|~=|&&|\|\||" + @"((-?(\d+(\.\d*)?)|-?(\.\d+))[E](-?\d+))|" + /* expression from CheckScientificNotation between parenthesis */ @"e|[0-9]|0x[0-9a-fA-F]+|0b[01]+|[\+\-\*\/\^\., ""]|[\(\)\|\!\[\]]" + @")+$", RegexOptions.Compiled); public static bool InputValid(string input) { if (string.IsNullOrWhiteSpace(input)) { throw new ArgumentNullException(paramName: nameof(input)); } if (!RegValidExpressChar.IsMatch(input)) { return false; } if (!BracketHelper.IsBracketComplete(input)) { return false; } // If the input ends with a binary operator then it is not a valid input to mages and the Interpret function would throw an exception. Because we expect here that the user has not finished typing we block those inputs. string trimmedInput = input.TrimEnd(); if (trimmedInput.EndsWith('+') || trimmedInput.EndsWith('-') || trimmedInput.EndsWith('*') || trimmedInput.EndsWith('|') || trimmedInput.EndsWith('\\') || trimmedInput.EndsWith('^') || trimmedInput.EndsWith('=') || trimmedInput.EndsWith('&') || trimmedInput.EndsWith('/') || trimmedInput.EndsWith('%')) { return false; } return true; } public static string FixHumanMultiplicationExpressions(string input) { var output = CheckScientificNotation(input); output = CheckNumberOrConstantThenParenthesisExpr(output); output = CheckNumberOrConstantThenFunc(output); output = CheckParenthesisExprThenFunc(output); output = CheckParenthesisExprThenParenthesisExpr(output); output = CheckNumberThenConstant(output); output = CheckConstantThenConstant(output); return output; } private static string CheckScientificNotation(string input) { /** * NOTE: By the time the expression gets to us, it's already in English format. * * Regex explanation: * (-?(\d+({0}\d*)?)|-?({0}\d+)): Used to capture one of two types: * -?(\d+({0}\d*)?): Captures a decimal number starting with a number (e.g. "-1.23") * -?({0}\d+): Captures a decimal number without leading number (e.g. ".23") * E: Captures capital 'E' * (-?\d+): Captures an integer number (e.g. "-1" or "23") */ var p = @"(-?(\d+(\.\d*)?)|-?(\.\d+))E(-?\d+)"; return Regex.Replace(input, p, "($1 * 10^($5))"); } /* * num (exp) * const (exp) */ private static string CheckNumberOrConstantThenParenthesisExpr(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(\d+|pi|e)\s*(\()", m => { if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } /* * num func * const func */ private static string CheckNumberOrConstantThenFunc(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(\d+|pi|e)\s*([a-zA-Z]+[0-9]*\s*\()", m => { if (input[m.Index] == 'e' && input[m.Index + 1] == 'x' && input[m.Index + 2] == 'p') { return m.Value; } if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } /* * (exp) func * func func */ private static string CheckParenthesisExprThenFunc(string input) { var p = @"(\))\s*([a-zA-Z]+[0-9]*\s*\()"; var r = "$1 * $2"; return Regex.Replace(input, p, r); } /* * (exp) (exp) * func (exp) */ private static string CheckParenthesisExprThenParenthesisExpr(string input) { var p = @"(\))\s*(\()"; var r = "$1 * $2"; return Regex.Replace(input, p, r); } /* * num const */ private static string CheckNumberThenConstant(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(\d+)\s*(pi|e)", m => { if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } /* * const const */ private static string CheckConstantThenConstant(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(pi|e)\s*(pi|e)", m => { if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } } }
viggyd
302abf708288ae50c985a4b4d8122d6925eb5935
114f1b45e27ab55c3cf6a2b1d89e6b0c7d8fe7dd
The unlimited decimals is accepted because of the `\•*` after the `e`, should be `\.?` instead. Otherwise yeah, I wanted to leave the expression as is since not everyone likes to put digits before decimal places
viggyd
389
microsoft/PowerToys
28,884
[Run] Fix Scientific Notation Errors in Calculator Plugin
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request This PR allows the Calculator plugin in PowerToys Run to use scientific notation (e.g. `5e3 = 5000`). The PR fixes a regression in PowerToys that was introduced in v0.69.1. <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [X] **Closes:** #25656 - [ ] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected - [X] **Tests:** Added/updated and all pass - [ ] **Localization:** All end user facing strings can be localized - [ ] **Dev docs:** Added/updated - [ ] **New binaries:** Added on the required places - [ ] [JSON for signing](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ESRPSigning_core.json) for new binaries - [ ] [WXS for installer](https://github.com/microsoft/PowerToys/blob/main/installer/PowerToysSetup/Product.wxs) for new binaries and localization folder - [ ] [YML for CI pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ci/templates/build-powertoys-steps.yml) for new test projects - [ ] [YML for signed pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/release.yml) - [ ] **Documentation updated:** If checked, please file a pull request on [our docs repo](https://github.com/MicrosoftDocs/windows-uwp/tree/docs/hub/powertoys) and link it here: #xxx <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments Nothing else fixed. <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed I updated the Calculator unit tests to include various expressions using this notation and confirmed that they all pass.
null
2023-09-28 21:24:13+00:00
2024-01-03 11:22:10+00:00
src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.Calculator/CalculateHelper.cs
// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using System.Text.RegularExpressions; namespace Microsoft.PowerToys.Run.Plugin.Calculator { public static class CalculateHelper { private static readonly Regex RegValidExpressChar = new Regex( @"^(" + @"%|" + @"ceil\s*\(|floor\s*\(|exp\s*\(|max\s*\(|min\s*\(|abs\s*\(|log(?:2|10)?\s*\(|ln\s*\(|sqrt\s*\(|pow\s*\(|" + @"factorial\s*\(|sign\s*\(|round\s*\(|rand\s*\(|" + @"sin\s*\(|cos\s*\(|tan\s*\(|arcsin\s*\(|arccos\s*\(|arctan\s*\(|" + @"sinh\s*\(|cosh\s*\(|tanh\s*\(|arsinh\s*\(|arcosh\s*\(|artanh\s*\(|" + @"pi|" + @"==|~=|&&|\|\||" + @"e|[0-9]|0x[0-9a-fA-F]+|0b[01]+|[\+\-\*\/\^\., ""]|[\(\)\|\!\[\]]" + @")+$", RegexOptions.Compiled); public static bool InputValid(string input) { if (string.IsNullOrWhiteSpace(input)) { throw new ArgumentNullException(paramName: nameof(input)); } if (!RegValidExpressChar.IsMatch(input)) { return false; } if (!BracketHelper.IsBracketComplete(input)) { return false; } // If the input ends with a binary operator then it is not a valid input to mages and the Interpret function would throw an exception. Because we expect here that the user has not finished typing we block those inputs. string trimmedInput = input.TrimEnd(); if (trimmedInput.EndsWith('+') || trimmedInput.EndsWith('-') || trimmedInput.EndsWith('*') || trimmedInput.EndsWith('|') || trimmedInput.EndsWith('\\') || trimmedInput.EndsWith('^') || trimmedInput.EndsWith('=') || trimmedInput.EndsWith('&') || trimmedInput.EndsWith('/') || trimmedInput.EndsWith('%')) { return false; } return true; } public static string FixHumanMultiplicationExpressions(string input) { var output = CheckNumberOrConstantThenParenthesisExpr(input); output = CheckNumberOrConstantThenFunc(output); output = CheckParenthesisExprThenFunc(output); output = CheckParenthesisExprThenParenthesisExpr(output); output = CheckNumberThenConstant(output); output = CheckConstantThenConstant(output); return output; } /* * num (exp) * const (exp) */ private static string CheckNumberOrConstantThenParenthesisExpr(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(\d+|pi|e)\s*(\()", m => { if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } /* * num func * const func */ private static string CheckNumberOrConstantThenFunc(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(\d+|pi|e)\s*([a-zA-Z]+[0-9]*\s*\()", m => { if (input[m.Index] == 'e' && input[m.Index + 1] == 'x' && input[m.Index + 2] == 'p') { return m.Value; } if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } /* * (exp) func * func func */ private static string CheckParenthesisExprThenFunc(string input) { var p = @"(\))\s*([a-zA-Z]+[0-9]*\s*\()"; var r = "$1 * $2"; return Regex.Replace(input, p, r); } /* * (exp) (exp) * func (exp) */ private static string CheckParenthesisExprThenParenthesisExpr(string input) { var p = @"(\))\s*(\()"; var r = "$1 * $2"; return Regex.Replace(input, p, r); } /* * num const */ private static string CheckNumberThenConstant(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(\d+)\s*(pi|e)", m => { if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } /* * const const */ private static string CheckConstantThenConstant(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(pi|e)\s*(pi|e)", m => { if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } } }
// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using System.Collections.Generic; using System.Globalization; using System.Text.RegularExpressions; namespace Microsoft.PowerToys.Run.Plugin.Calculator { public static class CalculateHelper { private static readonly Regex RegValidExpressChar = new Regex( @"^(" + @"%|" + @"ceil\s*\(|floor\s*\(|exp\s*\(|max\s*\(|min\s*\(|abs\s*\(|log(?:2|10)?\s*\(|ln\s*\(|sqrt\s*\(|pow\s*\(|" + @"factorial\s*\(|sign\s*\(|round\s*\(|rand\s*\(|" + @"sin\s*\(|cos\s*\(|tan\s*\(|arcsin\s*\(|arccos\s*\(|arctan\s*\(|" + @"sinh\s*\(|cosh\s*\(|tanh\s*\(|arsinh\s*\(|arcosh\s*\(|artanh\s*\(|" + @"pi|" + @"==|~=|&&|\|\||" + @"((-?(\d+(\.\d*)?)|-?(\.\d+))[E](-?\d+))|" + /* expression from CheckScientificNotation between parenthesis */ @"e|[0-9]|0x[0-9a-fA-F]+|0b[01]+|[\+\-\*\/\^\., ""]|[\(\)\|\!\[\]]" + @")+$", RegexOptions.Compiled); public static bool InputValid(string input) { if (string.IsNullOrWhiteSpace(input)) { throw new ArgumentNullException(paramName: nameof(input)); } if (!RegValidExpressChar.IsMatch(input)) { return false; } if (!BracketHelper.IsBracketComplete(input)) { return false; } // If the input ends with a binary operator then it is not a valid input to mages and the Interpret function would throw an exception. Because we expect here that the user has not finished typing we block those inputs. string trimmedInput = input.TrimEnd(); if (trimmedInput.EndsWith('+') || trimmedInput.EndsWith('-') || trimmedInput.EndsWith('*') || trimmedInput.EndsWith('|') || trimmedInput.EndsWith('\\') || trimmedInput.EndsWith('^') || trimmedInput.EndsWith('=') || trimmedInput.EndsWith('&') || trimmedInput.EndsWith('/') || trimmedInput.EndsWith('%')) { return false; } return true; } public static string FixHumanMultiplicationExpressions(string input) { var output = CheckScientificNotation(input); output = CheckNumberOrConstantThenParenthesisExpr(output); output = CheckNumberOrConstantThenFunc(output); output = CheckParenthesisExprThenFunc(output); output = CheckParenthesisExprThenParenthesisExpr(output); output = CheckNumberThenConstant(output); output = CheckConstantThenConstant(output); return output; } private static string CheckScientificNotation(string input) { /** * NOTE: By the time the expression gets to us, it's already in English format. * * Regex explanation: * (-?(\d+({0}\d*)?)|-?({0}\d+)): Used to capture one of two types: * -?(\d+({0}\d*)?): Captures a decimal number starting with a number (e.g. "-1.23") * -?({0}\d+): Captures a decimal number without leading number (e.g. ".23") * E: Captures capital 'E' * (-?\d+): Captures an integer number (e.g. "-1" or "23") */ var p = @"(-?(\d+(\.\d*)?)|-?(\.\d+))E(-?\d+)"; return Regex.Replace(input, p, "($1 * 10^($5))"); } /* * num (exp) * const (exp) */ private static string CheckNumberOrConstantThenParenthesisExpr(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(\d+|pi|e)\s*(\()", m => { if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } /* * num func * const func */ private static string CheckNumberOrConstantThenFunc(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(\d+|pi|e)\s*([a-zA-Z]+[0-9]*\s*\()", m => { if (input[m.Index] == 'e' && input[m.Index + 1] == 'x' && input[m.Index + 2] == 'p') { return m.Value; } if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } /* * (exp) func * func func */ private static string CheckParenthesisExprThenFunc(string input) { var p = @"(\))\s*([a-zA-Z]+[0-9]*\s*\()"; var r = "$1 * $2"; return Regex.Replace(input, p, r); } /* * (exp) (exp) * func (exp) */ private static string CheckParenthesisExprThenParenthesisExpr(string input) { var p = @"(\))\s*(\()"; var r = "$1 * $2"; return Regex.Replace(input, p, r); } /* * num const */ private static string CheckNumberThenConstant(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(\d+)\s*(pi|e)", m => { if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } /* * const const */ private static string CheckConstantThenConstant(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(pi|e)\s*(pi|e)", m => { if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } } }
viggyd
302abf708288ae50c985a4b4d8122d6925eb5935
114f1b45e27ab55c3cf6a2b1d89e6b0c7d8fe7dd
Technically, this can also be done with a ternary. But both would work.
Jay-o-Way
390
microsoft/PowerToys
28,884
[Run] Fix Scientific Notation Errors in Calculator Plugin
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request This PR allows the Calculator plugin in PowerToys Run to use scientific notation (e.g. `5e3 = 5000`). The PR fixes a regression in PowerToys that was introduced in v0.69.1. <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [X] **Closes:** #25656 - [ ] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected - [X] **Tests:** Added/updated and all pass - [ ] **Localization:** All end user facing strings can be localized - [ ] **Dev docs:** Added/updated - [ ] **New binaries:** Added on the required places - [ ] [JSON for signing](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ESRPSigning_core.json) for new binaries - [ ] [WXS for installer](https://github.com/microsoft/PowerToys/blob/main/installer/PowerToysSetup/Product.wxs) for new binaries and localization folder - [ ] [YML for CI pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ci/templates/build-powertoys-steps.yml) for new test projects - [ ] [YML for signed pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/release.yml) - [ ] **Documentation updated:** If checked, please file a pull request on [our docs repo](https://github.com/MicrosoftDocs/windows-uwp/tree/docs/hub/powertoys) and link it here: #xxx <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments Nothing else fixed. <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed I updated the Calculator unit tests to include various expressions using this notation and confirmed that they all pass.
null
2023-09-28 21:24:13+00:00
2024-01-03 11:22:10+00:00
src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.Calculator/CalculateHelper.cs
// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using System.Text.RegularExpressions; namespace Microsoft.PowerToys.Run.Plugin.Calculator { public static class CalculateHelper { private static readonly Regex RegValidExpressChar = new Regex( @"^(" + @"%|" + @"ceil\s*\(|floor\s*\(|exp\s*\(|max\s*\(|min\s*\(|abs\s*\(|log(?:2|10)?\s*\(|ln\s*\(|sqrt\s*\(|pow\s*\(|" + @"factorial\s*\(|sign\s*\(|round\s*\(|rand\s*\(|" + @"sin\s*\(|cos\s*\(|tan\s*\(|arcsin\s*\(|arccos\s*\(|arctan\s*\(|" + @"sinh\s*\(|cosh\s*\(|tanh\s*\(|arsinh\s*\(|arcosh\s*\(|artanh\s*\(|" + @"pi|" + @"==|~=|&&|\|\||" + @"e|[0-9]|0x[0-9a-fA-F]+|0b[01]+|[\+\-\*\/\^\., ""]|[\(\)\|\!\[\]]" + @")+$", RegexOptions.Compiled); public static bool InputValid(string input) { if (string.IsNullOrWhiteSpace(input)) { throw new ArgumentNullException(paramName: nameof(input)); } if (!RegValidExpressChar.IsMatch(input)) { return false; } if (!BracketHelper.IsBracketComplete(input)) { return false; } // If the input ends with a binary operator then it is not a valid input to mages and the Interpret function would throw an exception. Because we expect here that the user has not finished typing we block those inputs. string trimmedInput = input.TrimEnd(); if (trimmedInput.EndsWith('+') || trimmedInput.EndsWith('-') || trimmedInput.EndsWith('*') || trimmedInput.EndsWith('|') || trimmedInput.EndsWith('\\') || trimmedInput.EndsWith('^') || trimmedInput.EndsWith('=') || trimmedInput.EndsWith('&') || trimmedInput.EndsWith('/') || trimmedInput.EndsWith('%')) { return false; } return true; } public static string FixHumanMultiplicationExpressions(string input) { var output = CheckNumberOrConstantThenParenthesisExpr(input); output = CheckNumberOrConstantThenFunc(output); output = CheckParenthesisExprThenFunc(output); output = CheckParenthesisExprThenParenthesisExpr(output); output = CheckNumberThenConstant(output); output = CheckConstantThenConstant(output); return output; } /* * num (exp) * const (exp) */ private static string CheckNumberOrConstantThenParenthesisExpr(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(\d+|pi|e)\s*(\()", m => { if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } /* * num func * const func */ private static string CheckNumberOrConstantThenFunc(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(\d+|pi|e)\s*([a-zA-Z]+[0-9]*\s*\()", m => { if (input[m.Index] == 'e' && input[m.Index + 1] == 'x' && input[m.Index + 2] == 'p') { return m.Value; } if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } /* * (exp) func * func func */ private static string CheckParenthesisExprThenFunc(string input) { var p = @"(\))\s*([a-zA-Z]+[0-9]*\s*\()"; var r = "$1 * $2"; return Regex.Replace(input, p, r); } /* * (exp) (exp) * func (exp) */ private static string CheckParenthesisExprThenParenthesisExpr(string input) { var p = @"(\))\s*(\()"; var r = "$1 * $2"; return Regex.Replace(input, p, r); } /* * num const */ private static string CheckNumberThenConstant(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(\d+)\s*(pi|e)", m => { if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } /* * const const */ private static string CheckConstantThenConstant(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(pi|e)\s*(pi|e)", m => { if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } } }
// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using System.Collections.Generic; using System.Globalization; using System.Text.RegularExpressions; namespace Microsoft.PowerToys.Run.Plugin.Calculator { public static class CalculateHelper { private static readonly Regex RegValidExpressChar = new Regex( @"^(" + @"%|" + @"ceil\s*\(|floor\s*\(|exp\s*\(|max\s*\(|min\s*\(|abs\s*\(|log(?:2|10)?\s*\(|ln\s*\(|sqrt\s*\(|pow\s*\(|" + @"factorial\s*\(|sign\s*\(|round\s*\(|rand\s*\(|" + @"sin\s*\(|cos\s*\(|tan\s*\(|arcsin\s*\(|arccos\s*\(|arctan\s*\(|" + @"sinh\s*\(|cosh\s*\(|tanh\s*\(|arsinh\s*\(|arcosh\s*\(|artanh\s*\(|" + @"pi|" + @"==|~=|&&|\|\||" + @"((-?(\d+(\.\d*)?)|-?(\.\d+))[E](-?\d+))|" + /* expression from CheckScientificNotation between parenthesis */ @"e|[0-9]|0x[0-9a-fA-F]+|0b[01]+|[\+\-\*\/\^\., ""]|[\(\)\|\!\[\]]" + @")+$", RegexOptions.Compiled); public static bool InputValid(string input) { if (string.IsNullOrWhiteSpace(input)) { throw new ArgumentNullException(paramName: nameof(input)); } if (!RegValidExpressChar.IsMatch(input)) { return false; } if (!BracketHelper.IsBracketComplete(input)) { return false; } // If the input ends with a binary operator then it is not a valid input to mages and the Interpret function would throw an exception. Because we expect here that the user has not finished typing we block those inputs. string trimmedInput = input.TrimEnd(); if (trimmedInput.EndsWith('+') || trimmedInput.EndsWith('-') || trimmedInput.EndsWith('*') || trimmedInput.EndsWith('|') || trimmedInput.EndsWith('\\') || trimmedInput.EndsWith('^') || trimmedInput.EndsWith('=') || trimmedInput.EndsWith('&') || trimmedInput.EndsWith('/') || trimmedInput.EndsWith('%')) { return false; } return true; } public static string FixHumanMultiplicationExpressions(string input) { var output = CheckScientificNotation(input); output = CheckNumberOrConstantThenParenthesisExpr(output); output = CheckNumberOrConstantThenFunc(output); output = CheckParenthesisExprThenFunc(output); output = CheckParenthesisExprThenParenthesisExpr(output); output = CheckNumberThenConstant(output); output = CheckConstantThenConstant(output); return output; } private static string CheckScientificNotation(string input) { /** * NOTE: By the time the expression gets to us, it's already in English format. * * Regex explanation: * (-?(\d+({0}\d*)?)|-?({0}\d+)): Used to capture one of two types: * -?(\d+({0}\d*)?): Captures a decimal number starting with a number (e.g. "-1.23") * -?({0}\d+): Captures a decimal number without leading number (e.g. ".23") * E: Captures capital 'E' * (-?\d+): Captures an integer number (e.g. "-1" or "23") */ var p = @"(-?(\d+(\.\d*)?)|-?(\.\d+))E(-?\d+)"; return Regex.Replace(input, p, "($1 * 10^($5))"); } /* * num (exp) * const (exp) */ private static string CheckNumberOrConstantThenParenthesisExpr(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(\d+|pi|e)\s*(\()", m => { if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } /* * num func * const func */ private static string CheckNumberOrConstantThenFunc(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(\d+|pi|e)\s*([a-zA-Z]+[0-9]*\s*\()", m => { if (input[m.Index] == 'e' && input[m.Index + 1] == 'x' && input[m.Index + 2] == 'p') { return m.Value; } if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } /* * (exp) func * func func */ private static string CheckParenthesisExprThenFunc(string input) { var p = @"(\))\s*([a-zA-Z]+[0-9]*\s*\()"; var r = "$1 * $2"; return Regex.Replace(input, p, r); } /* * (exp) (exp) * func (exp) */ private static string CheckParenthesisExprThenParenthesisExpr(string input) { var p = @"(\))\s*(\()"; var r = "$1 * $2"; return Regex.Replace(input, p, r); } /* * num const */ private static string CheckNumberThenConstant(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(\d+)\s*(pi|e)", m => { if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } /* * const const */ private static string CheckConstantThenConstant(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(pi|e)\s*(pi|e)", m => { if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } } }
viggyd
302abf708288ae50c985a4b4d8122d6925eb5935
114f1b45e27ab55c3cf6a2b1d89e6b0c7d8fe7dd
Why create a variable for a single use?
Jay-o-Way
391
microsoft/PowerToys
28,884
[Run] Fix Scientific Notation Errors in Calculator Plugin
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request This PR allows the Calculator plugin in PowerToys Run to use scientific notation (e.g. `5e3 = 5000`). The PR fixes a regression in PowerToys that was introduced in v0.69.1. <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [X] **Closes:** #25656 - [ ] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected - [X] **Tests:** Added/updated and all pass - [ ] **Localization:** All end user facing strings can be localized - [ ] **Dev docs:** Added/updated - [ ] **New binaries:** Added on the required places - [ ] [JSON for signing](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ESRPSigning_core.json) for new binaries - [ ] [WXS for installer](https://github.com/microsoft/PowerToys/blob/main/installer/PowerToysSetup/Product.wxs) for new binaries and localization folder - [ ] [YML for CI pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ci/templates/build-powertoys-steps.yml) for new test projects - [ ] [YML for signed pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/release.yml) - [ ] **Documentation updated:** If checked, please file a pull request on [our docs repo](https://github.com/MicrosoftDocs/windows-uwp/tree/docs/hub/powertoys) and link it here: #xxx <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments Nothing else fixed. <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed I updated the Calculator unit tests to include various expressions using this notation and confirmed that they all pass.
null
2023-09-28 21:24:13+00:00
2024-01-03 11:22:10+00:00
src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.Calculator/CalculateHelper.cs
// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using System.Text.RegularExpressions; namespace Microsoft.PowerToys.Run.Plugin.Calculator { public static class CalculateHelper { private static readonly Regex RegValidExpressChar = new Regex( @"^(" + @"%|" + @"ceil\s*\(|floor\s*\(|exp\s*\(|max\s*\(|min\s*\(|abs\s*\(|log(?:2|10)?\s*\(|ln\s*\(|sqrt\s*\(|pow\s*\(|" + @"factorial\s*\(|sign\s*\(|round\s*\(|rand\s*\(|" + @"sin\s*\(|cos\s*\(|tan\s*\(|arcsin\s*\(|arccos\s*\(|arctan\s*\(|" + @"sinh\s*\(|cosh\s*\(|tanh\s*\(|arsinh\s*\(|arcosh\s*\(|artanh\s*\(|" + @"pi|" + @"==|~=|&&|\|\||" + @"e|[0-9]|0x[0-9a-fA-F]+|0b[01]+|[\+\-\*\/\^\., ""]|[\(\)\|\!\[\]]" + @")+$", RegexOptions.Compiled); public static bool InputValid(string input) { if (string.IsNullOrWhiteSpace(input)) { throw new ArgumentNullException(paramName: nameof(input)); } if (!RegValidExpressChar.IsMatch(input)) { return false; } if (!BracketHelper.IsBracketComplete(input)) { return false; } // If the input ends with a binary operator then it is not a valid input to mages and the Interpret function would throw an exception. Because we expect here that the user has not finished typing we block those inputs. string trimmedInput = input.TrimEnd(); if (trimmedInput.EndsWith('+') || trimmedInput.EndsWith('-') || trimmedInput.EndsWith('*') || trimmedInput.EndsWith('|') || trimmedInput.EndsWith('\\') || trimmedInput.EndsWith('^') || trimmedInput.EndsWith('=') || trimmedInput.EndsWith('&') || trimmedInput.EndsWith('/') || trimmedInput.EndsWith('%')) { return false; } return true; } public static string FixHumanMultiplicationExpressions(string input) { var output = CheckNumberOrConstantThenParenthesisExpr(input); output = CheckNumberOrConstantThenFunc(output); output = CheckParenthesisExprThenFunc(output); output = CheckParenthesisExprThenParenthesisExpr(output); output = CheckNumberThenConstant(output); output = CheckConstantThenConstant(output); return output; } /* * num (exp) * const (exp) */ private static string CheckNumberOrConstantThenParenthesisExpr(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(\d+|pi|e)\s*(\()", m => { if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } /* * num func * const func */ private static string CheckNumberOrConstantThenFunc(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(\d+|pi|e)\s*([a-zA-Z]+[0-9]*\s*\()", m => { if (input[m.Index] == 'e' && input[m.Index + 1] == 'x' && input[m.Index + 2] == 'p') { return m.Value; } if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } /* * (exp) func * func func */ private static string CheckParenthesisExprThenFunc(string input) { var p = @"(\))\s*([a-zA-Z]+[0-9]*\s*\()"; var r = "$1 * $2"; return Regex.Replace(input, p, r); } /* * (exp) (exp) * func (exp) */ private static string CheckParenthesisExprThenParenthesisExpr(string input) { var p = @"(\))\s*(\()"; var r = "$1 * $2"; return Regex.Replace(input, p, r); } /* * num const */ private static string CheckNumberThenConstant(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(\d+)\s*(pi|e)", m => { if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } /* * const const */ private static string CheckConstantThenConstant(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(pi|e)\s*(pi|e)", m => { if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } } }
// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using System.Collections.Generic; using System.Globalization; using System.Text.RegularExpressions; namespace Microsoft.PowerToys.Run.Plugin.Calculator { public static class CalculateHelper { private static readonly Regex RegValidExpressChar = new Regex( @"^(" + @"%|" + @"ceil\s*\(|floor\s*\(|exp\s*\(|max\s*\(|min\s*\(|abs\s*\(|log(?:2|10)?\s*\(|ln\s*\(|sqrt\s*\(|pow\s*\(|" + @"factorial\s*\(|sign\s*\(|round\s*\(|rand\s*\(|" + @"sin\s*\(|cos\s*\(|tan\s*\(|arcsin\s*\(|arccos\s*\(|arctan\s*\(|" + @"sinh\s*\(|cosh\s*\(|tanh\s*\(|arsinh\s*\(|arcosh\s*\(|artanh\s*\(|" + @"pi|" + @"==|~=|&&|\|\||" + @"((-?(\d+(\.\d*)?)|-?(\.\d+))[E](-?\d+))|" + /* expression from CheckScientificNotation between parenthesis */ @"e|[0-9]|0x[0-9a-fA-F]+|0b[01]+|[\+\-\*\/\^\., ""]|[\(\)\|\!\[\]]" + @")+$", RegexOptions.Compiled); public static bool InputValid(string input) { if (string.IsNullOrWhiteSpace(input)) { throw new ArgumentNullException(paramName: nameof(input)); } if (!RegValidExpressChar.IsMatch(input)) { return false; } if (!BracketHelper.IsBracketComplete(input)) { return false; } // If the input ends with a binary operator then it is not a valid input to mages and the Interpret function would throw an exception. Because we expect here that the user has not finished typing we block those inputs. string trimmedInput = input.TrimEnd(); if (trimmedInput.EndsWith('+') || trimmedInput.EndsWith('-') || trimmedInput.EndsWith('*') || trimmedInput.EndsWith('|') || trimmedInput.EndsWith('\\') || trimmedInput.EndsWith('^') || trimmedInput.EndsWith('=') || trimmedInput.EndsWith('&') || trimmedInput.EndsWith('/') || trimmedInput.EndsWith('%')) { return false; } return true; } public static string FixHumanMultiplicationExpressions(string input) { var output = CheckScientificNotation(input); output = CheckNumberOrConstantThenParenthesisExpr(output); output = CheckNumberOrConstantThenFunc(output); output = CheckParenthesisExprThenFunc(output); output = CheckParenthesisExprThenParenthesisExpr(output); output = CheckNumberThenConstant(output); output = CheckConstantThenConstant(output); return output; } private static string CheckScientificNotation(string input) { /** * NOTE: By the time the expression gets to us, it's already in English format. * * Regex explanation: * (-?(\d+({0}\d*)?)|-?({0}\d+)): Used to capture one of two types: * -?(\d+({0}\d*)?): Captures a decimal number starting with a number (e.g. "-1.23") * -?({0}\d+): Captures a decimal number without leading number (e.g. ".23") * E: Captures capital 'E' * (-?\d+): Captures an integer number (e.g. "-1" or "23") */ var p = @"(-?(\d+(\.\d*)?)|-?(\.\d+))E(-?\d+)"; return Regex.Replace(input, p, "($1 * 10^($5))"); } /* * num (exp) * const (exp) */ private static string CheckNumberOrConstantThenParenthesisExpr(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(\d+|pi|e)\s*(\()", m => { if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } /* * num func * const func */ private static string CheckNumberOrConstantThenFunc(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(\d+|pi|e)\s*([a-zA-Z]+[0-9]*\s*\()", m => { if (input[m.Index] == 'e' && input[m.Index + 1] == 'x' && input[m.Index + 2] == 'p') { return m.Value; } if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } /* * (exp) func * func func */ private static string CheckParenthesisExprThenFunc(string input) { var p = @"(\))\s*([a-zA-Z]+[0-9]*\s*\()"; var r = "$1 * $2"; return Regex.Replace(input, p, r); } /* * (exp) (exp) * func (exp) */ private static string CheckParenthesisExprThenParenthesisExpr(string input) { var p = @"(\))\s*(\()"; var r = "$1 * $2"; return Regex.Replace(input, p, r); } /* * num const */ private static string CheckNumberThenConstant(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(\d+)\s*(pi|e)", m => { if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } /* * const const */ private static string CheckConstantThenConstant(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(pi|e)\s*(pi|e)", m => { if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } } }
viggyd
302abf708288ae50c985a4b4d8122d6925eb5935
114f1b45e27ab55c3cf6a2b1d89e6b0c7d8fe7dd
can we have a decimal point after E? 🤔
stefansjfw
392
microsoft/PowerToys
28,884
[Run] Fix Scientific Notation Errors in Calculator Plugin
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request This PR allows the Calculator plugin in PowerToys Run to use scientific notation (e.g. `5e3 = 5000`). The PR fixes a regression in PowerToys that was introduced in v0.69.1. <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [X] **Closes:** #25656 - [ ] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected - [X] **Tests:** Added/updated and all pass - [ ] **Localization:** All end user facing strings can be localized - [ ] **Dev docs:** Added/updated - [ ] **New binaries:** Added on the required places - [ ] [JSON for signing](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ESRPSigning_core.json) for new binaries - [ ] [WXS for installer](https://github.com/microsoft/PowerToys/blob/main/installer/PowerToysSetup/Product.wxs) for new binaries and localization folder - [ ] [YML for CI pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ci/templates/build-powertoys-steps.yml) for new test projects - [ ] [YML for signed pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/release.yml) - [ ] **Documentation updated:** If checked, please file a pull request on [our docs repo](https://github.com/MicrosoftDocs/windows-uwp/tree/docs/hub/powertoys) and link it here: #xxx <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments Nothing else fixed. <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed I updated the Calculator unit tests to include various expressions using this notation and confirmed that they all pass.
null
2023-09-28 21:24:13+00:00
2024-01-03 11:22:10+00:00
src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.Calculator/CalculateHelper.cs
// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using System.Text.RegularExpressions; namespace Microsoft.PowerToys.Run.Plugin.Calculator { public static class CalculateHelper { private static readonly Regex RegValidExpressChar = new Regex( @"^(" + @"%|" + @"ceil\s*\(|floor\s*\(|exp\s*\(|max\s*\(|min\s*\(|abs\s*\(|log(?:2|10)?\s*\(|ln\s*\(|sqrt\s*\(|pow\s*\(|" + @"factorial\s*\(|sign\s*\(|round\s*\(|rand\s*\(|" + @"sin\s*\(|cos\s*\(|tan\s*\(|arcsin\s*\(|arccos\s*\(|arctan\s*\(|" + @"sinh\s*\(|cosh\s*\(|tanh\s*\(|arsinh\s*\(|arcosh\s*\(|artanh\s*\(|" + @"pi|" + @"==|~=|&&|\|\||" + @"e|[0-9]|0x[0-9a-fA-F]+|0b[01]+|[\+\-\*\/\^\., ""]|[\(\)\|\!\[\]]" + @")+$", RegexOptions.Compiled); public static bool InputValid(string input) { if (string.IsNullOrWhiteSpace(input)) { throw new ArgumentNullException(paramName: nameof(input)); } if (!RegValidExpressChar.IsMatch(input)) { return false; } if (!BracketHelper.IsBracketComplete(input)) { return false; } // If the input ends with a binary operator then it is not a valid input to mages and the Interpret function would throw an exception. Because we expect here that the user has not finished typing we block those inputs. string trimmedInput = input.TrimEnd(); if (trimmedInput.EndsWith('+') || trimmedInput.EndsWith('-') || trimmedInput.EndsWith('*') || trimmedInput.EndsWith('|') || trimmedInput.EndsWith('\\') || trimmedInput.EndsWith('^') || trimmedInput.EndsWith('=') || trimmedInput.EndsWith('&') || trimmedInput.EndsWith('/') || trimmedInput.EndsWith('%')) { return false; } return true; } public static string FixHumanMultiplicationExpressions(string input) { var output = CheckNumberOrConstantThenParenthesisExpr(input); output = CheckNumberOrConstantThenFunc(output); output = CheckParenthesisExprThenFunc(output); output = CheckParenthesisExprThenParenthesisExpr(output); output = CheckNumberThenConstant(output); output = CheckConstantThenConstant(output); return output; } /* * num (exp) * const (exp) */ private static string CheckNumberOrConstantThenParenthesisExpr(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(\d+|pi|e)\s*(\()", m => { if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } /* * num func * const func */ private static string CheckNumberOrConstantThenFunc(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(\d+|pi|e)\s*([a-zA-Z]+[0-9]*\s*\()", m => { if (input[m.Index] == 'e' && input[m.Index + 1] == 'x' && input[m.Index + 2] == 'p') { return m.Value; } if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } /* * (exp) func * func func */ private static string CheckParenthesisExprThenFunc(string input) { var p = @"(\))\s*([a-zA-Z]+[0-9]*\s*\()"; var r = "$1 * $2"; return Regex.Replace(input, p, r); } /* * (exp) (exp) * func (exp) */ private static string CheckParenthesisExprThenParenthesisExpr(string input) { var p = @"(\))\s*(\()"; var r = "$1 * $2"; return Regex.Replace(input, p, r); } /* * num const */ private static string CheckNumberThenConstant(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(\d+)\s*(pi|e)", m => { if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } /* * const const */ private static string CheckConstantThenConstant(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(pi|e)\s*(pi|e)", m => { if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } } }
// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using System.Collections.Generic; using System.Globalization; using System.Text.RegularExpressions; namespace Microsoft.PowerToys.Run.Plugin.Calculator { public static class CalculateHelper { private static readonly Regex RegValidExpressChar = new Regex( @"^(" + @"%|" + @"ceil\s*\(|floor\s*\(|exp\s*\(|max\s*\(|min\s*\(|abs\s*\(|log(?:2|10)?\s*\(|ln\s*\(|sqrt\s*\(|pow\s*\(|" + @"factorial\s*\(|sign\s*\(|round\s*\(|rand\s*\(|" + @"sin\s*\(|cos\s*\(|tan\s*\(|arcsin\s*\(|arccos\s*\(|arctan\s*\(|" + @"sinh\s*\(|cosh\s*\(|tanh\s*\(|arsinh\s*\(|arcosh\s*\(|artanh\s*\(|" + @"pi|" + @"==|~=|&&|\|\||" + @"((-?(\d+(\.\d*)?)|-?(\.\d+))[E](-?\d+))|" + /* expression from CheckScientificNotation between parenthesis */ @"e|[0-9]|0x[0-9a-fA-F]+|0b[01]+|[\+\-\*\/\^\., ""]|[\(\)\|\!\[\]]" + @")+$", RegexOptions.Compiled); public static bool InputValid(string input) { if (string.IsNullOrWhiteSpace(input)) { throw new ArgumentNullException(paramName: nameof(input)); } if (!RegValidExpressChar.IsMatch(input)) { return false; } if (!BracketHelper.IsBracketComplete(input)) { return false; } // If the input ends with a binary operator then it is not a valid input to mages and the Interpret function would throw an exception. Because we expect here that the user has not finished typing we block those inputs. string trimmedInput = input.TrimEnd(); if (trimmedInput.EndsWith('+') || trimmedInput.EndsWith('-') || trimmedInput.EndsWith('*') || trimmedInput.EndsWith('|') || trimmedInput.EndsWith('\\') || trimmedInput.EndsWith('^') || trimmedInput.EndsWith('=') || trimmedInput.EndsWith('&') || trimmedInput.EndsWith('/') || trimmedInput.EndsWith('%')) { return false; } return true; } public static string FixHumanMultiplicationExpressions(string input) { var output = CheckScientificNotation(input); output = CheckNumberOrConstantThenParenthesisExpr(output); output = CheckNumberOrConstantThenFunc(output); output = CheckParenthesisExprThenFunc(output); output = CheckParenthesisExprThenParenthesisExpr(output); output = CheckNumberThenConstant(output); output = CheckConstantThenConstant(output); return output; } private static string CheckScientificNotation(string input) { /** * NOTE: By the time the expression gets to us, it's already in English format. * * Regex explanation: * (-?(\d+({0}\d*)?)|-?({0}\d+)): Used to capture one of two types: * -?(\d+({0}\d*)?): Captures a decimal number starting with a number (e.g. "-1.23") * -?({0}\d+): Captures a decimal number without leading number (e.g. ".23") * E: Captures capital 'E' * (-?\d+): Captures an integer number (e.g. "-1" or "23") */ var p = @"(-?(\d+(\.\d*)?)|-?(\.\d+))E(-?\d+)"; return Regex.Replace(input, p, "($1 * 10^($5))"); } /* * num (exp) * const (exp) */ private static string CheckNumberOrConstantThenParenthesisExpr(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(\d+|pi|e)\s*(\()", m => { if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } /* * num func * const func */ private static string CheckNumberOrConstantThenFunc(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(\d+|pi|e)\s*([a-zA-Z]+[0-9]*\s*\()", m => { if (input[m.Index] == 'e' && input[m.Index + 1] == 'x' && input[m.Index + 2] == 'p') { return m.Value; } if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } /* * (exp) func * func func */ private static string CheckParenthesisExprThenFunc(string input) { var p = @"(\))\s*([a-zA-Z]+[0-9]*\s*\()"; var r = "$1 * $2"; return Regex.Replace(input, p, r); } /* * (exp) (exp) * func (exp) */ private static string CheckParenthesisExprThenParenthesisExpr(string input) { var p = @"(\))\s*(\()"; var r = "$1 * $2"; return Regex.Replace(input, p, r); } /* * num const */ private static string CheckNumberThenConstant(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(\d+)\s*(pi|e)", m => { if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } /* * const const */ private static string CheckConstantThenConstant(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(pi|e)\s*(pi|e)", m => { if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } } }
viggyd
302abf708288ae50c985a4b4d8122d6925eb5935
114f1b45e27ab55c3cf6a2b1d89e6b0c7d8fe7dd
i.e. should it be var p = @"(-?(\d+({0}\d*)?)|-?({0}\d+))E(-?\d+)";
stefansjfw
393
microsoft/PowerToys
28,884
[Run] Fix Scientific Notation Errors in Calculator Plugin
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request This PR allows the Calculator plugin in PowerToys Run to use scientific notation (e.g. `5e3 = 5000`). The PR fixes a regression in PowerToys that was introduced in v0.69.1. <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [X] **Closes:** #25656 - [ ] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected - [X] **Tests:** Added/updated and all pass - [ ] **Localization:** All end user facing strings can be localized - [ ] **Dev docs:** Added/updated - [ ] **New binaries:** Added on the required places - [ ] [JSON for signing](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ESRPSigning_core.json) for new binaries - [ ] [WXS for installer](https://github.com/microsoft/PowerToys/blob/main/installer/PowerToysSetup/Product.wxs) for new binaries and localization folder - [ ] [YML for CI pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ci/templates/build-powertoys-steps.yml) for new test projects - [ ] [YML for signed pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/release.yml) - [ ] **Documentation updated:** If checked, please file a pull request on [our docs repo](https://github.com/MicrosoftDocs/windows-uwp/tree/docs/hub/powertoys) and link it here: #xxx <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments Nothing else fixed. <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed I updated the Calculator unit tests to include various expressions using this notation and confirmed that they all pass.
null
2023-09-28 21:24:13+00:00
2024-01-03 11:22:10+00:00
src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.Calculator/CalculateHelper.cs
// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using System.Text.RegularExpressions; namespace Microsoft.PowerToys.Run.Plugin.Calculator { public static class CalculateHelper { private static readonly Regex RegValidExpressChar = new Regex( @"^(" + @"%|" + @"ceil\s*\(|floor\s*\(|exp\s*\(|max\s*\(|min\s*\(|abs\s*\(|log(?:2|10)?\s*\(|ln\s*\(|sqrt\s*\(|pow\s*\(|" + @"factorial\s*\(|sign\s*\(|round\s*\(|rand\s*\(|" + @"sin\s*\(|cos\s*\(|tan\s*\(|arcsin\s*\(|arccos\s*\(|arctan\s*\(|" + @"sinh\s*\(|cosh\s*\(|tanh\s*\(|arsinh\s*\(|arcosh\s*\(|artanh\s*\(|" + @"pi|" + @"==|~=|&&|\|\||" + @"e|[0-9]|0x[0-9a-fA-F]+|0b[01]+|[\+\-\*\/\^\., ""]|[\(\)\|\!\[\]]" + @")+$", RegexOptions.Compiled); public static bool InputValid(string input) { if (string.IsNullOrWhiteSpace(input)) { throw new ArgumentNullException(paramName: nameof(input)); } if (!RegValidExpressChar.IsMatch(input)) { return false; } if (!BracketHelper.IsBracketComplete(input)) { return false; } // If the input ends with a binary operator then it is not a valid input to mages and the Interpret function would throw an exception. Because we expect here that the user has not finished typing we block those inputs. string trimmedInput = input.TrimEnd(); if (trimmedInput.EndsWith('+') || trimmedInput.EndsWith('-') || trimmedInput.EndsWith('*') || trimmedInput.EndsWith('|') || trimmedInput.EndsWith('\\') || trimmedInput.EndsWith('^') || trimmedInput.EndsWith('=') || trimmedInput.EndsWith('&') || trimmedInput.EndsWith('/') || trimmedInput.EndsWith('%')) { return false; } return true; } public static string FixHumanMultiplicationExpressions(string input) { var output = CheckNumberOrConstantThenParenthesisExpr(input); output = CheckNumberOrConstantThenFunc(output); output = CheckParenthesisExprThenFunc(output); output = CheckParenthesisExprThenParenthesisExpr(output); output = CheckNumberThenConstant(output); output = CheckConstantThenConstant(output); return output; } /* * num (exp) * const (exp) */ private static string CheckNumberOrConstantThenParenthesisExpr(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(\d+|pi|e)\s*(\()", m => { if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } /* * num func * const func */ private static string CheckNumberOrConstantThenFunc(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(\d+|pi|e)\s*([a-zA-Z]+[0-9]*\s*\()", m => { if (input[m.Index] == 'e' && input[m.Index + 1] == 'x' && input[m.Index + 2] == 'p') { return m.Value; } if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } /* * (exp) func * func func */ private static string CheckParenthesisExprThenFunc(string input) { var p = @"(\))\s*([a-zA-Z]+[0-9]*\s*\()"; var r = "$1 * $2"; return Regex.Replace(input, p, r); } /* * (exp) (exp) * func (exp) */ private static string CheckParenthesisExprThenParenthesisExpr(string input) { var p = @"(\))\s*(\()"; var r = "$1 * $2"; return Regex.Replace(input, p, r); } /* * num const */ private static string CheckNumberThenConstant(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(\d+)\s*(pi|e)", m => { if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } /* * const const */ private static string CheckConstantThenConstant(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(pi|e)\s*(pi|e)", m => { if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } } }
// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using System.Collections.Generic; using System.Globalization; using System.Text.RegularExpressions; namespace Microsoft.PowerToys.Run.Plugin.Calculator { public static class CalculateHelper { private static readonly Regex RegValidExpressChar = new Regex( @"^(" + @"%|" + @"ceil\s*\(|floor\s*\(|exp\s*\(|max\s*\(|min\s*\(|abs\s*\(|log(?:2|10)?\s*\(|ln\s*\(|sqrt\s*\(|pow\s*\(|" + @"factorial\s*\(|sign\s*\(|round\s*\(|rand\s*\(|" + @"sin\s*\(|cos\s*\(|tan\s*\(|arcsin\s*\(|arccos\s*\(|arctan\s*\(|" + @"sinh\s*\(|cosh\s*\(|tanh\s*\(|arsinh\s*\(|arcosh\s*\(|artanh\s*\(|" + @"pi|" + @"==|~=|&&|\|\||" + @"((-?(\d+(\.\d*)?)|-?(\.\d+))[E](-?\d+))|" + /* expression from CheckScientificNotation between parenthesis */ @"e|[0-9]|0x[0-9a-fA-F]+|0b[01]+|[\+\-\*\/\^\., ""]|[\(\)\|\!\[\]]" + @")+$", RegexOptions.Compiled); public static bool InputValid(string input) { if (string.IsNullOrWhiteSpace(input)) { throw new ArgumentNullException(paramName: nameof(input)); } if (!RegValidExpressChar.IsMatch(input)) { return false; } if (!BracketHelper.IsBracketComplete(input)) { return false; } // If the input ends with a binary operator then it is not a valid input to mages and the Interpret function would throw an exception. Because we expect here that the user has not finished typing we block those inputs. string trimmedInput = input.TrimEnd(); if (trimmedInput.EndsWith('+') || trimmedInput.EndsWith('-') || trimmedInput.EndsWith('*') || trimmedInput.EndsWith('|') || trimmedInput.EndsWith('\\') || trimmedInput.EndsWith('^') || trimmedInput.EndsWith('=') || trimmedInput.EndsWith('&') || trimmedInput.EndsWith('/') || trimmedInput.EndsWith('%')) { return false; } return true; } public static string FixHumanMultiplicationExpressions(string input) { var output = CheckScientificNotation(input); output = CheckNumberOrConstantThenParenthesisExpr(output); output = CheckNumberOrConstantThenFunc(output); output = CheckParenthesisExprThenFunc(output); output = CheckParenthesisExprThenParenthesisExpr(output); output = CheckNumberThenConstant(output); output = CheckConstantThenConstant(output); return output; } private static string CheckScientificNotation(string input) { /** * NOTE: By the time the expression gets to us, it's already in English format. * * Regex explanation: * (-?(\d+({0}\d*)?)|-?({0}\d+)): Used to capture one of two types: * -?(\d+({0}\d*)?): Captures a decimal number starting with a number (e.g. "-1.23") * -?({0}\d+): Captures a decimal number without leading number (e.g. ".23") * E: Captures capital 'E' * (-?\d+): Captures an integer number (e.g. "-1" or "23") */ var p = @"(-?(\d+(\.\d*)?)|-?(\.\d+))E(-?\d+)"; return Regex.Replace(input, p, "($1 * 10^($5))"); } /* * num (exp) * const (exp) */ private static string CheckNumberOrConstantThenParenthesisExpr(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(\d+|pi|e)\s*(\()", m => { if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } /* * num func * const func */ private static string CheckNumberOrConstantThenFunc(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(\d+|pi|e)\s*([a-zA-Z]+[0-9]*\s*\()", m => { if (input[m.Index] == 'e' && input[m.Index + 1] == 'x' && input[m.Index + 2] == 'p') { return m.Value; } if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } /* * (exp) func * func func */ private static string CheckParenthesisExprThenFunc(string input) { var p = @"(\))\s*([a-zA-Z]+[0-9]*\s*\()"; var r = "$1 * $2"; return Regex.Replace(input, p, r); } /* * (exp) (exp) * func (exp) */ private static string CheckParenthesisExprThenParenthesisExpr(string input) { var p = @"(\))\s*(\()"; var r = "$1 * $2"; return Regex.Replace(input, p, r); } /* * num const */ private static string CheckNumberThenConstant(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(\d+)\s*(pi|e)", m => { if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } /* * const const */ private static string CheckConstantThenConstant(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(pi|e)\s*(pi|e)", m => { if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } } }
viggyd
302abf708288ae50c985a4b4d8122d6925eb5935
114f1b45e27ab55c3cf6a2b1d89e6b0c7d8fe7dd
The expoment must be an integer. Good catch!
Jay-o-Way
394
microsoft/PowerToys
28,884
[Run] Fix Scientific Notation Errors in Calculator Plugin
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request This PR allows the Calculator plugin in PowerToys Run to use scientific notation (e.g. `5e3 = 5000`). The PR fixes a regression in PowerToys that was introduced in v0.69.1. <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [X] **Closes:** #25656 - [ ] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected - [X] **Tests:** Added/updated and all pass - [ ] **Localization:** All end user facing strings can be localized - [ ] **Dev docs:** Added/updated - [ ] **New binaries:** Added on the required places - [ ] [JSON for signing](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ESRPSigning_core.json) for new binaries - [ ] [WXS for installer](https://github.com/microsoft/PowerToys/blob/main/installer/PowerToysSetup/Product.wxs) for new binaries and localization folder - [ ] [YML for CI pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ci/templates/build-powertoys-steps.yml) for new test projects - [ ] [YML for signed pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/release.yml) - [ ] **Documentation updated:** If checked, please file a pull request on [our docs repo](https://github.com/MicrosoftDocs/windows-uwp/tree/docs/hub/powertoys) and link it here: #xxx <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments Nothing else fixed. <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed I updated the Calculator unit tests to include various expressions using this notation and confirmed that they all pass.
null
2023-09-28 21:24:13+00:00
2024-01-03 11:22:10+00:00
src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.Calculator/CalculateHelper.cs
// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using System.Text.RegularExpressions; namespace Microsoft.PowerToys.Run.Plugin.Calculator { public static class CalculateHelper { private static readonly Regex RegValidExpressChar = new Regex( @"^(" + @"%|" + @"ceil\s*\(|floor\s*\(|exp\s*\(|max\s*\(|min\s*\(|abs\s*\(|log(?:2|10)?\s*\(|ln\s*\(|sqrt\s*\(|pow\s*\(|" + @"factorial\s*\(|sign\s*\(|round\s*\(|rand\s*\(|" + @"sin\s*\(|cos\s*\(|tan\s*\(|arcsin\s*\(|arccos\s*\(|arctan\s*\(|" + @"sinh\s*\(|cosh\s*\(|tanh\s*\(|arsinh\s*\(|arcosh\s*\(|artanh\s*\(|" + @"pi|" + @"==|~=|&&|\|\||" + @"e|[0-9]|0x[0-9a-fA-F]+|0b[01]+|[\+\-\*\/\^\., ""]|[\(\)\|\!\[\]]" + @")+$", RegexOptions.Compiled); public static bool InputValid(string input) { if (string.IsNullOrWhiteSpace(input)) { throw new ArgumentNullException(paramName: nameof(input)); } if (!RegValidExpressChar.IsMatch(input)) { return false; } if (!BracketHelper.IsBracketComplete(input)) { return false; } // If the input ends with a binary operator then it is not a valid input to mages and the Interpret function would throw an exception. Because we expect here that the user has not finished typing we block those inputs. string trimmedInput = input.TrimEnd(); if (trimmedInput.EndsWith('+') || trimmedInput.EndsWith('-') || trimmedInput.EndsWith('*') || trimmedInput.EndsWith('|') || trimmedInput.EndsWith('\\') || trimmedInput.EndsWith('^') || trimmedInput.EndsWith('=') || trimmedInput.EndsWith('&') || trimmedInput.EndsWith('/') || trimmedInput.EndsWith('%')) { return false; } return true; } public static string FixHumanMultiplicationExpressions(string input) { var output = CheckNumberOrConstantThenParenthesisExpr(input); output = CheckNumberOrConstantThenFunc(output); output = CheckParenthesisExprThenFunc(output); output = CheckParenthesisExprThenParenthesisExpr(output); output = CheckNumberThenConstant(output); output = CheckConstantThenConstant(output); return output; } /* * num (exp) * const (exp) */ private static string CheckNumberOrConstantThenParenthesisExpr(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(\d+|pi|e)\s*(\()", m => { if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } /* * num func * const func */ private static string CheckNumberOrConstantThenFunc(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(\d+|pi|e)\s*([a-zA-Z]+[0-9]*\s*\()", m => { if (input[m.Index] == 'e' && input[m.Index + 1] == 'x' && input[m.Index + 2] == 'p') { return m.Value; } if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } /* * (exp) func * func func */ private static string CheckParenthesisExprThenFunc(string input) { var p = @"(\))\s*([a-zA-Z]+[0-9]*\s*\()"; var r = "$1 * $2"; return Regex.Replace(input, p, r); } /* * (exp) (exp) * func (exp) */ private static string CheckParenthesisExprThenParenthesisExpr(string input) { var p = @"(\))\s*(\()"; var r = "$1 * $2"; return Regex.Replace(input, p, r); } /* * num const */ private static string CheckNumberThenConstant(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(\d+)\s*(pi|e)", m => { if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } /* * const const */ private static string CheckConstantThenConstant(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(pi|e)\s*(pi|e)", m => { if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } } }
// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using System.Collections.Generic; using System.Globalization; using System.Text.RegularExpressions; namespace Microsoft.PowerToys.Run.Plugin.Calculator { public static class CalculateHelper { private static readonly Regex RegValidExpressChar = new Regex( @"^(" + @"%|" + @"ceil\s*\(|floor\s*\(|exp\s*\(|max\s*\(|min\s*\(|abs\s*\(|log(?:2|10)?\s*\(|ln\s*\(|sqrt\s*\(|pow\s*\(|" + @"factorial\s*\(|sign\s*\(|round\s*\(|rand\s*\(|" + @"sin\s*\(|cos\s*\(|tan\s*\(|arcsin\s*\(|arccos\s*\(|arctan\s*\(|" + @"sinh\s*\(|cosh\s*\(|tanh\s*\(|arsinh\s*\(|arcosh\s*\(|artanh\s*\(|" + @"pi|" + @"==|~=|&&|\|\||" + @"((-?(\d+(\.\d*)?)|-?(\.\d+))[E](-?\d+))|" + /* expression from CheckScientificNotation between parenthesis */ @"e|[0-9]|0x[0-9a-fA-F]+|0b[01]+|[\+\-\*\/\^\., ""]|[\(\)\|\!\[\]]" + @")+$", RegexOptions.Compiled); public static bool InputValid(string input) { if (string.IsNullOrWhiteSpace(input)) { throw new ArgumentNullException(paramName: nameof(input)); } if (!RegValidExpressChar.IsMatch(input)) { return false; } if (!BracketHelper.IsBracketComplete(input)) { return false; } // If the input ends with a binary operator then it is not a valid input to mages and the Interpret function would throw an exception. Because we expect here that the user has not finished typing we block those inputs. string trimmedInput = input.TrimEnd(); if (trimmedInput.EndsWith('+') || trimmedInput.EndsWith('-') || trimmedInput.EndsWith('*') || trimmedInput.EndsWith('|') || trimmedInput.EndsWith('\\') || trimmedInput.EndsWith('^') || trimmedInput.EndsWith('=') || trimmedInput.EndsWith('&') || trimmedInput.EndsWith('/') || trimmedInput.EndsWith('%')) { return false; } return true; } public static string FixHumanMultiplicationExpressions(string input) { var output = CheckScientificNotation(input); output = CheckNumberOrConstantThenParenthesisExpr(output); output = CheckNumberOrConstantThenFunc(output); output = CheckParenthesisExprThenFunc(output); output = CheckParenthesisExprThenParenthesisExpr(output); output = CheckNumberThenConstant(output); output = CheckConstantThenConstant(output); return output; } private static string CheckScientificNotation(string input) { /** * NOTE: By the time the expression gets to us, it's already in English format. * * Regex explanation: * (-?(\d+({0}\d*)?)|-?({0}\d+)): Used to capture one of two types: * -?(\d+({0}\d*)?): Captures a decimal number starting with a number (e.g. "-1.23") * -?({0}\d+): Captures a decimal number without leading number (e.g. ".23") * E: Captures capital 'E' * (-?\d+): Captures an integer number (e.g. "-1" or "23") */ var p = @"(-?(\d+(\.\d*)?)|-?(\.\d+))E(-?\d+)"; return Regex.Replace(input, p, "($1 * 10^($5))"); } /* * num (exp) * const (exp) */ private static string CheckNumberOrConstantThenParenthesisExpr(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(\d+|pi|e)\s*(\()", m => { if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } /* * num func * const func */ private static string CheckNumberOrConstantThenFunc(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(\d+|pi|e)\s*([a-zA-Z]+[0-9]*\s*\()", m => { if (input[m.Index] == 'e' && input[m.Index + 1] == 'x' && input[m.Index + 2] == 'p') { return m.Value; } if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } /* * (exp) func * func func */ private static string CheckParenthesisExprThenFunc(string input) { var p = @"(\))\s*([a-zA-Z]+[0-9]*\s*\()"; var r = "$1 * $2"; return Regex.Replace(input, p, r); } /* * (exp) (exp) * func (exp) */ private static string CheckParenthesisExprThenParenthesisExpr(string input) { var p = @"(\))\s*(\()"; var r = "$1 * $2"; return Regex.Replace(input, p, r); } /* * num const */ private static string CheckNumberThenConstant(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(\d+)\s*(pi|e)", m => { if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } /* * const const */ private static string CheckConstantThenConstant(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(pi|e)\s*(pi|e)", m => { if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } } }
viggyd
302abf708288ae50c985a4b4d8122d6925eb5935
114f1b45e27ab55c3cf6a2b1d89e6b0c7d8fe7dd
No particular reason, I was just following a similar format to other functions that are already in the file. I updated the code to remove the single use variable in my latest push
viggyd
395
microsoft/PowerToys
28,884
[Run] Fix Scientific Notation Errors in Calculator Plugin
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request This PR allows the Calculator plugin in PowerToys Run to use scientific notation (e.g. `5e3 = 5000`). The PR fixes a regression in PowerToys that was introduced in v0.69.1. <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [X] **Closes:** #25656 - [ ] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected - [X] **Tests:** Added/updated and all pass - [ ] **Localization:** All end user facing strings can be localized - [ ] **Dev docs:** Added/updated - [ ] **New binaries:** Added on the required places - [ ] [JSON for signing](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ESRPSigning_core.json) for new binaries - [ ] [WXS for installer](https://github.com/microsoft/PowerToys/blob/main/installer/PowerToysSetup/Product.wxs) for new binaries and localization folder - [ ] [YML for CI pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ci/templates/build-powertoys-steps.yml) for new test projects - [ ] [YML for signed pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/release.yml) - [ ] **Documentation updated:** If checked, please file a pull request on [our docs repo](https://github.com/MicrosoftDocs/windows-uwp/tree/docs/hub/powertoys) and link it here: #xxx <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments Nothing else fixed. <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed I updated the Calculator unit tests to include various expressions using this notation and confirmed that they all pass.
null
2023-09-28 21:24:13+00:00
2024-01-03 11:22:10+00:00
src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.Calculator/CalculateHelper.cs
// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using System.Text.RegularExpressions; namespace Microsoft.PowerToys.Run.Plugin.Calculator { public static class CalculateHelper { private static readonly Regex RegValidExpressChar = new Regex( @"^(" + @"%|" + @"ceil\s*\(|floor\s*\(|exp\s*\(|max\s*\(|min\s*\(|abs\s*\(|log(?:2|10)?\s*\(|ln\s*\(|sqrt\s*\(|pow\s*\(|" + @"factorial\s*\(|sign\s*\(|round\s*\(|rand\s*\(|" + @"sin\s*\(|cos\s*\(|tan\s*\(|arcsin\s*\(|arccos\s*\(|arctan\s*\(|" + @"sinh\s*\(|cosh\s*\(|tanh\s*\(|arsinh\s*\(|arcosh\s*\(|artanh\s*\(|" + @"pi|" + @"==|~=|&&|\|\||" + @"e|[0-9]|0x[0-9a-fA-F]+|0b[01]+|[\+\-\*\/\^\., ""]|[\(\)\|\!\[\]]" + @")+$", RegexOptions.Compiled); public static bool InputValid(string input) { if (string.IsNullOrWhiteSpace(input)) { throw new ArgumentNullException(paramName: nameof(input)); } if (!RegValidExpressChar.IsMatch(input)) { return false; } if (!BracketHelper.IsBracketComplete(input)) { return false; } // If the input ends with a binary operator then it is not a valid input to mages and the Interpret function would throw an exception. Because we expect here that the user has not finished typing we block those inputs. string trimmedInput = input.TrimEnd(); if (trimmedInput.EndsWith('+') || trimmedInput.EndsWith('-') || trimmedInput.EndsWith('*') || trimmedInput.EndsWith('|') || trimmedInput.EndsWith('\\') || trimmedInput.EndsWith('^') || trimmedInput.EndsWith('=') || trimmedInput.EndsWith('&') || trimmedInput.EndsWith('/') || trimmedInput.EndsWith('%')) { return false; } return true; } public static string FixHumanMultiplicationExpressions(string input) { var output = CheckNumberOrConstantThenParenthesisExpr(input); output = CheckNumberOrConstantThenFunc(output); output = CheckParenthesisExprThenFunc(output); output = CheckParenthesisExprThenParenthesisExpr(output); output = CheckNumberThenConstant(output); output = CheckConstantThenConstant(output); return output; } /* * num (exp) * const (exp) */ private static string CheckNumberOrConstantThenParenthesisExpr(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(\d+|pi|e)\s*(\()", m => { if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } /* * num func * const func */ private static string CheckNumberOrConstantThenFunc(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(\d+|pi|e)\s*([a-zA-Z]+[0-9]*\s*\()", m => { if (input[m.Index] == 'e' && input[m.Index + 1] == 'x' && input[m.Index + 2] == 'p') { return m.Value; } if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } /* * (exp) func * func func */ private static string CheckParenthesisExprThenFunc(string input) { var p = @"(\))\s*([a-zA-Z]+[0-9]*\s*\()"; var r = "$1 * $2"; return Regex.Replace(input, p, r); } /* * (exp) (exp) * func (exp) */ private static string CheckParenthesisExprThenParenthesisExpr(string input) { var p = @"(\))\s*(\()"; var r = "$1 * $2"; return Regex.Replace(input, p, r); } /* * num const */ private static string CheckNumberThenConstant(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(\d+)\s*(pi|e)", m => { if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } /* * const const */ private static string CheckConstantThenConstant(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(pi|e)\s*(pi|e)", m => { if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } } }
// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using System.Collections.Generic; using System.Globalization; using System.Text.RegularExpressions; namespace Microsoft.PowerToys.Run.Plugin.Calculator { public static class CalculateHelper { private static readonly Regex RegValidExpressChar = new Regex( @"^(" + @"%|" + @"ceil\s*\(|floor\s*\(|exp\s*\(|max\s*\(|min\s*\(|abs\s*\(|log(?:2|10)?\s*\(|ln\s*\(|sqrt\s*\(|pow\s*\(|" + @"factorial\s*\(|sign\s*\(|round\s*\(|rand\s*\(|" + @"sin\s*\(|cos\s*\(|tan\s*\(|arcsin\s*\(|arccos\s*\(|arctan\s*\(|" + @"sinh\s*\(|cosh\s*\(|tanh\s*\(|arsinh\s*\(|arcosh\s*\(|artanh\s*\(|" + @"pi|" + @"==|~=|&&|\|\||" + @"((-?(\d+(\.\d*)?)|-?(\.\d+))[E](-?\d+))|" + /* expression from CheckScientificNotation between parenthesis */ @"e|[0-9]|0x[0-9a-fA-F]+|0b[01]+|[\+\-\*\/\^\., ""]|[\(\)\|\!\[\]]" + @")+$", RegexOptions.Compiled); public static bool InputValid(string input) { if (string.IsNullOrWhiteSpace(input)) { throw new ArgumentNullException(paramName: nameof(input)); } if (!RegValidExpressChar.IsMatch(input)) { return false; } if (!BracketHelper.IsBracketComplete(input)) { return false; } // If the input ends with a binary operator then it is not a valid input to mages and the Interpret function would throw an exception. Because we expect here that the user has not finished typing we block those inputs. string trimmedInput = input.TrimEnd(); if (trimmedInput.EndsWith('+') || trimmedInput.EndsWith('-') || trimmedInput.EndsWith('*') || trimmedInput.EndsWith('|') || trimmedInput.EndsWith('\\') || trimmedInput.EndsWith('^') || trimmedInput.EndsWith('=') || trimmedInput.EndsWith('&') || trimmedInput.EndsWith('/') || trimmedInput.EndsWith('%')) { return false; } return true; } public static string FixHumanMultiplicationExpressions(string input) { var output = CheckScientificNotation(input); output = CheckNumberOrConstantThenParenthesisExpr(output); output = CheckNumberOrConstantThenFunc(output); output = CheckParenthesisExprThenFunc(output); output = CheckParenthesisExprThenParenthesisExpr(output); output = CheckNumberThenConstant(output); output = CheckConstantThenConstant(output); return output; } private static string CheckScientificNotation(string input) { /** * NOTE: By the time the expression gets to us, it's already in English format. * * Regex explanation: * (-?(\d+({0}\d*)?)|-?({0}\d+)): Used to capture one of two types: * -?(\d+({0}\d*)?): Captures a decimal number starting with a number (e.g. "-1.23") * -?({0}\d+): Captures a decimal number without leading number (e.g. ".23") * E: Captures capital 'E' * (-?\d+): Captures an integer number (e.g. "-1" or "23") */ var p = @"(-?(\d+(\.\d*)?)|-?(\.\d+))E(-?\d+)"; return Regex.Replace(input, p, "($1 * 10^($5))"); } /* * num (exp) * const (exp) */ private static string CheckNumberOrConstantThenParenthesisExpr(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(\d+|pi|e)\s*(\()", m => { if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } /* * num func * const func */ private static string CheckNumberOrConstantThenFunc(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(\d+|pi|e)\s*([a-zA-Z]+[0-9]*\s*\()", m => { if (input[m.Index] == 'e' && input[m.Index + 1] == 'x' && input[m.Index + 2] == 'p') { return m.Value; } if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } /* * (exp) func * func func */ private static string CheckParenthesisExprThenFunc(string input) { var p = @"(\))\s*([a-zA-Z]+[0-9]*\s*\()"; var r = "$1 * $2"; return Regex.Replace(input, p, r); } /* * (exp) (exp) * func (exp) */ private static string CheckParenthesisExprThenParenthesisExpr(string input) { var p = @"(\))\s*(\()"; var r = "$1 * $2"; return Regex.Replace(input, p, r); } /* * num const */ private static string CheckNumberThenConstant(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(\d+)\s*(pi|e)", m => { if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } /* * const const */ private static string CheckConstantThenConstant(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(pi|e)\s*(pi|e)", m => { if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } } }
viggyd
302abf708288ae50c985a4b4d8122d6925eb5935
114f1b45e27ab55c3cf6a2b1d89e6b0c7d8fe7dd
I thought a ternary would take too much horizontal space because the `CultureInfo.CurrentCulture...` is a lot of characters so I left it at the expanded if/else instead
viggyd
396
microsoft/PowerToys
28,884
[Run] Fix Scientific Notation Errors in Calculator Plugin
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request This PR allows the Calculator plugin in PowerToys Run to use scientific notation (e.g. `5e3 = 5000`). The PR fixes a regression in PowerToys that was introduced in v0.69.1. <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [X] **Closes:** #25656 - [ ] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected - [X] **Tests:** Added/updated and all pass - [ ] **Localization:** All end user facing strings can be localized - [ ] **Dev docs:** Added/updated - [ ] **New binaries:** Added on the required places - [ ] [JSON for signing](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ESRPSigning_core.json) for new binaries - [ ] [WXS for installer](https://github.com/microsoft/PowerToys/blob/main/installer/PowerToysSetup/Product.wxs) for new binaries and localization folder - [ ] [YML for CI pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ci/templates/build-powertoys-steps.yml) for new test projects - [ ] [YML for signed pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/release.yml) - [ ] **Documentation updated:** If checked, please file a pull request on [our docs repo](https://github.com/MicrosoftDocs/windows-uwp/tree/docs/hub/powertoys) and link it here: #xxx <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments Nothing else fixed. <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed I updated the Calculator unit tests to include various expressions using this notation and confirmed that they all pass.
null
2023-09-28 21:24:13+00:00
2024-01-03 11:22:10+00:00
src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.Calculator/CalculateHelper.cs
// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using System.Text.RegularExpressions; namespace Microsoft.PowerToys.Run.Plugin.Calculator { public static class CalculateHelper { private static readonly Regex RegValidExpressChar = new Regex( @"^(" + @"%|" + @"ceil\s*\(|floor\s*\(|exp\s*\(|max\s*\(|min\s*\(|abs\s*\(|log(?:2|10)?\s*\(|ln\s*\(|sqrt\s*\(|pow\s*\(|" + @"factorial\s*\(|sign\s*\(|round\s*\(|rand\s*\(|" + @"sin\s*\(|cos\s*\(|tan\s*\(|arcsin\s*\(|arccos\s*\(|arctan\s*\(|" + @"sinh\s*\(|cosh\s*\(|tanh\s*\(|arsinh\s*\(|arcosh\s*\(|artanh\s*\(|" + @"pi|" + @"==|~=|&&|\|\||" + @"e|[0-9]|0x[0-9a-fA-F]+|0b[01]+|[\+\-\*\/\^\., ""]|[\(\)\|\!\[\]]" + @")+$", RegexOptions.Compiled); public static bool InputValid(string input) { if (string.IsNullOrWhiteSpace(input)) { throw new ArgumentNullException(paramName: nameof(input)); } if (!RegValidExpressChar.IsMatch(input)) { return false; } if (!BracketHelper.IsBracketComplete(input)) { return false; } // If the input ends with a binary operator then it is not a valid input to mages and the Interpret function would throw an exception. Because we expect here that the user has not finished typing we block those inputs. string trimmedInput = input.TrimEnd(); if (trimmedInput.EndsWith('+') || trimmedInput.EndsWith('-') || trimmedInput.EndsWith('*') || trimmedInput.EndsWith('|') || trimmedInput.EndsWith('\\') || trimmedInput.EndsWith('^') || trimmedInput.EndsWith('=') || trimmedInput.EndsWith('&') || trimmedInput.EndsWith('/') || trimmedInput.EndsWith('%')) { return false; } return true; } public static string FixHumanMultiplicationExpressions(string input) { var output = CheckNumberOrConstantThenParenthesisExpr(input); output = CheckNumberOrConstantThenFunc(output); output = CheckParenthesisExprThenFunc(output); output = CheckParenthesisExprThenParenthesisExpr(output); output = CheckNumberThenConstant(output); output = CheckConstantThenConstant(output); return output; } /* * num (exp) * const (exp) */ private static string CheckNumberOrConstantThenParenthesisExpr(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(\d+|pi|e)\s*(\()", m => { if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } /* * num func * const func */ private static string CheckNumberOrConstantThenFunc(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(\d+|pi|e)\s*([a-zA-Z]+[0-9]*\s*\()", m => { if (input[m.Index] == 'e' && input[m.Index + 1] == 'x' && input[m.Index + 2] == 'p') { return m.Value; } if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } /* * (exp) func * func func */ private static string CheckParenthesisExprThenFunc(string input) { var p = @"(\))\s*([a-zA-Z]+[0-9]*\s*\()"; var r = "$1 * $2"; return Regex.Replace(input, p, r); } /* * (exp) (exp) * func (exp) */ private static string CheckParenthesisExprThenParenthesisExpr(string input) { var p = @"(\))\s*(\()"; var r = "$1 * $2"; return Regex.Replace(input, p, r); } /* * num const */ private static string CheckNumberThenConstant(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(\d+)\s*(pi|e)", m => { if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } /* * const const */ private static string CheckConstantThenConstant(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(pi|e)\s*(pi|e)", m => { if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } } }
// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using System.Collections.Generic; using System.Globalization; using System.Text.RegularExpressions; namespace Microsoft.PowerToys.Run.Plugin.Calculator { public static class CalculateHelper { private static readonly Regex RegValidExpressChar = new Regex( @"^(" + @"%|" + @"ceil\s*\(|floor\s*\(|exp\s*\(|max\s*\(|min\s*\(|abs\s*\(|log(?:2|10)?\s*\(|ln\s*\(|sqrt\s*\(|pow\s*\(|" + @"factorial\s*\(|sign\s*\(|round\s*\(|rand\s*\(|" + @"sin\s*\(|cos\s*\(|tan\s*\(|arcsin\s*\(|arccos\s*\(|arctan\s*\(|" + @"sinh\s*\(|cosh\s*\(|tanh\s*\(|arsinh\s*\(|arcosh\s*\(|artanh\s*\(|" + @"pi|" + @"==|~=|&&|\|\||" + @"((-?(\d+(\.\d*)?)|-?(\.\d+))[E](-?\d+))|" + /* expression from CheckScientificNotation between parenthesis */ @"e|[0-9]|0x[0-9a-fA-F]+|0b[01]+|[\+\-\*\/\^\., ""]|[\(\)\|\!\[\]]" + @")+$", RegexOptions.Compiled); public static bool InputValid(string input) { if (string.IsNullOrWhiteSpace(input)) { throw new ArgumentNullException(paramName: nameof(input)); } if (!RegValidExpressChar.IsMatch(input)) { return false; } if (!BracketHelper.IsBracketComplete(input)) { return false; } // If the input ends with a binary operator then it is not a valid input to mages and the Interpret function would throw an exception. Because we expect here that the user has not finished typing we block those inputs. string trimmedInput = input.TrimEnd(); if (trimmedInput.EndsWith('+') || trimmedInput.EndsWith('-') || trimmedInput.EndsWith('*') || trimmedInput.EndsWith('|') || trimmedInput.EndsWith('\\') || trimmedInput.EndsWith('^') || trimmedInput.EndsWith('=') || trimmedInput.EndsWith('&') || trimmedInput.EndsWith('/') || trimmedInput.EndsWith('%')) { return false; } return true; } public static string FixHumanMultiplicationExpressions(string input) { var output = CheckScientificNotation(input); output = CheckNumberOrConstantThenParenthesisExpr(output); output = CheckNumberOrConstantThenFunc(output); output = CheckParenthesisExprThenFunc(output); output = CheckParenthesisExprThenParenthesisExpr(output); output = CheckNumberThenConstant(output); output = CheckConstantThenConstant(output); return output; } private static string CheckScientificNotation(string input) { /** * NOTE: By the time the expression gets to us, it's already in English format. * * Regex explanation: * (-?(\d+({0}\d*)?)|-?({0}\d+)): Used to capture one of two types: * -?(\d+({0}\d*)?): Captures a decimal number starting with a number (e.g. "-1.23") * -?({0}\d+): Captures a decimal number without leading number (e.g. ".23") * E: Captures capital 'E' * (-?\d+): Captures an integer number (e.g. "-1" or "23") */ var p = @"(-?(\d+(\.\d*)?)|-?(\.\d+))E(-?\d+)"; return Regex.Replace(input, p, "($1 * 10^($5))"); } /* * num (exp) * const (exp) */ private static string CheckNumberOrConstantThenParenthesisExpr(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(\d+|pi|e)\s*(\()", m => { if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } /* * num func * const func */ private static string CheckNumberOrConstantThenFunc(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(\d+|pi|e)\s*([a-zA-Z]+[0-9]*\s*\()", m => { if (input[m.Index] == 'e' && input[m.Index + 1] == 'x' && input[m.Index + 2] == 'p') { return m.Value; } if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } /* * (exp) func * func func */ private static string CheckParenthesisExprThenFunc(string input) { var p = @"(\))\s*([a-zA-Z]+[0-9]*\s*\()"; var r = "$1 * $2"; return Regex.Replace(input, p, r); } /* * (exp) (exp) * func (exp) */ private static string CheckParenthesisExprThenParenthesisExpr(string input) { var p = @"(\))\s*(\()"; var r = "$1 * $2"; return Regex.Replace(input, p, r); } /* * num const */ private static string CheckNumberThenConstant(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(\d+)\s*(pi|e)", m => { if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } /* * const const */ private static string CheckConstantThenConstant(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(pi|e)\s*(pi|e)", m => { if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } } }
viggyd
302abf708288ae50c985a4b4d8122d6925eb5935
114f1b45e27ab55c3cf6a2b1d89e6b0c7d8fe7dd
Yeah, I went back and forth on this one and initially decided to allow users to do something like `1E1.2` if they really really wanted to do `1 * 10^(1.2)`, but it's definitely not the intended usage of the notation. I removed it so that it only allows integers after the `E` in my latest push
viggyd
397
microsoft/PowerToys
28,884
[Run] Fix Scientific Notation Errors in Calculator Plugin
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request This PR allows the Calculator plugin in PowerToys Run to use scientific notation (e.g. `5e3 = 5000`). The PR fixes a regression in PowerToys that was introduced in v0.69.1. <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [X] **Closes:** #25656 - [ ] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected - [X] **Tests:** Added/updated and all pass - [ ] **Localization:** All end user facing strings can be localized - [ ] **Dev docs:** Added/updated - [ ] **New binaries:** Added on the required places - [ ] [JSON for signing](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ESRPSigning_core.json) for new binaries - [ ] [WXS for installer](https://github.com/microsoft/PowerToys/blob/main/installer/PowerToysSetup/Product.wxs) for new binaries and localization folder - [ ] [YML for CI pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ci/templates/build-powertoys-steps.yml) for new test projects - [ ] [YML for signed pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/release.yml) - [ ] **Documentation updated:** If checked, please file a pull request on [our docs repo](https://github.com/MicrosoftDocs/windows-uwp/tree/docs/hub/powertoys) and link it here: #xxx <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments Nothing else fixed. <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed I updated the Calculator unit tests to include various expressions using this notation and confirmed that they all pass.
null
2023-09-28 21:24:13+00:00
2024-01-03 11:22:10+00:00
src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.Calculator/CalculateHelper.cs
// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using System.Text.RegularExpressions; namespace Microsoft.PowerToys.Run.Plugin.Calculator { public static class CalculateHelper { private static readonly Regex RegValidExpressChar = new Regex( @"^(" + @"%|" + @"ceil\s*\(|floor\s*\(|exp\s*\(|max\s*\(|min\s*\(|abs\s*\(|log(?:2|10)?\s*\(|ln\s*\(|sqrt\s*\(|pow\s*\(|" + @"factorial\s*\(|sign\s*\(|round\s*\(|rand\s*\(|" + @"sin\s*\(|cos\s*\(|tan\s*\(|arcsin\s*\(|arccos\s*\(|arctan\s*\(|" + @"sinh\s*\(|cosh\s*\(|tanh\s*\(|arsinh\s*\(|arcosh\s*\(|artanh\s*\(|" + @"pi|" + @"==|~=|&&|\|\||" + @"e|[0-9]|0x[0-9a-fA-F]+|0b[01]+|[\+\-\*\/\^\., ""]|[\(\)\|\!\[\]]" + @")+$", RegexOptions.Compiled); public static bool InputValid(string input) { if (string.IsNullOrWhiteSpace(input)) { throw new ArgumentNullException(paramName: nameof(input)); } if (!RegValidExpressChar.IsMatch(input)) { return false; } if (!BracketHelper.IsBracketComplete(input)) { return false; } // If the input ends with a binary operator then it is not a valid input to mages and the Interpret function would throw an exception. Because we expect here that the user has not finished typing we block those inputs. string trimmedInput = input.TrimEnd(); if (trimmedInput.EndsWith('+') || trimmedInput.EndsWith('-') || trimmedInput.EndsWith('*') || trimmedInput.EndsWith('|') || trimmedInput.EndsWith('\\') || trimmedInput.EndsWith('^') || trimmedInput.EndsWith('=') || trimmedInput.EndsWith('&') || trimmedInput.EndsWith('/') || trimmedInput.EndsWith('%')) { return false; } return true; } public static string FixHumanMultiplicationExpressions(string input) { var output = CheckNumberOrConstantThenParenthesisExpr(input); output = CheckNumberOrConstantThenFunc(output); output = CheckParenthesisExprThenFunc(output); output = CheckParenthesisExprThenParenthesisExpr(output); output = CheckNumberThenConstant(output); output = CheckConstantThenConstant(output); return output; } /* * num (exp) * const (exp) */ private static string CheckNumberOrConstantThenParenthesisExpr(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(\d+|pi|e)\s*(\()", m => { if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } /* * num func * const func */ private static string CheckNumberOrConstantThenFunc(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(\d+|pi|e)\s*([a-zA-Z]+[0-9]*\s*\()", m => { if (input[m.Index] == 'e' && input[m.Index + 1] == 'x' && input[m.Index + 2] == 'p') { return m.Value; } if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } /* * (exp) func * func func */ private static string CheckParenthesisExprThenFunc(string input) { var p = @"(\))\s*([a-zA-Z]+[0-9]*\s*\()"; var r = "$1 * $2"; return Regex.Replace(input, p, r); } /* * (exp) (exp) * func (exp) */ private static string CheckParenthesisExprThenParenthesisExpr(string input) { var p = @"(\))\s*(\()"; var r = "$1 * $2"; return Regex.Replace(input, p, r); } /* * num const */ private static string CheckNumberThenConstant(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(\d+)\s*(pi|e)", m => { if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } /* * const const */ private static string CheckConstantThenConstant(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(pi|e)\s*(pi|e)", m => { if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } } }
// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using System.Collections.Generic; using System.Globalization; using System.Text.RegularExpressions; namespace Microsoft.PowerToys.Run.Plugin.Calculator { public static class CalculateHelper { private static readonly Regex RegValidExpressChar = new Regex( @"^(" + @"%|" + @"ceil\s*\(|floor\s*\(|exp\s*\(|max\s*\(|min\s*\(|abs\s*\(|log(?:2|10)?\s*\(|ln\s*\(|sqrt\s*\(|pow\s*\(|" + @"factorial\s*\(|sign\s*\(|round\s*\(|rand\s*\(|" + @"sin\s*\(|cos\s*\(|tan\s*\(|arcsin\s*\(|arccos\s*\(|arctan\s*\(|" + @"sinh\s*\(|cosh\s*\(|tanh\s*\(|arsinh\s*\(|arcosh\s*\(|artanh\s*\(|" + @"pi|" + @"==|~=|&&|\|\||" + @"((-?(\d+(\.\d*)?)|-?(\.\d+))[E](-?\d+))|" + /* expression from CheckScientificNotation between parenthesis */ @"e|[0-9]|0x[0-9a-fA-F]+|0b[01]+|[\+\-\*\/\^\., ""]|[\(\)\|\!\[\]]" + @")+$", RegexOptions.Compiled); public static bool InputValid(string input) { if (string.IsNullOrWhiteSpace(input)) { throw new ArgumentNullException(paramName: nameof(input)); } if (!RegValidExpressChar.IsMatch(input)) { return false; } if (!BracketHelper.IsBracketComplete(input)) { return false; } // If the input ends with a binary operator then it is not a valid input to mages and the Interpret function would throw an exception. Because we expect here that the user has not finished typing we block those inputs. string trimmedInput = input.TrimEnd(); if (trimmedInput.EndsWith('+') || trimmedInput.EndsWith('-') || trimmedInput.EndsWith('*') || trimmedInput.EndsWith('|') || trimmedInput.EndsWith('\\') || trimmedInput.EndsWith('^') || trimmedInput.EndsWith('=') || trimmedInput.EndsWith('&') || trimmedInput.EndsWith('/') || trimmedInput.EndsWith('%')) { return false; } return true; } public static string FixHumanMultiplicationExpressions(string input) { var output = CheckScientificNotation(input); output = CheckNumberOrConstantThenParenthesisExpr(output); output = CheckNumberOrConstantThenFunc(output); output = CheckParenthesisExprThenFunc(output); output = CheckParenthesisExprThenParenthesisExpr(output); output = CheckNumberThenConstant(output); output = CheckConstantThenConstant(output); return output; } private static string CheckScientificNotation(string input) { /** * NOTE: By the time the expression gets to us, it's already in English format. * * Regex explanation: * (-?(\d+({0}\d*)?)|-?({0}\d+)): Used to capture one of two types: * -?(\d+({0}\d*)?): Captures a decimal number starting with a number (e.g. "-1.23") * -?({0}\d+): Captures a decimal number without leading number (e.g. ".23") * E: Captures capital 'E' * (-?\d+): Captures an integer number (e.g. "-1" or "23") */ var p = @"(-?(\d+(\.\d*)?)|-?(\.\d+))E(-?\d+)"; return Regex.Replace(input, p, "($1 * 10^($5))"); } /* * num (exp) * const (exp) */ private static string CheckNumberOrConstantThenParenthesisExpr(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(\d+|pi|e)\s*(\()", m => { if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } /* * num func * const func */ private static string CheckNumberOrConstantThenFunc(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(\d+|pi|e)\s*([a-zA-Z]+[0-9]*\s*\()", m => { if (input[m.Index] == 'e' && input[m.Index + 1] == 'x' && input[m.Index + 2] == 'p') { return m.Value; } if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } /* * (exp) func * func func */ private static string CheckParenthesisExprThenFunc(string input) { var p = @"(\))\s*([a-zA-Z]+[0-9]*\s*\()"; var r = "$1 * $2"; return Regex.Replace(input, p, r); } /* * (exp) (exp) * func (exp) */ private static string CheckParenthesisExprThenParenthesisExpr(string input) { var p = @"(\))\s*(\()"; var r = "$1 * $2"; return Regex.Replace(input, p, r); } /* * num const */ private static string CheckNumberThenConstant(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(\d+)\s*(pi|e)", m => { if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } /* * const const */ private static string CheckConstantThenConstant(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(pi|e)\s*(pi|e)", m => { if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } } }
viggyd
302abf708288ae50c985a4b4d8122d6925eb5935
114f1b45e27ab55c3cf6a2b1d89e6b0c7d8fe7dd
should it be updated here as well? only integer after E
stefansjfw
398
microsoft/PowerToys
28,884
[Run] Fix Scientific Notation Errors in Calculator Plugin
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request This PR allows the Calculator plugin in PowerToys Run to use scientific notation (e.g. `5e3 = 5000`). The PR fixes a regression in PowerToys that was introduced in v0.69.1. <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [X] **Closes:** #25656 - [ ] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected - [X] **Tests:** Added/updated and all pass - [ ] **Localization:** All end user facing strings can be localized - [ ] **Dev docs:** Added/updated - [ ] **New binaries:** Added on the required places - [ ] [JSON for signing](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ESRPSigning_core.json) for new binaries - [ ] [WXS for installer](https://github.com/microsoft/PowerToys/blob/main/installer/PowerToysSetup/Product.wxs) for new binaries and localization folder - [ ] [YML for CI pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ci/templates/build-powertoys-steps.yml) for new test projects - [ ] [YML for signed pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/release.yml) - [ ] **Documentation updated:** If checked, please file a pull request on [our docs repo](https://github.com/MicrosoftDocs/windows-uwp/tree/docs/hub/powertoys) and link it here: #xxx <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments Nothing else fixed. <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed I updated the Calculator unit tests to include various expressions using this notation and confirmed that they all pass.
null
2023-09-28 21:24:13+00:00
2024-01-03 11:22:10+00:00
src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.Calculator/CalculateHelper.cs
// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using System.Text.RegularExpressions; namespace Microsoft.PowerToys.Run.Plugin.Calculator { public static class CalculateHelper { private static readonly Regex RegValidExpressChar = new Regex( @"^(" + @"%|" + @"ceil\s*\(|floor\s*\(|exp\s*\(|max\s*\(|min\s*\(|abs\s*\(|log(?:2|10)?\s*\(|ln\s*\(|sqrt\s*\(|pow\s*\(|" + @"factorial\s*\(|sign\s*\(|round\s*\(|rand\s*\(|" + @"sin\s*\(|cos\s*\(|tan\s*\(|arcsin\s*\(|arccos\s*\(|arctan\s*\(|" + @"sinh\s*\(|cosh\s*\(|tanh\s*\(|arsinh\s*\(|arcosh\s*\(|artanh\s*\(|" + @"pi|" + @"==|~=|&&|\|\||" + @"e|[0-9]|0x[0-9a-fA-F]+|0b[01]+|[\+\-\*\/\^\., ""]|[\(\)\|\!\[\]]" + @")+$", RegexOptions.Compiled); public static bool InputValid(string input) { if (string.IsNullOrWhiteSpace(input)) { throw new ArgumentNullException(paramName: nameof(input)); } if (!RegValidExpressChar.IsMatch(input)) { return false; } if (!BracketHelper.IsBracketComplete(input)) { return false; } // If the input ends with a binary operator then it is not a valid input to mages and the Interpret function would throw an exception. Because we expect here that the user has not finished typing we block those inputs. string trimmedInput = input.TrimEnd(); if (trimmedInput.EndsWith('+') || trimmedInput.EndsWith('-') || trimmedInput.EndsWith('*') || trimmedInput.EndsWith('|') || trimmedInput.EndsWith('\\') || trimmedInput.EndsWith('^') || trimmedInput.EndsWith('=') || trimmedInput.EndsWith('&') || trimmedInput.EndsWith('/') || trimmedInput.EndsWith('%')) { return false; } return true; } public static string FixHumanMultiplicationExpressions(string input) { var output = CheckNumberOrConstantThenParenthesisExpr(input); output = CheckNumberOrConstantThenFunc(output); output = CheckParenthesisExprThenFunc(output); output = CheckParenthesisExprThenParenthesisExpr(output); output = CheckNumberThenConstant(output); output = CheckConstantThenConstant(output); return output; } /* * num (exp) * const (exp) */ private static string CheckNumberOrConstantThenParenthesisExpr(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(\d+|pi|e)\s*(\()", m => { if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } /* * num func * const func */ private static string CheckNumberOrConstantThenFunc(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(\d+|pi|e)\s*([a-zA-Z]+[0-9]*\s*\()", m => { if (input[m.Index] == 'e' && input[m.Index + 1] == 'x' && input[m.Index + 2] == 'p') { return m.Value; } if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } /* * (exp) func * func func */ private static string CheckParenthesisExprThenFunc(string input) { var p = @"(\))\s*([a-zA-Z]+[0-9]*\s*\()"; var r = "$1 * $2"; return Regex.Replace(input, p, r); } /* * (exp) (exp) * func (exp) */ private static string CheckParenthesisExprThenParenthesisExpr(string input) { var p = @"(\))\s*(\()"; var r = "$1 * $2"; return Regex.Replace(input, p, r); } /* * num const */ private static string CheckNumberThenConstant(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(\d+)\s*(pi|e)", m => { if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } /* * const const */ private static string CheckConstantThenConstant(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(pi|e)\s*(pi|e)", m => { if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } } }
// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using System.Collections.Generic; using System.Globalization; using System.Text.RegularExpressions; namespace Microsoft.PowerToys.Run.Plugin.Calculator { public static class CalculateHelper { private static readonly Regex RegValidExpressChar = new Regex( @"^(" + @"%|" + @"ceil\s*\(|floor\s*\(|exp\s*\(|max\s*\(|min\s*\(|abs\s*\(|log(?:2|10)?\s*\(|ln\s*\(|sqrt\s*\(|pow\s*\(|" + @"factorial\s*\(|sign\s*\(|round\s*\(|rand\s*\(|" + @"sin\s*\(|cos\s*\(|tan\s*\(|arcsin\s*\(|arccos\s*\(|arctan\s*\(|" + @"sinh\s*\(|cosh\s*\(|tanh\s*\(|arsinh\s*\(|arcosh\s*\(|artanh\s*\(|" + @"pi|" + @"==|~=|&&|\|\||" + @"((-?(\d+(\.\d*)?)|-?(\.\d+))[E](-?\d+))|" + /* expression from CheckScientificNotation between parenthesis */ @"e|[0-9]|0x[0-9a-fA-F]+|0b[01]+|[\+\-\*\/\^\., ""]|[\(\)\|\!\[\]]" + @")+$", RegexOptions.Compiled); public static bool InputValid(string input) { if (string.IsNullOrWhiteSpace(input)) { throw new ArgumentNullException(paramName: nameof(input)); } if (!RegValidExpressChar.IsMatch(input)) { return false; } if (!BracketHelper.IsBracketComplete(input)) { return false; } // If the input ends with a binary operator then it is not a valid input to mages and the Interpret function would throw an exception. Because we expect here that the user has not finished typing we block those inputs. string trimmedInput = input.TrimEnd(); if (trimmedInput.EndsWith('+') || trimmedInput.EndsWith('-') || trimmedInput.EndsWith('*') || trimmedInput.EndsWith('|') || trimmedInput.EndsWith('\\') || trimmedInput.EndsWith('^') || trimmedInput.EndsWith('=') || trimmedInput.EndsWith('&') || trimmedInput.EndsWith('/') || trimmedInput.EndsWith('%')) { return false; } return true; } public static string FixHumanMultiplicationExpressions(string input) { var output = CheckScientificNotation(input); output = CheckNumberOrConstantThenParenthesisExpr(output); output = CheckNumberOrConstantThenFunc(output); output = CheckParenthesisExprThenFunc(output); output = CheckParenthesisExprThenParenthesisExpr(output); output = CheckNumberThenConstant(output); output = CheckConstantThenConstant(output); return output; } private static string CheckScientificNotation(string input) { /** * NOTE: By the time the expression gets to us, it's already in English format. * * Regex explanation: * (-?(\d+({0}\d*)?)|-?({0}\d+)): Used to capture one of two types: * -?(\d+({0}\d*)?): Captures a decimal number starting with a number (e.g. "-1.23") * -?({0}\d+): Captures a decimal number without leading number (e.g. ".23") * E: Captures capital 'E' * (-?\d+): Captures an integer number (e.g. "-1" or "23") */ var p = @"(-?(\d+(\.\d*)?)|-?(\.\d+))E(-?\d+)"; return Regex.Replace(input, p, "($1 * 10^($5))"); } /* * num (exp) * const (exp) */ private static string CheckNumberOrConstantThenParenthesisExpr(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(\d+|pi|e)\s*(\()", m => { if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } /* * num func * const func */ private static string CheckNumberOrConstantThenFunc(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(\d+|pi|e)\s*([a-zA-Z]+[0-9]*\s*\()", m => { if (input[m.Index] == 'e' && input[m.Index + 1] == 'x' && input[m.Index + 2] == 'p') { return m.Value; } if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } /* * (exp) func * func func */ private static string CheckParenthesisExprThenFunc(string input) { var p = @"(\))\s*([a-zA-Z]+[0-9]*\s*\()"; var r = "$1 * $2"; return Regex.Replace(input, p, r); } /* * (exp) (exp) * func (exp) */ private static string CheckParenthesisExprThenParenthesisExpr(string input) { var p = @"(\))\s*(\()"; var r = "$1 * $2"; return Regex.Replace(input, p, r); } /* * num const */ private static string CheckNumberThenConstant(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(\d+)\s*(pi|e)", m => { if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } /* * const const */ private static string CheckConstantThenConstant(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(pi|e)\s*(pi|e)", m => { if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } } }
viggyd
302abf708288ae50c985a4b4d8122d6925eb5935
114f1b45e27ab55c3cf6a2b1d89e6b0c7d8fe7dd
Whoops. Fixed!
viggyd
399
microsoft/PowerToys
28,884
[Run] Fix Scientific Notation Errors in Calculator Plugin
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request This PR allows the Calculator plugin in PowerToys Run to use scientific notation (e.g. `5e3 = 5000`). The PR fixes a regression in PowerToys that was introduced in v0.69.1. <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [X] **Closes:** #25656 - [ ] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected - [X] **Tests:** Added/updated and all pass - [ ] **Localization:** All end user facing strings can be localized - [ ] **Dev docs:** Added/updated - [ ] **New binaries:** Added on the required places - [ ] [JSON for signing](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ESRPSigning_core.json) for new binaries - [ ] [WXS for installer](https://github.com/microsoft/PowerToys/blob/main/installer/PowerToysSetup/Product.wxs) for new binaries and localization folder - [ ] [YML for CI pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ci/templates/build-powertoys-steps.yml) for new test projects - [ ] [YML for signed pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/release.yml) - [ ] **Documentation updated:** If checked, please file a pull request on [our docs repo](https://github.com/MicrosoftDocs/windows-uwp/tree/docs/hub/powertoys) and link it here: #xxx <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments Nothing else fixed. <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed I updated the Calculator unit tests to include various expressions using this notation and confirmed that they all pass.
null
2023-09-28 21:24:13+00:00
2024-01-03 11:22:10+00:00
src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.Calculator/CalculateHelper.cs
// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using System.Text.RegularExpressions; namespace Microsoft.PowerToys.Run.Plugin.Calculator { public static class CalculateHelper { private static readonly Regex RegValidExpressChar = new Regex( @"^(" + @"%|" + @"ceil\s*\(|floor\s*\(|exp\s*\(|max\s*\(|min\s*\(|abs\s*\(|log(?:2|10)?\s*\(|ln\s*\(|sqrt\s*\(|pow\s*\(|" + @"factorial\s*\(|sign\s*\(|round\s*\(|rand\s*\(|" + @"sin\s*\(|cos\s*\(|tan\s*\(|arcsin\s*\(|arccos\s*\(|arctan\s*\(|" + @"sinh\s*\(|cosh\s*\(|tanh\s*\(|arsinh\s*\(|arcosh\s*\(|artanh\s*\(|" + @"pi|" + @"==|~=|&&|\|\||" + @"e|[0-9]|0x[0-9a-fA-F]+|0b[01]+|[\+\-\*\/\^\., ""]|[\(\)\|\!\[\]]" + @")+$", RegexOptions.Compiled); public static bool InputValid(string input) { if (string.IsNullOrWhiteSpace(input)) { throw new ArgumentNullException(paramName: nameof(input)); } if (!RegValidExpressChar.IsMatch(input)) { return false; } if (!BracketHelper.IsBracketComplete(input)) { return false; } // If the input ends with a binary operator then it is not a valid input to mages and the Interpret function would throw an exception. Because we expect here that the user has not finished typing we block those inputs. string trimmedInput = input.TrimEnd(); if (trimmedInput.EndsWith('+') || trimmedInput.EndsWith('-') || trimmedInput.EndsWith('*') || trimmedInput.EndsWith('|') || trimmedInput.EndsWith('\\') || trimmedInput.EndsWith('^') || trimmedInput.EndsWith('=') || trimmedInput.EndsWith('&') || trimmedInput.EndsWith('/') || trimmedInput.EndsWith('%')) { return false; } return true; } public static string FixHumanMultiplicationExpressions(string input) { var output = CheckNumberOrConstantThenParenthesisExpr(input); output = CheckNumberOrConstantThenFunc(output); output = CheckParenthesisExprThenFunc(output); output = CheckParenthesisExprThenParenthesisExpr(output); output = CheckNumberThenConstant(output); output = CheckConstantThenConstant(output); return output; } /* * num (exp) * const (exp) */ private static string CheckNumberOrConstantThenParenthesisExpr(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(\d+|pi|e)\s*(\()", m => { if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } /* * num func * const func */ private static string CheckNumberOrConstantThenFunc(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(\d+|pi|e)\s*([a-zA-Z]+[0-9]*\s*\()", m => { if (input[m.Index] == 'e' && input[m.Index + 1] == 'x' && input[m.Index + 2] == 'p') { return m.Value; } if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } /* * (exp) func * func func */ private static string CheckParenthesisExprThenFunc(string input) { var p = @"(\))\s*([a-zA-Z]+[0-9]*\s*\()"; var r = "$1 * $2"; return Regex.Replace(input, p, r); } /* * (exp) (exp) * func (exp) */ private static string CheckParenthesisExprThenParenthesisExpr(string input) { var p = @"(\))\s*(\()"; var r = "$1 * $2"; return Regex.Replace(input, p, r); } /* * num const */ private static string CheckNumberThenConstant(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(\d+)\s*(pi|e)", m => { if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } /* * const const */ private static string CheckConstantThenConstant(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(pi|e)\s*(pi|e)", m => { if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } } }
// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using System.Collections.Generic; using System.Globalization; using System.Text.RegularExpressions; namespace Microsoft.PowerToys.Run.Plugin.Calculator { public static class CalculateHelper { private static readonly Regex RegValidExpressChar = new Regex( @"^(" + @"%|" + @"ceil\s*\(|floor\s*\(|exp\s*\(|max\s*\(|min\s*\(|abs\s*\(|log(?:2|10)?\s*\(|ln\s*\(|sqrt\s*\(|pow\s*\(|" + @"factorial\s*\(|sign\s*\(|round\s*\(|rand\s*\(|" + @"sin\s*\(|cos\s*\(|tan\s*\(|arcsin\s*\(|arccos\s*\(|arctan\s*\(|" + @"sinh\s*\(|cosh\s*\(|tanh\s*\(|arsinh\s*\(|arcosh\s*\(|artanh\s*\(|" + @"pi|" + @"==|~=|&&|\|\||" + @"((-?(\d+(\.\d*)?)|-?(\.\d+))[E](-?\d+))|" + /* expression from CheckScientificNotation between parenthesis */ @"e|[0-9]|0x[0-9a-fA-F]+|0b[01]+|[\+\-\*\/\^\., ""]|[\(\)\|\!\[\]]" + @")+$", RegexOptions.Compiled); public static bool InputValid(string input) { if (string.IsNullOrWhiteSpace(input)) { throw new ArgumentNullException(paramName: nameof(input)); } if (!RegValidExpressChar.IsMatch(input)) { return false; } if (!BracketHelper.IsBracketComplete(input)) { return false; } // If the input ends with a binary operator then it is not a valid input to mages and the Interpret function would throw an exception. Because we expect here that the user has not finished typing we block those inputs. string trimmedInput = input.TrimEnd(); if (trimmedInput.EndsWith('+') || trimmedInput.EndsWith('-') || trimmedInput.EndsWith('*') || trimmedInput.EndsWith('|') || trimmedInput.EndsWith('\\') || trimmedInput.EndsWith('^') || trimmedInput.EndsWith('=') || trimmedInput.EndsWith('&') || trimmedInput.EndsWith('/') || trimmedInput.EndsWith('%')) { return false; } return true; } public static string FixHumanMultiplicationExpressions(string input) { var output = CheckScientificNotation(input); output = CheckNumberOrConstantThenParenthesisExpr(output); output = CheckNumberOrConstantThenFunc(output); output = CheckParenthesisExprThenFunc(output); output = CheckParenthesisExprThenParenthesisExpr(output); output = CheckNumberThenConstant(output); output = CheckConstantThenConstant(output); return output; } private static string CheckScientificNotation(string input) { /** * NOTE: By the time the expression gets to us, it's already in English format. * * Regex explanation: * (-?(\d+({0}\d*)?)|-?({0}\d+)): Used to capture one of two types: * -?(\d+({0}\d*)?): Captures a decimal number starting with a number (e.g. "-1.23") * -?({0}\d+): Captures a decimal number without leading number (e.g. ".23") * E: Captures capital 'E' * (-?\d+): Captures an integer number (e.g. "-1" or "23") */ var p = @"(-?(\d+(\.\d*)?)|-?(\.\d+))E(-?\d+)"; return Regex.Replace(input, p, "($1 * 10^($5))"); } /* * num (exp) * const (exp) */ private static string CheckNumberOrConstantThenParenthesisExpr(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(\d+|pi|e)\s*(\()", m => { if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } /* * num func * const func */ private static string CheckNumberOrConstantThenFunc(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(\d+|pi|e)\s*([a-zA-Z]+[0-9]*\s*\()", m => { if (input[m.Index] == 'e' && input[m.Index + 1] == 'x' && input[m.Index + 2] == 'p') { return m.Value; } if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } /* * (exp) func * func func */ private static string CheckParenthesisExprThenFunc(string input) { var p = @"(\))\s*([a-zA-Z]+[0-9]*\s*\()"; var r = "$1 * $2"; return Regex.Replace(input, p, r); } /* * (exp) (exp) * func (exp) */ private static string CheckParenthesisExprThenParenthesisExpr(string input) { var p = @"(\))\s*(\()"; var r = "$1 * $2"; return Regex.Replace(input, p, r); } /* * num const */ private static string CheckNumberThenConstant(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(\d+)\s*(pi|e)", m => { if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } /* * const const */ private static string CheckConstantThenConstant(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(pi|e)\s*(pi|e)", m => { if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } } }
viggyd
302abf708288ae50c985a4b4d8122d6925eb5935
114f1b45e27ab55c3cf6a2b1d89e6b0c7d8fe7dd
thanks :) Change looks good to me, I'll just give it a test and then it'll be good to go! :)
stefansjfw
400
microsoft/PowerToys
28,884
[Run] Fix Scientific Notation Errors in Calculator Plugin
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request This PR allows the Calculator plugin in PowerToys Run to use scientific notation (e.g. `5e3 = 5000`). The PR fixes a regression in PowerToys that was introduced in v0.69.1. <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [X] **Closes:** #25656 - [ ] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected - [X] **Tests:** Added/updated and all pass - [ ] **Localization:** All end user facing strings can be localized - [ ] **Dev docs:** Added/updated - [ ] **New binaries:** Added on the required places - [ ] [JSON for signing](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ESRPSigning_core.json) for new binaries - [ ] [WXS for installer](https://github.com/microsoft/PowerToys/blob/main/installer/PowerToysSetup/Product.wxs) for new binaries and localization folder - [ ] [YML for CI pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ci/templates/build-powertoys-steps.yml) for new test projects - [ ] [YML for signed pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/release.yml) - [ ] **Documentation updated:** If checked, please file a pull request on [our docs repo](https://github.com/MicrosoftDocs/windows-uwp/tree/docs/hub/powertoys) and link it here: #xxx <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments Nothing else fixed. <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed I updated the Calculator unit tests to include various expressions using this notation and confirmed that they all pass.
null
2023-09-28 21:24:13+00:00
2024-01-03 11:22:10+00:00
src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.Calculator/CalculateHelper.cs
// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using System.Text.RegularExpressions; namespace Microsoft.PowerToys.Run.Plugin.Calculator { public static class CalculateHelper { private static readonly Regex RegValidExpressChar = new Regex( @"^(" + @"%|" + @"ceil\s*\(|floor\s*\(|exp\s*\(|max\s*\(|min\s*\(|abs\s*\(|log(?:2|10)?\s*\(|ln\s*\(|sqrt\s*\(|pow\s*\(|" + @"factorial\s*\(|sign\s*\(|round\s*\(|rand\s*\(|" + @"sin\s*\(|cos\s*\(|tan\s*\(|arcsin\s*\(|arccos\s*\(|arctan\s*\(|" + @"sinh\s*\(|cosh\s*\(|tanh\s*\(|arsinh\s*\(|arcosh\s*\(|artanh\s*\(|" + @"pi|" + @"==|~=|&&|\|\||" + @"e|[0-9]|0x[0-9a-fA-F]+|0b[01]+|[\+\-\*\/\^\., ""]|[\(\)\|\!\[\]]" + @")+$", RegexOptions.Compiled); public static bool InputValid(string input) { if (string.IsNullOrWhiteSpace(input)) { throw new ArgumentNullException(paramName: nameof(input)); } if (!RegValidExpressChar.IsMatch(input)) { return false; } if (!BracketHelper.IsBracketComplete(input)) { return false; } // If the input ends with a binary operator then it is not a valid input to mages and the Interpret function would throw an exception. Because we expect here that the user has not finished typing we block those inputs. string trimmedInput = input.TrimEnd(); if (trimmedInput.EndsWith('+') || trimmedInput.EndsWith('-') || trimmedInput.EndsWith('*') || trimmedInput.EndsWith('|') || trimmedInput.EndsWith('\\') || trimmedInput.EndsWith('^') || trimmedInput.EndsWith('=') || trimmedInput.EndsWith('&') || trimmedInput.EndsWith('/') || trimmedInput.EndsWith('%')) { return false; } return true; } public static string FixHumanMultiplicationExpressions(string input) { var output = CheckNumberOrConstantThenParenthesisExpr(input); output = CheckNumberOrConstantThenFunc(output); output = CheckParenthesisExprThenFunc(output); output = CheckParenthesisExprThenParenthesisExpr(output); output = CheckNumberThenConstant(output); output = CheckConstantThenConstant(output); return output; } /* * num (exp) * const (exp) */ private static string CheckNumberOrConstantThenParenthesisExpr(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(\d+|pi|e)\s*(\()", m => { if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } /* * num func * const func */ private static string CheckNumberOrConstantThenFunc(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(\d+|pi|e)\s*([a-zA-Z]+[0-9]*\s*\()", m => { if (input[m.Index] == 'e' && input[m.Index + 1] == 'x' && input[m.Index + 2] == 'p') { return m.Value; } if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } /* * (exp) func * func func */ private static string CheckParenthesisExprThenFunc(string input) { var p = @"(\))\s*([a-zA-Z]+[0-9]*\s*\()"; var r = "$1 * $2"; return Regex.Replace(input, p, r); } /* * (exp) (exp) * func (exp) */ private static string CheckParenthesisExprThenParenthesisExpr(string input) { var p = @"(\))\s*(\()"; var r = "$1 * $2"; return Regex.Replace(input, p, r); } /* * num const */ private static string CheckNumberThenConstant(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(\d+)\s*(pi|e)", m => { if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } /* * const const */ private static string CheckConstantThenConstant(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(pi|e)\s*(pi|e)", m => { if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } } }
// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using System.Collections.Generic; using System.Globalization; using System.Text.RegularExpressions; namespace Microsoft.PowerToys.Run.Plugin.Calculator { public static class CalculateHelper { private static readonly Regex RegValidExpressChar = new Regex( @"^(" + @"%|" + @"ceil\s*\(|floor\s*\(|exp\s*\(|max\s*\(|min\s*\(|abs\s*\(|log(?:2|10)?\s*\(|ln\s*\(|sqrt\s*\(|pow\s*\(|" + @"factorial\s*\(|sign\s*\(|round\s*\(|rand\s*\(|" + @"sin\s*\(|cos\s*\(|tan\s*\(|arcsin\s*\(|arccos\s*\(|arctan\s*\(|" + @"sinh\s*\(|cosh\s*\(|tanh\s*\(|arsinh\s*\(|arcosh\s*\(|artanh\s*\(|" + @"pi|" + @"==|~=|&&|\|\||" + @"((-?(\d+(\.\d*)?)|-?(\.\d+))[E](-?\d+))|" + /* expression from CheckScientificNotation between parenthesis */ @"e|[0-9]|0x[0-9a-fA-F]+|0b[01]+|[\+\-\*\/\^\., ""]|[\(\)\|\!\[\]]" + @")+$", RegexOptions.Compiled); public static bool InputValid(string input) { if (string.IsNullOrWhiteSpace(input)) { throw new ArgumentNullException(paramName: nameof(input)); } if (!RegValidExpressChar.IsMatch(input)) { return false; } if (!BracketHelper.IsBracketComplete(input)) { return false; } // If the input ends with a binary operator then it is not a valid input to mages and the Interpret function would throw an exception. Because we expect here that the user has not finished typing we block those inputs. string trimmedInput = input.TrimEnd(); if (trimmedInput.EndsWith('+') || trimmedInput.EndsWith('-') || trimmedInput.EndsWith('*') || trimmedInput.EndsWith('|') || trimmedInput.EndsWith('\\') || trimmedInput.EndsWith('^') || trimmedInput.EndsWith('=') || trimmedInput.EndsWith('&') || trimmedInput.EndsWith('/') || trimmedInput.EndsWith('%')) { return false; } return true; } public static string FixHumanMultiplicationExpressions(string input) { var output = CheckScientificNotation(input); output = CheckNumberOrConstantThenParenthesisExpr(output); output = CheckNumberOrConstantThenFunc(output); output = CheckParenthesisExprThenFunc(output); output = CheckParenthesisExprThenParenthesisExpr(output); output = CheckNumberThenConstant(output); output = CheckConstantThenConstant(output); return output; } private static string CheckScientificNotation(string input) { /** * NOTE: By the time the expression gets to us, it's already in English format. * * Regex explanation: * (-?(\d+({0}\d*)?)|-?({0}\d+)): Used to capture one of two types: * -?(\d+({0}\d*)?): Captures a decimal number starting with a number (e.g. "-1.23") * -?({0}\d+): Captures a decimal number without leading number (e.g. ".23") * E: Captures capital 'E' * (-?\d+): Captures an integer number (e.g. "-1" or "23") */ var p = @"(-?(\d+(\.\d*)?)|-?(\.\d+))E(-?\d+)"; return Regex.Replace(input, p, "($1 * 10^($5))"); } /* * num (exp) * const (exp) */ private static string CheckNumberOrConstantThenParenthesisExpr(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(\d+|pi|e)\s*(\()", m => { if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } /* * num func * const func */ private static string CheckNumberOrConstantThenFunc(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(\d+|pi|e)\s*([a-zA-Z]+[0-9]*\s*\()", m => { if (input[m.Index] == 'e' && input[m.Index + 1] == 'x' && input[m.Index + 2] == 'p') { return m.Value; } if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } /* * (exp) func * func func */ private static string CheckParenthesisExprThenFunc(string input) { var p = @"(\))\s*([a-zA-Z]+[0-9]*\s*\()"; var r = "$1 * $2"; return Regex.Replace(input, p, r); } /* * (exp) (exp) * func (exp) */ private static string CheckParenthesisExprThenParenthesisExpr(string input) { var p = @"(\))\s*(\()"; var r = "$1 * $2"; return Regex.Replace(input, p, r); } /* * num const */ private static string CheckNumberThenConstant(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(\d+)\s*(pi|e)", m => { if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } /* * const const */ private static string CheckConstantThenConstant(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(pi|e)\s*(pi|e)", m => { if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } } }
viggyd
302abf708288ae50c985a4b4d8122d6925eb5935
114f1b45e27ab55c3cf6a2b1d89e6b0c7d8fe7dd
we need a comment update here as well :D
stefansjfw
401
microsoft/PowerToys
28,884
[Run] Fix Scientific Notation Errors in Calculator Plugin
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request This PR allows the Calculator plugin in PowerToys Run to use scientific notation (e.g. `5e3 = 5000`). The PR fixes a regression in PowerToys that was introduced in v0.69.1. <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [X] **Closes:** #25656 - [ ] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected - [X] **Tests:** Added/updated and all pass - [ ] **Localization:** All end user facing strings can be localized - [ ] **Dev docs:** Added/updated - [ ] **New binaries:** Added on the required places - [ ] [JSON for signing](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ESRPSigning_core.json) for new binaries - [ ] [WXS for installer](https://github.com/microsoft/PowerToys/blob/main/installer/PowerToysSetup/Product.wxs) for new binaries and localization folder - [ ] [YML for CI pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ci/templates/build-powertoys-steps.yml) for new test projects - [ ] [YML for signed pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/release.yml) - [ ] **Documentation updated:** If checked, please file a pull request on [our docs repo](https://github.com/MicrosoftDocs/windows-uwp/tree/docs/hub/powertoys) and link it here: #xxx <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments Nothing else fixed. <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed I updated the Calculator unit tests to include various expressions using this notation and confirmed that they all pass.
null
2023-09-28 21:24:13+00:00
2024-01-03 11:22:10+00:00
src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.Calculator/CalculateHelper.cs
// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using System.Text.RegularExpressions; namespace Microsoft.PowerToys.Run.Plugin.Calculator { public static class CalculateHelper { private static readonly Regex RegValidExpressChar = new Regex( @"^(" + @"%|" + @"ceil\s*\(|floor\s*\(|exp\s*\(|max\s*\(|min\s*\(|abs\s*\(|log(?:2|10)?\s*\(|ln\s*\(|sqrt\s*\(|pow\s*\(|" + @"factorial\s*\(|sign\s*\(|round\s*\(|rand\s*\(|" + @"sin\s*\(|cos\s*\(|tan\s*\(|arcsin\s*\(|arccos\s*\(|arctan\s*\(|" + @"sinh\s*\(|cosh\s*\(|tanh\s*\(|arsinh\s*\(|arcosh\s*\(|artanh\s*\(|" + @"pi|" + @"==|~=|&&|\|\||" + @"e|[0-9]|0x[0-9a-fA-F]+|0b[01]+|[\+\-\*\/\^\., ""]|[\(\)\|\!\[\]]" + @")+$", RegexOptions.Compiled); public static bool InputValid(string input) { if (string.IsNullOrWhiteSpace(input)) { throw new ArgumentNullException(paramName: nameof(input)); } if (!RegValidExpressChar.IsMatch(input)) { return false; } if (!BracketHelper.IsBracketComplete(input)) { return false; } // If the input ends with a binary operator then it is not a valid input to mages and the Interpret function would throw an exception. Because we expect here that the user has not finished typing we block those inputs. string trimmedInput = input.TrimEnd(); if (trimmedInput.EndsWith('+') || trimmedInput.EndsWith('-') || trimmedInput.EndsWith('*') || trimmedInput.EndsWith('|') || trimmedInput.EndsWith('\\') || trimmedInput.EndsWith('^') || trimmedInput.EndsWith('=') || trimmedInput.EndsWith('&') || trimmedInput.EndsWith('/') || trimmedInput.EndsWith('%')) { return false; } return true; } public static string FixHumanMultiplicationExpressions(string input) { var output = CheckNumberOrConstantThenParenthesisExpr(input); output = CheckNumberOrConstantThenFunc(output); output = CheckParenthesisExprThenFunc(output); output = CheckParenthesisExprThenParenthesisExpr(output); output = CheckNumberThenConstant(output); output = CheckConstantThenConstant(output); return output; } /* * num (exp) * const (exp) */ private static string CheckNumberOrConstantThenParenthesisExpr(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(\d+|pi|e)\s*(\()", m => { if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } /* * num func * const func */ private static string CheckNumberOrConstantThenFunc(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(\d+|pi|e)\s*([a-zA-Z]+[0-9]*\s*\()", m => { if (input[m.Index] == 'e' && input[m.Index + 1] == 'x' && input[m.Index + 2] == 'p') { return m.Value; } if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } /* * (exp) func * func func */ private static string CheckParenthesisExprThenFunc(string input) { var p = @"(\))\s*([a-zA-Z]+[0-9]*\s*\()"; var r = "$1 * $2"; return Regex.Replace(input, p, r); } /* * (exp) (exp) * func (exp) */ private static string CheckParenthesisExprThenParenthesisExpr(string input) { var p = @"(\))\s*(\()"; var r = "$1 * $2"; return Regex.Replace(input, p, r); } /* * num const */ private static string CheckNumberThenConstant(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(\d+)\s*(pi|e)", m => { if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } /* * const const */ private static string CheckConstantThenConstant(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(pi|e)\s*(pi|e)", m => { if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } } }
// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using System.Collections.Generic; using System.Globalization; using System.Text.RegularExpressions; namespace Microsoft.PowerToys.Run.Plugin.Calculator { public static class CalculateHelper { private static readonly Regex RegValidExpressChar = new Regex( @"^(" + @"%|" + @"ceil\s*\(|floor\s*\(|exp\s*\(|max\s*\(|min\s*\(|abs\s*\(|log(?:2|10)?\s*\(|ln\s*\(|sqrt\s*\(|pow\s*\(|" + @"factorial\s*\(|sign\s*\(|round\s*\(|rand\s*\(|" + @"sin\s*\(|cos\s*\(|tan\s*\(|arcsin\s*\(|arccos\s*\(|arctan\s*\(|" + @"sinh\s*\(|cosh\s*\(|tanh\s*\(|arsinh\s*\(|arcosh\s*\(|artanh\s*\(|" + @"pi|" + @"==|~=|&&|\|\||" + @"((-?(\d+(\.\d*)?)|-?(\.\d+))[E](-?\d+))|" + /* expression from CheckScientificNotation between parenthesis */ @"e|[0-9]|0x[0-9a-fA-F]+|0b[01]+|[\+\-\*\/\^\., ""]|[\(\)\|\!\[\]]" + @")+$", RegexOptions.Compiled); public static bool InputValid(string input) { if (string.IsNullOrWhiteSpace(input)) { throw new ArgumentNullException(paramName: nameof(input)); } if (!RegValidExpressChar.IsMatch(input)) { return false; } if (!BracketHelper.IsBracketComplete(input)) { return false; } // If the input ends with a binary operator then it is not a valid input to mages and the Interpret function would throw an exception. Because we expect here that the user has not finished typing we block those inputs. string trimmedInput = input.TrimEnd(); if (trimmedInput.EndsWith('+') || trimmedInput.EndsWith('-') || trimmedInput.EndsWith('*') || trimmedInput.EndsWith('|') || trimmedInput.EndsWith('\\') || trimmedInput.EndsWith('^') || trimmedInput.EndsWith('=') || trimmedInput.EndsWith('&') || trimmedInput.EndsWith('/') || trimmedInput.EndsWith('%')) { return false; } return true; } public static string FixHumanMultiplicationExpressions(string input) { var output = CheckScientificNotation(input); output = CheckNumberOrConstantThenParenthesisExpr(output); output = CheckNumberOrConstantThenFunc(output); output = CheckParenthesisExprThenFunc(output); output = CheckParenthesisExprThenParenthesisExpr(output); output = CheckNumberThenConstant(output); output = CheckConstantThenConstant(output); return output; } private static string CheckScientificNotation(string input) { /** * NOTE: By the time the expression gets to us, it's already in English format. * * Regex explanation: * (-?(\d+({0}\d*)?)|-?({0}\d+)): Used to capture one of two types: * -?(\d+({0}\d*)?): Captures a decimal number starting with a number (e.g. "-1.23") * -?({0}\d+): Captures a decimal number without leading number (e.g. ".23") * E: Captures capital 'E' * (-?\d+): Captures an integer number (e.g. "-1" or "23") */ var p = @"(-?(\d+(\.\d*)?)|-?(\.\d+))E(-?\d+)"; return Regex.Replace(input, p, "($1 * 10^($5))"); } /* * num (exp) * const (exp) */ private static string CheckNumberOrConstantThenParenthesisExpr(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(\d+|pi|e)\s*(\()", m => { if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } /* * num func * const func */ private static string CheckNumberOrConstantThenFunc(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(\d+|pi|e)\s*([a-zA-Z]+[0-9]*\s*\()", m => { if (input[m.Index] == 'e' && input[m.Index + 1] == 'x' && input[m.Index + 2] == 'p') { return m.Value; } if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } /* * (exp) func * func func */ private static string CheckParenthesisExprThenFunc(string input) { var p = @"(\))\s*([a-zA-Z]+[0-9]*\s*\()"; var r = "$1 * $2"; return Regex.Replace(input, p, r); } /* * (exp) (exp) * func (exp) */ private static string CheckParenthesisExprThenParenthesisExpr(string input) { var p = @"(\))\s*(\()"; var r = "$1 * $2"; return Regex.Replace(input, p, r); } /* * num const */ private static string CheckNumberThenConstant(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(\d+)\s*(pi|e)", m => { if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } /* * const const */ private static string CheckConstantThenConstant(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(pi|e)\s*(pi|e)", m => { if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } } }
viggyd
302abf708288ae50c985a4b4d8122d6925eb5935
114f1b45e27ab55c3cf6a2b1d89e6b0c7d8fe7dd
```suggestion * (-?\d+): Captures an integer number (e.g. "-1" or "23") ```
stefansjfw
402
microsoft/PowerToys
28,884
[Run] Fix Scientific Notation Errors in Calculator Plugin
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request This PR allows the Calculator plugin in PowerToys Run to use scientific notation (e.g. `5e3 = 5000`). The PR fixes a regression in PowerToys that was introduced in v0.69.1. <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [X] **Closes:** #25656 - [ ] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected - [X] **Tests:** Added/updated and all pass - [ ] **Localization:** All end user facing strings can be localized - [ ] **Dev docs:** Added/updated - [ ] **New binaries:** Added on the required places - [ ] [JSON for signing](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ESRPSigning_core.json) for new binaries - [ ] [WXS for installer](https://github.com/microsoft/PowerToys/blob/main/installer/PowerToysSetup/Product.wxs) for new binaries and localization folder - [ ] [YML for CI pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ci/templates/build-powertoys-steps.yml) for new test projects - [ ] [YML for signed pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/release.yml) - [ ] **Documentation updated:** If checked, please file a pull request on [our docs repo](https://github.com/MicrosoftDocs/windows-uwp/tree/docs/hub/powertoys) and link it here: #xxx <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments Nothing else fixed. <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed I updated the Calculator unit tests to include various expressions using this notation and confirmed that they all pass.
null
2023-09-28 21:24:13+00:00
2024-01-03 11:22:10+00:00
src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.Calculator/CalculateHelper.cs
// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using System.Text.RegularExpressions; namespace Microsoft.PowerToys.Run.Plugin.Calculator { public static class CalculateHelper { private static readonly Regex RegValidExpressChar = new Regex( @"^(" + @"%|" + @"ceil\s*\(|floor\s*\(|exp\s*\(|max\s*\(|min\s*\(|abs\s*\(|log(?:2|10)?\s*\(|ln\s*\(|sqrt\s*\(|pow\s*\(|" + @"factorial\s*\(|sign\s*\(|round\s*\(|rand\s*\(|" + @"sin\s*\(|cos\s*\(|tan\s*\(|arcsin\s*\(|arccos\s*\(|arctan\s*\(|" + @"sinh\s*\(|cosh\s*\(|tanh\s*\(|arsinh\s*\(|arcosh\s*\(|artanh\s*\(|" + @"pi|" + @"==|~=|&&|\|\||" + @"e|[0-9]|0x[0-9a-fA-F]+|0b[01]+|[\+\-\*\/\^\., ""]|[\(\)\|\!\[\]]" + @")+$", RegexOptions.Compiled); public static bool InputValid(string input) { if (string.IsNullOrWhiteSpace(input)) { throw new ArgumentNullException(paramName: nameof(input)); } if (!RegValidExpressChar.IsMatch(input)) { return false; } if (!BracketHelper.IsBracketComplete(input)) { return false; } // If the input ends with a binary operator then it is not a valid input to mages and the Interpret function would throw an exception. Because we expect here that the user has not finished typing we block those inputs. string trimmedInput = input.TrimEnd(); if (trimmedInput.EndsWith('+') || trimmedInput.EndsWith('-') || trimmedInput.EndsWith('*') || trimmedInput.EndsWith('|') || trimmedInput.EndsWith('\\') || trimmedInput.EndsWith('^') || trimmedInput.EndsWith('=') || trimmedInput.EndsWith('&') || trimmedInput.EndsWith('/') || trimmedInput.EndsWith('%')) { return false; } return true; } public static string FixHumanMultiplicationExpressions(string input) { var output = CheckNumberOrConstantThenParenthesisExpr(input); output = CheckNumberOrConstantThenFunc(output); output = CheckParenthesisExprThenFunc(output); output = CheckParenthesisExprThenParenthesisExpr(output); output = CheckNumberThenConstant(output); output = CheckConstantThenConstant(output); return output; } /* * num (exp) * const (exp) */ private static string CheckNumberOrConstantThenParenthesisExpr(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(\d+|pi|e)\s*(\()", m => { if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } /* * num func * const func */ private static string CheckNumberOrConstantThenFunc(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(\d+|pi|e)\s*([a-zA-Z]+[0-9]*\s*\()", m => { if (input[m.Index] == 'e' && input[m.Index + 1] == 'x' && input[m.Index + 2] == 'p') { return m.Value; } if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } /* * (exp) func * func func */ private static string CheckParenthesisExprThenFunc(string input) { var p = @"(\))\s*([a-zA-Z]+[0-9]*\s*\()"; var r = "$1 * $2"; return Regex.Replace(input, p, r); } /* * (exp) (exp) * func (exp) */ private static string CheckParenthesisExprThenParenthesisExpr(string input) { var p = @"(\))\s*(\()"; var r = "$1 * $2"; return Regex.Replace(input, p, r); } /* * num const */ private static string CheckNumberThenConstant(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(\d+)\s*(pi|e)", m => { if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } /* * const const */ private static string CheckConstantThenConstant(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(pi|e)\s*(pi|e)", m => { if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } } }
// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using System.Collections.Generic; using System.Globalization; using System.Text.RegularExpressions; namespace Microsoft.PowerToys.Run.Plugin.Calculator { public static class CalculateHelper { private static readonly Regex RegValidExpressChar = new Regex( @"^(" + @"%|" + @"ceil\s*\(|floor\s*\(|exp\s*\(|max\s*\(|min\s*\(|abs\s*\(|log(?:2|10)?\s*\(|ln\s*\(|sqrt\s*\(|pow\s*\(|" + @"factorial\s*\(|sign\s*\(|round\s*\(|rand\s*\(|" + @"sin\s*\(|cos\s*\(|tan\s*\(|arcsin\s*\(|arccos\s*\(|arctan\s*\(|" + @"sinh\s*\(|cosh\s*\(|tanh\s*\(|arsinh\s*\(|arcosh\s*\(|artanh\s*\(|" + @"pi|" + @"==|~=|&&|\|\||" + @"((-?(\d+(\.\d*)?)|-?(\.\d+))[E](-?\d+))|" + /* expression from CheckScientificNotation between parenthesis */ @"e|[0-9]|0x[0-9a-fA-F]+|0b[01]+|[\+\-\*\/\^\., ""]|[\(\)\|\!\[\]]" + @")+$", RegexOptions.Compiled); public static bool InputValid(string input) { if (string.IsNullOrWhiteSpace(input)) { throw new ArgumentNullException(paramName: nameof(input)); } if (!RegValidExpressChar.IsMatch(input)) { return false; } if (!BracketHelper.IsBracketComplete(input)) { return false; } // If the input ends with a binary operator then it is not a valid input to mages and the Interpret function would throw an exception. Because we expect here that the user has not finished typing we block those inputs. string trimmedInput = input.TrimEnd(); if (trimmedInput.EndsWith('+') || trimmedInput.EndsWith('-') || trimmedInput.EndsWith('*') || trimmedInput.EndsWith('|') || trimmedInput.EndsWith('\\') || trimmedInput.EndsWith('^') || trimmedInput.EndsWith('=') || trimmedInput.EndsWith('&') || trimmedInput.EndsWith('/') || trimmedInput.EndsWith('%')) { return false; } return true; } public static string FixHumanMultiplicationExpressions(string input) { var output = CheckScientificNotation(input); output = CheckNumberOrConstantThenParenthesisExpr(output); output = CheckNumberOrConstantThenFunc(output); output = CheckParenthesisExprThenFunc(output); output = CheckParenthesisExprThenParenthesisExpr(output); output = CheckNumberThenConstant(output); output = CheckConstantThenConstant(output); return output; } private static string CheckScientificNotation(string input) { /** * NOTE: By the time the expression gets to us, it's already in English format. * * Regex explanation: * (-?(\d+({0}\d*)?)|-?({0}\d+)): Used to capture one of two types: * -?(\d+({0}\d*)?): Captures a decimal number starting with a number (e.g. "-1.23") * -?({0}\d+): Captures a decimal number without leading number (e.g. ".23") * E: Captures capital 'E' * (-?\d+): Captures an integer number (e.g. "-1" or "23") */ var p = @"(-?(\d+(\.\d*)?)|-?(\.\d+))E(-?\d+)"; return Regex.Replace(input, p, "($1 * 10^($5))"); } /* * num (exp) * const (exp) */ private static string CheckNumberOrConstantThenParenthesisExpr(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(\d+|pi|e)\s*(\()", m => { if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } /* * num func * const func */ private static string CheckNumberOrConstantThenFunc(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(\d+|pi|e)\s*([a-zA-Z]+[0-9]*\s*\()", m => { if (input[m.Index] == 'e' && input[m.Index + 1] == 'x' && input[m.Index + 2] == 'p') { return m.Value; } if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } /* * (exp) func * func func */ private static string CheckParenthesisExprThenFunc(string input) { var p = @"(\))\s*([a-zA-Z]+[0-9]*\s*\()"; var r = "$1 * $2"; return Regex.Replace(input, p, r); } /* * (exp) (exp) * func (exp) */ private static string CheckParenthesisExprThenParenthesisExpr(string input) { var p = @"(\))\s*(\()"; var r = "$1 * $2"; return Regex.Replace(input, p, r); } /* * num const */ private static string CheckNumberThenConstant(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(\d+)\s*(pi|e)", m => { if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } /* * const const */ private static string CheckConstantThenConstant(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(pi|e)\s*(pi|e)", m => { if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } } }
viggyd
302abf708288ae50c985a4b4d8122d6925eb5935
114f1b45e27ab55c3cf6a2b1d89e6b0c7d8fe7dd
fixed :)
stefansjfw
403
microsoft/PowerToys
28,884
[Run] Fix Scientific Notation Errors in Calculator Plugin
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request This PR allows the Calculator plugin in PowerToys Run to use scientific notation (e.g. `5e3 = 5000`). The PR fixes a regression in PowerToys that was introduced in v0.69.1. <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [X] **Closes:** #25656 - [ ] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected - [X] **Tests:** Added/updated and all pass - [ ] **Localization:** All end user facing strings can be localized - [ ] **Dev docs:** Added/updated - [ ] **New binaries:** Added on the required places - [ ] [JSON for signing](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ESRPSigning_core.json) for new binaries - [ ] [WXS for installer](https://github.com/microsoft/PowerToys/blob/main/installer/PowerToysSetup/Product.wxs) for new binaries and localization folder - [ ] [YML for CI pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ci/templates/build-powertoys-steps.yml) for new test projects - [ ] [YML for signed pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/release.yml) - [ ] **Documentation updated:** If checked, please file a pull request on [our docs repo](https://github.com/MicrosoftDocs/windows-uwp/tree/docs/hub/powertoys) and link it here: #xxx <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments Nothing else fixed. <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed I updated the Calculator unit tests to include various expressions using this notation and confirmed that they all pass.
null
2023-09-28 21:24:13+00:00
2024-01-03 11:22:10+00:00
src/modules/launcher/Plugins/Microsoft.PowerToys.Run.Plugin.Calculator/CalculateHelper.cs
// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using System.Text.RegularExpressions; namespace Microsoft.PowerToys.Run.Plugin.Calculator { public static class CalculateHelper { private static readonly Regex RegValidExpressChar = new Regex( @"^(" + @"%|" + @"ceil\s*\(|floor\s*\(|exp\s*\(|max\s*\(|min\s*\(|abs\s*\(|log(?:2|10)?\s*\(|ln\s*\(|sqrt\s*\(|pow\s*\(|" + @"factorial\s*\(|sign\s*\(|round\s*\(|rand\s*\(|" + @"sin\s*\(|cos\s*\(|tan\s*\(|arcsin\s*\(|arccos\s*\(|arctan\s*\(|" + @"sinh\s*\(|cosh\s*\(|tanh\s*\(|arsinh\s*\(|arcosh\s*\(|artanh\s*\(|" + @"pi|" + @"==|~=|&&|\|\||" + @"e|[0-9]|0x[0-9a-fA-F]+|0b[01]+|[\+\-\*\/\^\., ""]|[\(\)\|\!\[\]]" + @")+$", RegexOptions.Compiled); public static bool InputValid(string input) { if (string.IsNullOrWhiteSpace(input)) { throw new ArgumentNullException(paramName: nameof(input)); } if (!RegValidExpressChar.IsMatch(input)) { return false; } if (!BracketHelper.IsBracketComplete(input)) { return false; } // If the input ends with a binary operator then it is not a valid input to mages and the Interpret function would throw an exception. Because we expect here that the user has not finished typing we block those inputs. string trimmedInput = input.TrimEnd(); if (trimmedInput.EndsWith('+') || trimmedInput.EndsWith('-') || trimmedInput.EndsWith('*') || trimmedInput.EndsWith('|') || trimmedInput.EndsWith('\\') || trimmedInput.EndsWith('^') || trimmedInput.EndsWith('=') || trimmedInput.EndsWith('&') || trimmedInput.EndsWith('/') || trimmedInput.EndsWith('%')) { return false; } return true; } public static string FixHumanMultiplicationExpressions(string input) { var output = CheckNumberOrConstantThenParenthesisExpr(input); output = CheckNumberOrConstantThenFunc(output); output = CheckParenthesisExprThenFunc(output); output = CheckParenthesisExprThenParenthesisExpr(output); output = CheckNumberThenConstant(output); output = CheckConstantThenConstant(output); return output; } /* * num (exp) * const (exp) */ private static string CheckNumberOrConstantThenParenthesisExpr(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(\d+|pi|e)\s*(\()", m => { if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } /* * num func * const func */ private static string CheckNumberOrConstantThenFunc(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(\d+|pi|e)\s*([a-zA-Z]+[0-9]*\s*\()", m => { if (input[m.Index] == 'e' && input[m.Index + 1] == 'x' && input[m.Index + 2] == 'p') { return m.Value; } if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } /* * (exp) func * func func */ private static string CheckParenthesisExprThenFunc(string input) { var p = @"(\))\s*([a-zA-Z]+[0-9]*\s*\()"; var r = "$1 * $2"; return Regex.Replace(input, p, r); } /* * (exp) (exp) * func (exp) */ private static string CheckParenthesisExprThenParenthesisExpr(string input) { var p = @"(\))\s*(\()"; var r = "$1 * $2"; return Regex.Replace(input, p, r); } /* * num const */ private static string CheckNumberThenConstant(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(\d+)\s*(pi|e)", m => { if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } /* * const const */ private static string CheckConstantThenConstant(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(pi|e)\s*(pi|e)", m => { if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } } }
// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using System.Collections.Generic; using System.Globalization; using System.Text.RegularExpressions; namespace Microsoft.PowerToys.Run.Plugin.Calculator { public static class CalculateHelper { private static readonly Regex RegValidExpressChar = new Regex( @"^(" + @"%|" + @"ceil\s*\(|floor\s*\(|exp\s*\(|max\s*\(|min\s*\(|abs\s*\(|log(?:2|10)?\s*\(|ln\s*\(|sqrt\s*\(|pow\s*\(|" + @"factorial\s*\(|sign\s*\(|round\s*\(|rand\s*\(|" + @"sin\s*\(|cos\s*\(|tan\s*\(|arcsin\s*\(|arccos\s*\(|arctan\s*\(|" + @"sinh\s*\(|cosh\s*\(|tanh\s*\(|arsinh\s*\(|arcosh\s*\(|artanh\s*\(|" + @"pi|" + @"==|~=|&&|\|\||" + @"((-?(\d+(\.\d*)?)|-?(\.\d+))[E](-?\d+))|" + /* expression from CheckScientificNotation between parenthesis */ @"e|[0-9]|0x[0-9a-fA-F]+|0b[01]+|[\+\-\*\/\^\., ""]|[\(\)\|\!\[\]]" + @")+$", RegexOptions.Compiled); public static bool InputValid(string input) { if (string.IsNullOrWhiteSpace(input)) { throw new ArgumentNullException(paramName: nameof(input)); } if (!RegValidExpressChar.IsMatch(input)) { return false; } if (!BracketHelper.IsBracketComplete(input)) { return false; } // If the input ends with a binary operator then it is not a valid input to mages and the Interpret function would throw an exception. Because we expect here that the user has not finished typing we block those inputs. string trimmedInput = input.TrimEnd(); if (trimmedInput.EndsWith('+') || trimmedInput.EndsWith('-') || trimmedInput.EndsWith('*') || trimmedInput.EndsWith('|') || trimmedInput.EndsWith('\\') || trimmedInput.EndsWith('^') || trimmedInput.EndsWith('=') || trimmedInput.EndsWith('&') || trimmedInput.EndsWith('/') || trimmedInput.EndsWith('%')) { return false; } return true; } public static string FixHumanMultiplicationExpressions(string input) { var output = CheckScientificNotation(input); output = CheckNumberOrConstantThenParenthesisExpr(output); output = CheckNumberOrConstantThenFunc(output); output = CheckParenthesisExprThenFunc(output); output = CheckParenthesisExprThenParenthesisExpr(output); output = CheckNumberThenConstant(output); output = CheckConstantThenConstant(output); return output; } private static string CheckScientificNotation(string input) { /** * NOTE: By the time the expression gets to us, it's already in English format. * * Regex explanation: * (-?(\d+({0}\d*)?)|-?({0}\d+)): Used to capture one of two types: * -?(\d+({0}\d*)?): Captures a decimal number starting with a number (e.g. "-1.23") * -?({0}\d+): Captures a decimal number without leading number (e.g. ".23") * E: Captures capital 'E' * (-?\d+): Captures an integer number (e.g. "-1" or "23") */ var p = @"(-?(\d+(\.\d*)?)|-?(\.\d+))E(-?\d+)"; return Regex.Replace(input, p, "($1 * 10^($5))"); } /* * num (exp) * const (exp) */ private static string CheckNumberOrConstantThenParenthesisExpr(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(\d+|pi|e)\s*(\()", m => { if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } /* * num func * const func */ private static string CheckNumberOrConstantThenFunc(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(\d+|pi|e)\s*([a-zA-Z]+[0-9]*\s*\()", m => { if (input[m.Index] == 'e' && input[m.Index + 1] == 'x' && input[m.Index + 2] == 'p') { return m.Value; } if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } /* * (exp) func * func func */ private static string CheckParenthesisExprThenFunc(string input) { var p = @"(\))\s*([a-zA-Z]+[0-9]*\s*\()"; var r = "$1 * $2"; return Regex.Replace(input, p, r); } /* * (exp) (exp) * func (exp) */ private static string CheckParenthesisExprThenParenthesisExpr(string input) { var p = @"(\))\s*(\()"; var r = "$1 * $2"; return Regex.Replace(input, p, r); } /* * num const */ private static string CheckNumberThenConstant(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(\d+)\s*(pi|e)", m => { if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } /* * const const */ private static string CheckConstantThenConstant(string input) { var output = input; do { input = output; output = Regex.Replace(input, @"(pi|e)\s*(pi|e)", m => { if (m.Index > 0 && char.IsLetter(input[m.Index - 1])) { return m.Value; } return $"{m.Groups[1].Value} * {m.Groups[2].Value}"; }); } while (output != input); return output; } } }
viggyd
302abf708288ae50c985a4b4d8122d6925eb5935
114f1b45e27ab55c3cf6a2b1d89e6b0c7d8fe7dd
Thanks!
viggyd
404
microsoft/PowerToys
28,786
[Registry Preview] Ended up with four unrelated fixes in one PR - not a role model, sorry
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request Was reviewing someone else's PR and decided to take look at two issues and ended up fixing a third and fourth. <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [X] **Closes:** - #26029 - #28147 - No number: exception being thrown on first run, when size/position JSON file is missing. - [X] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments - Found an exception that was being thrown on first run, when the app tries to load a json file that hasn't been created yet. The code always caught the exception, but if a simple if statement can prevent it, yay. - Adds support for files that may have whitespace around the = of a value line; a past fix enabled whitespace elsewhere. - Fixes issue for non-ASCII filenames, when app is registered as the default handler. (This was neat: if the filename is only ASCII then the app gets activated as "File" activation but if there are non-ASCII characters, then it activates as "Protocol" but you'd only ever know this if you are under a debugger.) - Adds a workaround that makes sure that we close the TextBox's context menu is closed when closing the app, to prevent a crash. <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed Ran a number of different test files through its paces, including past files that were known to fail on older code. Didn't see any regressions or impact to the rest of the product.
null
2023-09-27 03:25:09+00:00
2023-10-06 13:48:40+00:00
src/modules/registrypreview/RegistryPreviewUI/MainWindow.Utilities.cs
// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using System.Collections; using System.Collections.Generic; using System.Diagnostics; using System.Globalization; using System.IO; using System.Linq; using System.Reflection; using System.Text; using System.Threading.Tasks; using Microsoft.UI.Input; using Microsoft.UI.Xaml; using Microsoft.UI.Xaml.Controls; using Windows.Foundation.Metadata; using Windows.Storage; using WinUIEx; namespace RegistryPreview { public sealed partial class MainWindow : WindowEx { /// <summary> /// Method that opens and processes the passed in file name; expected to be an absolute path and a first time open /// </summary> private bool OpenRegistryFile(string filename) { // clamp to prevent attempts to open a file larger than 10MB try { long fileLength = new System.IO.FileInfo(filename).Length; if (fileLength > 10485760) { ShowMessageBox(resourceLoader.GetString("LargeRegistryFileTitle"), App.AppFilename + resourceLoader.GetString("LargeRegistryFile"), resourceLoader.GetString("OkButtonText")); ChangeCursor(gridPreview, false); return false; } } catch { // Do nothing here - a missing or invalid file will be caught below } // Disable parts of the UI that can cause trouble when loading ChangeCursor(gridPreview, true); textBox.Text = string.Empty; // clear the treeView and dataGrid no matter what treeView.RootNodes.Clear(); ClearTable(); // update the current window's title with the current filename UpdateWindowTitle(filename); // Load in the whole file in one call and plop it all into textBox FileStream fileStream = null; try { FileStreamOptions fileStreamOptions = new FileStreamOptions(); fileStreamOptions.Access = FileAccess.Read; fileStreamOptions.Share = FileShare.ReadWrite; fileStreamOptions.Mode = FileMode.Open; fileStream = new FileStream(filename, fileStreamOptions); StreamReader streamReader = new StreamReader(fileStream); string filenameText = streamReader.ReadToEnd(); textBox.Text = filenameText; streamReader.Close(); } catch { // restore TextChanged handler to make for clean UI textBox.TextChanged += TextBox_TextChanged; // Reset the cursor but leave textBox disabled as no content got loaded ChangeCursor(gridPreview, false); return false; } finally { // clean up no matter what if (fileStream != null) { fileStream.Dispose(); } } // now that the file is loaded and in textBox, parse the data ParseRegistryFile(textBox.Text); // Getting here means that the entire REG file was parsed without incident // so select the root of the tree and celebrate if (treeView.RootNodes.Count > 0) { treeView.SelectedNode = treeView.RootNodes[0]; treeView.Focus(FocusState.Programmatic); } // reset the cursor ChangeCursor(gridPreview, false); return true; } /// <summary> /// Method that re-opens and processes the filename the app already knows about; expected to not be a first time open /// </summary> private void RefreshRegistryFile() { // Disable parts of the UI that can cause trouble when loading ChangeCursor(gridPreview, true); // Get the current selected node so we can return focus to an existing node TreeViewNode currentNode = treeView.SelectedNode; // clear the treeView and dataGrid no matter what treeView.RootNodes.Clear(); ClearTable(); // the existing text is still in textBox so parse the data again ParseRegistryFile(textBox.Text); // check to see if there was a key in treeView before the refresh happened if (currentNode != null) { // since there is a valid node, get the FullPath of the key that was selected string selectedFullPath = ((RegistryKey)currentNode.Content).FullPath; // check to see if we still have the key in the new Dictionary of keys if (mapRegistryKeys.ContainsKey(selectedFullPath)) { // we found it! select it in the tree and pretend it was selected TreeViewNode treeViewNode; mapRegistryKeys.TryGetValue(selectedFullPath, out treeViewNode); treeView.SelectedNode = treeViewNode; TreeView_ItemInvoked(treeView, null); } else { // we failed to find an existing node; it could have been deleted in the edit if (treeView.RootNodes.Count > 0) { treeView.SelectedNode = treeView.RootNodes[0]; } } } else { // no node was previously selected so check for a RootNode and select it if (treeView.RootNodes.Count > 0) { treeView.SelectedNode = treeView.RootNodes[0]; } } // Update the toolbar button for the trees registryJumpToKeyButton.IsEnabled = CheckTreeForValidKey(); // enable the UI ChangeCursor(gridPreview, false); } /// <summary> /// Parses the text that is passed in, which should be the same text that's in textBox /// </summary> private bool ParseRegistryFile(string filenameText) { // if this is a not-first open, clear out the Dictionary of nodes if (mapRegistryKeys != null) { mapRegistryKeys.Clear(); mapRegistryKeys = null; } // set up a new dictionary mapRegistryKeys = new Dictionary<string, TreeViewNode>(StringComparer.InvariantCultureIgnoreCase); // As we'll be processing the text one line at a time, this string will be the current line string registryLine; // Brute force editing: for textBox to show Cr-Lf corrected, we need to strip out the \n's filenameText = filenameText.Replace("\r\n", "\r"); // split apart all of the text in textBox, where one element in the array represents one line string[] registryLines = filenameText.Split("\r"); if (registryLines.Length <= 1) { // after the split, we have no lines so get out ChangeCursor(gridPreview, false); return false; } // REG files have to start with one of two headers and it's case insensitive registryLine = registryLines[0]; registryLine = registryLine.ToLowerInvariant(); // make sure that this is a valid REG file, based on the first line of the file switch (registryLine) { case REGISTRYHEADER4: case REGISTRYHEADER5: break; default: ShowMessageBox(APPNAME, App.AppFilename + resourceLoader.GetString("InvalidRegistryFile"), resourceLoader.GetString("OkButtonText")); ChangeCursor(gridPreview, false); return false; } // these are used for populating the tree as we read in one line at a time TreeViewNode treeViewNode = null; RegistryValue registryValue = null; // start with the first element of the array int index = 1; registryLine = registryLines[index]; while (index < registryLines.Length) { // special case for when the registryLine begins with a @ - make some tweaks and // let the regular processing handle the rest. if (registryLine.StartsWith("@=-", StringComparison.InvariantCulture)) { // REG file has a callout to delete the @ Value which won't work *but* the Registry Editor will // clear the value of the @ Value instead, so it's still a valid line. registryLine = registryLine.Replace("@=-", "\"(Default)\"=\"\""); } else if (registryLine.StartsWith("@=", StringComparison.InvariantCulture)) { // This is the a Value called "(Default)" so we tweak the line for the UX registryLine = registryLine.Replace("@=", "\"(Default)\"="); } // continue until we have nothing left to read // switch logic, based off what the current line we're reading is if (registryLine.StartsWith("[-", StringComparison.InvariantCulture)) { // remove the - as we won't need it but it will get special treatment in the UI registryLine = registryLine.Remove(1, 1); string imageName = DELETEDKEYIMAGE; CheckKeyLineForBrackets(ref registryLine, ref imageName); // this is a key, so remove the first [ and last ] registryLine = StripFirstAndLast(registryLine); // do not track the result of this node, since it should have no children AddTextToTree(registryLine, imageName); } else if (registryLine.StartsWith("[", StringComparison.InvariantCulture)) { string imageName = KEYIMAGE; CheckKeyLineForBrackets(ref registryLine, ref imageName); // this is a key, so remove the first [ and last ] registryLine = StripFirstAndLast(registryLine); treeViewNode = AddTextToTree(registryLine, imageName); } else if (registryLine.StartsWith("\"", StringComparison.InvariantCulture) && registryLine.EndsWith("=-", StringComparison.InvariantCulture)) { // this line deletes this value so it gets special treatment for the UI registryLine = registryLine.Replace("=-", string.Empty); // remove the "'s without removing all of them registryLine = StripFirstAndLast(registryLine); // Create a new listview item that will be used to display the delete value and store it registryValue = new RegistryValue(registryLine, string.Empty, string.Empty); SetValueToolTip(registryValue); // store the ListViewItem, if we have a valid Key to attach to if (treeViewNode != null) { StoreTheListValue((RegistryKey)treeViewNode.Content, registryValue); } } else if (registryLine.StartsWith("\"", StringComparison.InvariantCulture)) { // this is a named value // split up the name from the value by looking for the first found = int equal = registryLine.IndexOf('='); if ((equal < 0) || (equal > registryLine.Length - 1)) { // something is very wrong Debug.WriteLine(string.Format(CultureInfo.InvariantCulture, "SOMETHING WENT WRONG: {0}", registryLine)); break; } // set the name and the value string name = registryLine.Substring(0, equal); name = StripFirstAndLast(name); // Clean out any escaped characters in the value, only for the preview name = StripEscapedCharacters(name); string value = registryLine.Substring(equal + 1); // Create a new listview item that will be used to display the value registryValue = new RegistryValue(name, "REG_SZ", string.Empty); // if the first character is a " then this is a string value, so find the last most " which will avoid comments if (value.StartsWith("\"", StringComparison.InvariantCulture)) { int last = value.LastIndexOf("\"", StringComparison.InvariantCulture); if (last >= 0) { value = value.Substring(0, last + 1); } } if (value.StartsWith("\"", StringComparison.InvariantCulture) && value.EndsWith("\"", StringComparison.InvariantCulture)) { value = StripFirstAndLast(value); } else { // this is an invalid value as there are no "s in the right side of the = registryValue.Type = "ERROR"; } if (value.StartsWith("dword:", StringComparison.InvariantCultureIgnoreCase)) { registryValue.Type = "REG_DWORD"; value = value.Replace("dword:", string.Empty); } else if (value.StartsWith("hex(b):", StringComparison.InvariantCultureIgnoreCase)) { registryValue.Type = "REG_QWORD"; value = value.Replace("hex(b):", string.Empty); } else if (value.StartsWith("hex:", StringComparison.InvariantCultureIgnoreCase)) { registryValue.Type = "REG_BINARY"; value = value.Replace("hex:", string.Empty); } else if (value.StartsWith("hex(2):", StringComparison.InvariantCultureIgnoreCase)) { registryValue.Type = "REG_EXPAND_SZ"; value = value.Replace("hex(2):", string.Empty); } else if (value.StartsWith("hex(7):", StringComparison.InvariantCultureIgnoreCase)) { registryValue.Type = "REG_MULTI_SZ"; value = value.Replace("hex(7):", string.Empty); } else if (value.StartsWith("hex(0):", StringComparison.InvariantCultureIgnoreCase)) { registryValue.Type = "REG_NONE"; value = value.Replace("hex(0):", string.Empty); } // special casing for various key types switch (registryValue.Type) { case "REG_SZ": case "ERROR": // no special handling for these two break; default: // check to see if a continuation marker is the first character if (value == @"\") { // pad the value, so the parsing below is triggered value = @",\"; } value = ScanAndRemoveComments(value); break; } // Parse for the case where a \ is added immediately after hex is declared switch (registryValue.Type) { case "REG_QWORD": case "REG_BINARY": case "REG_EXPAND_SZ": case "REG_MULTI_SZ": if (value == @"\") { // pad the value, so the parsing below is triggered value = @",\"; } break; } // If the end of a decimal line ends in a \ then you have to keep // reading the block as a single value! while (value.EndsWith(@",\", StringComparison.InvariantCulture)) { value = value.TrimEnd('\\'); // checking for a "blank" hex value so we can skip t if (value == @",") { value = string.Empty; } index++; if (index >= registryLines.Length) { ChangeCursor(gridPreview, false); return false; } registryLine = registryLines[index]; registryLine = ScanAndRemoveComments(registryLine); registryLine = registryLine.TrimStart(); value += registryLine; } // update the ListViewItem with the loaded value, based off REG value type switch (registryValue.Type) { case "ERROR": // do nothing break; case "REG_SZ": if (value == "\"") { // Value is most likely missing an end quote registryValue.Type = "ERROR"; value = resourceLoader.GetString("InvalidString"); } else { for (int i = 1; i < value.Length; i++) { if (value[i - 1] == '\\') { // Only allow these escape characters if (value[i] != '"' && value[i] != '\\') { registryValue.Type = "ERROR"; value = resourceLoader.GetString("InvalidString"); break; } i++; } if (i < value.Length && value[i - 1] != '\\' && value[i] == '"') { // Don't allow non-escaped quotes registryValue.Type = "ERROR"; value = resourceLoader.GetString("InvalidString"); break; } } if (registryValue.Type != "ERROR") { // Clean out any escaped characters in the value, only for the preview value = StripEscapedCharacters(value); } } registryValue.Value = value; break; case "REG_BINARY": case "REG_NONE": if (value.Length <= 0) { value = resourceLoader.GetString("ZeroLength"); } else { try { // Hexes are usually two characters (00), it's invalid if less or more than 2 var bytes = value.Split(',').Select( c => c.Length == 2 ? byte.Parse(c, NumberStyles.HexNumber, CultureInfo.InvariantCulture) : throw null); value = string.Join(' ', bytes.Select(b => b.ToString("x2", CultureInfo.CurrentCulture))); } catch { registryValue.Type = "ERROR"; value = resourceLoader.GetString("InvalidBinary"); } } registryValue.Value = value; break; case "REG_DWORD": if (value.Length <= 0) { registryValue.Type = "ERROR"; value = resourceLoader.GetString("InvalidDword"); } else { if (uint.TryParse(value, NumberStyles.HexNumber, CultureInfo.InvariantCulture, out uint dword)) { value = $"0x{dword:x8} ({dword})"; } else { registryValue.Type = "ERROR"; value = resourceLoader.GetString("InvalidDword"); } } registryValue.Value = value; break; case "REG_QWORD": if (value.Length <= 0) { registryValue.Type = "ERROR"; value = resourceLoader.GetString("InvalidQword"); } else { try { // Hexes are usually two characters (00), it's invalid if less or more than 2 var bytes = value.Split(',').Select( c => c.Length == 2 ? byte.Parse(c, NumberStyles.HexNumber, CultureInfo.InvariantCulture) : throw null).ToArray(); ulong qword = BitConverter.ToUInt64(bytes); value = $"0x{qword:x8} ({qword})"; } catch { registryValue.Type = "ERROR"; value = resourceLoader.GetString("InvalidQword"); } } registryValue.Value = value; break; case "REG_EXPAND_SZ": case "REG_MULTI_SZ": try { // Hexes are usually two characters (00), it's invalid if less or more than 2 var bytes = value.Split(',').Select( c => c.Length == 2 ? byte.Parse(c, NumberStyles.HexNumber, CultureInfo.InvariantCulture) : throw null).ToArray(); if (registryValue.Type == "REG_MULTI_SZ") { // Replace zeros (00,00) with spaces for (int i = 0; i < bytes.Length; i += 2) { if (bytes[i] == 0 && bytes[i + 1] == 0) { bytes[i] = 0x20; } } } value = Encoding.Unicode.GetString(bytes); } catch { registryValue.Type = "ERROR"; value = resourceLoader.GetString("InvalidString"); } registryValue.Value = value; break; default: registryValue.Value = value; break; } // update the ToolTip SetValueToolTip(registryValue); // store the ListViewItem, if we have a valid Key to attach to if (treeViewNode != null) { StoreTheListValue((RegistryKey)treeViewNode.Content, registryValue); } } // if we get here, it's not a Key (starts with [) or Value (starts with ") so it's likely waste (comments that start with ; fall out here) // read the next line from the REG file index++; // if we've gone too far, escape the proc! if (index >= registryLines.Length) { // check to see if anything got parsed! if (treeView.RootNodes.Count <= 0) { AddTextToTree(resourceLoader.GetString("NoNodesFoundInFile"), ERRORIMAGE); // ShowMessageBox(APPNAME, App.AppFilename + resourceLoader.GetString("InvalidRegistryFile"), resourceLoader.GetString("OkButtonText")); } ChangeCursor(gridPreview, false); return false; } // carry on with the next line registryLine = registryLines[index]; } // last check, to see if anything got parsed! if (treeView.RootNodes.Count <= 0) { ShowMessageBox(APPNAME, App.AppFilename + resourceLoader.GetString("InvalidRegistryFile"), resourceLoader.GetString("OkButtonText")); ChangeCursor(gridPreview, false); return false; } return true; } /// <summary> /// We're going to store this ListViewItem in an ArrayList which will then /// be attached to the most recently returned TreeNode that came back from /// AddTextToTree. If there's already a list there, we will use that list and /// add our new node to it. /// </summary> private void StoreTheListValue(RegistryKey registryKey, RegistryValue registryValue) { ArrayList arrayList = null; if (registryKey.Tag == null) { arrayList = new ArrayList(); } else { arrayList = (ArrayList)registryKey.Tag; } arrayList.Add(registryValue); // shove the updated array into the Tag property registryKey.Tag = arrayList; } /// <summary> /// Adds the REG file that's being currently being viewed to the app's title bar /// </summary> private void UpdateWindowTitle(string filename) { string[] file = filename.Split('\\'); if (file.Length > 0) { titleBarText.Text = file[file.Length - 1] + " - " + APPNAME; } else { titleBarText.Text = filename + " - " + APPNAME; } // Continue to update the window's title, after updating the custom title bar appWindow.Title = titleBarText.Text; } /// <summary> /// No REG file was opened, so leave the app's title bar alone /// </summary> private void UpdateWindowTitle() { titleBarText.Text = APPNAME; appWindow.Title = APPNAME; } /// <summary> /// Helper method that assumes everything is enabled/disabled together /// </summary> private void UpdateToolBarAndUI(bool enable) { UpdateToolBarAndUI(enable, enable, enable); } /// <summary> /// Enable command bar buttons and textBox. /// Note that writeButton and textBox all update with the same value on purpose /// </summary> private void UpdateToolBarAndUI(bool enableWrite, bool enableRefresh, bool enableEdit) { refreshButton.IsEnabled = enableRefresh; editButton.IsEnabled = enableEdit; writeButton.IsEnabled = enableWrite; // Now check the tree and see if anything is in there registryJumpToKeyButton.IsEnabled = CheckTreeForValidKey(); } /// <summary> /// Helper method that creates a new TreeView node, attaches it to a parent if any, and then passes the new node back to the caller /// mapRegistryKeys is a collection of all of the [] lines in the file /// keys comes from the REG file and represents a bunch of nodes /// </summary> private TreeViewNode AddTextToTree(string keys, string image) { string[] individualKeys = keys.Split('\\'); string fullPath = keys; TreeViewNode returnNewNode = null, newNode = null, previousNode = null; // Walk the list of keys backwards for (int i = individualKeys.Length - 1; i >= 0; i--) { // when a Key is marked for deletion, make sure it only sets the icon for the bottom most leaf if (image == DELETEDKEYIMAGE) { if (i < individualKeys.Length - 1) { image = KEYIMAGE; } else { // special casing for Registry roots switch (individualKeys[i]) { case "HKEY_CLASSES_ROOT": case "HKEY_CURRENT_USER": case "HKEY_LOCAL_MACHINE": case "HKEY_USERS": case "HKEY_CURRENT_CONFIG": image = KEYIMAGE; break; } } } // First check the dictionary, and return the current node if it already exists if (mapRegistryKeys.ContainsKey(fullPath)) { // was a new node created? if (returnNewNode == null) { // if no new nodes have been created, send out the node we should have already mapRegistryKeys.TryGetValue(fullPath, out returnNewNode); } else { // as a new node was created, hook it up to this found parent mapRegistryKeys.TryGetValue(fullPath, out newNode); newNode.Children.Add(previousNode); } // return the new node no matter what return returnNewNode; } // Since the path is not in the tree, create a new node and add it to the dictionary RegistryKey registryKey = new RegistryKey(individualKeys[i], fullPath, image, GetFolderToolTip(image)); newNode = new TreeViewNode() { Content = registryKey, IsExpanded = true }; mapRegistryKeys.Add(fullPath, newNode); // if this is the first new node we're creating, we need to return it to the caller if (previousNode == null) { // capture the first node so it can be returned returnNewNode = newNode; } else { // The newly created node is a parent to the previously created node, as add it here. newNode.Children.Add(previousNode); } // before moving onto the next node, tag the previous node and update the path previousNode = newNode; fullPath = fullPath.Replace(string.Format(CultureInfo.InvariantCulture, @"\{0}", individualKeys[i]), string.Empty); // One last check: if we get here, the parent of this node is not yet in the tree, so we need to add it as a RootNode if (i == 0) { treeView.RootNodes.Add(newNode); treeView.UpdateLayout(); } } return returnNewNode; } /// <summary> /// Wrapper method that shows a simple one-button message box, parented by the main application window /// </summary> private async void ShowMessageBox(string title, string content, string closeButtonText) { ContentDialog contentDialog = new ContentDialog() { Title = title, Content = content, CloseButtonText = closeButtonText, }; // Use this code to associate the dialog to the appropriate AppWindow by setting // the dialog's XamlRoot to the same XamlRoot as an element that is already present in the AppWindow. if (ApiInformation.IsApiContractPresent("Windows.Foundation.UniversalApiContract", 8)) { contentDialog.XamlRoot = this.Content.XamlRoot; } await contentDialog.ShowAsync(); } /// <summary> /// Wrapper method that shows a Save/Don't Save/Cancel message box, parented by the main application window and shown when closing the app /// </summary> private async void HandleDirtyClosing(string title, string content, string primaryButtonText, string secondaryButtonText, string closeButtonText) { ContentDialog contentDialog = new ContentDialog() { Title = title, Content = content, PrimaryButtonText = primaryButtonText, SecondaryButtonText = secondaryButtonText, CloseButtonText = closeButtonText, DefaultButton = ContentDialogButton.Primary, }; // Use this code to associate the dialog to the appropriate AppWindow by setting // the dialog's XamlRoot to the same XamlRoot as an element that is already present in the AppWindow. if (ApiInformation.IsApiContractPresent("Windows.Foundation.UniversalApiContract", 8)) { contentDialog.XamlRoot = this.Content.XamlRoot; } ContentDialogResult contentDialogResult = await contentDialog.ShowAsync(); switch (contentDialogResult) { case ContentDialogResult.Primary: // Save, then close SaveFile(); break; case ContentDialogResult.Secondary: // Don't save, and then close! saveButton.IsEnabled = false; break; default: // Cancel closing! return; } // if we got here, we should try to close again App.Current.Exit(); } /// <summary> /// Method will open the Registry Editor or merge the current REG file into the Registry via the Editor /// Process will prompt for elevation if it needs it. /// </summary> private void OpenRegistryEditor(string fileMerge) { Process process = new Process(); process.StartInfo.FileName = "regedit.exe"; process.StartInfo.UseShellExecute = true; if (File.Exists(fileMerge)) { // If Merge was called, pass in the filename as a param to the Editor process.StartInfo.Arguments = string.Format(CultureInfo.InvariantCulture, "\"{0}\"", fileMerge); } try { process.Start(); } catch { ShowMessageBox( resourceLoader.GetString("UACDialogTitle"), resourceLoader.GetString("UACDialogError"), resourceLoader.GetString("OkButtonText")); } } /// <summary> /// Utility method that clears out the GridView as there's no other way to do it. /// </summary> private void ClearTable() { if (listRegistryValues != null) { listRegistryValues.Clear(); } dataGrid.ItemsSource = null; } /// <summary> /// Change the current app cursor at the grid level to be a wait cursor. Sort of works, sort of doesn't, but it's a nice attempt. /// </summary> public void ChangeCursor(UIElement uiElement, bool wait) { // You can only change the Cursor if the visual tree is loaded if (!visualTreeReady) { return; } InputCursor cursor = InputSystemCursor.Create(wait ? InputSystemCursorShape.Wait : InputSystemCursorShape.Arrow); System.Type type = typeof(UIElement); type.InvokeMember("ProtectedCursor", BindingFlags.Public | BindingFlags.NonPublic | BindingFlags.SetProperty | BindingFlags.Instance, null, uiElement, new object[] { cursor }, CultureInfo.InvariantCulture); } /// <summary> /// Wrapper method that saves the current file in place, using the current text in textBox. /// </summary> private void SaveFile() { ChangeCursor(gridPreview, true); // set up the FileStream for all writing FileStream fileStream = null; try { // attempt to open the existing file for writing FileStreamOptions fileStreamOptions = new FileStreamOptions(); fileStreamOptions.Access = FileAccess.Write; fileStreamOptions.Share = FileShare.Write; fileStreamOptions.Mode = FileMode.Create; fileStream = new FileStream(App.AppFilename, fileStreamOptions); StreamWriter streamWriter = new StreamWriter(fileStream, System.Text.Encoding.Unicode); // if we get here, the file is open and writable so dump the whole contents of textBox string filenameText = textBox.Text; streamWriter.Write(filenameText); streamWriter.Flush(); streamWriter.Close(); // only change when the save is successful saveButton.IsEnabled = false; } catch (UnauthorizedAccessException ex) { // this exception is thrown if the file is there but marked as read only ShowMessageBox( resourceLoader.GetString("ErrorDialogTitle"), ex.Message, resourceLoader.GetString("OkButtonText")); } catch { // this catch handles all other exceptions thrown when trying to write the file out ShowMessageBox( resourceLoader.GetString("ErrorDialogTitle"), resourceLoader.GetString("FileSaveError"), resourceLoader.GetString("OkButtonText")); } finally { // clean up no matter what if (fileStream != null) { fileStream.Dispose(); } } // restore the cursor ChangeCursor(gridPreview, false); } private void OpenWindowPlacementFile(string path, string filename) { string fileContents = string.Empty; string storageFile = Path.Combine(path, filename); if (File.Exists(storageFile)) { try { TextReader reader = new StreamReader(storageFile); fileContents = reader.ReadToEnd(); reader.Close(); } catch { // set up default JSON blob fileContents = "{ }"; } } else { Task.Run(() => SaveWindowPlacementFile(path, filename)).GetAwaiter().GetResult(); } try { jsonWindowPlacement = Windows.Data.Json.JsonObject.Parse(fileContents); } catch { // set up default JSON blob fileContents = "{ }"; jsonWindowPlacement = Windows.Data.Json.JsonObject.Parse(fileContents); } } /// <summary> /// Save the window placement JSON blob out to a local file /// </summary> private async void SaveWindowPlacementFile(string path, string filename) { StorageFolder storageFolder = null; StorageFile storageFile = null; string fileContents = string.Empty; try { storageFolder = await StorageFolder.GetFolderFromPathAsync(path); } catch (FileNotFoundException ex) { Debug.WriteLine(ex.Message); Directory.CreateDirectory(path); storageFolder = await StorageFolder.GetFolderFromPathAsync(path); } try { storageFile = await storageFolder.CreateFileAsync(filename, CreationCollisionOption.OpenIfExists); } catch (FileNotFoundException ex) { Debug.WriteLine(ex.Message); storageFile = await storageFolder.CreateFileAsync(filename); } try { fileContents = jsonWindowPlacement.Stringify(); await Windows.Storage.FileIO.WriteTextAsync(storageFile, fileContents); } catch (Exception ex) { Debug.WriteLine(ex.Message); } } /// <summary> /// Rip the first and last character off a string, /// checking that the string is at least 2 characters long to avoid errors /// </summary> private string StripFirstAndLast(string line) { if (line.Length > 1) { line = line.Remove(line.Length - 1, 1); line = line.Remove(0, 1); } return line; } /// <summary> /// Replace any escaped characters in the REG file with their counterparts, for the UX /// </summary> private string StripEscapedCharacters(string value) { value = value.Replace("\\\\", "\\"); // Replace \\ with \ in the UI value = value.Replace("\\\"", "\""); // Replace \" with " in the UI return value; } /// <summary> /// Loads and returns a string for a given Key's image in the tree, based off the current set image /// </summary> private string GetFolderToolTip(string key) { string value = string.Empty; switch (key) { case DELETEDKEYIMAGE: value = resourceLoader.GetString("ToolTipDeletedKey"); break; case KEYIMAGE: value = resourceLoader.GetString("ToolTipAddedKey"); break; case ERRORIMAGE: value = resourceLoader.GetString("ToolTipErrorKey"); break; } return value; } /// <summary> /// Loads a string for a given Value's image in the grid, based off the current type and updates the RegistryValue that's passed in /// </summary> private void SetValueToolTip(RegistryValue registryValue) { string value = string.Empty; switch (registryValue.Type) { case "REG_SZ": case "REG_EXAND_SZ": case "REG_MULTI_SZ": value = resourceLoader.GetString("ToolTipStringValue"); break; case "ERROR": value = resourceLoader.GetString("ToolTipErrorValue"); break; case "": value = resourceLoader.GetString("ToolTipDeletedValue"); break; default: value = resourceLoader.GetString("ToolTipBinaryValue"); break; } registryValue.ToolTipText = value; } /// <summary> /// Checks a Key line for the closing bracket and treat it as an error if it cannot be found /// </summary> private void CheckKeyLineForBrackets(ref string registryLine, ref string imageName) { // following the current behavior of the registry editor, find the last ] and treat everything else as ignorable int lastBracket = registryLine.LastIndexOf(']'); if (lastBracket == -1) { // since we don't have a last bracket yet, add an extra space and continue processing registryLine += " "; imageName = ERRORIMAGE; } else { // having found the last ] and there is text after it, drop the rest of the string on the floor if (lastBracket < registryLine.Length - 1) { registryLine = registryLine.Substring(0, lastBracket + 1); } if (CheckForKnownGoodBranches(registryLine) == false) { imageName = ERRORIMAGE; } } } /// <summary> /// Takes a binary registry value, sees if it has a ; and dumps the rest of the line - this does not work for REG_SZ values /// </summary> private string ScanAndRemoveComments(string value) { // scan for comments and remove them int indexOf = value.IndexOf(";", StringComparison.InvariantCulture); if (indexOf > -1) { // presume that there is nothing following the start of the comment value = value.Remove(indexOf, value.Length - indexOf); } return value.TrimEnd(); } /// <summary> /// Make sure the root of a full path start with one of the five "hard coded" roots. Throw an error for the branch if it doesn't. /// </summary> private bool CheckForKnownGoodBranches(string key) { if ((key.StartsWith("[HKEY_CLASSES_ROOT]", StringComparison.InvariantCultureIgnoreCase) == false && key.StartsWith("[HKEY_CURRENT_USER]", StringComparison.InvariantCultureIgnoreCase) == false && key.StartsWith("[HKEY_USERS]", StringComparison.InvariantCultureIgnoreCase) == false && key.StartsWith("[HKEY_LOCAL_MACHINE]", StringComparison.InvariantCultureIgnoreCase) == false && key.StartsWith("[HKEY_CURRENT_CONFIG]", StringComparison.InvariantCultureIgnoreCase) == false) && (key.StartsWith(@"[HKEY_CLASSES_ROOT\", StringComparison.InvariantCultureIgnoreCase) == false && key.StartsWith(@"[HKEY_CURRENT_USER\", StringComparison.InvariantCultureIgnoreCase) == false && key.StartsWith(@"[HKEY_USERS\", StringComparison.InvariantCultureIgnoreCase) == false && key.StartsWith(@"[HKEY_LOCAL_MACHINE\", StringComparison.InvariantCultureIgnoreCase) == false && key.StartsWith(@"[HKEY_CURRENT_CONFIG\", StringComparison.InvariantCultureIgnoreCase) == false)) { return false; } return true; } /// <summary> /// Turns the Open Key button in the command bar on/off, depending on if a key is selected /// </summary> private bool CheckTreeForValidKey() { if (treeView == null) { return false; } // See if a key is available TreeViewNode treeViewNode = treeView.SelectedNode; if (treeViewNode != null && ((RegistryKey)treeViewNode.Content).Image != ERRORIMAGE) { return true; } return false; } } }
// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using System.Collections; using System.Collections.Generic; using System.Diagnostics; using System.Globalization; using System.IO; using System.Linq; using System.Reflection; using System.Text; using System.Threading.Tasks; using Microsoft.UI.Input; using Microsoft.UI.Xaml; using Microsoft.UI.Xaml.Controls; using Windows.Foundation.Metadata; using Windows.Storage; using WinUIEx; namespace RegistryPreview { public sealed partial class MainWindow : WindowEx { /// <summary> /// Method that opens and processes the passed in file name; expected to be an absolute path and a first time open /// </summary> private bool OpenRegistryFile(string filename) { // clamp to prevent attempts to open a file larger than 10MB try { long fileLength = new System.IO.FileInfo(filename).Length; if (fileLength > 10485760) { ShowMessageBox(resourceLoader.GetString("LargeRegistryFileTitle"), App.AppFilename + resourceLoader.GetString("LargeRegistryFile"), resourceLoader.GetString("OkButtonText")); ChangeCursor(gridPreview, false); return false; } } catch { // Do nothing here - a missing or invalid file will be caught below } // Disable parts of the UI that can cause trouble when loading ChangeCursor(gridPreview, true); textBox.Text = string.Empty; // clear the treeView and dataGrid no matter what treeView.RootNodes.Clear(); ClearTable(); // update the current window's title with the current filename UpdateWindowTitle(filename); // Load in the whole file in one call and plop it all into textBox FileStream fileStream = null; try { FileStreamOptions fileStreamOptions = new FileStreamOptions(); fileStreamOptions.Access = FileAccess.Read; fileStreamOptions.Share = FileShare.ReadWrite; fileStreamOptions.Mode = FileMode.Open; fileStream = new FileStream(filename, fileStreamOptions); StreamReader streamReader = new StreamReader(fileStream); string filenameText = streamReader.ReadToEnd(); textBox.Text = filenameText; streamReader.Close(); } catch { // restore TextChanged handler to make for clean UI textBox.TextChanged += TextBox_TextChanged; // Reset the cursor but leave textBox disabled as no content got loaded ChangeCursor(gridPreview, false); return false; } finally { // clean up no matter what if (fileStream != null) { fileStream.Dispose(); } } // now that the file is loaded and in textBox, parse the data ParseRegistryFile(textBox.Text); // Getting here means that the entire REG file was parsed without incident // so select the root of the tree and celebrate if (treeView.RootNodes.Count > 0) { treeView.SelectedNode = treeView.RootNodes[0]; treeView.Focus(FocusState.Programmatic); } // reset the cursor ChangeCursor(gridPreview, false); return true; } /// <summary> /// Method that re-opens and processes the filename the app already knows about; expected to not be a first time open /// </summary> private void RefreshRegistryFile() { // Disable parts of the UI that can cause trouble when loading ChangeCursor(gridPreview, true); // Get the current selected node so we can return focus to an existing node TreeViewNode currentNode = treeView.SelectedNode; // clear the treeView and dataGrid no matter what treeView.RootNodes.Clear(); ClearTable(); // the existing text is still in textBox so parse the data again ParseRegistryFile(textBox.Text); // check to see if there was a key in treeView before the refresh happened if (currentNode != null) { // since there is a valid node, get the FullPath of the key that was selected string selectedFullPath = ((RegistryKey)currentNode.Content).FullPath; // check to see if we still have the key in the new Dictionary of keys if (mapRegistryKeys.ContainsKey(selectedFullPath)) { // we found it! select it in the tree and pretend it was selected TreeViewNode treeViewNode; mapRegistryKeys.TryGetValue(selectedFullPath, out treeViewNode); treeView.SelectedNode = treeViewNode; TreeView_ItemInvoked(treeView, null); } else { // we failed to find an existing node; it could have been deleted in the edit if (treeView.RootNodes.Count > 0) { treeView.SelectedNode = treeView.RootNodes[0]; } } } else { // no node was previously selected so check for a RootNode and select it if (treeView.RootNodes.Count > 0) { treeView.SelectedNode = treeView.RootNodes[0]; } } // Update the toolbar button for the trees registryJumpToKeyButton.IsEnabled = CheckTreeForValidKey(); // enable the UI ChangeCursor(gridPreview, false); } /// <summary> /// Parses the text that is passed in, which should be the same text that's in textBox /// </summary> private bool ParseRegistryFile(string filenameText) { // if this is a not-first open, clear out the Dictionary of nodes if (mapRegistryKeys != null) { mapRegistryKeys.Clear(); mapRegistryKeys = null; } // set up a new dictionary mapRegistryKeys = new Dictionary<string, TreeViewNode>(StringComparer.InvariantCultureIgnoreCase); // As we'll be processing the text one line at a time, this string will be the current line string registryLine; // Brute force editing: for textBox to show Cr-Lf corrected, we need to strip out the \n's filenameText = filenameText.Replace("\r\n", "\r"); // split apart all of the text in textBox, where one element in the array represents one line string[] registryLines = filenameText.Split("\r"); if (registryLines.Length <= 1) { // after the split, we have no lines so get out ChangeCursor(gridPreview, false); return false; } // REG files have to start with one of two headers and it's case insensitive registryLine = registryLines[0]; registryLine = registryLine.ToLowerInvariant(); // make sure that this is a valid REG file, based on the first line of the file switch (registryLine) { case REGISTRYHEADER4: case REGISTRYHEADER5: break; default: ShowMessageBox(APPNAME, App.AppFilename + resourceLoader.GetString("InvalidRegistryFile"), resourceLoader.GetString("OkButtonText")); ChangeCursor(gridPreview, false); return false; } // these are used for populating the tree as we read in one line at a time TreeViewNode treeViewNode = null; RegistryValue registryValue = null; // start with the first element of the array int index = 1; registryLine = registryLines[index]; while (index < registryLines.Length) { // special case for when the registryLine begins with a @ - make some tweaks and // let the regular processing handle the rest. if (registryLine.StartsWith("@=-", StringComparison.InvariantCulture)) { // REG file has a callout to delete the @ Value which won't work *but* the Registry Editor will // clear the value of the @ Value instead, so it's still a valid line. registryLine = registryLine.Replace("@=-", "\"(Default)\"=\"\""); } else if (registryLine.StartsWith("@=", StringComparison.InvariantCulture)) { // This is the a Value called "(Default)" so we tweak the line for the UX registryLine = registryLine.Replace("@=", "\"(Default)\"="); } // continue until we have nothing left to read // switch logic, based off what the current line we're reading is if (registryLine.StartsWith("[-", StringComparison.InvariantCulture)) { // remove the - as we won't need it but it will get special treatment in the UI registryLine = registryLine.Remove(1, 1); string imageName = DELETEDKEYIMAGE; CheckKeyLineForBrackets(ref registryLine, ref imageName); // this is a key, so remove the first [ and last ] registryLine = StripFirstAndLast(registryLine); // do not track the result of this node, since it should have no children AddTextToTree(registryLine, imageName); } else if (registryLine.StartsWith("[", StringComparison.InvariantCulture)) { string imageName = KEYIMAGE; CheckKeyLineForBrackets(ref registryLine, ref imageName); // this is a key, so remove the first [ and last ] registryLine = StripFirstAndLast(registryLine); treeViewNode = AddTextToTree(registryLine, imageName); } else if (registryLine.StartsWith("\"", StringComparison.InvariantCulture) && registryLine.EndsWith("=-", StringComparison.InvariantCulture)) { // this line deletes this value so it gets special treatment for the UI registryLine = registryLine.Replace("=-", string.Empty); // remove the "'s without removing all of them registryLine = StripFirstAndLast(registryLine); // Create a new listview item that will be used to display the delete value and store it registryValue = new RegistryValue(registryLine, string.Empty, string.Empty); SetValueToolTip(registryValue); // store the ListViewItem, if we have a valid Key to attach to if (treeViewNode != null) { StoreTheListValue((RegistryKey)treeViewNode.Content, registryValue); } } else if (registryLine.StartsWith("\"", StringComparison.InvariantCulture)) { // this is a named value // split up the name from the value by looking for the first found = int equal = registryLine.IndexOf('='); if ((equal < 0) || (equal > registryLine.Length - 1)) { // something is very wrong Debug.WriteLine(string.Format(CultureInfo.InvariantCulture, "SOMETHING WENT WRONG: {0}", registryLine)); break; } // set the name and the value string name = registryLine.Substring(0, equal); // trim the whitespace and quotes from the name name = name.Trim(); name = StripFirstAndLast(name); // Clean out any escaped characters in the value, only for the preview name = StripEscapedCharacters(name); // set the value string value = registryLine.Substring(equal + 1); // trim the whitespace from the value value = value.Trim(); // Create a new listview item that will be used to display the value registryValue = new RegistryValue(name, "REG_SZ", string.Empty); // if the first character is a " then this is a string value, so find the last most " which will avoid comments if (value.StartsWith("\"", StringComparison.InvariantCulture)) { int last = value.LastIndexOf("\"", StringComparison.InvariantCulture); if (last >= 0) { value = value.Substring(0, last + 1); } } if (value.StartsWith("\"", StringComparison.InvariantCulture) && value.EndsWith("\"", StringComparison.InvariantCulture)) { value = StripFirstAndLast(value); } else { // this is an invalid value as there are no "s in the right side of the = registryValue.Type = "ERROR"; } if (value.StartsWith("dword:", StringComparison.InvariantCultureIgnoreCase)) { registryValue.Type = "REG_DWORD"; value = value.Replace("dword:", string.Empty); } else if (value.StartsWith("hex(b):", StringComparison.InvariantCultureIgnoreCase)) { registryValue.Type = "REG_QWORD"; value = value.Replace("hex(b):", string.Empty); } else if (value.StartsWith("hex:", StringComparison.InvariantCultureIgnoreCase)) { registryValue.Type = "REG_BINARY"; value = value.Replace("hex:", string.Empty); } else if (value.StartsWith("hex(2):", StringComparison.InvariantCultureIgnoreCase)) { registryValue.Type = "REG_EXPAND_SZ"; value = value.Replace("hex(2):", string.Empty); } else if (value.StartsWith("hex(7):", StringComparison.InvariantCultureIgnoreCase)) { registryValue.Type = "REG_MULTI_SZ"; value = value.Replace("hex(7):", string.Empty); } else if (value.StartsWith("hex(0):", StringComparison.InvariantCultureIgnoreCase)) { registryValue.Type = "REG_NONE"; value = value.Replace("hex(0):", string.Empty); } // special casing for various key types switch (registryValue.Type) { case "REG_SZ": case "ERROR": // no special handling for these two break; default: // check to see if a continuation marker is the first character if (value == @"\") { // pad the value, so the parsing below is triggered value = @",\"; } value = ScanAndRemoveComments(value); break; } // Parse for the case where a \ is added immediately after hex is declared switch (registryValue.Type) { case "REG_QWORD": case "REG_BINARY": case "REG_EXPAND_SZ": case "REG_MULTI_SZ": if (value == @"\") { // pad the value, so the parsing below is triggered value = @",\"; } break; } // If the end of a decimal line ends in a \ then you have to keep // reading the block as a single value! while (value.EndsWith(@",\", StringComparison.InvariantCulture)) { value = value.TrimEnd('\\'); // checking for a "blank" hex value so we can skip t if (value == @",") { value = string.Empty; } index++; if (index >= registryLines.Length) { ChangeCursor(gridPreview, false); return false; } registryLine = registryLines[index]; registryLine = ScanAndRemoveComments(registryLine); registryLine = registryLine.TrimStart(); value += registryLine; } // update the ListViewItem with the loaded value, based off REG value type switch (registryValue.Type) { case "ERROR": // do nothing break; case "REG_SZ": if (value == "\"") { // Value is most likely missing an end quote registryValue.Type = "ERROR"; value = resourceLoader.GetString("InvalidString"); } else { for (int i = 1; i < value.Length; i++) { if (value[i - 1] == '\\') { // Only allow these escape characters if (value[i] != '"' && value[i] != '\\') { registryValue.Type = "ERROR"; value = resourceLoader.GetString("InvalidString"); break; } i++; } if (i < value.Length && value[i - 1] != '\\' && value[i] == '"') { // Don't allow non-escaped quotes registryValue.Type = "ERROR"; value = resourceLoader.GetString("InvalidString"); break; } } if (registryValue.Type != "ERROR") { // Clean out any escaped characters in the value, only for the preview value = StripEscapedCharacters(value); } } registryValue.Value = value; break; case "REG_BINARY": case "REG_NONE": if (value.Length <= 0) { value = resourceLoader.GetString("ZeroLength"); } else { try { // Hexes are usually two characters (00), it's invalid if less or more than 2 var bytes = value.Split(',').Select( c => c.Length == 2 ? byte.Parse(c, NumberStyles.HexNumber, CultureInfo.InvariantCulture) : throw null); value = string.Join(' ', bytes.Select(b => b.ToString("x2", CultureInfo.CurrentCulture))); } catch { registryValue.Type = "ERROR"; value = resourceLoader.GetString("InvalidBinary"); } } registryValue.Value = value; break; case "REG_DWORD": if (value.Length <= 0) { registryValue.Type = "ERROR"; value = resourceLoader.GetString("InvalidDword"); } else { if (uint.TryParse(value, NumberStyles.HexNumber, CultureInfo.InvariantCulture, out uint dword)) { value = $"0x{dword:x8} ({dword})"; } else { registryValue.Type = "ERROR"; value = resourceLoader.GetString("InvalidDword"); } } registryValue.Value = value; break; case "REG_QWORD": if (value.Length <= 0) { registryValue.Type = "ERROR"; value = resourceLoader.GetString("InvalidQword"); } else { try { // Hexes are usually two characters (00), it's invalid if less or more than 2 var bytes = value.Split(',').Select( c => c.Length == 2 ? byte.Parse(c, NumberStyles.HexNumber, CultureInfo.InvariantCulture) : throw null).ToArray(); ulong qword = BitConverter.ToUInt64(bytes); value = $"0x{qword:x8} ({qword})"; } catch { registryValue.Type = "ERROR"; value = resourceLoader.GetString("InvalidQword"); } } registryValue.Value = value; break; case "REG_EXPAND_SZ": case "REG_MULTI_SZ": try { // Hexes are usually two characters (00), it's invalid if less or more than 2 var bytes = value.Split(',').Select( c => c.Length == 2 ? byte.Parse(c, NumberStyles.HexNumber, CultureInfo.InvariantCulture) : throw null).ToArray(); if (registryValue.Type == "REG_MULTI_SZ") { // Replace zeros (00,00) with spaces for (int i = 0; i < bytes.Length; i += 2) { if (bytes[i] == 0 && bytes[i + 1] == 0) { bytes[i] = 0x20; } } } value = Encoding.Unicode.GetString(bytes); } catch { registryValue.Type = "ERROR"; value = resourceLoader.GetString("InvalidString"); } registryValue.Value = value; break; default: registryValue.Value = value; break; } // update the ToolTip SetValueToolTip(registryValue); // store the ListViewItem, if we have a valid Key to attach to if (treeViewNode != null) { StoreTheListValue((RegistryKey)treeViewNode.Content, registryValue); } } // if we get here, it's not a Key (starts with [) or Value (starts with ") so it's likely waste (comments that start with ; fall out here) // read the next line from the REG file index++; // if we've gone too far, escape the proc! if (index >= registryLines.Length) { // check to see if anything got parsed! if (treeView.RootNodes.Count <= 0) { AddTextToTree(resourceLoader.GetString("NoNodesFoundInFile"), ERRORIMAGE); // ShowMessageBox(APPNAME, App.AppFilename + resourceLoader.GetString("InvalidRegistryFile"), resourceLoader.GetString("OkButtonText")); } ChangeCursor(gridPreview, false); return false; } // carry on with the next line registryLine = registryLines[index]; } // last check, to see if anything got parsed! if (treeView.RootNodes.Count <= 0) { ShowMessageBox(APPNAME, App.AppFilename + resourceLoader.GetString("InvalidRegistryFile"), resourceLoader.GetString("OkButtonText")); ChangeCursor(gridPreview, false); return false; } return true; } /// <summary> /// We're going to store this ListViewItem in an ArrayList which will then /// be attached to the most recently returned TreeNode that came back from /// AddTextToTree. If there's already a list there, we will use that list and /// add our new node to it. /// </summary> private void StoreTheListValue(RegistryKey registryKey, RegistryValue registryValue) { ArrayList arrayList = null; if (registryKey.Tag == null) { arrayList = new ArrayList(); } else { arrayList = (ArrayList)registryKey.Tag; } arrayList.Add(registryValue); // shove the updated array into the Tag property registryKey.Tag = arrayList; } /// <summary> /// Adds the REG file that's being currently being viewed to the app's title bar /// </summary> private void UpdateWindowTitle(string filename) { string[] file = filename.Split('\\'); if (file.Length > 0) { titleBarText.Text = file[file.Length - 1] + " - " + APPNAME; } else { titleBarText.Text = filename + " - " + APPNAME; } // Continue to update the window's title, after updating the custom title bar appWindow.Title = titleBarText.Text; } /// <summary> /// No REG file was opened, so leave the app's title bar alone /// </summary> private void UpdateWindowTitle() { titleBarText.Text = APPNAME; appWindow.Title = APPNAME; } /// <summary> /// Helper method that assumes everything is enabled/disabled together /// </summary> private void UpdateToolBarAndUI(bool enable) { UpdateToolBarAndUI(enable, enable, enable); } /// <summary> /// Enable command bar buttons and textBox. /// Note that writeButton and textBox all update with the same value on purpose /// </summary> private void UpdateToolBarAndUI(bool enableWrite, bool enableRefresh, bool enableEdit) { refreshButton.IsEnabled = enableRefresh; editButton.IsEnabled = enableEdit; writeButton.IsEnabled = enableWrite; // Now check the tree and see if anything is in there registryJumpToKeyButton.IsEnabled = CheckTreeForValidKey(); } /// <summary> /// Helper method that creates a new TreeView node, attaches it to a parent if any, and then passes the new node back to the caller /// mapRegistryKeys is a collection of all of the [] lines in the file /// keys comes from the REG file and represents a bunch of nodes /// </summary> private TreeViewNode AddTextToTree(string keys, string image) { string[] individualKeys = keys.Split('\\'); string fullPath = keys; TreeViewNode returnNewNode = null, newNode = null, previousNode = null; // Walk the list of keys backwards for (int i = individualKeys.Length - 1; i >= 0; i--) { // when a Key is marked for deletion, make sure it only sets the icon for the bottom most leaf if (image == DELETEDKEYIMAGE) { if (i < individualKeys.Length - 1) { image = KEYIMAGE; } else { // special casing for Registry roots switch (individualKeys[i]) { case "HKEY_CLASSES_ROOT": case "HKEY_CURRENT_USER": case "HKEY_LOCAL_MACHINE": case "HKEY_USERS": case "HKEY_CURRENT_CONFIG": image = KEYIMAGE; break; } } } // First check the dictionary, and return the current node if it already exists if (mapRegistryKeys.ContainsKey(fullPath)) { // was a new node created? if (returnNewNode == null) { // if no new nodes have been created, send out the node we should have already mapRegistryKeys.TryGetValue(fullPath, out returnNewNode); } else { // as a new node was created, hook it up to this found parent mapRegistryKeys.TryGetValue(fullPath, out newNode); newNode.Children.Add(previousNode); } // return the new node no matter what return returnNewNode; } // Since the path is not in the tree, create a new node and add it to the dictionary RegistryKey registryKey = new RegistryKey(individualKeys[i], fullPath, image, GetFolderToolTip(image)); newNode = new TreeViewNode() { Content = registryKey, IsExpanded = true }; mapRegistryKeys.Add(fullPath, newNode); // if this is the first new node we're creating, we need to return it to the caller if (previousNode == null) { // capture the first node so it can be returned returnNewNode = newNode; } else { // The newly created node is a parent to the previously created node, as add it here. newNode.Children.Add(previousNode); } // before moving onto the next node, tag the previous node and update the path previousNode = newNode; fullPath = fullPath.Replace(string.Format(CultureInfo.InvariantCulture, @"\{0}", individualKeys[i]), string.Empty); // One last check: if we get here, the parent of this node is not yet in the tree, so we need to add it as a RootNode if (i == 0) { treeView.RootNodes.Add(newNode); treeView.UpdateLayout(); } } return returnNewNode; } /// <summary> /// Wrapper method that shows a simple one-button message box, parented by the main application window /// </summary> private async void ShowMessageBox(string title, string content, string closeButtonText) { ContentDialog contentDialog = new ContentDialog() { Title = title, Content = content, CloseButtonText = closeButtonText, }; // Use this code to associate the dialog to the appropriate AppWindow by setting // the dialog's XamlRoot to the same XamlRoot as an element that is already present in the AppWindow. if (ApiInformation.IsApiContractPresent("Windows.Foundation.UniversalApiContract", 8)) { contentDialog.XamlRoot = this.Content.XamlRoot; } await contentDialog.ShowAsync(); } /// <summary> /// Wrapper method that shows a Save/Don't Save/Cancel message box, parented by the main application window and shown when closing the app /// </summary> private async void HandleDirtyClosing(string title, string content, string primaryButtonText, string secondaryButtonText, string closeButtonText) { ContentDialog contentDialog = new ContentDialog() { Title = title, Content = content, PrimaryButtonText = primaryButtonText, SecondaryButtonText = secondaryButtonText, CloseButtonText = closeButtonText, DefaultButton = ContentDialogButton.Primary, }; // Use this code to associate the dialog to the appropriate AppWindow by setting // the dialog's XamlRoot to the same XamlRoot as an element that is already present in the AppWindow. if (ApiInformation.IsApiContractPresent("Windows.Foundation.UniversalApiContract", 8)) { contentDialog.XamlRoot = this.Content.XamlRoot; } ContentDialogResult contentDialogResult = await contentDialog.ShowAsync(); switch (contentDialogResult) { case ContentDialogResult.Primary: // Save, then close SaveFile(); break; case ContentDialogResult.Secondary: // Don't save, and then close! saveButton.IsEnabled = false; break; default: // Cancel closing! return; } // if we got here, we should try to close again App.Current.Exit(); } /// <summary> /// Method will open the Registry Editor or merge the current REG file into the Registry via the Editor /// Process will prompt for elevation if it needs it. /// </summary> private void OpenRegistryEditor(string fileMerge) { Process process = new Process(); process.StartInfo.FileName = "regedit.exe"; process.StartInfo.UseShellExecute = true; if (File.Exists(fileMerge)) { // If Merge was called, pass in the filename as a param to the Editor process.StartInfo.Arguments = string.Format(CultureInfo.InvariantCulture, "\"{0}\"", fileMerge); } try { process.Start(); } catch { ShowMessageBox( resourceLoader.GetString("UACDialogTitle"), resourceLoader.GetString("UACDialogError"), resourceLoader.GetString("OkButtonText")); } } /// <summary> /// Utility method that clears out the GridView as there's no other way to do it. /// </summary> private void ClearTable() { if (listRegistryValues != null) { listRegistryValues.Clear(); } dataGrid.ItemsSource = null; } /// <summary> /// Change the current app cursor at the grid level to be a wait cursor. Sort of works, sort of doesn't, but it's a nice attempt. /// </summary> public void ChangeCursor(UIElement uiElement, bool wait) { // You can only change the Cursor if the visual tree is loaded if (!visualTreeReady) { return; } InputCursor cursor = InputSystemCursor.Create(wait ? InputSystemCursorShape.Wait : InputSystemCursorShape.Arrow); System.Type type = typeof(UIElement); type.InvokeMember("ProtectedCursor", BindingFlags.Public | BindingFlags.NonPublic | BindingFlags.SetProperty | BindingFlags.Instance, null, uiElement, new object[] { cursor }, CultureInfo.InvariantCulture); } /// <summary> /// Wrapper method that saves the current file in place, using the current text in textBox. /// </summary> private void SaveFile() { ChangeCursor(gridPreview, true); // set up the FileStream for all writing FileStream fileStream = null; try { // attempt to open the existing file for writing FileStreamOptions fileStreamOptions = new FileStreamOptions(); fileStreamOptions.Access = FileAccess.Write; fileStreamOptions.Share = FileShare.Write; fileStreamOptions.Mode = FileMode.Create; fileStream = new FileStream(App.AppFilename, fileStreamOptions); StreamWriter streamWriter = new StreamWriter(fileStream, System.Text.Encoding.Unicode); // if we get here, the file is open and writable so dump the whole contents of textBox string filenameText = textBox.Text; streamWriter.Write(filenameText); streamWriter.Flush(); streamWriter.Close(); // only change when the save is successful saveButton.IsEnabled = false; } catch (UnauthorizedAccessException ex) { // this exception is thrown if the file is there but marked as read only ShowMessageBox( resourceLoader.GetString("ErrorDialogTitle"), ex.Message, resourceLoader.GetString("OkButtonText")); } catch { // this catch handles all other exceptions thrown when trying to write the file out ShowMessageBox( resourceLoader.GetString("ErrorDialogTitle"), resourceLoader.GetString("FileSaveError"), resourceLoader.GetString("OkButtonText")); } finally { // clean up no matter what if (fileStream != null) { fileStream.Dispose(); } } // restore the cursor ChangeCursor(gridPreview, false); } private void OpenWindowPlacementFile(string path, string filename) { string fileContents = string.Empty; string storageFile = Path.Combine(path, filename); if (File.Exists(storageFile)) { try { TextReader reader = new StreamReader(storageFile); fileContents = reader.ReadToEnd(); reader.Close(); } catch { // set up default JSON blob fileContents = "{ }"; } } else { Task.Run(() => SaveWindowPlacementFile(path, filename)).GetAwaiter().GetResult(); } try { jsonWindowPlacement = Windows.Data.Json.JsonObject.Parse(fileContents); } catch { // set up default JSON blob fileContents = "{ }"; jsonWindowPlacement = Windows.Data.Json.JsonObject.Parse(fileContents); } } /// <summary> /// Save the window placement JSON blob out to a local file /// </summary> private async void SaveWindowPlacementFile(string path, string filename) { StorageFolder storageFolder = null; StorageFile storageFile = null; string fileContents = string.Empty; try { storageFolder = await StorageFolder.GetFolderFromPathAsync(path); } catch (FileNotFoundException ex) { Debug.WriteLine(ex.Message); Directory.CreateDirectory(path); storageFolder = await StorageFolder.GetFolderFromPathAsync(path); } try { storageFile = await storageFolder.CreateFileAsync(filename, CreationCollisionOption.OpenIfExists); } catch (FileNotFoundException ex) { Debug.WriteLine(ex.Message); storageFile = await storageFolder.CreateFileAsync(filename); } try { if (jsonWindowPlacement != null) { fileContents = jsonWindowPlacement.Stringify(); await Windows.Storage.FileIO.WriteTextAsync(storageFile, fileContents); } } catch (Exception ex) { Debug.WriteLine(ex.Message); } } /// <summary> /// Rip the first and last character off a string, /// checking that the string is at least 2 characters long to avoid errors /// </summary> private string StripFirstAndLast(string line) { if (line.Length > 1) { line = line.Remove(line.Length - 1, 1); line = line.Remove(0, 1); } return line; } /// <summary> /// Replace any escaped characters in the REG file with their counterparts, for the UX /// </summary> private string StripEscapedCharacters(string value) { value = value.Replace("\\\\", "\\"); // Replace \\ with \ in the UI value = value.Replace("\\\"", "\""); // Replace \" with " in the UI return value; } /// <summary> /// Loads and returns a string for a given Key's image in the tree, based off the current set image /// </summary> private string GetFolderToolTip(string key) { string value = string.Empty; switch (key) { case DELETEDKEYIMAGE: value = resourceLoader.GetString("ToolTipDeletedKey"); break; case KEYIMAGE: value = resourceLoader.GetString("ToolTipAddedKey"); break; case ERRORIMAGE: value = resourceLoader.GetString("ToolTipErrorKey"); break; } return value; } /// <summary> /// Loads a string for a given Value's image in the grid, based off the current type and updates the RegistryValue that's passed in /// </summary> private void SetValueToolTip(RegistryValue registryValue) { string value = string.Empty; switch (registryValue.Type) { case "REG_SZ": case "REG_EXAND_SZ": case "REG_MULTI_SZ": value = resourceLoader.GetString("ToolTipStringValue"); break; case "ERROR": value = resourceLoader.GetString("ToolTipErrorValue"); break; case "": value = resourceLoader.GetString("ToolTipDeletedValue"); break; default: value = resourceLoader.GetString("ToolTipBinaryValue"); break; } registryValue.ToolTipText = value; } /// <summary> /// Checks a Key line for the closing bracket and treat it as an error if it cannot be found /// </summary> private void CheckKeyLineForBrackets(ref string registryLine, ref string imageName) { // following the current behavior of the registry editor, find the last ] and treat everything else as ignorable int lastBracket = registryLine.LastIndexOf(']'); if (lastBracket == -1) { // since we don't have a last bracket yet, add an extra space and continue processing registryLine += " "; imageName = ERRORIMAGE; } else { // having found the last ] and there is text after it, drop the rest of the string on the floor if (lastBracket < registryLine.Length - 1) { registryLine = registryLine.Substring(0, lastBracket + 1); } if (CheckForKnownGoodBranches(registryLine) == false) { imageName = ERRORIMAGE; } } } /// <summary> /// Takes a binary registry value, sees if it has a ; and dumps the rest of the line - this does not work for REG_SZ values /// </summary> private string ScanAndRemoveComments(string value) { // scan for comments and remove them int indexOf = value.IndexOf(";", StringComparison.InvariantCulture); if (indexOf > -1) { // presume that there is nothing following the start of the comment value = value.Remove(indexOf, value.Length - indexOf); } return value.TrimEnd(); } /// <summary> /// Make sure the root of a full path start with one of the five "hard coded" roots. Throw an error for the branch if it doesn't. /// </summary> private bool CheckForKnownGoodBranches(string key) { if ((key.StartsWith("[HKEY_CLASSES_ROOT]", StringComparison.InvariantCultureIgnoreCase) == false && key.StartsWith("[HKEY_CURRENT_USER]", StringComparison.InvariantCultureIgnoreCase) == false && key.StartsWith("[HKEY_USERS]", StringComparison.InvariantCultureIgnoreCase) == false && key.StartsWith("[HKEY_LOCAL_MACHINE]", StringComparison.InvariantCultureIgnoreCase) == false && key.StartsWith("[HKEY_CURRENT_CONFIG]", StringComparison.InvariantCultureIgnoreCase) == false) && (key.StartsWith(@"[HKEY_CLASSES_ROOT\", StringComparison.InvariantCultureIgnoreCase) == false && key.StartsWith(@"[HKEY_CURRENT_USER\", StringComparison.InvariantCultureIgnoreCase) == false && key.StartsWith(@"[HKEY_USERS\", StringComparison.InvariantCultureIgnoreCase) == false && key.StartsWith(@"[HKEY_LOCAL_MACHINE\", StringComparison.InvariantCultureIgnoreCase) == false && key.StartsWith(@"[HKEY_CURRENT_CONFIG\", StringComparison.InvariantCultureIgnoreCase) == false)) { return false; } return true; } /// <summary> /// Turns the Open Key button in the command bar on/off, depending on if a key is selected /// </summary> private bool CheckTreeForValidKey() { if (treeView == null) { return false; } // See if a key is available TreeViewNode treeViewNode = treeView.SelectedNode; if (treeViewNode != null && ((RegistryKey)treeViewNode.Content).Image != ERRORIMAGE) { return true; } return false; } } }
randyrants
2d3e11a7079d93241ba641b0cd1fce8fc19a77ca
898644f6f65a53f1eaf532a07255a3a350e3125e
Nothing more than throw protection on the first run or if the file goes missing. No impact to the end user either way but it does help when you're trying to debug something on a first time install.
randyrants
405
microsoft/PowerToys
28,786
[Registry Preview] Ended up with four unrelated fixes in one PR - not a role model, sorry
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request Was reviewing someone else's PR and decided to take look at two issues and ended up fixing a third and fourth. <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [X] **Closes:** - #26029 - #28147 - No number: exception being thrown on first run, when size/position JSON file is missing. - [X] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments - Found an exception that was being thrown on first run, when the app tries to load a json file that hasn't been created yet. The code always caught the exception, but if a simple if statement can prevent it, yay. - Adds support for files that may have whitespace around the = of a value line; a past fix enabled whitespace elsewhere. - Fixes issue for non-ASCII filenames, when app is registered as the default handler. (This was neat: if the filename is only ASCII then the app gets activated as "File" activation but if there are non-ASCII characters, then it activates as "Protocol" but you'd only ever know this if you are under a debugger.) - Adds a workaround that makes sure that we close the TextBox's context menu is closed when closing the app, to prevent a crash. <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed Ran a number of different test files through its paces, including past files that were known to fail on older code. Didn't see any regressions or impact to the rest of the product.
null
2023-09-27 03:25:09+00:00
2023-10-06 13:48:40+00:00
src/modules/registrypreview/RegistryPreviewUI/RegistryPreviewXAML/App.xaml.cs
// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using System.Diagnostics; using System.Diagnostics.CodeAnalysis; using Microsoft.UI.Xaml; using Microsoft.Windows.AppLifecycle; using Windows.ApplicationModel.Activation; using LaunchActivatedEventArgs = Windows.ApplicationModel.Activation.LaunchActivatedEventArgs; namespace RegistryPreview { /// <summary> /// Provides application-specific behavior to supplement the default Application class. /// </summary> public partial class App : Application { /// <summary> /// Initializes a new instance of the <see cref="App"/> class. /// </summary> public App() { this.InitializeComponent(); } /// <summary> /// Invoked when the application is launched normally by the end user. Other entry points /// will be used such as when the application is launched to open a specific file. /// </summary> /// <param name="args">Details about the launch request and process.</param> protected override void OnLaunched(Microsoft.UI.Xaml.LaunchActivatedEventArgs args) { // Keeping commented out but this is invaluable for protocol activation testing. // #if DEBUG // System.Diagnostics.Debugger.Launch(); // #endif // Open With... handler - gets activation arguments if they are available. AppActivationArguments activatedArgs = AppInstance.GetCurrent().GetActivatedEventArgs(); if (activatedArgs.Kind == ExtendedActivationKind.File) { // Covers the double click exe scenario and treated as no file loaded AppFilename = string.Empty; if (activatedArgs.Data != null) { IFileActivatedEventArgs eventArgs = (IFileActivatedEventArgs)activatedArgs.Data; if (eventArgs.Files.Count > 0) { AppFilename = eventArgs.Files[0].Path; } } } else { // Right click on a REG file and selected Preview // Grab the command line parameters directly from the Environment since this is expected to be run // via Context Menu of a REG file. string[] cmdArgs = Environment.GetCommandLineArgs(); if (cmdArgs == null) { // Covers the double click exe scenario and treated as no file loaded AppFilename = string.Empty; } else if (cmdArgs.Length == 2) { // GetCommandLineArgs() send in the called EXE as 0 and the selected filename as 1 AppFilename = cmdArgs[1]; } else { // Anything else should be treated as no file loaded AppFilename = string.Empty; } } // Start the application appWindow = new MainWindow(); appWindow.Activate(); } private Window appWindow; #pragma warning disable SA1401 // Fields should be private #pragma warning disable CA2211 // Non-constant fields should not be visible. TODO: consider making it a property public static string AppFilename; #pragma warning restore CA2211 // Non-constant fields should not be visible #pragma warning restore SA1401 // Fields should be private } }
// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using System.Diagnostics; using System.Diagnostics.CodeAnalysis; using System.Web; using Microsoft.UI.Xaml; using Microsoft.Windows.AppLifecycle; using Windows.ApplicationModel.Activation; using LaunchActivatedEventArgs = Windows.ApplicationModel.Activation.LaunchActivatedEventArgs; namespace RegistryPreview { /// <summary> /// Provides application-specific behavior to supplement the default Application class. /// </summary> public partial class App : Application { /// <summary> /// Initializes a new instance of the <see cref="App"/> class. /// </summary> public App() { this.InitializeComponent(); } /// <summary> /// Invoked when the application is launched normally by the end user. Other entry points /// will be used such as when the application is launched to open a specific file. /// </summary> /// <param name="args">Details about the launch request and process.</param> protected override void OnLaunched(Microsoft.UI.Xaml.LaunchActivatedEventArgs args) { // Keeping commented out but this is invaluable for protocol activation testing. // #if DEBUG // System.Diagnostics.Debugger.Launch(); // #endif // Open With... handler - gets activation arguments if they are available. AppActivationArguments activatedArgs = AppInstance.GetCurrent().GetActivatedEventArgs(); if (activatedArgs.Kind == ExtendedActivationKind.File) { // Covers the double click exe scenario and treated as no file loaded AppFilename = string.Empty; if (activatedArgs.Data != null) { IFileActivatedEventArgs eventArgs = (IFileActivatedEventArgs)activatedArgs.Data; if (eventArgs.Files.Count > 0) { AppFilename = eventArgs.Files[0].Path; } } } else if (activatedArgs.Kind == ExtendedActivationKind.Protocol) { // When the app is the default handler for REG files and the filename has non-ASCII characters, the app gets activated by Protocol AppFilename = string.Empty; if (activatedArgs.Data != null) { IProtocolActivatedEventArgs eventArgs = (IProtocolActivatedEventArgs)activatedArgs.Data; if (eventArgs.Uri.AbsoluteUri.Length > 0) { AppFilename = eventArgs.Uri.Query.Replace("?ContractId=Windows.File&Verb=open&File=", string.Empty); AppFilename = HttpUtility.UrlDecode(AppFilename); } } } else { // Right click on a REG file and selected Preview // Grab the command line parameters directly from the Environment since this is expected to be run // via Context Menu of a REG file. string[] cmdArgs = Environment.GetCommandLineArgs(); if (cmdArgs == null) { // Covers the double click exe scenario and treated as no file loaded AppFilename = string.Empty; } else if (cmdArgs.Length == 2) { // GetCommandLineArgs() send in the called EXE as 0 and the selected filename as 1 AppFilename = cmdArgs[1]; } else { // Anything else should be treated as no file loaded AppFilename = string.Empty; } } // Start the application appWindow = new MainWindow(); appWindow.Activate(); } private Window appWindow; #pragma warning disable SA1401 // Fields should be private #pragma warning disable CA2211 // Non-constant fields should not be visible. TODO: consider making it a property public static string AppFilename; #pragma warning restore CA2211 // Non-constant fields should not be visible #pragma warning restore SA1401 // Fields should be private } }
randyrants
2d3e11a7079d93241ba641b0cd1fce8fc19a77ca
898644f6f65a53f1eaf532a07255a3a350e3125e
That this if is required at all needs some explanation from someone in the UWP or WinUI 3 stack.
randyrants
406
microsoft/PowerToys
28,786
[Registry Preview] Ended up with four unrelated fixes in one PR - not a role model, sorry
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request Was reviewing someone else's PR and decided to take look at two issues and ended up fixing a third and fourth. <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [X] **Closes:** - #26029 - #28147 - No number: exception being thrown on first run, when size/position JSON file is missing. - [X] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments - Found an exception that was being thrown on first run, when the app tries to load a json file that hasn't been created yet. The code always caught the exception, but if a simple if statement can prevent it, yay. - Adds support for files that may have whitespace around the = of a value line; a past fix enabled whitespace elsewhere. - Fixes issue for non-ASCII filenames, when app is registered as the default handler. (This was neat: if the filename is only ASCII then the app gets activated as "File" activation but if there are non-ASCII characters, then it activates as "Protocol" but you'd only ever know this if you are under a debugger.) - Adds a workaround that makes sure that we close the TextBox's context menu is closed when closing the app, to prevent a crash. <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed Ran a number of different test files through its paces, including past files that were known to fail on older code. Didn't see any regressions or impact to the rest of the product.
null
2023-09-27 03:25:09+00:00
2023-10-06 13:48:40+00:00
src/modules/registrypreview/RegistryPreviewUI/RegistryPreviewXAML/App.xaml.cs
// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using System.Diagnostics; using System.Diagnostics.CodeAnalysis; using Microsoft.UI.Xaml; using Microsoft.Windows.AppLifecycle; using Windows.ApplicationModel.Activation; using LaunchActivatedEventArgs = Windows.ApplicationModel.Activation.LaunchActivatedEventArgs; namespace RegistryPreview { /// <summary> /// Provides application-specific behavior to supplement the default Application class. /// </summary> public partial class App : Application { /// <summary> /// Initializes a new instance of the <see cref="App"/> class. /// </summary> public App() { this.InitializeComponent(); } /// <summary> /// Invoked when the application is launched normally by the end user. Other entry points /// will be used such as when the application is launched to open a specific file. /// </summary> /// <param name="args">Details about the launch request and process.</param> protected override void OnLaunched(Microsoft.UI.Xaml.LaunchActivatedEventArgs args) { // Keeping commented out but this is invaluable for protocol activation testing. // #if DEBUG // System.Diagnostics.Debugger.Launch(); // #endif // Open With... handler - gets activation arguments if they are available. AppActivationArguments activatedArgs = AppInstance.GetCurrent().GetActivatedEventArgs(); if (activatedArgs.Kind == ExtendedActivationKind.File) { // Covers the double click exe scenario and treated as no file loaded AppFilename = string.Empty; if (activatedArgs.Data != null) { IFileActivatedEventArgs eventArgs = (IFileActivatedEventArgs)activatedArgs.Data; if (eventArgs.Files.Count > 0) { AppFilename = eventArgs.Files[0].Path; } } } else { // Right click on a REG file and selected Preview // Grab the command line parameters directly from the Environment since this is expected to be run // via Context Menu of a REG file. string[] cmdArgs = Environment.GetCommandLineArgs(); if (cmdArgs == null) { // Covers the double click exe scenario and treated as no file loaded AppFilename = string.Empty; } else if (cmdArgs.Length == 2) { // GetCommandLineArgs() send in the called EXE as 0 and the selected filename as 1 AppFilename = cmdArgs[1]; } else { // Anything else should be treated as no file loaded AppFilename = string.Empty; } } // Start the application appWindow = new MainWindow(); appWindow.Activate(); } private Window appWindow; #pragma warning disable SA1401 // Fields should be private #pragma warning disable CA2211 // Non-constant fields should not be visible. TODO: consider making it a property public static string AppFilename; #pragma warning restore CA2211 // Non-constant fields should not be visible #pragma warning restore SA1401 // Fields should be private } }
// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using System.Diagnostics; using System.Diagnostics.CodeAnalysis; using System.Web; using Microsoft.UI.Xaml; using Microsoft.Windows.AppLifecycle; using Windows.ApplicationModel.Activation; using LaunchActivatedEventArgs = Windows.ApplicationModel.Activation.LaunchActivatedEventArgs; namespace RegistryPreview { /// <summary> /// Provides application-specific behavior to supplement the default Application class. /// </summary> public partial class App : Application { /// <summary> /// Initializes a new instance of the <see cref="App"/> class. /// </summary> public App() { this.InitializeComponent(); } /// <summary> /// Invoked when the application is launched normally by the end user. Other entry points /// will be used such as when the application is launched to open a specific file. /// </summary> /// <param name="args">Details about the launch request and process.</param> protected override void OnLaunched(Microsoft.UI.Xaml.LaunchActivatedEventArgs args) { // Keeping commented out but this is invaluable for protocol activation testing. // #if DEBUG // System.Diagnostics.Debugger.Launch(); // #endif // Open With... handler - gets activation arguments if they are available. AppActivationArguments activatedArgs = AppInstance.GetCurrent().GetActivatedEventArgs(); if (activatedArgs.Kind == ExtendedActivationKind.File) { // Covers the double click exe scenario and treated as no file loaded AppFilename = string.Empty; if (activatedArgs.Data != null) { IFileActivatedEventArgs eventArgs = (IFileActivatedEventArgs)activatedArgs.Data; if (eventArgs.Files.Count > 0) { AppFilename = eventArgs.Files[0].Path; } } } else if (activatedArgs.Kind == ExtendedActivationKind.Protocol) { // When the app is the default handler for REG files and the filename has non-ASCII characters, the app gets activated by Protocol AppFilename = string.Empty; if (activatedArgs.Data != null) { IProtocolActivatedEventArgs eventArgs = (IProtocolActivatedEventArgs)activatedArgs.Data; if (eventArgs.Uri.AbsoluteUri.Length > 0) { AppFilename = eventArgs.Uri.Query.Replace("?ContractId=Windows.File&Verb=open&File=", string.Empty); AppFilename = HttpUtility.UrlDecode(AppFilename); } } } else { // Right click on a REG file and selected Preview // Grab the command line parameters directly from the Environment since this is expected to be run // via Context Menu of a REG file. string[] cmdArgs = Environment.GetCommandLineArgs(); if (cmdArgs == null) { // Covers the double click exe scenario and treated as no file loaded AppFilename = string.Empty; } else if (cmdArgs.Length == 2) { // GetCommandLineArgs() send in the called EXE as 0 and the selected filename as 1 AppFilename = cmdArgs[1]; } else { // Anything else should be treated as no file loaded AppFilename = string.Empty; } } // Start the application appWindow = new MainWindow(); appWindow.Activate(); } private Window appWindow; #pragma warning disable SA1401 // Fields should be private #pragma warning disable CA2211 // Non-constant fields should not be visible. TODO: consider making it a property public static string AppFilename; #pragma warning restore CA2211 // Non-constant fields should not be visible #pragma warning restore SA1401 // Fields should be private } }
randyrants
2d3e11a7079d93241ba641b0cd1fce8fc19a77ca
898644f6f65a53f1eaf532a07255a3a350e3125e
What? Why is this needed? 😅
jaimecbernardo
407
microsoft/PowerToys
28,786
[Registry Preview] Ended up with four unrelated fixes in one PR - not a role model, sorry
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request Was reviewing someone else's PR and decided to take look at two issues and ended up fixing a third and fourth. <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [X] **Closes:** - #26029 - #28147 - No number: exception being thrown on first run, when size/position JSON file is missing. - [X] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments - Found an exception that was being thrown on first run, when the app tries to load a json file that hasn't been created yet. The code always caught the exception, but if a simple if statement can prevent it, yay. - Adds support for files that may have whitespace around the = of a value line; a past fix enabled whitespace elsewhere. - Fixes issue for non-ASCII filenames, when app is registered as the default handler. (This was neat: if the filename is only ASCII then the app gets activated as "File" activation but if there are non-ASCII characters, then it activates as "Protocol" but you'd only ever know this if you are under a debugger.) - Adds a workaround that makes sure that we close the TextBox's context menu is closed when closing the app, to prevent a crash. <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed Ran a number of different test files through its paces, including past files that were known to fail on older code. Didn't see any regressions or impact to the rest of the product.
null
2023-09-27 03:25:09+00:00
2023-10-06 13:48:40+00:00
src/modules/registrypreview/RegistryPreviewUI/RegistryPreviewXAML/App.xaml.cs
// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using System.Diagnostics; using System.Diagnostics.CodeAnalysis; using Microsoft.UI.Xaml; using Microsoft.Windows.AppLifecycle; using Windows.ApplicationModel.Activation; using LaunchActivatedEventArgs = Windows.ApplicationModel.Activation.LaunchActivatedEventArgs; namespace RegistryPreview { /// <summary> /// Provides application-specific behavior to supplement the default Application class. /// </summary> public partial class App : Application { /// <summary> /// Initializes a new instance of the <see cref="App"/> class. /// </summary> public App() { this.InitializeComponent(); } /// <summary> /// Invoked when the application is launched normally by the end user. Other entry points /// will be used such as when the application is launched to open a specific file. /// </summary> /// <param name="args">Details about the launch request and process.</param> protected override void OnLaunched(Microsoft.UI.Xaml.LaunchActivatedEventArgs args) { // Keeping commented out but this is invaluable for protocol activation testing. // #if DEBUG // System.Diagnostics.Debugger.Launch(); // #endif // Open With... handler - gets activation arguments if they are available. AppActivationArguments activatedArgs = AppInstance.GetCurrent().GetActivatedEventArgs(); if (activatedArgs.Kind == ExtendedActivationKind.File) { // Covers the double click exe scenario and treated as no file loaded AppFilename = string.Empty; if (activatedArgs.Data != null) { IFileActivatedEventArgs eventArgs = (IFileActivatedEventArgs)activatedArgs.Data; if (eventArgs.Files.Count > 0) { AppFilename = eventArgs.Files[0].Path; } } } else { // Right click on a REG file and selected Preview // Grab the command line parameters directly from the Environment since this is expected to be run // via Context Menu of a REG file. string[] cmdArgs = Environment.GetCommandLineArgs(); if (cmdArgs == null) { // Covers the double click exe scenario and treated as no file loaded AppFilename = string.Empty; } else if (cmdArgs.Length == 2) { // GetCommandLineArgs() send in the called EXE as 0 and the selected filename as 1 AppFilename = cmdArgs[1]; } else { // Anything else should be treated as no file loaded AppFilename = string.Empty; } } // Start the application appWindow = new MainWindow(); appWindow.Activate(); } private Window appWindow; #pragma warning disable SA1401 // Fields should be private #pragma warning disable CA2211 // Non-constant fields should not be visible. TODO: consider making it a property public static string AppFilename; #pragma warning restore CA2211 // Non-constant fields should not be visible #pragma warning restore SA1401 // Fields should be private } }
// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using System.Diagnostics; using System.Diagnostics.CodeAnalysis; using System.Web; using Microsoft.UI.Xaml; using Microsoft.Windows.AppLifecycle; using Windows.ApplicationModel.Activation; using LaunchActivatedEventArgs = Windows.ApplicationModel.Activation.LaunchActivatedEventArgs; namespace RegistryPreview { /// <summary> /// Provides application-specific behavior to supplement the default Application class. /// </summary> public partial class App : Application { /// <summary> /// Initializes a new instance of the <see cref="App"/> class. /// </summary> public App() { this.InitializeComponent(); } /// <summary> /// Invoked when the application is launched normally by the end user. Other entry points /// will be used such as when the application is launched to open a specific file. /// </summary> /// <param name="args">Details about the launch request and process.</param> protected override void OnLaunched(Microsoft.UI.Xaml.LaunchActivatedEventArgs args) { // Keeping commented out but this is invaluable for protocol activation testing. // #if DEBUG // System.Diagnostics.Debugger.Launch(); // #endif // Open With... handler - gets activation arguments if they are available. AppActivationArguments activatedArgs = AppInstance.GetCurrent().GetActivatedEventArgs(); if (activatedArgs.Kind == ExtendedActivationKind.File) { // Covers the double click exe scenario and treated as no file loaded AppFilename = string.Empty; if (activatedArgs.Data != null) { IFileActivatedEventArgs eventArgs = (IFileActivatedEventArgs)activatedArgs.Data; if (eventArgs.Files.Count > 0) { AppFilename = eventArgs.Files[0].Path; } } } else if (activatedArgs.Kind == ExtendedActivationKind.Protocol) { // When the app is the default handler for REG files and the filename has non-ASCII characters, the app gets activated by Protocol AppFilename = string.Empty; if (activatedArgs.Data != null) { IProtocolActivatedEventArgs eventArgs = (IProtocolActivatedEventArgs)activatedArgs.Data; if (eventArgs.Uri.AbsoluteUri.Length > 0) { AppFilename = eventArgs.Uri.Query.Replace("?ContractId=Windows.File&Verb=open&File=", string.Empty); AppFilename = HttpUtility.UrlDecode(AppFilename); } } } else { // Right click on a REG file and selected Preview // Grab the command line parameters directly from the Environment since this is expected to be run // via Context Menu of a REG file. string[] cmdArgs = Environment.GetCommandLineArgs(); if (cmdArgs == null) { // Covers the double click exe scenario and treated as no file loaded AppFilename = string.Empty; } else if (cmdArgs.Length == 2) { // GetCommandLineArgs() send in the called EXE as 0 and the selected filename as 1 AppFilename = cmdArgs[1]; } else { // Anything else should be treated as no file loaded AppFilename = string.Empty; } } // Start the application appWindow = new MainWindow(); appWindow.Activate(); } private Window appWindow; #pragma warning disable SA1401 // Fields should be private #pragma warning disable CA2211 // Non-constant fields should not be visible. TODO: consider making it a property public static string AppFilename; #pragma warning restore CA2211 // Non-constant fields should not be visible #pragma warning restore SA1401 // Fields should be private } }
randyrants
2d3e11a7079d93241ba641b0cd1fce8fc19a77ca
898644f6f65a53f1eaf532a07255a3a350e3125e
Let's have it anyway 🤷
jaimecbernardo
408
microsoft/PowerToys
28,786
[Registry Preview] Ended up with four unrelated fixes in one PR - not a role model, sorry
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request Was reviewing someone else's PR and decided to take look at two issues and ended up fixing a third and fourth. <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [X] **Closes:** - #26029 - #28147 - No number: exception being thrown on first run, when size/position JSON file is missing. - [X] **Communication:** I've discussed this with core contributors already. If work hasn't been agreed, this work might be rejected <!-- Provide a more detailed description of the PR, other things fixed or any additional comments/features here --> ## Detailed Description of the Pull Request / Additional comments - Found an exception that was being thrown on first run, when the app tries to load a json file that hasn't been created yet. The code always caught the exception, but if a simple if statement can prevent it, yay. - Adds support for files that may have whitespace around the = of a value line; a past fix enabled whitespace elsewhere. - Fixes issue for non-ASCII filenames, when app is registered as the default handler. (This was neat: if the filename is only ASCII then the app gets activated as "File" activation but if there are non-ASCII characters, then it activates as "Protocol" but you'd only ever know this if you are under a debugger.) - Adds a workaround that makes sure that we close the TextBox's context menu is closed when closing the app, to prevent a crash. <!-- Describe how you validated the behavior. Add automated tests wherever possible, but list manual validation steps taken as well --> ## Validation Steps Performed Ran a number of different test files through its paces, including past files that were known to fail on older code. Didn't see any regressions or impact to the rest of the product.
null
2023-09-27 03:25:09+00:00
2023-10-06 13:48:40+00:00
src/modules/registrypreview/RegistryPreviewUI/RegistryPreviewXAML/App.xaml.cs
// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using System.Diagnostics; using System.Diagnostics.CodeAnalysis; using Microsoft.UI.Xaml; using Microsoft.Windows.AppLifecycle; using Windows.ApplicationModel.Activation; using LaunchActivatedEventArgs = Windows.ApplicationModel.Activation.LaunchActivatedEventArgs; namespace RegistryPreview { /// <summary> /// Provides application-specific behavior to supplement the default Application class. /// </summary> public partial class App : Application { /// <summary> /// Initializes a new instance of the <see cref="App"/> class. /// </summary> public App() { this.InitializeComponent(); } /// <summary> /// Invoked when the application is launched normally by the end user. Other entry points /// will be used such as when the application is launched to open a specific file. /// </summary> /// <param name="args">Details about the launch request and process.</param> protected override void OnLaunched(Microsoft.UI.Xaml.LaunchActivatedEventArgs args) { // Keeping commented out but this is invaluable for protocol activation testing. // #if DEBUG // System.Diagnostics.Debugger.Launch(); // #endif // Open With... handler - gets activation arguments if they are available. AppActivationArguments activatedArgs = AppInstance.GetCurrent().GetActivatedEventArgs(); if (activatedArgs.Kind == ExtendedActivationKind.File) { // Covers the double click exe scenario and treated as no file loaded AppFilename = string.Empty; if (activatedArgs.Data != null) { IFileActivatedEventArgs eventArgs = (IFileActivatedEventArgs)activatedArgs.Data; if (eventArgs.Files.Count > 0) { AppFilename = eventArgs.Files[0].Path; } } } else { // Right click on a REG file and selected Preview // Grab the command line parameters directly from the Environment since this is expected to be run // via Context Menu of a REG file. string[] cmdArgs = Environment.GetCommandLineArgs(); if (cmdArgs == null) { // Covers the double click exe scenario and treated as no file loaded AppFilename = string.Empty; } else if (cmdArgs.Length == 2) { // GetCommandLineArgs() send in the called EXE as 0 and the selected filename as 1 AppFilename = cmdArgs[1]; } else { // Anything else should be treated as no file loaded AppFilename = string.Empty; } } // Start the application appWindow = new MainWindow(); appWindow.Activate(); } private Window appWindow; #pragma warning disable SA1401 // Fields should be private #pragma warning disable CA2211 // Non-constant fields should not be visible. TODO: consider making it a property public static string AppFilename; #pragma warning restore CA2211 // Non-constant fields should not be visible #pragma warning restore SA1401 // Fields should be private } }
// Copyright (c) Microsoft Corporation // The Microsoft Corporation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. using System; using System.Diagnostics; using System.Diagnostics.CodeAnalysis; using System.Web; using Microsoft.UI.Xaml; using Microsoft.Windows.AppLifecycle; using Windows.ApplicationModel.Activation; using LaunchActivatedEventArgs = Windows.ApplicationModel.Activation.LaunchActivatedEventArgs; namespace RegistryPreview { /// <summary> /// Provides application-specific behavior to supplement the default Application class. /// </summary> public partial class App : Application { /// <summary> /// Initializes a new instance of the <see cref="App"/> class. /// </summary> public App() { this.InitializeComponent(); } /// <summary> /// Invoked when the application is launched normally by the end user. Other entry points /// will be used such as when the application is launched to open a specific file. /// </summary> /// <param name="args">Details about the launch request and process.</param> protected override void OnLaunched(Microsoft.UI.Xaml.LaunchActivatedEventArgs args) { // Keeping commented out but this is invaluable for protocol activation testing. // #if DEBUG // System.Diagnostics.Debugger.Launch(); // #endif // Open With... handler - gets activation arguments if they are available. AppActivationArguments activatedArgs = AppInstance.GetCurrent().GetActivatedEventArgs(); if (activatedArgs.Kind == ExtendedActivationKind.File) { // Covers the double click exe scenario and treated as no file loaded AppFilename = string.Empty; if (activatedArgs.Data != null) { IFileActivatedEventArgs eventArgs = (IFileActivatedEventArgs)activatedArgs.Data; if (eventArgs.Files.Count > 0) { AppFilename = eventArgs.Files[0].Path; } } } else if (activatedArgs.Kind == ExtendedActivationKind.Protocol) { // When the app is the default handler for REG files and the filename has non-ASCII characters, the app gets activated by Protocol AppFilename = string.Empty; if (activatedArgs.Data != null) { IProtocolActivatedEventArgs eventArgs = (IProtocolActivatedEventArgs)activatedArgs.Data; if (eventArgs.Uri.AbsoluteUri.Length > 0) { AppFilename = eventArgs.Uri.Query.Replace("?ContractId=Windows.File&Verb=open&File=", string.Empty); AppFilename = HttpUtility.UrlDecode(AppFilename); } } } else { // Right click on a REG file and selected Preview // Grab the command line parameters directly from the Environment since this is expected to be run // via Context Menu of a REG file. string[] cmdArgs = Environment.GetCommandLineArgs(); if (cmdArgs == null) { // Covers the double click exe scenario and treated as no file loaded AppFilename = string.Empty; } else if (cmdArgs.Length == 2) { // GetCommandLineArgs() send in the called EXE as 0 and the selected filename as 1 AppFilename = cmdArgs[1]; } else { // Anything else should be treated as no file loaded AppFilename = string.Empty; } } // Start the application appWindow = new MainWindow(); appWindow.Activate(); } private Window appWindow; #pragma warning disable SA1401 // Fields should be private #pragma warning disable CA2211 // Non-constant fields should not be visible. TODO: consider making it a property public static string AppFilename; #pragma warning restore CA2211 // Non-constant fields should not be visible #pragma warning restore SA1401 // Fields should be private } }
randyrants
2d3e11a7079d93241ba641b0cd1fce8fc19a77ca
898644f6f65a53f1eaf532a07255a3a350e3125e
I put it in the comment so I wouldn't forget it: // When the app is the default handler for REG files and the filename has non-ASCII characters, the app gets activated by Protocol. Whyyyy-with-four-y's is what I want to know.
randyrants
409
microsoft/PowerToys
28,775
0.74 changelogs
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request Readme update for the 0.74 release. This will be copy / pasted for release notes.
null
2023-09-26 11:20:42+00:00
2023-09-26 21:36:51+00:00
README.md
# Microsoft PowerToys ![Hero image for Microsoft PowerToys](doc/images/overview/PT_hero_image.png) [How to use PowerToys][usingPowerToys-docs-link] | [Downloads & Release notes][github-release-link] | [Contributing to PowerToys](#contributing) | [What's Happening](#whats-happening) | [Roadmap](#powertoys-roadmap) ## Build status | Architecture | Solution (Main) | Solution (Stable) | Installer (Main) | |--------------|-----------------|-------------------|------------------| | x64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main&jobName=Build%20x64%20Release) | [![Build Status for Stable](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=stable&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_x64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | | ARM64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main) | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_arm64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | ## About Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. For more info on [PowerToys overviews and how to use the utilities][usingPowerToys-docs-link], or any other tools and resources for [Windows development environments](https://learn.microsoft.com/windows/dev-environment/overview), head over to [learn.microsoft.com][usingPowerToys-docs-link]! | | Current utilities: | | |--------------|--------------------|--------------| | [Always on Top](https://aka.ms/PowerToysOverview_AoT) | [PowerToys Awake](https://aka.ms/PowerToysOverview_Awake) | [Color Picker](https://aka.ms/PowerToysOverview_ColorPicker) | | [Crop And Lock](https://aka.ms/PowerToysOverview_CropAndLock) | [FancyZones](https://aka.ms/PowerToysOverview_FancyZones) | [File Explorer Add-ons](https://aka.ms/PowerToysOverview_FileExplorerAddOns) | | [File Locksmith](https://aka.ms/PowerToysOverview_FileLocksmith) | [Hosts File Editor](https://aka.ms/PowerToysOverview_HostsFileEditor) | [Image Resizer](https://aka.ms/PowerToysOverview_ImageResizer) | | [Keyboard Manager](https://aka.ms/PowerToysOverview_KeyboardManager) | [Mouse utilities](https://aka.ms/PowerToysOverview_MouseUtilities) | [Mouse Without Borders](https://aka.ms/PowerToysOverview_MouseWithoutBorders) | | [Peek](https://aka.ms/PowerToysOverview_Peek) | [Paste as Plain Text](https://aka.ms/PowerToysOverview_PastePlain) | [PowerRename](https://aka.ms/PowerToysOverview_PowerRename) | | [PowerToys Run](https://aka.ms/PowerToysOverview_PowerToysRun) | [Quick Accent](https://aka.ms/PowerToysOverview_QuickAccent) | [Registry Preview](https://aka.ms/PowerToysOverview_RegistryPreview) | | [Screen Ruler](https://aka.ms/PowerToysOverview_ScreenRuler) | [Shortcut Guide](https://aka.ms/PowerToysOverview_ShortcutGuide) | [Text Extractor](https://aka.ms/PowerToysOverview_TextExtractor) | | [Video Conference Mute](https://aka.ms/PowerToysOverview_VideoConference) | ## Installing and running Microsoft PowerToys ### Requirements - Windows 11 or Windows 10 version 2004 (code name 20H1 / build number 19041) or newer. - Our installer will install the following items: - [Microsoft Edge WebView2 Runtime](https://go.microsoft.com/fwlink/p/?LinkId=2124703) bootstrapper. This will install the latest version. ### Via GitHub with EXE [Recommended] Go to the [Microsoft PowerToys GitHub releases page][github-release-link] and click on `Assets` at the bottom to show the files available in the release. Please use the appropriate PowerToys installer that matches your machine's architecture and install scope. For most, it is `x64` and per-user. <!-- items that need to be updated release to release --> [github-next-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F47 [github-current-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F46 [ptUserX64]: https://github.com/microsoft/PowerToys/releases/download/v0.73.0/PowerToysUserSetup-0.73.0-x64.exe [ptUserArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.73.0/PowerToysUserSetup-0.73.0-arm64.exe [ptMachineX64]: https://github.com/microsoft/PowerToys/releases/download/v0.73.0/PowerToysSetup-0.73.0-x64.exe [ptMachineArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.73.0/PowerToysSetup-0.73.0-arm64.exe | Description | Filename | sha256 hash | |----------------|----------|-------------| | Per user - x64 | [PowerToysUserSetup-0.73.0-x64.exe][ptUserX64] | BA55D245BDD734FD6F19803DD706A3AB8E0ABC491591195534997CF2122D3B7E | | Per user - ARM64 | [PowerToysUserSetup-0.73.0-arm64.exe][ptUserArm64] | FBFA40EA5FFA05236A7CCDD05E5142EE0C93D7485B965784196ED9B086BFEBF4 | | Machine wide - x64 | [PowerToysSetup-0.73.0-x64.exe][ptMachineX64] | 7FDA06292C7C2E6DA5AEF88D8E9D3DE89D331E9E356A232289F9B37CE4503894 | | Machine wide - ARM64 | [PowerToysSetup-0.73.0-arm64.exe][ptMachineArm64] | 4260AA30A1F52F194EE07E9E7ECD9E9F4CF35289267F213BC933F7A5191AC17C | This is our preferred method. ### Via Microsoft Store Install from the [Microsoft Store's PowerToys page][microsoft-store-link]. You must be using the [new Microsoft Store](https://blogs.windows.com/windowsExperience/2021/06/24/building-a-new-open-microsoft-store-on-windows-11/) which is available for both Windows 11 and Windows 10. ### Via WinGet Download PowerToys from [WinGet][winget-link]. Updating PowerToys via winget will respect current PowerToys installation scope. To install PowerToys, run the following command from the command line / PowerShell: #### User scope installer [default] ```powershell winget install Microsoft.PowerToys -s winget ``` #### Machine-wide scope installer ```powershell winget install --scope machine Microsoft.PowerToys -s winget ``` ### Other install methods There are [community driven install methods](./doc/unofficialInstallMethods.md) such as Chocolatey and Scoop. If these are your preferred install solutions, you can find the install instructions there. ## Third-Party Run Plugins There is a collection of [third-party plugins](./doc/thirdPartyRunPlugins.md) created by the community that aren't distributed with PowerToys. ## Contributing This project welcomes contributions of all types. Besides coding features / bug fixes, other ways to assist include spec writing, design, documentation, and finding bugs. We are excited to work with the power user community to build a set of tools for helping you get the most out of Windows. We ask that **before you start work on a feature that you would like to contribute**, please read our [Contributor's Guide](CONTRIBUTING.md). We would be happy to work with you to figure out the best approach, provide guidance and mentorship throughout feature development, and help avoid any wasted or duplicate effort. Most contributions require you to agree to a [Contributor License Agreement (CLA)][oss-CLA] declaring that you grant us the rights to use your contribution and that you have permission to do so. For guidance on developing for PowerToys, please read the [developer docs](/doc/devdocs) for a detailed breakdown. This includes how to setup your computer to compile. ## What's Happening ### PowerToys Roadmap Our [prioritized roadmap][roadmap] of features and utilities that the core team is focusing on. ### 0.73 - August 2023 Update In this release, we focused on releasing new features, stability and improvements. **Highlights** - Keyboard manager now allows Numpad keys to be bound separately from the main keyboard. If using a previous configuration, only the main keyboard (not numpad) keys will be mapped. To restore the previous behavior, manually add separate bindings for numpad keys. - New utility: Crop And Lock allows you to crop a current application into a smaller window or just create a thumbnail. Focus the target window and press the shortcut to start cropping. - FancyZones code improvements and refactor. - Modernized ImageResizer UX. - PowerRename advanced counter functionality. ### General - Added missing CoUninitialize call in elevation logic. Thanks [@sredna](https://github.com/sredna)! - New utility: Crop And Lock. Thanks [@robmikh](https://github.com/robmikh)! and [@kevinguo305](https://github.com/kevinguo305)! - Added new /helped fabric bot command to GitHub repo. Thanks [@Aaron-Junker](https://github.com/Aaron-Junker)! - Fixed crashes caused by invalid settings. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Always On Top - Added border transparency. ### FancyZones - Fixed issue causing canvas zones being drawn only when dragging in the zone area. - Fixed user-defined default layout highlighting issue. - Refactored and improved code quality. - Fixed issue causing the wrong layout to be applied when duplicating a non-selected layout. ### File Locksmith - Icon update. Thanks [@jmaraujouy](https://github.com/jmaraujouy)! ### File Explorer add-ons - Fixed issue causing thumbnail previewers to lock files. - Open URIs from developer files in default browser. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Installer - Fixed PowerToys autorun after installing as SYSTEM user. - Removed CreateScheduledTask custom action to handle task creation only from runner code. ### Image Resizer - Moved from ModernWPF to WpfUI to refresh and modernize UI/UX. Thanks [@niels9001](https://github.com/niels9001)! ### Keyboard Manager - Rephrased labels to enhance clarity. Thanks [@Jay-o-Way](https://github.com/Jay-o-Way)! - Keyboard manager now allows Numpad keys to be bound separately from the main keyboard. If using a previous configuration, only the main keyboard (not numpad) keys will be mapped. To restore the previous behavior, manually add separate bindings for numpad keys. ### Mouse Highlighter - The highlighter is now visible in "Always on Top" windows. - Added settings for automatic activation on startup. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Mouse Pointer Crosshairs - Added settings for automatic activation on startup. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Peek - Show correct file type for shortcuts. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Fixed issue causing the wrong file size to be displayed. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Show 1 byte instead of 1 bytes file size. Thanks [@Deepak-Sangle](https://github.com/Deepak-Sangle)! - Open URIs from developer files in the default browser. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Show a thumbnail and fallback to an icon for unsupported files. Thanks [@pedrolamas](https://github.com/pedrolamas)! ### PowerRename - Updated the OOBE gif. Thanks [@ChaseKnowlden](https://github.com/ChaseKnowlden)! - Localized the renamed parts combo box. - Introduced advanced counter functionality. - Added remember last window size logic and optimized sorting of items. - Enable "Enumerate items" option by default. ### PowerToys Run - Fixed an issue causing original search to be abandoned when cycling through results. - Updated device and bluetooth results for Settings plugin. Thanks [@htcfreek](https://github.com/htcfreek)! - Fixed InvalidOperationException exception thrown. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Add Base64 Decoding function to the Value Generator plugin. Thanks [@LeagueOfPoro](https://github.com/LeagueOfPoro)! - Added a Keep shell open option for Shell plugin. - Added Crop And Lock to PowerToys plugin. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Registry Preview - Updated AppBarButtons to use an explicit AppBarButton.Icon. Thanks [@randyrants](https://github.com/randyrants)! - Fixed crash on clicking Save As button. ### Runner - Removed unneeded RegisterWindowMessage from tray icon logic. Thanks [@sredna](https://github.com/sredna)! - Fixed startup looping issue. - Improved old logs and installers cleanup logic. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Screen Ruler - Use proper resources file. ### Settings - Fixed issue causing problems with modifier keys and ShortcutControl. Thanks [@sh0ckj0ckey](https://github.com/sh0ckj0ckey)! - Fixed crash when clicking "Windows color settings" link. - Added support for launching Settings app directly. - Fixed issue causing DisplayDescription not showing for PowerToys Run PluginAdditionalOption. - Fixed issue causing FileLocksmith 'Show File Locksmith in' setting not showing correct value. - Fixed issue causing Awake on/off toggle in Settings flyout not to work when Settings Awake page is opened. ### Documentation - Added documentation for PowerToys Run third-party plugins. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Fixed broken links in keyboardmanagerui.md. Thanks [@shubhsardana29](https://github.com/shubhsardana29)! - Updated core team in COMMUNITY.md. - Fixed broken links in ui-architecture.md. Thanks [@SamB](https://github.com/SamB)! - Updated community.valuegenerator.md with Base64DecodeRequest description. ### Development - Updated test packages and StyleCop. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Condense NuGet Restore into MSBuild Tasks. Thanks [@snickler](https://github.com/snickler)! #### What is being planned for version 0.74 For [v0.74][github-next-release-work], we'll work on the items below: - Language selection - Modernize and refresh the UX of PowerToys based on WPF - Stability / bug fixes - Peek: UI improvements ## PowerToys Community The PowerToys team is extremely grateful to have the [support of an amazing active community][community-link]. The work you do is incredibly important. PowerToys wouldn’t be nearly what it is today without your help filing bugs, updating documentation, guiding the design, or writing features. We want to say thank you and take time to recognize your work. Month by month, you directly help make PowerToys a better piece of software. ## Code of Conduct This project has adopted the [Microsoft Open Source Code of Conduct][oss-conduct-code]. ## Privacy Statement The application logs basic telemetry. Our Telemetry Data page (Coming Soon) has the trends from the telemetry. Please read the [Microsoft privacy statement][privacy-link] for more information. [oss-CLA]: https://cla.opensource.microsoft.com [oss-conduct-code]: CODE_OF_CONDUCT.md [community-link]: COMMUNITY.md [github-release-link]: https://aka.ms/installPowerToys [microsoft-store-link]: https://aka.ms/getPowertoys [winget-link]: https://github.com/microsoft/winget-cli#installing-the-client [roadmap]: https://github.com/microsoft/PowerToys/wiki/Roadmap [privacy-link]: http://go.microsoft.com/fwlink/?LinkId=521839 [vidConfOverview]: https://aka.ms/PowerToysOverview_VideoConference [loc-bug]: https://github.com/microsoft/PowerToys/issues/new?assignees=&labels=&template=translation_issue.md&title= [usingPowerToys-docs-link]: https://aka.ms/powertoys-docs
# Microsoft PowerToys ![Hero image for Microsoft PowerToys](doc/images/overview/PT_hero_image.png) [How to use PowerToys][usingPowerToys-docs-link] | [Downloads & Release notes][github-release-link] | [Contributing to PowerToys](#contributing) | [What's Happening](#whats-happening) | [Roadmap](#powertoys-roadmap) ## Build status | Architecture | Solution (Main) | Solution (Stable) | Installer (Main) | |--------------|-----------------|-------------------|------------------| | x64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main&jobName=Build%20x64%20Release) | [![Build Status for Stable](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=stable&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_x64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | | ARM64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main) | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_arm64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | ## About Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. For more info on [PowerToys overviews and how to use the utilities][usingPowerToys-docs-link], or any other tools and resources for [Windows development environments](https://learn.microsoft.com/windows/dev-environment/overview), head over to [learn.microsoft.com][usingPowerToys-docs-link]! | | Current utilities: | | |--------------|--------------------|--------------| | [Always on Top](https://aka.ms/PowerToysOverview_AoT) | [PowerToys Awake](https://aka.ms/PowerToysOverview_Awake) | [Color Picker](https://aka.ms/PowerToysOverview_ColorPicker) | | [Crop And Lock](https://aka.ms/PowerToysOverview_CropAndLock) | [FancyZones](https://aka.ms/PowerToysOverview_FancyZones) | [File Explorer Add-ons](https://aka.ms/PowerToysOverview_FileExplorerAddOns) | | [File Locksmith](https://aka.ms/PowerToysOverview_FileLocksmith) | [Hosts File Editor](https://aka.ms/PowerToysOverview_HostsFileEditor) | [Image Resizer](https://aka.ms/PowerToysOverview_ImageResizer) | | [Keyboard Manager](https://aka.ms/PowerToysOverview_KeyboardManager) | [Mouse utilities](https://aka.ms/PowerToysOverview_MouseUtilities) | [Mouse Without Borders](https://aka.ms/PowerToysOverview_MouseWithoutBorders) | | [Peek](https://aka.ms/PowerToysOverview_Peek) | [Paste as Plain Text](https://aka.ms/PowerToysOverview_PastePlain) | [PowerRename](https://aka.ms/PowerToysOverview_PowerRename) | | [PowerToys Run](https://aka.ms/PowerToysOverview_PowerToysRun) | [Quick Accent](https://aka.ms/PowerToysOverview_QuickAccent) | [Registry Preview](https://aka.ms/PowerToysOverview_RegistryPreview) | | [Screen Ruler](https://aka.ms/PowerToysOverview_ScreenRuler) | [Shortcut Guide](https://aka.ms/PowerToysOverview_ShortcutGuide) | [Text Extractor](https://aka.ms/PowerToysOverview_TextExtractor) | | [Video Conference Mute](https://aka.ms/PowerToysOverview_VideoConference) | ## Installing and running Microsoft PowerToys ### Requirements - Windows 11 or Windows 10 version 2004 (code name 20H1 / build number 19041) or newer. - Our installer will install the following items: - [Microsoft Edge WebView2 Runtime](https://go.microsoft.com/fwlink/p/?LinkId=2124703) bootstrapper. This will install the latest version. ### Via GitHub with EXE [Recommended] Go to the [Microsoft PowerToys GitHub releases page][github-release-link] and click on `Assets` at the bottom to show the files available in the release. Please use the appropriate PowerToys installer that matches your machine's architecture and install scope. For most, it is `x64` and per-user. <!-- items that need to be updated release to release --> [github-next-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F48 [github-current-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F47 [ptUserX64]: https://github.com/microsoft/PowerToys/releases/download/v0.74.0/PowerToysUserSetup-0.74.0-x64.exe [ptUserArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.74.0/PowerToysUserSetup-0.74.0-arm64.exe [ptMachineX64]: https://github.com/microsoft/PowerToys/releases/download/v0.74.0/PowerToysSetup-0.74.0-x64.exe [ptMachineArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.74.0/PowerToysSetup-0.74.0-arm64.exe | Description | Filename | sha256 hash | |----------------|----------|-------------| | Per user - x64 | [PowerToysUserSetup-0.74.0-x64.exe][ptUserX64] | 1C4ECE9F11488BAFFAE6B76D2B0504FA18BFFEA11EBC38BCC87F5D86AEA87C7C | | Per user - ARM64 | [PowerToysUserSetup-0.74.0-arm64.exe][ptUserArm64] | 4F3842FAB0839A361A15A06B7720BA8A0FE7F9AF98EA94245C08DEF37678CA4A | | Machine wide - x64 | [PowerToysSetup-0.74.0-x64.exe][ptMachineX64] | 648992E8CEA08F3C63C7CCBD554ADDF500ECBC4560187310BC12E6CB9C2F38E3 | | Machine wide - ARM64 | [PowerToysSetup-0.74.0-arm64.exe][ptMachineArm64] | 2B6D92F1A0EA688C7EE882050AC9B030C8B3A18765163FB6D67E5E694A4D4FE3 | This is our preferred method. ### Via Microsoft Store Install from the [Microsoft Store's PowerToys page][microsoft-store-link]. You must be using the [new Microsoft Store](https://blogs.windows.com/windowsExperience/2021/06/24/building-a-new-open-microsoft-store-on-windows-11/) which is available for both Windows 11 and Windows 10. ### Via WinGet Download PowerToys from [WinGet][winget-link]. Updating PowerToys via winget will respect current PowerToys installation scope. To install PowerToys, run the following command from the command line / PowerShell: #### User scope installer [default] ```powershell winget install Microsoft.PowerToys -s winget ``` #### Machine-wide scope installer ```powershell winget install --scope machine Microsoft.PowerToys -s winget ``` ### Other install methods There are [community driven install methods](./doc/unofficialInstallMethods.md) such as Chocolatey and Scoop. If these are your preferred install solutions, you can find the install instructions there. ## Third-Party Run Plugins There is a collection of [third-party plugins](./doc/thirdPartyRunPlugins.md) created by the community that aren't distributed with PowerToys. ## Contributing This project welcomes contributions of all types. Besides coding features / bug fixes, other ways to assist include spec writing, design, documentation, and finding bugs. We are excited to work with the power user community to build a set of tools for helping you get the most out of Windows. We ask that **before you start work on a feature that you would like to contribute**, please read our [Contributor's Guide](CONTRIBUTING.md). We would be happy to work with you to figure out the best approach, provide guidance and mentorship throughout feature development, and help avoid any wasted or duplicate effort. Most contributions require you to agree to a [Contributor License Agreement (CLA)][oss-CLA] declaring that you grant us the rights to use your contribution and that you have permission to do so. For guidance on developing for PowerToys, please read the [developer docs](/doc/devdocs) for a detailed breakdown. This includes how to setup your computer to compile. ## What's Happening ### PowerToys Roadmap Our [prioritized roadmap][roadmap] of features and utilities that the core team is focusing on. ### 0.74 - September 2023 Update In this release, we focused on stability and improvements. **Highlights** - Upgraded to Windows App SDK 1.4.1, increasing stability of WinUI3 utilities. Thanks [@dongle-the-gadget](https://github.com/dongle-the-gadget) for starting the upgrade! - Text Extractor was upgraded to its version 2.0, with a new overlay, table mode and more Quality of Life improvements. Thanks [@TheJoeFin](https://github.com/TheJoeFin)! - Improved FancyZones stability, fixing some layout resets and improving handling of newly created windows on Windows 11. - Fixed many silent crashes that were reported to Watson and the user's event viewer. ### General - Turning animations off in Windows Settings will now also turn them off in PowerToys. - Upgraded the Windows App SDK dependency to 1.4.1. Thanks [@dongle-the-gadget](https://github.com/dongle-the-gadget) for the original 1.4.0 upgrade! - Show in the thumbnail label and application titles when running as administrator. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Upgraded the Win UI Community Toolkit dependency to 8.0. Thanks [@niels9001](https://github.com/niels9001)! ### Awake - Added down-sampled variants to the application's icon. Thanks [@morriscurtis](https://github.com/morriscurtis)! ### Color Picker - After adding a new color in the editor, the history will scroll the new color into view. Thanks [@peerpalo](https://github.com/peerpalo)! ### Crop and Lock - Fixed a Crop and Lock crash that would occur when trying to reparent a window crashes the target application. An error message is shown instead. ### FancyZones - Set the process and main thread priority to normal. - Fixed handling newly created windows on Windows 11. - Fixed scenarios where opening the FancyZones Editor would reset the layouts. ### File Explorer add-ons - Optimized CPU usage for generating SVG thumbnails. - Improved handling of Gcode Thumbnails, including JPG and QOI formats. Thanks [@pedrolamas](https://github.com/pedrolamas)! - Better handled errors when sending telemetry, which were causing reported crashes. - Fixed some thumbnails not being shown centered like before the optimization. ### File Locksmith - Shows files opened by processes with PID greater than 65535. Thanks [@poke30744](https://github.com/poke30744)! - Fixed a GDI object leak in the context menu which would crash Explorer. ### Find My Mouse - Added new activation methods, including by hotkey. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Hosts File Editor - Ignore the default ACME sample entries in the hosts file. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Improved save error handling and added better error messages. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Corrected a check for an error when signaling the application to start as administrator. - Refactored the context menu. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Fixed dialogs overlapping the title bar after the upgrade to Windows App SDK 1.4. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Keyboard Manager - Distinguish between the regular minus key and the numpad minus key. ### Mouse Without Borders - Fixed a crash when trying to restart the application. ### Peek - Using Peek on HTML files will show a white background by default, similar to a browser's default behavior. - Fix a white flash on Dark theme when switching file and improved the development file preview detection and adjustments. ### PowerRename - Fixed a crash caused by big counter values on the new enumeration method. ### PowerToys Run - It's now possible to select which shell is used by the Shell plugin. - A combobox option type was added to the plugin options. - Fixed a bug in the Calculator plugin that was causing decimal numbers to be misinterpreted on locales where the dot (`.`) character isn't used as a decimal or digit separator. - Improved the Program plugin stability when it fails to load a program's thumbnail at startup. - The use of Pinyin for querying some plugins can now be turned on in Settings. Thanks [@ChaseKnowlden](https://github.com/ChaseKnowlden)! - Refactored option types for plugin and added number, string and composite types to be used in the future. Thanks [@htcfreek](https://github.com/htcfreek)! - Fixed the entry for searching for Windows updates in the Settings plugin. Thanks [@htcfreek](https://github.com/htcfreek)! ### Quick Accent - The "All languages" character set is now calculated by programmatically querying the characters for every available language. Thanks [@dannysummerlin](https://github.com/dannysummerlin)! - Added é to the Norwegian and Swedish languages. Thanks [@Aaron-Junker](https://github.com/Aaron-Junker)! - Added a runtime cache to the "All languages" character set, to only calculate accents once per key. ### Registry Preview - Fixed focusing issues at startup. - Improved the data visualization to show data in a similar way to the Windows Registry Editor. Thanks [@dillydylann](https://github.com/dillydylann)! ### Runner - Fixed hanging when a bug report was generated from the flyout. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Settings - Improved the way the OOBE window reacts to Windows theme change. - Fixed an issue that made it impossible to change the "Switch between windows in the current zone" "Next window" shortcut for FancyZones. - Fixed a crash when entering a duplicate name for a color in the Color Picker page and improved clean up when cancelling a color edit. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Text Extractor - Text Extractor 2.0, with a new overlay, table mode and more Quality of Life improvements. Thanks [@TheJoeFin](https://github.com/TheJoeFin)! ### Documentation - SECURITY.md was updated from 0.0.2 to 0.0.9. Thanks [@Aaron-Junker](https://github.com/Aaron-Junker)! - Improved the README and main development document for clarity and completeness. Thanks [@codeofdusk](https://github.com/codeofdusk) and [@aprilbbrockhoeft](https://github.com/aprilbbrockhoeft)! ### Development - Fixed PowerToys Run DateTime plugin tests that were failing depending on locale, so that they can be run correctly on all dev machines. - Fixed PowerToys Run System plugin tests that were failing for certain network interfaces, so that they can be run correctly on all dev machines. Thanks [@snickler](https://github.com/snickler)! - Fixed a markdown bug on the GitHub /helped command. - Switched build pipelines to a new agent pool. Thanks [@DHowett](https://github.com/DHowett)! - New .cs files created in Visual Studio get the header added automatically. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! #### What is being planned for version 0.75 For [v0.75][github-next-release-work], we'll work on the items below: - Language selection - .NET 8 upgrade - Policy support for managing PowerToys Run plugins. *Attention*: A breaking change is planned (for 0.75), in which each plugin has to declare its identifier programmatically so that it can be controlled through GPO. For third-party plugin developers, please check https://github.com/microsoft/PowerToys/pull/27468 for more details. - New utility: Environment Variables Editor. Here's a Work in Progress preview: ![Environment Variables Editor WIP](https://github.com/microsoft/PowerToys/assets/26118718/f99532a8-5aae-481b-a662-19a95f4aa03d) - New Settings homepage. Here's a Work in Progress preview: ![PowerToys Settings Dashboard WIP](https://github.com/microsoft/PowerToys/assets/26118718/938a5715-0a9b-4fe9-9e15-adfec92da694) - Modernize and refresh the UX of PowerToys based on WPF. Here's Work in Progress previews for the modules "PowerToys Run" and "Color Picker": ![PowerToys Run UI refresh WIP](https://github.com/microsoft/PowerToys/assets/9866362/16903bcb-c18e-49fb-93ca-738b81957055) ![ColorPicker UI refresh WIP](https://github.com/microsoft/PowerToys/assets/9866362/ceebe54b-de63-4ce7-afcb-2cd4280bf4d1) - Stability / bug fixes ## PowerToys Community The PowerToys team is extremely grateful to have the [support of an amazing active community][community-link]. The work you do is incredibly important. PowerToys wouldn’t be nearly what it is today without your help filing bugs, updating documentation, guiding the design, or writing features. We want to say thank you and take time to recognize your work. Month by month, you directly help make PowerToys a better piece of software. ## Code of Conduct This project has adopted the [Microsoft Open Source Code of Conduct][oss-conduct-code]. ## Privacy Statement The application logs basic telemetry. Our Telemetry Data page (Coming Soon) has the trends from the telemetry. Please read the [Microsoft privacy statement][privacy-link] for more information. [oss-CLA]: https://cla.opensource.microsoft.com [oss-conduct-code]: CODE_OF_CONDUCT.md [community-link]: COMMUNITY.md [github-release-link]: https://aka.ms/installPowerToys [microsoft-store-link]: https://aka.ms/getPowertoys [winget-link]: https://github.com/microsoft/winget-cli#installing-the-client [roadmap]: https://github.com/microsoft/PowerToys/wiki/Roadmap [privacy-link]: http://go.microsoft.com/fwlink/?LinkId=521839 [vidConfOverview]: https://aka.ms/PowerToysOverview_VideoConference [loc-bug]: https://github.com/microsoft/PowerToys/issues/new?assignees=&labels=&template=translation_issue.md&title= [usingPowerToys-docs-link]: https://aka.ms/powertoys-docs
jaimecbernardo
a1e0bd51617b2bea189cb16324eecd0e13fa7b86
77063e0767a0619abfc339db3a2a564d27310b6c
```suggestion - Upgraded to Windows App SDK 1.4.1, increasing stability of WinUI3 utilities. Thanks [@dongle-the-gadget](https://github.com/dongle-the-gadget) for kickstarting the upgrade! ```
Aaron-Junker
410
microsoft/PowerToys
28,775
0.74 changelogs
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request Readme update for the 0.74 release. This will be copy / pasted for release notes.
null
2023-09-26 11:20:42+00:00
2023-09-26 21:36:51+00:00
README.md
# Microsoft PowerToys ![Hero image for Microsoft PowerToys](doc/images/overview/PT_hero_image.png) [How to use PowerToys][usingPowerToys-docs-link] | [Downloads & Release notes][github-release-link] | [Contributing to PowerToys](#contributing) | [What's Happening](#whats-happening) | [Roadmap](#powertoys-roadmap) ## Build status | Architecture | Solution (Main) | Solution (Stable) | Installer (Main) | |--------------|-----------------|-------------------|------------------| | x64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main&jobName=Build%20x64%20Release) | [![Build Status for Stable](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=stable&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_x64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | | ARM64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main) | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_arm64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | ## About Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. For more info on [PowerToys overviews and how to use the utilities][usingPowerToys-docs-link], or any other tools and resources for [Windows development environments](https://learn.microsoft.com/windows/dev-environment/overview), head over to [learn.microsoft.com][usingPowerToys-docs-link]! | | Current utilities: | | |--------------|--------------------|--------------| | [Always on Top](https://aka.ms/PowerToysOverview_AoT) | [PowerToys Awake](https://aka.ms/PowerToysOverview_Awake) | [Color Picker](https://aka.ms/PowerToysOverview_ColorPicker) | | [Crop And Lock](https://aka.ms/PowerToysOverview_CropAndLock) | [FancyZones](https://aka.ms/PowerToysOverview_FancyZones) | [File Explorer Add-ons](https://aka.ms/PowerToysOverview_FileExplorerAddOns) | | [File Locksmith](https://aka.ms/PowerToysOverview_FileLocksmith) | [Hosts File Editor](https://aka.ms/PowerToysOverview_HostsFileEditor) | [Image Resizer](https://aka.ms/PowerToysOverview_ImageResizer) | | [Keyboard Manager](https://aka.ms/PowerToysOverview_KeyboardManager) | [Mouse utilities](https://aka.ms/PowerToysOverview_MouseUtilities) | [Mouse Without Borders](https://aka.ms/PowerToysOverview_MouseWithoutBorders) | | [Peek](https://aka.ms/PowerToysOverview_Peek) | [Paste as Plain Text](https://aka.ms/PowerToysOverview_PastePlain) | [PowerRename](https://aka.ms/PowerToysOverview_PowerRename) | | [PowerToys Run](https://aka.ms/PowerToysOverview_PowerToysRun) | [Quick Accent](https://aka.ms/PowerToysOverview_QuickAccent) | [Registry Preview](https://aka.ms/PowerToysOverview_RegistryPreview) | | [Screen Ruler](https://aka.ms/PowerToysOverview_ScreenRuler) | [Shortcut Guide](https://aka.ms/PowerToysOverview_ShortcutGuide) | [Text Extractor](https://aka.ms/PowerToysOverview_TextExtractor) | | [Video Conference Mute](https://aka.ms/PowerToysOverview_VideoConference) | ## Installing and running Microsoft PowerToys ### Requirements - Windows 11 or Windows 10 version 2004 (code name 20H1 / build number 19041) or newer. - Our installer will install the following items: - [Microsoft Edge WebView2 Runtime](https://go.microsoft.com/fwlink/p/?LinkId=2124703) bootstrapper. This will install the latest version. ### Via GitHub with EXE [Recommended] Go to the [Microsoft PowerToys GitHub releases page][github-release-link] and click on `Assets` at the bottom to show the files available in the release. Please use the appropriate PowerToys installer that matches your machine's architecture and install scope. For most, it is `x64` and per-user. <!-- items that need to be updated release to release --> [github-next-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F47 [github-current-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F46 [ptUserX64]: https://github.com/microsoft/PowerToys/releases/download/v0.73.0/PowerToysUserSetup-0.73.0-x64.exe [ptUserArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.73.0/PowerToysUserSetup-0.73.0-arm64.exe [ptMachineX64]: https://github.com/microsoft/PowerToys/releases/download/v0.73.0/PowerToysSetup-0.73.0-x64.exe [ptMachineArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.73.0/PowerToysSetup-0.73.0-arm64.exe | Description | Filename | sha256 hash | |----------------|----------|-------------| | Per user - x64 | [PowerToysUserSetup-0.73.0-x64.exe][ptUserX64] | BA55D245BDD734FD6F19803DD706A3AB8E0ABC491591195534997CF2122D3B7E | | Per user - ARM64 | [PowerToysUserSetup-0.73.0-arm64.exe][ptUserArm64] | FBFA40EA5FFA05236A7CCDD05E5142EE0C93D7485B965784196ED9B086BFEBF4 | | Machine wide - x64 | [PowerToysSetup-0.73.0-x64.exe][ptMachineX64] | 7FDA06292C7C2E6DA5AEF88D8E9D3DE89D331E9E356A232289F9B37CE4503894 | | Machine wide - ARM64 | [PowerToysSetup-0.73.0-arm64.exe][ptMachineArm64] | 4260AA30A1F52F194EE07E9E7ECD9E9F4CF35289267F213BC933F7A5191AC17C | This is our preferred method. ### Via Microsoft Store Install from the [Microsoft Store's PowerToys page][microsoft-store-link]. You must be using the [new Microsoft Store](https://blogs.windows.com/windowsExperience/2021/06/24/building-a-new-open-microsoft-store-on-windows-11/) which is available for both Windows 11 and Windows 10. ### Via WinGet Download PowerToys from [WinGet][winget-link]. Updating PowerToys via winget will respect current PowerToys installation scope. To install PowerToys, run the following command from the command line / PowerShell: #### User scope installer [default] ```powershell winget install Microsoft.PowerToys -s winget ``` #### Machine-wide scope installer ```powershell winget install --scope machine Microsoft.PowerToys -s winget ``` ### Other install methods There are [community driven install methods](./doc/unofficialInstallMethods.md) such as Chocolatey and Scoop. If these are your preferred install solutions, you can find the install instructions there. ## Third-Party Run Plugins There is a collection of [third-party plugins](./doc/thirdPartyRunPlugins.md) created by the community that aren't distributed with PowerToys. ## Contributing This project welcomes contributions of all types. Besides coding features / bug fixes, other ways to assist include spec writing, design, documentation, and finding bugs. We are excited to work with the power user community to build a set of tools for helping you get the most out of Windows. We ask that **before you start work on a feature that you would like to contribute**, please read our [Contributor's Guide](CONTRIBUTING.md). We would be happy to work with you to figure out the best approach, provide guidance and mentorship throughout feature development, and help avoid any wasted or duplicate effort. Most contributions require you to agree to a [Contributor License Agreement (CLA)][oss-CLA] declaring that you grant us the rights to use your contribution and that you have permission to do so. For guidance on developing for PowerToys, please read the [developer docs](/doc/devdocs) for a detailed breakdown. This includes how to setup your computer to compile. ## What's Happening ### PowerToys Roadmap Our [prioritized roadmap][roadmap] of features and utilities that the core team is focusing on. ### 0.73 - August 2023 Update In this release, we focused on releasing new features, stability and improvements. **Highlights** - Keyboard manager now allows Numpad keys to be bound separately from the main keyboard. If using a previous configuration, only the main keyboard (not numpad) keys will be mapped. To restore the previous behavior, manually add separate bindings for numpad keys. - New utility: Crop And Lock allows you to crop a current application into a smaller window or just create a thumbnail. Focus the target window and press the shortcut to start cropping. - FancyZones code improvements and refactor. - Modernized ImageResizer UX. - PowerRename advanced counter functionality. ### General - Added missing CoUninitialize call in elevation logic. Thanks [@sredna](https://github.com/sredna)! - New utility: Crop And Lock. Thanks [@robmikh](https://github.com/robmikh)! and [@kevinguo305](https://github.com/kevinguo305)! - Added new /helped fabric bot command to GitHub repo. Thanks [@Aaron-Junker](https://github.com/Aaron-Junker)! - Fixed crashes caused by invalid settings. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Always On Top - Added border transparency. ### FancyZones - Fixed issue causing canvas zones being drawn only when dragging in the zone area. - Fixed user-defined default layout highlighting issue. - Refactored and improved code quality. - Fixed issue causing the wrong layout to be applied when duplicating a non-selected layout. ### File Locksmith - Icon update. Thanks [@jmaraujouy](https://github.com/jmaraujouy)! ### File Explorer add-ons - Fixed issue causing thumbnail previewers to lock files. - Open URIs from developer files in default browser. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Installer - Fixed PowerToys autorun after installing as SYSTEM user. - Removed CreateScheduledTask custom action to handle task creation only from runner code. ### Image Resizer - Moved from ModernWPF to WpfUI to refresh and modernize UI/UX. Thanks [@niels9001](https://github.com/niels9001)! ### Keyboard Manager - Rephrased labels to enhance clarity. Thanks [@Jay-o-Way](https://github.com/Jay-o-Way)! - Keyboard manager now allows Numpad keys to be bound separately from the main keyboard. If using a previous configuration, only the main keyboard (not numpad) keys will be mapped. To restore the previous behavior, manually add separate bindings for numpad keys. ### Mouse Highlighter - The highlighter is now visible in "Always on Top" windows. - Added settings for automatic activation on startup. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Mouse Pointer Crosshairs - Added settings for automatic activation on startup. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Peek - Show correct file type for shortcuts. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Fixed issue causing the wrong file size to be displayed. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Show 1 byte instead of 1 bytes file size. Thanks [@Deepak-Sangle](https://github.com/Deepak-Sangle)! - Open URIs from developer files in the default browser. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Show a thumbnail and fallback to an icon for unsupported files. Thanks [@pedrolamas](https://github.com/pedrolamas)! ### PowerRename - Updated the OOBE gif. Thanks [@ChaseKnowlden](https://github.com/ChaseKnowlden)! - Localized the renamed parts combo box. - Introduced advanced counter functionality. - Added remember last window size logic and optimized sorting of items. - Enable "Enumerate items" option by default. ### PowerToys Run - Fixed an issue causing original search to be abandoned when cycling through results. - Updated device and bluetooth results for Settings plugin. Thanks [@htcfreek](https://github.com/htcfreek)! - Fixed InvalidOperationException exception thrown. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Add Base64 Decoding function to the Value Generator plugin. Thanks [@LeagueOfPoro](https://github.com/LeagueOfPoro)! - Added a Keep shell open option for Shell plugin. - Added Crop And Lock to PowerToys plugin. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Registry Preview - Updated AppBarButtons to use an explicit AppBarButton.Icon. Thanks [@randyrants](https://github.com/randyrants)! - Fixed crash on clicking Save As button. ### Runner - Removed unneeded RegisterWindowMessage from tray icon logic. Thanks [@sredna](https://github.com/sredna)! - Fixed startup looping issue. - Improved old logs and installers cleanup logic. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Screen Ruler - Use proper resources file. ### Settings - Fixed issue causing problems with modifier keys and ShortcutControl. Thanks [@sh0ckj0ckey](https://github.com/sh0ckj0ckey)! - Fixed crash when clicking "Windows color settings" link. - Added support for launching Settings app directly. - Fixed issue causing DisplayDescription not showing for PowerToys Run PluginAdditionalOption. - Fixed issue causing FileLocksmith 'Show File Locksmith in' setting not showing correct value. - Fixed issue causing Awake on/off toggle in Settings flyout not to work when Settings Awake page is opened. ### Documentation - Added documentation for PowerToys Run third-party plugins. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Fixed broken links in keyboardmanagerui.md. Thanks [@shubhsardana29](https://github.com/shubhsardana29)! - Updated core team in COMMUNITY.md. - Fixed broken links in ui-architecture.md. Thanks [@SamB](https://github.com/SamB)! - Updated community.valuegenerator.md with Base64DecodeRequest description. ### Development - Updated test packages and StyleCop. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Condense NuGet Restore into MSBuild Tasks. Thanks [@snickler](https://github.com/snickler)! #### What is being planned for version 0.74 For [v0.74][github-next-release-work], we'll work on the items below: - Language selection - Modernize and refresh the UX of PowerToys based on WPF - Stability / bug fixes - Peek: UI improvements ## PowerToys Community The PowerToys team is extremely grateful to have the [support of an amazing active community][community-link]. The work you do is incredibly important. PowerToys wouldn’t be nearly what it is today without your help filing bugs, updating documentation, guiding the design, or writing features. We want to say thank you and take time to recognize your work. Month by month, you directly help make PowerToys a better piece of software. ## Code of Conduct This project has adopted the [Microsoft Open Source Code of Conduct][oss-conduct-code]. ## Privacy Statement The application logs basic telemetry. Our Telemetry Data page (Coming Soon) has the trends from the telemetry. Please read the [Microsoft privacy statement][privacy-link] for more information. [oss-CLA]: https://cla.opensource.microsoft.com [oss-conduct-code]: CODE_OF_CONDUCT.md [community-link]: COMMUNITY.md [github-release-link]: https://aka.ms/installPowerToys [microsoft-store-link]: https://aka.ms/getPowertoys [winget-link]: https://github.com/microsoft/winget-cli#installing-the-client [roadmap]: https://github.com/microsoft/PowerToys/wiki/Roadmap [privacy-link]: http://go.microsoft.com/fwlink/?LinkId=521839 [vidConfOverview]: https://aka.ms/PowerToysOverview_VideoConference [loc-bug]: https://github.com/microsoft/PowerToys/issues/new?assignees=&labels=&template=translation_issue.md&title= [usingPowerToys-docs-link]: https://aka.ms/powertoys-docs
# Microsoft PowerToys ![Hero image for Microsoft PowerToys](doc/images/overview/PT_hero_image.png) [How to use PowerToys][usingPowerToys-docs-link] | [Downloads & Release notes][github-release-link] | [Contributing to PowerToys](#contributing) | [What's Happening](#whats-happening) | [Roadmap](#powertoys-roadmap) ## Build status | Architecture | Solution (Main) | Solution (Stable) | Installer (Main) | |--------------|-----------------|-------------------|------------------| | x64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main&jobName=Build%20x64%20Release) | [![Build Status for Stable](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=stable&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_x64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | | ARM64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main) | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_arm64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | ## About Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. For more info on [PowerToys overviews and how to use the utilities][usingPowerToys-docs-link], or any other tools and resources for [Windows development environments](https://learn.microsoft.com/windows/dev-environment/overview), head over to [learn.microsoft.com][usingPowerToys-docs-link]! | | Current utilities: | | |--------------|--------------------|--------------| | [Always on Top](https://aka.ms/PowerToysOverview_AoT) | [PowerToys Awake](https://aka.ms/PowerToysOverview_Awake) | [Color Picker](https://aka.ms/PowerToysOverview_ColorPicker) | | [Crop And Lock](https://aka.ms/PowerToysOverview_CropAndLock) | [FancyZones](https://aka.ms/PowerToysOverview_FancyZones) | [File Explorer Add-ons](https://aka.ms/PowerToysOverview_FileExplorerAddOns) | | [File Locksmith](https://aka.ms/PowerToysOverview_FileLocksmith) | [Hosts File Editor](https://aka.ms/PowerToysOverview_HostsFileEditor) | [Image Resizer](https://aka.ms/PowerToysOverview_ImageResizer) | | [Keyboard Manager](https://aka.ms/PowerToysOverview_KeyboardManager) | [Mouse utilities](https://aka.ms/PowerToysOverview_MouseUtilities) | [Mouse Without Borders](https://aka.ms/PowerToysOverview_MouseWithoutBorders) | | [Peek](https://aka.ms/PowerToysOverview_Peek) | [Paste as Plain Text](https://aka.ms/PowerToysOverview_PastePlain) | [PowerRename](https://aka.ms/PowerToysOverview_PowerRename) | | [PowerToys Run](https://aka.ms/PowerToysOverview_PowerToysRun) | [Quick Accent](https://aka.ms/PowerToysOverview_QuickAccent) | [Registry Preview](https://aka.ms/PowerToysOverview_RegistryPreview) | | [Screen Ruler](https://aka.ms/PowerToysOverview_ScreenRuler) | [Shortcut Guide](https://aka.ms/PowerToysOverview_ShortcutGuide) | [Text Extractor](https://aka.ms/PowerToysOverview_TextExtractor) | | [Video Conference Mute](https://aka.ms/PowerToysOverview_VideoConference) | ## Installing and running Microsoft PowerToys ### Requirements - Windows 11 or Windows 10 version 2004 (code name 20H1 / build number 19041) or newer. - Our installer will install the following items: - [Microsoft Edge WebView2 Runtime](https://go.microsoft.com/fwlink/p/?LinkId=2124703) bootstrapper. This will install the latest version. ### Via GitHub with EXE [Recommended] Go to the [Microsoft PowerToys GitHub releases page][github-release-link] and click on `Assets` at the bottom to show the files available in the release. Please use the appropriate PowerToys installer that matches your machine's architecture and install scope. For most, it is `x64` and per-user. <!-- items that need to be updated release to release --> [github-next-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F48 [github-current-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F47 [ptUserX64]: https://github.com/microsoft/PowerToys/releases/download/v0.74.0/PowerToysUserSetup-0.74.0-x64.exe [ptUserArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.74.0/PowerToysUserSetup-0.74.0-arm64.exe [ptMachineX64]: https://github.com/microsoft/PowerToys/releases/download/v0.74.0/PowerToysSetup-0.74.0-x64.exe [ptMachineArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.74.0/PowerToysSetup-0.74.0-arm64.exe | Description | Filename | sha256 hash | |----------------|----------|-------------| | Per user - x64 | [PowerToysUserSetup-0.74.0-x64.exe][ptUserX64] | 1C4ECE9F11488BAFFAE6B76D2B0504FA18BFFEA11EBC38BCC87F5D86AEA87C7C | | Per user - ARM64 | [PowerToysUserSetup-0.74.0-arm64.exe][ptUserArm64] | 4F3842FAB0839A361A15A06B7720BA8A0FE7F9AF98EA94245C08DEF37678CA4A | | Machine wide - x64 | [PowerToysSetup-0.74.0-x64.exe][ptMachineX64] | 648992E8CEA08F3C63C7CCBD554ADDF500ECBC4560187310BC12E6CB9C2F38E3 | | Machine wide - ARM64 | [PowerToysSetup-0.74.0-arm64.exe][ptMachineArm64] | 2B6D92F1A0EA688C7EE882050AC9B030C8B3A18765163FB6D67E5E694A4D4FE3 | This is our preferred method. ### Via Microsoft Store Install from the [Microsoft Store's PowerToys page][microsoft-store-link]. You must be using the [new Microsoft Store](https://blogs.windows.com/windowsExperience/2021/06/24/building-a-new-open-microsoft-store-on-windows-11/) which is available for both Windows 11 and Windows 10. ### Via WinGet Download PowerToys from [WinGet][winget-link]. Updating PowerToys via winget will respect current PowerToys installation scope. To install PowerToys, run the following command from the command line / PowerShell: #### User scope installer [default] ```powershell winget install Microsoft.PowerToys -s winget ``` #### Machine-wide scope installer ```powershell winget install --scope machine Microsoft.PowerToys -s winget ``` ### Other install methods There are [community driven install methods](./doc/unofficialInstallMethods.md) such as Chocolatey and Scoop. If these are your preferred install solutions, you can find the install instructions there. ## Third-Party Run Plugins There is a collection of [third-party plugins](./doc/thirdPartyRunPlugins.md) created by the community that aren't distributed with PowerToys. ## Contributing This project welcomes contributions of all types. Besides coding features / bug fixes, other ways to assist include spec writing, design, documentation, and finding bugs. We are excited to work with the power user community to build a set of tools for helping you get the most out of Windows. We ask that **before you start work on a feature that you would like to contribute**, please read our [Contributor's Guide](CONTRIBUTING.md). We would be happy to work with you to figure out the best approach, provide guidance and mentorship throughout feature development, and help avoid any wasted or duplicate effort. Most contributions require you to agree to a [Contributor License Agreement (CLA)][oss-CLA] declaring that you grant us the rights to use your contribution and that you have permission to do so. For guidance on developing for PowerToys, please read the [developer docs](/doc/devdocs) for a detailed breakdown. This includes how to setup your computer to compile. ## What's Happening ### PowerToys Roadmap Our [prioritized roadmap][roadmap] of features and utilities that the core team is focusing on. ### 0.74 - September 2023 Update In this release, we focused on stability and improvements. **Highlights** - Upgraded to Windows App SDK 1.4.1, increasing stability of WinUI3 utilities. Thanks [@dongle-the-gadget](https://github.com/dongle-the-gadget) for starting the upgrade! - Text Extractor was upgraded to its version 2.0, with a new overlay, table mode and more Quality of Life improvements. Thanks [@TheJoeFin](https://github.com/TheJoeFin)! - Improved FancyZones stability, fixing some layout resets and improving handling of newly created windows on Windows 11. - Fixed many silent crashes that were reported to Watson and the user's event viewer. ### General - Turning animations off in Windows Settings will now also turn them off in PowerToys. - Upgraded the Windows App SDK dependency to 1.4.1. Thanks [@dongle-the-gadget](https://github.com/dongle-the-gadget) for the original 1.4.0 upgrade! - Show in the thumbnail label and application titles when running as administrator. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Upgraded the Win UI Community Toolkit dependency to 8.0. Thanks [@niels9001](https://github.com/niels9001)! ### Awake - Added down-sampled variants to the application's icon. Thanks [@morriscurtis](https://github.com/morriscurtis)! ### Color Picker - After adding a new color in the editor, the history will scroll the new color into view. Thanks [@peerpalo](https://github.com/peerpalo)! ### Crop and Lock - Fixed a Crop and Lock crash that would occur when trying to reparent a window crashes the target application. An error message is shown instead. ### FancyZones - Set the process and main thread priority to normal. - Fixed handling newly created windows on Windows 11. - Fixed scenarios where opening the FancyZones Editor would reset the layouts. ### File Explorer add-ons - Optimized CPU usage for generating SVG thumbnails. - Improved handling of Gcode Thumbnails, including JPG and QOI formats. Thanks [@pedrolamas](https://github.com/pedrolamas)! - Better handled errors when sending telemetry, which were causing reported crashes. - Fixed some thumbnails not being shown centered like before the optimization. ### File Locksmith - Shows files opened by processes with PID greater than 65535. Thanks [@poke30744](https://github.com/poke30744)! - Fixed a GDI object leak in the context menu which would crash Explorer. ### Find My Mouse - Added new activation methods, including by hotkey. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Hosts File Editor - Ignore the default ACME sample entries in the hosts file. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Improved save error handling and added better error messages. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Corrected a check for an error when signaling the application to start as administrator. - Refactored the context menu. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Fixed dialogs overlapping the title bar after the upgrade to Windows App SDK 1.4. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Keyboard Manager - Distinguish between the regular minus key and the numpad minus key. ### Mouse Without Borders - Fixed a crash when trying to restart the application. ### Peek - Using Peek on HTML files will show a white background by default, similar to a browser's default behavior. - Fix a white flash on Dark theme when switching file and improved the development file preview detection and adjustments. ### PowerRename - Fixed a crash caused by big counter values on the new enumeration method. ### PowerToys Run - It's now possible to select which shell is used by the Shell plugin. - A combobox option type was added to the plugin options. - Fixed a bug in the Calculator plugin that was causing decimal numbers to be misinterpreted on locales where the dot (`.`) character isn't used as a decimal or digit separator. - Improved the Program plugin stability when it fails to load a program's thumbnail at startup. - The use of Pinyin for querying some plugins can now be turned on in Settings. Thanks [@ChaseKnowlden](https://github.com/ChaseKnowlden)! - Refactored option types for plugin and added number, string and composite types to be used in the future. Thanks [@htcfreek](https://github.com/htcfreek)! - Fixed the entry for searching for Windows updates in the Settings plugin. Thanks [@htcfreek](https://github.com/htcfreek)! ### Quick Accent - The "All languages" character set is now calculated by programmatically querying the characters for every available language. Thanks [@dannysummerlin](https://github.com/dannysummerlin)! - Added é to the Norwegian and Swedish languages. Thanks [@Aaron-Junker](https://github.com/Aaron-Junker)! - Added a runtime cache to the "All languages" character set, to only calculate accents once per key. ### Registry Preview - Fixed focusing issues at startup. - Improved the data visualization to show data in a similar way to the Windows Registry Editor. Thanks [@dillydylann](https://github.com/dillydylann)! ### Runner - Fixed hanging when a bug report was generated from the flyout. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Settings - Improved the way the OOBE window reacts to Windows theme change. - Fixed an issue that made it impossible to change the "Switch between windows in the current zone" "Next window" shortcut for FancyZones. - Fixed a crash when entering a duplicate name for a color in the Color Picker page and improved clean up when cancelling a color edit. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Text Extractor - Text Extractor 2.0, with a new overlay, table mode and more Quality of Life improvements. Thanks [@TheJoeFin](https://github.com/TheJoeFin)! ### Documentation - SECURITY.md was updated from 0.0.2 to 0.0.9. Thanks [@Aaron-Junker](https://github.com/Aaron-Junker)! - Improved the README and main development document for clarity and completeness. Thanks [@codeofdusk](https://github.com/codeofdusk) and [@aprilbbrockhoeft](https://github.com/aprilbbrockhoeft)! ### Development - Fixed PowerToys Run DateTime plugin tests that were failing depending on locale, so that they can be run correctly on all dev machines. - Fixed PowerToys Run System plugin tests that were failing for certain network interfaces, so that they can be run correctly on all dev machines. Thanks [@snickler](https://github.com/snickler)! - Fixed a markdown bug on the GitHub /helped command. - Switched build pipelines to a new agent pool. Thanks [@DHowett](https://github.com/DHowett)! - New .cs files created in Visual Studio get the header added automatically. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! #### What is being planned for version 0.75 For [v0.75][github-next-release-work], we'll work on the items below: - Language selection - .NET 8 upgrade - Policy support for managing PowerToys Run plugins. *Attention*: A breaking change is planned (for 0.75), in which each plugin has to declare its identifier programmatically so that it can be controlled through GPO. For third-party plugin developers, please check https://github.com/microsoft/PowerToys/pull/27468 for more details. - New utility: Environment Variables Editor. Here's a Work in Progress preview: ![Environment Variables Editor WIP](https://github.com/microsoft/PowerToys/assets/26118718/f99532a8-5aae-481b-a662-19a95f4aa03d) - New Settings homepage. Here's a Work in Progress preview: ![PowerToys Settings Dashboard WIP](https://github.com/microsoft/PowerToys/assets/26118718/938a5715-0a9b-4fe9-9e15-adfec92da694) - Modernize and refresh the UX of PowerToys based on WPF. Here's Work in Progress previews for the modules "PowerToys Run" and "Color Picker": ![PowerToys Run UI refresh WIP](https://github.com/microsoft/PowerToys/assets/9866362/16903bcb-c18e-49fb-93ca-738b81957055) ![ColorPicker UI refresh WIP](https://github.com/microsoft/PowerToys/assets/9866362/ceebe54b-de63-4ce7-afcb-2cd4280bf4d1) - Stability / bug fixes ## PowerToys Community The PowerToys team is extremely grateful to have the [support of an amazing active community][community-link]. The work you do is incredibly important. PowerToys wouldn’t be nearly what it is today without your help filing bugs, updating documentation, guiding the design, or writing features. We want to say thank you and take time to recognize your work. Month by month, you directly help make PowerToys a better piece of software. ## Code of Conduct This project has adopted the [Microsoft Open Source Code of Conduct][oss-conduct-code]. ## Privacy Statement The application logs basic telemetry. Our Telemetry Data page (Coming Soon) has the trends from the telemetry. Please read the [Microsoft privacy statement][privacy-link] for more information. [oss-CLA]: https://cla.opensource.microsoft.com [oss-conduct-code]: CODE_OF_CONDUCT.md [community-link]: COMMUNITY.md [github-release-link]: https://aka.ms/installPowerToys [microsoft-store-link]: https://aka.ms/getPowertoys [winget-link]: https://github.com/microsoft/winget-cli#installing-the-client [roadmap]: https://github.com/microsoft/PowerToys/wiki/Roadmap [privacy-link]: http://go.microsoft.com/fwlink/?LinkId=521839 [vidConfOverview]: https://aka.ms/PowerToysOverview_VideoConference [loc-bug]: https://github.com/microsoft/PowerToys/issues/new?assignees=&labels=&template=translation_issue.md&title= [usingPowerToys-docs-link]: https://aka.ms/powertoys-docs
jaimecbernardo
a1e0bd51617b2bea189cb16324eecd0e13fa7b86
77063e0767a0619abfc339db3a2a564d27310b6c
```suggestion - Improved FancyZones stability, fixing some layout resets and improving handling of newly created windows on Windows 11. ```
Aaron-Junker
411
microsoft/PowerToys
28,775
0.74 changelogs
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request Readme update for the 0.74 release. This will be copy / pasted for release notes.
null
2023-09-26 11:20:42+00:00
2023-09-26 21:36:51+00:00
README.md
# Microsoft PowerToys ![Hero image for Microsoft PowerToys](doc/images/overview/PT_hero_image.png) [How to use PowerToys][usingPowerToys-docs-link] | [Downloads & Release notes][github-release-link] | [Contributing to PowerToys](#contributing) | [What's Happening](#whats-happening) | [Roadmap](#powertoys-roadmap) ## Build status | Architecture | Solution (Main) | Solution (Stable) | Installer (Main) | |--------------|-----------------|-------------------|------------------| | x64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main&jobName=Build%20x64%20Release) | [![Build Status for Stable](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=stable&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_x64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | | ARM64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main) | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_arm64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | ## About Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. For more info on [PowerToys overviews and how to use the utilities][usingPowerToys-docs-link], or any other tools and resources for [Windows development environments](https://learn.microsoft.com/windows/dev-environment/overview), head over to [learn.microsoft.com][usingPowerToys-docs-link]! | | Current utilities: | | |--------------|--------------------|--------------| | [Always on Top](https://aka.ms/PowerToysOverview_AoT) | [PowerToys Awake](https://aka.ms/PowerToysOverview_Awake) | [Color Picker](https://aka.ms/PowerToysOverview_ColorPicker) | | [Crop And Lock](https://aka.ms/PowerToysOverview_CropAndLock) | [FancyZones](https://aka.ms/PowerToysOverview_FancyZones) | [File Explorer Add-ons](https://aka.ms/PowerToysOverview_FileExplorerAddOns) | | [File Locksmith](https://aka.ms/PowerToysOverview_FileLocksmith) | [Hosts File Editor](https://aka.ms/PowerToysOverview_HostsFileEditor) | [Image Resizer](https://aka.ms/PowerToysOverview_ImageResizer) | | [Keyboard Manager](https://aka.ms/PowerToysOverview_KeyboardManager) | [Mouse utilities](https://aka.ms/PowerToysOverview_MouseUtilities) | [Mouse Without Borders](https://aka.ms/PowerToysOverview_MouseWithoutBorders) | | [Peek](https://aka.ms/PowerToysOverview_Peek) | [Paste as Plain Text](https://aka.ms/PowerToysOverview_PastePlain) | [PowerRename](https://aka.ms/PowerToysOverview_PowerRename) | | [PowerToys Run](https://aka.ms/PowerToysOverview_PowerToysRun) | [Quick Accent](https://aka.ms/PowerToysOverview_QuickAccent) | [Registry Preview](https://aka.ms/PowerToysOverview_RegistryPreview) | | [Screen Ruler](https://aka.ms/PowerToysOverview_ScreenRuler) | [Shortcut Guide](https://aka.ms/PowerToysOverview_ShortcutGuide) | [Text Extractor](https://aka.ms/PowerToysOverview_TextExtractor) | | [Video Conference Mute](https://aka.ms/PowerToysOverview_VideoConference) | ## Installing and running Microsoft PowerToys ### Requirements - Windows 11 or Windows 10 version 2004 (code name 20H1 / build number 19041) or newer. - Our installer will install the following items: - [Microsoft Edge WebView2 Runtime](https://go.microsoft.com/fwlink/p/?LinkId=2124703) bootstrapper. This will install the latest version. ### Via GitHub with EXE [Recommended] Go to the [Microsoft PowerToys GitHub releases page][github-release-link] and click on `Assets` at the bottom to show the files available in the release. Please use the appropriate PowerToys installer that matches your machine's architecture and install scope. For most, it is `x64` and per-user. <!-- items that need to be updated release to release --> [github-next-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F47 [github-current-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F46 [ptUserX64]: https://github.com/microsoft/PowerToys/releases/download/v0.73.0/PowerToysUserSetup-0.73.0-x64.exe [ptUserArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.73.0/PowerToysUserSetup-0.73.0-arm64.exe [ptMachineX64]: https://github.com/microsoft/PowerToys/releases/download/v0.73.0/PowerToysSetup-0.73.0-x64.exe [ptMachineArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.73.0/PowerToysSetup-0.73.0-arm64.exe | Description | Filename | sha256 hash | |----------------|----------|-------------| | Per user - x64 | [PowerToysUserSetup-0.73.0-x64.exe][ptUserX64] | BA55D245BDD734FD6F19803DD706A3AB8E0ABC491591195534997CF2122D3B7E | | Per user - ARM64 | [PowerToysUserSetup-0.73.0-arm64.exe][ptUserArm64] | FBFA40EA5FFA05236A7CCDD05E5142EE0C93D7485B965784196ED9B086BFEBF4 | | Machine wide - x64 | [PowerToysSetup-0.73.0-x64.exe][ptMachineX64] | 7FDA06292C7C2E6DA5AEF88D8E9D3DE89D331E9E356A232289F9B37CE4503894 | | Machine wide - ARM64 | [PowerToysSetup-0.73.0-arm64.exe][ptMachineArm64] | 4260AA30A1F52F194EE07E9E7ECD9E9F4CF35289267F213BC933F7A5191AC17C | This is our preferred method. ### Via Microsoft Store Install from the [Microsoft Store's PowerToys page][microsoft-store-link]. You must be using the [new Microsoft Store](https://blogs.windows.com/windowsExperience/2021/06/24/building-a-new-open-microsoft-store-on-windows-11/) which is available for both Windows 11 and Windows 10. ### Via WinGet Download PowerToys from [WinGet][winget-link]. Updating PowerToys via winget will respect current PowerToys installation scope. To install PowerToys, run the following command from the command line / PowerShell: #### User scope installer [default] ```powershell winget install Microsoft.PowerToys -s winget ``` #### Machine-wide scope installer ```powershell winget install --scope machine Microsoft.PowerToys -s winget ``` ### Other install methods There are [community driven install methods](./doc/unofficialInstallMethods.md) such as Chocolatey and Scoop. If these are your preferred install solutions, you can find the install instructions there. ## Third-Party Run Plugins There is a collection of [third-party plugins](./doc/thirdPartyRunPlugins.md) created by the community that aren't distributed with PowerToys. ## Contributing This project welcomes contributions of all types. Besides coding features / bug fixes, other ways to assist include spec writing, design, documentation, and finding bugs. We are excited to work with the power user community to build a set of tools for helping you get the most out of Windows. We ask that **before you start work on a feature that you would like to contribute**, please read our [Contributor's Guide](CONTRIBUTING.md). We would be happy to work with you to figure out the best approach, provide guidance and mentorship throughout feature development, and help avoid any wasted or duplicate effort. Most contributions require you to agree to a [Contributor License Agreement (CLA)][oss-CLA] declaring that you grant us the rights to use your contribution and that you have permission to do so. For guidance on developing for PowerToys, please read the [developer docs](/doc/devdocs) for a detailed breakdown. This includes how to setup your computer to compile. ## What's Happening ### PowerToys Roadmap Our [prioritized roadmap][roadmap] of features and utilities that the core team is focusing on. ### 0.73 - August 2023 Update In this release, we focused on releasing new features, stability and improvements. **Highlights** - Keyboard manager now allows Numpad keys to be bound separately from the main keyboard. If using a previous configuration, only the main keyboard (not numpad) keys will be mapped. To restore the previous behavior, manually add separate bindings for numpad keys. - New utility: Crop And Lock allows you to crop a current application into a smaller window or just create a thumbnail. Focus the target window and press the shortcut to start cropping. - FancyZones code improvements and refactor. - Modernized ImageResizer UX. - PowerRename advanced counter functionality. ### General - Added missing CoUninitialize call in elevation logic. Thanks [@sredna](https://github.com/sredna)! - New utility: Crop And Lock. Thanks [@robmikh](https://github.com/robmikh)! and [@kevinguo305](https://github.com/kevinguo305)! - Added new /helped fabric bot command to GitHub repo. Thanks [@Aaron-Junker](https://github.com/Aaron-Junker)! - Fixed crashes caused by invalid settings. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Always On Top - Added border transparency. ### FancyZones - Fixed issue causing canvas zones being drawn only when dragging in the zone area. - Fixed user-defined default layout highlighting issue. - Refactored and improved code quality. - Fixed issue causing the wrong layout to be applied when duplicating a non-selected layout. ### File Locksmith - Icon update. Thanks [@jmaraujouy](https://github.com/jmaraujouy)! ### File Explorer add-ons - Fixed issue causing thumbnail previewers to lock files. - Open URIs from developer files in default browser. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Installer - Fixed PowerToys autorun after installing as SYSTEM user. - Removed CreateScheduledTask custom action to handle task creation only from runner code. ### Image Resizer - Moved from ModernWPF to WpfUI to refresh and modernize UI/UX. Thanks [@niels9001](https://github.com/niels9001)! ### Keyboard Manager - Rephrased labels to enhance clarity. Thanks [@Jay-o-Way](https://github.com/Jay-o-Way)! - Keyboard manager now allows Numpad keys to be bound separately from the main keyboard. If using a previous configuration, only the main keyboard (not numpad) keys will be mapped. To restore the previous behavior, manually add separate bindings for numpad keys. ### Mouse Highlighter - The highlighter is now visible in "Always on Top" windows. - Added settings for automatic activation on startup. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Mouse Pointer Crosshairs - Added settings for automatic activation on startup. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Peek - Show correct file type for shortcuts. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Fixed issue causing the wrong file size to be displayed. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Show 1 byte instead of 1 bytes file size. Thanks [@Deepak-Sangle](https://github.com/Deepak-Sangle)! - Open URIs from developer files in the default browser. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Show a thumbnail and fallback to an icon for unsupported files. Thanks [@pedrolamas](https://github.com/pedrolamas)! ### PowerRename - Updated the OOBE gif. Thanks [@ChaseKnowlden](https://github.com/ChaseKnowlden)! - Localized the renamed parts combo box. - Introduced advanced counter functionality. - Added remember last window size logic and optimized sorting of items. - Enable "Enumerate items" option by default. ### PowerToys Run - Fixed an issue causing original search to be abandoned when cycling through results. - Updated device and bluetooth results for Settings plugin. Thanks [@htcfreek](https://github.com/htcfreek)! - Fixed InvalidOperationException exception thrown. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Add Base64 Decoding function to the Value Generator plugin. Thanks [@LeagueOfPoro](https://github.com/LeagueOfPoro)! - Added a Keep shell open option for Shell plugin. - Added Crop And Lock to PowerToys plugin. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Registry Preview - Updated AppBarButtons to use an explicit AppBarButton.Icon. Thanks [@randyrants](https://github.com/randyrants)! - Fixed crash on clicking Save As button. ### Runner - Removed unneeded RegisterWindowMessage from tray icon logic. Thanks [@sredna](https://github.com/sredna)! - Fixed startup looping issue. - Improved old logs and installers cleanup logic. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Screen Ruler - Use proper resources file. ### Settings - Fixed issue causing problems with modifier keys and ShortcutControl. Thanks [@sh0ckj0ckey](https://github.com/sh0ckj0ckey)! - Fixed crash when clicking "Windows color settings" link. - Added support for launching Settings app directly. - Fixed issue causing DisplayDescription not showing for PowerToys Run PluginAdditionalOption. - Fixed issue causing FileLocksmith 'Show File Locksmith in' setting not showing correct value. - Fixed issue causing Awake on/off toggle in Settings flyout not to work when Settings Awake page is opened. ### Documentation - Added documentation for PowerToys Run third-party plugins. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Fixed broken links in keyboardmanagerui.md. Thanks [@shubhsardana29](https://github.com/shubhsardana29)! - Updated core team in COMMUNITY.md. - Fixed broken links in ui-architecture.md. Thanks [@SamB](https://github.com/SamB)! - Updated community.valuegenerator.md with Base64DecodeRequest description. ### Development - Updated test packages and StyleCop. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Condense NuGet Restore into MSBuild Tasks. Thanks [@snickler](https://github.com/snickler)! #### What is being planned for version 0.74 For [v0.74][github-next-release-work], we'll work on the items below: - Language selection - Modernize and refresh the UX of PowerToys based on WPF - Stability / bug fixes - Peek: UI improvements ## PowerToys Community The PowerToys team is extremely grateful to have the [support of an amazing active community][community-link]. The work you do is incredibly important. PowerToys wouldn’t be nearly what it is today without your help filing bugs, updating documentation, guiding the design, or writing features. We want to say thank you and take time to recognize your work. Month by month, you directly help make PowerToys a better piece of software. ## Code of Conduct This project has adopted the [Microsoft Open Source Code of Conduct][oss-conduct-code]. ## Privacy Statement The application logs basic telemetry. Our Telemetry Data page (Coming Soon) has the trends from the telemetry. Please read the [Microsoft privacy statement][privacy-link] for more information. [oss-CLA]: https://cla.opensource.microsoft.com [oss-conduct-code]: CODE_OF_CONDUCT.md [community-link]: COMMUNITY.md [github-release-link]: https://aka.ms/installPowerToys [microsoft-store-link]: https://aka.ms/getPowertoys [winget-link]: https://github.com/microsoft/winget-cli#installing-the-client [roadmap]: https://github.com/microsoft/PowerToys/wiki/Roadmap [privacy-link]: http://go.microsoft.com/fwlink/?LinkId=521839 [vidConfOverview]: https://aka.ms/PowerToysOverview_VideoConference [loc-bug]: https://github.com/microsoft/PowerToys/issues/new?assignees=&labels=&template=translation_issue.md&title= [usingPowerToys-docs-link]: https://aka.ms/powertoys-docs
# Microsoft PowerToys ![Hero image for Microsoft PowerToys](doc/images/overview/PT_hero_image.png) [How to use PowerToys][usingPowerToys-docs-link] | [Downloads & Release notes][github-release-link] | [Contributing to PowerToys](#contributing) | [What's Happening](#whats-happening) | [Roadmap](#powertoys-roadmap) ## Build status | Architecture | Solution (Main) | Solution (Stable) | Installer (Main) | |--------------|-----------------|-------------------|------------------| | x64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main&jobName=Build%20x64%20Release) | [![Build Status for Stable](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=stable&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_x64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | | ARM64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main) | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_arm64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | ## About Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. For more info on [PowerToys overviews and how to use the utilities][usingPowerToys-docs-link], or any other tools and resources for [Windows development environments](https://learn.microsoft.com/windows/dev-environment/overview), head over to [learn.microsoft.com][usingPowerToys-docs-link]! | | Current utilities: | | |--------------|--------------------|--------------| | [Always on Top](https://aka.ms/PowerToysOverview_AoT) | [PowerToys Awake](https://aka.ms/PowerToysOverview_Awake) | [Color Picker](https://aka.ms/PowerToysOverview_ColorPicker) | | [Crop And Lock](https://aka.ms/PowerToysOverview_CropAndLock) | [FancyZones](https://aka.ms/PowerToysOverview_FancyZones) | [File Explorer Add-ons](https://aka.ms/PowerToysOverview_FileExplorerAddOns) | | [File Locksmith](https://aka.ms/PowerToysOverview_FileLocksmith) | [Hosts File Editor](https://aka.ms/PowerToysOverview_HostsFileEditor) | [Image Resizer](https://aka.ms/PowerToysOverview_ImageResizer) | | [Keyboard Manager](https://aka.ms/PowerToysOverview_KeyboardManager) | [Mouse utilities](https://aka.ms/PowerToysOverview_MouseUtilities) | [Mouse Without Borders](https://aka.ms/PowerToysOverview_MouseWithoutBorders) | | [Peek](https://aka.ms/PowerToysOverview_Peek) | [Paste as Plain Text](https://aka.ms/PowerToysOverview_PastePlain) | [PowerRename](https://aka.ms/PowerToysOverview_PowerRename) | | [PowerToys Run](https://aka.ms/PowerToysOverview_PowerToysRun) | [Quick Accent](https://aka.ms/PowerToysOverview_QuickAccent) | [Registry Preview](https://aka.ms/PowerToysOverview_RegistryPreview) | | [Screen Ruler](https://aka.ms/PowerToysOverview_ScreenRuler) | [Shortcut Guide](https://aka.ms/PowerToysOverview_ShortcutGuide) | [Text Extractor](https://aka.ms/PowerToysOverview_TextExtractor) | | [Video Conference Mute](https://aka.ms/PowerToysOverview_VideoConference) | ## Installing and running Microsoft PowerToys ### Requirements - Windows 11 or Windows 10 version 2004 (code name 20H1 / build number 19041) or newer. - Our installer will install the following items: - [Microsoft Edge WebView2 Runtime](https://go.microsoft.com/fwlink/p/?LinkId=2124703) bootstrapper. This will install the latest version. ### Via GitHub with EXE [Recommended] Go to the [Microsoft PowerToys GitHub releases page][github-release-link] and click on `Assets` at the bottom to show the files available in the release. Please use the appropriate PowerToys installer that matches your machine's architecture and install scope. For most, it is `x64` and per-user. <!-- items that need to be updated release to release --> [github-next-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F48 [github-current-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F47 [ptUserX64]: https://github.com/microsoft/PowerToys/releases/download/v0.74.0/PowerToysUserSetup-0.74.0-x64.exe [ptUserArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.74.0/PowerToysUserSetup-0.74.0-arm64.exe [ptMachineX64]: https://github.com/microsoft/PowerToys/releases/download/v0.74.0/PowerToysSetup-0.74.0-x64.exe [ptMachineArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.74.0/PowerToysSetup-0.74.0-arm64.exe | Description | Filename | sha256 hash | |----------------|----------|-------------| | Per user - x64 | [PowerToysUserSetup-0.74.0-x64.exe][ptUserX64] | 1C4ECE9F11488BAFFAE6B76D2B0504FA18BFFEA11EBC38BCC87F5D86AEA87C7C | | Per user - ARM64 | [PowerToysUserSetup-0.74.0-arm64.exe][ptUserArm64] | 4F3842FAB0839A361A15A06B7720BA8A0FE7F9AF98EA94245C08DEF37678CA4A | | Machine wide - x64 | [PowerToysSetup-0.74.0-x64.exe][ptMachineX64] | 648992E8CEA08F3C63C7CCBD554ADDF500ECBC4560187310BC12E6CB9C2F38E3 | | Machine wide - ARM64 | [PowerToysSetup-0.74.0-arm64.exe][ptMachineArm64] | 2B6D92F1A0EA688C7EE882050AC9B030C8B3A18765163FB6D67E5E694A4D4FE3 | This is our preferred method. ### Via Microsoft Store Install from the [Microsoft Store's PowerToys page][microsoft-store-link]. You must be using the [new Microsoft Store](https://blogs.windows.com/windowsExperience/2021/06/24/building-a-new-open-microsoft-store-on-windows-11/) which is available for both Windows 11 and Windows 10. ### Via WinGet Download PowerToys from [WinGet][winget-link]. Updating PowerToys via winget will respect current PowerToys installation scope. To install PowerToys, run the following command from the command line / PowerShell: #### User scope installer [default] ```powershell winget install Microsoft.PowerToys -s winget ``` #### Machine-wide scope installer ```powershell winget install --scope machine Microsoft.PowerToys -s winget ``` ### Other install methods There are [community driven install methods](./doc/unofficialInstallMethods.md) such as Chocolatey and Scoop. If these are your preferred install solutions, you can find the install instructions there. ## Third-Party Run Plugins There is a collection of [third-party plugins](./doc/thirdPartyRunPlugins.md) created by the community that aren't distributed with PowerToys. ## Contributing This project welcomes contributions of all types. Besides coding features / bug fixes, other ways to assist include spec writing, design, documentation, and finding bugs. We are excited to work with the power user community to build a set of tools for helping you get the most out of Windows. We ask that **before you start work on a feature that you would like to contribute**, please read our [Contributor's Guide](CONTRIBUTING.md). We would be happy to work with you to figure out the best approach, provide guidance and mentorship throughout feature development, and help avoid any wasted or duplicate effort. Most contributions require you to agree to a [Contributor License Agreement (CLA)][oss-CLA] declaring that you grant us the rights to use your contribution and that you have permission to do so. For guidance on developing for PowerToys, please read the [developer docs](/doc/devdocs) for a detailed breakdown. This includes how to setup your computer to compile. ## What's Happening ### PowerToys Roadmap Our [prioritized roadmap][roadmap] of features and utilities that the core team is focusing on. ### 0.74 - September 2023 Update In this release, we focused on stability and improvements. **Highlights** - Upgraded to Windows App SDK 1.4.1, increasing stability of WinUI3 utilities. Thanks [@dongle-the-gadget](https://github.com/dongle-the-gadget) for starting the upgrade! - Text Extractor was upgraded to its version 2.0, with a new overlay, table mode and more Quality of Life improvements. Thanks [@TheJoeFin](https://github.com/TheJoeFin)! - Improved FancyZones stability, fixing some layout resets and improving handling of newly created windows on Windows 11. - Fixed many silent crashes that were reported to Watson and the user's event viewer. ### General - Turning animations off in Windows Settings will now also turn them off in PowerToys. - Upgraded the Windows App SDK dependency to 1.4.1. Thanks [@dongle-the-gadget](https://github.com/dongle-the-gadget) for the original 1.4.0 upgrade! - Show in the thumbnail label and application titles when running as administrator. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Upgraded the Win UI Community Toolkit dependency to 8.0. Thanks [@niels9001](https://github.com/niels9001)! ### Awake - Added down-sampled variants to the application's icon. Thanks [@morriscurtis](https://github.com/morriscurtis)! ### Color Picker - After adding a new color in the editor, the history will scroll the new color into view. Thanks [@peerpalo](https://github.com/peerpalo)! ### Crop and Lock - Fixed a Crop and Lock crash that would occur when trying to reparent a window crashes the target application. An error message is shown instead. ### FancyZones - Set the process and main thread priority to normal. - Fixed handling newly created windows on Windows 11. - Fixed scenarios where opening the FancyZones Editor would reset the layouts. ### File Explorer add-ons - Optimized CPU usage for generating SVG thumbnails. - Improved handling of Gcode Thumbnails, including JPG and QOI formats. Thanks [@pedrolamas](https://github.com/pedrolamas)! - Better handled errors when sending telemetry, which were causing reported crashes. - Fixed some thumbnails not being shown centered like before the optimization. ### File Locksmith - Shows files opened by processes with PID greater than 65535. Thanks [@poke30744](https://github.com/poke30744)! - Fixed a GDI object leak in the context menu which would crash Explorer. ### Find My Mouse - Added new activation methods, including by hotkey. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Hosts File Editor - Ignore the default ACME sample entries in the hosts file. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Improved save error handling and added better error messages. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Corrected a check for an error when signaling the application to start as administrator. - Refactored the context menu. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Fixed dialogs overlapping the title bar after the upgrade to Windows App SDK 1.4. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Keyboard Manager - Distinguish between the regular minus key and the numpad minus key. ### Mouse Without Borders - Fixed a crash when trying to restart the application. ### Peek - Using Peek on HTML files will show a white background by default, similar to a browser's default behavior. - Fix a white flash on Dark theme when switching file and improved the development file preview detection and adjustments. ### PowerRename - Fixed a crash caused by big counter values on the new enumeration method. ### PowerToys Run - It's now possible to select which shell is used by the Shell plugin. - A combobox option type was added to the plugin options. - Fixed a bug in the Calculator plugin that was causing decimal numbers to be misinterpreted on locales where the dot (`.`) character isn't used as a decimal or digit separator. - Improved the Program plugin stability when it fails to load a program's thumbnail at startup. - The use of Pinyin for querying some plugins can now be turned on in Settings. Thanks [@ChaseKnowlden](https://github.com/ChaseKnowlden)! - Refactored option types for plugin and added number, string and composite types to be used in the future. Thanks [@htcfreek](https://github.com/htcfreek)! - Fixed the entry for searching for Windows updates in the Settings plugin. Thanks [@htcfreek](https://github.com/htcfreek)! ### Quick Accent - The "All languages" character set is now calculated by programmatically querying the characters for every available language. Thanks [@dannysummerlin](https://github.com/dannysummerlin)! - Added é to the Norwegian and Swedish languages. Thanks [@Aaron-Junker](https://github.com/Aaron-Junker)! - Added a runtime cache to the "All languages" character set, to only calculate accents once per key. ### Registry Preview - Fixed focusing issues at startup. - Improved the data visualization to show data in a similar way to the Windows Registry Editor. Thanks [@dillydylann](https://github.com/dillydylann)! ### Runner - Fixed hanging when a bug report was generated from the flyout. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Settings - Improved the way the OOBE window reacts to Windows theme change. - Fixed an issue that made it impossible to change the "Switch between windows in the current zone" "Next window" shortcut for FancyZones. - Fixed a crash when entering a duplicate name for a color in the Color Picker page and improved clean up when cancelling a color edit. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Text Extractor - Text Extractor 2.0, with a new overlay, table mode and more Quality of Life improvements. Thanks [@TheJoeFin](https://github.com/TheJoeFin)! ### Documentation - SECURITY.md was updated from 0.0.2 to 0.0.9. Thanks [@Aaron-Junker](https://github.com/Aaron-Junker)! - Improved the README and main development document for clarity and completeness. Thanks [@codeofdusk](https://github.com/codeofdusk) and [@aprilbbrockhoeft](https://github.com/aprilbbrockhoeft)! ### Development - Fixed PowerToys Run DateTime plugin tests that were failing depending on locale, so that they can be run correctly on all dev machines. - Fixed PowerToys Run System plugin tests that were failing for certain network interfaces, so that they can be run correctly on all dev machines. Thanks [@snickler](https://github.com/snickler)! - Fixed a markdown bug on the GitHub /helped command. - Switched build pipelines to a new agent pool. Thanks [@DHowett](https://github.com/DHowett)! - New .cs files created in Visual Studio get the header added automatically. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! #### What is being planned for version 0.75 For [v0.75][github-next-release-work], we'll work on the items below: - Language selection - .NET 8 upgrade - Policy support for managing PowerToys Run plugins. *Attention*: A breaking change is planned (for 0.75), in which each plugin has to declare its identifier programmatically so that it can be controlled through GPO. For third-party plugin developers, please check https://github.com/microsoft/PowerToys/pull/27468 for more details. - New utility: Environment Variables Editor. Here's a Work in Progress preview: ![Environment Variables Editor WIP](https://github.com/microsoft/PowerToys/assets/26118718/f99532a8-5aae-481b-a662-19a95f4aa03d) - New Settings homepage. Here's a Work in Progress preview: ![PowerToys Settings Dashboard WIP](https://github.com/microsoft/PowerToys/assets/26118718/938a5715-0a9b-4fe9-9e15-adfec92da694) - Modernize and refresh the UX of PowerToys based on WPF. Here's Work in Progress previews for the modules "PowerToys Run" and "Color Picker": ![PowerToys Run UI refresh WIP](https://github.com/microsoft/PowerToys/assets/9866362/16903bcb-c18e-49fb-93ca-738b81957055) ![ColorPicker UI refresh WIP](https://github.com/microsoft/PowerToys/assets/9866362/ceebe54b-de63-4ce7-afcb-2cd4280bf4d1) - Stability / bug fixes ## PowerToys Community The PowerToys team is extremely grateful to have the [support of an amazing active community][community-link]. The work you do is incredibly important. PowerToys wouldn’t be nearly what it is today without your help filing bugs, updating documentation, guiding the design, or writing features. We want to say thank you and take time to recognize your work. Month by month, you directly help make PowerToys a better piece of software. ## Code of Conduct This project has adopted the [Microsoft Open Source Code of Conduct][oss-conduct-code]. ## Privacy Statement The application logs basic telemetry. Our Telemetry Data page (Coming Soon) has the trends from the telemetry. Please read the [Microsoft privacy statement][privacy-link] for more information. [oss-CLA]: https://cla.opensource.microsoft.com [oss-conduct-code]: CODE_OF_CONDUCT.md [community-link]: COMMUNITY.md [github-release-link]: https://aka.ms/installPowerToys [microsoft-store-link]: https://aka.ms/getPowertoys [winget-link]: https://github.com/microsoft/winget-cli#installing-the-client [roadmap]: https://github.com/microsoft/PowerToys/wiki/Roadmap [privacy-link]: http://go.microsoft.com/fwlink/?LinkId=521839 [vidConfOverview]: https://aka.ms/PowerToysOverview_VideoConference [loc-bug]: https://github.com/microsoft/PowerToys/issues/new?assignees=&labels=&template=translation_issue.md&title= [usingPowerToys-docs-link]: https://aka.ms/powertoys-docs
jaimecbernardo
a1e0bd51617b2bea189cb16324eecd0e13fa7b86
77063e0767a0619abfc339db3a2a564d27310b6c
```suggestion - Fixed focusing issues at startup. ```
Aaron-Junker
412
microsoft/PowerToys
28,775
0.74 changelogs
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request Readme update for the 0.74 release. This will be copy / pasted for release notes.
null
2023-09-26 11:20:42+00:00
2023-09-26 21:36:51+00:00
README.md
# Microsoft PowerToys ![Hero image for Microsoft PowerToys](doc/images/overview/PT_hero_image.png) [How to use PowerToys][usingPowerToys-docs-link] | [Downloads & Release notes][github-release-link] | [Contributing to PowerToys](#contributing) | [What's Happening](#whats-happening) | [Roadmap](#powertoys-roadmap) ## Build status | Architecture | Solution (Main) | Solution (Stable) | Installer (Main) | |--------------|-----------------|-------------------|------------------| | x64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main&jobName=Build%20x64%20Release) | [![Build Status for Stable](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=stable&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_x64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | | ARM64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main) | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_arm64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | ## About Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. For more info on [PowerToys overviews and how to use the utilities][usingPowerToys-docs-link], or any other tools and resources for [Windows development environments](https://learn.microsoft.com/windows/dev-environment/overview), head over to [learn.microsoft.com][usingPowerToys-docs-link]! | | Current utilities: | | |--------------|--------------------|--------------| | [Always on Top](https://aka.ms/PowerToysOverview_AoT) | [PowerToys Awake](https://aka.ms/PowerToysOverview_Awake) | [Color Picker](https://aka.ms/PowerToysOverview_ColorPicker) | | [Crop And Lock](https://aka.ms/PowerToysOverview_CropAndLock) | [FancyZones](https://aka.ms/PowerToysOverview_FancyZones) | [File Explorer Add-ons](https://aka.ms/PowerToysOverview_FileExplorerAddOns) | | [File Locksmith](https://aka.ms/PowerToysOverview_FileLocksmith) | [Hosts File Editor](https://aka.ms/PowerToysOverview_HostsFileEditor) | [Image Resizer](https://aka.ms/PowerToysOverview_ImageResizer) | | [Keyboard Manager](https://aka.ms/PowerToysOverview_KeyboardManager) | [Mouse utilities](https://aka.ms/PowerToysOverview_MouseUtilities) | [Mouse Without Borders](https://aka.ms/PowerToysOverview_MouseWithoutBorders) | | [Peek](https://aka.ms/PowerToysOverview_Peek) | [Paste as Plain Text](https://aka.ms/PowerToysOverview_PastePlain) | [PowerRename](https://aka.ms/PowerToysOverview_PowerRename) | | [PowerToys Run](https://aka.ms/PowerToysOverview_PowerToysRun) | [Quick Accent](https://aka.ms/PowerToysOverview_QuickAccent) | [Registry Preview](https://aka.ms/PowerToysOverview_RegistryPreview) | | [Screen Ruler](https://aka.ms/PowerToysOverview_ScreenRuler) | [Shortcut Guide](https://aka.ms/PowerToysOverview_ShortcutGuide) | [Text Extractor](https://aka.ms/PowerToysOverview_TextExtractor) | | [Video Conference Mute](https://aka.ms/PowerToysOverview_VideoConference) | ## Installing and running Microsoft PowerToys ### Requirements - Windows 11 or Windows 10 version 2004 (code name 20H1 / build number 19041) or newer. - Our installer will install the following items: - [Microsoft Edge WebView2 Runtime](https://go.microsoft.com/fwlink/p/?LinkId=2124703) bootstrapper. This will install the latest version. ### Via GitHub with EXE [Recommended] Go to the [Microsoft PowerToys GitHub releases page][github-release-link] and click on `Assets` at the bottom to show the files available in the release. Please use the appropriate PowerToys installer that matches your machine's architecture and install scope. For most, it is `x64` and per-user. <!-- items that need to be updated release to release --> [github-next-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F47 [github-current-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F46 [ptUserX64]: https://github.com/microsoft/PowerToys/releases/download/v0.73.0/PowerToysUserSetup-0.73.0-x64.exe [ptUserArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.73.0/PowerToysUserSetup-0.73.0-arm64.exe [ptMachineX64]: https://github.com/microsoft/PowerToys/releases/download/v0.73.0/PowerToysSetup-0.73.0-x64.exe [ptMachineArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.73.0/PowerToysSetup-0.73.0-arm64.exe | Description | Filename | sha256 hash | |----------------|----------|-------------| | Per user - x64 | [PowerToysUserSetup-0.73.0-x64.exe][ptUserX64] | BA55D245BDD734FD6F19803DD706A3AB8E0ABC491591195534997CF2122D3B7E | | Per user - ARM64 | [PowerToysUserSetup-0.73.0-arm64.exe][ptUserArm64] | FBFA40EA5FFA05236A7CCDD05E5142EE0C93D7485B965784196ED9B086BFEBF4 | | Machine wide - x64 | [PowerToysSetup-0.73.0-x64.exe][ptMachineX64] | 7FDA06292C7C2E6DA5AEF88D8E9D3DE89D331E9E356A232289F9B37CE4503894 | | Machine wide - ARM64 | [PowerToysSetup-0.73.0-arm64.exe][ptMachineArm64] | 4260AA30A1F52F194EE07E9E7ECD9E9F4CF35289267F213BC933F7A5191AC17C | This is our preferred method. ### Via Microsoft Store Install from the [Microsoft Store's PowerToys page][microsoft-store-link]. You must be using the [new Microsoft Store](https://blogs.windows.com/windowsExperience/2021/06/24/building-a-new-open-microsoft-store-on-windows-11/) which is available for both Windows 11 and Windows 10. ### Via WinGet Download PowerToys from [WinGet][winget-link]. Updating PowerToys via winget will respect current PowerToys installation scope. To install PowerToys, run the following command from the command line / PowerShell: #### User scope installer [default] ```powershell winget install Microsoft.PowerToys -s winget ``` #### Machine-wide scope installer ```powershell winget install --scope machine Microsoft.PowerToys -s winget ``` ### Other install methods There are [community driven install methods](./doc/unofficialInstallMethods.md) such as Chocolatey and Scoop. If these are your preferred install solutions, you can find the install instructions there. ## Third-Party Run Plugins There is a collection of [third-party plugins](./doc/thirdPartyRunPlugins.md) created by the community that aren't distributed with PowerToys. ## Contributing This project welcomes contributions of all types. Besides coding features / bug fixes, other ways to assist include spec writing, design, documentation, and finding bugs. We are excited to work with the power user community to build a set of tools for helping you get the most out of Windows. We ask that **before you start work on a feature that you would like to contribute**, please read our [Contributor's Guide](CONTRIBUTING.md). We would be happy to work with you to figure out the best approach, provide guidance and mentorship throughout feature development, and help avoid any wasted or duplicate effort. Most contributions require you to agree to a [Contributor License Agreement (CLA)][oss-CLA] declaring that you grant us the rights to use your contribution and that you have permission to do so. For guidance on developing for PowerToys, please read the [developer docs](/doc/devdocs) for a detailed breakdown. This includes how to setup your computer to compile. ## What's Happening ### PowerToys Roadmap Our [prioritized roadmap][roadmap] of features and utilities that the core team is focusing on. ### 0.73 - August 2023 Update In this release, we focused on releasing new features, stability and improvements. **Highlights** - Keyboard manager now allows Numpad keys to be bound separately from the main keyboard. If using a previous configuration, only the main keyboard (not numpad) keys will be mapped. To restore the previous behavior, manually add separate bindings for numpad keys. - New utility: Crop And Lock allows you to crop a current application into a smaller window or just create a thumbnail. Focus the target window and press the shortcut to start cropping. - FancyZones code improvements and refactor. - Modernized ImageResizer UX. - PowerRename advanced counter functionality. ### General - Added missing CoUninitialize call in elevation logic. Thanks [@sredna](https://github.com/sredna)! - New utility: Crop And Lock. Thanks [@robmikh](https://github.com/robmikh)! and [@kevinguo305](https://github.com/kevinguo305)! - Added new /helped fabric bot command to GitHub repo. Thanks [@Aaron-Junker](https://github.com/Aaron-Junker)! - Fixed crashes caused by invalid settings. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Always On Top - Added border transparency. ### FancyZones - Fixed issue causing canvas zones being drawn only when dragging in the zone area. - Fixed user-defined default layout highlighting issue. - Refactored and improved code quality. - Fixed issue causing the wrong layout to be applied when duplicating a non-selected layout. ### File Locksmith - Icon update. Thanks [@jmaraujouy](https://github.com/jmaraujouy)! ### File Explorer add-ons - Fixed issue causing thumbnail previewers to lock files. - Open URIs from developer files in default browser. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Installer - Fixed PowerToys autorun after installing as SYSTEM user. - Removed CreateScheduledTask custom action to handle task creation only from runner code. ### Image Resizer - Moved from ModernWPF to WpfUI to refresh and modernize UI/UX. Thanks [@niels9001](https://github.com/niels9001)! ### Keyboard Manager - Rephrased labels to enhance clarity. Thanks [@Jay-o-Way](https://github.com/Jay-o-Way)! - Keyboard manager now allows Numpad keys to be bound separately from the main keyboard. If using a previous configuration, only the main keyboard (not numpad) keys will be mapped. To restore the previous behavior, manually add separate bindings for numpad keys. ### Mouse Highlighter - The highlighter is now visible in "Always on Top" windows. - Added settings for automatic activation on startup. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Mouse Pointer Crosshairs - Added settings for automatic activation on startup. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Peek - Show correct file type for shortcuts. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Fixed issue causing the wrong file size to be displayed. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Show 1 byte instead of 1 bytes file size. Thanks [@Deepak-Sangle](https://github.com/Deepak-Sangle)! - Open URIs from developer files in the default browser. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Show a thumbnail and fallback to an icon for unsupported files. Thanks [@pedrolamas](https://github.com/pedrolamas)! ### PowerRename - Updated the OOBE gif. Thanks [@ChaseKnowlden](https://github.com/ChaseKnowlden)! - Localized the renamed parts combo box. - Introduced advanced counter functionality. - Added remember last window size logic and optimized sorting of items. - Enable "Enumerate items" option by default. ### PowerToys Run - Fixed an issue causing original search to be abandoned when cycling through results. - Updated device and bluetooth results for Settings plugin. Thanks [@htcfreek](https://github.com/htcfreek)! - Fixed InvalidOperationException exception thrown. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Add Base64 Decoding function to the Value Generator plugin. Thanks [@LeagueOfPoro](https://github.com/LeagueOfPoro)! - Added a Keep shell open option for Shell plugin. - Added Crop And Lock to PowerToys plugin. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Registry Preview - Updated AppBarButtons to use an explicit AppBarButton.Icon. Thanks [@randyrants](https://github.com/randyrants)! - Fixed crash on clicking Save As button. ### Runner - Removed unneeded RegisterWindowMessage from tray icon logic. Thanks [@sredna](https://github.com/sredna)! - Fixed startup looping issue. - Improved old logs and installers cleanup logic. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Screen Ruler - Use proper resources file. ### Settings - Fixed issue causing problems with modifier keys and ShortcutControl. Thanks [@sh0ckj0ckey](https://github.com/sh0ckj0ckey)! - Fixed crash when clicking "Windows color settings" link. - Added support for launching Settings app directly. - Fixed issue causing DisplayDescription not showing for PowerToys Run PluginAdditionalOption. - Fixed issue causing FileLocksmith 'Show File Locksmith in' setting not showing correct value. - Fixed issue causing Awake on/off toggle in Settings flyout not to work when Settings Awake page is opened. ### Documentation - Added documentation for PowerToys Run third-party plugins. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Fixed broken links in keyboardmanagerui.md. Thanks [@shubhsardana29](https://github.com/shubhsardana29)! - Updated core team in COMMUNITY.md. - Fixed broken links in ui-architecture.md. Thanks [@SamB](https://github.com/SamB)! - Updated community.valuegenerator.md with Base64DecodeRequest description. ### Development - Updated test packages and StyleCop. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Condense NuGet Restore into MSBuild Tasks. Thanks [@snickler](https://github.com/snickler)! #### What is being planned for version 0.74 For [v0.74][github-next-release-work], we'll work on the items below: - Language selection - Modernize and refresh the UX of PowerToys based on WPF - Stability / bug fixes - Peek: UI improvements ## PowerToys Community The PowerToys team is extremely grateful to have the [support of an amazing active community][community-link]. The work you do is incredibly important. PowerToys wouldn’t be nearly what it is today without your help filing bugs, updating documentation, guiding the design, or writing features. We want to say thank you and take time to recognize your work. Month by month, you directly help make PowerToys a better piece of software. ## Code of Conduct This project has adopted the [Microsoft Open Source Code of Conduct][oss-conduct-code]. ## Privacy Statement The application logs basic telemetry. Our Telemetry Data page (Coming Soon) has the trends from the telemetry. Please read the [Microsoft privacy statement][privacy-link] for more information. [oss-CLA]: https://cla.opensource.microsoft.com [oss-conduct-code]: CODE_OF_CONDUCT.md [community-link]: COMMUNITY.md [github-release-link]: https://aka.ms/installPowerToys [microsoft-store-link]: https://aka.ms/getPowertoys [winget-link]: https://github.com/microsoft/winget-cli#installing-the-client [roadmap]: https://github.com/microsoft/PowerToys/wiki/Roadmap [privacy-link]: http://go.microsoft.com/fwlink/?LinkId=521839 [vidConfOverview]: https://aka.ms/PowerToysOverview_VideoConference [loc-bug]: https://github.com/microsoft/PowerToys/issues/new?assignees=&labels=&template=translation_issue.md&title= [usingPowerToys-docs-link]: https://aka.ms/powertoys-docs
# Microsoft PowerToys ![Hero image for Microsoft PowerToys](doc/images/overview/PT_hero_image.png) [How to use PowerToys][usingPowerToys-docs-link] | [Downloads & Release notes][github-release-link] | [Contributing to PowerToys](#contributing) | [What's Happening](#whats-happening) | [Roadmap](#powertoys-roadmap) ## Build status | Architecture | Solution (Main) | Solution (Stable) | Installer (Main) | |--------------|-----------------|-------------------|------------------| | x64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main&jobName=Build%20x64%20Release) | [![Build Status for Stable](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=stable&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_x64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | | ARM64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main) | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_arm64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | ## About Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. For more info on [PowerToys overviews and how to use the utilities][usingPowerToys-docs-link], or any other tools and resources for [Windows development environments](https://learn.microsoft.com/windows/dev-environment/overview), head over to [learn.microsoft.com][usingPowerToys-docs-link]! | | Current utilities: | | |--------------|--------------------|--------------| | [Always on Top](https://aka.ms/PowerToysOverview_AoT) | [PowerToys Awake](https://aka.ms/PowerToysOverview_Awake) | [Color Picker](https://aka.ms/PowerToysOverview_ColorPicker) | | [Crop And Lock](https://aka.ms/PowerToysOverview_CropAndLock) | [FancyZones](https://aka.ms/PowerToysOverview_FancyZones) | [File Explorer Add-ons](https://aka.ms/PowerToysOverview_FileExplorerAddOns) | | [File Locksmith](https://aka.ms/PowerToysOverview_FileLocksmith) | [Hosts File Editor](https://aka.ms/PowerToysOverview_HostsFileEditor) | [Image Resizer](https://aka.ms/PowerToysOverview_ImageResizer) | | [Keyboard Manager](https://aka.ms/PowerToysOverview_KeyboardManager) | [Mouse utilities](https://aka.ms/PowerToysOverview_MouseUtilities) | [Mouse Without Borders](https://aka.ms/PowerToysOverview_MouseWithoutBorders) | | [Peek](https://aka.ms/PowerToysOverview_Peek) | [Paste as Plain Text](https://aka.ms/PowerToysOverview_PastePlain) | [PowerRename](https://aka.ms/PowerToysOverview_PowerRename) | | [PowerToys Run](https://aka.ms/PowerToysOverview_PowerToysRun) | [Quick Accent](https://aka.ms/PowerToysOverview_QuickAccent) | [Registry Preview](https://aka.ms/PowerToysOverview_RegistryPreview) | | [Screen Ruler](https://aka.ms/PowerToysOverview_ScreenRuler) | [Shortcut Guide](https://aka.ms/PowerToysOverview_ShortcutGuide) | [Text Extractor](https://aka.ms/PowerToysOverview_TextExtractor) | | [Video Conference Mute](https://aka.ms/PowerToysOverview_VideoConference) | ## Installing and running Microsoft PowerToys ### Requirements - Windows 11 or Windows 10 version 2004 (code name 20H1 / build number 19041) or newer. - Our installer will install the following items: - [Microsoft Edge WebView2 Runtime](https://go.microsoft.com/fwlink/p/?LinkId=2124703) bootstrapper. This will install the latest version. ### Via GitHub with EXE [Recommended] Go to the [Microsoft PowerToys GitHub releases page][github-release-link] and click on `Assets` at the bottom to show the files available in the release. Please use the appropriate PowerToys installer that matches your machine's architecture and install scope. For most, it is `x64` and per-user. <!-- items that need to be updated release to release --> [github-next-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F48 [github-current-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F47 [ptUserX64]: https://github.com/microsoft/PowerToys/releases/download/v0.74.0/PowerToysUserSetup-0.74.0-x64.exe [ptUserArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.74.0/PowerToysUserSetup-0.74.0-arm64.exe [ptMachineX64]: https://github.com/microsoft/PowerToys/releases/download/v0.74.0/PowerToysSetup-0.74.0-x64.exe [ptMachineArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.74.0/PowerToysSetup-0.74.0-arm64.exe | Description | Filename | sha256 hash | |----------------|----------|-------------| | Per user - x64 | [PowerToysUserSetup-0.74.0-x64.exe][ptUserX64] | 1C4ECE9F11488BAFFAE6B76D2B0504FA18BFFEA11EBC38BCC87F5D86AEA87C7C | | Per user - ARM64 | [PowerToysUserSetup-0.74.0-arm64.exe][ptUserArm64] | 4F3842FAB0839A361A15A06B7720BA8A0FE7F9AF98EA94245C08DEF37678CA4A | | Machine wide - x64 | [PowerToysSetup-0.74.0-x64.exe][ptMachineX64] | 648992E8CEA08F3C63C7CCBD554ADDF500ECBC4560187310BC12E6CB9C2F38E3 | | Machine wide - ARM64 | [PowerToysSetup-0.74.0-arm64.exe][ptMachineArm64] | 2B6D92F1A0EA688C7EE882050AC9B030C8B3A18765163FB6D67E5E694A4D4FE3 | This is our preferred method. ### Via Microsoft Store Install from the [Microsoft Store's PowerToys page][microsoft-store-link]. You must be using the [new Microsoft Store](https://blogs.windows.com/windowsExperience/2021/06/24/building-a-new-open-microsoft-store-on-windows-11/) which is available for both Windows 11 and Windows 10. ### Via WinGet Download PowerToys from [WinGet][winget-link]. Updating PowerToys via winget will respect current PowerToys installation scope. To install PowerToys, run the following command from the command line / PowerShell: #### User scope installer [default] ```powershell winget install Microsoft.PowerToys -s winget ``` #### Machine-wide scope installer ```powershell winget install --scope machine Microsoft.PowerToys -s winget ``` ### Other install methods There are [community driven install methods](./doc/unofficialInstallMethods.md) such as Chocolatey and Scoop. If these are your preferred install solutions, you can find the install instructions there. ## Third-Party Run Plugins There is a collection of [third-party plugins](./doc/thirdPartyRunPlugins.md) created by the community that aren't distributed with PowerToys. ## Contributing This project welcomes contributions of all types. Besides coding features / bug fixes, other ways to assist include spec writing, design, documentation, and finding bugs. We are excited to work with the power user community to build a set of tools for helping you get the most out of Windows. We ask that **before you start work on a feature that you would like to contribute**, please read our [Contributor's Guide](CONTRIBUTING.md). We would be happy to work with you to figure out the best approach, provide guidance and mentorship throughout feature development, and help avoid any wasted or duplicate effort. Most contributions require you to agree to a [Contributor License Agreement (CLA)][oss-CLA] declaring that you grant us the rights to use your contribution and that you have permission to do so. For guidance on developing for PowerToys, please read the [developer docs](/doc/devdocs) for a detailed breakdown. This includes how to setup your computer to compile. ## What's Happening ### PowerToys Roadmap Our [prioritized roadmap][roadmap] of features and utilities that the core team is focusing on. ### 0.74 - September 2023 Update In this release, we focused on stability and improvements. **Highlights** - Upgraded to Windows App SDK 1.4.1, increasing stability of WinUI3 utilities. Thanks [@dongle-the-gadget](https://github.com/dongle-the-gadget) for starting the upgrade! - Text Extractor was upgraded to its version 2.0, with a new overlay, table mode and more Quality of Life improvements. Thanks [@TheJoeFin](https://github.com/TheJoeFin)! - Improved FancyZones stability, fixing some layout resets and improving handling of newly created windows on Windows 11. - Fixed many silent crashes that were reported to Watson and the user's event viewer. ### General - Turning animations off in Windows Settings will now also turn them off in PowerToys. - Upgraded the Windows App SDK dependency to 1.4.1. Thanks [@dongle-the-gadget](https://github.com/dongle-the-gadget) for the original 1.4.0 upgrade! - Show in the thumbnail label and application titles when running as administrator. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Upgraded the Win UI Community Toolkit dependency to 8.0. Thanks [@niels9001](https://github.com/niels9001)! ### Awake - Added down-sampled variants to the application's icon. Thanks [@morriscurtis](https://github.com/morriscurtis)! ### Color Picker - After adding a new color in the editor, the history will scroll the new color into view. Thanks [@peerpalo](https://github.com/peerpalo)! ### Crop and Lock - Fixed a Crop and Lock crash that would occur when trying to reparent a window crashes the target application. An error message is shown instead. ### FancyZones - Set the process and main thread priority to normal. - Fixed handling newly created windows on Windows 11. - Fixed scenarios where opening the FancyZones Editor would reset the layouts. ### File Explorer add-ons - Optimized CPU usage for generating SVG thumbnails. - Improved handling of Gcode Thumbnails, including JPG and QOI formats. Thanks [@pedrolamas](https://github.com/pedrolamas)! - Better handled errors when sending telemetry, which were causing reported crashes. - Fixed some thumbnails not being shown centered like before the optimization. ### File Locksmith - Shows files opened by processes with PID greater than 65535. Thanks [@poke30744](https://github.com/poke30744)! - Fixed a GDI object leak in the context menu which would crash Explorer. ### Find My Mouse - Added new activation methods, including by hotkey. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Hosts File Editor - Ignore the default ACME sample entries in the hosts file. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Improved save error handling and added better error messages. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Corrected a check for an error when signaling the application to start as administrator. - Refactored the context menu. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Fixed dialogs overlapping the title bar after the upgrade to Windows App SDK 1.4. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Keyboard Manager - Distinguish between the regular minus key and the numpad minus key. ### Mouse Without Borders - Fixed a crash when trying to restart the application. ### Peek - Using Peek on HTML files will show a white background by default, similar to a browser's default behavior. - Fix a white flash on Dark theme when switching file and improved the development file preview detection and adjustments. ### PowerRename - Fixed a crash caused by big counter values on the new enumeration method. ### PowerToys Run - It's now possible to select which shell is used by the Shell plugin. - A combobox option type was added to the plugin options. - Fixed a bug in the Calculator plugin that was causing decimal numbers to be misinterpreted on locales where the dot (`.`) character isn't used as a decimal or digit separator. - Improved the Program plugin stability when it fails to load a program's thumbnail at startup. - The use of Pinyin for querying some plugins can now be turned on in Settings. Thanks [@ChaseKnowlden](https://github.com/ChaseKnowlden)! - Refactored option types for plugin and added number, string and composite types to be used in the future. Thanks [@htcfreek](https://github.com/htcfreek)! - Fixed the entry for searching for Windows updates in the Settings plugin. Thanks [@htcfreek](https://github.com/htcfreek)! ### Quick Accent - The "All languages" character set is now calculated by programmatically querying the characters for every available language. Thanks [@dannysummerlin](https://github.com/dannysummerlin)! - Added é to the Norwegian and Swedish languages. Thanks [@Aaron-Junker](https://github.com/Aaron-Junker)! - Added a runtime cache to the "All languages" character set, to only calculate accents once per key. ### Registry Preview - Fixed focusing issues at startup. - Improved the data visualization to show data in a similar way to the Windows Registry Editor. Thanks [@dillydylann](https://github.com/dillydylann)! ### Runner - Fixed hanging when a bug report was generated from the flyout. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Settings - Improved the way the OOBE window reacts to Windows theme change. - Fixed an issue that made it impossible to change the "Switch between windows in the current zone" "Next window" shortcut for FancyZones. - Fixed a crash when entering a duplicate name for a color in the Color Picker page and improved clean up when cancelling a color edit. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Text Extractor - Text Extractor 2.0, with a new overlay, table mode and more Quality of Life improvements. Thanks [@TheJoeFin](https://github.com/TheJoeFin)! ### Documentation - SECURITY.md was updated from 0.0.2 to 0.0.9. Thanks [@Aaron-Junker](https://github.com/Aaron-Junker)! - Improved the README and main development document for clarity and completeness. Thanks [@codeofdusk](https://github.com/codeofdusk) and [@aprilbbrockhoeft](https://github.com/aprilbbrockhoeft)! ### Development - Fixed PowerToys Run DateTime plugin tests that were failing depending on locale, so that they can be run correctly on all dev machines. - Fixed PowerToys Run System plugin tests that were failing for certain network interfaces, so that they can be run correctly on all dev machines. Thanks [@snickler](https://github.com/snickler)! - Fixed a markdown bug on the GitHub /helped command. - Switched build pipelines to a new agent pool. Thanks [@DHowett](https://github.com/DHowett)! - New .cs files created in Visual Studio get the header added automatically. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! #### What is being planned for version 0.75 For [v0.75][github-next-release-work], we'll work on the items below: - Language selection - .NET 8 upgrade - Policy support for managing PowerToys Run plugins. *Attention*: A breaking change is planned (for 0.75), in which each plugin has to declare its identifier programmatically so that it can be controlled through GPO. For third-party plugin developers, please check https://github.com/microsoft/PowerToys/pull/27468 for more details. - New utility: Environment Variables Editor. Here's a Work in Progress preview: ![Environment Variables Editor WIP](https://github.com/microsoft/PowerToys/assets/26118718/f99532a8-5aae-481b-a662-19a95f4aa03d) - New Settings homepage. Here's a Work in Progress preview: ![PowerToys Settings Dashboard WIP](https://github.com/microsoft/PowerToys/assets/26118718/938a5715-0a9b-4fe9-9e15-adfec92da694) - Modernize and refresh the UX of PowerToys based on WPF. Here's Work in Progress previews for the modules "PowerToys Run" and "Color Picker": ![PowerToys Run UI refresh WIP](https://github.com/microsoft/PowerToys/assets/9866362/16903bcb-c18e-49fb-93ca-738b81957055) ![ColorPicker UI refresh WIP](https://github.com/microsoft/PowerToys/assets/9866362/ceebe54b-de63-4ce7-afcb-2cd4280bf4d1) - Stability / bug fixes ## PowerToys Community The PowerToys team is extremely grateful to have the [support of an amazing active community][community-link]. The work you do is incredibly important. PowerToys wouldn’t be nearly what it is today without your help filing bugs, updating documentation, guiding the design, or writing features. We want to say thank you and take time to recognize your work. Month by month, you directly help make PowerToys a better piece of software. ## Code of Conduct This project has adopted the [Microsoft Open Source Code of Conduct][oss-conduct-code]. ## Privacy Statement The application logs basic telemetry. Our Telemetry Data page (Coming Soon) has the trends from the telemetry. Please read the [Microsoft privacy statement][privacy-link] for more information. [oss-CLA]: https://cla.opensource.microsoft.com [oss-conduct-code]: CODE_OF_CONDUCT.md [community-link]: COMMUNITY.md [github-release-link]: https://aka.ms/installPowerToys [microsoft-store-link]: https://aka.ms/getPowertoys [winget-link]: https://github.com/microsoft/winget-cli#installing-the-client [roadmap]: https://github.com/microsoft/PowerToys/wiki/Roadmap [privacy-link]: http://go.microsoft.com/fwlink/?LinkId=521839 [vidConfOverview]: https://aka.ms/PowerToysOverview_VideoConference [loc-bug]: https://github.com/microsoft/PowerToys/issues/new?assignees=&labels=&template=translation_issue.md&title= [usingPowerToys-docs-link]: https://aka.ms/powertoys-docs
jaimecbernardo
a1e0bd51617b2bea189cb16324eecd0e13fa7b86
77063e0767a0619abfc339db3a2a564d27310b6c
```suggestion - New Settings homepage ```
Aaron-Junker
413
microsoft/PowerToys
28,775
0.74 changelogs
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request Readme update for the 0.74 release. This will be copy / pasted for release notes.
null
2023-09-26 11:20:42+00:00
2023-09-26 21:36:51+00:00
README.md
# Microsoft PowerToys ![Hero image for Microsoft PowerToys](doc/images/overview/PT_hero_image.png) [How to use PowerToys][usingPowerToys-docs-link] | [Downloads & Release notes][github-release-link] | [Contributing to PowerToys](#contributing) | [What's Happening](#whats-happening) | [Roadmap](#powertoys-roadmap) ## Build status | Architecture | Solution (Main) | Solution (Stable) | Installer (Main) | |--------------|-----------------|-------------------|------------------| | x64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main&jobName=Build%20x64%20Release) | [![Build Status for Stable](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=stable&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_x64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | | ARM64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main) | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_arm64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | ## About Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. For more info on [PowerToys overviews and how to use the utilities][usingPowerToys-docs-link], or any other tools and resources for [Windows development environments](https://learn.microsoft.com/windows/dev-environment/overview), head over to [learn.microsoft.com][usingPowerToys-docs-link]! | | Current utilities: | | |--------------|--------------------|--------------| | [Always on Top](https://aka.ms/PowerToysOverview_AoT) | [PowerToys Awake](https://aka.ms/PowerToysOverview_Awake) | [Color Picker](https://aka.ms/PowerToysOverview_ColorPicker) | | [Crop And Lock](https://aka.ms/PowerToysOverview_CropAndLock) | [FancyZones](https://aka.ms/PowerToysOverview_FancyZones) | [File Explorer Add-ons](https://aka.ms/PowerToysOverview_FileExplorerAddOns) | | [File Locksmith](https://aka.ms/PowerToysOverview_FileLocksmith) | [Hosts File Editor](https://aka.ms/PowerToysOverview_HostsFileEditor) | [Image Resizer](https://aka.ms/PowerToysOverview_ImageResizer) | | [Keyboard Manager](https://aka.ms/PowerToysOverview_KeyboardManager) | [Mouse utilities](https://aka.ms/PowerToysOverview_MouseUtilities) | [Mouse Without Borders](https://aka.ms/PowerToysOverview_MouseWithoutBorders) | | [Peek](https://aka.ms/PowerToysOverview_Peek) | [Paste as Plain Text](https://aka.ms/PowerToysOverview_PastePlain) | [PowerRename](https://aka.ms/PowerToysOverview_PowerRename) | | [PowerToys Run](https://aka.ms/PowerToysOverview_PowerToysRun) | [Quick Accent](https://aka.ms/PowerToysOverview_QuickAccent) | [Registry Preview](https://aka.ms/PowerToysOverview_RegistryPreview) | | [Screen Ruler](https://aka.ms/PowerToysOverview_ScreenRuler) | [Shortcut Guide](https://aka.ms/PowerToysOverview_ShortcutGuide) | [Text Extractor](https://aka.ms/PowerToysOverview_TextExtractor) | | [Video Conference Mute](https://aka.ms/PowerToysOverview_VideoConference) | ## Installing and running Microsoft PowerToys ### Requirements - Windows 11 or Windows 10 version 2004 (code name 20H1 / build number 19041) or newer. - Our installer will install the following items: - [Microsoft Edge WebView2 Runtime](https://go.microsoft.com/fwlink/p/?LinkId=2124703) bootstrapper. This will install the latest version. ### Via GitHub with EXE [Recommended] Go to the [Microsoft PowerToys GitHub releases page][github-release-link] and click on `Assets` at the bottom to show the files available in the release. Please use the appropriate PowerToys installer that matches your machine's architecture and install scope. For most, it is `x64` and per-user. <!-- items that need to be updated release to release --> [github-next-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F47 [github-current-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F46 [ptUserX64]: https://github.com/microsoft/PowerToys/releases/download/v0.73.0/PowerToysUserSetup-0.73.0-x64.exe [ptUserArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.73.0/PowerToysUserSetup-0.73.0-arm64.exe [ptMachineX64]: https://github.com/microsoft/PowerToys/releases/download/v0.73.0/PowerToysSetup-0.73.0-x64.exe [ptMachineArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.73.0/PowerToysSetup-0.73.0-arm64.exe | Description | Filename | sha256 hash | |----------------|----------|-------------| | Per user - x64 | [PowerToysUserSetup-0.73.0-x64.exe][ptUserX64] | BA55D245BDD734FD6F19803DD706A3AB8E0ABC491591195534997CF2122D3B7E | | Per user - ARM64 | [PowerToysUserSetup-0.73.0-arm64.exe][ptUserArm64] | FBFA40EA5FFA05236A7CCDD05E5142EE0C93D7485B965784196ED9B086BFEBF4 | | Machine wide - x64 | [PowerToysSetup-0.73.0-x64.exe][ptMachineX64] | 7FDA06292C7C2E6DA5AEF88D8E9D3DE89D331E9E356A232289F9B37CE4503894 | | Machine wide - ARM64 | [PowerToysSetup-0.73.0-arm64.exe][ptMachineArm64] | 4260AA30A1F52F194EE07E9E7ECD9E9F4CF35289267F213BC933F7A5191AC17C | This is our preferred method. ### Via Microsoft Store Install from the [Microsoft Store's PowerToys page][microsoft-store-link]. You must be using the [new Microsoft Store](https://blogs.windows.com/windowsExperience/2021/06/24/building-a-new-open-microsoft-store-on-windows-11/) which is available for both Windows 11 and Windows 10. ### Via WinGet Download PowerToys from [WinGet][winget-link]. Updating PowerToys via winget will respect current PowerToys installation scope. To install PowerToys, run the following command from the command line / PowerShell: #### User scope installer [default] ```powershell winget install Microsoft.PowerToys -s winget ``` #### Machine-wide scope installer ```powershell winget install --scope machine Microsoft.PowerToys -s winget ``` ### Other install methods There are [community driven install methods](./doc/unofficialInstallMethods.md) such as Chocolatey and Scoop. If these are your preferred install solutions, you can find the install instructions there. ## Third-Party Run Plugins There is a collection of [third-party plugins](./doc/thirdPartyRunPlugins.md) created by the community that aren't distributed with PowerToys. ## Contributing This project welcomes contributions of all types. Besides coding features / bug fixes, other ways to assist include spec writing, design, documentation, and finding bugs. We are excited to work with the power user community to build a set of tools for helping you get the most out of Windows. We ask that **before you start work on a feature that you would like to contribute**, please read our [Contributor's Guide](CONTRIBUTING.md). We would be happy to work with you to figure out the best approach, provide guidance and mentorship throughout feature development, and help avoid any wasted or duplicate effort. Most contributions require you to agree to a [Contributor License Agreement (CLA)][oss-CLA] declaring that you grant us the rights to use your contribution and that you have permission to do so. For guidance on developing for PowerToys, please read the [developer docs](/doc/devdocs) for a detailed breakdown. This includes how to setup your computer to compile. ## What's Happening ### PowerToys Roadmap Our [prioritized roadmap][roadmap] of features and utilities that the core team is focusing on. ### 0.73 - August 2023 Update In this release, we focused on releasing new features, stability and improvements. **Highlights** - Keyboard manager now allows Numpad keys to be bound separately from the main keyboard. If using a previous configuration, only the main keyboard (not numpad) keys will be mapped. To restore the previous behavior, manually add separate bindings for numpad keys. - New utility: Crop And Lock allows you to crop a current application into a smaller window or just create a thumbnail. Focus the target window and press the shortcut to start cropping. - FancyZones code improvements and refactor. - Modernized ImageResizer UX. - PowerRename advanced counter functionality. ### General - Added missing CoUninitialize call in elevation logic. Thanks [@sredna](https://github.com/sredna)! - New utility: Crop And Lock. Thanks [@robmikh](https://github.com/robmikh)! and [@kevinguo305](https://github.com/kevinguo305)! - Added new /helped fabric bot command to GitHub repo. Thanks [@Aaron-Junker](https://github.com/Aaron-Junker)! - Fixed crashes caused by invalid settings. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Always On Top - Added border transparency. ### FancyZones - Fixed issue causing canvas zones being drawn only when dragging in the zone area. - Fixed user-defined default layout highlighting issue. - Refactored and improved code quality. - Fixed issue causing the wrong layout to be applied when duplicating a non-selected layout. ### File Locksmith - Icon update. Thanks [@jmaraujouy](https://github.com/jmaraujouy)! ### File Explorer add-ons - Fixed issue causing thumbnail previewers to lock files. - Open URIs from developer files in default browser. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Installer - Fixed PowerToys autorun after installing as SYSTEM user. - Removed CreateScheduledTask custom action to handle task creation only from runner code. ### Image Resizer - Moved from ModernWPF to WpfUI to refresh and modernize UI/UX. Thanks [@niels9001](https://github.com/niels9001)! ### Keyboard Manager - Rephrased labels to enhance clarity. Thanks [@Jay-o-Way](https://github.com/Jay-o-Way)! - Keyboard manager now allows Numpad keys to be bound separately from the main keyboard. If using a previous configuration, only the main keyboard (not numpad) keys will be mapped. To restore the previous behavior, manually add separate bindings for numpad keys. ### Mouse Highlighter - The highlighter is now visible in "Always on Top" windows. - Added settings for automatic activation on startup. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Mouse Pointer Crosshairs - Added settings for automatic activation on startup. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Peek - Show correct file type for shortcuts. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Fixed issue causing the wrong file size to be displayed. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Show 1 byte instead of 1 bytes file size. Thanks [@Deepak-Sangle](https://github.com/Deepak-Sangle)! - Open URIs from developer files in the default browser. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Show a thumbnail and fallback to an icon for unsupported files. Thanks [@pedrolamas](https://github.com/pedrolamas)! ### PowerRename - Updated the OOBE gif. Thanks [@ChaseKnowlden](https://github.com/ChaseKnowlden)! - Localized the renamed parts combo box. - Introduced advanced counter functionality. - Added remember last window size logic and optimized sorting of items. - Enable "Enumerate items" option by default. ### PowerToys Run - Fixed an issue causing original search to be abandoned when cycling through results. - Updated device and bluetooth results for Settings plugin. Thanks [@htcfreek](https://github.com/htcfreek)! - Fixed InvalidOperationException exception thrown. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Add Base64 Decoding function to the Value Generator plugin. Thanks [@LeagueOfPoro](https://github.com/LeagueOfPoro)! - Added a Keep shell open option for Shell plugin. - Added Crop And Lock to PowerToys plugin. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Registry Preview - Updated AppBarButtons to use an explicit AppBarButton.Icon. Thanks [@randyrants](https://github.com/randyrants)! - Fixed crash on clicking Save As button. ### Runner - Removed unneeded RegisterWindowMessage from tray icon logic. Thanks [@sredna](https://github.com/sredna)! - Fixed startup looping issue. - Improved old logs and installers cleanup logic. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Screen Ruler - Use proper resources file. ### Settings - Fixed issue causing problems with modifier keys and ShortcutControl. Thanks [@sh0ckj0ckey](https://github.com/sh0ckj0ckey)! - Fixed crash when clicking "Windows color settings" link. - Added support for launching Settings app directly. - Fixed issue causing DisplayDescription not showing for PowerToys Run PluginAdditionalOption. - Fixed issue causing FileLocksmith 'Show File Locksmith in' setting not showing correct value. - Fixed issue causing Awake on/off toggle in Settings flyout not to work when Settings Awake page is opened. ### Documentation - Added documentation for PowerToys Run third-party plugins. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Fixed broken links in keyboardmanagerui.md. Thanks [@shubhsardana29](https://github.com/shubhsardana29)! - Updated core team in COMMUNITY.md. - Fixed broken links in ui-architecture.md. Thanks [@SamB](https://github.com/SamB)! - Updated community.valuegenerator.md with Base64DecodeRequest description. ### Development - Updated test packages and StyleCop. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Condense NuGet Restore into MSBuild Tasks. Thanks [@snickler](https://github.com/snickler)! #### What is being planned for version 0.74 For [v0.74][github-next-release-work], we'll work on the items below: - Language selection - Modernize and refresh the UX of PowerToys based on WPF - Stability / bug fixes - Peek: UI improvements ## PowerToys Community The PowerToys team is extremely grateful to have the [support of an amazing active community][community-link]. The work you do is incredibly important. PowerToys wouldn’t be nearly what it is today without your help filing bugs, updating documentation, guiding the design, or writing features. We want to say thank you and take time to recognize your work. Month by month, you directly help make PowerToys a better piece of software. ## Code of Conduct This project has adopted the [Microsoft Open Source Code of Conduct][oss-conduct-code]. ## Privacy Statement The application logs basic telemetry. Our Telemetry Data page (Coming Soon) has the trends from the telemetry. Please read the [Microsoft privacy statement][privacy-link] for more information. [oss-CLA]: https://cla.opensource.microsoft.com [oss-conduct-code]: CODE_OF_CONDUCT.md [community-link]: COMMUNITY.md [github-release-link]: https://aka.ms/installPowerToys [microsoft-store-link]: https://aka.ms/getPowertoys [winget-link]: https://github.com/microsoft/winget-cli#installing-the-client [roadmap]: https://github.com/microsoft/PowerToys/wiki/Roadmap [privacy-link]: http://go.microsoft.com/fwlink/?LinkId=521839 [vidConfOverview]: https://aka.ms/PowerToysOverview_VideoConference [loc-bug]: https://github.com/microsoft/PowerToys/issues/new?assignees=&labels=&template=translation_issue.md&title= [usingPowerToys-docs-link]: https://aka.ms/powertoys-docs
# Microsoft PowerToys ![Hero image for Microsoft PowerToys](doc/images/overview/PT_hero_image.png) [How to use PowerToys][usingPowerToys-docs-link] | [Downloads & Release notes][github-release-link] | [Contributing to PowerToys](#contributing) | [What's Happening](#whats-happening) | [Roadmap](#powertoys-roadmap) ## Build status | Architecture | Solution (Main) | Solution (Stable) | Installer (Main) | |--------------|-----------------|-------------------|------------------| | x64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main&jobName=Build%20x64%20Release) | [![Build Status for Stable](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=stable&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_x64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | | ARM64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main) | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_arm64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | ## About Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. For more info on [PowerToys overviews and how to use the utilities][usingPowerToys-docs-link], or any other tools and resources for [Windows development environments](https://learn.microsoft.com/windows/dev-environment/overview), head over to [learn.microsoft.com][usingPowerToys-docs-link]! | | Current utilities: | | |--------------|--------------------|--------------| | [Always on Top](https://aka.ms/PowerToysOverview_AoT) | [PowerToys Awake](https://aka.ms/PowerToysOverview_Awake) | [Color Picker](https://aka.ms/PowerToysOverview_ColorPicker) | | [Crop And Lock](https://aka.ms/PowerToysOverview_CropAndLock) | [FancyZones](https://aka.ms/PowerToysOverview_FancyZones) | [File Explorer Add-ons](https://aka.ms/PowerToysOverview_FileExplorerAddOns) | | [File Locksmith](https://aka.ms/PowerToysOverview_FileLocksmith) | [Hosts File Editor](https://aka.ms/PowerToysOverview_HostsFileEditor) | [Image Resizer](https://aka.ms/PowerToysOverview_ImageResizer) | | [Keyboard Manager](https://aka.ms/PowerToysOverview_KeyboardManager) | [Mouse utilities](https://aka.ms/PowerToysOverview_MouseUtilities) | [Mouse Without Borders](https://aka.ms/PowerToysOverview_MouseWithoutBorders) | | [Peek](https://aka.ms/PowerToysOverview_Peek) | [Paste as Plain Text](https://aka.ms/PowerToysOverview_PastePlain) | [PowerRename](https://aka.ms/PowerToysOverview_PowerRename) | | [PowerToys Run](https://aka.ms/PowerToysOverview_PowerToysRun) | [Quick Accent](https://aka.ms/PowerToysOverview_QuickAccent) | [Registry Preview](https://aka.ms/PowerToysOverview_RegistryPreview) | | [Screen Ruler](https://aka.ms/PowerToysOverview_ScreenRuler) | [Shortcut Guide](https://aka.ms/PowerToysOverview_ShortcutGuide) | [Text Extractor](https://aka.ms/PowerToysOverview_TextExtractor) | | [Video Conference Mute](https://aka.ms/PowerToysOverview_VideoConference) | ## Installing and running Microsoft PowerToys ### Requirements - Windows 11 or Windows 10 version 2004 (code name 20H1 / build number 19041) or newer. - Our installer will install the following items: - [Microsoft Edge WebView2 Runtime](https://go.microsoft.com/fwlink/p/?LinkId=2124703) bootstrapper. This will install the latest version. ### Via GitHub with EXE [Recommended] Go to the [Microsoft PowerToys GitHub releases page][github-release-link] and click on `Assets` at the bottom to show the files available in the release. Please use the appropriate PowerToys installer that matches your machine's architecture and install scope. For most, it is `x64` and per-user. <!-- items that need to be updated release to release --> [github-next-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F48 [github-current-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F47 [ptUserX64]: https://github.com/microsoft/PowerToys/releases/download/v0.74.0/PowerToysUserSetup-0.74.0-x64.exe [ptUserArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.74.0/PowerToysUserSetup-0.74.0-arm64.exe [ptMachineX64]: https://github.com/microsoft/PowerToys/releases/download/v0.74.0/PowerToysSetup-0.74.0-x64.exe [ptMachineArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.74.0/PowerToysSetup-0.74.0-arm64.exe | Description | Filename | sha256 hash | |----------------|----------|-------------| | Per user - x64 | [PowerToysUserSetup-0.74.0-x64.exe][ptUserX64] | 1C4ECE9F11488BAFFAE6B76D2B0504FA18BFFEA11EBC38BCC87F5D86AEA87C7C | | Per user - ARM64 | [PowerToysUserSetup-0.74.0-arm64.exe][ptUserArm64] | 4F3842FAB0839A361A15A06B7720BA8A0FE7F9AF98EA94245C08DEF37678CA4A | | Machine wide - x64 | [PowerToysSetup-0.74.0-x64.exe][ptMachineX64] | 648992E8CEA08F3C63C7CCBD554ADDF500ECBC4560187310BC12E6CB9C2F38E3 | | Machine wide - ARM64 | [PowerToysSetup-0.74.0-arm64.exe][ptMachineArm64] | 2B6D92F1A0EA688C7EE882050AC9B030C8B3A18765163FB6D67E5E694A4D4FE3 | This is our preferred method. ### Via Microsoft Store Install from the [Microsoft Store's PowerToys page][microsoft-store-link]. You must be using the [new Microsoft Store](https://blogs.windows.com/windowsExperience/2021/06/24/building-a-new-open-microsoft-store-on-windows-11/) which is available for both Windows 11 and Windows 10. ### Via WinGet Download PowerToys from [WinGet][winget-link]. Updating PowerToys via winget will respect current PowerToys installation scope. To install PowerToys, run the following command from the command line / PowerShell: #### User scope installer [default] ```powershell winget install Microsoft.PowerToys -s winget ``` #### Machine-wide scope installer ```powershell winget install --scope machine Microsoft.PowerToys -s winget ``` ### Other install methods There are [community driven install methods](./doc/unofficialInstallMethods.md) such as Chocolatey and Scoop. If these are your preferred install solutions, you can find the install instructions there. ## Third-Party Run Plugins There is a collection of [third-party plugins](./doc/thirdPartyRunPlugins.md) created by the community that aren't distributed with PowerToys. ## Contributing This project welcomes contributions of all types. Besides coding features / bug fixes, other ways to assist include spec writing, design, documentation, and finding bugs. We are excited to work with the power user community to build a set of tools for helping you get the most out of Windows. We ask that **before you start work on a feature that you would like to contribute**, please read our [Contributor's Guide](CONTRIBUTING.md). We would be happy to work with you to figure out the best approach, provide guidance and mentorship throughout feature development, and help avoid any wasted or duplicate effort. Most contributions require you to agree to a [Contributor License Agreement (CLA)][oss-CLA] declaring that you grant us the rights to use your contribution and that you have permission to do so. For guidance on developing for PowerToys, please read the [developer docs](/doc/devdocs) for a detailed breakdown. This includes how to setup your computer to compile. ## What's Happening ### PowerToys Roadmap Our [prioritized roadmap][roadmap] of features and utilities that the core team is focusing on. ### 0.74 - September 2023 Update In this release, we focused on stability and improvements. **Highlights** - Upgraded to Windows App SDK 1.4.1, increasing stability of WinUI3 utilities. Thanks [@dongle-the-gadget](https://github.com/dongle-the-gadget) for starting the upgrade! - Text Extractor was upgraded to its version 2.0, with a new overlay, table mode and more Quality of Life improvements. Thanks [@TheJoeFin](https://github.com/TheJoeFin)! - Improved FancyZones stability, fixing some layout resets and improving handling of newly created windows on Windows 11. - Fixed many silent crashes that were reported to Watson and the user's event viewer. ### General - Turning animations off in Windows Settings will now also turn them off in PowerToys. - Upgraded the Windows App SDK dependency to 1.4.1. Thanks [@dongle-the-gadget](https://github.com/dongle-the-gadget) for the original 1.4.0 upgrade! - Show in the thumbnail label and application titles when running as administrator. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Upgraded the Win UI Community Toolkit dependency to 8.0. Thanks [@niels9001](https://github.com/niels9001)! ### Awake - Added down-sampled variants to the application's icon. Thanks [@morriscurtis](https://github.com/morriscurtis)! ### Color Picker - After adding a new color in the editor, the history will scroll the new color into view. Thanks [@peerpalo](https://github.com/peerpalo)! ### Crop and Lock - Fixed a Crop and Lock crash that would occur when trying to reparent a window crashes the target application. An error message is shown instead. ### FancyZones - Set the process and main thread priority to normal. - Fixed handling newly created windows on Windows 11. - Fixed scenarios where opening the FancyZones Editor would reset the layouts. ### File Explorer add-ons - Optimized CPU usage for generating SVG thumbnails. - Improved handling of Gcode Thumbnails, including JPG and QOI formats. Thanks [@pedrolamas](https://github.com/pedrolamas)! - Better handled errors when sending telemetry, which were causing reported crashes. - Fixed some thumbnails not being shown centered like before the optimization. ### File Locksmith - Shows files opened by processes with PID greater than 65535. Thanks [@poke30744](https://github.com/poke30744)! - Fixed a GDI object leak in the context menu which would crash Explorer. ### Find My Mouse - Added new activation methods, including by hotkey. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Hosts File Editor - Ignore the default ACME sample entries in the hosts file. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Improved save error handling and added better error messages. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Corrected a check for an error when signaling the application to start as administrator. - Refactored the context menu. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Fixed dialogs overlapping the title bar after the upgrade to Windows App SDK 1.4. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Keyboard Manager - Distinguish between the regular minus key and the numpad minus key. ### Mouse Without Borders - Fixed a crash when trying to restart the application. ### Peek - Using Peek on HTML files will show a white background by default, similar to a browser's default behavior. - Fix a white flash on Dark theme when switching file and improved the development file preview detection and adjustments. ### PowerRename - Fixed a crash caused by big counter values on the new enumeration method. ### PowerToys Run - It's now possible to select which shell is used by the Shell plugin. - A combobox option type was added to the plugin options. - Fixed a bug in the Calculator plugin that was causing decimal numbers to be misinterpreted on locales where the dot (`.`) character isn't used as a decimal or digit separator. - Improved the Program plugin stability when it fails to load a program's thumbnail at startup. - The use of Pinyin for querying some plugins can now be turned on in Settings. Thanks [@ChaseKnowlden](https://github.com/ChaseKnowlden)! - Refactored option types for plugin and added number, string and composite types to be used in the future. Thanks [@htcfreek](https://github.com/htcfreek)! - Fixed the entry for searching for Windows updates in the Settings plugin. Thanks [@htcfreek](https://github.com/htcfreek)! ### Quick Accent - The "All languages" character set is now calculated by programmatically querying the characters for every available language. Thanks [@dannysummerlin](https://github.com/dannysummerlin)! - Added é to the Norwegian and Swedish languages. Thanks [@Aaron-Junker](https://github.com/Aaron-Junker)! - Added a runtime cache to the "All languages" character set, to only calculate accents once per key. ### Registry Preview - Fixed focusing issues at startup. - Improved the data visualization to show data in a similar way to the Windows Registry Editor. Thanks [@dillydylann](https://github.com/dillydylann)! ### Runner - Fixed hanging when a bug report was generated from the flyout. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Settings - Improved the way the OOBE window reacts to Windows theme change. - Fixed an issue that made it impossible to change the "Switch between windows in the current zone" "Next window" shortcut for FancyZones. - Fixed a crash when entering a duplicate name for a color in the Color Picker page and improved clean up when cancelling a color edit. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Text Extractor - Text Extractor 2.0, with a new overlay, table mode and more Quality of Life improvements. Thanks [@TheJoeFin](https://github.com/TheJoeFin)! ### Documentation - SECURITY.md was updated from 0.0.2 to 0.0.9. Thanks [@Aaron-Junker](https://github.com/Aaron-Junker)! - Improved the README and main development document for clarity and completeness. Thanks [@codeofdusk](https://github.com/codeofdusk) and [@aprilbbrockhoeft](https://github.com/aprilbbrockhoeft)! ### Development - Fixed PowerToys Run DateTime plugin tests that were failing depending on locale, so that they can be run correctly on all dev machines. - Fixed PowerToys Run System plugin tests that were failing for certain network interfaces, so that they can be run correctly on all dev machines. Thanks [@snickler](https://github.com/snickler)! - Fixed a markdown bug on the GitHub /helped command. - Switched build pipelines to a new agent pool. Thanks [@DHowett](https://github.com/DHowett)! - New .cs files created in Visual Studio get the header added automatically. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! #### What is being planned for version 0.75 For [v0.75][github-next-release-work], we'll work on the items below: - Language selection - .NET 8 upgrade - Policy support for managing PowerToys Run plugins. *Attention*: A breaking change is planned (for 0.75), in which each plugin has to declare its identifier programmatically so that it can be controlled through GPO. For third-party plugin developers, please check https://github.com/microsoft/PowerToys/pull/27468 for more details. - New utility: Environment Variables Editor. Here's a Work in Progress preview: ![Environment Variables Editor WIP](https://github.com/microsoft/PowerToys/assets/26118718/f99532a8-5aae-481b-a662-19a95f4aa03d) - New Settings homepage. Here's a Work in Progress preview: ![PowerToys Settings Dashboard WIP](https://github.com/microsoft/PowerToys/assets/26118718/938a5715-0a9b-4fe9-9e15-adfec92da694) - Modernize and refresh the UX of PowerToys based on WPF. Here's Work in Progress previews for the modules "PowerToys Run" and "Color Picker": ![PowerToys Run UI refresh WIP](https://github.com/microsoft/PowerToys/assets/9866362/16903bcb-c18e-49fb-93ca-738b81957055) ![ColorPicker UI refresh WIP](https://github.com/microsoft/PowerToys/assets/9866362/ceebe54b-de63-4ce7-afcb-2cd4280bf4d1) - Stability / bug fixes ## PowerToys Community The PowerToys team is extremely grateful to have the [support of an amazing active community][community-link]. The work you do is incredibly important. PowerToys wouldn’t be nearly what it is today without your help filing bugs, updating documentation, guiding the design, or writing features. We want to say thank you and take time to recognize your work. Month by month, you directly help make PowerToys a better piece of software. ## Code of Conduct This project has adopted the [Microsoft Open Source Code of Conduct][oss-conduct-code]. ## Privacy Statement The application logs basic telemetry. Our Telemetry Data page (Coming Soon) has the trends from the telemetry. Please read the [Microsoft privacy statement][privacy-link] for more information. [oss-CLA]: https://cla.opensource.microsoft.com [oss-conduct-code]: CODE_OF_CONDUCT.md [community-link]: COMMUNITY.md [github-release-link]: https://aka.ms/installPowerToys [microsoft-store-link]: https://aka.ms/getPowertoys [winget-link]: https://github.com/microsoft/winget-cli#installing-the-client [roadmap]: https://github.com/microsoft/PowerToys/wiki/Roadmap [privacy-link]: http://go.microsoft.com/fwlink/?LinkId=521839 [vidConfOverview]: https://aka.ms/PowerToysOverview_VideoConference [loc-bug]: https://github.com/microsoft/PowerToys/issues/new?assignees=&labels=&template=translation_issue.md&title= [usingPowerToys-docs-link]: https://aka.ms/powertoys-docs
jaimecbernardo
a1e0bd51617b2bea189cb16324eecd0e13fa7b86
77063e0767a0619abfc339db3a2a564d27310b6c
```suggestion - After adding a new color in the editor, the history will scroll the new color into view. Thanks [@peerpalo](https://github.com/peerpalo)! ```
Jay-o-Way
414
microsoft/PowerToys
28,775
0.74 changelogs
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request Readme update for the 0.74 release. This will be copy / pasted for release notes.
null
2023-09-26 11:20:42+00:00
2023-09-26 21:36:51+00:00
README.md
# Microsoft PowerToys ![Hero image for Microsoft PowerToys](doc/images/overview/PT_hero_image.png) [How to use PowerToys][usingPowerToys-docs-link] | [Downloads & Release notes][github-release-link] | [Contributing to PowerToys](#contributing) | [What's Happening](#whats-happening) | [Roadmap](#powertoys-roadmap) ## Build status | Architecture | Solution (Main) | Solution (Stable) | Installer (Main) | |--------------|-----------------|-------------------|------------------| | x64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main&jobName=Build%20x64%20Release) | [![Build Status for Stable](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=stable&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_x64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | | ARM64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main) | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_arm64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | ## About Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. For more info on [PowerToys overviews and how to use the utilities][usingPowerToys-docs-link], or any other tools and resources for [Windows development environments](https://learn.microsoft.com/windows/dev-environment/overview), head over to [learn.microsoft.com][usingPowerToys-docs-link]! | | Current utilities: | | |--------------|--------------------|--------------| | [Always on Top](https://aka.ms/PowerToysOverview_AoT) | [PowerToys Awake](https://aka.ms/PowerToysOverview_Awake) | [Color Picker](https://aka.ms/PowerToysOverview_ColorPicker) | | [Crop And Lock](https://aka.ms/PowerToysOverview_CropAndLock) | [FancyZones](https://aka.ms/PowerToysOverview_FancyZones) | [File Explorer Add-ons](https://aka.ms/PowerToysOverview_FileExplorerAddOns) | | [File Locksmith](https://aka.ms/PowerToysOverview_FileLocksmith) | [Hosts File Editor](https://aka.ms/PowerToysOverview_HostsFileEditor) | [Image Resizer](https://aka.ms/PowerToysOverview_ImageResizer) | | [Keyboard Manager](https://aka.ms/PowerToysOverview_KeyboardManager) | [Mouse utilities](https://aka.ms/PowerToysOverview_MouseUtilities) | [Mouse Without Borders](https://aka.ms/PowerToysOverview_MouseWithoutBorders) | | [Peek](https://aka.ms/PowerToysOverview_Peek) | [Paste as Plain Text](https://aka.ms/PowerToysOverview_PastePlain) | [PowerRename](https://aka.ms/PowerToysOverview_PowerRename) | | [PowerToys Run](https://aka.ms/PowerToysOverview_PowerToysRun) | [Quick Accent](https://aka.ms/PowerToysOverview_QuickAccent) | [Registry Preview](https://aka.ms/PowerToysOverview_RegistryPreview) | | [Screen Ruler](https://aka.ms/PowerToysOverview_ScreenRuler) | [Shortcut Guide](https://aka.ms/PowerToysOverview_ShortcutGuide) | [Text Extractor](https://aka.ms/PowerToysOverview_TextExtractor) | | [Video Conference Mute](https://aka.ms/PowerToysOverview_VideoConference) | ## Installing and running Microsoft PowerToys ### Requirements - Windows 11 or Windows 10 version 2004 (code name 20H1 / build number 19041) or newer. - Our installer will install the following items: - [Microsoft Edge WebView2 Runtime](https://go.microsoft.com/fwlink/p/?LinkId=2124703) bootstrapper. This will install the latest version. ### Via GitHub with EXE [Recommended] Go to the [Microsoft PowerToys GitHub releases page][github-release-link] and click on `Assets` at the bottom to show the files available in the release. Please use the appropriate PowerToys installer that matches your machine's architecture and install scope. For most, it is `x64` and per-user. <!-- items that need to be updated release to release --> [github-next-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F47 [github-current-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F46 [ptUserX64]: https://github.com/microsoft/PowerToys/releases/download/v0.73.0/PowerToysUserSetup-0.73.0-x64.exe [ptUserArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.73.0/PowerToysUserSetup-0.73.0-arm64.exe [ptMachineX64]: https://github.com/microsoft/PowerToys/releases/download/v0.73.0/PowerToysSetup-0.73.0-x64.exe [ptMachineArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.73.0/PowerToysSetup-0.73.0-arm64.exe | Description | Filename | sha256 hash | |----------------|----------|-------------| | Per user - x64 | [PowerToysUserSetup-0.73.0-x64.exe][ptUserX64] | BA55D245BDD734FD6F19803DD706A3AB8E0ABC491591195534997CF2122D3B7E | | Per user - ARM64 | [PowerToysUserSetup-0.73.0-arm64.exe][ptUserArm64] | FBFA40EA5FFA05236A7CCDD05E5142EE0C93D7485B965784196ED9B086BFEBF4 | | Machine wide - x64 | [PowerToysSetup-0.73.0-x64.exe][ptMachineX64] | 7FDA06292C7C2E6DA5AEF88D8E9D3DE89D331E9E356A232289F9B37CE4503894 | | Machine wide - ARM64 | [PowerToysSetup-0.73.0-arm64.exe][ptMachineArm64] | 4260AA30A1F52F194EE07E9E7ECD9E9F4CF35289267F213BC933F7A5191AC17C | This is our preferred method. ### Via Microsoft Store Install from the [Microsoft Store's PowerToys page][microsoft-store-link]. You must be using the [new Microsoft Store](https://blogs.windows.com/windowsExperience/2021/06/24/building-a-new-open-microsoft-store-on-windows-11/) which is available for both Windows 11 and Windows 10. ### Via WinGet Download PowerToys from [WinGet][winget-link]. Updating PowerToys via winget will respect current PowerToys installation scope. To install PowerToys, run the following command from the command line / PowerShell: #### User scope installer [default] ```powershell winget install Microsoft.PowerToys -s winget ``` #### Machine-wide scope installer ```powershell winget install --scope machine Microsoft.PowerToys -s winget ``` ### Other install methods There are [community driven install methods](./doc/unofficialInstallMethods.md) such as Chocolatey and Scoop. If these are your preferred install solutions, you can find the install instructions there. ## Third-Party Run Plugins There is a collection of [third-party plugins](./doc/thirdPartyRunPlugins.md) created by the community that aren't distributed with PowerToys. ## Contributing This project welcomes contributions of all types. Besides coding features / bug fixes, other ways to assist include spec writing, design, documentation, and finding bugs. We are excited to work with the power user community to build a set of tools for helping you get the most out of Windows. We ask that **before you start work on a feature that you would like to contribute**, please read our [Contributor's Guide](CONTRIBUTING.md). We would be happy to work with you to figure out the best approach, provide guidance and mentorship throughout feature development, and help avoid any wasted or duplicate effort. Most contributions require you to agree to a [Contributor License Agreement (CLA)][oss-CLA] declaring that you grant us the rights to use your contribution and that you have permission to do so. For guidance on developing for PowerToys, please read the [developer docs](/doc/devdocs) for a detailed breakdown. This includes how to setup your computer to compile. ## What's Happening ### PowerToys Roadmap Our [prioritized roadmap][roadmap] of features and utilities that the core team is focusing on. ### 0.73 - August 2023 Update In this release, we focused on releasing new features, stability and improvements. **Highlights** - Keyboard manager now allows Numpad keys to be bound separately from the main keyboard. If using a previous configuration, only the main keyboard (not numpad) keys will be mapped. To restore the previous behavior, manually add separate bindings for numpad keys. - New utility: Crop And Lock allows you to crop a current application into a smaller window or just create a thumbnail. Focus the target window and press the shortcut to start cropping. - FancyZones code improvements and refactor. - Modernized ImageResizer UX. - PowerRename advanced counter functionality. ### General - Added missing CoUninitialize call in elevation logic. Thanks [@sredna](https://github.com/sredna)! - New utility: Crop And Lock. Thanks [@robmikh](https://github.com/robmikh)! and [@kevinguo305](https://github.com/kevinguo305)! - Added new /helped fabric bot command to GitHub repo. Thanks [@Aaron-Junker](https://github.com/Aaron-Junker)! - Fixed crashes caused by invalid settings. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Always On Top - Added border transparency. ### FancyZones - Fixed issue causing canvas zones being drawn only when dragging in the zone area. - Fixed user-defined default layout highlighting issue. - Refactored and improved code quality. - Fixed issue causing the wrong layout to be applied when duplicating a non-selected layout. ### File Locksmith - Icon update. Thanks [@jmaraujouy](https://github.com/jmaraujouy)! ### File Explorer add-ons - Fixed issue causing thumbnail previewers to lock files. - Open URIs from developer files in default browser. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Installer - Fixed PowerToys autorun after installing as SYSTEM user. - Removed CreateScheduledTask custom action to handle task creation only from runner code. ### Image Resizer - Moved from ModernWPF to WpfUI to refresh and modernize UI/UX. Thanks [@niels9001](https://github.com/niels9001)! ### Keyboard Manager - Rephrased labels to enhance clarity. Thanks [@Jay-o-Way](https://github.com/Jay-o-Way)! - Keyboard manager now allows Numpad keys to be bound separately from the main keyboard. If using a previous configuration, only the main keyboard (not numpad) keys will be mapped. To restore the previous behavior, manually add separate bindings for numpad keys. ### Mouse Highlighter - The highlighter is now visible in "Always on Top" windows. - Added settings for automatic activation on startup. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Mouse Pointer Crosshairs - Added settings for automatic activation on startup. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Peek - Show correct file type for shortcuts. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Fixed issue causing the wrong file size to be displayed. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Show 1 byte instead of 1 bytes file size. Thanks [@Deepak-Sangle](https://github.com/Deepak-Sangle)! - Open URIs from developer files in the default browser. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Show a thumbnail and fallback to an icon for unsupported files. Thanks [@pedrolamas](https://github.com/pedrolamas)! ### PowerRename - Updated the OOBE gif. Thanks [@ChaseKnowlden](https://github.com/ChaseKnowlden)! - Localized the renamed parts combo box. - Introduced advanced counter functionality. - Added remember last window size logic and optimized sorting of items. - Enable "Enumerate items" option by default. ### PowerToys Run - Fixed an issue causing original search to be abandoned when cycling through results. - Updated device and bluetooth results for Settings plugin. Thanks [@htcfreek](https://github.com/htcfreek)! - Fixed InvalidOperationException exception thrown. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Add Base64 Decoding function to the Value Generator plugin. Thanks [@LeagueOfPoro](https://github.com/LeagueOfPoro)! - Added a Keep shell open option for Shell plugin. - Added Crop And Lock to PowerToys plugin. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Registry Preview - Updated AppBarButtons to use an explicit AppBarButton.Icon. Thanks [@randyrants](https://github.com/randyrants)! - Fixed crash on clicking Save As button. ### Runner - Removed unneeded RegisterWindowMessage from tray icon logic. Thanks [@sredna](https://github.com/sredna)! - Fixed startup looping issue. - Improved old logs and installers cleanup logic. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Screen Ruler - Use proper resources file. ### Settings - Fixed issue causing problems with modifier keys and ShortcutControl. Thanks [@sh0ckj0ckey](https://github.com/sh0ckj0ckey)! - Fixed crash when clicking "Windows color settings" link. - Added support for launching Settings app directly. - Fixed issue causing DisplayDescription not showing for PowerToys Run PluginAdditionalOption. - Fixed issue causing FileLocksmith 'Show File Locksmith in' setting not showing correct value. - Fixed issue causing Awake on/off toggle in Settings flyout not to work when Settings Awake page is opened. ### Documentation - Added documentation for PowerToys Run third-party plugins. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Fixed broken links in keyboardmanagerui.md. Thanks [@shubhsardana29](https://github.com/shubhsardana29)! - Updated core team in COMMUNITY.md. - Fixed broken links in ui-architecture.md. Thanks [@SamB](https://github.com/SamB)! - Updated community.valuegenerator.md with Base64DecodeRequest description. ### Development - Updated test packages and StyleCop. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Condense NuGet Restore into MSBuild Tasks. Thanks [@snickler](https://github.com/snickler)! #### What is being planned for version 0.74 For [v0.74][github-next-release-work], we'll work on the items below: - Language selection - Modernize and refresh the UX of PowerToys based on WPF - Stability / bug fixes - Peek: UI improvements ## PowerToys Community The PowerToys team is extremely grateful to have the [support of an amazing active community][community-link]. The work you do is incredibly important. PowerToys wouldn’t be nearly what it is today without your help filing bugs, updating documentation, guiding the design, or writing features. We want to say thank you and take time to recognize your work. Month by month, you directly help make PowerToys a better piece of software. ## Code of Conduct This project has adopted the [Microsoft Open Source Code of Conduct][oss-conduct-code]. ## Privacy Statement The application logs basic telemetry. Our Telemetry Data page (Coming Soon) has the trends from the telemetry. Please read the [Microsoft privacy statement][privacy-link] for more information. [oss-CLA]: https://cla.opensource.microsoft.com [oss-conduct-code]: CODE_OF_CONDUCT.md [community-link]: COMMUNITY.md [github-release-link]: https://aka.ms/installPowerToys [microsoft-store-link]: https://aka.ms/getPowertoys [winget-link]: https://github.com/microsoft/winget-cli#installing-the-client [roadmap]: https://github.com/microsoft/PowerToys/wiki/Roadmap [privacy-link]: http://go.microsoft.com/fwlink/?LinkId=521839 [vidConfOverview]: https://aka.ms/PowerToysOverview_VideoConference [loc-bug]: https://github.com/microsoft/PowerToys/issues/new?assignees=&labels=&template=translation_issue.md&title= [usingPowerToys-docs-link]: https://aka.ms/powertoys-docs
# Microsoft PowerToys ![Hero image for Microsoft PowerToys](doc/images/overview/PT_hero_image.png) [How to use PowerToys][usingPowerToys-docs-link] | [Downloads & Release notes][github-release-link] | [Contributing to PowerToys](#contributing) | [What's Happening](#whats-happening) | [Roadmap](#powertoys-roadmap) ## Build status | Architecture | Solution (Main) | Solution (Stable) | Installer (Main) | |--------------|-----------------|-------------------|------------------| | x64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main&jobName=Build%20x64%20Release) | [![Build Status for Stable](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=stable&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_x64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | | ARM64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main) | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_arm64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | ## About Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. For more info on [PowerToys overviews and how to use the utilities][usingPowerToys-docs-link], or any other tools and resources for [Windows development environments](https://learn.microsoft.com/windows/dev-environment/overview), head over to [learn.microsoft.com][usingPowerToys-docs-link]! | | Current utilities: | | |--------------|--------------------|--------------| | [Always on Top](https://aka.ms/PowerToysOverview_AoT) | [PowerToys Awake](https://aka.ms/PowerToysOverview_Awake) | [Color Picker](https://aka.ms/PowerToysOverview_ColorPicker) | | [Crop And Lock](https://aka.ms/PowerToysOverview_CropAndLock) | [FancyZones](https://aka.ms/PowerToysOverview_FancyZones) | [File Explorer Add-ons](https://aka.ms/PowerToysOverview_FileExplorerAddOns) | | [File Locksmith](https://aka.ms/PowerToysOverview_FileLocksmith) | [Hosts File Editor](https://aka.ms/PowerToysOverview_HostsFileEditor) | [Image Resizer](https://aka.ms/PowerToysOverview_ImageResizer) | | [Keyboard Manager](https://aka.ms/PowerToysOverview_KeyboardManager) | [Mouse utilities](https://aka.ms/PowerToysOverview_MouseUtilities) | [Mouse Without Borders](https://aka.ms/PowerToysOverview_MouseWithoutBorders) | | [Peek](https://aka.ms/PowerToysOverview_Peek) | [Paste as Plain Text](https://aka.ms/PowerToysOverview_PastePlain) | [PowerRename](https://aka.ms/PowerToysOverview_PowerRename) | | [PowerToys Run](https://aka.ms/PowerToysOverview_PowerToysRun) | [Quick Accent](https://aka.ms/PowerToysOverview_QuickAccent) | [Registry Preview](https://aka.ms/PowerToysOverview_RegistryPreview) | | [Screen Ruler](https://aka.ms/PowerToysOverview_ScreenRuler) | [Shortcut Guide](https://aka.ms/PowerToysOverview_ShortcutGuide) | [Text Extractor](https://aka.ms/PowerToysOverview_TextExtractor) | | [Video Conference Mute](https://aka.ms/PowerToysOverview_VideoConference) | ## Installing and running Microsoft PowerToys ### Requirements - Windows 11 or Windows 10 version 2004 (code name 20H1 / build number 19041) or newer. - Our installer will install the following items: - [Microsoft Edge WebView2 Runtime](https://go.microsoft.com/fwlink/p/?LinkId=2124703) bootstrapper. This will install the latest version. ### Via GitHub with EXE [Recommended] Go to the [Microsoft PowerToys GitHub releases page][github-release-link] and click on `Assets` at the bottom to show the files available in the release. Please use the appropriate PowerToys installer that matches your machine's architecture and install scope. For most, it is `x64` and per-user. <!-- items that need to be updated release to release --> [github-next-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F48 [github-current-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F47 [ptUserX64]: https://github.com/microsoft/PowerToys/releases/download/v0.74.0/PowerToysUserSetup-0.74.0-x64.exe [ptUserArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.74.0/PowerToysUserSetup-0.74.0-arm64.exe [ptMachineX64]: https://github.com/microsoft/PowerToys/releases/download/v0.74.0/PowerToysSetup-0.74.0-x64.exe [ptMachineArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.74.0/PowerToysSetup-0.74.0-arm64.exe | Description | Filename | sha256 hash | |----------------|----------|-------------| | Per user - x64 | [PowerToysUserSetup-0.74.0-x64.exe][ptUserX64] | 1C4ECE9F11488BAFFAE6B76D2B0504FA18BFFEA11EBC38BCC87F5D86AEA87C7C | | Per user - ARM64 | [PowerToysUserSetup-0.74.0-arm64.exe][ptUserArm64] | 4F3842FAB0839A361A15A06B7720BA8A0FE7F9AF98EA94245C08DEF37678CA4A | | Machine wide - x64 | [PowerToysSetup-0.74.0-x64.exe][ptMachineX64] | 648992E8CEA08F3C63C7CCBD554ADDF500ECBC4560187310BC12E6CB9C2F38E3 | | Machine wide - ARM64 | [PowerToysSetup-0.74.0-arm64.exe][ptMachineArm64] | 2B6D92F1A0EA688C7EE882050AC9B030C8B3A18765163FB6D67E5E694A4D4FE3 | This is our preferred method. ### Via Microsoft Store Install from the [Microsoft Store's PowerToys page][microsoft-store-link]. You must be using the [new Microsoft Store](https://blogs.windows.com/windowsExperience/2021/06/24/building-a-new-open-microsoft-store-on-windows-11/) which is available for both Windows 11 and Windows 10. ### Via WinGet Download PowerToys from [WinGet][winget-link]. Updating PowerToys via winget will respect current PowerToys installation scope. To install PowerToys, run the following command from the command line / PowerShell: #### User scope installer [default] ```powershell winget install Microsoft.PowerToys -s winget ``` #### Machine-wide scope installer ```powershell winget install --scope machine Microsoft.PowerToys -s winget ``` ### Other install methods There are [community driven install methods](./doc/unofficialInstallMethods.md) such as Chocolatey and Scoop. If these are your preferred install solutions, you can find the install instructions there. ## Third-Party Run Plugins There is a collection of [third-party plugins](./doc/thirdPartyRunPlugins.md) created by the community that aren't distributed with PowerToys. ## Contributing This project welcomes contributions of all types. Besides coding features / bug fixes, other ways to assist include spec writing, design, documentation, and finding bugs. We are excited to work with the power user community to build a set of tools for helping you get the most out of Windows. We ask that **before you start work on a feature that you would like to contribute**, please read our [Contributor's Guide](CONTRIBUTING.md). We would be happy to work with you to figure out the best approach, provide guidance and mentorship throughout feature development, and help avoid any wasted or duplicate effort. Most contributions require you to agree to a [Contributor License Agreement (CLA)][oss-CLA] declaring that you grant us the rights to use your contribution and that you have permission to do so. For guidance on developing for PowerToys, please read the [developer docs](/doc/devdocs) for a detailed breakdown. This includes how to setup your computer to compile. ## What's Happening ### PowerToys Roadmap Our [prioritized roadmap][roadmap] of features and utilities that the core team is focusing on. ### 0.74 - September 2023 Update In this release, we focused on stability and improvements. **Highlights** - Upgraded to Windows App SDK 1.4.1, increasing stability of WinUI3 utilities. Thanks [@dongle-the-gadget](https://github.com/dongle-the-gadget) for starting the upgrade! - Text Extractor was upgraded to its version 2.0, with a new overlay, table mode and more Quality of Life improvements. Thanks [@TheJoeFin](https://github.com/TheJoeFin)! - Improved FancyZones stability, fixing some layout resets and improving handling of newly created windows on Windows 11. - Fixed many silent crashes that were reported to Watson and the user's event viewer. ### General - Turning animations off in Windows Settings will now also turn them off in PowerToys. - Upgraded the Windows App SDK dependency to 1.4.1. Thanks [@dongle-the-gadget](https://github.com/dongle-the-gadget) for the original 1.4.0 upgrade! - Show in the thumbnail label and application titles when running as administrator. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Upgraded the Win UI Community Toolkit dependency to 8.0. Thanks [@niels9001](https://github.com/niels9001)! ### Awake - Added down-sampled variants to the application's icon. Thanks [@morriscurtis](https://github.com/morriscurtis)! ### Color Picker - After adding a new color in the editor, the history will scroll the new color into view. Thanks [@peerpalo](https://github.com/peerpalo)! ### Crop and Lock - Fixed a Crop and Lock crash that would occur when trying to reparent a window crashes the target application. An error message is shown instead. ### FancyZones - Set the process and main thread priority to normal. - Fixed handling newly created windows on Windows 11. - Fixed scenarios where opening the FancyZones Editor would reset the layouts. ### File Explorer add-ons - Optimized CPU usage for generating SVG thumbnails. - Improved handling of Gcode Thumbnails, including JPG and QOI formats. Thanks [@pedrolamas](https://github.com/pedrolamas)! - Better handled errors when sending telemetry, which were causing reported crashes. - Fixed some thumbnails not being shown centered like before the optimization. ### File Locksmith - Shows files opened by processes with PID greater than 65535. Thanks [@poke30744](https://github.com/poke30744)! - Fixed a GDI object leak in the context menu which would crash Explorer. ### Find My Mouse - Added new activation methods, including by hotkey. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Hosts File Editor - Ignore the default ACME sample entries in the hosts file. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Improved save error handling and added better error messages. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Corrected a check for an error when signaling the application to start as administrator. - Refactored the context menu. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Fixed dialogs overlapping the title bar after the upgrade to Windows App SDK 1.4. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Keyboard Manager - Distinguish between the regular minus key and the numpad minus key. ### Mouse Without Borders - Fixed a crash when trying to restart the application. ### Peek - Using Peek on HTML files will show a white background by default, similar to a browser's default behavior. - Fix a white flash on Dark theme when switching file and improved the development file preview detection and adjustments. ### PowerRename - Fixed a crash caused by big counter values on the new enumeration method. ### PowerToys Run - It's now possible to select which shell is used by the Shell plugin. - A combobox option type was added to the plugin options. - Fixed a bug in the Calculator plugin that was causing decimal numbers to be misinterpreted on locales where the dot (`.`) character isn't used as a decimal or digit separator. - Improved the Program plugin stability when it fails to load a program's thumbnail at startup. - The use of Pinyin for querying some plugins can now be turned on in Settings. Thanks [@ChaseKnowlden](https://github.com/ChaseKnowlden)! - Refactored option types for plugin and added number, string and composite types to be used in the future. Thanks [@htcfreek](https://github.com/htcfreek)! - Fixed the entry for searching for Windows updates in the Settings plugin. Thanks [@htcfreek](https://github.com/htcfreek)! ### Quick Accent - The "All languages" character set is now calculated by programmatically querying the characters for every available language. Thanks [@dannysummerlin](https://github.com/dannysummerlin)! - Added é to the Norwegian and Swedish languages. Thanks [@Aaron-Junker](https://github.com/Aaron-Junker)! - Added a runtime cache to the "All languages" character set, to only calculate accents once per key. ### Registry Preview - Fixed focusing issues at startup. - Improved the data visualization to show data in a similar way to the Windows Registry Editor. Thanks [@dillydylann](https://github.com/dillydylann)! ### Runner - Fixed hanging when a bug report was generated from the flyout. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Settings - Improved the way the OOBE window reacts to Windows theme change. - Fixed an issue that made it impossible to change the "Switch between windows in the current zone" "Next window" shortcut for FancyZones. - Fixed a crash when entering a duplicate name for a color in the Color Picker page and improved clean up when cancelling a color edit. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Text Extractor - Text Extractor 2.0, with a new overlay, table mode and more Quality of Life improvements. Thanks [@TheJoeFin](https://github.com/TheJoeFin)! ### Documentation - SECURITY.md was updated from 0.0.2 to 0.0.9. Thanks [@Aaron-Junker](https://github.com/Aaron-Junker)! - Improved the README and main development document for clarity and completeness. Thanks [@codeofdusk](https://github.com/codeofdusk) and [@aprilbbrockhoeft](https://github.com/aprilbbrockhoeft)! ### Development - Fixed PowerToys Run DateTime plugin tests that were failing depending on locale, so that they can be run correctly on all dev machines. - Fixed PowerToys Run System plugin tests that were failing for certain network interfaces, so that they can be run correctly on all dev machines. Thanks [@snickler](https://github.com/snickler)! - Fixed a markdown bug on the GitHub /helped command. - Switched build pipelines to a new agent pool. Thanks [@DHowett](https://github.com/DHowett)! - New .cs files created in Visual Studio get the header added automatically. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! #### What is being planned for version 0.75 For [v0.75][github-next-release-work], we'll work on the items below: - Language selection - .NET 8 upgrade - Policy support for managing PowerToys Run plugins. *Attention*: A breaking change is planned (for 0.75), in which each plugin has to declare its identifier programmatically so that it can be controlled through GPO. For third-party plugin developers, please check https://github.com/microsoft/PowerToys/pull/27468 for more details. - New utility: Environment Variables Editor. Here's a Work in Progress preview: ![Environment Variables Editor WIP](https://github.com/microsoft/PowerToys/assets/26118718/f99532a8-5aae-481b-a662-19a95f4aa03d) - New Settings homepage. Here's a Work in Progress preview: ![PowerToys Settings Dashboard WIP](https://github.com/microsoft/PowerToys/assets/26118718/938a5715-0a9b-4fe9-9e15-adfec92da694) - Modernize and refresh the UX of PowerToys based on WPF. Here's Work in Progress previews for the modules "PowerToys Run" and "Color Picker": ![PowerToys Run UI refresh WIP](https://github.com/microsoft/PowerToys/assets/9866362/16903bcb-c18e-49fb-93ca-738b81957055) ![ColorPicker UI refresh WIP](https://github.com/microsoft/PowerToys/assets/9866362/ceebe54b-de63-4ce7-afcb-2cd4280bf4d1) - Stability / bug fixes ## PowerToys Community The PowerToys team is extremely grateful to have the [support of an amazing active community][community-link]. The work you do is incredibly important. PowerToys wouldn’t be nearly what it is today without your help filing bugs, updating documentation, guiding the design, or writing features. We want to say thank you and take time to recognize your work. Month by month, you directly help make PowerToys a better piece of software. ## Code of Conduct This project has adopted the [Microsoft Open Source Code of Conduct][oss-conduct-code]. ## Privacy Statement The application logs basic telemetry. Our Telemetry Data page (Coming Soon) has the trends from the telemetry. Please read the [Microsoft privacy statement][privacy-link] for more information. [oss-CLA]: https://cla.opensource.microsoft.com [oss-conduct-code]: CODE_OF_CONDUCT.md [community-link]: COMMUNITY.md [github-release-link]: https://aka.ms/installPowerToys [microsoft-store-link]: https://aka.ms/getPowertoys [winget-link]: https://github.com/microsoft/winget-cli#installing-the-client [roadmap]: https://github.com/microsoft/PowerToys/wiki/Roadmap [privacy-link]: http://go.microsoft.com/fwlink/?LinkId=521839 [vidConfOverview]: https://aka.ms/PowerToysOverview_VideoConference [loc-bug]: https://github.com/microsoft/PowerToys/issues/new?assignees=&labels=&template=translation_issue.md&title= [usingPowerToys-docs-link]: https://aka.ms/powertoys-docs
jaimecbernardo
a1e0bd51617b2bea189cb16324eecd0e13fa7b86
77063e0767a0619abfc339db3a2a564d27310b6c
These things aren't actually related to the product.
Jay-o-Way
415
microsoft/PowerToys
28,775
0.74 changelogs
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request Readme update for the 0.74 release. This will be copy / pasted for release notes.
null
2023-09-26 11:20:42+00:00
2023-09-26 21:36:51+00:00
README.md
# Microsoft PowerToys ![Hero image for Microsoft PowerToys](doc/images/overview/PT_hero_image.png) [How to use PowerToys][usingPowerToys-docs-link] | [Downloads & Release notes][github-release-link] | [Contributing to PowerToys](#contributing) | [What's Happening](#whats-happening) | [Roadmap](#powertoys-roadmap) ## Build status | Architecture | Solution (Main) | Solution (Stable) | Installer (Main) | |--------------|-----------------|-------------------|------------------| | x64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main&jobName=Build%20x64%20Release) | [![Build Status for Stable](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=stable&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_x64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | | ARM64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main) | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_arm64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | ## About Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. For more info on [PowerToys overviews and how to use the utilities][usingPowerToys-docs-link], or any other tools and resources for [Windows development environments](https://learn.microsoft.com/windows/dev-environment/overview), head over to [learn.microsoft.com][usingPowerToys-docs-link]! | | Current utilities: | | |--------------|--------------------|--------------| | [Always on Top](https://aka.ms/PowerToysOverview_AoT) | [PowerToys Awake](https://aka.ms/PowerToysOverview_Awake) | [Color Picker](https://aka.ms/PowerToysOverview_ColorPicker) | | [Crop And Lock](https://aka.ms/PowerToysOverview_CropAndLock) | [FancyZones](https://aka.ms/PowerToysOverview_FancyZones) | [File Explorer Add-ons](https://aka.ms/PowerToysOverview_FileExplorerAddOns) | | [File Locksmith](https://aka.ms/PowerToysOverview_FileLocksmith) | [Hosts File Editor](https://aka.ms/PowerToysOverview_HostsFileEditor) | [Image Resizer](https://aka.ms/PowerToysOverview_ImageResizer) | | [Keyboard Manager](https://aka.ms/PowerToysOverview_KeyboardManager) | [Mouse utilities](https://aka.ms/PowerToysOverview_MouseUtilities) | [Mouse Without Borders](https://aka.ms/PowerToysOverview_MouseWithoutBorders) | | [Peek](https://aka.ms/PowerToysOverview_Peek) | [Paste as Plain Text](https://aka.ms/PowerToysOverview_PastePlain) | [PowerRename](https://aka.ms/PowerToysOverview_PowerRename) | | [PowerToys Run](https://aka.ms/PowerToysOverview_PowerToysRun) | [Quick Accent](https://aka.ms/PowerToysOverview_QuickAccent) | [Registry Preview](https://aka.ms/PowerToysOverview_RegistryPreview) | | [Screen Ruler](https://aka.ms/PowerToysOverview_ScreenRuler) | [Shortcut Guide](https://aka.ms/PowerToysOverview_ShortcutGuide) | [Text Extractor](https://aka.ms/PowerToysOverview_TextExtractor) | | [Video Conference Mute](https://aka.ms/PowerToysOverview_VideoConference) | ## Installing and running Microsoft PowerToys ### Requirements - Windows 11 or Windows 10 version 2004 (code name 20H1 / build number 19041) or newer. - Our installer will install the following items: - [Microsoft Edge WebView2 Runtime](https://go.microsoft.com/fwlink/p/?LinkId=2124703) bootstrapper. This will install the latest version. ### Via GitHub with EXE [Recommended] Go to the [Microsoft PowerToys GitHub releases page][github-release-link] and click on `Assets` at the bottom to show the files available in the release. Please use the appropriate PowerToys installer that matches your machine's architecture and install scope. For most, it is `x64` and per-user. <!-- items that need to be updated release to release --> [github-next-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F47 [github-current-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F46 [ptUserX64]: https://github.com/microsoft/PowerToys/releases/download/v0.73.0/PowerToysUserSetup-0.73.0-x64.exe [ptUserArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.73.0/PowerToysUserSetup-0.73.0-arm64.exe [ptMachineX64]: https://github.com/microsoft/PowerToys/releases/download/v0.73.0/PowerToysSetup-0.73.0-x64.exe [ptMachineArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.73.0/PowerToysSetup-0.73.0-arm64.exe | Description | Filename | sha256 hash | |----------------|----------|-------------| | Per user - x64 | [PowerToysUserSetup-0.73.0-x64.exe][ptUserX64] | BA55D245BDD734FD6F19803DD706A3AB8E0ABC491591195534997CF2122D3B7E | | Per user - ARM64 | [PowerToysUserSetup-0.73.0-arm64.exe][ptUserArm64] | FBFA40EA5FFA05236A7CCDD05E5142EE0C93D7485B965784196ED9B086BFEBF4 | | Machine wide - x64 | [PowerToysSetup-0.73.0-x64.exe][ptMachineX64] | 7FDA06292C7C2E6DA5AEF88D8E9D3DE89D331E9E356A232289F9B37CE4503894 | | Machine wide - ARM64 | [PowerToysSetup-0.73.0-arm64.exe][ptMachineArm64] | 4260AA30A1F52F194EE07E9E7ECD9E9F4CF35289267F213BC933F7A5191AC17C | This is our preferred method. ### Via Microsoft Store Install from the [Microsoft Store's PowerToys page][microsoft-store-link]. You must be using the [new Microsoft Store](https://blogs.windows.com/windowsExperience/2021/06/24/building-a-new-open-microsoft-store-on-windows-11/) which is available for both Windows 11 and Windows 10. ### Via WinGet Download PowerToys from [WinGet][winget-link]. Updating PowerToys via winget will respect current PowerToys installation scope. To install PowerToys, run the following command from the command line / PowerShell: #### User scope installer [default] ```powershell winget install Microsoft.PowerToys -s winget ``` #### Machine-wide scope installer ```powershell winget install --scope machine Microsoft.PowerToys -s winget ``` ### Other install methods There are [community driven install methods](./doc/unofficialInstallMethods.md) such as Chocolatey and Scoop. If these are your preferred install solutions, you can find the install instructions there. ## Third-Party Run Plugins There is a collection of [third-party plugins](./doc/thirdPartyRunPlugins.md) created by the community that aren't distributed with PowerToys. ## Contributing This project welcomes contributions of all types. Besides coding features / bug fixes, other ways to assist include spec writing, design, documentation, and finding bugs. We are excited to work with the power user community to build a set of tools for helping you get the most out of Windows. We ask that **before you start work on a feature that you would like to contribute**, please read our [Contributor's Guide](CONTRIBUTING.md). We would be happy to work with you to figure out the best approach, provide guidance and mentorship throughout feature development, and help avoid any wasted or duplicate effort. Most contributions require you to agree to a [Contributor License Agreement (CLA)][oss-CLA] declaring that you grant us the rights to use your contribution and that you have permission to do so. For guidance on developing for PowerToys, please read the [developer docs](/doc/devdocs) for a detailed breakdown. This includes how to setup your computer to compile. ## What's Happening ### PowerToys Roadmap Our [prioritized roadmap][roadmap] of features and utilities that the core team is focusing on. ### 0.73 - August 2023 Update In this release, we focused on releasing new features, stability and improvements. **Highlights** - Keyboard manager now allows Numpad keys to be bound separately from the main keyboard. If using a previous configuration, only the main keyboard (not numpad) keys will be mapped. To restore the previous behavior, manually add separate bindings for numpad keys. - New utility: Crop And Lock allows you to crop a current application into a smaller window or just create a thumbnail. Focus the target window and press the shortcut to start cropping. - FancyZones code improvements and refactor. - Modernized ImageResizer UX. - PowerRename advanced counter functionality. ### General - Added missing CoUninitialize call in elevation logic. Thanks [@sredna](https://github.com/sredna)! - New utility: Crop And Lock. Thanks [@robmikh](https://github.com/robmikh)! and [@kevinguo305](https://github.com/kevinguo305)! - Added new /helped fabric bot command to GitHub repo. Thanks [@Aaron-Junker](https://github.com/Aaron-Junker)! - Fixed crashes caused by invalid settings. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Always On Top - Added border transparency. ### FancyZones - Fixed issue causing canvas zones being drawn only when dragging in the zone area. - Fixed user-defined default layout highlighting issue. - Refactored and improved code quality. - Fixed issue causing the wrong layout to be applied when duplicating a non-selected layout. ### File Locksmith - Icon update. Thanks [@jmaraujouy](https://github.com/jmaraujouy)! ### File Explorer add-ons - Fixed issue causing thumbnail previewers to lock files. - Open URIs from developer files in default browser. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Installer - Fixed PowerToys autorun after installing as SYSTEM user. - Removed CreateScheduledTask custom action to handle task creation only from runner code. ### Image Resizer - Moved from ModernWPF to WpfUI to refresh and modernize UI/UX. Thanks [@niels9001](https://github.com/niels9001)! ### Keyboard Manager - Rephrased labels to enhance clarity. Thanks [@Jay-o-Way](https://github.com/Jay-o-Way)! - Keyboard manager now allows Numpad keys to be bound separately from the main keyboard. If using a previous configuration, only the main keyboard (not numpad) keys will be mapped. To restore the previous behavior, manually add separate bindings for numpad keys. ### Mouse Highlighter - The highlighter is now visible in "Always on Top" windows. - Added settings for automatic activation on startup. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Mouse Pointer Crosshairs - Added settings for automatic activation on startup. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Peek - Show correct file type for shortcuts. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Fixed issue causing the wrong file size to be displayed. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Show 1 byte instead of 1 bytes file size. Thanks [@Deepak-Sangle](https://github.com/Deepak-Sangle)! - Open URIs from developer files in the default browser. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Show a thumbnail and fallback to an icon for unsupported files. Thanks [@pedrolamas](https://github.com/pedrolamas)! ### PowerRename - Updated the OOBE gif. Thanks [@ChaseKnowlden](https://github.com/ChaseKnowlden)! - Localized the renamed parts combo box. - Introduced advanced counter functionality. - Added remember last window size logic and optimized sorting of items. - Enable "Enumerate items" option by default. ### PowerToys Run - Fixed an issue causing original search to be abandoned when cycling through results. - Updated device and bluetooth results for Settings plugin. Thanks [@htcfreek](https://github.com/htcfreek)! - Fixed InvalidOperationException exception thrown. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Add Base64 Decoding function to the Value Generator plugin. Thanks [@LeagueOfPoro](https://github.com/LeagueOfPoro)! - Added a Keep shell open option for Shell plugin. - Added Crop And Lock to PowerToys plugin. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Registry Preview - Updated AppBarButtons to use an explicit AppBarButton.Icon. Thanks [@randyrants](https://github.com/randyrants)! - Fixed crash on clicking Save As button. ### Runner - Removed unneeded RegisterWindowMessage from tray icon logic. Thanks [@sredna](https://github.com/sredna)! - Fixed startup looping issue. - Improved old logs and installers cleanup logic. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Screen Ruler - Use proper resources file. ### Settings - Fixed issue causing problems with modifier keys and ShortcutControl. Thanks [@sh0ckj0ckey](https://github.com/sh0ckj0ckey)! - Fixed crash when clicking "Windows color settings" link. - Added support for launching Settings app directly. - Fixed issue causing DisplayDescription not showing for PowerToys Run PluginAdditionalOption. - Fixed issue causing FileLocksmith 'Show File Locksmith in' setting not showing correct value. - Fixed issue causing Awake on/off toggle in Settings flyout not to work when Settings Awake page is opened. ### Documentation - Added documentation for PowerToys Run third-party plugins. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Fixed broken links in keyboardmanagerui.md. Thanks [@shubhsardana29](https://github.com/shubhsardana29)! - Updated core team in COMMUNITY.md. - Fixed broken links in ui-architecture.md. Thanks [@SamB](https://github.com/SamB)! - Updated community.valuegenerator.md with Base64DecodeRequest description. ### Development - Updated test packages and StyleCop. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Condense NuGet Restore into MSBuild Tasks. Thanks [@snickler](https://github.com/snickler)! #### What is being planned for version 0.74 For [v0.74][github-next-release-work], we'll work on the items below: - Language selection - Modernize and refresh the UX of PowerToys based on WPF - Stability / bug fixes - Peek: UI improvements ## PowerToys Community The PowerToys team is extremely grateful to have the [support of an amazing active community][community-link]. The work you do is incredibly important. PowerToys wouldn’t be nearly what it is today without your help filing bugs, updating documentation, guiding the design, or writing features. We want to say thank you and take time to recognize your work. Month by month, you directly help make PowerToys a better piece of software. ## Code of Conduct This project has adopted the [Microsoft Open Source Code of Conduct][oss-conduct-code]. ## Privacy Statement The application logs basic telemetry. Our Telemetry Data page (Coming Soon) has the trends from the telemetry. Please read the [Microsoft privacy statement][privacy-link] for more information. [oss-CLA]: https://cla.opensource.microsoft.com [oss-conduct-code]: CODE_OF_CONDUCT.md [community-link]: COMMUNITY.md [github-release-link]: https://aka.ms/installPowerToys [microsoft-store-link]: https://aka.ms/getPowertoys [winget-link]: https://github.com/microsoft/winget-cli#installing-the-client [roadmap]: https://github.com/microsoft/PowerToys/wiki/Roadmap [privacy-link]: http://go.microsoft.com/fwlink/?LinkId=521839 [vidConfOverview]: https://aka.ms/PowerToysOverview_VideoConference [loc-bug]: https://github.com/microsoft/PowerToys/issues/new?assignees=&labels=&template=translation_issue.md&title= [usingPowerToys-docs-link]: https://aka.ms/powertoys-docs
# Microsoft PowerToys ![Hero image for Microsoft PowerToys](doc/images/overview/PT_hero_image.png) [How to use PowerToys][usingPowerToys-docs-link] | [Downloads & Release notes][github-release-link] | [Contributing to PowerToys](#contributing) | [What's Happening](#whats-happening) | [Roadmap](#powertoys-roadmap) ## Build status | Architecture | Solution (Main) | Solution (Stable) | Installer (Main) | |--------------|-----------------|-------------------|------------------| | x64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main&jobName=Build%20x64%20Release) | [![Build Status for Stable](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=stable&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_x64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | | ARM64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main) | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_arm64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | ## About Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. For more info on [PowerToys overviews and how to use the utilities][usingPowerToys-docs-link], or any other tools and resources for [Windows development environments](https://learn.microsoft.com/windows/dev-environment/overview), head over to [learn.microsoft.com][usingPowerToys-docs-link]! | | Current utilities: | | |--------------|--------------------|--------------| | [Always on Top](https://aka.ms/PowerToysOverview_AoT) | [PowerToys Awake](https://aka.ms/PowerToysOverview_Awake) | [Color Picker](https://aka.ms/PowerToysOverview_ColorPicker) | | [Crop And Lock](https://aka.ms/PowerToysOverview_CropAndLock) | [FancyZones](https://aka.ms/PowerToysOverview_FancyZones) | [File Explorer Add-ons](https://aka.ms/PowerToysOverview_FileExplorerAddOns) | | [File Locksmith](https://aka.ms/PowerToysOverview_FileLocksmith) | [Hosts File Editor](https://aka.ms/PowerToysOverview_HostsFileEditor) | [Image Resizer](https://aka.ms/PowerToysOverview_ImageResizer) | | [Keyboard Manager](https://aka.ms/PowerToysOverview_KeyboardManager) | [Mouse utilities](https://aka.ms/PowerToysOverview_MouseUtilities) | [Mouse Without Borders](https://aka.ms/PowerToysOverview_MouseWithoutBorders) | | [Peek](https://aka.ms/PowerToysOverview_Peek) | [Paste as Plain Text](https://aka.ms/PowerToysOverview_PastePlain) | [PowerRename](https://aka.ms/PowerToysOverview_PowerRename) | | [PowerToys Run](https://aka.ms/PowerToysOverview_PowerToysRun) | [Quick Accent](https://aka.ms/PowerToysOverview_QuickAccent) | [Registry Preview](https://aka.ms/PowerToysOverview_RegistryPreview) | | [Screen Ruler](https://aka.ms/PowerToysOverview_ScreenRuler) | [Shortcut Guide](https://aka.ms/PowerToysOverview_ShortcutGuide) | [Text Extractor](https://aka.ms/PowerToysOverview_TextExtractor) | | [Video Conference Mute](https://aka.ms/PowerToysOverview_VideoConference) | ## Installing and running Microsoft PowerToys ### Requirements - Windows 11 or Windows 10 version 2004 (code name 20H1 / build number 19041) or newer. - Our installer will install the following items: - [Microsoft Edge WebView2 Runtime](https://go.microsoft.com/fwlink/p/?LinkId=2124703) bootstrapper. This will install the latest version. ### Via GitHub with EXE [Recommended] Go to the [Microsoft PowerToys GitHub releases page][github-release-link] and click on `Assets` at the bottom to show the files available in the release. Please use the appropriate PowerToys installer that matches your machine's architecture and install scope. For most, it is `x64` and per-user. <!-- items that need to be updated release to release --> [github-next-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F48 [github-current-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F47 [ptUserX64]: https://github.com/microsoft/PowerToys/releases/download/v0.74.0/PowerToysUserSetup-0.74.0-x64.exe [ptUserArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.74.0/PowerToysUserSetup-0.74.0-arm64.exe [ptMachineX64]: https://github.com/microsoft/PowerToys/releases/download/v0.74.0/PowerToysSetup-0.74.0-x64.exe [ptMachineArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.74.0/PowerToysSetup-0.74.0-arm64.exe | Description | Filename | sha256 hash | |----------------|----------|-------------| | Per user - x64 | [PowerToysUserSetup-0.74.0-x64.exe][ptUserX64] | 1C4ECE9F11488BAFFAE6B76D2B0504FA18BFFEA11EBC38BCC87F5D86AEA87C7C | | Per user - ARM64 | [PowerToysUserSetup-0.74.0-arm64.exe][ptUserArm64] | 4F3842FAB0839A361A15A06B7720BA8A0FE7F9AF98EA94245C08DEF37678CA4A | | Machine wide - x64 | [PowerToysSetup-0.74.0-x64.exe][ptMachineX64] | 648992E8CEA08F3C63C7CCBD554ADDF500ECBC4560187310BC12E6CB9C2F38E3 | | Machine wide - ARM64 | [PowerToysSetup-0.74.0-arm64.exe][ptMachineArm64] | 2B6D92F1A0EA688C7EE882050AC9B030C8B3A18765163FB6D67E5E694A4D4FE3 | This is our preferred method. ### Via Microsoft Store Install from the [Microsoft Store's PowerToys page][microsoft-store-link]. You must be using the [new Microsoft Store](https://blogs.windows.com/windowsExperience/2021/06/24/building-a-new-open-microsoft-store-on-windows-11/) which is available for both Windows 11 and Windows 10. ### Via WinGet Download PowerToys from [WinGet][winget-link]. Updating PowerToys via winget will respect current PowerToys installation scope. To install PowerToys, run the following command from the command line / PowerShell: #### User scope installer [default] ```powershell winget install Microsoft.PowerToys -s winget ``` #### Machine-wide scope installer ```powershell winget install --scope machine Microsoft.PowerToys -s winget ``` ### Other install methods There are [community driven install methods](./doc/unofficialInstallMethods.md) such as Chocolatey and Scoop. If these are your preferred install solutions, you can find the install instructions there. ## Third-Party Run Plugins There is a collection of [third-party plugins](./doc/thirdPartyRunPlugins.md) created by the community that aren't distributed with PowerToys. ## Contributing This project welcomes contributions of all types. Besides coding features / bug fixes, other ways to assist include spec writing, design, documentation, and finding bugs. We are excited to work with the power user community to build a set of tools for helping you get the most out of Windows. We ask that **before you start work on a feature that you would like to contribute**, please read our [Contributor's Guide](CONTRIBUTING.md). We would be happy to work with you to figure out the best approach, provide guidance and mentorship throughout feature development, and help avoid any wasted or duplicate effort. Most contributions require you to agree to a [Contributor License Agreement (CLA)][oss-CLA] declaring that you grant us the rights to use your contribution and that you have permission to do so. For guidance on developing for PowerToys, please read the [developer docs](/doc/devdocs) for a detailed breakdown. This includes how to setup your computer to compile. ## What's Happening ### PowerToys Roadmap Our [prioritized roadmap][roadmap] of features and utilities that the core team is focusing on. ### 0.74 - September 2023 Update In this release, we focused on stability and improvements. **Highlights** - Upgraded to Windows App SDK 1.4.1, increasing stability of WinUI3 utilities. Thanks [@dongle-the-gadget](https://github.com/dongle-the-gadget) for starting the upgrade! - Text Extractor was upgraded to its version 2.0, with a new overlay, table mode and more Quality of Life improvements. Thanks [@TheJoeFin](https://github.com/TheJoeFin)! - Improved FancyZones stability, fixing some layout resets and improving handling of newly created windows on Windows 11. - Fixed many silent crashes that were reported to Watson and the user's event viewer. ### General - Turning animations off in Windows Settings will now also turn them off in PowerToys. - Upgraded the Windows App SDK dependency to 1.4.1. Thanks [@dongle-the-gadget](https://github.com/dongle-the-gadget) for the original 1.4.0 upgrade! - Show in the thumbnail label and application titles when running as administrator. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Upgraded the Win UI Community Toolkit dependency to 8.0. Thanks [@niels9001](https://github.com/niels9001)! ### Awake - Added down-sampled variants to the application's icon. Thanks [@morriscurtis](https://github.com/morriscurtis)! ### Color Picker - After adding a new color in the editor, the history will scroll the new color into view. Thanks [@peerpalo](https://github.com/peerpalo)! ### Crop and Lock - Fixed a Crop and Lock crash that would occur when trying to reparent a window crashes the target application. An error message is shown instead. ### FancyZones - Set the process and main thread priority to normal. - Fixed handling newly created windows on Windows 11. - Fixed scenarios where opening the FancyZones Editor would reset the layouts. ### File Explorer add-ons - Optimized CPU usage for generating SVG thumbnails. - Improved handling of Gcode Thumbnails, including JPG and QOI formats. Thanks [@pedrolamas](https://github.com/pedrolamas)! - Better handled errors when sending telemetry, which were causing reported crashes. - Fixed some thumbnails not being shown centered like before the optimization. ### File Locksmith - Shows files opened by processes with PID greater than 65535. Thanks [@poke30744](https://github.com/poke30744)! - Fixed a GDI object leak in the context menu which would crash Explorer. ### Find My Mouse - Added new activation methods, including by hotkey. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Hosts File Editor - Ignore the default ACME sample entries in the hosts file. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Improved save error handling and added better error messages. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Corrected a check for an error when signaling the application to start as administrator. - Refactored the context menu. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Fixed dialogs overlapping the title bar after the upgrade to Windows App SDK 1.4. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Keyboard Manager - Distinguish between the regular minus key and the numpad minus key. ### Mouse Without Borders - Fixed a crash when trying to restart the application. ### Peek - Using Peek on HTML files will show a white background by default, similar to a browser's default behavior. - Fix a white flash on Dark theme when switching file and improved the development file preview detection and adjustments. ### PowerRename - Fixed a crash caused by big counter values on the new enumeration method. ### PowerToys Run - It's now possible to select which shell is used by the Shell plugin. - A combobox option type was added to the plugin options. - Fixed a bug in the Calculator plugin that was causing decimal numbers to be misinterpreted on locales where the dot (`.`) character isn't used as a decimal or digit separator. - Improved the Program plugin stability when it fails to load a program's thumbnail at startup. - The use of Pinyin for querying some plugins can now be turned on in Settings. Thanks [@ChaseKnowlden](https://github.com/ChaseKnowlden)! - Refactored option types for plugin and added number, string and composite types to be used in the future. Thanks [@htcfreek](https://github.com/htcfreek)! - Fixed the entry for searching for Windows updates in the Settings plugin. Thanks [@htcfreek](https://github.com/htcfreek)! ### Quick Accent - The "All languages" character set is now calculated by programmatically querying the characters for every available language. Thanks [@dannysummerlin](https://github.com/dannysummerlin)! - Added é to the Norwegian and Swedish languages. Thanks [@Aaron-Junker](https://github.com/Aaron-Junker)! - Added a runtime cache to the "All languages" character set, to only calculate accents once per key. ### Registry Preview - Fixed focusing issues at startup. - Improved the data visualization to show data in a similar way to the Windows Registry Editor. Thanks [@dillydylann](https://github.com/dillydylann)! ### Runner - Fixed hanging when a bug report was generated from the flyout. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Settings - Improved the way the OOBE window reacts to Windows theme change. - Fixed an issue that made it impossible to change the "Switch between windows in the current zone" "Next window" shortcut for FancyZones. - Fixed a crash when entering a duplicate name for a color in the Color Picker page and improved clean up when cancelling a color edit. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Text Extractor - Text Extractor 2.0, with a new overlay, table mode and more Quality of Life improvements. Thanks [@TheJoeFin](https://github.com/TheJoeFin)! ### Documentation - SECURITY.md was updated from 0.0.2 to 0.0.9. Thanks [@Aaron-Junker](https://github.com/Aaron-Junker)! - Improved the README and main development document for clarity and completeness. Thanks [@codeofdusk](https://github.com/codeofdusk) and [@aprilbbrockhoeft](https://github.com/aprilbbrockhoeft)! ### Development - Fixed PowerToys Run DateTime plugin tests that were failing depending on locale, so that they can be run correctly on all dev machines. - Fixed PowerToys Run System plugin tests that were failing for certain network interfaces, so that they can be run correctly on all dev machines. Thanks [@snickler](https://github.com/snickler)! - Fixed a markdown bug on the GitHub /helped command. - Switched build pipelines to a new agent pool. Thanks [@DHowett](https://github.com/DHowett)! - New .cs files created in Visual Studio get the header added automatically. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! #### What is being planned for version 0.75 For [v0.75][github-next-release-work], we'll work on the items below: - Language selection - .NET 8 upgrade - Policy support for managing PowerToys Run plugins. *Attention*: A breaking change is planned (for 0.75), in which each plugin has to declare its identifier programmatically so that it can be controlled through GPO. For third-party plugin developers, please check https://github.com/microsoft/PowerToys/pull/27468 for more details. - New utility: Environment Variables Editor. Here's a Work in Progress preview: ![Environment Variables Editor WIP](https://github.com/microsoft/PowerToys/assets/26118718/f99532a8-5aae-481b-a662-19a95f4aa03d) - New Settings homepage. Here's a Work in Progress preview: ![PowerToys Settings Dashboard WIP](https://github.com/microsoft/PowerToys/assets/26118718/938a5715-0a9b-4fe9-9e15-adfec92da694) - Modernize and refresh the UX of PowerToys based on WPF. Here's Work in Progress previews for the modules "PowerToys Run" and "Color Picker": ![PowerToys Run UI refresh WIP](https://github.com/microsoft/PowerToys/assets/9866362/16903bcb-c18e-49fb-93ca-738b81957055) ![ColorPicker UI refresh WIP](https://github.com/microsoft/PowerToys/assets/9866362/ceebe54b-de63-4ce7-afcb-2cd4280bf4d1) - Stability / bug fixes ## PowerToys Community The PowerToys team is extremely grateful to have the [support of an amazing active community][community-link]. The work you do is incredibly important. PowerToys wouldn’t be nearly what it is today without your help filing bugs, updating documentation, guiding the design, or writing features. We want to say thank you and take time to recognize your work. Month by month, you directly help make PowerToys a better piece of software. ## Code of Conduct This project has adopted the [Microsoft Open Source Code of Conduct][oss-conduct-code]. ## Privacy Statement The application logs basic telemetry. Our Telemetry Data page (Coming Soon) has the trends from the telemetry. Please read the [Microsoft privacy statement][privacy-link] for more information. [oss-CLA]: https://cla.opensource.microsoft.com [oss-conduct-code]: CODE_OF_CONDUCT.md [community-link]: COMMUNITY.md [github-release-link]: https://aka.ms/installPowerToys [microsoft-store-link]: https://aka.ms/getPowertoys [winget-link]: https://github.com/microsoft/winget-cli#installing-the-client [roadmap]: https://github.com/microsoft/PowerToys/wiki/Roadmap [privacy-link]: http://go.microsoft.com/fwlink/?LinkId=521839 [vidConfOverview]: https://aka.ms/PowerToysOverview_VideoConference [loc-bug]: https://github.com/microsoft/PowerToys/issues/new?assignees=&labels=&template=translation_issue.md&title= [usingPowerToys-docs-link]: https://aka.ms/powertoys-docs
jaimecbernardo
a1e0bd51617b2bea189cb16324eecd0e13fa7b86
77063e0767a0619abfc339db3a2a564d27310b6c
Also, no relation to the product and hardly significant to any user.
Jay-o-Way
416
microsoft/PowerToys
28,775
0.74 changelogs
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request Readme update for the 0.74 release. This will be copy / pasted for release notes.
null
2023-09-26 11:20:42+00:00
2023-09-26 21:36:51+00:00
README.md
# Microsoft PowerToys ![Hero image for Microsoft PowerToys](doc/images/overview/PT_hero_image.png) [How to use PowerToys][usingPowerToys-docs-link] | [Downloads & Release notes][github-release-link] | [Contributing to PowerToys](#contributing) | [What's Happening](#whats-happening) | [Roadmap](#powertoys-roadmap) ## Build status | Architecture | Solution (Main) | Solution (Stable) | Installer (Main) | |--------------|-----------------|-------------------|------------------| | x64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main&jobName=Build%20x64%20Release) | [![Build Status for Stable](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=stable&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_x64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | | ARM64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main) | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_arm64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | ## About Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. For more info on [PowerToys overviews and how to use the utilities][usingPowerToys-docs-link], or any other tools and resources for [Windows development environments](https://learn.microsoft.com/windows/dev-environment/overview), head over to [learn.microsoft.com][usingPowerToys-docs-link]! | | Current utilities: | | |--------------|--------------------|--------------| | [Always on Top](https://aka.ms/PowerToysOverview_AoT) | [PowerToys Awake](https://aka.ms/PowerToysOverview_Awake) | [Color Picker](https://aka.ms/PowerToysOverview_ColorPicker) | | [Crop And Lock](https://aka.ms/PowerToysOverview_CropAndLock) | [FancyZones](https://aka.ms/PowerToysOverview_FancyZones) | [File Explorer Add-ons](https://aka.ms/PowerToysOverview_FileExplorerAddOns) | | [File Locksmith](https://aka.ms/PowerToysOverview_FileLocksmith) | [Hosts File Editor](https://aka.ms/PowerToysOverview_HostsFileEditor) | [Image Resizer](https://aka.ms/PowerToysOverview_ImageResizer) | | [Keyboard Manager](https://aka.ms/PowerToysOverview_KeyboardManager) | [Mouse utilities](https://aka.ms/PowerToysOverview_MouseUtilities) | [Mouse Without Borders](https://aka.ms/PowerToysOverview_MouseWithoutBorders) | | [Peek](https://aka.ms/PowerToysOverview_Peek) | [Paste as Plain Text](https://aka.ms/PowerToysOverview_PastePlain) | [PowerRename](https://aka.ms/PowerToysOverview_PowerRename) | | [PowerToys Run](https://aka.ms/PowerToysOverview_PowerToysRun) | [Quick Accent](https://aka.ms/PowerToysOverview_QuickAccent) | [Registry Preview](https://aka.ms/PowerToysOverview_RegistryPreview) | | [Screen Ruler](https://aka.ms/PowerToysOverview_ScreenRuler) | [Shortcut Guide](https://aka.ms/PowerToysOverview_ShortcutGuide) | [Text Extractor](https://aka.ms/PowerToysOverview_TextExtractor) | | [Video Conference Mute](https://aka.ms/PowerToysOverview_VideoConference) | ## Installing and running Microsoft PowerToys ### Requirements - Windows 11 or Windows 10 version 2004 (code name 20H1 / build number 19041) or newer. - Our installer will install the following items: - [Microsoft Edge WebView2 Runtime](https://go.microsoft.com/fwlink/p/?LinkId=2124703) bootstrapper. This will install the latest version. ### Via GitHub with EXE [Recommended] Go to the [Microsoft PowerToys GitHub releases page][github-release-link] and click on `Assets` at the bottom to show the files available in the release. Please use the appropriate PowerToys installer that matches your machine's architecture and install scope. For most, it is `x64` and per-user. <!-- items that need to be updated release to release --> [github-next-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F47 [github-current-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F46 [ptUserX64]: https://github.com/microsoft/PowerToys/releases/download/v0.73.0/PowerToysUserSetup-0.73.0-x64.exe [ptUserArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.73.0/PowerToysUserSetup-0.73.0-arm64.exe [ptMachineX64]: https://github.com/microsoft/PowerToys/releases/download/v0.73.0/PowerToysSetup-0.73.0-x64.exe [ptMachineArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.73.0/PowerToysSetup-0.73.0-arm64.exe | Description | Filename | sha256 hash | |----------------|----------|-------------| | Per user - x64 | [PowerToysUserSetup-0.73.0-x64.exe][ptUserX64] | BA55D245BDD734FD6F19803DD706A3AB8E0ABC491591195534997CF2122D3B7E | | Per user - ARM64 | [PowerToysUserSetup-0.73.0-arm64.exe][ptUserArm64] | FBFA40EA5FFA05236A7CCDD05E5142EE0C93D7485B965784196ED9B086BFEBF4 | | Machine wide - x64 | [PowerToysSetup-0.73.0-x64.exe][ptMachineX64] | 7FDA06292C7C2E6DA5AEF88D8E9D3DE89D331E9E356A232289F9B37CE4503894 | | Machine wide - ARM64 | [PowerToysSetup-0.73.0-arm64.exe][ptMachineArm64] | 4260AA30A1F52F194EE07E9E7ECD9E9F4CF35289267F213BC933F7A5191AC17C | This is our preferred method. ### Via Microsoft Store Install from the [Microsoft Store's PowerToys page][microsoft-store-link]. You must be using the [new Microsoft Store](https://blogs.windows.com/windowsExperience/2021/06/24/building-a-new-open-microsoft-store-on-windows-11/) which is available for both Windows 11 and Windows 10. ### Via WinGet Download PowerToys from [WinGet][winget-link]. Updating PowerToys via winget will respect current PowerToys installation scope. To install PowerToys, run the following command from the command line / PowerShell: #### User scope installer [default] ```powershell winget install Microsoft.PowerToys -s winget ``` #### Machine-wide scope installer ```powershell winget install --scope machine Microsoft.PowerToys -s winget ``` ### Other install methods There are [community driven install methods](./doc/unofficialInstallMethods.md) such as Chocolatey and Scoop. If these are your preferred install solutions, you can find the install instructions there. ## Third-Party Run Plugins There is a collection of [third-party plugins](./doc/thirdPartyRunPlugins.md) created by the community that aren't distributed with PowerToys. ## Contributing This project welcomes contributions of all types. Besides coding features / bug fixes, other ways to assist include spec writing, design, documentation, and finding bugs. We are excited to work with the power user community to build a set of tools for helping you get the most out of Windows. We ask that **before you start work on a feature that you would like to contribute**, please read our [Contributor's Guide](CONTRIBUTING.md). We would be happy to work with you to figure out the best approach, provide guidance and mentorship throughout feature development, and help avoid any wasted or duplicate effort. Most contributions require you to agree to a [Contributor License Agreement (CLA)][oss-CLA] declaring that you grant us the rights to use your contribution and that you have permission to do so. For guidance on developing for PowerToys, please read the [developer docs](/doc/devdocs) for a detailed breakdown. This includes how to setup your computer to compile. ## What's Happening ### PowerToys Roadmap Our [prioritized roadmap][roadmap] of features and utilities that the core team is focusing on. ### 0.73 - August 2023 Update In this release, we focused on releasing new features, stability and improvements. **Highlights** - Keyboard manager now allows Numpad keys to be bound separately from the main keyboard. If using a previous configuration, only the main keyboard (not numpad) keys will be mapped. To restore the previous behavior, manually add separate bindings for numpad keys. - New utility: Crop And Lock allows you to crop a current application into a smaller window or just create a thumbnail. Focus the target window and press the shortcut to start cropping. - FancyZones code improvements and refactor. - Modernized ImageResizer UX. - PowerRename advanced counter functionality. ### General - Added missing CoUninitialize call in elevation logic. Thanks [@sredna](https://github.com/sredna)! - New utility: Crop And Lock. Thanks [@robmikh](https://github.com/robmikh)! and [@kevinguo305](https://github.com/kevinguo305)! - Added new /helped fabric bot command to GitHub repo. Thanks [@Aaron-Junker](https://github.com/Aaron-Junker)! - Fixed crashes caused by invalid settings. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Always On Top - Added border transparency. ### FancyZones - Fixed issue causing canvas zones being drawn only when dragging in the zone area. - Fixed user-defined default layout highlighting issue. - Refactored and improved code quality. - Fixed issue causing the wrong layout to be applied when duplicating a non-selected layout. ### File Locksmith - Icon update. Thanks [@jmaraujouy](https://github.com/jmaraujouy)! ### File Explorer add-ons - Fixed issue causing thumbnail previewers to lock files. - Open URIs from developer files in default browser. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Installer - Fixed PowerToys autorun after installing as SYSTEM user. - Removed CreateScheduledTask custom action to handle task creation only from runner code. ### Image Resizer - Moved from ModernWPF to WpfUI to refresh and modernize UI/UX. Thanks [@niels9001](https://github.com/niels9001)! ### Keyboard Manager - Rephrased labels to enhance clarity. Thanks [@Jay-o-Way](https://github.com/Jay-o-Way)! - Keyboard manager now allows Numpad keys to be bound separately from the main keyboard. If using a previous configuration, only the main keyboard (not numpad) keys will be mapped. To restore the previous behavior, manually add separate bindings for numpad keys. ### Mouse Highlighter - The highlighter is now visible in "Always on Top" windows. - Added settings for automatic activation on startup. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Mouse Pointer Crosshairs - Added settings for automatic activation on startup. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Peek - Show correct file type for shortcuts. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Fixed issue causing the wrong file size to be displayed. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Show 1 byte instead of 1 bytes file size. Thanks [@Deepak-Sangle](https://github.com/Deepak-Sangle)! - Open URIs from developer files in the default browser. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Show a thumbnail and fallback to an icon for unsupported files. Thanks [@pedrolamas](https://github.com/pedrolamas)! ### PowerRename - Updated the OOBE gif. Thanks [@ChaseKnowlden](https://github.com/ChaseKnowlden)! - Localized the renamed parts combo box. - Introduced advanced counter functionality. - Added remember last window size logic and optimized sorting of items. - Enable "Enumerate items" option by default. ### PowerToys Run - Fixed an issue causing original search to be abandoned when cycling through results. - Updated device and bluetooth results for Settings plugin. Thanks [@htcfreek](https://github.com/htcfreek)! - Fixed InvalidOperationException exception thrown. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Add Base64 Decoding function to the Value Generator plugin. Thanks [@LeagueOfPoro](https://github.com/LeagueOfPoro)! - Added a Keep shell open option for Shell plugin. - Added Crop And Lock to PowerToys plugin. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Registry Preview - Updated AppBarButtons to use an explicit AppBarButton.Icon. Thanks [@randyrants](https://github.com/randyrants)! - Fixed crash on clicking Save As button. ### Runner - Removed unneeded RegisterWindowMessage from tray icon logic. Thanks [@sredna](https://github.com/sredna)! - Fixed startup looping issue. - Improved old logs and installers cleanup logic. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Screen Ruler - Use proper resources file. ### Settings - Fixed issue causing problems with modifier keys and ShortcutControl. Thanks [@sh0ckj0ckey](https://github.com/sh0ckj0ckey)! - Fixed crash when clicking "Windows color settings" link. - Added support for launching Settings app directly. - Fixed issue causing DisplayDescription not showing for PowerToys Run PluginAdditionalOption. - Fixed issue causing FileLocksmith 'Show File Locksmith in' setting not showing correct value. - Fixed issue causing Awake on/off toggle in Settings flyout not to work when Settings Awake page is opened. ### Documentation - Added documentation for PowerToys Run third-party plugins. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Fixed broken links in keyboardmanagerui.md. Thanks [@shubhsardana29](https://github.com/shubhsardana29)! - Updated core team in COMMUNITY.md. - Fixed broken links in ui-architecture.md. Thanks [@SamB](https://github.com/SamB)! - Updated community.valuegenerator.md with Base64DecodeRequest description. ### Development - Updated test packages and StyleCop. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Condense NuGet Restore into MSBuild Tasks. Thanks [@snickler](https://github.com/snickler)! #### What is being planned for version 0.74 For [v0.74][github-next-release-work], we'll work on the items below: - Language selection - Modernize and refresh the UX of PowerToys based on WPF - Stability / bug fixes - Peek: UI improvements ## PowerToys Community The PowerToys team is extremely grateful to have the [support of an amazing active community][community-link]. The work you do is incredibly important. PowerToys wouldn’t be nearly what it is today without your help filing bugs, updating documentation, guiding the design, or writing features. We want to say thank you and take time to recognize your work. Month by month, you directly help make PowerToys a better piece of software. ## Code of Conduct This project has adopted the [Microsoft Open Source Code of Conduct][oss-conduct-code]. ## Privacy Statement The application logs basic telemetry. Our Telemetry Data page (Coming Soon) has the trends from the telemetry. Please read the [Microsoft privacy statement][privacy-link] for more information. [oss-CLA]: https://cla.opensource.microsoft.com [oss-conduct-code]: CODE_OF_CONDUCT.md [community-link]: COMMUNITY.md [github-release-link]: https://aka.ms/installPowerToys [microsoft-store-link]: https://aka.ms/getPowertoys [winget-link]: https://github.com/microsoft/winget-cli#installing-the-client [roadmap]: https://github.com/microsoft/PowerToys/wiki/Roadmap [privacy-link]: http://go.microsoft.com/fwlink/?LinkId=521839 [vidConfOverview]: https://aka.ms/PowerToysOverview_VideoConference [loc-bug]: https://github.com/microsoft/PowerToys/issues/new?assignees=&labels=&template=translation_issue.md&title= [usingPowerToys-docs-link]: https://aka.ms/powertoys-docs
# Microsoft PowerToys ![Hero image for Microsoft PowerToys](doc/images/overview/PT_hero_image.png) [How to use PowerToys][usingPowerToys-docs-link] | [Downloads & Release notes][github-release-link] | [Contributing to PowerToys](#contributing) | [What's Happening](#whats-happening) | [Roadmap](#powertoys-roadmap) ## Build status | Architecture | Solution (Main) | Solution (Stable) | Installer (Main) | |--------------|-----------------|-------------------|------------------| | x64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main&jobName=Build%20x64%20Release) | [![Build Status for Stable](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=stable&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_x64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | | ARM64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main) | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_arm64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | ## About Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. For more info on [PowerToys overviews and how to use the utilities][usingPowerToys-docs-link], or any other tools and resources for [Windows development environments](https://learn.microsoft.com/windows/dev-environment/overview), head over to [learn.microsoft.com][usingPowerToys-docs-link]! | | Current utilities: | | |--------------|--------------------|--------------| | [Always on Top](https://aka.ms/PowerToysOverview_AoT) | [PowerToys Awake](https://aka.ms/PowerToysOverview_Awake) | [Color Picker](https://aka.ms/PowerToysOverview_ColorPicker) | | [Crop And Lock](https://aka.ms/PowerToysOverview_CropAndLock) | [FancyZones](https://aka.ms/PowerToysOverview_FancyZones) | [File Explorer Add-ons](https://aka.ms/PowerToysOverview_FileExplorerAddOns) | | [File Locksmith](https://aka.ms/PowerToysOverview_FileLocksmith) | [Hosts File Editor](https://aka.ms/PowerToysOverview_HostsFileEditor) | [Image Resizer](https://aka.ms/PowerToysOverview_ImageResizer) | | [Keyboard Manager](https://aka.ms/PowerToysOverview_KeyboardManager) | [Mouse utilities](https://aka.ms/PowerToysOverview_MouseUtilities) | [Mouse Without Borders](https://aka.ms/PowerToysOverview_MouseWithoutBorders) | | [Peek](https://aka.ms/PowerToysOverview_Peek) | [Paste as Plain Text](https://aka.ms/PowerToysOverview_PastePlain) | [PowerRename](https://aka.ms/PowerToysOverview_PowerRename) | | [PowerToys Run](https://aka.ms/PowerToysOverview_PowerToysRun) | [Quick Accent](https://aka.ms/PowerToysOverview_QuickAccent) | [Registry Preview](https://aka.ms/PowerToysOverview_RegistryPreview) | | [Screen Ruler](https://aka.ms/PowerToysOverview_ScreenRuler) | [Shortcut Guide](https://aka.ms/PowerToysOverview_ShortcutGuide) | [Text Extractor](https://aka.ms/PowerToysOverview_TextExtractor) | | [Video Conference Mute](https://aka.ms/PowerToysOverview_VideoConference) | ## Installing and running Microsoft PowerToys ### Requirements - Windows 11 or Windows 10 version 2004 (code name 20H1 / build number 19041) or newer. - Our installer will install the following items: - [Microsoft Edge WebView2 Runtime](https://go.microsoft.com/fwlink/p/?LinkId=2124703) bootstrapper. This will install the latest version. ### Via GitHub with EXE [Recommended] Go to the [Microsoft PowerToys GitHub releases page][github-release-link] and click on `Assets` at the bottom to show the files available in the release. Please use the appropriate PowerToys installer that matches your machine's architecture and install scope. For most, it is `x64` and per-user. <!-- items that need to be updated release to release --> [github-next-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F48 [github-current-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F47 [ptUserX64]: https://github.com/microsoft/PowerToys/releases/download/v0.74.0/PowerToysUserSetup-0.74.0-x64.exe [ptUserArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.74.0/PowerToysUserSetup-0.74.0-arm64.exe [ptMachineX64]: https://github.com/microsoft/PowerToys/releases/download/v0.74.0/PowerToysSetup-0.74.0-x64.exe [ptMachineArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.74.0/PowerToysSetup-0.74.0-arm64.exe | Description | Filename | sha256 hash | |----------------|----------|-------------| | Per user - x64 | [PowerToysUserSetup-0.74.0-x64.exe][ptUserX64] | 1C4ECE9F11488BAFFAE6B76D2B0504FA18BFFEA11EBC38BCC87F5D86AEA87C7C | | Per user - ARM64 | [PowerToysUserSetup-0.74.0-arm64.exe][ptUserArm64] | 4F3842FAB0839A361A15A06B7720BA8A0FE7F9AF98EA94245C08DEF37678CA4A | | Machine wide - x64 | [PowerToysSetup-0.74.0-x64.exe][ptMachineX64] | 648992E8CEA08F3C63C7CCBD554ADDF500ECBC4560187310BC12E6CB9C2F38E3 | | Machine wide - ARM64 | [PowerToysSetup-0.74.0-arm64.exe][ptMachineArm64] | 2B6D92F1A0EA688C7EE882050AC9B030C8B3A18765163FB6D67E5E694A4D4FE3 | This is our preferred method. ### Via Microsoft Store Install from the [Microsoft Store's PowerToys page][microsoft-store-link]. You must be using the [new Microsoft Store](https://blogs.windows.com/windowsExperience/2021/06/24/building-a-new-open-microsoft-store-on-windows-11/) which is available for both Windows 11 and Windows 10. ### Via WinGet Download PowerToys from [WinGet][winget-link]. Updating PowerToys via winget will respect current PowerToys installation scope. To install PowerToys, run the following command from the command line / PowerShell: #### User scope installer [default] ```powershell winget install Microsoft.PowerToys -s winget ``` #### Machine-wide scope installer ```powershell winget install --scope machine Microsoft.PowerToys -s winget ``` ### Other install methods There are [community driven install methods](./doc/unofficialInstallMethods.md) such as Chocolatey and Scoop. If these are your preferred install solutions, you can find the install instructions there. ## Third-Party Run Plugins There is a collection of [third-party plugins](./doc/thirdPartyRunPlugins.md) created by the community that aren't distributed with PowerToys. ## Contributing This project welcomes contributions of all types. Besides coding features / bug fixes, other ways to assist include spec writing, design, documentation, and finding bugs. We are excited to work with the power user community to build a set of tools for helping you get the most out of Windows. We ask that **before you start work on a feature that you would like to contribute**, please read our [Contributor's Guide](CONTRIBUTING.md). We would be happy to work with you to figure out the best approach, provide guidance and mentorship throughout feature development, and help avoid any wasted or duplicate effort. Most contributions require you to agree to a [Contributor License Agreement (CLA)][oss-CLA] declaring that you grant us the rights to use your contribution and that you have permission to do so. For guidance on developing for PowerToys, please read the [developer docs](/doc/devdocs) for a detailed breakdown. This includes how to setup your computer to compile. ## What's Happening ### PowerToys Roadmap Our [prioritized roadmap][roadmap] of features and utilities that the core team is focusing on. ### 0.74 - September 2023 Update In this release, we focused on stability and improvements. **Highlights** - Upgraded to Windows App SDK 1.4.1, increasing stability of WinUI3 utilities. Thanks [@dongle-the-gadget](https://github.com/dongle-the-gadget) for starting the upgrade! - Text Extractor was upgraded to its version 2.0, with a new overlay, table mode and more Quality of Life improvements. Thanks [@TheJoeFin](https://github.com/TheJoeFin)! - Improved FancyZones stability, fixing some layout resets and improving handling of newly created windows on Windows 11. - Fixed many silent crashes that were reported to Watson and the user's event viewer. ### General - Turning animations off in Windows Settings will now also turn them off in PowerToys. - Upgraded the Windows App SDK dependency to 1.4.1. Thanks [@dongle-the-gadget](https://github.com/dongle-the-gadget) for the original 1.4.0 upgrade! - Show in the thumbnail label and application titles when running as administrator. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Upgraded the Win UI Community Toolkit dependency to 8.0. Thanks [@niels9001](https://github.com/niels9001)! ### Awake - Added down-sampled variants to the application's icon. Thanks [@morriscurtis](https://github.com/morriscurtis)! ### Color Picker - After adding a new color in the editor, the history will scroll the new color into view. Thanks [@peerpalo](https://github.com/peerpalo)! ### Crop and Lock - Fixed a Crop and Lock crash that would occur when trying to reparent a window crashes the target application. An error message is shown instead. ### FancyZones - Set the process and main thread priority to normal. - Fixed handling newly created windows on Windows 11. - Fixed scenarios where opening the FancyZones Editor would reset the layouts. ### File Explorer add-ons - Optimized CPU usage for generating SVG thumbnails. - Improved handling of Gcode Thumbnails, including JPG and QOI formats. Thanks [@pedrolamas](https://github.com/pedrolamas)! - Better handled errors when sending telemetry, which were causing reported crashes. - Fixed some thumbnails not being shown centered like before the optimization. ### File Locksmith - Shows files opened by processes with PID greater than 65535. Thanks [@poke30744](https://github.com/poke30744)! - Fixed a GDI object leak in the context menu which would crash Explorer. ### Find My Mouse - Added new activation methods, including by hotkey. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Hosts File Editor - Ignore the default ACME sample entries in the hosts file. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Improved save error handling and added better error messages. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Corrected a check for an error when signaling the application to start as administrator. - Refactored the context menu. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Fixed dialogs overlapping the title bar after the upgrade to Windows App SDK 1.4. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Keyboard Manager - Distinguish between the regular minus key and the numpad minus key. ### Mouse Without Borders - Fixed a crash when trying to restart the application. ### Peek - Using Peek on HTML files will show a white background by default, similar to a browser's default behavior. - Fix a white flash on Dark theme when switching file and improved the development file preview detection and adjustments. ### PowerRename - Fixed a crash caused by big counter values on the new enumeration method. ### PowerToys Run - It's now possible to select which shell is used by the Shell plugin. - A combobox option type was added to the plugin options. - Fixed a bug in the Calculator plugin that was causing decimal numbers to be misinterpreted on locales where the dot (`.`) character isn't used as a decimal or digit separator. - Improved the Program plugin stability when it fails to load a program's thumbnail at startup. - The use of Pinyin for querying some plugins can now be turned on in Settings. Thanks [@ChaseKnowlden](https://github.com/ChaseKnowlden)! - Refactored option types for plugin and added number, string and composite types to be used in the future. Thanks [@htcfreek](https://github.com/htcfreek)! - Fixed the entry for searching for Windows updates in the Settings plugin. Thanks [@htcfreek](https://github.com/htcfreek)! ### Quick Accent - The "All languages" character set is now calculated by programmatically querying the characters for every available language. Thanks [@dannysummerlin](https://github.com/dannysummerlin)! - Added é to the Norwegian and Swedish languages. Thanks [@Aaron-Junker](https://github.com/Aaron-Junker)! - Added a runtime cache to the "All languages" character set, to only calculate accents once per key. ### Registry Preview - Fixed focusing issues at startup. - Improved the data visualization to show data in a similar way to the Windows Registry Editor. Thanks [@dillydylann](https://github.com/dillydylann)! ### Runner - Fixed hanging when a bug report was generated from the flyout. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Settings - Improved the way the OOBE window reacts to Windows theme change. - Fixed an issue that made it impossible to change the "Switch between windows in the current zone" "Next window" shortcut for FancyZones. - Fixed a crash when entering a duplicate name for a color in the Color Picker page and improved clean up when cancelling a color edit. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Text Extractor - Text Extractor 2.0, with a new overlay, table mode and more Quality of Life improvements. Thanks [@TheJoeFin](https://github.com/TheJoeFin)! ### Documentation - SECURITY.md was updated from 0.0.2 to 0.0.9. Thanks [@Aaron-Junker](https://github.com/Aaron-Junker)! - Improved the README and main development document for clarity and completeness. Thanks [@codeofdusk](https://github.com/codeofdusk) and [@aprilbbrockhoeft](https://github.com/aprilbbrockhoeft)! ### Development - Fixed PowerToys Run DateTime plugin tests that were failing depending on locale, so that they can be run correctly on all dev machines. - Fixed PowerToys Run System plugin tests that were failing for certain network interfaces, so that they can be run correctly on all dev machines. Thanks [@snickler](https://github.com/snickler)! - Fixed a markdown bug on the GitHub /helped command. - Switched build pipelines to a new agent pool. Thanks [@DHowett](https://github.com/DHowett)! - New .cs files created in Visual Studio get the header added automatically. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! #### What is being planned for version 0.75 For [v0.75][github-next-release-work], we'll work on the items below: - Language selection - .NET 8 upgrade - Policy support for managing PowerToys Run plugins. *Attention*: A breaking change is planned (for 0.75), in which each plugin has to declare its identifier programmatically so that it can be controlled through GPO. For third-party plugin developers, please check https://github.com/microsoft/PowerToys/pull/27468 for more details. - New utility: Environment Variables Editor. Here's a Work in Progress preview: ![Environment Variables Editor WIP](https://github.com/microsoft/PowerToys/assets/26118718/f99532a8-5aae-481b-a662-19a95f4aa03d) - New Settings homepage. Here's a Work in Progress preview: ![PowerToys Settings Dashboard WIP](https://github.com/microsoft/PowerToys/assets/26118718/938a5715-0a9b-4fe9-9e15-adfec92da694) - Modernize and refresh the UX of PowerToys based on WPF. Here's Work in Progress previews for the modules "PowerToys Run" and "Color Picker": ![PowerToys Run UI refresh WIP](https://github.com/microsoft/PowerToys/assets/9866362/16903bcb-c18e-49fb-93ca-738b81957055) ![ColorPicker UI refresh WIP](https://github.com/microsoft/PowerToys/assets/9866362/ceebe54b-de63-4ce7-afcb-2cd4280bf4d1) - Stability / bug fixes ## PowerToys Community The PowerToys team is extremely grateful to have the [support of an amazing active community][community-link]. The work you do is incredibly important. PowerToys wouldn’t be nearly what it is today without your help filing bugs, updating documentation, guiding the design, or writing features. We want to say thank you and take time to recognize your work. Month by month, you directly help make PowerToys a better piece of software. ## Code of Conduct This project has adopted the [Microsoft Open Source Code of Conduct][oss-conduct-code]. ## Privacy Statement The application logs basic telemetry. Our Telemetry Data page (Coming Soon) has the trends from the telemetry. Please read the [Microsoft privacy statement][privacy-link] for more information. [oss-CLA]: https://cla.opensource.microsoft.com [oss-conduct-code]: CODE_OF_CONDUCT.md [community-link]: COMMUNITY.md [github-release-link]: https://aka.ms/installPowerToys [microsoft-store-link]: https://aka.ms/getPowertoys [winget-link]: https://github.com/microsoft/winget-cli#installing-the-client [roadmap]: https://github.com/microsoft/PowerToys/wiki/Roadmap [privacy-link]: http://go.microsoft.com/fwlink/?LinkId=521839 [vidConfOverview]: https://aka.ms/PowerToysOverview_VideoConference [loc-bug]: https://github.com/microsoft/PowerToys/issues/new?assignees=&labels=&template=translation_issue.md&title= [usingPowerToys-docs-link]: https://aka.ms/powertoys-docs
jaimecbernardo
a1e0bd51617b2bea189cb16324eecd0e13fa7b86
77063e0767a0619abfc339db3a2a564d27310b6c
That's why they're on the documentation section :)
jaimecbernardo
417
microsoft/PowerToys
28,775
0.74 changelogs
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request Readme update for the 0.74 release. This will be copy / pasted for release notes.
null
2023-09-26 11:20:42+00:00
2023-09-26 21:36:51+00:00
README.md
# Microsoft PowerToys ![Hero image for Microsoft PowerToys](doc/images/overview/PT_hero_image.png) [How to use PowerToys][usingPowerToys-docs-link] | [Downloads & Release notes][github-release-link] | [Contributing to PowerToys](#contributing) | [What's Happening](#whats-happening) | [Roadmap](#powertoys-roadmap) ## Build status | Architecture | Solution (Main) | Solution (Stable) | Installer (Main) | |--------------|-----------------|-------------------|------------------| | x64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main&jobName=Build%20x64%20Release) | [![Build Status for Stable](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=stable&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_x64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | | ARM64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main) | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_arm64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | ## About Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. For more info on [PowerToys overviews and how to use the utilities][usingPowerToys-docs-link], or any other tools and resources for [Windows development environments](https://learn.microsoft.com/windows/dev-environment/overview), head over to [learn.microsoft.com][usingPowerToys-docs-link]! | | Current utilities: | | |--------------|--------------------|--------------| | [Always on Top](https://aka.ms/PowerToysOverview_AoT) | [PowerToys Awake](https://aka.ms/PowerToysOverview_Awake) | [Color Picker](https://aka.ms/PowerToysOverview_ColorPicker) | | [Crop And Lock](https://aka.ms/PowerToysOverview_CropAndLock) | [FancyZones](https://aka.ms/PowerToysOverview_FancyZones) | [File Explorer Add-ons](https://aka.ms/PowerToysOverview_FileExplorerAddOns) | | [File Locksmith](https://aka.ms/PowerToysOverview_FileLocksmith) | [Hosts File Editor](https://aka.ms/PowerToysOverview_HostsFileEditor) | [Image Resizer](https://aka.ms/PowerToysOverview_ImageResizer) | | [Keyboard Manager](https://aka.ms/PowerToysOverview_KeyboardManager) | [Mouse utilities](https://aka.ms/PowerToysOverview_MouseUtilities) | [Mouse Without Borders](https://aka.ms/PowerToysOverview_MouseWithoutBorders) | | [Peek](https://aka.ms/PowerToysOverview_Peek) | [Paste as Plain Text](https://aka.ms/PowerToysOverview_PastePlain) | [PowerRename](https://aka.ms/PowerToysOverview_PowerRename) | | [PowerToys Run](https://aka.ms/PowerToysOverview_PowerToysRun) | [Quick Accent](https://aka.ms/PowerToysOverview_QuickAccent) | [Registry Preview](https://aka.ms/PowerToysOverview_RegistryPreview) | | [Screen Ruler](https://aka.ms/PowerToysOverview_ScreenRuler) | [Shortcut Guide](https://aka.ms/PowerToysOverview_ShortcutGuide) | [Text Extractor](https://aka.ms/PowerToysOverview_TextExtractor) | | [Video Conference Mute](https://aka.ms/PowerToysOverview_VideoConference) | ## Installing and running Microsoft PowerToys ### Requirements - Windows 11 or Windows 10 version 2004 (code name 20H1 / build number 19041) or newer. - Our installer will install the following items: - [Microsoft Edge WebView2 Runtime](https://go.microsoft.com/fwlink/p/?LinkId=2124703) bootstrapper. This will install the latest version. ### Via GitHub with EXE [Recommended] Go to the [Microsoft PowerToys GitHub releases page][github-release-link] and click on `Assets` at the bottom to show the files available in the release. Please use the appropriate PowerToys installer that matches your machine's architecture and install scope. For most, it is `x64` and per-user. <!-- items that need to be updated release to release --> [github-next-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F47 [github-current-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F46 [ptUserX64]: https://github.com/microsoft/PowerToys/releases/download/v0.73.0/PowerToysUserSetup-0.73.0-x64.exe [ptUserArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.73.0/PowerToysUserSetup-0.73.0-arm64.exe [ptMachineX64]: https://github.com/microsoft/PowerToys/releases/download/v0.73.0/PowerToysSetup-0.73.0-x64.exe [ptMachineArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.73.0/PowerToysSetup-0.73.0-arm64.exe | Description | Filename | sha256 hash | |----------------|----------|-------------| | Per user - x64 | [PowerToysUserSetup-0.73.0-x64.exe][ptUserX64] | BA55D245BDD734FD6F19803DD706A3AB8E0ABC491591195534997CF2122D3B7E | | Per user - ARM64 | [PowerToysUserSetup-0.73.0-arm64.exe][ptUserArm64] | FBFA40EA5FFA05236A7CCDD05E5142EE0C93D7485B965784196ED9B086BFEBF4 | | Machine wide - x64 | [PowerToysSetup-0.73.0-x64.exe][ptMachineX64] | 7FDA06292C7C2E6DA5AEF88D8E9D3DE89D331E9E356A232289F9B37CE4503894 | | Machine wide - ARM64 | [PowerToysSetup-0.73.0-arm64.exe][ptMachineArm64] | 4260AA30A1F52F194EE07E9E7ECD9E9F4CF35289267F213BC933F7A5191AC17C | This is our preferred method. ### Via Microsoft Store Install from the [Microsoft Store's PowerToys page][microsoft-store-link]. You must be using the [new Microsoft Store](https://blogs.windows.com/windowsExperience/2021/06/24/building-a-new-open-microsoft-store-on-windows-11/) which is available for both Windows 11 and Windows 10. ### Via WinGet Download PowerToys from [WinGet][winget-link]. Updating PowerToys via winget will respect current PowerToys installation scope. To install PowerToys, run the following command from the command line / PowerShell: #### User scope installer [default] ```powershell winget install Microsoft.PowerToys -s winget ``` #### Machine-wide scope installer ```powershell winget install --scope machine Microsoft.PowerToys -s winget ``` ### Other install methods There are [community driven install methods](./doc/unofficialInstallMethods.md) such as Chocolatey and Scoop. If these are your preferred install solutions, you can find the install instructions there. ## Third-Party Run Plugins There is a collection of [third-party plugins](./doc/thirdPartyRunPlugins.md) created by the community that aren't distributed with PowerToys. ## Contributing This project welcomes contributions of all types. Besides coding features / bug fixes, other ways to assist include spec writing, design, documentation, and finding bugs. We are excited to work with the power user community to build a set of tools for helping you get the most out of Windows. We ask that **before you start work on a feature that you would like to contribute**, please read our [Contributor's Guide](CONTRIBUTING.md). We would be happy to work with you to figure out the best approach, provide guidance and mentorship throughout feature development, and help avoid any wasted or duplicate effort. Most contributions require you to agree to a [Contributor License Agreement (CLA)][oss-CLA] declaring that you grant us the rights to use your contribution and that you have permission to do so. For guidance on developing for PowerToys, please read the [developer docs](/doc/devdocs) for a detailed breakdown. This includes how to setup your computer to compile. ## What's Happening ### PowerToys Roadmap Our [prioritized roadmap][roadmap] of features and utilities that the core team is focusing on. ### 0.73 - August 2023 Update In this release, we focused on releasing new features, stability and improvements. **Highlights** - Keyboard manager now allows Numpad keys to be bound separately from the main keyboard. If using a previous configuration, only the main keyboard (not numpad) keys will be mapped. To restore the previous behavior, manually add separate bindings for numpad keys. - New utility: Crop And Lock allows you to crop a current application into a smaller window or just create a thumbnail. Focus the target window and press the shortcut to start cropping. - FancyZones code improvements and refactor. - Modernized ImageResizer UX. - PowerRename advanced counter functionality. ### General - Added missing CoUninitialize call in elevation logic. Thanks [@sredna](https://github.com/sredna)! - New utility: Crop And Lock. Thanks [@robmikh](https://github.com/robmikh)! and [@kevinguo305](https://github.com/kevinguo305)! - Added new /helped fabric bot command to GitHub repo. Thanks [@Aaron-Junker](https://github.com/Aaron-Junker)! - Fixed crashes caused by invalid settings. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Always On Top - Added border transparency. ### FancyZones - Fixed issue causing canvas zones being drawn only when dragging in the zone area. - Fixed user-defined default layout highlighting issue. - Refactored and improved code quality. - Fixed issue causing the wrong layout to be applied when duplicating a non-selected layout. ### File Locksmith - Icon update. Thanks [@jmaraujouy](https://github.com/jmaraujouy)! ### File Explorer add-ons - Fixed issue causing thumbnail previewers to lock files. - Open URIs from developer files in default browser. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Installer - Fixed PowerToys autorun after installing as SYSTEM user. - Removed CreateScheduledTask custom action to handle task creation only from runner code. ### Image Resizer - Moved from ModernWPF to WpfUI to refresh and modernize UI/UX. Thanks [@niels9001](https://github.com/niels9001)! ### Keyboard Manager - Rephrased labels to enhance clarity. Thanks [@Jay-o-Way](https://github.com/Jay-o-Way)! - Keyboard manager now allows Numpad keys to be bound separately from the main keyboard. If using a previous configuration, only the main keyboard (not numpad) keys will be mapped. To restore the previous behavior, manually add separate bindings for numpad keys. ### Mouse Highlighter - The highlighter is now visible in "Always on Top" windows. - Added settings for automatic activation on startup. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Mouse Pointer Crosshairs - Added settings for automatic activation on startup. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Peek - Show correct file type for shortcuts. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Fixed issue causing the wrong file size to be displayed. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Show 1 byte instead of 1 bytes file size. Thanks [@Deepak-Sangle](https://github.com/Deepak-Sangle)! - Open URIs from developer files in the default browser. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Show a thumbnail and fallback to an icon for unsupported files. Thanks [@pedrolamas](https://github.com/pedrolamas)! ### PowerRename - Updated the OOBE gif. Thanks [@ChaseKnowlden](https://github.com/ChaseKnowlden)! - Localized the renamed parts combo box. - Introduced advanced counter functionality. - Added remember last window size logic and optimized sorting of items. - Enable "Enumerate items" option by default. ### PowerToys Run - Fixed an issue causing original search to be abandoned when cycling through results. - Updated device and bluetooth results for Settings plugin. Thanks [@htcfreek](https://github.com/htcfreek)! - Fixed InvalidOperationException exception thrown. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Add Base64 Decoding function to the Value Generator plugin. Thanks [@LeagueOfPoro](https://github.com/LeagueOfPoro)! - Added a Keep shell open option for Shell plugin. - Added Crop And Lock to PowerToys plugin. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Registry Preview - Updated AppBarButtons to use an explicit AppBarButton.Icon. Thanks [@randyrants](https://github.com/randyrants)! - Fixed crash on clicking Save As button. ### Runner - Removed unneeded RegisterWindowMessage from tray icon logic. Thanks [@sredna](https://github.com/sredna)! - Fixed startup looping issue. - Improved old logs and installers cleanup logic. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Screen Ruler - Use proper resources file. ### Settings - Fixed issue causing problems with modifier keys and ShortcutControl. Thanks [@sh0ckj0ckey](https://github.com/sh0ckj0ckey)! - Fixed crash when clicking "Windows color settings" link. - Added support for launching Settings app directly. - Fixed issue causing DisplayDescription not showing for PowerToys Run PluginAdditionalOption. - Fixed issue causing FileLocksmith 'Show File Locksmith in' setting not showing correct value. - Fixed issue causing Awake on/off toggle in Settings flyout not to work when Settings Awake page is opened. ### Documentation - Added documentation for PowerToys Run third-party plugins. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Fixed broken links in keyboardmanagerui.md. Thanks [@shubhsardana29](https://github.com/shubhsardana29)! - Updated core team in COMMUNITY.md. - Fixed broken links in ui-architecture.md. Thanks [@SamB](https://github.com/SamB)! - Updated community.valuegenerator.md with Base64DecodeRequest description. ### Development - Updated test packages and StyleCop. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Condense NuGet Restore into MSBuild Tasks. Thanks [@snickler](https://github.com/snickler)! #### What is being planned for version 0.74 For [v0.74][github-next-release-work], we'll work on the items below: - Language selection - Modernize and refresh the UX of PowerToys based on WPF - Stability / bug fixes - Peek: UI improvements ## PowerToys Community The PowerToys team is extremely grateful to have the [support of an amazing active community][community-link]. The work you do is incredibly important. PowerToys wouldn’t be nearly what it is today without your help filing bugs, updating documentation, guiding the design, or writing features. We want to say thank you and take time to recognize your work. Month by month, you directly help make PowerToys a better piece of software. ## Code of Conduct This project has adopted the [Microsoft Open Source Code of Conduct][oss-conduct-code]. ## Privacy Statement The application logs basic telemetry. Our Telemetry Data page (Coming Soon) has the trends from the telemetry. Please read the [Microsoft privacy statement][privacy-link] for more information. [oss-CLA]: https://cla.opensource.microsoft.com [oss-conduct-code]: CODE_OF_CONDUCT.md [community-link]: COMMUNITY.md [github-release-link]: https://aka.ms/installPowerToys [microsoft-store-link]: https://aka.ms/getPowertoys [winget-link]: https://github.com/microsoft/winget-cli#installing-the-client [roadmap]: https://github.com/microsoft/PowerToys/wiki/Roadmap [privacy-link]: http://go.microsoft.com/fwlink/?LinkId=521839 [vidConfOverview]: https://aka.ms/PowerToysOverview_VideoConference [loc-bug]: https://github.com/microsoft/PowerToys/issues/new?assignees=&labels=&template=translation_issue.md&title= [usingPowerToys-docs-link]: https://aka.ms/powertoys-docs
# Microsoft PowerToys ![Hero image for Microsoft PowerToys](doc/images/overview/PT_hero_image.png) [How to use PowerToys][usingPowerToys-docs-link] | [Downloads & Release notes][github-release-link] | [Contributing to PowerToys](#contributing) | [What's Happening](#whats-happening) | [Roadmap](#powertoys-roadmap) ## Build status | Architecture | Solution (Main) | Solution (Stable) | Installer (Main) | |--------------|-----------------|-------------------|------------------| | x64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main&jobName=Build%20x64%20Release) | [![Build Status for Stable](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=stable&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_x64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | | ARM64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main) | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_arm64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | ## About Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. For more info on [PowerToys overviews and how to use the utilities][usingPowerToys-docs-link], or any other tools and resources for [Windows development environments](https://learn.microsoft.com/windows/dev-environment/overview), head over to [learn.microsoft.com][usingPowerToys-docs-link]! | | Current utilities: | | |--------------|--------------------|--------------| | [Always on Top](https://aka.ms/PowerToysOverview_AoT) | [PowerToys Awake](https://aka.ms/PowerToysOverview_Awake) | [Color Picker](https://aka.ms/PowerToysOverview_ColorPicker) | | [Crop And Lock](https://aka.ms/PowerToysOverview_CropAndLock) | [FancyZones](https://aka.ms/PowerToysOverview_FancyZones) | [File Explorer Add-ons](https://aka.ms/PowerToysOverview_FileExplorerAddOns) | | [File Locksmith](https://aka.ms/PowerToysOverview_FileLocksmith) | [Hosts File Editor](https://aka.ms/PowerToysOverview_HostsFileEditor) | [Image Resizer](https://aka.ms/PowerToysOverview_ImageResizer) | | [Keyboard Manager](https://aka.ms/PowerToysOverview_KeyboardManager) | [Mouse utilities](https://aka.ms/PowerToysOverview_MouseUtilities) | [Mouse Without Borders](https://aka.ms/PowerToysOverview_MouseWithoutBorders) | | [Peek](https://aka.ms/PowerToysOverview_Peek) | [Paste as Plain Text](https://aka.ms/PowerToysOverview_PastePlain) | [PowerRename](https://aka.ms/PowerToysOverview_PowerRename) | | [PowerToys Run](https://aka.ms/PowerToysOverview_PowerToysRun) | [Quick Accent](https://aka.ms/PowerToysOverview_QuickAccent) | [Registry Preview](https://aka.ms/PowerToysOverview_RegistryPreview) | | [Screen Ruler](https://aka.ms/PowerToysOverview_ScreenRuler) | [Shortcut Guide](https://aka.ms/PowerToysOverview_ShortcutGuide) | [Text Extractor](https://aka.ms/PowerToysOverview_TextExtractor) | | [Video Conference Mute](https://aka.ms/PowerToysOverview_VideoConference) | ## Installing and running Microsoft PowerToys ### Requirements - Windows 11 or Windows 10 version 2004 (code name 20H1 / build number 19041) or newer. - Our installer will install the following items: - [Microsoft Edge WebView2 Runtime](https://go.microsoft.com/fwlink/p/?LinkId=2124703) bootstrapper. This will install the latest version. ### Via GitHub with EXE [Recommended] Go to the [Microsoft PowerToys GitHub releases page][github-release-link] and click on `Assets` at the bottom to show the files available in the release. Please use the appropriate PowerToys installer that matches your machine's architecture and install scope. For most, it is `x64` and per-user. <!-- items that need to be updated release to release --> [github-next-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F48 [github-current-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F47 [ptUserX64]: https://github.com/microsoft/PowerToys/releases/download/v0.74.0/PowerToysUserSetup-0.74.0-x64.exe [ptUserArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.74.0/PowerToysUserSetup-0.74.0-arm64.exe [ptMachineX64]: https://github.com/microsoft/PowerToys/releases/download/v0.74.0/PowerToysSetup-0.74.0-x64.exe [ptMachineArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.74.0/PowerToysSetup-0.74.0-arm64.exe | Description | Filename | sha256 hash | |----------------|----------|-------------| | Per user - x64 | [PowerToysUserSetup-0.74.0-x64.exe][ptUserX64] | 1C4ECE9F11488BAFFAE6B76D2B0504FA18BFFEA11EBC38BCC87F5D86AEA87C7C | | Per user - ARM64 | [PowerToysUserSetup-0.74.0-arm64.exe][ptUserArm64] | 4F3842FAB0839A361A15A06B7720BA8A0FE7F9AF98EA94245C08DEF37678CA4A | | Machine wide - x64 | [PowerToysSetup-0.74.0-x64.exe][ptMachineX64] | 648992E8CEA08F3C63C7CCBD554ADDF500ECBC4560187310BC12E6CB9C2F38E3 | | Machine wide - ARM64 | [PowerToysSetup-0.74.0-arm64.exe][ptMachineArm64] | 2B6D92F1A0EA688C7EE882050AC9B030C8B3A18765163FB6D67E5E694A4D4FE3 | This is our preferred method. ### Via Microsoft Store Install from the [Microsoft Store's PowerToys page][microsoft-store-link]. You must be using the [new Microsoft Store](https://blogs.windows.com/windowsExperience/2021/06/24/building-a-new-open-microsoft-store-on-windows-11/) which is available for both Windows 11 and Windows 10. ### Via WinGet Download PowerToys from [WinGet][winget-link]. Updating PowerToys via winget will respect current PowerToys installation scope. To install PowerToys, run the following command from the command line / PowerShell: #### User scope installer [default] ```powershell winget install Microsoft.PowerToys -s winget ``` #### Machine-wide scope installer ```powershell winget install --scope machine Microsoft.PowerToys -s winget ``` ### Other install methods There are [community driven install methods](./doc/unofficialInstallMethods.md) such as Chocolatey and Scoop. If these are your preferred install solutions, you can find the install instructions there. ## Third-Party Run Plugins There is a collection of [third-party plugins](./doc/thirdPartyRunPlugins.md) created by the community that aren't distributed with PowerToys. ## Contributing This project welcomes contributions of all types. Besides coding features / bug fixes, other ways to assist include spec writing, design, documentation, and finding bugs. We are excited to work with the power user community to build a set of tools for helping you get the most out of Windows. We ask that **before you start work on a feature that you would like to contribute**, please read our [Contributor's Guide](CONTRIBUTING.md). We would be happy to work with you to figure out the best approach, provide guidance and mentorship throughout feature development, and help avoid any wasted or duplicate effort. Most contributions require you to agree to a [Contributor License Agreement (CLA)][oss-CLA] declaring that you grant us the rights to use your contribution and that you have permission to do so. For guidance on developing for PowerToys, please read the [developer docs](/doc/devdocs) for a detailed breakdown. This includes how to setup your computer to compile. ## What's Happening ### PowerToys Roadmap Our [prioritized roadmap][roadmap] of features and utilities that the core team is focusing on. ### 0.74 - September 2023 Update In this release, we focused on stability and improvements. **Highlights** - Upgraded to Windows App SDK 1.4.1, increasing stability of WinUI3 utilities. Thanks [@dongle-the-gadget](https://github.com/dongle-the-gadget) for starting the upgrade! - Text Extractor was upgraded to its version 2.0, with a new overlay, table mode and more Quality of Life improvements. Thanks [@TheJoeFin](https://github.com/TheJoeFin)! - Improved FancyZones stability, fixing some layout resets and improving handling of newly created windows on Windows 11. - Fixed many silent crashes that were reported to Watson and the user's event viewer. ### General - Turning animations off in Windows Settings will now also turn them off in PowerToys. - Upgraded the Windows App SDK dependency to 1.4.1. Thanks [@dongle-the-gadget](https://github.com/dongle-the-gadget) for the original 1.4.0 upgrade! - Show in the thumbnail label and application titles when running as administrator. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Upgraded the Win UI Community Toolkit dependency to 8.0. Thanks [@niels9001](https://github.com/niels9001)! ### Awake - Added down-sampled variants to the application's icon. Thanks [@morriscurtis](https://github.com/morriscurtis)! ### Color Picker - After adding a new color in the editor, the history will scroll the new color into view. Thanks [@peerpalo](https://github.com/peerpalo)! ### Crop and Lock - Fixed a Crop and Lock crash that would occur when trying to reparent a window crashes the target application. An error message is shown instead. ### FancyZones - Set the process and main thread priority to normal. - Fixed handling newly created windows on Windows 11. - Fixed scenarios where opening the FancyZones Editor would reset the layouts. ### File Explorer add-ons - Optimized CPU usage for generating SVG thumbnails. - Improved handling of Gcode Thumbnails, including JPG and QOI formats. Thanks [@pedrolamas](https://github.com/pedrolamas)! - Better handled errors when sending telemetry, which were causing reported crashes. - Fixed some thumbnails not being shown centered like before the optimization. ### File Locksmith - Shows files opened by processes with PID greater than 65535. Thanks [@poke30744](https://github.com/poke30744)! - Fixed a GDI object leak in the context menu which would crash Explorer. ### Find My Mouse - Added new activation methods, including by hotkey. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Hosts File Editor - Ignore the default ACME sample entries in the hosts file. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Improved save error handling and added better error messages. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Corrected a check for an error when signaling the application to start as administrator. - Refactored the context menu. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Fixed dialogs overlapping the title bar after the upgrade to Windows App SDK 1.4. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Keyboard Manager - Distinguish between the regular minus key and the numpad minus key. ### Mouse Without Borders - Fixed a crash when trying to restart the application. ### Peek - Using Peek on HTML files will show a white background by default, similar to a browser's default behavior. - Fix a white flash on Dark theme when switching file and improved the development file preview detection and adjustments. ### PowerRename - Fixed a crash caused by big counter values on the new enumeration method. ### PowerToys Run - It's now possible to select which shell is used by the Shell plugin. - A combobox option type was added to the plugin options. - Fixed a bug in the Calculator plugin that was causing decimal numbers to be misinterpreted on locales where the dot (`.`) character isn't used as a decimal or digit separator. - Improved the Program plugin stability when it fails to load a program's thumbnail at startup. - The use of Pinyin for querying some plugins can now be turned on in Settings. Thanks [@ChaseKnowlden](https://github.com/ChaseKnowlden)! - Refactored option types for plugin and added number, string and composite types to be used in the future. Thanks [@htcfreek](https://github.com/htcfreek)! - Fixed the entry for searching for Windows updates in the Settings plugin. Thanks [@htcfreek](https://github.com/htcfreek)! ### Quick Accent - The "All languages" character set is now calculated by programmatically querying the characters for every available language. Thanks [@dannysummerlin](https://github.com/dannysummerlin)! - Added é to the Norwegian and Swedish languages. Thanks [@Aaron-Junker](https://github.com/Aaron-Junker)! - Added a runtime cache to the "All languages" character set, to only calculate accents once per key. ### Registry Preview - Fixed focusing issues at startup. - Improved the data visualization to show data in a similar way to the Windows Registry Editor. Thanks [@dillydylann](https://github.com/dillydylann)! ### Runner - Fixed hanging when a bug report was generated from the flyout. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Settings - Improved the way the OOBE window reacts to Windows theme change. - Fixed an issue that made it impossible to change the "Switch between windows in the current zone" "Next window" shortcut for FancyZones. - Fixed a crash when entering a duplicate name for a color in the Color Picker page and improved clean up when cancelling a color edit. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Text Extractor - Text Extractor 2.0, with a new overlay, table mode and more Quality of Life improvements. Thanks [@TheJoeFin](https://github.com/TheJoeFin)! ### Documentation - SECURITY.md was updated from 0.0.2 to 0.0.9. Thanks [@Aaron-Junker](https://github.com/Aaron-Junker)! - Improved the README and main development document for clarity and completeness. Thanks [@codeofdusk](https://github.com/codeofdusk) and [@aprilbbrockhoeft](https://github.com/aprilbbrockhoeft)! ### Development - Fixed PowerToys Run DateTime plugin tests that were failing depending on locale, so that they can be run correctly on all dev machines. - Fixed PowerToys Run System plugin tests that were failing for certain network interfaces, so that they can be run correctly on all dev machines. Thanks [@snickler](https://github.com/snickler)! - Fixed a markdown bug on the GitHub /helped command. - Switched build pipelines to a new agent pool. Thanks [@DHowett](https://github.com/DHowett)! - New .cs files created in Visual Studio get the header added automatically. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! #### What is being planned for version 0.75 For [v0.75][github-next-release-work], we'll work on the items below: - Language selection - .NET 8 upgrade - Policy support for managing PowerToys Run plugins. *Attention*: A breaking change is planned (for 0.75), in which each plugin has to declare its identifier programmatically so that it can be controlled through GPO. For third-party plugin developers, please check https://github.com/microsoft/PowerToys/pull/27468 for more details. - New utility: Environment Variables Editor. Here's a Work in Progress preview: ![Environment Variables Editor WIP](https://github.com/microsoft/PowerToys/assets/26118718/f99532a8-5aae-481b-a662-19a95f4aa03d) - New Settings homepage. Here's a Work in Progress preview: ![PowerToys Settings Dashboard WIP](https://github.com/microsoft/PowerToys/assets/26118718/938a5715-0a9b-4fe9-9e15-adfec92da694) - Modernize and refresh the UX of PowerToys based on WPF. Here's Work in Progress previews for the modules "PowerToys Run" and "Color Picker": ![PowerToys Run UI refresh WIP](https://github.com/microsoft/PowerToys/assets/9866362/16903bcb-c18e-49fb-93ca-738b81957055) ![ColorPicker UI refresh WIP](https://github.com/microsoft/PowerToys/assets/9866362/ceebe54b-de63-4ce7-afcb-2cd4280bf4d1) - Stability / bug fixes ## PowerToys Community The PowerToys team is extremely grateful to have the [support of an amazing active community][community-link]. The work you do is incredibly important. PowerToys wouldn’t be nearly what it is today without your help filing bugs, updating documentation, guiding the design, or writing features. We want to say thank you and take time to recognize your work. Month by month, you directly help make PowerToys a better piece of software. ## Code of Conduct This project has adopted the [Microsoft Open Source Code of Conduct][oss-conduct-code]. ## Privacy Statement The application logs basic telemetry. Our Telemetry Data page (Coming Soon) has the trends from the telemetry. Please read the [Microsoft privacy statement][privacy-link] for more information. [oss-CLA]: https://cla.opensource.microsoft.com [oss-conduct-code]: CODE_OF_CONDUCT.md [community-link]: COMMUNITY.md [github-release-link]: https://aka.ms/installPowerToys [microsoft-store-link]: https://aka.ms/getPowertoys [winget-link]: https://github.com/microsoft/winget-cli#installing-the-client [roadmap]: https://github.com/microsoft/PowerToys/wiki/Roadmap [privacy-link]: http://go.microsoft.com/fwlink/?LinkId=521839 [vidConfOverview]: https://aka.ms/PowerToysOverview_VideoConference [loc-bug]: https://github.com/microsoft/PowerToys/issues/new?assignees=&labels=&template=translation_issue.md&title= [usingPowerToys-docs-link]: https://aka.ms/powertoys-docs
jaimecbernardo
a1e0bd51617b2bea189cb16324eecd0e13fa7b86
77063e0767a0619abfc339db3a2a564d27310b6c
And that's why it's under the development section :) While not part of the product, this is an open source project, so changes to documentation and development still matter. They're at the bottom of the changelogs.
jaimecbernardo
418
microsoft/PowerToys
28,775
0.74 changelogs
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request Readme update for the 0.74 release. This will be copy / pasted for release notes.
null
2023-09-26 11:20:42+00:00
2023-09-26 21:36:51+00:00
README.md
# Microsoft PowerToys ![Hero image for Microsoft PowerToys](doc/images/overview/PT_hero_image.png) [How to use PowerToys][usingPowerToys-docs-link] | [Downloads & Release notes][github-release-link] | [Contributing to PowerToys](#contributing) | [What's Happening](#whats-happening) | [Roadmap](#powertoys-roadmap) ## Build status | Architecture | Solution (Main) | Solution (Stable) | Installer (Main) | |--------------|-----------------|-------------------|------------------| | x64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main&jobName=Build%20x64%20Release) | [![Build Status for Stable](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=stable&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_x64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | | ARM64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main) | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_arm64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | ## About Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. For more info on [PowerToys overviews and how to use the utilities][usingPowerToys-docs-link], or any other tools and resources for [Windows development environments](https://learn.microsoft.com/windows/dev-environment/overview), head over to [learn.microsoft.com][usingPowerToys-docs-link]! | | Current utilities: | | |--------------|--------------------|--------------| | [Always on Top](https://aka.ms/PowerToysOverview_AoT) | [PowerToys Awake](https://aka.ms/PowerToysOverview_Awake) | [Color Picker](https://aka.ms/PowerToysOverview_ColorPicker) | | [Crop And Lock](https://aka.ms/PowerToysOverview_CropAndLock) | [FancyZones](https://aka.ms/PowerToysOverview_FancyZones) | [File Explorer Add-ons](https://aka.ms/PowerToysOverview_FileExplorerAddOns) | | [File Locksmith](https://aka.ms/PowerToysOverview_FileLocksmith) | [Hosts File Editor](https://aka.ms/PowerToysOverview_HostsFileEditor) | [Image Resizer](https://aka.ms/PowerToysOverview_ImageResizer) | | [Keyboard Manager](https://aka.ms/PowerToysOverview_KeyboardManager) | [Mouse utilities](https://aka.ms/PowerToysOverview_MouseUtilities) | [Mouse Without Borders](https://aka.ms/PowerToysOverview_MouseWithoutBorders) | | [Peek](https://aka.ms/PowerToysOverview_Peek) | [Paste as Plain Text](https://aka.ms/PowerToysOverview_PastePlain) | [PowerRename](https://aka.ms/PowerToysOverview_PowerRename) | | [PowerToys Run](https://aka.ms/PowerToysOverview_PowerToysRun) | [Quick Accent](https://aka.ms/PowerToysOverview_QuickAccent) | [Registry Preview](https://aka.ms/PowerToysOverview_RegistryPreview) | | [Screen Ruler](https://aka.ms/PowerToysOverview_ScreenRuler) | [Shortcut Guide](https://aka.ms/PowerToysOverview_ShortcutGuide) | [Text Extractor](https://aka.ms/PowerToysOverview_TextExtractor) | | [Video Conference Mute](https://aka.ms/PowerToysOverview_VideoConference) | ## Installing and running Microsoft PowerToys ### Requirements - Windows 11 or Windows 10 version 2004 (code name 20H1 / build number 19041) or newer. - Our installer will install the following items: - [Microsoft Edge WebView2 Runtime](https://go.microsoft.com/fwlink/p/?LinkId=2124703) bootstrapper. This will install the latest version. ### Via GitHub with EXE [Recommended] Go to the [Microsoft PowerToys GitHub releases page][github-release-link] and click on `Assets` at the bottom to show the files available in the release. Please use the appropriate PowerToys installer that matches your machine's architecture and install scope. For most, it is `x64` and per-user. <!-- items that need to be updated release to release --> [github-next-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F47 [github-current-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F46 [ptUserX64]: https://github.com/microsoft/PowerToys/releases/download/v0.73.0/PowerToysUserSetup-0.73.0-x64.exe [ptUserArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.73.0/PowerToysUserSetup-0.73.0-arm64.exe [ptMachineX64]: https://github.com/microsoft/PowerToys/releases/download/v0.73.0/PowerToysSetup-0.73.0-x64.exe [ptMachineArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.73.0/PowerToysSetup-0.73.0-arm64.exe | Description | Filename | sha256 hash | |----------------|----------|-------------| | Per user - x64 | [PowerToysUserSetup-0.73.0-x64.exe][ptUserX64] | BA55D245BDD734FD6F19803DD706A3AB8E0ABC491591195534997CF2122D3B7E | | Per user - ARM64 | [PowerToysUserSetup-0.73.0-arm64.exe][ptUserArm64] | FBFA40EA5FFA05236A7CCDD05E5142EE0C93D7485B965784196ED9B086BFEBF4 | | Machine wide - x64 | [PowerToysSetup-0.73.0-x64.exe][ptMachineX64] | 7FDA06292C7C2E6DA5AEF88D8E9D3DE89D331E9E356A232289F9B37CE4503894 | | Machine wide - ARM64 | [PowerToysSetup-0.73.0-arm64.exe][ptMachineArm64] | 4260AA30A1F52F194EE07E9E7ECD9E9F4CF35289267F213BC933F7A5191AC17C | This is our preferred method. ### Via Microsoft Store Install from the [Microsoft Store's PowerToys page][microsoft-store-link]. You must be using the [new Microsoft Store](https://blogs.windows.com/windowsExperience/2021/06/24/building-a-new-open-microsoft-store-on-windows-11/) which is available for both Windows 11 and Windows 10. ### Via WinGet Download PowerToys from [WinGet][winget-link]. Updating PowerToys via winget will respect current PowerToys installation scope. To install PowerToys, run the following command from the command line / PowerShell: #### User scope installer [default] ```powershell winget install Microsoft.PowerToys -s winget ``` #### Machine-wide scope installer ```powershell winget install --scope machine Microsoft.PowerToys -s winget ``` ### Other install methods There are [community driven install methods](./doc/unofficialInstallMethods.md) such as Chocolatey and Scoop. If these are your preferred install solutions, you can find the install instructions there. ## Third-Party Run Plugins There is a collection of [third-party plugins](./doc/thirdPartyRunPlugins.md) created by the community that aren't distributed with PowerToys. ## Contributing This project welcomes contributions of all types. Besides coding features / bug fixes, other ways to assist include spec writing, design, documentation, and finding bugs. We are excited to work with the power user community to build a set of tools for helping you get the most out of Windows. We ask that **before you start work on a feature that you would like to contribute**, please read our [Contributor's Guide](CONTRIBUTING.md). We would be happy to work with you to figure out the best approach, provide guidance and mentorship throughout feature development, and help avoid any wasted or duplicate effort. Most contributions require you to agree to a [Contributor License Agreement (CLA)][oss-CLA] declaring that you grant us the rights to use your contribution and that you have permission to do so. For guidance on developing for PowerToys, please read the [developer docs](/doc/devdocs) for a detailed breakdown. This includes how to setup your computer to compile. ## What's Happening ### PowerToys Roadmap Our [prioritized roadmap][roadmap] of features and utilities that the core team is focusing on. ### 0.73 - August 2023 Update In this release, we focused on releasing new features, stability and improvements. **Highlights** - Keyboard manager now allows Numpad keys to be bound separately from the main keyboard. If using a previous configuration, only the main keyboard (not numpad) keys will be mapped. To restore the previous behavior, manually add separate bindings for numpad keys. - New utility: Crop And Lock allows you to crop a current application into a smaller window or just create a thumbnail. Focus the target window and press the shortcut to start cropping. - FancyZones code improvements and refactor. - Modernized ImageResizer UX. - PowerRename advanced counter functionality. ### General - Added missing CoUninitialize call in elevation logic. Thanks [@sredna](https://github.com/sredna)! - New utility: Crop And Lock. Thanks [@robmikh](https://github.com/robmikh)! and [@kevinguo305](https://github.com/kevinguo305)! - Added new /helped fabric bot command to GitHub repo. Thanks [@Aaron-Junker](https://github.com/Aaron-Junker)! - Fixed crashes caused by invalid settings. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Always On Top - Added border transparency. ### FancyZones - Fixed issue causing canvas zones being drawn only when dragging in the zone area. - Fixed user-defined default layout highlighting issue. - Refactored and improved code quality. - Fixed issue causing the wrong layout to be applied when duplicating a non-selected layout. ### File Locksmith - Icon update. Thanks [@jmaraujouy](https://github.com/jmaraujouy)! ### File Explorer add-ons - Fixed issue causing thumbnail previewers to lock files. - Open URIs from developer files in default browser. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Installer - Fixed PowerToys autorun after installing as SYSTEM user. - Removed CreateScheduledTask custom action to handle task creation only from runner code. ### Image Resizer - Moved from ModernWPF to WpfUI to refresh and modernize UI/UX. Thanks [@niels9001](https://github.com/niels9001)! ### Keyboard Manager - Rephrased labels to enhance clarity. Thanks [@Jay-o-Way](https://github.com/Jay-o-Way)! - Keyboard manager now allows Numpad keys to be bound separately from the main keyboard. If using a previous configuration, only the main keyboard (not numpad) keys will be mapped. To restore the previous behavior, manually add separate bindings for numpad keys. ### Mouse Highlighter - The highlighter is now visible in "Always on Top" windows. - Added settings for automatic activation on startup. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Mouse Pointer Crosshairs - Added settings for automatic activation on startup. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Peek - Show correct file type for shortcuts. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Fixed issue causing the wrong file size to be displayed. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Show 1 byte instead of 1 bytes file size. Thanks [@Deepak-Sangle](https://github.com/Deepak-Sangle)! - Open URIs from developer files in the default browser. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Show a thumbnail and fallback to an icon for unsupported files. Thanks [@pedrolamas](https://github.com/pedrolamas)! ### PowerRename - Updated the OOBE gif. Thanks [@ChaseKnowlden](https://github.com/ChaseKnowlden)! - Localized the renamed parts combo box. - Introduced advanced counter functionality. - Added remember last window size logic and optimized sorting of items. - Enable "Enumerate items" option by default. ### PowerToys Run - Fixed an issue causing original search to be abandoned when cycling through results. - Updated device and bluetooth results for Settings plugin. Thanks [@htcfreek](https://github.com/htcfreek)! - Fixed InvalidOperationException exception thrown. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Add Base64 Decoding function to the Value Generator plugin. Thanks [@LeagueOfPoro](https://github.com/LeagueOfPoro)! - Added a Keep shell open option for Shell plugin. - Added Crop And Lock to PowerToys plugin. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Registry Preview - Updated AppBarButtons to use an explicit AppBarButton.Icon. Thanks [@randyrants](https://github.com/randyrants)! - Fixed crash on clicking Save As button. ### Runner - Removed unneeded RegisterWindowMessage from tray icon logic. Thanks [@sredna](https://github.com/sredna)! - Fixed startup looping issue. - Improved old logs and installers cleanup logic. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Screen Ruler - Use proper resources file. ### Settings - Fixed issue causing problems with modifier keys and ShortcutControl. Thanks [@sh0ckj0ckey](https://github.com/sh0ckj0ckey)! - Fixed crash when clicking "Windows color settings" link. - Added support for launching Settings app directly. - Fixed issue causing DisplayDescription not showing for PowerToys Run PluginAdditionalOption. - Fixed issue causing FileLocksmith 'Show File Locksmith in' setting not showing correct value. - Fixed issue causing Awake on/off toggle in Settings flyout not to work when Settings Awake page is opened. ### Documentation - Added documentation for PowerToys Run third-party plugins. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Fixed broken links in keyboardmanagerui.md. Thanks [@shubhsardana29](https://github.com/shubhsardana29)! - Updated core team in COMMUNITY.md. - Fixed broken links in ui-architecture.md. Thanks [@SamB](https://github.com/SamB)! - Updated community.valuegenerator.md with Base64DecodeRequest description. ### Development - Updated test packages and StyleCop. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Condense NuGet Restore into MSBuild Tasks. Thanks [@snickler](https://github.com/snickler)! #### What is being planned for version 0.74 For [v0.74][github-next-release-work], we'll work on the items below: - Language selection - Modernize and refresh the UX of PowerToys based on WPF - Stability / bug fixes - Peek: UI improvements ## PowerToys Community The PowerToys team is extremely grateful to have the [support of an amazing active community][community-link]. The work you do is incredibly important. PowerToys wouldn’t be nearly what it is today without your help filing bugs, updating documentation, guiding the design, or writing features. We want to say thank you and take time to recognize your work. Month by month, you directly help make PowerToys a better piece of software. ## Code of Conduct This project has adopted the [Microsoft Open Source Code of Conduct][oss-conduct-code]. ## Privacy Statement The application logs basic telemetry. Our Telemetry Data page (Coming Soon) has the trends from the telemetry. Please read the [Microsoft privacy statement][privacy-link] for more information. [oss-CLA]: https://cla.opensource.microsoft.com [oss-conduct-code]: CODE_OF_CONDUCT.md [community-link]: COMMUNITY.md [github-release-link]: https://aka.ms/installPowerToys [microsoft-store-link]: https://aka.ms/getPowertoys [winget-link]: https://github.com/microsoft/winget-cli#installing-the-client [roadmap]: https://github.com/microsoft/PowerToys/wiki/Roadmap [privacy-link]: http://go.microsoft.com/fwlink/?LinkId=521839 [vidConfOverview]: https://aka.ms/PowerToysOverview_VideoConference [loc-bug]: https://github.com/microsoft/PowerToys/issues/new?assignees=&labels=&template=translation_issue.md&title= [usingPowerToys-docs-link]: https://aka.ms/powertoys-docs
# Microsoft PowerToys ![Hero image for Microsoft PowerToys](doc/images/overview/PT_hero_image.png) [How to use PowerToys][usingPowerToys-docs-link] | [Downloads & Release notes][github-release-link] | [Contributing to PowerToys](#contributing) | [What's Happening](#whats-happening) | [Roadmap](#powertoys-roadmap) ## Build status | Architecture | Solution (Main) | Solution (Stable) | Installer (Main) | |--------------|-----------------|-------------------|------------------| | x64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main&jobName=Build%20x64%20Release) | [![Build Status for Stable](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=stable&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_x64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | | ARM64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main) | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_arm64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | ## About Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. For more info on [PowerToys overviews and how to use the utilities][usingPowerToys-docs-link], or any other tools and resources for [Windows development environments](https://learn.microsoft.com/windows/dev-environment/overview), head over to [learn.microsoft.com][usingPowerToys-docs-link]! | | Current utilities: | | |--------------|--------------------|--------------| | [Always on Top](https://aka.ms/PowerToysOverview_AoT) | [PowerToys Awake](https://aka.ms/PowerToysOverview_Awake) | [Color Picker](https://aka.ms/PowerToysOverview_ColorPicker) | | [Crop And Lock](https://aka.ms/PowerToysOverview_CropAndLock) | [FancyZones](https://aka.ms/PowerToysOverview_FancyZones) | [File Explorer Add-ons](https://aka.ms/PowerToysOverview_FileExplorerAddOns) | | [File Locksmith](https://aka.ms/PowerToysOverview_FileLocksmith) | [Hosts File Editor](https://aka.ms/PowerToysOverview_HostsFileEditor) | [Image Resizer](https://aka.ms/PowerToysOverview_ImageResizer) | | [Keyboard Manager](https://aka.ms/PowerToysOverview_KeyboardManager) | [Mouse utilities](https://aka.ms/PowerToysOverview_MouseUtilities) | [Mouse Without Borders](https://aka.ms/PowerToysOverview_MouseWithoutBorders) | | [Peek](https://aka.ms/PowerToysOverview_Peek) | [Paste as Plain Text](https://aka.ms/PowerToysOverview_PastePlain) | [PowerRename](https://aka.ms/PowerToysOverview_PowerRename) | | [PowerToys Run](https://aka.ms/PowerToysOverview_PowerToysRun) | [Quick Accent](https://aka.ms/PowerToysOverview_QuickAccent) | [Registry Preview](https://aka.ms/PowerToysOverview_RegistryPreview) | | [Screen Ruler](https://aka.ms/PowerToysOverview_ScreenRuler) | [Shortcut Guide](https://aka.ms/PowerToysOverview_ShortcutGuide) | [Text Extractor](https://aka.ms/PowerToysOverview_TextExtractor) | | [Video Conference Mute](https://aka.ms/PowerToysOverview_VideoConference) | ## Installing and running Microsoft PowerToys ### Requirements - Windows 11 or Windows 10 version 2004 (code name 20H1 / build number 19041) or newer. - Our installer will install the following items: - [Microsoft Edge WebView2 Runtime](https://go.microsoft.com/fwlink/p/?LinkId=2124703) bootstrapper. This will install the latest version. ### Via GitHub with EXE [Recommended] Go to the [Microsoft PowerToys GitHub releases page][github-release-link] and click on `Assets` at the bottom to show the files available in the release. Please use the appropriate PowerToys installer that matches your machine's architecture and install scope. For most, it is `x64` and per-user. <!-- items that need to be updated release to release --> [github-next-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F48 [github-current-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F47 [ptUserX64]: https://github.com/microsoft/PowerToys/releases/download/v0.74.0/PowerToysUserSetup-0.74.0-x64.exe [ptUserArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.74.0/PowerToysUserSetup-0.74.0-arm64.exe [ptMachineX64]: https://github.com/microsoft/PowerToys/releases/download/v0.74.0/PowerToysSetup-0.74.0-x64.exe [ptMachineArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.74.0/PowerToysSetup-0.74.0-arm64.exe | Description | Filename | sha256 hash | |----------------|----------|-------------| | Per user - x64 | [PowerToysUserSetup-0.74.0-x64.exe][ptUserX64] | 1C4ECE9F11488BAFFAE6B76D2B0504FA18BFFEA11EBC38BCC87F5D86AEA87C7C | | Per user - ARM64 | [PowerToysUserSetup-0.74.0-arm64.exe][ptUserArm64] | 4F3842FAB0839A361A15A06B7720BA8A0FE7F9AF98EA94245C08DEF37678CA4A | | Machine wide - x64 | [PowerToysSetup-0.74.0-x64.exe][ptMachineX64] | 648992E8CEA08F3C63C7CCBD554ADDF500ECBC4560187310BC12E6CB9C2F38E3 | | Machine wide - ARM64 | [PowerToysSetup-0.74.0-arm64.exe][ptMachineArm64] | 2B6D92F1A0EA688C7EE882050AC9B030C8B3A18765163FB6D67E5E694A4D4FE3 | This is our preferred method. ### Via Microsoft Store Install from the [Microsoft Store's PowerToys page][microsoft-store-link]. You must be using the [new Microsoft Store](https://blogs.windows.com/windowsExperience/2021/06/24/building-a-new-open-microsoft-store-on-windows-11/) which is available for both Windows 11 and Windows 10. ### Via WinGet Download PowerToys from [WinGet][winget-link]. Updating PowerToys via winget will respect current PowerToys installation scope. To install PowerToys, run the following command from the command line / PowerShell: #### User scope installer [default] ```powershell winget install Microsoft.PowerToys -s winget ``` #### Machine-wide scope installer ```powershell winget install --scope machine Microsoft.PowerToys -s winget ``` ### Other install methods There are [community driven install methods](./doc/unofficialInstallMethods.md) such as Chocolatey and Scoop. If these are your preferred install solutions, you can find the install instructions there. ## Third-Party Run Plugins There is a collection of [third-party plugins](./doc/thirdPartyRunPlugins.md) created by the community that aren't distributed with PowerToys. ## Contributing This project welcomes contributions of all types. Besides coding features / bug fixes, other ways to assist include spec writing, design, documentation, and finding bugs. We are excited to work with the power user community to build a set of tools for helping you get the most out of Windows. We ask that **before you start work on a feature that you would like to contribute**, please read our [Contributor's Guide](CONTRIBUTING.md). We would be happy to work with you to figure out the best approach, provide guidance and mentorship throughout feature development, and help avoid any wasted or duplicate effort. Most contributions require you to agree to a [Contributor License Agreement (CLA)][oss-CLA] declaring that you grant us the rights to use your contribution and that you have permission to do so. For guidance on developing for PowerToys, please read the [developer docs](/doc/devdocs) for a detailed breakdown. This includes how to setup your computer to compile. ## What's Happening ### PowerToys Roadmap Our [prioritized roadmap][roadmap] of features and utilities that the core team is focusing on. ### 0.74 - September 2023 Update In this release, we focused on stability and improvements. **Highlights** - Upgraded to Windows App SDK 1.4.1, increasing stability of WinUI3 utilities. Thanks [@dongle-the-gadget](https://github.com/dongle-the-gadget) for starting the upgrade! - Text Extractor was upgraded to its version 2.0, with a new overlay, table mode and more Quality of Life improvements. Thanks [@TheJoeFin](https://github.com/TheJoeFin)! - Improved FancyZones stability, fixing some layout resets and improving handling of newly created windows on Windows 11. - Fixed many silent crashes that were reported to Watson and the user's event viewer. ### General - Turning animations off in Windows Settings will now also turn them off in PowerToys. - Upgraded the Windows App SDK dependency to 1.4.1. Thanks [@dongle-the-gadget](https://github.com/dongle-the-gadget) for the original 1.4.0 upgrade! - Show in the thumbnail label and application titles when running as administrator. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Upgraded the Win UI Community Toolkit dependency to 8.0. Thanks [@niels9001](https://github.com/niels9001)! ### Awake - Added down-sampled variants to the application's icon. Thanks [@morriscurtis](https://github.com/morriscurtis)! ### Color Picker - After adding a new color in the editor, the history will scroll the new color into view. Thanks [@peerpalo](https://github.com/peerpalo)! ### Crop and Lock - Fixed a Crop and Lock crash that would occur when trying to reparent a window crashes the target application. An error message is shown instead. ### FancyZones - Set the process and main thread priority to normal. - Fixed handling newly created windows on Windows 11. - Fixed scenarios where opening the FancyZones Editor would reset the layouts. ### File Explorer add-ons - Optimized CPU usage for generating SVG thumbnails. - Improved handling of Gcode Thumbnails, including JPG and QOI formats. Thanks [@pedrolamas](https://github.com/pedrolamas)! - Better handled errors when sending telemetry, which were causing reported crashes. - Fixed some thumbnails not being shown centered like before the optimization. ### File Locksmith - Shows files opened by processes with PID greater than 65535. Thanks [@poke30744](https://github.com/poke30744)! - Fixed a GDI object leak in the context menu which would crash Explorer. ### Find My Mouse - Added new activation methods, including by hotkey. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Hosts File Editor - Ignore the default ACME sample entries in the hosts file. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Improved save error handling and added better error messages. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Corrected a check for an error when signaling the application to start as administrator. - Refactored the context menu. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Fixed dialogs overlapping the title bar after the upgrade to Windows App SDK 1.4. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Keyboard Manager - Distinguish between the regular minus key and the numpad minus key. ### Mouse Without Borders - Fixed a crash when trying to restart the application. ### Peek - Using Peek on HTML files will show a white background by default, similar to a browser's default behavior. - Fix a white flash on Dark theme when switching file and improved the development file preview detection and adjustments. ### PowerRename - Fixed a crash caused by big counter values on the new enumeration method. ### PowerToys Run - It's now possible to select which shell is used by the Shell plugin. - A combobox option type was added to the plugin options. - Fixed a bug in the Calculator plugin that was causing decimal numbers to be misinterpreted on locales where the dot (`.`) character isn't used as a decimal or digit separator. - Improved the Program plugin stability when it fails to load a program's thumbnail at startup. - The use of Pinyin for querying some plugins can now be turned on in Settings. Thanks [@ChaseKnowlden](https://github.com/ChaseKnowlden)! - Refactored option types for plugin and added number, string and composite types to be used in the future. Thanks [@htcfreek](https://github.com/htcfreek)! - Fixed the entry for searching for Windows updates in the Settings plugin. Thanks [@htcfreek](https://github.com/htcfreek)! ### Quick Accent - The "All languages" character set is now calculated by programmatically querying the characters for every available language. Thanks [@dannysummerlin](https://github.com/dannysummerlin)! - Added é to the Norwegian and Swedish languages. Thanks [@Aaron-Junker](https://github.com/Aaron-Junker)! - Added a runtime cache to the "All languages" character set, to only calculate accents once per key. ### Registry Preview - Fixed focusing issues at startup. - Improved the data visualization to show data in a similar way to the Windows Registry Editor. Thanks [@dillydylann](https://github.com/dillydylann)! ### Runner - Fixed hanging when a bug report was generated from the flyout. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Settings - Improved the way the OOBE window reacts to Windows theme change. - Fixed an issue that made it impossible to change the "Switch between windows in the current zone" "Next window" shortcut for FancyZones. - Fixed a crash when entering a duplicate name for a color in the Color Picker page and improved clean up when cancelling a color edit. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Text Extractor - Text Extractor 2.0, with a new overlay, table mode and more Quality of Life improvements. Thanks [@TheJoeFin](https://github.com/TheJoeFin)! ### Documentation - SECURITY.md was updated from 0.0.2 to 0.0.9. Thanks [@Aaron-Junker](https://github.com/Aaron-Junker)! - Improved the README and main development document for clarity and completeness. Thanks [@codeofdusk](https://github.com/codeofdusk) and [@aprilbbrockhoeft](https://github.com/aprilbbrockhoeft)! ### Development - Fixed PowerToys Run DateTime plugin tests that were failing depending on locale, so that they can be run correctly on all dev machines. - Fixed PowerToys Run System plugin tests that were failing for certain network interfaces, so that they can be run correctly on all dev machines. Thanks [@snickler](https://github.com/snickler)! - Fixed a markdown bug on the GitHub /helped command. - Switched build pipelines to a new agent pool. Thanks [@DHowett](https://github.com/DHowett)! - New .cs files created in Visual Studio get the header added automatically. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! #### What is being planned for version 0.75 For [v0.75][github-next-release-work], we'll work on the items below: - Language selection - .NET 8 upgrade - Policy support for managing PowerToys Run plugins. *Attention*: A breaking change is planned (for 0.75), in which each plugin has to declare its identifier programmatically so that it can be controlled through GPO. For third-party plugin developers, please check https://github.com/microsoft/PowerToys/pull/27468 for more details. - New utility: Environment Variables Editor. Here's a Work in Progress preview: ![Environment Variables Editor WIP](https://github.com/microsoft/PowerToys/assets/26118718/f99532a8-5aae-481b-a662-19a95f4aa03d) - New Settings homepage. Here's a Work in Progress preview: ![PowerToys Settings Dashboard WIP](https://github.com/microsoft/PowerToys/assets/26118718/938a5715-0a9b-4fe9-9e15-adfec92da694) - Modernize and refresh the UX of PowerToys based on WPF. Here's Work in Progress previews for the modules "PowerToys Run" and "Color Picker": ![PowerToys Run UI refresh WIP](https://github.com/microsoft/PowerToys/assets/9866362/16903bcb-c18e-49fb-93ca-738b81957055) ![ColorPicker UI refresh WIP](https://github.com/microsoft/PowerToys/assets/9866362/ceebe54b-de63-4ce7-afcb-2cd4280bf4d1) - Stability / bug fixes ## PowerToys Community The PowerToys team is extremely grateful to have the [support of an amazing active community][community-link]. The work you do is incredibly important. PowerToys wouldn’t be nearly what it is today without your help filing bugs, updating documentation, guiding the design, or writing features. We want to say thank you and take time to recognize your work. Month by month, you directly help make PowerToys a better piece of software. ## Code of Conduct This project has adopted the [Microsoft Open Source Code of Conduct][oss-conduct-code]. ## Privacy Statement The application logs basic telemetry. Our Telemetry Data page (Coming Soon) has the trends from the telemetry. Please read the [Microsoft privacy statement][privacy-link] for more information. [oss-CLA]: https://cla.opensource.microsoft.com [oss-conduct-code]: CODE_OF_CONDUCT.md [community-link]: COMMUNITY.md [github-release-link]: https://aka.ms/installPowerToys [microsoft-store-link]: https://aka.ms/getPowertoys [winget-link]: https://github.com/microsoft/winget-cli#installing-the-client [roadmap]: https://github.com/microsoft/PowerToys/wiki/Roadmap [privacy-link]: http://go.microsoft.com/fwlink/?LinkId=521839 [vidConfOverview]: https://aka.ms/PowerToysOverview_VideoConference [loc-bug]: https://github.com/microsoft/PowerToys/issues/new?assignees=&labels=&template=translation_issue.md&title= [usingPowerToys-docs-link]: https://aka.ms/powertoys-docs
jaimecbernardo
a1e0bd51617b2bea189cb16324eecd0e13fa7b86
77063e0767a0619abfc339db3a2a564d27310b6c
"PowerToys" should be "toys" or "modules" (or something like that) because writing it like this means the whole package.
Jay-o-Way
419
microsoft/PowerToys
28,775
0.74 changelogs
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request Readme update for the 0.74 release. This will be copy / pasted for release notes.
null
2023-09-26 11:20:42+00:00
2023-09-26 21:36:51+00:00
README.md
# Microsoft PowerToys ![Hero image for Microsoft PowerToys](doc/images/overview/PT_hero_image.png) [How to use PowerToys][usingPowerToys-docs-link] | [Downloads & Release notes][github-release-link] | [Contributing to PowerToys](#contributing) | [What's Happening](#whats-happening) | [Roadmap](#powertoys-roadmap) ## Build status | Architecture | Solution (Main) | Solution (Stable) | Installer (Main) | |--------------|-----------------|-------------------|------------------| | x64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main&jobName=Build%20x64%20Release) | [![Build Status for Stable](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=stable&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_x64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | | ARM64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main) | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_arm64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | ## About Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. For more info on [PowerToys overviews and how to use the utilities][usingPowerToys-docs-link], or any other tools and resources for [Windows development environments](https://learn.microsoft.com/windows/dev-environment/overview), head over to [learn.microsoft.com][usingPowerToys-docs-link]! | | Current utilities: | | |--------------|--------------------|--------------| | [Always on Top](https://aka.ms/PowerToysOverview_AoT) | [PowerToys Awake](https://aka.ms/PowerToysOverview_Awake) | [Color Picker](https://aka.ms/PowerToysOverview_ColorPicker) | | [Crop And Lock](https://aka.ms/PowerToysOverview_CropAndLock) | [FancyZones](https://aka.ms/PowerToysOverview_FancyZones) | [File Explorer Add-ons](https://aka.ms/PowerToysOverview_FileExplorerAddOns) | | [File Locksmith](https://aka.ms/PowerToysOverview_FileLocksmith) | [Hosts File Editor](https://aka.ms/PowerToysOverview_HostsFileEditor) | [Image Resizer](https://aka.ms/PowerToysOverview_ImageResizer) | | [Keyboard Manager](https://aka.ms/PowerToysOverview_KeyboardManager) | [Mouse utilities](https://aka.ms/PowerToysOverview_MouseUtilities) | [Mouse Without Borders](https://aka.ms/PowerToysOverview_MouseWithoutBorders) | | [Peek](https://aka.ms/PowerToysOverview_Peek) | [Paste as Plain Text](https://aka.ms/PowerToysOverview_PastePlain) | [PowerRename](https://aka.ms/PowerToysOverview_PowerRename) | | [PowerToys Run](https://aka.ms/PowerToysOverview_PowerToysRun) | [Quick Accent](https://aka.ms/PowerToysOverview_QuickAccent) | [Registry Preview](https://aka.ms/PowerToysOverview_RegistryPreview) | | [Screen Ruler](https://aka.ms/PowerToysOverview_ScreenRuler) | [Shortcut Guide](https://aka.ms/PowerToysOverview_ShortcutGuide) | [Text Extractor](https://aka.ms/PowerToysOverview_TextExtractor) | | [Video Conference Mute](https://aka.ms/PowerToysOverview_VideoConference) | ## Installing and running Microsoft PowerToys ### Requirements - Windows 11 or Windows 10 version 2004 (code name 20H1 / build number 19041) or newer. - Our installer will install the following items: - [Microsoft Edge WebView2 Runtime](https://go.microsoft.com/fwlink/p/?LinkId=2124703) bootstrapper. This will install the latest version. ### Via GitHub with EXE [Recommended] Go to the [Microsoft PowerToys GitHub releases page][github-release-link] and click on `Assets` at the bottom to show the files available in the release. Please use the appropriate PowerToys installer that matches your machine's architecture and install scope. For most, it is `x64` and per-user. <!-- items that need to be updated release to release --> [github-next-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F47 [github-current-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F46 [ptUserX64]: https://github.com/microsoft/PowerToys/releases/download/v0.73.0/PowerToysUserSetup-0.73.0-x64.exe [ptUserArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.73.0/PowerToysUserSetup-0.73.0-arm64.exe [ptMachineX64]: https://github.com/microsoft/PowerToys/releases/download/v0.73.0/PowerToysSetup-0.73.0-x64.exe [ptMachineArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.73.0/PowerToysSetup-0.73.0-arm64.exe | Description | Filename | sha256 hash | |----------------|----------|-------------| | Per user - x64 | [PowerToysUserSetup-0.73.0-x64.exe][ptUserX64] | BA55D245BDD734FD6F19803DD706A3AB8E0ABC491591195534997CF2122D3B7E | | Per user - ARM64 | [PowerToysUserSetup-0.73.0-arm64.exe][ptUserArm64] | FBFA40EA5FFA05236A7CCDD05E5142EE0C93D7485B965784196ED9B086BFEBF4 | | Machine wide - x64 | [PowerToysSetup-0.73.0-x64.exe][ptMachineX64] | 7FDA06292C7C2E6DA5AEF88D8E9D3DE89D331E9E356A232289F9B37CE4503894 | | Machine wide - ARM64 | [PowerToysSetup-0.73.0-arm64.exe][ptMachineArm64] | 4260AA30A1F52F194EE07E9E7ECD9E9F4CF35289267F213BC933F7A5191AC17C | This is our preferred method. ### Via Microsoft Store Install from the [Microsoft Store's PowerToys page][microsoft-store-link]. You must be using the [new Microsoft Store](https://blogs.windows.com/windowsExperience/2021/06/24/building-a-new-open-microsoft-store-on-windows-11/) which is available for both Windows 11 and Windows 10. ### Via WinGet Download PowerToys from [WinGet][winget-link]. Updating PowerToys via winget will respect current PowerToys installation scope. To install PowerToys, run the following command from the command line / PowerShell: #### User scope installer [default] ```powershell winget install Microsoft.PowerToys -s winget ``` #### Machine-wide scope installer ```powershell winget install --scope machine Microsoft.PowerToys -s winget ``` ### Other install methods There are [community driven install methods](./doc/unofficialInstallMethods.md) such as Chocolatey and Scoop. If these are your preferred install solutions, you can find the install instructions there. ## Third-Party Run Plugins There is a collection of [third-party plugins](./doc/thirdPartyRunPlugins.md) created by the community that aren't distributed with PowerToys. ## Contributing This project welcomes contributions of all types. Besides coding features / bug fixes, other ways to assist include spec writing, design, documentation, and finding bugs. We are excited to work with the power user community to build a set of tools for helping you get the most out of Windows. We ask that **before you start work on a feature that you would like to contribute**, please read our [Contributor's Guide](CONTRIBUTING.md). We would be happy to work with you to figure out the best approach, provide guidance and mentorship throughout feature development, and help avoid any wasted or duplicate effort. Most contributions require you to agree to a [Contributor License Agreement (CLA)][oss-CLA] declaring that you grant us the rights to use your contribution and that you have permission to do so. For guidance on developing for PowerToys, please read the [developer docs](/doc/devdocs) for a detailed breakdown. This includes how to setup your computer to compile. ## What's Happening ### PowerToys Roadmap Our [prioritized roadmap][roadmap] of features and utilities that the core team is focusing on. ### 0.73 - August 2023 Update In this release, we focused on releasing new features, stability and improvements. **Highlights** - Keyboard manager now allows Numpad keys to be bound separately from the main keyboard. If using a previous configuration, only the main keyboard (not numpad) keys will be mapped. To restore the previous behavior, manually add separate bindings for numpad keys. - New utility: Crop And Lock allows you to crop a current application into a smaller window or just create a thumbnail. Focus the target window and press the shortcut to start cropping. - FancyZones code improvements and refactor. - Modernized ImageResizer UX. - PowerRename advanced counter functionality. ### General - Added missing CoUninitialize call in elevation logic. Thanks [@sredna](https://github.com/sredna)! - New utility: Crop And Lock. Thanks [@robmikh](https://github.com/robmikh)! and [@kevinguo305](https://github.com/kevinguo305)! - Added new /helped fabric bot command to GitHub repo. Thanks [@Aaron-Junker](https://github.com/Aaron-Junker)! - Fixed crashes caused by invalid settings. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Always On Top - Added border transparency. ### FancyZones - Fixed issue causing canvas zones being drawn only when dragging in the zone area. - Fixed user-defined default layout highlighting issue. - Refactored and improved code quality. - Fixed issue causing the wrong layout to be applied when duplicating a non-selected layout. ### File Locksmith - Icon update. Thanks [@jmaraujouy](https://github.com/jmaraujouy)! ### File Explorer add-ons - Fixed issue causing thumbnail previewers to lock files. - Open URIs from developer files in default browser. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Installer - Fixed PowerToys autorun after installing as SYSTEM user. - Removed CreateScheduledTask custom action to handle task creation only from runner code. ### Image Resizer - Moved from ModernWPF to WpfUI to refresh and modernize UI/UX. Thanks [@niels9001](https://github.com/niels9001)! ### Keyboard Manager - Rephrased labels to enhance clarity. Thanks [@Jay-o-Way](https://github.com/Jay-o-Way)! - Keyboard manager now allows Numpad keys to be bound separately from the main keyboard. If using a previous configuration, only the main keyboard (not numpad) keys will be mapped. To restore the previous behavior, manually add separate bindings for numpad keys. ### Mouse Highlighter - The highlighter is now visible in "Always on Top" windows. - Added settings for automatic activation on startup. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Mouse Pointer Crosshairs - Added settings for automatic activation on startup. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Peek - Show correct file type for shortcuts. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Fixed issue causing the wrong file size to be displayed. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Show 1 byte instead of 1 bytes file size. Thanks [@Deepak-Sangle](https://github.com/Deepak-Sangle)! - Open URIs from developer files in the default browser. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Show a thumbnail and fallback to an icon for unsupported files. Thanks [@pedrolamas](https://github.com/pedrolamas)! ### PowerRename - Updated the OOBE gif. Thanks [@ChaseKnowlden](https://github.com/ChaseKnowlden)! - Localized the renamed parts combo box. - Introduced advanced counter functionality. - Added remember last window size logic and optimized sorting of items. - Enable "Enumerate items" option by default. ### PowerToys Run - Fixed an issue causing original search to be abandoned when cycling through results. - Updated device and bluetooth results for Settings plugin. Thanks [@htcfreek](https://github.com/htcfreek)! - Fixed InvalidOperationException exception thrown. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Add Base64 Decoding function to the Value Generator plugin. Thanks [@LeagueOfPoro](https://github.com/LeagueOfPoro)! - Added a Keep shell open option for Shell plugin. - Added Crop And Lock to PowerToys plugin. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Registry Preview - Updated AppBarButtons to use an explicit AppBarButton.Icon. Thanks [@randyrants](https://github.com/randyrants)! - Fixed crash on clicking Save As button. ### Runner - Removed unneeded RegisterWindowMessage from tray icon logic. Thanks [@sredna](https://github.com/sredna)! - Fixed startup looping issue. - Improved old logs and installers cleanup logic. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Screen Ruler - Use proper resources file. ### Settings - Fixed issue causing problems with modifier keys and ShortcutControl. Thanks [@sh0ckj0ckey](https://github.com/sh0ckj0ckey)! - Fixed crash when clicking "Windows color settings" link. - Added support for launching Settings app directly. - Fixed issue causing DisplayDescription not showing for PowerToys Run PluginAdditionalOption. - Fixed issue causing FileLocksmith 'Show File Locksmith in' setting not showing correct value. - Fixed issue causing Awake on/off toggle in Settings flyout not to work when Settings Awake page is opened. ### Documentation - Added documentation for PowerToys Run third-party plugins. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Fixed broken links in keyboardmanagerui.md. Thanks [@shubhsardana29](https://github.com/shubhsardana29)! - Updated core team in COMMUNITY.md. - Fixed broken links in ui-architecture.md. Thanks [@SamB](https://github.com/SamB)! - Updated community.valuegenerator.md with Base64DecodeRequest description. ### Development - Updated test packages and StyleCop. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Condense NuGet Restore into MSBuild Tasks. Thanks [@snickler](https://github.com/snickler)! #### What is being planned for version 0.74 For [v0.74][github-next-release-work], we'll work on the items below: - Language selection - Modernize and refresh the UX of PowerToys based on WPF - Stability / bug fixes - Peek: UI improvements ## PowerToys Community The PowerToys team is extremely grateful to have the [support of an amazing active community][community-link]. The work you do is incredibly important. PowerToys wouldn’t be nearly what it is today without your help filing bugs, updating documentation, guiding the design, or writing features. We want to say thank you and take time to recognize your work. Month by month, you directly help make PowerToys a better piece of software. ## Code of Conduct This project has adopted the [Microsoft Open Source Code of Conduct][oss-conduct-code]. ## Privacy Statement The application logs basic telemetry. Our Telemetry Data page (Coming Soon) has the trends from the telemetry. Please read the [Microsoft privacy statement][privacy-link] for more information. [oss-CLA]: https://cla.opensource.microsoft.com [oss-conduct-code]: CODE_OF_CONDUCT.md [community-link]: COMMUNITY.md [github-release-link]: https://aka.ms/installPowerToys [microsoft-store-link]: https://aka.ms/getPowertoys [winget-link]: https://github.com/microsoft/winget-cli#installing-the-client [roadmap]: https://github.com/microsoft/PowerToys/wiki/Roadmap [privacy-link]: http://go.microsoft.com/fwlink/?LinkId=521839 [vidConfOverview]: https://aka.ms/PowerToysOverview_VideoConference [loc-bug]: https://github.com/microsoft/PowerToys/issues/new?assignees=&labels=&template=translation_issue.md&title= [usingPowerToys-docs-link]: https://aka.ms/powertoys-docs
# Microsoft PowerToys ![Hero image for Microsoft PowerToys](doc/images/overview/PT_hero_image.png) [How to use PowerToys][usingPowerToys-docs-link] | [Downloads & Release notes][github-release-link] | [Contributing to PowerToys](#contributing) | [What's Happening](#whats-happening) | [Roadmap](#powertoys-roadmap) ## Build status | Architecture | Solution (Main) | Solution (Stable) | Installer (Main) | |--------------|-----------------|-------------------|------------------| | x64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main&jobName=Build%20x64%20Release) | [![Build Status for Stable](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=stable&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_x64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | | ARM64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main) | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_arm64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | ## About Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. For more info on [PowerToys overviews and how to use the utilities][usingPowerToys-docs-link], or any other tools and resources for [Windows development environments](https://learn.microsoft.com/windows/dev-environment/overview), head over to [learn.microsoft.com][usingPowerToys-docs-link]! | | Current utilities: | | |--------------|--------------------|--------------| | [Always on Top](https://aka.ms/PowerToysOverview_AoT) | [PowerToys Awake](https://aka.ms/PowerToysOverview_Awake) | [Color Picker](https://aka.ms/PowerToysOverview_ColorPicker) | | [Crop And Lock](https://aka.ms/PowerToysOverview_CropAndLock) | [FancyZones](https://aka.ms/PowerToysOverview_FancyZones) | [File Explorer Add-ons](https://aka.ms/PowerToysOverview_FileExplorerAddOns) | | [File Locksmith](https://aka.ms/PowerToysOverview_FileLocksmith) | [Hosts File Editor](https://aka.ms/PowerToysOverview_HostsFileEditor) | [Image Resizer](https://aka.ms/PowerToysOverview_ImageResizer) | | [Keyboard Manager](https://aka.ms/PowerToysOverview_KeyboardManager) | [Mouse utilities](https://aka.ms/PowerToysOverview_MouseUtilities) | [Mouse Without Borders](https://aka.ms/PowerToysOverview_MouseWithoutBorders) | | [Peek](https://aka.ms/PowerToysOverview_Peek) | [Paste as Plain Text](https://aka.ms/PowerToysOverview_PastePlain) | [PowerRename](https://aka.ms/PowerToysOverview_PowerRename) | | [PowerToys Run](https://aka.ms/PowerToysOverview_PowerToysRun) | [Quick Accent](https://aka.ms/PowerToysOverview_QuickAccent) | [Registry Preview](https://aka.ms/PowerToysOverview_RegistryPreview) | | [Screen Ruler](https://aka.ms/PowerToysOverview_ScreenRuler) | [Shortcut Guide](https://aka.ms/PowerToysOverview_ShortcutGuide) | [Text Extractor](https://aka.ms/PowerToysOverview_TextExtractor) | | [Video Conference Mute](https://aka.ms/PowerToysOverview_VideoConference) | ## Installing and running Microsoft PowerToys ### Requirements - Windows 11 or Windows 10 version 2004 (code name 20H1 / build number 19041) or newer. - Our installer will install the following items: - [Microsoft Edge WebView2 Runtime](https://go.microsoft.com/fwlink/p/?LinkId=2124703) bootstrapper. This will install the latest version. ### Via GitHub with EXE [Recommended] Go to the [Microsoft PowerToys GitHub releases page][github-release-link] and click on `Assets` at the bottom to show the files available in the release. Please use the appropriate PowerToys installer that matches your machine's architecture and install scope. For most, it is `x64` and per-user. <!-- items that need to be updated release to release --> [github-next-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F48 [github-current-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F47 [ptUserX64]: https://github.com/microsoft/PowerToys/releases/download/v0.74.0/PowerToysUserSetup-0.74.0-x64.exe [ptUserArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.74.0/PowerToysUserSetup-0.74.0-arm64.exe [ptMachineX64]: https://github.com/microsoft/PowerToys/releases/download/v0.74.0/PowerToysSetup-0.74.0-x64.exe [ptMachineArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.74.0/PowerToysSetup-0.74.0-arm64.exe | Description | Filename | sha256 hash | |----------------|----------|-------------| | Per user - x64 | [PowerToysUserSetup-0.74.0-x64.exe][ptUserX64] | 1C4ECE9F11488BAFFAE6B76D2B0504FA18BFFEA11EBC38BCC87F5D86AEA87C7C | | Per user - ARM64 | [PowerToysUserSetup-0.74.0-arm64.exe][ptUserArm64] | 4F3842FAB0839A361A15A06B7720BA8A0FE7F9AF98EA94245C08DEF37678CA4A | | Machine wide - x64 | [PowerToysSetup-0.74.0-x64.exe][ptMachineX64] | 648992E8CEA08F3C63C7CCBD554ADDF500ECBC4560187310BC12E6CB9C2F38E3 | | Machine wide - ARM64 | [PowerToysSetup-0.74.0-arm64.exe][ptMachineArm64] | 2B6D92F1A0EA688C7EE882050AC9B030C8B3A18765163FB6D67E5E694A4D4FE3 | This is our preferred method. ### Via Microsoft Store Install from the [Microsoft Store's PowerToys page][microsoft-store-link]. You must be using the [new Microsoft Store](https://blogs.windows.com/windowsExperience/2021/06/24/building-a-new-open-microsoft-store-on-windows-11/) which is available for both Windows 11 and Windows 10. ### Via WinGet Download PowerToys from [WinGet][winget-link]. Updating PowerToys via winget will respect current PowerToys installation scope. To install PowerToys, run the following command from the command line / PowerShell: #### User scope installer [default] ```powershell winget install Microsoft.PowerToys -s winget ``` #### Machine-wide scope installer ```powershell winget install --scope machine Microsoft.PowerToys -s winget ``` ### Other install methods There are [community driven install methods](./doc/unofficialInstallMethods.md) such as Chocolatey and Scoop. If these are your preferred install solutions, you can find the install instructions there. ## Third-Party Run Plugins There is a collection of [third-party plugins](./doc/thirdPartyRunPlugins.md) created by the community that aren't distributed with PowerToys. ## Contributing This project welcomes contributions of all types. Besides coding features / bug fixes, other ways to assist include spec writing, design, documentation, and finding bugs. We are excited to work with the power user community to build a set of tools for helping you get the most out of Windows. We ask that **before you start work on a feature that you would like to contribute**, please read our [Contributor's Guide](CONTRIBUTING.md). We would be happy to work with you to figure out the best approach, provide guidance and mentorship throughout feature development, and help avoid any wasted or duplicate effort. Most contributions require you to agree to a [Contributor License Agreement (CLA)][oss-CLA] declaring that you grant us the rights to use your contribution and that you have permission to do so. For guidance on developing for PowerToys, please read the [developer docs](/doc/devdocs) for a detailed breakdown. This includes how to setup your computer to compile. ## What's Happening ### PowerToys Roadmap Our [prioritized roadmap][roadmap] of features and utilities that the core team is focusing on. ### 0.74 - September 2023 Update In this release, we focused on stability and improvements. **Highlights** - Upgraded to Windows App SDK 1.4.1, increasing stability of WinUI3 utilities. Thanks [@dongle-the-gadget](https://github.com/dongle-the-gadget) for starting the upgrade! - Text Extractor was upgraded to its version 2.0, with a new overlay, table mode and more Quality of Life improvements. Thanks [@TheJoeFin](https://github.com/TheJoeFin)! - Improved FancyZones stability, fixing some layout resets and improving handling of newly created windows on Windows 11. - Fixed many silent crashes that were reported to Watson and the user's event viewer. ### General - Turning animations off in Windows Settings will now also turn them off in PowerToys. - Upgraded the Windows App SDK dependency to 1.4.1. Thanks [@dongle-the-gadget](https://github.com/dongle-the-gadget) for the original 1.4.0 upgrade! - Show in the thumbnail label and application titles when running as administrator. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Upgraded the Win UI Community Toolkit dependency to 8.0. Thanks [@niels9001](https://github.com/niels9001)! ### Awake - Added down-sampled variants to the application's icon. Thanks [@morriscurtis](https://github.com/morriscurtis)! ### Color Picker - After adding a new color in the editor, the history will scroll the new color into view. Thanks [@peerpalo](https://github.com/peerpalo)! ### Crop and Lock - Fixed a Crop and Lock crash that would occur when trying to reparent a window crashes the target application. An error message is shown instead. ### FancyZones - Set the process and main thread priority to normal. - Fixed handling newly created windows on Windows 11. - Fixed scenarios where opening the FancyZones Editor would reset the layouts. ### File Explorer add-ons - Optimized CPU usage for generating SVG thumbnails. - Improved handling of Gcode Thumbnails, including JPG and QOI formats. Thanks [@pedrolamas](https://github.com/pedrolamas)! - Better handled errors when sending telemetry, which were causing reported crashes. - Fixed some thumbnails not being shown centered like before the optimization. ### File Locksmith - Shows files opened by processes with PID greater than 65535. Thanks [@poke30744](https://github.com/poke30744)! - Fixed a GDI object leak in the context menu which would crash Explorer. ### Find My Mouse - Added new activation methods, including by hotkey. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Hosts File Editor - Ignore the default ACME sample entries in the hosts file. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Improved save error handling and added better error messages. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Corrected a check for an error when signaling the application to start as administrator. - Refactored the context menu. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Fixed dialogs overlapping the title bar after the upgrade to Windows App SDK 1.4. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Keyboard Manager - Distinguish between the regular minus key and the numpad minus key. ### Mouse Without Borders - Fixed a crash when trying to restart the application. ### Peek - Using Peek on HTML files will show a white background by default, similar to a browser's default behavior. - Fix a white flash on Dark theme when switching file and improved the development file preview detection and adjustments. ### PowerRename - Fixed a crash caused by big counter values on the new enumeration method. ### PowerToys Run - It's now possible to select which shell is used by the Shell plugin. - A combobox option type was added to the plugin options. - Fixed a bug in the Calculator plugin that was causing decimal numbers to be misinterpreted on locales where the dot (`.`) character isn't used as a decimal or digit separator. - Improved the Program plugin stability when it fails to load a program's thumbnail at startup. - The use of Pinyin for querying some plugins can now be turned on in Settings. Thanks [@ChaseKnowlden](https://github.com/ChaseKnowlden)! - Refactored option types for plugin and added number, string and composite types to be used in the future. Thanks [@htcfreek](https://github.com/htcfreek)! - Fixed the entry for searching for Windows updates in the Settings plugin. Thanks [@htcfreek](https://github.com/htcfreek)! ### Quick Accent - The "All languages" character set is now calculated by programmatically querying the characters for every available language. Thanks [@dannysummerlin](https://github.com/dannysummerlin)! - Added é to the Norwegian and Swedish languages. Thanks [@Aaron-Junker](https://github.com/Aaron-Junker)! - Added a runtime cache to the "All languages" character set, to only calculate accents once per key. ### Registry Preview - Fixed focusing issues at startup. - Improved the data visualization to show data in a similar way to the Windows Registry Editor. Thanks [@dillydylann](https://github.com/dillydylann)! ### Runner - Fixed hanging when a bug report was generated from the flyout. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Settings - Improved the way the OOBE window reacts to Windows theme change. - Fixed an issue that made it impossible to change the "Switch between windows in the current zone" "Next window" shortcut for FancyZones. - Fixed a crash when entering a duplicate name for a color in the Color Picker page and improved clean up when cancelling a color edit. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Text Extractor - Text Extractor 2.0, with a new overlay, table mode and more Quality of Life improvements. Thanks [@TheJoeFin](https://github.com/TheJoeFin)! ### Documentation - SECURITY.md was updated from 0.0.2 to 0.0.9. Thanks [@Aaron-Junker](https://github.com/Aaron-Junker)! - Improved the README and main development document for clarity and completeness. Thanks [@codeofdusk](https://github.com/codeofdusk) and [@aprilbbrockhoeft](https://github.com/aprilbbrockhoeft)! ### Development - Fixed PowerToys Run DateTime plugin tests that were failing depending on locale, so that they can be run correctly on all dev machines. - Fixed PowerToys Run System plugin tests that were failing for certain network interfaces, so that they can be run correctly on all dev machines. Thanks [@snickler](https://github.com/snickler)! - Fixed a markdown bug on the GitHub /helped command. - Switched build pipelines to a new agent pool. Thanks [@DHowett](https://github.com/DHowett)! - New .cs files created in Visual Studio get the header added automatically. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! #### What is being planned for version 0.75 For [v0.75][github-next-release-work], we'll work on the items below: - Language selection - .NET 8 upgrade - Policy support for managing PowerToys Run plugins. *Attention*: A breaking change is planned (for 0.75), in which each plugin has to declare its identifier programmatically so that it can be controlled through GPO. For third-party plugin developers, please check https://github.com/microsoft/PowerToys/pull/27468 for more details. - New utility: Environment Variables Editor. Here's a Work in Progress preview: ![Environment Variables Editor WIP](https://github.com/microsoft/PowerToys/assets/26118718/f99532a8-5aae-481b-a662-19a95f4aa03d) - New Settings homepage. Here's a Work in Progress preview: ![PowerToys Settings Dashboard WIP](https://github.com/microsoft/PowerToys/assets/26118718/938a5715-0a9b-4fe9-9e15-adfec92da694) - Modernize and refresh the UX of PowerToys based on WPF. Here's Work in Progress previews for the modules "PowerToys Run" and "Color Picker": ![PowerToys Run UI refresh WIP](https://github.com/microsoft/PowerToys/assets/9866362/16903bcb-c18e-49fb-93ca-738b81957055) ![ColorPicker UI refresh WIP](https://github.com/microsoft/PowerToys/assets/9866362/ceebe54b-de63-4ce7-afcb-2cd4280bf4d1) - Stability / bug fixes ## PowerToys Community The PowerToys team is extremely grateful to have the [support of an amazing active community][community-link]. The work you do is incredibly important. PowerToys wouldn’t be nearly what it is today without your help filing bugs, updating documentation, guiding the design, or writing features. We want to say thank you and take time to recognize your work. Month by month, you directly help make PowerToys a better piece of software. ## Code of Conduct This project has adopted the [Microsoft Open Source Code of Conduct][oss-conduct-code]. ## Privacy Statement The application logs basic telemetry. Our Telemetry Data page (Coming Soon) has the trends from the telemetry. Please read the [Microsoft privacy statement][privacy-link] for more information. [oss-CLA]: https://cla.opensource.microsoft.com [oss-conduct-code]: CODE_OF_CONDUCT.md [community-link]: COMMUNITY.md [github-release-link]: https://aka.ms/installPowerToys [microsoft-store-link]: https://aka.ms/getPowertoys [winget-link]: https://github.com/microsoft/winget-cli#installing-the-client [roadmap]: https://github.com/microsoft/PowerToys/wiki/Roadmap [privacy-link]: http://go.microsoft.com/fwlink/?LinkId=521839 [vidConfOverview]: https://aka.ms/PowerToysOverview_VideoConference [loc-bug]: https://github.com/microsoft/PowerToys/issues/new?assignees=&labels=&template=translation_issue.md&title= [usingPowerToys-docs-link]: https://aka.ms/powertoys-docs
jaimecbernardo
a1e0bd51617b2bea189cb16324eecd0e13fa7b86
77063e0767a0619abfc339db3a2a564d27310b6c
@Jay-o-Way , thanks for the suggestion, but "the history will the new color into view" doesn't make much sense.
jaimecbernardo
420
microsoft/PowerToys
28,775
0.74 changelogs
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request Readme update for the 0.74 release. This will be copy / pasted for release notes.
null
2023-09-26 11:20:42+00:00
2023-09-26 21:36:51+00:00
README.md
# Microsoft PowerToys ![Hero image for Microsoft PowerToys](doc/images/overview/PT_hero_image.png) [How to use PowerToys][usingPowerToys-docs-link] | [Downloads & Release notes][github-release-link] | [Contributing to PowerToys](#contributing) | [What's Happening](#whats-happening) | [Roadmap](#powertoys-roadmap) ## Build status | Architecture | Solution (Main) | Solution (Stable) | Installer (Main) | |--------------|-----------------|-------------------|------------------| | x64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main&jobName=Build%20x64%20Release) | [![Build Status for Stable](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=stable&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_x64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | | ARM64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main) | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_arm64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | ## About Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. For more info on [PowerToys overviews and how to use the utilities][usingPowerToys-docs-link], or any other tools and resources for [Windows development environments](https://learn.microsoft.com/windows/dev-environment/overview), head over to [learn.microsoft.com][usingPowerToys-docs-link]! | | Current utilities: | | |--------------|--------------------|--------------| | [Always on Top](https://aka.ms/PowerToysOverview_AoT) | [PowerToys Awake](https://aka.ms/PowerToysOverview_Awake) | [Color Picker](https://aka.ms/PowerToysOverview_ColorPicker) | | [Crop And Lock](https://aka.ms/PowerToysOverview_CropAndLock) | [FancyZones](https://aka.ms/PowerToysOverview_FancyZones) | [File Explorer Add-ons](https://aka.ms/PowerToysOverview_FileExplorerAddOns) | | [File Locksmith](https://aka.ms/PowerToysOverview_FileLocksmith) | [Hosts File Editor](https://aka.ms/PowerToysOverview_HostsFileEditor) | [Image Resizer](https://aka.ms/PowerToysOverview_ImageResizer) | | [Keyboard Manager](https://aka.ms/PowerToysOverview_KeyboardManager) | [Mouse utilities](https://aka.ms/PowerToysOverview_MouseUtilities) | [Mouse Without Borders](https://aka.ms/PowerToysOverview_MouseWithoutBorders) | | [Peek](https://aka.ms/PowerToysOverview_Peek) | [Paste as Plain Text](https://aka.ms/PowerToysOverview_PastePlain) | [PowerRename](https://aka.ms/PowerToysOverview_PowerRename) | | [PowerToys Run](https://aka.ms/PowerToysOverview_PowerToysRun) | [Quick Accent](https://aka.ms/PowerToysOverview_QuickAccent) | [Registry Preview](https://aka.ms/PowerToysOverview_RegistryPreview) | | [Screen Ruler](https://aka.ms/PowerToysOverview_ScreenRuler) | [Shortcut Guide](https://aka.ms/PowerToysOverview_ShortcutGuide) | [Text Extractor](https://aka.ms/PowerToysOverview_TextExtractor) | | [Video Conference Mute](https://aka.ms/PowerToysOverview_VideoConference) | ## Installing and running Microsoft PowerToys ### Requirements - Windows 11 or Windows 10 version 2004 (code name 20H1 / build number 19041) or newer. - Our installer will install the following items: - [Microsoft Edge WebView2 Runtime](https://go.microsoft.com/fwlink/p/?LinkId=2124703) bootstrapper. This will install the latest version. ### Via GitHub with EXE [Recommended] Go to the [Microsoft PowerToys GitHub releases page][github-release-link] and click on `Assets` at the bottom to show the files available in the release. Please use the appropriate PowerToys installer that matches your machine's architecture and install scope. For most, it is `x64` and per-user. <!-- items that need to be updated release to release --> [github-next-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F47 [github-current-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F46 [ptUserX64]: https://github.com/microsoft/PowerToys/releases/download/v0.73.0/PowerToysUserSetup-0.73.0-x64.exe [ptUserArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.73.0/PowerToysUserSetup-0.73.0-arm64.exe [ptMachineX64]: https://github.com/microsoft/PowerToys/releases/download/v0.73.0/PowerToysSetup-0.73.0-x64.exe [ptMachineArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.73.0/PowerToysSetup-0.73.0-arm64.exe | Description | Filename | sha256 hash | |----------------|----------|-------------| | Per user - x64 | [PowerToysUserSetup-0.73.0-x64.exe][ptUserX64] | BA55D245BDD734FD6F19803DD706A3AB8E0ABC491591195534997CF2122D3B7E | | Per user - ARM64 | [PowerToysUserSetup-0.73.0-arm64.exe][ptUserArm64] | FBFA40EA5FFA05236A7CCDD05E5142EE0C93D7485B965784196ED9B086BFEBF4 | | Machine wide - x64 | [PowerToysSetup-0.73.0-x64.exe][ptMachineX64] | 7FDA06292C7C2E6DA5AEF88D8E9D3DE89D331E9E356A232289F9B37CE4503894 | | Machine wide - ARM64 | [PowerToysSetup-0.73.0-arm64.exe][ptMachineArm64] | 4260AA30A1F52F194EE07E9E7ECD9E9F4CF35289267F213BC933F7A5191AC17C | This is our preferred method. ### Via Microsoft Store Install from the [Microsoft Store's PowerToys page][microsoft-store-link]. You must be using the [new Microsoft Store](https://blogs.windows.com/windowsExperience/2021/06/24/building-a-new-open-microsoft-store-on-windows-11/) which is available for both Windows 11 and Windows 10. ### Via WinGet Download PowerToys from [WinGet][winget-link]. Updating PowerToys via winget will respect current PowerToys installation scope. To install PowerToys, run the following command from the command line / PowerShell: #### User scope installer [default] ```powershell winget install Microsoft.PowerToys -s winget ``` #### Machine-wide scope installer ```powershell winget install --scope machine Microsoft.PowerToys -s winget ``` ### Other install methods There are [community driven install methods](./doc/unofficialInstallMethods.md) such as Chocolatey and Scoop. If these are your preferred install solutions, you can find the install instructions there. ## Third-Party Run Plugins There is a collection of [third-party plugins](./doc/thirdPartyRunPlugins.md) created by the community that aren't distributed with PowerToys. ## Contributing This project welcomes contributions of all types. Besides coding features / bug fixes, other ways to assist include spec writing, design, documentation, and finding bugs. We are excited to work with the power user community to build a set of tools for helping you get the most out of Windows. We ask that **before you start work on a feature that you would like to contribute**, please read our [Contributor's Guide](CONTRIBUTING.md). We would be happy to work with you to figure out the best approach, provide guidance and mentorship throughout feature development, and help avoid any wasted or duplicate effort. Most contributions require you to agree to a [Contributor License Agreement (CLA)][oss-CLA] declaring that you grant us the rights to use your contribution and that you have permission to do so. For guidance on developing for PowerToys, please read the [developer docs](/doc/devdocs) for a detailed breakdown. This includes how to setup your computer to compile. ## What's Happening ### PowerToys Roadmap Our [prioritized roadmap][roadmap] of features and utilities that the core team is focusing on. ### 0.73 - August 2023 Update In this release, we focused on releasing new features, stability and improvements. **Highlights** - Keyboard manager now allows Numpad keys to be bound separately from the main keyboard. If using a previous configuration, only the main keyboard (not numpad) keys will be mapped. To restore the previous behavior, manually add separate bindings for numpad keys. - New utility: Crop And Lock allows you to crop a current application into a smaller window or just create a thumbnail. Focus the target window and press the shortcut to start cropping. - FancyZones code improvements and refactor. - Modernized ImageResizer UX. - PowerRename advanced counter functionality. ### General - Added missing CoUninitialize call in elevation logic. Thanks [@sredna](https://github.com/sredna)! - New utility: Crop And Lock. Thanks [@robmikh](https://github.com/robmikh)! and [@kevinguo305](https://github.com/kevinguo305)! - Added new /helped fabric bot command to GitHub repo. Thanks [@Aaron-Junker](https://github.com/Aaron-Junker)! - Fixed crashes caused by invalid settings. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Always On Top - Added border transparency. ### FancyZones - Fixed issue causing canvas zones being drawn only when dragging in the zone area. - Fixed user-defined default layout highlighting issue. - Refactored and improved code quality. - Fixed issue causing the wrong layout to be applied when duplicating a non-selected layout. ### File Locksmith - Icon update. Thanks [@jmaraujouy](https://github.com/jmaraujouy)! ### File Explorer add-ons - Fixed issue causing thumbnail previewers to lock files. - Open URIs from developer files in default browser. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Installer - Fixed PowerToys autorun after installing as SYSTEM user. - Removed CreateScheduledTask custom action to handle task creation only from runner code. ### Image Resizer - Moved from ModernWPF to WpfUI to refresh and modernize UI/UX. Thanks [@niels9001](https://github.com/niels9001)! ### Keyboard Manager - Rephrased labels to enhance clarity. Thanks [@Jay-o-Way](https://github.com/Jay-o-Way)! - Keyboard manager now allows Numpad keys to be bound separately from the main keyboard. If using a previous configuration, only the main keyboard (not numpad) keys will be mapped. To restore the previous behavior, manually add separate bindings for numpad keys. ### Mouse Highlighter - The highlighter is now visible in "Always on Top" windows. - Added settings for automatic activation on startup. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Mouse Pointer Crosshairs - Added settings for automatic activation on startup. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Peek - Show correct file type for shortcuts. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Fixed issue causing the wrong file size to be displayed. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Show 1 byte instead of 1 bytes file size. Thanks [@Deepak-Sangle](https://github.com/Deepak-Sangle)! - Open URIs from developer files in the default browser. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Show a thumbnail and fallback to an icon for unsupported files. Thanks [@pedrolamas](https://github.com/pedrolamas)! ### PowerRename - Updated the OOBE gif. Thanks [@ChaseKnowlden](https://github.com/ChaseKnowlden)! - Localized the renamed parts combo box. - Introduced advanced counter functionality. - Added remember last window size logic and optimized sorting of items. - Enable "Enumerate items" option by default. ### PowerToys Run - Fixed an issue causing original search to be abandoned when cycling through results. - Updated device and bluetooth results for Settings plugin. Thanks [@htcfreek](https://github.com/htcfreek)! - Fixed InvalidOperationException exception thrown. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Add Base64 Decoding function to the Value Generator plugin. Thanks [@LeagueOfPoro](https://github.com/LeagueOfPoro)! - Added a Keep shell open option for Shell plugin. - Added Crop And Lock to PowerToys plugin. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Registry Preview - Updated AppBarButtons to use an explicit AppBarButton.Icon. Thanks [@randyrants](https://github.com/randyrants)! - Fixed crash on clicking Save As button. ### Runner - Removed unneeded RegisterWindowMessage from tray icon logic. Thanks [@sredna](https://github.com/sredna)! - Fixed startup looping issue. - Improved old logs and installers cleanup logic. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Screen Ruler - Use proper resources file. ### Settings - Fixed issue causing problems with modifier keys and ShortcutControl. Thanks [@sh0ckj0ckey](https://github.com/sh0ckj0ckey)! - Fixed crash when clicking "Windows color settings" link. - Added support for launching Settings app directly. - Fixed issue causing DisplayDescription not showing for PowerToys Run PluginAdditionalOption. - Fixed issue causing FileLocksmith 'Show File Locksmith in' setting not showing correct value. - Fixed issue causing Awake on/off toggle in Settings flyout not to work when Settings Awake page is opened. ### Documentation - Added documentation for PowerToys Run third-party plugins. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Fixed broken links in keyboardmanagerui.md. Thanks [@shubhsardana29](https://github.com/shubhsardana29)! - Updated core team in COMMUNITY.md. - Fixed broken links in ui-architecture.md. Thanks [@SamB](https://github.com/SamB)! - Updated community.valuegenerator.md with Base64DecodeRequest description. ### Development - Updated test packages and StyleCop. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Condense NuGet Restore into MSBuild Tasks. Thanks [@snickler](https://github.com/snickler)! #### What is being planned for version 0.74 For [v0.74][github-next-release-work], we'll work on the items below: - Language selection - Modernize and refresh the UX of PowerToys based on WPF - Stability / bug fixes - Peek: UI improvements ## PowerToys Community The PowerToys team is extremely grateful to have the [support of an amazing active community][community-link]. The work you do is incredibly important. PowerToys wouldn’t be nearly what it is today without your help filing bugs, updating documentation, guiding the design, or writing features. We want to say thank you and take time to recognize your work. Month by month, you directly help make PowerToys a better piece of software. ## Code of Conduct This project has adopted the [Microsoft Open Source Code of Conduct][oss-conduct-code]. ## Privacy Statement The application logs basic telemetry. Our Telemetry Data page (Coming Soon) has the trends from the telemetry. Please read the [Microsoft privacy statement][privacy-link] for more information. [oss-CLA]: https://cla.opensource.microsoft.com [oss-conduct-code]: CODE_OF_CONDUCT.md [community-link]: COMMUNITY.md [github-release-link]: https://aka.ms/installPowerToys [microsoft-store-link]: https://aka.ms/getPowertoys [winget-link]: https://github.com/microsoft/winget-cli#installing-the-client [roadmap]: https://github.com/microsoft/PowerToys/wiki/Roadmap [privacy-link]: http://go.microsoft.com/fwlink/?LinkId=521839 [vidConfOverview]: https://aka.ms/PowerToysOverview_VideoConference [loc-bug]: https://github.com/microsoft/PowerToys/issues/new?assignees=&labels=&template=translation_issue.md&title= [usingPowerToys-docs-link]: https://aka.ms/powertoys-docs
# Microsoft PowerToys ![Hero image for Microsoft PowerToys](doc/images/overview/PT_hero_image.png) [How to use PowerToys][usingPowerToys-docs-link] | [Downloads & Release notes][github-release-link] | [Contributing to PowerToys](#contributing) | [What's Happening](#whats-happening) | [Roadmap](#powertoys-roadmap) ## Build status | Architecture | Solution (Main) | Solution (Stable) | Installer (Main) | |--------------|-----------------|-------------------|------------------| | x64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main&jobName=Build%20x64%20Release) | [![Build Status for Stable](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=stable&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_x64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | | ARM64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main) | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_arm64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | ## About Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. For more info on [PowerToys overviews and how to use the utilities][usingPowerToys-docs-link], or any other tools and resources for [Windows development environments](https://learn.microsoft.com/windows/dev-environment/overview), head over to [learn.microsoft.com][usingPowerToys-docs-link]! | | Current utilities: | | |--------------|--------------------|--------------| | [Always on Top](https://aka.ms/PowerToysOverview_AoT) | [PowerToys Awake](https://aka.ms/PowerToysOverview_Awake) | [Color Picker](https://aka.ms/PowerToysOverview_ColorPicker) | | [Crop And Lock](https://aka.ms/PowerToysOverview_CropAndLock) | [FancyZones](https://aka.ms/PowerToysOverview_FancyZones) | [File Explorer Add-ons](https://aka.ms/PowerToysOverview_FileExplorerAddOns) | | [File Locksmith](https://aka.ms/PowerToysOverview_FileLocksmith) | [Hosts File Editor](https://aka.ms/PowerToysOverview_HostsFileEditor) | [Image Resizer](https://aka.ms/PowerToysOverview_ImageResizer) | | [Keyboard Manager](https://aka.ms/PowerToysOverview_KeyboardManager) | [Mouse utilities](https://aka.ms/PowerToysOverview_MouseUtilities) | [Mouse Without Borders](https://aka.ms/PowerToysOverview_MouseWithoutBorders) | | [Peek](https://aka.ms/PowerToysOverview_Peek) | [Paste as Plain Text](https://aka.ms/PowerToysOverview_PastePlain) | [PowerRename](https://aka.ms/PowerToysOverview_PowerRename) | | [PowerToys Run](https://aka.ms/PowerToysOverview_PowerToysRun) | [Quick Accent](https://aka.ms/PowerToysOverview_QuickAccent) | [Registry Preview](https://aka.ms/PowerToysOverview_RegistryPreview) | | [Screen Ruler](https://aka.ms/PowerToysOverview_ScreenRuler) | [Shortcut Guide](https://aka.ms/PowerToysOverview_ShortcutGuide) | [Text Extractor](https://aka.ms/PowerToysOverview_TextExtractor) | | [Video Conference Mute](https://aka.ms/PowerToysOverview_VideoConference) | ## Installing and running Microsoft PowerToys ### Requirements - Windows 11 or Windows 10 version 2004 (code name 20H1 / build number 19041) or newer. - Our installer will install the following items: - [Microsoft Edge WebView2 Runtime](https://go.microsoft.com/fwlink/p/?LinkId=2124703) bootstrapper. This will install the latest version. ### Via GitHub with EXE [Recommended] Go to the [Microsoft PowerToys GitHub releases page][github-release-link] and click on `Assets` at the bottom to show the files available in the release. Please use the appropriate PowerToys installer that matches your machine's architecture and install scope. For most, it is `x64` and per-user. <!-- items that need to be updated release to release --> [github-next-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F48 [github-current-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F47 [ptUserX64]: https://github.com/microsoft/PowerToys/releases/download/v0.74.0/PowerToysUserSetup-0.74.0-x64.exe [ptUserArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.74.0/PowerToysUserSetup-0.74.0-arm64.exe [ptMachineX64]: https://github.com/microsoft/PowerToys/releases/download/v0.74.0/PowerToysSetup-0.74.0-x64.exe [ptMachineArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.74.0/PowerToysSetup-0.74.0-arm64.exe | Description | Filename | sha256 hash | |----------------|----------|-------------| | Per user - x64 | [PowerToysUserSetup-0.74.0-x64.exe][ptUserX64] | 1C4ECE9F11488BAFFAE6B76D2B0504FA18BFFEA11EBC38BCC87F5D86AEA87C7C | | Per user - ARM64 | [PowerToysUserSetup-0.74.0-arm64.exe][ptUserArm64] | 4F3842FAB0839A361A15A06B7720BA8A0FE7F9AF98EA94245C08DEF37678CA4A | | Machine wide - x64 | [PowerToysSetup-0.74.0-x64.exe][ptMachineX64] | 648992E8CEA08F3C63C7CCBD554ADDF500ECBC4560187310BC12E6CB9C2F38E3 | | Machine wide - ARM64 | [PowerToysSetup-0.74.0-arm64.exe][ptMachineArm64] | 2B6D92F1A0EA688C7EE882050AC9B030C8B3A18765163FB6D67E5E694A4D4FE3 | This is our preferred method. ### Via Microsoft Store Install from the [Microsoft Store's PowerToys page][microsoft-store-link]. You must be using the [new Microsoft Store](https://blogs.windows.com/windowsExperience/2021/06/24/building-a-new-open-microsoft-store-on-windows-11/) which is available for both Windows 11 and Windows 10. ### Via WinGet Download PowerToys from [WinGet][winget-link]. Updating PowerToys via winget will respect current PowerToys installation scope. To install PowerToys, run the following command from the command line / PowerShell: #### User scope installer [default] ```powershell winget install Microsoft.PowerToys -s winget ``` #### Machine-wide scope installer ```powershell winget install --scope machine Microsoft.PowerToys -s winget ``` ### Other install methods There are [community driven install methods](./doc/unofficialInstallMethods.md) such as Chocolatey and Scoop. If these are your preferred install solutions, you can find the install instructions there. ## Third-Party Run Plugins There is a collection of [third-party plugins](./doc/thirdPartyRunPlugins.md) created by the community that aren't distributed with PowerToys. ## Contributing This project welcomes contributions of all types. Besides coding features / bug fixes, other ways to assist include spec writing, design, documentation, and finding bugs. We are excited to work with the power user community to build a set of tools for helping you get the most out of Windows. We ask that **before you start work on a feature that you would like to contribute**, please read our [Contributor's Guide](CONTRIBUTING.md). We would be happy to work with you to figure out the best approach, provide guidance and mentorship throughout feature development, and help avoid any wasted or duplicate effort. Most contributions require you to agree to a [Contributor License Agreement (CLA)][oss-CLA] declaring that you grant us the rights to use your contribution and that you have permission to do so. For guidance on developing for PowerToys, please read the [developer docs](/doc/devdocs) for a detailed breakdown. This includes how to setup your computer to compile. ## What's Happening ### PowerToys Roadmap Our [prioritized roadmap][roadmap] of features and utilities that the core team is focusing on. ### 0.74 - September 2023 Update In this release, we focused on stability and improvements. **Highlights** - Upgraded to Windows App SDK 1.4.1, increasing stability of WinUI3 utilities. Thanks [@dongle-the-gadget](https://github.com/dongle-the-gadget) for starting the upgrade! - Text Extractor was upgraded to its version 2.0, with a new overlay, table mode and more Quality of Life improvements. Thanks [@TheJoeFin](https://github.com/TheJoeFin)! - Improved FancyZones stability, fixing some layout resets and improving handling of newly created windows on Windows 11. - Fixed many silent crashes that were reported to Watson and the user's event viewer. ### General - Turning animations off in Windows Settings will now also turn them off in PowerToys. - Upgraded the Windows App SDK dependency to 1.4.1. Thanks [@dongle-the-gadget](https://github.com/dongle-the-gadget) for the original 1.4.0 upgrade! - Show in the thumbnail label and application titles when running as administrator. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Upgraded the Win UI Community Toolkit dependency to 8.0. Thanks [@niels9001](https://github.com/niels9001)! ### Awake - Added down-sampled variants to the application's icon. Thanks [@morriscurtis](https://github.com/morriscurtis)! ### Color Picker - After adding a new color in the editor, the history will scroll the new color into view. Thanks [@peerpalo](https://github.com/peerpalo)! ### Crop and Lock - Fixed a Crop and Lock crash that would occur when trying to reparent a window crashes the target application. An error message is shown instead. ### FancyZones - Set the process and main thread priority to normal. - Fixed handling newly created windows on Windows 11. - Fixed scenarios where opening the FancyZones Editor would reset the layouts. ### File Explorer add-ons - Optimized CPU usage for generating SVG thumbnails. - Improved handling of Gcode Thumbnails, including JPG and QOI formats. Thanks [@pedrolamas](https://github.com/pedrolamas)! - Better handled errors when sending telemetry, which were causing reported crashes. - Fixed some thumbnails not being shown centered like before the optimization. ### File Locksmith - Shows files opened by processes with PID greater than 65535. Thanks [@poke30744](https://github.com/poke30744)! - Fixed a GDI object leak in the context menu which would crash Explorer. ### Find My Mouse - Added new activation methods, including by hotkey. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Hosts File Editor - Ignore the default ACME sample entries in the hosts file. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Improved save error handling and added better error messages. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Corrected a check for an error when signaling the application to start as administrator. - Refactored the context menu. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Fixed dialogs overlapping the title bar after the upgrade to Windows App SDK 1.4. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Keyboard Manager - Distinguish between the regular minus key and the numpad minus key. ### Mouse Without Borders - Fixed a crash when trying to restart the application. ### Peek - Using Peek on HTML files will show a white background by default, similar to a browser's default behavior. - Fix a white flash on Dark theme when switching file and improved the development file preview detection and adjustments. ### PowerRename - Fixed a crash caused by big counter values on the new enumeration method. ### PowerToys Run - It's now possible to select which shell is used by the Shell plugin. - A combobox option type was added to the plugin options. - Fixed a bug in the Calculator plugin that was causing decimal numbers to be misinterpreted on locales where the dot (`.`) character isn't used as a decimal or digit separator. - Improved the Program plugin stability when it fails to load a program's thumbnail at startup. - The use of Pinyin for querying some plugins can now be turned on in Settings. Thanks [@ChaseKnowlden](https://github.com/ChaseKnowlden)! - Refactored option types for plugin and added number, string and composite types to be used in the future. Thanks [@htcfreek](https://github.com/htcfreek)! - Fixed the entry for searching for Windows updates in the Settings plugin. Thanks [@htcfreek](https://github.com/htcfreek)! ### Quick Accent - The "All languages" character set is now calculated by programmatically querying the characters for every available language. Thanks [@dannysummerlin](https://github.com/dannysummerlin)! - Added é to the Norwegian and Swedish languages. Thanks [@Aaron-Junker](https://github.com/Aaron-Junker)! - Added a runtime cache to the "All languages" character set, to only calculate accents once per key. ### Registry Preview - Fixed focusing issues at startup. - Improved the data visualization to show data in a similar way to the Windows Registry Editor. Thanks [@dillydylann](https://github.com/dillydylann)! ### Runner - Fixed hanging when a bug report was generated from the flyout. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Settings - Improved the way the OOBE window reacts to Windows theme change. - Fixed an issue that made it impossible to change the "Switch between windows in the current zone" "Next window" shortcut for FancyZones. - Fixed a crash when entering a duplicate name for a color in the Color Picker page and improved clean up when cancelling a color edit. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Text Extractor - Text Extractor 2.0, with a new overlay, table mode and more Quality of Life improvements. Thanks [@TheJoeFin](https://github.com/TheJoeFin)! ### Documentation - SECURITY.md was updated from 0.0.2 to 0.0.9. Thanks [@Aaron-Junker](https://github.com/Aaron-Junker)! - Improved the README and main development document for clarity and completeness. Thanks [@codeofdusk](https://github.com/codeofdusk) and [@aprilbbrockhoeft](https://github.com/aprilbbrockhoeft)! ### Development - Fixed PowerToys Run DateTime plugin tests that were failing depending on locale, so that they can be run correctly on all dev machines. - Fixed PowerToys Run System plugin tests that were failing for certain network interfaces, so that they can be run correctly on all dev machines. Thanks [@snickler](https://github.com/snickler)! - Fixed a markdown bug on the GitHub /helped command. - Switched build pipelines to a new agent pool. Thanks [@DHowett](https://github.com/DHowett)! - New .cs files created in Visual Studio get the header added automatically. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! #### What is being planned for version 0.75 For [v0.75][github-next-release-work], we'll work on the items below: - Language selection - .NET 8 upgrade - Policy support for managing PowerToys Run plugins. *Attention*: A breaking change is planned (for 0.75), in which each plugin has to declare its identifier programmatically so that it can be controlled through GPO. For third-party plugin developers, please check https://github.com/microsoft/PowerToys/pull/27468 for more details. - New utility: Environment Variables Editor. Here's a Work in Progress preview: ![Environment Variables Editor WIP](https://github.com/microsoft/PowerToys/assets/26118718/f99532a8-5aae-481b-a662-19a95f4aa03d) - New Settings homepage. Here's a Work in Progress preview: ![PowerToys Settings Dashboard WIP](https://github.com/microsoft/PowerToys/assets/26118718/938a5715-0a9b-4fe9-9e15-adfec92da694) - Modernize and refresh the UX of PowerToys based on WPF. Here's Work in Progress previews for the modules "PowerToys Run" and "Color Picker": ![PowerToys Run UI refresh WIP](https://github.com/microsoft/PowerToys/assets/9866362/16903bcb-c18e-49fb-93ca-738b81957055) ![ColorPicker UI refresh WIP](https://github.com/microsoft/PowerToys/assets/9866362/ceebe54b-de63-4ce7-afcb-2cd4280bf4d1) - Stability / bug fixes ## PowerToys Community The PowerToys team is extremely grateful to have the [support of an amazing active community][community-link]. The work you do is incredibly important. PowerToys wouldn’t be nearly what it is today without your help filing bugs, updating documentation, guiding the design, or writing features. We want to say thank you and take time to recognize your work. Month by month, you directly help make PowerToys a better piece of software. ## Code of Conduct This project has adopted the [Microsoft Open Source Code of Conduct][oss-conduct-code]. ## Privacy Statement The application logs basic telemetry. Our Telemetry Data page (Coming Soon) has the trends from the telemetry. Please read the [Microsoft privacy statement][privacy-link] for more information. [oss-CLA]: https://cla.opensource.microsoft.com [oss-conduct-code]: CODE_OF_CONDUCT.md [community-link]: COMMUNITY.md [github-release-link]: https://aka.ms/installPowerToys [microsoft-store-link]: https://aka.ms/getPowertoys [winget-link]: https://github.com/microsoft/winget-cli#installing-the-client [roadmap]: https://github.com/microsoft/PowerToys/wiki/Roadmap [privacy-link]: http://go.microsoft.com/fwlink/?LinkId=521839 [vidConfOverview]: https://aka.ms/PowerToysOverview_VideoConference [loc-bug]: https://github.com/microsoft/PowerToys/issues/new?assignees=&labels=&template=translation_issue.md&title= [usingPowerToys-docs-link]: https://aka.ms/powertoys-docs
jaimecbernardo
a1e0bd51617b2bea189cb16324eecd0e13fa7b86
77063e0767a0619abfc339db3a2a564d27310b6c
"PowerToys Run" is the name of the utility we are talking about here.
jaimecbernardo
421
microsoft/PowerToys
28,775
0.74 changelogs
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request Readme update for the 0.74 release. This will be copy / pasted for release notes.
null
2023-09-26 11:20:42+00:00
2023-09-26 21:36:51+00:00
README.md
# Microsoft PowerToys ![Hero image for Microsoft PowerToys](doc/images/overview/PT_hero_image.png) [How to use PowerToys][usingPowerToys-docs-link] | [Downloads & Release notes][github-release-link] | [Contributing to PowerToys](#contributing) | [What's Happening](#whats-happening) | [Roadmap](#powertoys-roadmap) ## Build status | Architecture | Solution (Main) | Solution (Stable) | Installer (Main) | |--------------|-----------------|-------------------|------------------| | x64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main&jobName=Build%20x64%20Release) | [![Build Status for Stable](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=stable&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_x64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | | ARM64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main) | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_arm64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | ## About Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. For more info on [PowerToys overviews and how to use the utilities][usingPowerToys-docs-link], or any other tools and resources for [Windows development environments](https://learn.microsoft.com/windows/dev-environment/overview), head over to [learn.microsoft.com][usingPowerToys-docs-link]! | | Current utilities: | | |--------------|--------------------|--------------| | [Always on Top](https://aka.ms/PowerToysOverview_AoT) | [PowerToys Awake](https://aka.ms/PowerToysOverview_Awake) | [Color Picker](https://aka.ms/PowerToysOverview_ColorPicker) | | [Crop And Lock](https://aka.ms/PowerToysOverview_CropAndLock) | [FancyZones](https://aka.ms/PowerToysOverview_FancyZones) | [File Explorer Add-ons](https://aka.ms/PowerToysOverview_FileExplorerAddOns) | | [File Locksmith](https://aka.ms/PowerToysOverview_FileLocksmith) | [Hosts File Editor](https://aka.ms/PowerToysOverview_HostsFileEditor) | [Image Resizer](https://aka.ms/PowerToysOverview_ImageResizer) | | [Keyboard Manager](https://aka.ms/PowerToysOverview_KeyboardManager) | [Mouse utilities](https://aka.ms/PowerToysOverview_MouseUtilities) | [Mouse Without Borders](https://aka.ms/PowerToysOverview_MouseWithoutBorders) | | [Peek](https://aka.ms/PowerToysOverview_Peek) | [Paste as Plain Text](https://aka.ms/PowerToysOverview_PastePlain) | [PowerRename](https://aka.ms/PowerToysOverview_PowerRename) | | [PowerToys Run](https://aka.ms/PowerToysOverview_PowerToysRun) | [Quick Accent](https://aka.ms/PowerToysOverview_QuickAccent) | [Registry Preview](https://aka.ms/PowerToysOverview_RegistryPreview) | | [Screen Ruler](https://aka.ms/PowerToysOverview_ScreenRuler) | [Shortcut Guide](https://aka.ms/PowerToysOverview_ShortcutGuide) | [Text Extractor](https://aka.ms/PowerToysOverview_TextExtractor) | | [Video Conference Mute](https://aka.ms/PowerToysOverview_VideoConference) | ## Installing and running Microsoft PowerToys ### Requirements - Windows 11 or Windows 10 version 2004 (code name 20H1 / build number 19041) or newer. - Our installer will install the following items: - [Microsoft Edge WebView2 Runtime](https://go.microsoft.com/fwlink/p/?LinkId=2124703) bootstrapper. This will install the latest version. ### Via GitHub with EXE [Recommended] Go to the [Microsoft PowerToys GitHub releases page][github-release-link] and click on `Assets` at the bottom to show the files available in the release. Please use the appropriate PowerToys installer that matches your machine's architecture and install scope. For most, it is `x64` and per-user. <!-- items that need to be updated release to release --> [github-next-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F47 [github-current-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F46 [ptUserX64]: https://github.com/microsoft/PowerToys/releases/download/v0.73.0/PowerToysUserSetup-0.73.0-x64.exe [ptUserArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.73.0/PowerToysUserSetup-0.73.0-arm64.exe [ptMachineX64]: https://github.com/microsoft/PowerToys/releases/download/v0.73.0/PowerToysSetup-0.73.0-x64.exe [ptMachineArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.73.0/PowerToysSetup-0.73.0-arm64.exe | Description | Filename | sha256 hash | |----------------|----------|-------------| | Per user - x64 | [PowerToysUserSetup-0.73.0-x64.exe][ptUserX64] | BA55D245BDD734FD6F19803DD706A3AB8E0ABC491591195534997CF2122D3B7E | | Per user - ARM64 | [PowerToysUserSetup-0.73.0-arm64.exe][ptUserArm64] | FBFA40EA5FFA05236A7CCDD05E5142EE0C93D7485B965784196ED9B086BFEBF4 | | Machine wide - x64 | [PowerToysSetup-0.73.0-x64.exe][ptMachineX64] | 7FDA06292C7C2E6DA5AEF88D8E9D3DE89D331E9E356A232289F9B37CE4503894 | | Machine wide - ARM64 | [PowerToysSetup-0.73.0-arm64.exe][ptMachineArm64] | 4260AA30A1F52F194EE07E9E7ECD9E9F4CF35289267F213BC933F7A5191AC17C | This is our preferred method. ### Via Microsoft Store Install from the [Microsoft Store's PowerToys page][microsoft-store-link]. You must be using the [new Microsoft Store](https://blogs.windows.com/windowsExperience/2021/06/24/building-a-new-open-microsoft-store-on-windows-11/) which is available for both Windows 11 and Windows 10. ### Via WinGet Download PowerToys from [WinGet][winget-link]. Updating PowerToys via winget will respect current PowerToys installation scope. To install PowerToys, run the following command from the command line / PowerShell: #### User scope installer [default] ```powershell winget install Microsoft.PowerToys -s winget ``` #### Machine-wide scope installer ```powershell winget install --scope machine Microsoft.PowerToys -s winget ``` ### Other install methods There are [community driven install methods](./doc/unofficialInstallMethods.md) such as Chocolatey and Scoop. If these are your preferred install solutions, you can find the install instructions there. ## Third-Party Run Plugins There is a collection of [third-party plugins](./doc/thirdPartyRunPlugins.md) created by the community that aren't distributed with PowerToys. ## Contributing This project welcomes contributions of all types. Besides coding features / bug fixes, other ways to assist include spec writing, design, documentation, and finding bugs. We are excited to work with the power user community to build a set of tools for helping you get the most out of Windows. We ask that **before you start work on a feature that you would like to contribute**, please read our [Contributor's Guide](CONTRIBUTING.md). We would be happy to work with you to figure out the best approach, provide guidance and mentorship throughout feature development, and help avoid any wasted or duplicate effort. Most contributions require you to agree to a [Contributor License Agreement (CLA)][oss-CLA] declaring that you grant us the rights to use your contribution and that you have permission to do so. For guidance on developing for PowerToys, please read the [developer docs](/doc/devdocs) for a detailed breakdown. This includes how to setup your computer to compile. ## What's Happening ### PowerToys Roadmap Our [prioritized roadmap][roadmap] of features and utilities that the core team is focusing on. ### 0.73 - August 2023 Update In this release, we focused on releasing new features, stability and improvements. **Highlights** - Keyboard manager now allows Numpad keys to be bound separately from the main keyboard. If using a previous configuration, only the main keyboard (not numpad) keys will be mapped. To restore the previous behavior, manually add separate bindings for numpad keys. - New utility: Crop And Lock allows you to crop a current application into a smaller window or just create a thumbnail. Focus the target window and press the shortcut to start cropping. - FancyZones code improvements and refactor. - Modernized ImageResizer UX. - PowerRename advanced counter functionality. ### General - Added missing CoUninitialize call in elevation logic. Thanks [@sredna](https://github.com/sredna)! - New utility: Crop And Lock. Thanks [@robmikh](https://github.com/robmikh)! and [@kevinguo305](https://github.com/kevinguo305)! - Added new /helped fabric bot command to GitHub repo. Thanks [@Aaron-Junker](https://github.com/Aaron-Junker)! - Fixed crashes caused by invalid settings. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Always On Top - Added border transparency. ### FancyZones - Fixed issue causing canvas zones being drawn only when dragging in the zone area. - Fixed user-defined default layout highlighting issue. - Refactored and improved code quality. - Fixed issue causing the wrong layout to be applied when duplicating a non-selected layout. ### File Locksmith - Icon update. Thanks [@jmaraujouy](https://github.com/jmaraujouy)! ### File Explorer add-ons - Fixed issue causing thumbnail previewers to lock files. - Open URIs from developer files in default browser. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Installer - Fixed PowerToys autorun after installing as SYSTEM user. - Removed CreateScheduledTask custom action to handle task creation only from runner code. ### Image Resizer - Moved from ModernWPF to WpfUI to refresh and modernize UI/UX. Thanks [@niels9001](https://github.com/niels9001)! ### Keyboard Manager - Rephrased labels to enhance clarity. Thanks [@Jay-o-Way](https://github.com/Jay-o-Way)! - Keyboard manager now allows Numpad keys to be bound separately from the main keyboard. If using a previous configuration, only the main keyboard (not numpad) keys will be mapped. To restore the previous behavior, manually add separate bindings for numpad keys. ### Mouse Highlighter - The highlighter is now visible in "Always on Top" windows. - Added settings for automatic activation on startup. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Mouse Pointer Crosshairs - Added settings for automatic activation on startup. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Peek - Show correct file type for shortcuts. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Fixed issue causing the wrong file size to be displayed. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Show 1 byte instead of 1 bytes file size. Thanks [@Deepak-Sangle](https://github.com/Deepak-Sangle)! - Open URIs from developer files in the default browser. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Show a thumbnail and fallback to an icon for unsupported files. Thanks [@pedrolamas](https://github.com/pedrolamas)! ### PowerRename - Updated the OOBE gif. Thanks [@ChaseKnowlden](https://github.com/ChaseKnowlden)! - Localized the renamed parts combo box. - Introduced advanced counter functionality. - Added remember last window size logic and optimized sorting of items. - Enable "Enumerate items" option by default. ### PowerToys Run - Fixed an issue causing original search to be abandoned when cycling through results. - Updated device and bluetooth results for Settings plugin. Thanks [@htcfreek](https://github.com/htcfreek)! - Fixed InvalidOperationException exception thrown. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Add Base64 Decoding function to the Value Generator plugin. Thanks [@LeagueOfPoro](https://github.com/LeagueOfPoro)! - Added a Keep shell open option for Shell plugin. - Added Crop And Lock to PowerToys plugin. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Registry Preview - Updated AppBarButtons to use an explicit AppBarButton.Icon. Thanks [@randyrants](https://github.com/randyrants)! - Fixed crash on clicking Save As button. ### Runner - Removed unneeded RegisterWindowMessage from tray icon logic. Thanks [@sredna](https://github.com/sredna)! - Fixed startup looping issue. - Improved old logs and installers cleanup logic. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Screen Ruler - Use proper resources file. ### Settings - Fixed issue causing problems with modifier keys and ShortcutControl. Thanks [@sh0ckj0ckey](https://github.com/sh0ckj0ckey)! - Fixed crash when clicking "Windows color settings" link. - Added support for launching Settings app directly. - Fixed issue causing DisplayDescription not showing for PowerToys Run PluginAdditionalOption. - Fixed issue causing FileLocksmith 'Show File Locksmith in' setting not showing correct value. - Fixed issue causing Awake on/off toggle in Settings flyout not to work when Settings Awake page is opened. ### Documentation - Added documentation for PowerToys Run third-party plugins. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Fixed broken links in keyboardmanagerui.md. Thanks [@shubhsardana29](https://github.com/shubhsardana29)! - Updated core team in COMMUNITY.md. - Fixed broken links in ui-architecture.md. Thanks [@SamB](https://github.com/SamB)! - Updated community.valuegenerator.md with Base64DecodeRequest description. ### Development - Updated test packages and StyleCop. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Condense NuGet Restore into MSBuild Tasks. Thanks [@snickler](https://github.com/snickler)! #### What is being planned for version 0.74 For [v0.74][github-next-release-work], we'll work on the items below: - Language selection - Modernize and refresh the UX of PowerToys based on WPF - Stability / bug fixes - Peek: UI improvements ## PowerToys Community The PowerToys team is extremely grateful to have the [support of an amazing active community][community-link]. The work you do is incredibly important. PowerToys wouldn’t be nearly what it is today without your help filing bugs, updating documentation, guiding the design, or writing features. We want to say thank you and take time to recognize your work. Month by month, you directly help make PowerToys a better piece of software. ## Code of Conduct This project has adopted the [Microsoft Open Source Code of Conduct][oss-conduct-code]. ## Privacy Statement The application logs basic telemetry. Our Telemetry Data page (Coming Soon) has the trends from the telemetry. Please read the [Microsoft privacy statement][privacy-link] for more information. [oss-CLA]: https://cla.opensource.microsoft.com [oss-conduct-code]: CODE_OF_CONDUCT.md [community-link]: COMMUNITY.md [github-release-link]: https://aka.ms/installPowerToys [microsoft-store-link]: https://aka.ms/getPowertoys [winget-link]: https://github.com/microsoft/winget-cli#installing-the-client [roadmap]: https://github.com/microsoft/PowerToys/wiki/Roadmap [privacy-link]: http://go.microsoft.com/fwlink/?LinkId=521839 [vidConfOverview]: https://aka.ms/PowerToysOverview_VideoConference [loc-bug]: https://github.com/microsoft/PowerToys/issues/new?assignees=&labels=&template=translation_issue.md&title= [usingPowerToys-docs-link]: https://aka.ms/powertoys-docs
# Microsoft PowerToys ![Hero image for Microsoft PowerToys](doc/images/overview/PT_hero_image.png) [How to use PowerToys][usingPowerToys-docs-link] | [Downloads & Release notes][github-release-link] | [Contributing to PowerToys](#contributing) | [What's Happening](#whats-happening) | [Roadmap](#powertoys-roadmap) ## Build status | Architecture | Solution (Main) | Solution (Stable) | Installer (Main) | |--------------|-----------------|-------------------|------------------| | x64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main&jobName=Build%20x64%20Release) | [![Build Status for Stable](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=stable&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_x64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | | ARM64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main) | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_arm64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | ## About Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. For more info on [PowerToys overviews and how to use the utilities][usingPowerToys-docs-link], or any other tools and resources for [Windows development environments](https://learn.microsoft.com/windows/dev-environment/overview), head over to [learn.microsoft.com][usingPowerToys-docs-link]! | | Current utilities: | | |--------------|--------------------|--------------| | [Always on Top](https://aka.ms/PowerToysOverview_AoT) | [PowerToys Awake](https://aka.ms/PowerToysOverview_Awake) | [Color Picker](https://aka.ms/PowerToysOverview_ColorPicker) | | [Crop And Lock](https://aka.ms/PowerToysOverview_CropAndLock) | [FancyZones](https://aka.ms/PowerToysOverview_FancyZones) | [File Explorer Add-ons](https://aka.ms/PowerToysOverview_FileExplorerAddOns) | | [File Locksmith](https://aka.ms/PowerToysOverview_FileLocksmith) | [Hosts File Editor](https://aka.ms/PowerToysOverview_HostsFileEditor) | [Image Resizer](https://aka.ms/PowerToysOverview_ImageResizer) | | [Keyboard Manager](https://aka.ms/PowerToysOverview_KeyboardManager) | [Mouse utilities](https://aka.ms/PowerToysOverview_MouseUtilities) | [Mouse Without Borders](https://aka.ms/PowerToysOverview_MouseWithoutBorders) | | [Peek](https://aka.ms/PowerToysOverview_Peek) | [Paste as Plain Text](https://aka.ms/PowerToysOverview_PastePlain) | [PowerRename](https://aka.ms/PowerToysOverview_PowerRename) | | [PowerToys Run](https://aka.ms/PowerToysOverview_PowerToysRun) | [Quick Accent](https://aka.ms/PowerToysOverview_QuickAccent) | [Registry Preview](https://aka.ms/PowerToysOverview_RegistryPreview) | | [Screen Ruler](https://aka.ms/PowerToysOverview_ScreenRuler) | [Shortcut Guide](https://aka.ms/PowerToysOverview_ShortcutGuide) | [Text Extractor](https://aka.ms/PowerToysOverview_TextExtractor) | | [Video Conference Mute](https://aka.ms/PowerToysOverview_VideoConference) | ## Installing and running Microsoft PowerToys ### Requirements - Windows 11 or Windows 10 version 2004 (code name 20H1 / build number 19041) or newer. - Our installer will install the following items: - [Microsoft Edge WebView2 Runtime](https://go.microsoft.com/fwlink/p/?LinkId=2124703) bootstrapper. This will install the latest version. ### Via GitHub with EXE [Recommended] Go to the [Microsoft PowerToys GitHub releases page][github-release-link] and click on `Assets` at the bottom to show the files available in the release. Please use the appropriate PowerToys installer that matches your machine's architecture and install scope. For most, it is `x64` and per-user. <!-- items that need to be updated release to release --> [github-next-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F48 [github-current-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F47 [ptUserX64]: https://github.com/microsoft/PowerToys/releases/download/v0.74.0/PowerToysUserSetup-0.74.0-x64.exe [ptUserArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.74.0/PowerToysUserSetup-0.74.0-arm64.exe [ptMachineX64]: https://github.com/microsoft/PowerToys/releases/download/v0.74.0/PowerToysSetup-0.74.0-x64.exe [ptMachineArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.74.0/PowerToysSetup-0.74.0-arm64.exe | Description | Filename | sha256 hash | |----------------|----------|-------------| | Per user - x64 | [PowerToysUserSetup-0.74.0-x64.exe][ptUserX64] | 1C4ECE9F11488BAFFAE6B76D2B0504FA18BFFEA11EBC38BCC87F5D86AEA87C7C | | Per user - ARM64 | [PowerToysUserSetup-0.74.0-arm64.exe][ptUserArm64] | 4F3842FAB0839A361A15A06B7720BA8A0FE7F9AF98EA94245C08DEF37678CA4A | | Machine wide - x64 | [PowerToysSetup-0.74.0-x64.exe][ptMachineX64] | 648992E8CEA08F3C63C7CCBD554ADDF500ECBC4560187310BC12E6CB9C2F38E3 | | Machine wide - ARM64 | [PowerToysSetup-0.74.0-arm64.exe][ptMachineArm64] | 2B6D92F1A0EA688C7EE882050AC9B030C8B3A18765163FB6D67E5E694A4D4FE3 | This is our preferred method. ### Via Microsoft Store Install from the [Microsoft Store's PowerToys page][microsoft-store-link]. You must be using the [new Microsoft Store](https://blogs.windows.com/windowsExperience/2021/06/24/building-a-new-open-microsoft-store-on-windows-11/) which is available for both Windows 11 and Windows 10. ### Via WinGet Download PowerToys from [WinGet][winget-link]. Updating PowerToys via winget will respect current PowerToys installation scope. To install PowerToys, run the following command from the command line / PowerShell: #### User scope installer [default] ```powershell winget install Microsoft.PowerToys -s winget ``` #### Machine-wide scope installer ```powershell winget install --scope machine Microsoft.PowerToys -s winget ``` ### Other install methods There are [community driven install methods](./doc/unofficialInstallMethods.md) such as Chocolatey and Scoop. If these are your preferred install solutions, you can find the install instructions there. ## Third-Party Run Plugins There is a collection of [third-party plugins](./doc/thirdPartyRunPlugins.md) created by the community that aren't distributed with PowerToys. ## Contributing This project welcomes contributions of all types. Besides coding features / bug fixes, other ways to assist include spec writing, design, documentation, and finding bugs. We are excited to work with the power user community to build a set of tools for helping you get the most out of Windows. We ask that **before you start work on a feature that you would like to contribute**, please read our [Contributor's Guide](CONTRIBUTING.md). We would be happy to work with you to figure out the best approach, provide guidance and mentorship throughout feature development, and help avoid any wasted or duplicate effort. Most contributions require you to agree to a [Contributor License Agreement (CLA)][oss-CLA] declaring that you grant us the rights to use your contribution and that you have permission to do so. For guidance on developing for PowerToys, please read the [developer docs](/doc/devdocs) for a detailed breakdown. This includes how to setup your computer to compile. ## What's Happening ### PowerToys Roadmap Our [prioritized roadmap][roadmap] of features and utilities that the core team is focusing on. ### 0.74 - September 2023 Update In this release, we focused on stability and improvements. **Highlights** - Upgraded to Windows App SDK 1.4.1, increasing stability of WinUI3 utilities. Thanks [@dongle-the-gadget](https://github.com/dongle-the-gadget) for starting the upgrade! - Text Extractor was upgraded to its version 2.0, with a new overlay, table mode and more Quality of Life improvements. Thanks [@TheJoeFin](https://github.com/TheJoeFin)! - Improved FancyZones stability, fixing some layout resets and improving handling of newly created windows on Windows 11. - Fixed many silent crashes that were reported to Watson and the user's event viewer. ### General - Turning animations off in Windows Settings will now also turn them off in PowerToys. - Upgraded the Windows App SDK dependency to 1.4.1. Thanks [@dongle-the-gadget](https://github.com/dongle-the-gadget) for the original 1.4.0 upgrade! - Show in the thumbnail label and application titles when running as administrator. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Upgraded the Win UI Community Toolkit dependency to 8.0. Thanks [@niels9001](https://github.com/niels9001)! ### Awake - Added down-sampled variants to the application's icon. Thanks [@morriscurtis](https://github.com/morriscurtis)! ### Color Picker - After adding a new color in the editor, the history will scroll the new color into view. Thanks [@peerpalo](https://github.com/peerpalo)! ### Crop and Lock - Fixed a Crop and Lock crash that would occur when trying to reparent a window crashes the target application. An error message is shown instead. ### FancyZones - Set the process and main thread priority to normal. - Fixed handling newly created windows on Windows 11. - Fixed scenarios where opening the FancyZones Editor would reset the layouts. ### File Explorer add-ons - Optimized CPU usage for generating SVG thumbnails. - Improved handling of Gcode Thumbnails, including JPG and QOI formats. Thanks [@pedrolamas](https://github.com/pedrolamas)! - Better handled errors when sending telemetry, which were causing reported crashes. - Fixed some thumbnails not being shown centered like before the optimization. ### File Locksmith - Shows files opened by processes with PID greater than 65535. Thanks [@poke30744](https://github.com/poke30744)! - Fixed a GDI object leak in the context menu which would crash Explorer. ### Find My Mouse - Added new activation methods, including by hotkey. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Hosts File Editor - Ignore the default ACME sample entries in the hosts file. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Improved save error handling and added better error messages. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Corrected a check for an error when signaling the application to start as administrator. - Refactored the context menu. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Fixed dialogs overlapping the title bar after the upgrade to Windows App SDK 1.4. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Keyboard Manager - Distinguish between the regular minus key and the numpad minus key. ### Mouse Without Borders - Fixed a crash when trying to restart the application. ### Peek - Using Peek on HTML files will show a white background by default, similar to a browser's default behavior. - Fix a white flash on Dark theme when switching file and improved the development file preview detection and adjustments. ### PowerRename - Fixed a crash caused by big counter values on the new enumeration method. ### PowerToys Run - It's now possible to select which shell is used by the Shell plugin. - A combobox option type was added to the plugin options. - Fixed a bug in the Calculator plugin that was causing decimal numbers to be misinterpreted on locales where the dot (`.`) character isn't used as a decimal or digit separator. - Improved the Program plugin stability when it fails to load a program's thumbnail at startup. - The use of Pinyin for querying some plugins can now be turned on in Settings. Thanks [@ChaseKnowlden](https://github.com/ChaseKnowlden)! - Refactored option types for plugin and added number, string and composite types to be used in the future. Thanks [@htcfreek](https://github.com/htcfreek)! - Fixed the entry for searching for Windows updates in the Settings plugin. Thanks [@htcfreek](https://github.com/htcfreek)! ### Quick Accent - The "All languages" character set is now calculated by programmatically querying the characters for every available language. Thanks [@dannysummerlin](https://github.com/dannysummerlin)! - Added é to the Norwegian and Swedish languages. Thanks [@Aaron-Junker](https://github.com/Aaron-Junker)! - Added a runtime cache to the "All languages" character set, to only calculate accents once per key. ### Registry Preview - Fixed focusing issues at startup. - Improved the data visualization to show data in a similar way to the Windows Registry Editor. Thanks [@dillydylann](https://github.com/dillydylann)! ### Runner - Fixed hanging when a bug report was generated from the flyout. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Settings - Improved the way the OOBE window reacts to Windows theme change. - Fixed an issue that made it impossible to change the "Switch between windows in the current zone" "Next window" shortcut for FancyZones. - Fixed a crash when entering a duplicate name for a color in the Color Picker page and improved clean up when cancelling a color edit. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Text Extractor - Text Extractor 2.0, with a new overlay, table mode and more Quality of Life improvements. Thanks [@TheJoeFin](https://github.com/TheJoeFin)! ### Documentation - SECURITY.md was updated from 0.0.2 to 0.0.9. Thanks [@Aaron-Junker](https://github.com/Aaron-Junker)! - Improved the README and main development document for clarity and completeness. Thanks [@codeofdusk](https://github.com/codeofdusk) and [@aprilbbrockhoeft](https://github.com/aprilbbrockhoeft)! ### Development - Fixed PowerToys Run DateTime plugin tests that were failing depending on locale, so that they can be run correctly on all dev machines. - Fixed PowerToys Run System plugin tests that were failing for certain network interfaces, so that they can be run correctly on all dev machines. Thanks [@snickler](https://github.com/snickler)! - Fixed a markdown bug on the GitHub /helped command. - Switched build pipelines to a new agent pool. Thanks [@DHowett](https://github.com/DHowett)! - New .cs files created in Visual Studio get the header added automatically. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! #### What is being planned for version 0.75 For [v0.75][github-next-release-work], we'll work on the items below: - Language selection - .NET 8 upgrade - Policy support for managing PowerToys Run plugins. *Attention*: A breaking change is planned (for 0.75), in which each plugin has to declare its identifier programmatically so that it can be controlled through GPO. For third-party plugin developers, please check https://github.com/microsoft/PowerToys/pull/27468 for more details. - New utility: Environment Variables Editor. Here's a Work in Progress preview: ![Environment Variables Editor WIP](https://github.com/microsoft/PowerToys/assets/26118718/f99532a8-5aae-481b-a662-19a95f4aa03d) - New Settings homepage. Here's a Work in Progress preview: ![PowerToys Settings Dashboard WIP](https://github.com/microsoft/PowerToys/assets/26118718/938a5715-0a9b-4fe9-9e15-adfec92da694) - Modernize and refresh the UX of PowerToys based on WPF. Here's Work in Progress previews for the modules "PowerToys Run" and "Color Picker": ![PowerToys Run UI refresh WIP](https://github.com/microsoft/PowerToys/assets/9866362/16903bcb-c18e-49fb-93ca-738b81957055) ![ColorPicker UI refresh WIP](https://github.com/microsoft/PowerToys/assets/9866362/ceebe54b-de63-4ce7-afcb-2cd4280bf4d1) - Stability / bug fixes ## PowerToys Community The PowerToys team is extremely grateful to have the [support of an amazing active community][community-link]. The work you do is incredibly important. PowerToys wouldn’t be nearly what it is today without your help filing bugs, updating documentation, guiding the design, or writing features. We want to say thank you and take time to recognize your work. Month by month, you directly help make PowerToys a better piece of software. ## Code of Conduct This project has adopted the [Microsoft Open Source Code of Conduct][oss-conduct-code]. ## Privacy Statement The application logs basic telemetry. Our Telemetry Data page (Coming Soon) has the trends from the telemetry. Please read the [Microsoft privacy statement][privacy-link] for more information. [oss-CLA]: https://cla.opensource.microsoft.com [oss-conduct-code]: CODE_OF_CONDUCT.md [community-link]: COMMUNITY.md [github-release-link]: https://aka.ms/installPowerToys [microsoft-store-link]: https://aka.ms/getPowertoys [winget-link]: https://github.com/microsoft/winget-cli#installing-the-client [roadmap]: https://github.com/microsoft/PowerToys/wiki/Roadmap [privacy-link]: http://go.microsoft.com/fwlink/?LinkId=521839 [vidConfOverview]: https://aka.ms/PowerToysOverview_VideoConference [loc-bug]: https://github.com/microsoft/PowerToys/issues/new?assignees=&labels=&template=translation_issue.md&title= [usingPowerToys-docs-link]: https://aka.ms/powertoys-docs
jaimecbernardo
a1e0bd51617b2bea189cb16324eecd0e13fa7b86
77063e0767a0619abfc339db3a2a564d27310b6c
missed a word - updated
Jay-o-Way
422
microsoft/PowerToys
28,775
0.74 changelogs
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request Readme update for the 0.74 release. This will be copy / pasted for release notes.
null
2023-09-26 11:20:42+00:00
2023-09-26 21:36:51+00:00
README.md
# Microsoft PowerToys ![Hero image for Microsoft PowerToys](doc/images/overview/PT_hero_image.png) [How to use PowerToys][usingPowerToys-docs-link] | [Downloads & Release notes][github-release-link] | [Contributing to PowerToys](#contributing) | [What's Happening](#whats-happening) | [Roadmap](#powertoys-roadmap) ## Build status | Architecture | Solution (Main) | Solution (Stable) | Installer (Main) | |--------------|-----------------|-------------------|------------------| | x64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main&jobName=Build%20x64%20Release) | [![Build Status for Stable](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=stable&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_x64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | | ARM64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main) | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_arm64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | ## About Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. For more info on [PowerToys overviews and how to use the utilities][usingPowerToys-docs-link], or any other tools and resources for [Windows development environments](https://learn.microsoft.com/windows/dev-environment/overview), head over to [learn.microsoft.com][usingPowerToys-docs-link]! | | Current utilities: | | |--------------|--------------------|--------------| | [Always on Top](https://aka.ms/PowerToysOverview_AoT) | [PowerToys Awake](https://aka.ms/PowerToysOverview_Awake) | [Color Picker](https://aka.ms/PowerToysOverview_ColorPicker) | | [Crop And Lock](https://aka.ms/PowerToysOverview_CropAndLock) | [FancyZones](https://aka.ms/PowerToysOverview_FancyZones) | [File Explorer Add-ons](https://aka.ms/PowerToysOverview_FileExplorerAddOns) | | [File Locksmith](https://aka.ms/PowerToysOverview_FileLocksmith) | [Hosts File Editor](https://aka.ms/PowerToysOverview_HostsFileEditor) | [Image Resizer](https://aka.ms/PowerToysOverview_ImageResizer) | | [Keyboard Manager](https://aka.ms/PowerToysOverview_KeyboardManager) | [Mouse utilities](https://aka.ms/PowerToysOverview_MouseUtilities) | [Mouse Without Borders](https://aka.ms/PowerToysOverview_MouseWithoutBorders) | | [Peek](https://aka.ms/PowerToysOverview_Peek) | [Paste as Plain Text](https://aka.ms/PowerToysOverview_PastePlain) | [PowerRename](https://aka.ms/PowerToysOverview_PowerRename) | | [PowerToys Run](https://aka.ms/PowerToysOverview_PowerToysRun) | [Quick Accent](https://aka.ms/PowerToysOverview_QuickAccent) | [Registry Preview](https://aka.ms/PowerToysOverview_RegistryPreview) | | [Screen Ruler](https://aka.ms/PowerToysOverview_ScreenRuler) | [Shortcut Guide](https://aka.ms/PowerToysOverview_ShortcutGuide) | [Text Extractor](https://aka.ms/PowerToysOverview_TextExtractor) | | [Video Conference Mute](https://aka.ms/PowerToysOverview_VideoConference) | ## Installing and running Microsoft PowerToys ### Requirements - Windows 11 or Windows 10 version 2004 (code name 20H1 / build number 19041) or newer. - Our installer will install the following items: - [Microsoft Edge WebView2 Runtime](https://go.microsoft.com/fwlink/p/?LinkId=2124703) bootstrapper. This will install the latest version. ### Via GitHub with EXE [Recommended] Go to the [Microsoft PowerToys GitHub releases page][github-release-link] and click on `Assets` at the bottom to show the files available in the release. Please use the appropriate PowerToys installer that matches your machine's architecture and install scope. For most, it is `x64` and per-user. <!-- items that need to be updated release to release --> [github-next-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F47 [github-current-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F46 [ptUserX64]: https://github.com/microsoft/PowerToys/releases/download/v0.73.0/PowerToysUserSetup-0.73.0-x64.exe [ptUserArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.73.0/PowerToysUserSetup-0.73.0-arm64.exe [ptMachineX64]: https://github.com/microsoft/PowerToys/releases/download/v0.73.0/PowerToysSetup-0.73.0-x64.exe [ptMachineArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.73.0/PowerToysSetup-0.73.0-arm64.exe | Description | Filename | sha256 hash | |----------------|----------|-------------| | Per user - x64 | [PowerToysUserSetup-0.73.0-x64.exe][ptUserX64] | BA55D245BDD734FD6F19803DD706A3AB8E0ABC491591195534997CF2122D3B7E | | Per user - ARM64 | [PowerToysUserSetup-0.73.0-arm64.exe][ptUserArm64] | FBFA40EA5FFA05236A7CCDD05E5142EE0C93D7485B965784196ED9B086BFEBF4 | | Machine wide - x64 | [PowerToysSetup-0.73.0-x64.exe][ptMachineX64] | 7FDA06292C7C2E6DA5AEF88D8E9D3DE89D331E9E356A232289F9B37CE4503894 | | Machine wide - ARM64 | [PowerToysSetup-0.73.0-arm64.exe][ptMachineArm64] | 4260AA30A1F52F194EE07E9E7ECD9E9F4CF35289267F213BC933F7A5191AC17C | This is our preferred method. ### Via Microsoft Store Install from the [Microsoft Store's PowerToys page][microsoft-store-link]. You must be using the [new Microsoft Store](https://blogs.windows.com/windowsExperience/2021/06/24/building-a-new-open-microsoft-store-on-windows-11/) which is available for both Windows 11 and Windows 10. ### Via WinGet Download PowerToys from [WinGet][winget-link]. Updating PowerToys via winget will respect current PowerToys installation scope. To install PowerToys, run the following command from the command line / PowerShell: #### User scope installer [default] ```powershell winget install Microsoft.PowerToys -s winget ``` #### Machine-wide scope installer ```powershell winget install --scope machine Microsoft.PowerToys -s winget ``` ### Other install methods There are [community driven install methods](./doc/unofficialInstallMethods.md) such as Chocolatey and Scoop. If these are your preferred install solutions, you can find the install instructions there. ## Third-Party Run Plugins There is a collection of [third-party plugins](./doc/thirdPartyRunPlugins.md) created by the community that aren't distributed with PowerToys. ## Contributing This project welcomes contributions of all types. Besides coding features / bug fixes, other ways to assist include spec writing, design, documentation, and finding bugs. We are excited to work with the power user community to build a set of tools for helping you get the most out of Windows. We ask that **before you start work on a feature that you would like to contribute**, please read our [Contributor's Guide](CONTRIBUTING.md). We would be happy to work with you to figure out the best approach, provide guidance and mentorship throughout feature development, and help avoid any wasted or duplicate effort. Most contributions require you to agree to a [Contributor License Agreement (CLA)][oss-CLA] declaring that you grant us the rights to use your contribution and that you have permission to do so. For guidance on developing for PowerToys, please read the [developer docs](/doc/devdocs) for a detailed breakdown. This includes how to setup your computer to compile. ## What's Happening ### PowerToys Roadmap Our [prioritized roadmap][roadmap] of features and utilities that the core team is focusing on. ### 0.73 - August 2023 Update In this release, we focused on releasing new features, stability and improvements. **Highlights** - Keyboard manager now allows Numpad keys to be bound separately from the main keyboard. If using a previous configuration, only the main keyboard (not numpad) keys will be mapped. To restore the previous behavior, manually add separate bindings for numpad keys. - New utility: Crop And Lock allows you to crop a current application into a smaller window or just create a thumbnail. Focus the target window and press the shortcut to start cropping. - FancyZones code improvements and refactor. - Modernized ImageResizer UX. - PowerRename advanced counter functionality. ### General - Added missing CoUninitialize call in elevation logic. Thanks [@sredna](https://github.com/sredna)! - New utility: Crop And Lock. Thanks [@robmikh](https://github.com/robmikh)! and [@kevinguo305](https://github.com/kevinguo305)! - Added new /helped fabric bot command to GitHub repo. Thanks [@Aaron-Junker](https://github.com/Aaron-Junker)! - Fixed crashes caused by invalid settings. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Always On Top - Added border transparency. ### FancyZones - Fixed issue causing canvas zones being drawn only when dragging in the zone area. - Fixed user-defined default layout highlighting issue. - Refactored and improved code quality. - Fixed issue causing the wrong layout to be applied when duplicating a non-selected layout. ### File Locksmith - Icon update. Thanks [@jmaraujouy](https://github.com/jmaraujouy)! ### File Explorer add-ons - Fixed issue causing thumbnail previewers to lock files. - Open URIs from developer files in default browser. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Installer - Fixed PowerToys autorun after installing as SYSTEM user. - Removed CreateScheduledTask custom action to handle task creation only from runner code. ### Image Resizer - Moved from ModernWPF to WpfUI to refresh and modernize UI/UX. Thanks [@niels9001](https://github.com/niels9001)! ### Keyboard Manager - Rephrased labels to enhance clarity. Thanks [@Jay-o-Way](https://github.com/Jay-o-Way)! - Keyboard manager now allows Numpad keys to be bound separately from the main keyboard. If using a previous configuration, only the main keyboard (not numpad) keys will be mapped. To restore the previous behavior, manually add separate bindings for numpad keys. ### Mouse Highlighter - The highlighter is now visible in "Always on Top" windows. - Added settings for automatic activation on startup. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Mouse Pointer Crosshairs - Added settings for automatic activation on startup. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Peek - Show correct file type for shortcuts. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Fixed issue causing the wrong file size to be displayed. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Show 1 byte instead of 1 bytes file size. Thanks [@Deepak-Sangle](https://github.com/Deepak-Sangle)! - Open URIs from developer files in the default browser. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Show a thumbnail and fallback to an icon for unsupported files. Thanks [@pedrolamas](https://github.com/pedrolamas)! ### PowerRename - Updated the OOBE gif. Thanks [@ChaseKnowlden](https://github.com/ChaseKnowlden)! - Localized the renamed parts combo box. - Introduced advanced counter functionality. - Added remember last window size logic and optimized sorting of items. - Enable "Enumerate items" option by default. ### PowerToys Run - Fixed an issue causing original search to be abandoned when cycling through results. - Updated device and bluetooth results for Settings plugin. Thanks [@htcfreek](https://github.com/htcfreek)! - Fixed InvalidOperationException exception thrown. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Add Base64 Decoding function to the Value Generator plugin. Thanks [@LeagueOfPoro](https://github.com/LeagueOfPoro)! - Added a Keep shell open option for Shell plugin. - Added Crop And Lock to PowerToys plugin. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Registry Preview - Updated AppBarButtons to use an explicit AppBarButton.Icon. Thanks [@randyrants](https://github.com/randyrants)! - Fixed crash on clicking Save As button. ### Runner - Removed unneeded RegisterWindowMessage from tray icon logic. Thanks [@sredna](https://github.com/sredna)! - Fixed startup looping issue. - Improved old logs and installers cleanup logic. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Screen Ruler - Use proper resources file. ### Settings - Fixed issue causing problems with modifier keys and ShortcutControl. Thanks [@sh0ckj0ckey](https://github.com/sh0ckj0ckey)! - Fixed crash when clicking "Windows color settings" link. - Added support for launching Settings app directly. - Fixed issue causing DisplayDescription not showing for PowerToys Run PluginAdditionalOption. - Fixed issue causing FileLocksmith 'Show File Locksmith in' setting not showing correct value. - Fixed issue causing Awake on/off toggle in Settings flyout not to work when Settings Awake page is opened. ### Documentation - Added documentation for PowerToys Run third-party plugins. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Fixed broken links in keyboardmanagerui.md. Thanks [@shubhsardana29](https://github.com/shubhsardana29)! - Updated core team in COMMUNITY.md. - Fixed broken links in ui-architecture.md. Thanks [@SamB](https://github.com/SamB)! - Updated community.valuegenerator.md with Base64DecodeRequest description. ### Development - Updated test packages and StyleCop. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Condense NuGet Restore into MSBuild Tasks. Thanks [@snickler](https://github.com/snickler)! #### What is being planned for version 0.74 For [v0.74][github-next-release-work], we'll work on the items below: - Language selection - Modernize and refresh the UX of PowerToys based on WPF - Stability / bug fixes - Peek: UI improvements ## PowerToys Community The PowerToys team is extremely grateful to have the [support of an amazing active community][community-link]. The work you do is incredibly important. PowerToys wouldn’t be nearly what it is today without your help filing bugs, updating documentation, guiding the design, or writing features. We want to say thank you and take time to recognize your work. Month by month, you directly help make PowerToys a better piece of software. ## Code of Conduct This project has adopted the [Microsoft Open Source Code of Conduct][oss-conduct-code]. ## Privacy Statement The application logs basic telemetry. Our Telemetry Data page (Coming Soon) has the trends from the telemetry. Please read the [Microsoft privacy statement][privacy-link] for more information. [oss-CLA]: https://cla.opensource.microsoft.com [oss-conduct-code]: CODE_OF_CONDUCT.md [community-link]: COMMUNITY.md [github-release-link]: https://aka.ms/installPowerToys [microsoft-store-link]: https://aka.ms/getPowertoys [winget-link]: https://github.com/microsoft/winget-cli#installing-the-client [roadmap]: https://github.com/microsoft/PowerToys/wiki/Roadmap [privacy-link]: http://go.microsoft.com/fwlink/?LinkId=521839 [vidConfOverview]: https://aka.ms/PowerToysOverview_VideoConference [loc-bug]: https://github.com/microsoft/PowerToys/issues/new?assignees=&labels=&template=translation_issue.md&title= [usingPowerToys-docs-link]: https://aka.ms/powertoys-docs
# Microsoft PowerToys ![Hero image for Microsoft PowerToys](doc/images/overview/PT_hero_image.png) [How to use PowerToys][usingPowerToys-docs-link] | [Downloads & Release notes][github-release-link] | [Contributing to PowerToys](#contributing) | [What's Happening](#whats-happening) | [Roadmap](#powertoys-roadmap) ## Build status | Architecture | Solution (Main) | Solution (Stable) | Installer (Main) | |--------------|-----------------|-------------------|------------------| | x64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main&jobName=Build%20x64%20Release) | [![Build Status for Stable](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=stable&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_x64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | | ARM64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main) | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_arm64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | ## About Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. For more info on [PowerToys overviews and how to use the utilities][usingPowerToys-docs-link], or any other tools and resources for [Windows development environments](https://learn.microsoft.com/windows/dev-environment/overview), head over to [learn.microsoft.com][usingPowerToys-docs-link]! | | Current utilities: | | |--------------|--------------------|--------------| | [Always on Top](https://aka.ms/PowerToysOverview_AoT) | [PowerToys Awake](https://aka.ms/PowerToysOverview_Awake) | [Color Picker](https://aka.ms/PowerToysOverview_ColorPicker) | | [Crop And Lock](https://aka.ms/PowerToysOverview_CropAndLock) | [FancyZones](https://aka.ms/PowerToysOverview_FancyZones) | [File Explorer Add-ons](https://aka.ms/PowerToysOverview_FileExplorerAddOns) | | [File Locksmith](https://aka.ms/PowerToysOverview_FileLocksmith) | [Hosts File Editor](https://aka.ms/PowerToysOverview_HostsFileEditor) | [Image Resizer](https://aka.ms/PowerToysOverview_ImageResizer) | | [Keyboard Manager](https://aka.ms/PowerToysOverview_KeyboardManager) | [Mouse utilities](https://aka.ms/PowerToysOverview_MouseUtilities) | [Mouse Without Borders](https://aka.ms/PowerToysOverview_MouseWithoutBorders) | | [Peek](https://aka.ms/PowerToysOverview_Peek) | [Paste as Plain Text](https://aka.ms/PowerToysOverview_PastePlain) | [PowerRename](https://aka.ms/PowerToysOverview_PowerRename) | | [PowerToys Run](https://aka.ms/PowerToysOverview_PowerToysRun) | [Quick Accent](https://aka.ms/PowerToysOverview_QuickAccent) | [Registry Preview](https://aka.ms/PowerToysOverview_RegistryPreview) | | [Screen Ruler](https://aka.ms/PowerToysOverview_ScreenRuler) | [Shortcut Guide](https://aka.ms/PowerToysOverview_ShortcutGuide) | [Text Extractor](https://aka.ms/PowerToysOverview_TextExtractor) | | [Video Conference Mute](https://aka.ms/PowerToysOverview_VideoConference) | ## Installing and running Microsoft PowerToys ### Requirements - Windows 11 or Windows 10 version 2004 (code name 20H1 / build number 19041) or newer. - Our installer will install the following items: - [Microsoft Edge WebView2 Runtime](https://go.microsoft.com/fwlink/p/?LinkId=2124703) bootstrapper. This will install the latest version. ### Via GitHub with EXE [Recommended] Go to the [Microsoft PowerToys GitHub releases page][github-release-link] and click on `Assets` at the bottom to show the files available in the release. Please use the appropriate PowerToys installer that matches your machine's architecture and install scope. For most, it is `x64` and per-user. <!-- items that need to be updated release to release --> [github-next-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F48 [github-current-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F47 [ptUserX64]: https://github.com/microsoft/PowerToys/releases/download/v0.74.0/PowerToysUserSetup-0.74.0-x64.exe [ptUserArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.74.0/PowerToysUserSetup-0.74.0-arm64.exe [ptMachineX64]: https://github.com/microsoft/PowerToys/releases/download/v0.74.0/PowerToysSetup-0.74.0-x64.exe [ptMachineArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.74.0/PowerToysSetup-0.74.0-arm64.exe | Description | Filename | sha256 hash | |----------------|----------|-------------| | Per user - x64 | [PowerToysUserSetup-0.74.0-x64.exe][ptUserX64] | 1C4ECE9F11488BAFFAE6B76D2B0504FA18BFFEA11EBC38BCC87F5D86AEA87C7C | | Per user - ARM64 | [PowerToysUserSetup-0.74.0-arm64.exe][ptUserArm64] | 4F3842FAB0839A361A15A06B7720BA8A0FE7F9AF98EA94245C08DEF37678CA4A | | Machine wide - x64 | [PowerToysSetup-0.74.0-x64.exe][ptMachineX64] | 648992E8CEA08F3C63C7CCBD554ADDF500ECBC4560187310BC12E6CB9C2F38E3 | | Machine wide - ARM64 | [PowerToysSetup-0.74.0-arm64.exe][ptMachineArm64] | 2B6D92F1A0EA688C7EE882050AC9B030C8B3A18765163FB6D67E5E694A4D4FE3 | This is our preferred method. ### Via Microsoft Store Install from the [Microsoft Store's PowerToys page][microsoft-store-link]. You must be using the [new Microsoft Store](https://blogs.windows.com/windowsExperience/2021/06/24/building-a-new-open-microsoft-store-on-windows-11/) which is available for both Windows 11 and Windows 10. ### Via WinGet Download PowerToys from [WinGet][winget-link]. Updating PowerToys via winget will respect current PowerToys installation scope. To install PowerToys, run the following command from the command line / PowerShell: #### User scope installer [default] ```powershell winget install Microsoft.PowerToys -s winget ``` #### Machine-wide scope installer ```powershell winget install --scope machine Microsoft.PowerToys -s winget ``` ### Other install methods There are [community driven install methods](./doc/unofficialInstallMethods.md) such as Chocolatey and Scoop. If these are your preferred install solutions, you can find the install instructions there. ## Third-Party Run Plugins There is a collection of [third-party plugins](./doc/thirdPartyRunPlugins.md) created by the community that aren't distributed with PowerToys. ## Contributing This project welcomes contributions of all types. Besides coding features / bug fixes, other ways to assist include spec writing, design, documentation, and finding bugs. We are excited to work with the power user community to build a set of tools for helping you get the most out of Windows. We ask that **before you start work on a feature that you would like to contribute**, please read our [Contributor's Guide](CONTRIBUTING.md). We would be happy to work with you to figure out the best approach, provide guidance and mentorship throughout feature development, and help avoid any wasted or duplicate effort. Most contributions require you to agree to a [Contributor License Agreement (CLA)][oss-CLA] declaring that you grant us the rights to use your contribution and that you have permission to do so. For guidance on developing for PowerToys, please read the [developer docs](/doc/devdocs) for a detailed breakdown. This includes how to setup your computer to compile. ## What's Happening ### PowerToys Roadmap Our [prioritized roadmap][roadmap] of features and utilities that the core team is focusing on. ### 0.74 - September 2023 Update In this release, we focused on stability and improvements. **Highlights** - Upgraded to Windows App SDK 1.4.1, increasing stability of WinUI3 utilities. Thanks [@dongle-the-gadget](https://github.com/dongle-the-gadget) for starting the upgrade! - Text Extractor was upgraded to its version 2.0, with a new overlay, table mode and more Quality of Life improvements. Thanks [@TheJoeFin](https://github.com/TheJoeFin)! - Improved FancyZones stability, fixing some layout resets and improving handling of newly created windows on Windows 11. - Fixed many silent crashes that were reported to Watson and the user's event viewer. ### General - Turning animations off in Windows Settings will now also turn them off in PowerToys. - Upgraded the Windows App SDK dependency to 1.4.1. Thanks [@dongle-the-gadget](https://github.com/dongle-the-gadget) for the original 1.4.0 upgrade! - Show in the thumbnail label and application titles when running as administrator. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Upgraded the Win UI Community Toolkit dependency to 8.0. Thanks [@niels9001](https://github.com/niels9001)! ### Awake - Added down-sampled variants to the application's icon. Thanks [@morriscurtis](https://github.com/morriscurtis)! ### Color Picker - After adding a new color in the editor, the history will scroll the new color into view. Thanks [@peerpalo](https://github.com/peerpalo)! ### Crop and Lock - Fixed a Crop and Lock crash that would occur when trying to reparent a window crashes the target application. An error message is shown instead. ### FancyZones - Set the process and main thread priority to normal. - Fixed handling newly created windows on Windows 11. - Fixed scenarios where opening the FancyZones Editor would reset the layouts. ### File Explorer add-ons - Optimized CPU usage for generating SVG thumbnails. - Improved handling of Gcode Thumbnails, including JPG and QOI formats. Thanks [@pedrolamas](https://github.com/pedrolamas)! - Better handled errors when sending telemetry, which were causing reported crashes. - Fixed some thumbnails not being shown centered like before the optimization. ### File Locksmith - Shows files opened by processes with PID greater than 65535. Thanks [@poke30744](https://github.com/poke30744)! - Fixed a GDI object leak in the context menu which would crash Explorer. ### Find My Mouse - Added new activation methods, including by hotkey. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Hosts File Editor - Ignore the default ACME sample entries in the hosts file. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Improved save error handling and added better error messages. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Corrected a check for an error when signaling the application to start as administrator. - Refactored the context menu. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Fixed dialogs overlapping the title bar after the upgrade to Windows App SDK 1.4. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Keyboard Manager - Distinguish between the regular minus key and the numpad minus key. ### Mouse Without Borders - Fixed a crash when trying to restart the application. ### Peek - Using Peek on HTML files will show a white background by default, similar to a browser's default behavior. - Fix a white flash on Dark theme when switching file and improved the development file preview detection and adjustments. ### PowerRename - Fixed a crash caused by big counter values on the new enumeration method. ### PowerToys Run - It's now possible to select which shell is used by the Shell plugin. - A combobox option type was added to the plugin options. - Fixed a bug in the Calculator plugin that was causing decimal numbers to be misinterpreted on locales where the dot (`.`) character isn't used as a decimal or digit separator. - Improved the Program plugin stability when it fails to load a program's thumbnail at startup. - The use of Pinyin for querying some plugins can now be turned on in Settings. Thanks [@ChaseKnowlden](https://github.com/ChaseKnowlden)! - Refactored option types for plugin and added number, string and composite types to be used in the future. Thanks [@htcfreek](https://github.com/htcfreek)! - Fixed the entry for searching for Windows updates in the Settings plugin. Thanks [@htcfreek](https://github.com/htcfreek)! ### Quick Accent - The "All languages" character set is now calculated by programmatically querying the characters for every available language. Thanks [@dannysummerlin](https://github.com/dannysummerlin)! - Added é to the Norwegian and Swedish languages. Thanks [@Aaron-Junker](https://github.com/Aaron-Junker)! - Added a runtime cache to the "All languages" character set, to only calculate accents once per key. ### Registry Preview - Fixed focusing issues at startup. - Improved the data visualization to show data in a similar way to the Windows Registry Editor. Thanks [@dillydylann](https://github.com/dillydylann)! ### Runner - Fixed hanging when a bug report was generated from the flyout. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Settings - Improved the way the OOBE window reacts to Windows theme change. - Fixed an issue that made it impossible to change the "Switch between windows in the current zone" "Next window" shortcut for FancyZones. - Fixed a crash when entering a duplicate name for a color in the Color Picker page and improved clean up when cancelling a color edit. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Text Extractor - Text Extractor 2.0, with a new overlay, table mode and more Quality of Life improvements. Thanks [@TheJoeFin](https://github.com/TheJoeFin)! ### Documentation - SECURITY.md was updated from 0.0.2 to 0.0.9. Thanks [@Aaron-Junker](https://github.com/Aaron-Junker)! - Improved the README and main development document for clarity and completeness. Thanks [@codeofdusk](https://github.com/codeofdusk) and [@aprilbbrockhoeft](https://github.com/aprilbbrockhoeft)! ### Development - Fixed PowerToys Run DateTime plugin tests that were failing depending on locale, so that they can be run correctly on all dev machines. - Fixed PowerToys Run System plugin tests that were failing for certain network interfaces, so that they can be run correctly on all dev machines. Thanks [@snickler](https://github.com/snickler)! - Fixed a markdown bug on the GitHub /helped command. - Switched build pipelines to a new agent pool. Thanks [@DHowett](https://github.com/DHowett)! - New .cs files created in Visual Studio get the header added automatically. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! #### What is being planned for version 0.75 For [v0.75][github-next-release-work], we'll work on the items below: - Language selection - .NET 8 upgrade - Policy support for managing PowerToys Run plugins. *Attention*: A breaking change is planned (for 0.75), in which each plugin has to declare its identifier programmatically so that it can be controlled through GPO. For third-party plugin developers, please check https://github.com/microsoft/PowerToys/pull/27468 for more details. - New utility: Environment Variables Editor. Here's a Work in Progress preview: ![Environment Variables Editor WIP](https://github.com/microsoft/PowerToys/assets/26118718/f99532a8-5aae-481b-a662-19a95f4aa03d) - New Settings homepage. Here's a Work in Progress preview: ![PowerToys Settings Dashboard WIP](https://github.com/microsoft/PowerToys/assets/26118718/938a5715-0a9b-4fe9-9e15-adfec92da694) - Modernize and refresh the UX of PowerToys based on WPF. Here's Work in Progress previews for the modules "PowerToys Run" and "Color Picker": ![PowerToys Run UI refresh WIP](https://github.com/microsoft/PowerToys/assets/9866362/16903bcb-c18e-49fb-93ca-738b81957055) ![ColorPicker UI refresh WIP](https://github.com/microsoft/PowerToys/assets/9866362/ceebe54b-de63-4ce7-afcb-2cd4280bf4d1) - Stability / bug fixes ## PowerToys Community The PowerToys team is extremely grateful to have the [support of an amazing active community][community-link]. The work you do is incredibly important. PowerToys wouldn’t be nearly what it is today without your help filing bugs, updating documentation, guiding the design, or writing features. We want to say thank you and take time to recognize your work. Month by month, you directly help make PowerToys a better piece of software. ## Code of Conduct This project has adopted the [Microsoft Open Source Code of Conduct][oss-conduct-code]. ## Privacy Statement The application logs basic telemetry. Our Telemetry Data page (Coming Soon) has the trends from the telemetry. Please read the [Microsoft privacy statement][privacy-link] for more information. [oss-CLA]: https://cla.opensource.microsoft.com [oss-conduct-code]: CODE_OF_CONDUCT.md [community-link]: COMMUNITY.md [github-release-link]: https://aka.ms/installPowerToys [microsoft-store-link]: https://aka.ms/getPowertoys [winget-link]: https://github.com/microsoft/winget-cli#installing-the-client [roadmap]: https://github.com/microsoft/PowerToys/wiki/Roadmap [privacy-link]: http://go.microsoft.com/fwlink/?LinkId=521839 [vidConfOverview]: https://aka.ms/PowerToysOverview_VideoConference [loc-bug]: https://github.com/microsoft/PowerToys/issues/new?assignees=&labels=&template=translation_issue.md&title= [usingPowerToys-docs-link]: https://aka.ms/powertoys-docs
jaimecbernardo
a1e0bd51617b2bea189cb16324eecd0e13fa7b86
77063e0767a0619abfc339db3a2a564d27310b6c
...as is Color Picker
Jay-o-Way
423
microsoft/PowerToys
28,775
0.74 changelogs
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request Readme update for the 0.74 release. This will be copy / pasted for release notes.
null
2023-09-26 11:20:42+00:00
2023-09-26 21:36:51+00:00
README.md
# Microsoft PowerToys ![Hero image for Microsoft PowerToys](doc/images/overview/PT_hero_image.png) [How to use PowerToys][usingPowerToys-docs-link] | [Downloads & Release notes][github-release-link] | [Contributing to PowerToys](#contributing) | [What's Happening](#whats-happening) | [Roadmap](#powertoys-roadmap) ## Build status | Architecture | Solution (Main) | Solution (Stable) | Installer (Main) | |--------------|-----------------|-------------------|------------------| | x64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main&jobName=Build%20x64%20Release) | [![Build Status for Stable](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=stable&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_x64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | | ARM64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main) | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_arm64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | ## About Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. For more info on [PowerToys overviews and how to use the utilities][usingPowerToys-docs-link], or any other tools and resources for [Windows development environments](https://learn.microsoft.com/windows/dev-environment/overview), head over to [learn.microsoft.com][usingPowerToys-docs-link]! | | Current utilities: | | |--------------|--------------------|--------------| | [Always on Top](https://aka.ms/PowerToysOverview_AoT) | [PowerToys Awake](https://aka.ms/PowerToysOverview_Awake) | [Color Picker](https://aka.ms/PowerToysOverview_ColorPicker) | | [Crop And Lock](https://aka.ms/PowerToysOverview_CropAndLock) | [FancyZones](https://aka.ms/PowerToysOverview_FancyZones) | [File Explorer Add-ons](https://aka.ms/PowerToysOverview_FileExplorerAddOns) | | [File Locksmith](https://aka.ms/PowerToysOverview_FileLocksmith) | [Hosts File Editor](https://aka.ms/PowerToysOverview_HostsFileEditor) | [Image Resizer](https://aka.ms/PowerToysOverview_ImageResizer) | | [Keyboard Manager](https://aka.ms/PowerToysOverview_KeyboardManager) | [Mouse utilities](https://aka.ms/PowerToysOverview_MouseUtilities) | [Mouse Without Borders](https://aka.ms/PowerToysOverview_MouseWithoutBorders) | | [Peek](https://aka.ms/PowerToysOverview_Peek) | [Paste as Plain Text](https://aka.ms/PowerToysOverview_PastePlain) | [PowerRename](https://aka.ms/PowerToysOverview_PowerRename) | | [PowerToys Run](https://aka.ms/PowerToysOverview_PowerToysRun) | [Quick Accent](https://aka.ms/PowerToysOverview_QuickAccent) | [Registry Preview](https://aka.ms/PowerToysOverview_RegistryPreview) | | [Screen Ruler](https://aka.ms/PowerToysOverview_ScreenRuler) | [Shortcut Guide](https://aka.ms/PowerToysOverview_ShortcutGuide) | [Text Extractor](https://aka.ms/PowerToysOverview_TextExtractor) | | [Video Conference Mute](https://aka.ms/PowerToysOverview_VideoConference) | ## Installing and running Microsoft PowerToys ### Requirements - Windows 11 or Windows 10 version 2004 (code name 20H1 / build number 19041) or newer. - Our installer will install the following items: - [Microsoft Edge WebView2 Runtime](https://go.microsoft.com/fwlink/p/?LinkId=2124703) bootstrapper. This will install the latest version. ### Via GitHub with EXE [Recommended] Go to the [Microsoft PowerToys GitHub releases page][github-release-link] and click on `Assets` at the bottom to show the files available in the release. Please use the appropriate PowerToys installer that matches your machine's architecture and install scope. For most, it is `x64` and per-user. <!-- items that need to be updated release to release --> [github-next-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F47 [github-current-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F46 [ptUserX64]: https://github.com/microsoft/PowerToys/releases/download/v0.73.0/PowerToysUserSetup-0.73.0-x64.exe [ptUserArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.73.0/PowerToysUserSetup-0.73.0-arm64.exe [ptMachineX64]: https://github.com/microsoft/PowerToys/releases/download/v0.73.0/PowerToysSetup-0.73.0-x64.exe [ptMachineArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.73.0/PowerToysSetup-0.73.0-arm64.exe | Description | Filename | sha256 hash | |----------------|----------|-------------| | Per user - x64 | [PowerToysUserSetup-0.73.0-x64.exe][ptUserX64] | BA55D245BDD734FD6F19803DD706A3AB8E0ABC491591195534997CF2122D3B7E | | Per user - ARM64 | [PowerToysUserSetup-0.73.0-arm64.exe][ptUserArm64] | FBFA40EA5FFA05236A7CCDD05E5142EE0C93D7485B965784196ED9B086BFEBF4 | | Machine wide - x64 | [PowerToysSetup-0.73.0-x64.exe][ptMachineX64] | 7FDA06292C7C2E6DA5AEF88D8E9D3DE89D331E9E356A232289F9B37CE4503894 | | Machine wide - ARM64 | [PowerToysSetup-0.73.0-arm64.exe][ptMachineArm64] | 4260AA30A1F52F194EE07E9E7ECD9E9F4CF35289267F213BC933F7A5191AC17C | This is our preferred method. ### Via Microsoft Store Install from the [Microsoft Store's PowerToys page][microsoft-store-link]. You must be using the [new Microsoft Store](https://blogs.windows.com/windowsExperience/2021/06/24/building-a-new-open-microsoft-store-on-windows-11/) which is available for both Windows 11 and Windows 10. ### Via WinGet Download PowerToys from [WinGet][winget-link]. Updating PowerToys via winget will respect current PowerToys installation scope. To install PowerToys, run the following command from the command line / PowerShell: #### User scope installer [default] ```powershell winget install Microsoft.PowerToys -s winget ``` #### Machine-wide scope installer ```powershell winget install --scope machine Microsoft.PowerToys -s winget ``` ### Other install methods There are [community driven install methods](./doc/unofficialInstallMethods.md) such as Chocolatey and Scoop. If these are your preferred install solutions, you can find the install instructions there. ## Third-Party Run Plugins There is a collection of [third-party plugins](./doc/thirdPartyRunPlugins.md) created by the community that aren't distributed with PowerToys. ## Contributing This project welcomes contributions of all types. Besides coding features / bug fixes, other ways to assist include spec writing, design, documentation, and finding bugs. We are excited to work with the power user community to build a set of tools for helping you get the most out of Windows. We ask that **before you start work on a feature that you would like to contribute**, please read our [Contributor's Guide](CONTRIBUTING.md). We would be happy to work with you to figure out the best approach, provide guidance and mentorship throughout feature development, and help avoid any wasted or duplicate effort. Most contributions require you to agree to a [Contributor License Agreement (CLA)][oss-CLA] declaring that you grant us the rights to use your contribution and that you have permission to do so. For guidance on developing for PowerToys, please read the [developer docs](/doc/devdocs) for a detailed breakdown. This includes how to setup your computer to compile. ## What's Happening ### PowerToys Roadmap Our [prioritized roadmap][roadmap] of features and utilities that the core team is focusing on. ### 0.73 - August 2023 Update In this release, we focused on releasing new features, stability and improvements. **Highlights** - Keyboard manager now allows Numpad keys to be bound separately from the main keyboard. If using a previous configuration, only the main keyboard (not numpad) keys will be mapped. To restore the previous behavior, manually add separate bindings for numpad keys. - New utility: Crop And Lock allows you to crop a current application into a smaller window or just create a thumbnail. Focus the target window and press the shortcut to start cropping. - FancyZones code improvements and refactor. - Modernized ImageResizer UX. - PowerRename advanced counter functionality. ### General - Added missing CoUninitialize call in elevation logic. Thanks [@sredna](https://github.com/sredna)! - New utility: Crop And Lock. Thanks [@robmikh](https://github.com/robmikh)! and [@kevinguo305](https://github.com/kevinguo305)! - Added new /helped fabric bot command to GitHub repo. Thanks [@Aaron-Junker](https://github.com/Aaron-Junker)! - Fixed crashes caused by invalid settings. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Always On Top - Added border transparency. ### FancyZones - Fixed issue causing canvas zones being drawn only when dragging in the zone area. - Fixed user-defined default layout highlighting issue. - Refactored and improved code quality. - Fixed issue causing the wrong layout to be applied when duplicating a non-selected layout. ### File Locksmith - Icon update. Thanks [@jmaraujouy](https://github.com/jmaraujouy)! ### File Explorer add-ons - Fixed issue causing thumbnail previewers to lock files. - Open URIs from developer files in default browser. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Installer - Fixed PowerToys autorun after installing as SYSTEM user. - Removed CreateScheduledTask custom action to handle task creation only from runner code. ### Image Resizer - Moved from ModernWPF to WpfUI to refresh and modernize UI/UX. Thanks [@niels9001](https://github.com/niels9001)! ### Keyboard Manager - Rephrased labels to enhance clarity. Thanks [@Jay-o-Way](https://github.com/Jay-o-Way)! - Keyboard manager now allows Numpad keys to be bound separately from the main keyboard. If using a previous configuration, only the main keyboard (not numpad) keys will be mapped. To restore the previous behavior, manually add separate bindings for numpad keys. ### Mouse Highlighter - The highlighter is now visible in "Always on Top" windows. - Added settings for automatic activation on startup. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Mouse Pointer Crosshairs - Added settings for automatic activation on startup. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Peek - Show correct file type for shortcuts. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Fixed issue causing the wrong file size to be displayed. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Show 1 byte instead of 1 bytes file size. Thanks [@Deepak-Sangle](https://github.com/Deepak-Sangle)! - Open URIs from developer files in the default browser. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Show a thumbnail and fallback to an icon for unsupported files. Thanks [@pedrolamas](https://github.com/pedrolamas)! ### PowerRename - Updated the OOBE gif. Thanks [@ChaseKnowlden](https://github.com/ChaseKnowlden)! - Localized the renamed parts combo box. - Introduced advanced counter functionality. - Added remember last window size logic and optimized sorting of items. - Enable "Enumerate items" option by default. ### PowerToys Run - Fixed an issue causing original search to be abandoned when cycling through results. - Updated device and bluetooth results for Settings plugin. Thanks [@htcfreek](https://github.com/htcfreek)! - Fixed InvalidOperationException exception thrown. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Add Base64 Decoding function to the Value Generator plugin. Thanks [@LeagueOfPoro](https://github.com/LeagueOfPoro)! - Added a Keep shell open option for Shell plugin. - Added Crop And Lock to PowerToys plugin. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Registry Preview - Updated AppBarButtons to use an explicit AppBarButton.Icon. Thanks [@randyrants](https://github.com/randyrants)! - Fixed crash on clicking Save As button. ### Runner - Removed unneeded RegisterWindowMessage from tray icon logic. Thanks [@sredna](https://github.com/sredna)! - Fixed startup looping issue. - Improved old logs and installers cleanup logic. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Screen Ruler - Use proper resources file. ### Settings - Fixed issue causing problems with modifier keys and ShortcutControl. Thanks [@sh0ckj0ckey](https://github.com/sh0ckj0ckey)! - Fixed crash when clicking "Windows color settings" link. - Added support for launching Settings app directly. - Fixed issue causing DisplayDescription not showing for PowerToys Run PluginAdditionalOption. - Fixed issue causing FileLocksmith 'Show File Locksmith in' setting not showing correct value. - Fixed issue causing Awake on/off toggle in Settings flyout not to work when Settings Awake page is opened. ### Documentation - Added documentation for PowerToys Run third-party plugins. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Fixed broken links in keyboardmanagerui.md. Thanks [@shubhsardana29](https://github.com/shubhsardana29)! - Updated core team in COMMUNITY.md. - Fixed broken links in ui-architecture.md. Thanks [@SamB](https://github.com/SamB)! - Updated community.valuegenerator.md with Base64DecodeRequest description. ### Development - Updated test packages and StyleCop. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Condense NuGet Restore into MSBuild Tasks. Thanks [@snickler](https://github.com/snickler)! #### What is being planned for version 0.74 For [v0.74][github-next-release-work], we'll work on the items below: - Language selection - Modernize and refresh the UX of PowerToys based on WPF - Stability / bug fixes - Peek: UI improvements ## PowerToys Community The PowerToys team is extremely grateful to have the [support of an amazing active community][community-link]. The work you do is incredibly important. PowerToys wouldn’t be nearly what it is today without your help filing bugs, updating documentation, guiding the design, or writing features. We want to say thank you and take time to recognize your work. Month by month, you directly help make PowerToys a better piece of software. ## Code of Conduct This project has adopted the [Microsoft Open Source Code of Conduct][oss-conduct-code]. ## Privacy Statement The application logs basic telemetry. Our Telemetry Data page (Coming Soon) has the trends from the telemetry. Please read the [Microsoft privacy statement][privacy-link] for more information. [oss-CLA]: https://cla.opensource.microsoft.com [oss-conduct-code]: CODE_OF_CONDUCT.md [community-link]: COMMUNITY.md [github-release-link]: https://aka.ms/installPowerToys [microsoft-store-link]: https://aka.ms/getPowertoys [winget-link]: https://github.com/microsoft/winget-cli#installing-the-client [roadmap]: https://github.com/microsoft/PowerToys/wiki/Roadmap [privacy-link]: http://go.microsoft.com/fwlink/?LinkId=521839 [vidConfOverview]: https://aka.ms/PowerToysOverview_VideoConference [loc-bug]: https://github.com/microsoft/PowerToys/issues/new?assignees=&labels=&template=translation_issue.md&title= [usingPowerToys-docs-link]: https://aka.ms/powertoys-docs
# Microsoft PowerToys ![Hero image for Microsoft PowerToys](doc/images/overview/PT_hero_image.png) [How to use PowerToys][usingPowerToys-docs-link] | [Downloads & Release notes][github-release-link] | [Contributing to PowerToys](#contributing) | [What's Happening](#whats-happening) | [Roadmap](#powertoys-roadmap) ## Build status | Architecture | Solution (Main) | Solution (Stable) | Installer (Main) | |--------------|-----------------|-------------------|------------------| | x64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main&jobName=Build%20x64%20Release) | [![Build Status for Stable](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=stable&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_x64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | | ARM64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main) | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_arm64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | ## About Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. For more info on [PowerToys overviews and how to use the utilities][usingPowerToys-docs-link], or any other tools and resources for [Windows development environments](https://learn.microsoft.com/windows/dev-environment/overview), head over to [learn.microsoft.com][usingPowerToys-docs-link]! | | Current utilities: | | |--------------|--------------------|--------------| | [Always on Top](https://aka.ms/PowerToysOverview_AoT) | [PowerToys Awake](https://aka.ms/PowerToysOverview_Awake) | [Color Picker](https://aka.ms/PowerToysOverview_ColorPicker) | | [Crop And Lock](https://aka.ms/PowerToysOverview_CropAndLock) | [FancyZones](https://aka.ms/PowerToysOverview_FancyZones) | [File Explorer Add-ons](https://aka.ms/PowerToysOverview_FileExplorerAddOns) | | [File Locksmith](https://aka.ms/PowerToysOverview_FileLocksmith) | [Hosts File Editor](https://aka.ms/PowerToysOverview_HostsFileEditor) | [Image Resizer](https://aka.ms/PowerToysOverview_ImageResizer) | | [Keyboard Manager](https://aka.ms/PowerToysOverview_KeyboardManager) | [Mouse utilities](https://aka.ms/PowerToysOverview_MouseUtilities) | [Mouse Without Borders](https://aka.ms/PowerToysOverview_MouseWithoutBorders) | | [Peek](https://aka.ms/PowerToysOverview_Peek) | [Paste as Plain Text](https://aka.ms/PowerToysOverview_PastePlain) | [PowerRename](https://aka.ms/PowerToysOverview_PowerRename) | | [PowerToys Run](https://aka.ms/PowerToysOverview_PowerToysRun) | [Quick Accent](https://aka.ms/PowerToysOverview_QuickAccent) | [Registry Preview](https://aka.ms/PowerToysOverview_RegistryPreview) | | [Screen Ruler](https://aka.ms/PowerToysOverview_ScreenRuler) | [Shortcut Guide](https://aka.ms/PowerToysOverview_ShortcutGuide) | [Text Extractor](https://aka.ms/PowerToysOverview_TextExtractor) | | [Video Conference Mute](https://aka.ms/PowerToysOverview_VideoConference) | ## Installing and running Microsoft PowerToys ### Requirements - Windows 11 or Windows 10 version 2004 (code name 20H1 / build number 19041) or newer. - Our installer will install the following items: - [Microsoft Edge WebView2 Runtime](https://go.microsoft.com/fwlink/p/?LinkId=2124703) bootstrapper. This will install the latest version. ### Via GitHub with EXE [Recommended] Go to the [Microsoft PowerToys GitHub releases page][github-release-link] and click on `Assets` at the bottom to show the files available in the release. Please use the appropriate PowerToys installer that matches your machine's architecture and install scope. For most, it is `x64` and per-user. <!-- items that need to be updated release to release --> [github-next-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F48 [github-current-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F47 [ptUserX64]: https://github.com/microsoft/PowerToys/releases/download/v0.74.0/PowerToysUserSetup-0.74.0-x64.exe [ptUserArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.74.0/PowerToysUserSetup-0.74.0-arm64.exe [ptMachineX64]: https://github.com/microsoft/PowerToys/releases/download/v0.74.0/PowerToysSetup-0.74.0-x64.exe [ptMachineArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.74.0/PowerToysSetup-0.74.0-arm64.exe | Description | Filename | sha256 hash | |----------------|----------|-------------| | Per user - x64 | [PowerToysUserSetup-0.74.0-x64.exe][ptUserX64] | 1C4ECE9F11488BAFFAE6B76D2B0504FA18BFFEA11EBC38BCC87F5D86AEA87C7C | | Per user - ARM64 | [PowerToysUserSetup-0.74.0-arm64.exe][ptUserArm64] | 4F3842FAB0839A361A15A06B7720BA8A0FE7F9AF98EA94245C08DEF37678CA4A | | Machine wide - x64 | [PowerToysSetup-0.74.0-x64.exe][ptMachineX64] | 648992E8CEA08F3C63C7CCBD554ADDF500ECBC4560187310BC12E6CB9C2F38E3 | | Machine wide - ARM64 | [PowerToysSetup-0.74.0-arm64.exe][ptMachineArm64] | 2B6D92F1A0EA688C7EE882050AC9B030C8B3A18765163FB6D67E5E694A4D4FE3 | This is our preferred method. ### Via Microsoft Store Install from the [Microsoft Store's PowerToys page][microsoft-store-link]. You must be using the [new Microsoft Store](https://blogs.windows.com/windowsExperience/2021/06/24/building-a-new-open-microsoft-store-on-windows-11/) which is available for both Windows 11 and Windows 10. ### Via WinGet Download PowerToys from [WinGet][winget-link]. Updating PowerToys via winget will respect current PowerToys installation scope. To install PowerToys, run the following command from the command line / PowerShell: #### User scope installer [default] ```powershell winget install Microsoft.PowerToys -s winget ``` #### Machine-wide scope installer ```powershell winget install --scope machine Microsoft.PowerToys -s winget ``` ### Other install methods There are [community driven install methods](./doc/unofficialInstallMethods.md) such as Chocolatey and Scoop. If these are your preferred install solutions, you can find the install instructions there. ## Third-Party Run Plugins There is a collection of [third-party plugins](./doc/thirdPartyRunPlugins.md) created by the community that aren't distributed with PowerToys. ## Contributing This project welcomes contributions of all types. Besides coding features / bug fixes, other ways to assist include spec writing, design, documentation, and finding bugs. We are excited to work with the power user community to build a set of tools for helping you get the most out of Windows. We ask that **before you start work on a feature that you would like to contribute**, please read our [Contributor's Guide](CONTRIBUTING.md). We would be happy to work with you to figure out the best approach, provide guidance and mentorship throughout feature development, and help avoid any wasted or duplicate effort. Most contributions require you to agree to a [Contributor License Agreement (CLA)][oss-CLA] declaring that you grant us the rights to use your contribution and that you have permission to do so. For guidance on developing for PowerToys, please read the [developer docs](/doc/devdocs) for a detailed breakdown. This includes how to setup your computer to compile. ## What's Happening ### PowerToys Roadmap Our [prioritized roadmap][roadmap] of features and utilities that the core team is focusing on. ### 0.74 - September 2023 Update In this release, we focused on stability and improvements. **Highlights** - Upgraded to Windows App SDK 1.4.1, increasing stability of WinUI3 utilities. Thanks [@dongle-the-gadget](https://github.com/dongle-the-gadget) for starting the upgrade! - Text Extractor was upgraded to its version 2.0, with a new overlay, table mode and more Quality of Life improvements. Thanks [@TheJoeFin](https://github.com/TheJoeFin)! - Improved FancyZones stability, fixing some layout resets and improving handling of newly created windows on Windows 11. - Fixed many silent crashes that were reported to Watson and the user's event viewer. ### General - Turning animations off in Windows Settings will now also turn them off in PowerToys. - Upgraded the Windows App SDK dependency to 1.4.1. Thanks [@dongle-the-gadget](https://github.com/dongle-the-gadget) for the original 1.4.0 upgrade! - Show in the thumbnail label and application titles when running as administrator. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Upgraded the Win UI Community Toolkit dependency to 8.0. Thanks [@niels9001](https://github.com/niels9001)! ### Awake - Added down-sampled variants to the application's icon. Thanks [@morriscurtis](https://github.com/morriscurtis)! ### Color Picker - After adding a new color in the editor, the history will scroll the new color into view. Thanks [@peerpalo](https://github.com/peerpalo)! ### Crop and Lock - Fixed a Crop and Lock crash that would occur when trying to reparent a window crashes the target application. An error message is shown instead. ### FancyZones - Set the process and main thread priority to normal. - Fixed handling newly created windows on Windows 11. - Fixed scenarios where opening the FancyZones Editor would reset the layouts. ### File Explorer add-ons - Optimized CPU usage for generating SVG thumbnails. - Improved handling of Gcode Thumbnails, including JPG and QOI formats. Thanks [@pedrolamas](https://github.com/pedrolamas)! - Better handled errors when sending telemetry, which were causing reported crashes. - Fixed some thumbnails not being shown centered like before the optimization. ### File Locksmith - Shows files opened by processes with PID greater than 65535. Thanks [@poke30744](https://github.com/poke30744)! - Fixed a GDI object leak in the context menu which would crash Explorer. ### Find My Mouse - Added new activation methods, including by hotkey. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Hosts File Editor - Ignore the default ACME sample entries in the hosts file. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Improved save error handling and added better error messages. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Corrected a check for an error when signaling the application to start as administrator. - Refactored the context menu. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Fixed dialogs overlapping the title bar after the upgrade to Windows App SDK 1.4. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Keyboard Manager - Distinguish between the regular minus key and the numpad minus key. ### Mouse Without Borders - Fixed a crash when trying to restart the application. ### Peek - Using Peek on HTML files will show a white background by default, similar to a browser's default behavior. - Fix a white flash on Dark theme when switching file and improved the development file preview detection and adjustments. ### PowerRename - Fixed a crash caused by big counter values on the new enumeration method. ### PowerToys Run - It's now possible to select which shell is used by the Shell plugin. - A combobox option type was added to the plugin options. - Fixed a bug in the Calculator plugin that was causing decimal numbers to be misinterpreted on locales where the dot (`.`) character isn't used as a decimal or digit separator. - Improved the Program plugin stability when it fails to load a program's thumbnail at startup. - The use of Pinyin for querying some plugins can now be turned on in Settings. Thanks [@ChaseKnowlden](https://github.com/ChaseKnowlden)! - Refactored option types for plugin and added number, string and composite types to be used in the future. Thanks [@htcfreek](https://github.com/htcfreek)! - Fixed the entry for searching for Windows updates in the Settings plugin. Thanks [@htcfreek](https://github.com/htcfreek)! ### Quick Accent - The "All languages" character set is now calculated by programmatically querying the characters for every available language. Thanks [@dannysummerlin](https://github.com/dannysummerlin)! - Added é to the Norwegian and Swedish languages. Thanks [@Aaron-Junker](https://github.com/Aaron-Junker)! - Added a runtime cache to the "All languages" character set, to only calculate accents once per key. ### Registry Preview - Fixed focusing issues at startup. - Improved the data visualization to show data in a similar way to the Windows Registry Editor. Thanks [@dillydylann](https://github.com/dillydylann)! ### Runner - Fixed hanging when a bug report was generated from the flyout. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Settings - Improved the way the OOBE window reacts to Windows theme change. - Fixed an issue that made it impossible to change the "Switch between windows in the current zone" "Next window" shortcut for FancyZones. - Fixed a crash when entering a duplicate name for a color in the Color Picker page and improved clean up when cancelling a color edit. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Text Extractor - Text Extractor 2.0, with a new overlay, table mode and more Quality of Life improvements. Thanks [@TheJoeFin](https://github.com/TheJoeFin)! ### Documentation - SECURITY.md was updated from 0.0.2 to 0.0.9. Thanks [@Aaron-Junker](https://github.com/Aaron-Junker)! - Improved the README and main development document for clarity and completeness. Thanks [@codeofdusk](https://github.com/codeofdusk) and [@aprilbbrockhoeft](https://github.com/aprilbbrockhoeft)! ### Development - Fixed PowerToys Run DateTime plugin tests that were failing depending on locale, so that they can be run correctly on all dev machines. - Fixed PowerToys Run System plugin tests that were failing for certain network interfaces, so that they can be run correctly on all dev machines. Thanks [@snickler](https://github.com/snickler)! - Fixed a markdown bug on the GitHub /helped command. - Switched build pipelines to a new agent pool. Thanks [@DHowett](https://github.com/DHowett)! - New .cs files created in Visual Studio get the header added automatically. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! #### What is being planned for version 0.75 For [v0.75][github-next-release-work], we'll work on the items below: - Language selection - .NET 8 upgrade - Policy support for managing PowerToys Run plugins. *Attention*: A breaking change is planned (for 0.75), in which each plugin has to declare its identifier programmatically so that it can be controlled through GPO. For third-party plugin developers, please check https://github.com/microsoft/PowerToys/pull/27468 for more details. - New utility: Environment Variables Editor. Here's a Work in Progress preview: ![Environment Variables Editor WIP](https://github.com/microsoft/PowerToys/assets/26118718/f99532a8-5aae-481b-a662-19a95f4aa03d) - New Settings homepage. Here's a Work in Progress preview: ![PowerToys Settings Dashboard WIP](https://github.com/microsoft/PowerToys/assets/26118718/938a5715-0a9b-4fe9-9e15-adfec92da694) - Modernize and refresh the UX of PowerToys based on WPF. Here's Work in Progress previews for the modules "PowerToys Run" and "Color Picker": ![PowerToys Run UI refresh WIP](https://github.com/microsoft/PowerToys/assets/9866362/16903bcb-c18e-49fb-93ca-738b81957055) ![ColorPicker UI refresh WIP](https://github.com/microsoft/PowerToys/assets/9866362/ceebe54b-de63-4ce7-afcb-2cd4280bf4d1) - Stability / bug fixes ## PowerToys Community The PowerToys team is extremely grateful to have the [support of an amazing active community][community-link]. The work you do is incredibly important. PowerToys wouldn’t be nearly what it is today without your help filing bugs, updating documentation, guiding the design, or writing features. We want to say thank you and take time to recognize your work. Month by month, you directly help make PowerToys a better piece of software. ## Code of Conduct This project has adopted the [Microsoft Open Source Code of Conduct][oss-conduct-code]. ## Privacy Statement The application logs basic telemetry. Our Telemetry Data page (Coming Soon) has the trends from the telemetry. Please read the [Microsoft privacy statement][privacy-link] for more information. [oss-CLA]: https://cla.opensource.microsoft.com [oss-conduct-code]: CODE_OF_CONDUCT.md [community-link]: COMMUNITY.md [github-release-link]: https://aka.ms/installPowerToys [microsoft-store-link]: https://aka.ms/getPowertoys [winget-link]: https://github.com/microsoft/winget-cli#installing-the-client [roadmap]: https://github.com/microsoft/PowerToys/wiki/Roadmap [privacy-link]: http://go.microsoft.com/fwlink/?LinkId=521839 [vidConfOverview]: https://aka.ms/PowerToysOverview_VideoConference [loc-bug]: https://github.com/microsoft/PowerToys/issues/new?assignees=&labels=&template=translation_issue.md&title= [usingPowerToys-docs-link]: https://aka.ms/powertoys-docs
jaimecbernardo
a1e0bd51617b2bea189cb16324eecd0e13fa7b86
77063e0767a0619abfc339db3a2a564d27310b6c
@Jay-o-Way , I've rephrased to `Here's Work in Progress previews for the modules "PowerToys Run" and "Color Picker":` What do you think? :)
jaimecbernardo
424
microsoft/PowerToys
28,775
0.74 changelogs
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request Readme update for the 0.74 release. This will be copy / pasted for release notes.
null
2023-09-26 11:20:42+00:00
2023-09-26 21:36:51+00:00
README.md
# Microsoft PowerToys ![Hero image for Microsoft PowerToys](doc/images/overview/PT_hero_image.png) [How to use PowerToys][usingPowerToys-docs-link] | [Downloads & Release notes][github-release-link] | [Contributing to PowerToys](#contributing) | [What's Happening](#whats-happening) | [Roadmap](#powertoys-roadmap) ## Build status | Architecture | Solution (Main) | Solution (Stable) | Installer (Main) | |--------------|-----------------|-------------------|------------------| | x64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main&jobName=Build%20x64%20Release) | [![Build Status for Stable](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=stable&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_x64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | | ARM64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main) | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_arm64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | ## About Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. For more info on [PowerToys overviews and how to use the utilities][usingPowerToys-docs-link], or any other tools and resources for [Windows development environments](https://learn.microsoft.com/windows/dev-environment/overview), head over to [learn.microsoft.com][usingPowerToys-docs-link]! | | Current utilities: | | |--------------|--------------------|--------------| | [Always on Top](https://aka.ms/PowerToysOverview_AoT) | [PowerToys Awake](https://aka.ms/PowerToysOverview_Awake) | [Color Picker](https://aka.ms/PowerToysOverview_ColorPicker) | | [Crop And Lock](https://aka.ms/PowerToysOverview_CropAndLock) | [FancyZones](https://aka.ms/PowerToysOverview_FancyZones) | [File Explorer Add-ons](https://aka.ms/PowerToysOverview_FileExplorerAddOns) | | [File Locksmith](https://aka.ms/PowerToysOverview_FileLocksmith) | [Hosts File Editor](https://aka.ms/PowerToysOverview_HostsFileEditor) | [Image Resizer](https://aka.ms/PowerToysOverview_ImageResizer) | | [Keyboard Manager](https://aka.ms/PowerToysOverview_KeyboardManager) | [Mouse utilities](https://aka.ms/PowerToysOverview_MouseUtilities) | [Mouse Without Borders](https://aka.ms/PowerToysOverview_MouseWithoutBorders) | | [Peek](https://aka.ms/PowerToysOverview_Peek) | [Paste as Plain Text](https://aka.ms/PowerToysOverview_PastePlain) | [PowerRename](https://aka.ms/PowerToysOverview_PowerRename) | | [PowerToys Run](https://aka.ms/PowerToysOverview_PowerToysRun) | [Quick Accent](https://aka.ms/PowerToysOverview_QuickAccent) | [Registry Preview](https://aka.ms/PowerToysOverview_RegistryPreview) | | [Screen Ruler](https://aka.ms/PowerToysOverview_ScreenRuler) | [Shortcut Guide](https://aka.ms/PowerToysOverview_ShortcutGuide) | [Text Extractor](https://aka.ms/PowerToysOverview_TextExtractor) | | [Video Conference Mute](https://aka.ms/PowerToysOverview_VideoConference) | ## Installing and running Microsoft PowerToys ### Requirements - Windows 11 or Windows 10 version 2004 (code name 20H1 / build number 19041) or newer. - Our installer will install the following items: - [Microsoft Edge WebView2 Runtime](https://go.microsoft.com/fwlink/p/?LinkId=2124703) bootstrapper. This will install the latest version. ### Via GitHub with EXE [Recommended] Go to the [Microsoft PowerToys GitHub releases page][github-release-link] and click on `Assets` at the bottom to show the files available in the release. Please use the appropriate PowerToys installer that matches your machine's architecture and install scope. For most, it is `x64` and per-user. <!-- items that need to be updated release to release --> [github-next-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F47 [github-current-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F46 [ptUserX64]: https://github.com/microsoft/PowerToys/releases/download/v0.73.0/PowerToysUserSetup-0.73.0-x64.exe [ptUserArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.73.0/PowerToysUserSetup-0.73.0-arm64.exe [ptMachineX64]: https://github.com/microsoft/PowerToys/releases/download/v0.73.0/PowerToysSetup-0.73.0-x64.exe [ptMachineArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.73.0/PowerToysSetup-0.73.0-arm64.exe | Description | Filename | sha256 hash | |----------------|----------|-------------| | Per user - x64 | [PowerToysUserSetup-0.73.0-x64.exe][ptUserX64] | BA55D245BDD734FD6F19803DD706A3AB8E0ABC491591195534997CF2122D3B7E | | Per user - ARM64 | [PowerToysUserSetup-0.73.0-arm64.exe][ptUserArm64] | FBFA40EA5FFA05236A7CCDD05E5142EE0C93D7485B965784196ED9B086BFEBF4 | | Machine wide - x64 | [PowerToysSetup-0.73.0-x64.exe][ptMachineX64] | 7FDA06292C7C2E6DA5AEF88D8E9D3DE89D331E9E356A232289F9B37CE4503894 | | Machine wide - ARM64 | [PowerToysSetup-0.73.0-arm64.exe][ptMachineArm64] | 4260AA30A1F52F194EE07E9E7ECD9E9F4CF35289267F213BC933F7A5191AC17C | This is our preferred method. ### Via Microsoft Store Install from the [Microsoft Store's PowerToys page][microsoft-store-link]. You must be using the [new Microsoft Store](https://blogs.windows.com/windowsExperience/2021/06/24/building-a-new-open-microsoft-store-on-windows-11/) which is available for both Windows 11 and Windows 10. ### Via WinGet Download PowerToys from [WinGet][winget-link]. Updating PowerToys via winget will respect current PowerToys installation scope. To install PowerToys, run the following command from the command line / PowerShell: #### User scope installer [default] ```powershell winget install Microsoft.PowerToys -s winget ``` #### Machine-wide scope installer ```powershell winget install --scope machine Microsoft.PowerToys -s winget ``` ### Other install methods There are [community driven install methods](./doc/unofficialInstallMethods.md) such as Chocolatey and Scoop. If these are your preferred install solutions, you can find the install instructions there. ## Third-Party Run Plugins There is a collection of [third-party plugins](./doc/thirdPartyRunPlugins.md) created by the community that aren't distributed with PowerToys. ## Contributing This project welcomes contributions of all types. Besides coding features / bug fixes, other ways to assist include spec writing, design, documentation, and finding bugs. We are excited to work with the power user community to build a set of tools for helping you get the most out of Windows. We ask that **before you start work on a feature that you would like to contribute**, please read our [Contributor's Guide](CONTRIBUTING.md). We would be happy to work with you to figure out the best approach, provide guidance and mentorship throughout feature development, and help avoid any wasted or duplicate effort. Most contributions require you to agree to a [Contributor License Agreement (CLA)][oss-CLA] declaring that you grant us the rights to use your contribution and that you have permission to do so. For guidance on developing for PowerToys, please read the [developer docs](/doc/devdocs) for a detailed breakdown. This includes how to setup your computer to compile. ## What's Happening ### PowerToys Roadmap Our [prioritized roadmap][roadmap] of features and utilities that the core team is focusing on. ### 0.73 - August 2023 Update In this release, we focused on releasing new features, stability and improvements. **Highlights** - Keyboard manager now allows Numpad keys to be bound separately from the main keyboard. If using a previous configuration, only the main keyboard (not numpad) keys will be mapped. To restore the previous behavior, manually add separate bindings for numpad keys. - New utility: Crop And Lock allows you to crop a current application into a smaller window or just create a thumbnail. Focus the target window and press the shortcut to start cropping. - FancyZones code improvements and refactor. - Modernized ImageResizer UX. - PowerRename advanced counter functionality. ### General - Added missing CoUninitialize call in elevation logic. Thanks [@sredna](https://github.com/sredna)! - New utility: Crop And Lock. Thanks [@robmikh](https://github.com/robmikh)! and [@kevinguo305](https://github.com/kevinguo305)! - Added new /helped fabric bot command to GitHub repo. Thanks [@Aaron-Junker](https://github.com/Aaron-Junker)! - Fixed crashes caused by invalid settings. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Always On Top - Added border transparency. ### FancyZones - Fixed issue causing canvas zones being drawn only when dragging in the zone area. - Fixed user-defined default layout highlighting issue. - Refactored and improved code quality. - Fixed issue causing the wrong layout to be applied when duplicating a non-selected layout. ### File Locksmith - Icon update. Thanks [@jmaraujouy](https://github.com/jmaraujouy)! ### File Explorer add-ons - Fixed issue causing thumbnail previewers to lock files. - Open URIs from developer files in default browser. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Installer - Fixed PowerToys autorun after installing as SYSTEM user. - Removed CreateScheduledTask custom action to handle task creation only from runner code. ### Image Resizer - Moved from ModernWPF to WpfUI to refresh and modernize UI/UX. Thanks [@niels9001](https://github.com/niels9001)! ### Keyboard Manager - Rephrased labels to enhance clarity. Thanks [@Jay-o-Way](https://github.com/Jay-o-Way)! - Keyboard manager now allows Numpad keys to be bound separately from the main keyboard. If using a previous configuration, only the main keyboard (not numpad) keys will be mapped. To restore the previous behavior, manually add separate bindings for numpad keys. ### Mouse Highlighter - The highlighter is now visible in "Always on Top" windows. - Added settings for automatic activation on startup. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Mouse Pointer Crosshairs - Added settings for automatic activation on startup. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Peek - Show correct file type for shortcuts. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Fixed issue causing the wrong file size to be displayed. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Show 1 byte instead of 1 bytes file size. Thanks [@Deepak-Sangle](https://github.com/Deepak-Sangle)! - Open URIs from developer files in the default browser. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Show a thumbnail and fallback to an icon for unsupported files. Thanks [@pedrolamas](https://github.com/pedrolamas)! ### PowerRename - Updated the OOBE gif. Thanks [@ChaseKnowlden](https://github.com/ChaseKnowlden)! - Localized the renamed parts combo box. - Introduced advanced counter functionality. - Added remember last window size logic and optimized sorting of items. - Enable "Enumerate items" option by default. ### PowerToys Run - Fixed an issue causing original search to be abandoned when cycling through results. - Updated device and bluetooth results for Settings plugin. Thanks [@htcfreek](https://github.com/htcfreek)! - Fixed InvalidOperationException exception thrown. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Add Base64 Decoding function to the Value Generator plugin. Thanks [@LeagueOfPoro](https://github.com/LeagueOfPoro)! - Added a Keep shell open option for Shell plugin. - Added Crop And Lock to PowerToys plugin. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Registry Preview - Updated AppBarButtons to use an explicit AppBarButton.Icon. Thanks [@randyrants](https://github.com/randyrants)! - Fixed crash on clicking Save As button. ### Runner - Removed unneeded RegisterWindowMessage from tray icon logic. Thanks [@sredna](https://github.com/sredna)! - Fixed startup looping issue. - Improved old logs and installers cleanup logic. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Screen Ruler - Use proper resources file. ### Settings - Fixed issue causing problems with modifier keys and ShortcutControl. Thanks [@sh0ckj0ckey](https://github.com/sh0ckj0ckey)! - Fixed crash when clicking "Windows color settings" link. - Added support for launching Settings app directly. - Fixed issue causing DisplayDescription not showing for PowerToys Run PluginAdditionalOption. - Fixed issue causing FileLocksmith 'Show File Locksmith in' setting not showing correct value. - Fixed issue causing Awake on/off toggle in Settings flyout not to work when Settings Awake page is opened. ### Documentation - Added documentation for PowerToys Run third-party plugins. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Fixed broken links in keyboardmanagerui.md. Thanks [@shubhsardana29](https://github.com/shubhsardana29)! - Updated core team in COMMUNITY.md. - Fixed broken links in ui-architecture.md. Thanks [@SamB](https://github.com/SamB)! - Updated community.valuegenerator.md with Base64DecodeRequest description. ### Development - Updated test packages and StyleCop. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Condense NuGet Restore into MSBuild Tasks. Thanks [@snickler](https://github.com/snickler)! #### What is being planned for version 0.74 For [v0.74][github-next-release-work], we'll work on the items below: - Language selection - Modernize and refresh the UX of PowerToys based on WPF - Stability / bug fixes - Peek: UI improvements ## PowerToys Community The PowerToys team is extremely grateful to have the [support of an amazing active community][community-link]. The work you do is incredibly important. PowerToys wouldn’t be nearly what it is today without your help filing bugs, updating documentation, guiding the design, or writing features. We want to say thank you and take time to recognize your work. Month by month, you directly help make PowerToys a better piece of software. ## Code of Conduct This project has adopted the [Microsoft Open Source Code of Conduct][oss-conduct-code]. ## Privacy Statement The application logs basic telemetry. Our Telemetry Data page (Coming Soon) has the trends from the telemetry. Please read the [Microsoft privacy statement][privacy-link] for more information. [oss-CLA]: https://cla.opensource.microsoft.com [oss-conduct-code]: CODE_OF_CONDUCT.md [community-link]: COMMUNITY.md [github-release-link]: https://aka.ms/installPowerToys [microsoft-store-link]: https://aka.ms/getPowertoys [winget-link]: https://github.com/microsoft/winget-cli#installing-the-client [roadmap]: https://github.com/microsoft/PowerToys/wiki/Roadmap [privacy-link]: http://go.microsoft.com/fwlink/?LinkId=521839 [vidConfOverview]: https://aka.ms/PowerToysOverview_VideoConference [loc-bug]: https://github.com/microsoft/PowerToys/issues/new?assignees=&labels=&template=translation_issue.md&title= [usingPowerToys-docs-link]: https://aka.ms/powertoys-docs
# Microsoft PowerToys ![Hero image for Microsoft PowerToys](doc/images/overview/PT_hero_image.png) [How to use PowerToys][usingPowerToys-docs-link] | [Downloads & Release notes][github-release-link] | [Contributing to PowerToys](#contributing) | [What's Happening](#whats-happening) | [Roadmap](#powertoys-roadmap) ## Build status | Architecture | Solution (Main) | Solution (Stable) | Installer (Main) | |--------------|-----------------|-------------------|------------------| | x64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main&jobName=Build%20x64%20Release) | [![Build Status for Stable](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=stable&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_x64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | | ARM64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main) | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_arm64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | ## About Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. For more info on [PowerToys overviews and how to use the utilities][usingPowerToys-docs-link], or any other tools and resources for [Windows development environments](https://learn.microsoft.com/windows/dev-environment/overview), head over to [learn.microsoft.com][usingPowerToys-docs-link]! | | Current utilities: | | |--------------|--------------------|--------------| | [Always on Top](https://aka.ms/PowerToysOverview_AoT) | [PowerToys Awake](https://aka.ms/PowerToysOverview_Awake) | [Color Picker](https://aka.ms/PowerToysOverview_ColorPicker) | | [Crop And Lock](https://aka.ms/PowerToysOverview_CropAndLock) | [FancyZones](https://aka.ms/PowerToysOverview_FancyZones) | [File Explorer Add-ons](https://aka.ms/PowerToysOverview_FileExplorerAddOns) | | [File Locksmith](https://aka.ms/PowerToysOverview_FileLocksmith) | [Hosts File Editor](https://aka.ms/PowerToysOverview_HostsFileEditor) | [Image Resizer](https://aka.ms/PowerToysOverview_ImageResizer) | | [Keyboard Manager](https://aka.ms/PowerToysOverview_KeyboardManager) | [Mouse utilities](https://aka.ms/PowerToysOverview_MouseUtilities) | [Mouse Without Borders](https://aka.ms/PowerToysOverview_MouseWithoutBorders) | | [Peek](https://aka.ms/PowerToysOverview_Peek) | [Paste as Plain Text](https://aka.ms/PowerToysOverview_PastePlain) | [PowerRename](https://aka.ms/PowerToysOverview_PowerRename) | | [PowerToys Run](https://aka.ms/PowerToysOverview_PowerToysRun) | [Quick Accent](https://aka.ms/PowerToysOverview_QuickAccent) | [Registry Preview](https://aka.ms/PowerToysOverview_RegistryPreview) | | [Screen Ruler](https://aka.ms/PowerToysOverview_ScreenRuler) | [Shortcut Guide](https://aka.ms/PowerToysOverview_ShortcutGuide) | [Text Extractor](https://aka.ms/PowerToysOverview_TextExtractor) | | [Video Conference Mute](https://aka.ms/PowerToysOverview_VideoConference) | ## Installing and running Microsoft PowerToys ### Requirements - Windows 11 or Windows 10 version 2004 (code name 20H1 / build number 19041) or newer. - Our installer will install the following items: - [Microsoft Edge WebView2 Runtime](https://go.microsoft.com/fwlink/p/?LinkId=2124703) bootstrapper. This will install the latest version. ### Via GitHub with EXE [Recommended] Go to the [Microsoft PowerToys GitHub releases page][github-release-link] and click on `Assets` at the bottom to show the files available in the release. Please use the appropriate PowerToys installer that matches your machine's architecture and install scope. For most, it is `x64` and per-user. <!-- items that need to be updated release to release --> [github-next-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F48 [github-current-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F47 [ptUserX64]: https://github.com/microsoft/PowerToys/releases/download/v0.74.0/PowerToysUserSetup-0.74.0-x64.exe [ptUserArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.74.0/PowerToysUserSetup-0.74.0-arm64.exe [ptMachineX64]: https://github.com/microsoft/PowerToys/releases/download/v0.74.0/PowerToysSetup-0.74.0-x64.exe [ptMachineArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.74.0/PowerToysSetup-0.74.0-arm64.exe | Description | Filename | sha256 hash | |----------------|----------|-------------| | Per user - x64 | [PowerToysUserSetup-0.74.0-x64.exe][ptUserX64] | 1C4ECE9F11488BAFFAE6B76D2B0504FA18BFFEA11EBC38BCC87F5D86AEA87C7C | | Per user - ARM64 | [PowerToysUserSetup-0.74.0-arm64.exe][ptUserArm64] | 4F3842FAB0839A361A15A06B7720BA8A0FE7F9AF98EA94245C08DEF37678CA4A | | Machine wide - x64 | [PowerToysSetup-0.74.0-x64.exe][ptMachineX64] | 648992E8CEA08F3C63C7CCBD554ADDF500ECBC4560187310BC12E6CB9C2F38E3 | | Machine wide - ARM64 | [PowerToysSetup-0.74.0-arm64.exe][ptMachineArm64] | 2B6D92F1A0EA688C7EE882050AC9B030C8B3A18765163FB6D67E5E694A4D4FE3 | This is our preferred method. ### Via Microsoft Store Install from the [Microsoft Store's PowerToys page][microsoft-store-link]. You must be using the [new Microsoft Store](https://blogs.windows.com/windowsExperience/2021/06/24/building-a-new-open-microsoft-store-on-windows-11/) which is available for both Windows 11 and Windows 10. ### Via WinGet Download PowerToys from [WinGet][winget-link]. Updating PowerToys via winget will respect current PowerToys installation scope. To install PowerToys, run the following command from the command line / PowerShell: #### User scope installer [default] ```powershell winget install Microsoft.PowerToys -s winget ``` #### Machine-wide scope installer ```powershell winget install --scope machine Microsoft.PowerToys -s winget ``` ### Other install methods There are [community driven install methods](./doc/unofficialInstallMethods.md) such as Chocolatey and Scoop. If these are your preferred install solutions, you can find the install instructions there. ## Third-Party Run Plugins There is a collection of [third-party plugins](./doc/thirdPartyRunPlugins.md) created by the community that aren't distributed with PowerToys. ## Contributing This project welcomes contributions of all types. Besides coding features / bug fixes, other ways to assist include spec writing, design, documentation, and finding bugs. We are excited to work with the power user community to build a set of tools for helping you get the most out of Windows. We ask that **before you start work on a feature that you would like to contribute**, please read our [Contributor's Guide](CONTRIBUTING.md). We would be happy to work with you to figure out the best approach, provide guidance and mentorship throughout feature development, and help avoid any wasted or duplicate effort. Most contributions require you to agree to a [Contributor License Agreement (CLA)][oss-CLA] declaring that you grant us the rights to use your contribution and that you have permission to do so. For guidance on developing for PowerToys, please read the [developer docs](/doc/devdocs) for a detailed breakdown. This includes how to setup your computer to compile. ## What's Happening ### PowerToys Roadmap Our [prioritized roadmap][roadmap] of features and utilities that the core team is focusing on. ### 0.74 - September 2023 Update In this release, we focused on stability and improvements. **Highlights** - Upgraded to Windows App SDK 1.4.1, increasing stability of WinUI3 utilities. Thanks [@dongle-the-gadget](https://github.com/dongle-the-gadget) for starting the upgrade! - Text Extractor was upgraded to its version 2.0, with a new overlay, table mode and more Quality of Life improvements. Thanks [@TheJoeFin](https://github.com/TheJoeFin)! - Improved FancyZones stability, fixing some layout resets and improving handling of newly created windows on Windows 11. - Fixed many silent crashes that were reported to Watson and the user's event viewer. ### General - Turning animations off in Windows Settings will now also turn them off in PowerToys. - Upgraded the Windows App SDK dependency to 1.4.1. Thanks [@dongle-the-gadget](https://github.com/dongle-the-gadget) for the original 1.4.0 upgrade! - Show in the thumbnail label and application titles when running as administrator. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Upgraded the Win UI Community Toolkit dependency to 8.0. Thanks [@niels9001](https://github.com/niels9001)! ### Awake - Added down-sampled variants to the application's icon. Thanks [@morriscurtis](https://github.com/morriscurtis)! ### Color Picker - After adding a new color in the editor, the history will scroll the new color into view. Thanks [@peerpalo](https://github.com/peerpalo)! ### Crop and Lock - Fixed a Crop and Lock crash that would occur when trying to reparent a window crashes the target application. An error message is shown instead. ### FancyZones - Set the process and main thread priority to normal. - Fixed handling newly created windows on Windows 11. - Fixed scenarios where opening the FancyZones Editor would reset the layouts. ### File Explorer add-ons - Optimized CPU usage for generating SVG thumbnails. - Improved handling of Gcode Thumbnails, including JPG and QOI formats. Thanks [@pedrolamas](https://github.com/pedrolamas)! - Better handled errors when sending telemetry, which were causing reported crashes. - Fixed some thumbnails not being shown centered like before the optimization. ### File Locksmith - Shows files opened by processes with PID greater than 65535. Thanks [@poke30744](https://github.com/poke30744)! - Fixed a GDI object leak in the context menu which would crash Explorer. ### Find My Mouse - Added new activation methods, including by hotkey. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Hosts File Editor - Ignore the default ACME sample entries in the hosts file. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Improved save error handling and added better error messages. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Corrected a check for an error when signaling the application to start as administrator. - Refactored the context menu. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Fixed dialogs overlapping the title bar after the upgrade to Windows App SDK 1.4. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Keyboard Manager - Distinguish between the regular minus key and the numpad minus key. ### Mouse Without Borders - Fixed a crash when trying to restart the application. ### Peek - Using Peek on HTML files will show a white background by default, similar to a browser's default behavior. - Fix a white flash on Dark theme when switching file and improved the development file preview detection and adjustments. ### PowerRename - Fixed a crash caused by big counter values on the new enumeration method. ### PowerToys Run - It's now possible to select which shell is used by the Shell plugin. - A combobox option type was added to the plugin options. - Fixed a bug in the Calculator plugin that was causing decimal numbers to be misinterpreted on locales where the dot (`.`) character isn't used as a decimal or digit separator. - Improved the Program plugin stability when it fails to load a program's thumbnail at startup. - The use of Pinyin for querying some plugins can now be turned on in Settings. Thanks [@ChaseKnowlden](https://github.com/ChaseKnowlden)! - Refactored option types for plugin and added number, string and composite types to be used in the future. Thanks [@htcfreek](https://github.com/htcfreek)! - Fixed the entry for searching for Windows updates in the Settings plugin. Thanks [@htcfreek](https://github.com/htcfreek)! ### Quick Accent - The "All languages" character set is now calculated by programmatically querying the characters for every available language. Thanks [@dannysummerlin](https://github.com/dannysummerlin)! - Added é to the Norwegian and Swedish languages. Thanks [@Aaron-Junker](https://github.com/Aaron-Junker)! - Added a runtime cache to the "All languages" character set, to only calculate accents once per key. ### Registry Preview - Fixed focusing issues at startup. - Improved the data visualization to show data in a similar way to the Windows Registry Editor. Thanks [@dillydylann](https://github.com/dillydylann)! ### Runner - Fixed hanging when a bug report was generated from the flyout. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Settings - Improved the way the OOBE window reacts to Windows theme change. - Fixed an issue that made it impossible to change the "Switch between windows in the current zone" "Next window" shortcut for FancyZones. - Fixed a crash when entering a duplicate name for a color in the Color Picker page and improved clean up when cancelling a color edit. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Text Extractor - Text Extractor 2.0, with a new overlay, table mode and more Quality of Life improvements. Thanks [@TheJoeFin](https://github.com/TheJoeFin)! ### Documentation - SECURITY.md was updated from 0.0.2 to 0.0.9. Thanks [@Aaron-Junker](https://github.com/Aaron-Junker)! - Improved the README and main development document for clarity and completeness. Thanks [@codeofdusk](https://github.com/codeofdusk) and [@aprilbbrockhoeft](https://github.com/aprilbbrockhoeft)! ### Development - Fixed PowerToys Run DateTime plugin tests that were failing depending on locale, so that they can be run correctly on all dev machines. - Fixed PowerToys Run System plugin tests that were failing for certain network interfaces, so that they can be run correctly on all dev machines. Thanks [@snickler](https://github.com/snickler)! - Fixed a markdown bug on the GitHub /helped command. - Switched build pipelines to a new agent pool. Thanks [@DHowett](https://github.com/DHowett)! - New .cs files created in Visual Studio get the header added automatically. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! #### What is being planned for version 0.75 For [v0.75][github-next-release-work], we'll work on the items below: - Language selection - .NET 8 upgrade - Policy support for managing PowerToys Run plugins. *Attention*: A breaking change is planned (for 0.75), in which each plugin has to declare its identifier programmatically so that it can be controlled through GPO. For third-party plugin developers, please check https://github.com/microsoft/PowerToys/pull/27468 for more details. - New utility: Environment Variables Editor. Here's a Work in Progress preview: ![Environment Variables Editor WIP](https://github.com/microsoft/PowerToys/assets/26118718/f99532a8-5aae-481b-a662-19a95f4aa03d) - New Settings homepage. Here's a Work in Progress preview: ![PowerToys Settings Dashboard WIP](https://github.com/microsoft/PowerToys/assets/26118718/938a5715-0a9b-4fe9-9e15-adfec92da694) - Modernize and refresh the UX of PowerToys based on WPF. Here's Work in Progress previews for the modules "PowerToys Run" and "Color Picker": ![PowerToys Run UI refresh WIP](https://github.com/microsoft/PowerToys/assets/9866362/16903bcb-c18e-49fb-93ca-738b81957055) ![ColorPicker UI refresh WIP](https://github.com/microsoft/PowerToys/assets/9866362/ceebe54b-de63-4ce7-afcb-2cd4280bf4d1) - Stability / bug fixes ## PowerToys Community The PowerToys team is extremely grateful to have the [support of an amazing active community][community-link]. The work you do is incredibly important. PowerToys wouldn’t be nearly what it is today without your help filing bugs, updating documentation, guiding the design, or writing features. We want to say thank you and take time to recognize your work. Month by month, you directly help make PowerToys a better piece of software. ## Code of Conduct This project has adopted the [Microsoft Open Source Code of Conduct][oss-conduct-code]. ## Privacy Statement The application logs basic telemetry. Our Telemetry Data page (Coming Soon) has the trends from the telemetry. Please read the [Microsoft privacy statement][privacy-link] for more information. [oss-CLA]: https://cla.opensource.microsoft.com [oss-conduct-code]: CODE_OF_CONDUCT.md [community-link]: COMMUNITY.md [github-release-link]: https://aka.ms/installPowerToys [microsoft-store-link]: https://aka.ms/getPowertoys [winget-link]: https://github.com/microsoft/winget-cli#installing-the-client [roadmap]: https://github.com/microsoft/PowerToys/wiki/Roadmap [privacy-link]: http://go.microsoft.com/fwlink/?LinkId=521839 [vidConfOverview]: https://aka.ms/PowerToysOverview_VideoConference [loc-bug]: https://github.com/microsoft/PowerToys/issues/new?assignees=&labels=&template=translation_issue.md&title= [usingPowerToys-docs-link]: https://aka.ms/powertoys-docs
jaimecbernardo
a1e0bd51617b2bea189cb16324eecd0e13fa7b86
77063e0767a0619abfc339db3a2a564d27310b6c
```suggestion ``` Don't need to add this. The regression was caused by the context menu refactoring in this release cycle. Menu items are disabling as expected in 0.73.0.
davidegiacometti
425
microsoft/PowerToys
28,775
0.74 changelogs
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request Readme update for the 0.74 release. This will be copy / pasted for release notes.
null
2023-09-26 11:20:42+00:00
2023-09-26 21:36:51+00:00
README.md
# Microsoft PowerToys ![Hero image for Microsoft PowerToys](doc/images/overview/PT_hero_image.png) [How to use PowerToys][usingPowerToys-docs-link] | [Downloads & Release notes][github-release-link] | [Contributing to PowerToys](#contributing) | [What's Happening](#whats-happening) | [Roadmap](#powertoys-roadmap) ## Build status | Architecture | Solution (Main) | Solution (Stable) | Installer (Main) | |--------------|-----------------|-------------------|------------------| | x64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main&jobName=Build%20x64%20Release) | [![Build Status for Stable](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=stable&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_x64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | | ARM64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main) | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_arm64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | ## About Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. For more info on [PowerToys overviews and how to use the utilities][usingPowerToys-docs-link], or any other tools and resources for [Windows development environments](https://learn.microsoft.com/windows/dev-environment/overview), head over to [learn.microsoft.com][usingPowerToys-docs-link]! | | Current utilities: | | |--------------|--------------------|--------------| | [Always on Top](https://aka.ms/PowerToysOverview_AoT) | [PowerToys Awake](https://aka.ms/PowerToysOverview_Awake) | [Color Picker](https://aka.ms/PowerToysOverview_ColorPicker) | | [Crop And Lock](https://aka.ms/PowerToysOverview_CropAndLock) | [FancyZones](https://aka.ms/PowerToysOverview_FancyZones) | [File Explorer Add-ons](https://aka.ms/PowerToysOverview_FileExplorerAddOns) | | [File Locksmith](https://aka.ms/PowerToysOverview_FileLocksmith) | [Hosts File Editor](https://aka.ms/PowerToysOverview_HostsFileEditor) | [Image Resizer](https://aka.ms/PowerToysOverview_ImageResizer) | | [Keyboard Manager](https://aka.ms/PowerToysOverview_KeyboardManager) | [Mouse utilities](https://aka.ms/PowerToysOverview_MouseUtilities) | [Mouse Without Borders](https://aka.ms/PowerToysOverview_MouseWithoutBorders) | | [Peek](https://aka.ms/PowerToysOverview_Peek) | [Paste as Plain Text](https://aka.ms/PowerToysOverview_PastePlain) | [PowerRename](https://aka.ms/PowerToysOverview_PowerRename) | | [PowerToys Run](https://aka.ms/PowerToysOverview_PowerToysRun) | [Quick Accent](https://aka.ms/PowerToysOverview_QuickAccent) | [Registry Preview](https://aka.ms/PowerToysOverview_RegistryPreview) | | [Screen Ruler](https://aka.ms/PowerToysOverview_ScreenRuler) | [Shortcut Guide](https://aka.ms/PowerToysOverview_ShortcutGuide) | [Text Extractor](https://aka.ms/PowerToysOverview_TextExtractor) | | [Video Conference Mute](https://aka.ms/PowerToysOverview_VideoConference) | ## Installing and running Microsoft PowerToys ### Requirements - Windows 11 or Windows 10 version 2004 (code name 20H1 / build number 19041) or newer. - Our installer will install the following items: - [Microsoft Edge WebView2 Runtime](https://go.microsoft.com/fwlink/p/?LinkId=2124703) bootstrapper. This will install the latest version. ### Via GitHub with EXE [Recommended] Go to the [Microsoft PowerToys GitHub releases page][github-release-link] and click on `Assets` at the bottom to show the files available in the release. Please use the appropriate PowerToys installer that matches your machine's architecture and install scope. For most, it is `x64` and per-user. <!-- items that need to be updated release to release --> [github-next-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F47 [github-current-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F46 [ptUserX64]: https://github.com/microsoft/PowerToys/releases/download/v0.73.0/PowerToysUserSetup-0.73.0-x64.exe [ptUserArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.73.0/PowerToysUserSetup-0.73.0-arm64.exe [ptMachineX64]: https://github.com/microsoft/PowerToys/releases/download/v0.73.0/PowerToysSetup-0.73.0-x64.exe [ptMachineArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.73.0/PowerToysSetup-0.73.0-arm64.exe | Description | Filename | sha256 hash | |----------------|----------|-------------| | Per user - x64 | [PowerToysUserSetup-0.73.0-x64.exe][ptUserX64] | BA55D245BDD734FD6F19803DD706A3AB8E0ABC491591195534997CF2122D3B7E | | Per user - ARM64 | [PowerToysUserSetup-0.73.0-arm64.exe][ptUserArm64] | FBFA40EA5FFA05236A7CCDD05E5142EE0C93D7485B965784196ED9B086BFEBF4 | | Machine wide - x64 | [PowerToysSetup-0.73.0-x64.exe][ptMachineX64] | 7FDA06292C7C2E6DA5AEF88D8E9D3DE89D331E9E356A232289F9B37CE4503894 | | Machine wide - ARM64 | [PowerToysSetup-0.73.0-arm64.exe][ptMachineArm64] | 4260AA30A1F52F194EE07E9E7ECD9E9F4CF35289267F213BC933F7A5191AC17C | This is our preferred method. ### Via Microsoft Store Install from the [Microsoft Store's PowerToys page][microsoft-store-link]. You must be using the [new Microsoft Store](https://blogs.windows.com/windowsExperience/2021/06/24/building-a-new-open-microsoft-store-on-windows-11/) which is available for both Windows 11 and Windows 10. ### Via WinGet Download PowerToys from [WinGet][winget-link]. Updating PowerToys via winget will respect current PowerToys installation scope. To install PowerToys, run the following command from the command line / PowerShell: #### User scope installer [default] ```powershell winget install Microsoft.PowerToys -s winget ``` #### Machine-wide scope installer ```powershell winget install --scope machine Microsoft.PowerToys -s winget ``` ### Other install methods There are [community driven install methods](./doc/unofficialInstallMethods.md) such as Chocolatey and Scoop. If these are your preferred install solutions, you can find the install instructions there. ## Third-Party Run Plugins There is a collection of [third-party plugins](./doc/thirdPartyRunPlugins.md) created by the community that aren't distributed with PowerToys. ## Contributing This project welcomes contributions of all types. Besides coding features / bug fixes, other ways to assist include spec writing, design, documentation, and finding bugs. We are excited to work with the power user community to build a set of tools for helping you get the most out of Windows. We ask that **before you start work on a feature that you would like to contribute**, please read our [Contributor's Guide](CONTRIBUTING.md). We would be happy to work with you to figure out the best approach, provide guidance and mentorship throughout feature development, and help avoid any wasted or duplicate effort. Most contributions require you to agree to a [Contributor License Agreement (CLA)][oss-CLA] declaring that you grant us the rights to use your contribution and that you have permission to do so. For guidance on developing for PowerToys, please read the [developer docs](/doc/devdocs) for a detailed breakdown. This includes how to setup your computer to compile. ## What's Happening ### PowerToys Roadmap Our [prioritized roadmap][roadmap] of features and utilities that the core team is focusing on. ### 0.73 - August 2023 Update In this release, we focused on releasing new features, stability and improvements. **Highlights** - Keyboard manager now allows Numpad keys to be bound separately from the main keyboard. If using a previous configuration, only the main keyboard (not numpad) keys will be mapped. To restore the previous behavior, manually add separate bindings for numpad keys. - New utility: Crop And Lock allows you to crop a current application into a smaller window or just create a thumbnail. Focus the target window and press the shortcut to start cropping. - FancyZones code improvements and refactor. - Modernized ImageResizer UX. - PowerRename advanced counter functionality. ### General - Added missing CoUninitialize call in elevation logic. Thanks [@sredna](https://github.com/sredna)! - New utility: Crop And Lock. Thanks [@robmikh](https://github.com/robmikh)! and [@kevinguo305](https://github.com/kevinguo305)! - Added new /helped fabric bot command to GitHub repo. Thanks [@Aaron-Junker](https://github.com/Aaron-Junker)! - Fixed crashes caused by invalid settings. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Always On Top - Added border transparency. ### FancyZones - Fixed issue causing canvas zones being drawn only when dragging in the zone area. - Fixed user-defined default layout highlighting issue. - Refactored and improved code quality. - Fixed issue causing the wrong layout to be applied when duplicating a non-selected layout. ### File Locksmith - Icon update. Thanks [@jmaraujouy](https://github.com/jmaraujouy)! ### File Explorer add-ons - Fixed issue causing thumbnail previewers to lock files. - Open URIs from developer files in default browser. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Installer - Fixed PowerToys autorun after installing as SYSTEM user. - Removed CreateScheduledTask custom action to handle task creation only from runner code. ### Image Resizer - Moved from ModernWPF to WpfUI to refresh and modernize UI/UX. Thanks [@niels9001](https://github.com/niels9001)! ### Keyboard Manager - Rephrased labels to enhance clarity. Thanks [@Jay-o-Way](https://github.com/Jay-o-Way)! - Keyboard manager now allows Numpad keys to be bound separately from the main keyboard. If using a previous configuration, only the main keyboard (not numpad) keys will be mapped. To restore the previous behavior, manually add separate bindings for numpad keys. ### Mouse Highlighter - The highlighter is now visible in "Always on Top" windows. - Added settings for automatic activation on startup. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Mouse Pointer Crosshairs - Added settings for automatic activation on startup. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Peek - Show correct file type for shortcuts. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Fixed issue causing the wrong file size to be displayed. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Show 1 byte instead of 1 bytes file size. Thanks [@Deepak-Sangle](https://github.com/Deepak-Sangle)! - Open URIs from developer files in the default browser. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Show a thumbnail and fallback to an icon for unsupported files. Thanks [@pedrolamas](https://github.com/pedrolamas)! ### PowerRename - Updated the OOBE gif. Thanks [@ChaseKnowlden](https://github.com/ChaseKnowlden)! - Localized the renamed parts combo box. - Introduced advanced counter functionality. - Added remember last window size logic and optimized sorting of items. - Enable "Enumerate items" option by default. ### PowerToys Run - Fixed an issue causing original search to be abandoned when cycling through results. - Updated device and bluetooth results for Settings plugin. Thanks [@htcfreek](https://github.com/htcfreek)! - Fixed InvalidOperationException exception thrown. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Add Base64 Decoding function to the Value Generator plugin. Thanks [@LeagueOfPoro](https://github.com/LeagueOfPoro)! - Added a Keep shell open option for Shell plugin. - Added Crop And Lock to PowerToys plugin. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Registry Preview - Updated AppBarButtons to use an explicit AppBarButton.Icon. Thanks [@randyrants](https://github.com/randyrants)! - Fixed crash on clicking Save As button. ### Runner - Removed unneeded RegisterWindowMessage from tray icon logic. Thanks [@sredna](https://github.com/sredna)! - Fixed startup looping issue. - Improved old logs and installers cleanup logic. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Screen Ruler - Use proper resources file. ### Settings - Fixed issue causing problems with modifier keys and ShortcutControl. Thanks [@sh0ckj0ckey](https://github.com/sh0ckj0ckey)! - Fixed crash when clicking "Windows color settings" link. - Added support for launching Settings app directly. - Fixed issue causing DisplayDescription not showing for PowerToys Run PluginAdditionalOption. - Fixed issue causing FileLocksmith 'Show File Locksmith in' setting not showing correct value. - Fixed issue causing Awake on/off toggle in Settings flyout not to work when Settings Awake page is opened. ### Documentation - Added documentation for PowerToys Run third-party plugins. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Fixed broken links in keyboardmanagerui.md. Thanks [@shubhsardana29](https://github.com/shubhsardana29)! - Updated core team in COMMUNITY.md. - Fixed broken links in ui-architecture.md. Thanks [@SamB](https://github.com/SamB)! - Updated community.valuegenerator.md with Base64DecodeRequest description. ### Development - Updated test packages and StyleCop. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Condense NuGet Restore into MSBuild Tasks. Thanks [@snickler](https://github.com/snickler)! #### What is being planned for version 0.74 For [v0.74][github-next-release-work], we'll work on the items below: - Language selection - Modernize and refresh the UX of PowerToys based on WPF - Stability / bug fixes - Peek: UI improvements ## PowerToys Community The PowerToys team is extremely grateful to have the [support of an amazing active community][community-link]. The work you do is incredibly important. PowerToys wouldn’t be nearly what it is today without your help filing bugs, updating documentation, guiding the design, or writing features. We want to say thank you and take time to recognize your work. Month by month, you directly help make PowerToys a better piece of software. ## Code of Conduct This project has adopted the [Microsoft Open Source Code of Conduct][oss-conduct-code]. ## Privacy Statement The application logs basic telemetry. Our Telemetry Data page (Coming Soon) has the trends from the telemetry. Please read the [Microsoft privacy statement][privacy-link] for more information. [oss-CLA]: https://cla.opensource.microsoft.com [oss-conduct-code]: CODE_OF_CONDUCT.md [community-link]: COMMUNITY.md [github-release-link]: https://aka.ms/installPowerToys [microsoft-store-link]: https://aka.ms/getPowertoys [winget-link]: https://github.com/microsoft/winget-cli#installing-the-client [roadmap]: https://github.com/microsoft/PowerToys/wiki/Roadmap [privacy-link]: http://go.microsoft.com/fwlink/?LinkId=521839 [vidConfOverview]: https://aka.ms/PowerToysOverview_VideoConference [loc-bug]: https://github.com/microsoft/PowerToys/issues/new?assignees=&labels=&template=translation_issue.md&title= [usingPowerToys-docs-link]: https://aka.ms/powertoys-docs
# Microsoft PowerToys ![Hero image for Microsoft PowerToys](doc/images/overview/PT_hero_image.png) [How to use PowerToys][usingPowerToys-docs-link] | [Downloads & Release notes][github-release-link] | [Contributing to PowerToys](#contributing) | [What's Happening](#whats-happening) | [Roadmap](#powertoys-roadmap) ## Build status | Architecture | Solution (Main) | Solution (Stable) | Installer (Main) | |--------------|-----------------|-------------------|------------------| | x64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main&jobName=Build%20x64%20Release) | [![Build Status for Stable](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=stable&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_x64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | | ARM64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main) | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_arm64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | ## About Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. For more info on [PowerToys overviews and how to use the utilities][usingPowerToys-docs-link], or any other tools and resources for [Windows development environments](https://learn.microsoft.com/windows/dev-environment/overview), head over to [learn.microsoft.com][usingPowerToys-docs-link]! | | Current utilities: | | |--------------|--------------------|--------------| | [Always on Top](https://aka.ms/PowerToysOverview_AoT) | [PowerToys Awake](https://aka.ms/PowerToysOverview_Awake) | [Color Picker](https://aka.ms/PowerToysOverview_ColorPicker) | | [Crop And Lock](https://aka.ms/PowerToysOverview_CropAndLock) | [FancyZones](https://aka.ms/PowerToysOverview_FancyZones) | [File Explorer Add-ons](https://aka.ms/PowerToysOverview_FileExplorerAddOns) | | [File Locksmith](https://aka.ms/PowerToysOverview_FileLocksmith) | [Hosts File Editor](https://aka.ms/PowerToysOverview_HostsFileEditor) | [Image Resizer](https://aka.ms/PowerToysOverview_ImageResizer) | | [Keyboard Manager](https://aka.ms/PowerToysOverview_KeyboardManager) | [Mouse utilities](https://aka.ms/PowerToysOverview_MouseUtilities) | [Mouse Without Borders](https://aka.ms/PowerToysOverview_MouseWithoutBorders) | | [Peek](https://aka.ms/PowerToysOverview_Peek) | [Paste as Plain Text](https://aka.ms/PowerToysOverview_PastePlain) | [PowerRename](https://aka.ms/PowerToysOverview_PowerRename) | | [PowerToys Run](https://aka.ms/PowerToysOverview_PowerToysRun) | [Quick Accent](https://aka.ms/PowerToysOverview_QuickAccent) | [Registry Preview](https://aka.ms/PowerToysOverview_RegistryPreview) | | [Screen Ruler](https://aka.ms/PowerToysOverview_ScreenRuler) | [Shortcut Guide](https://aka.ms/PowerToysOverview_ShortcutGuide) | [Text Extractor](https://aka.ms/PowerToysOverview_TextExtractor) | | [Video Conference Mute](https://aka.ms/PowerToysOverview_VideoConference) | ## Installing and running Microsoft PowerToys ### Requirements - Windows 11 or Windows 10 version 2004 (code name 20H1 / build number 19041) or newer. - Our installer will install the following items: - [Microsoft Edge WebView2 Runtime](https://go.microsoft.com/fwlink/p/?LinkId=2124703) bootstrapper. This will install the latest version. ### Via GitHub with EXE [Recommended] Go to the [Microsoft PowerToys GitHub releases page][github-release-link] and click on `Assets` at the bottom to show the files available in the release. Please use the appropriate PowerToys installer that matches your machine's architecture and install scope. For most, it is `x64` and per-user. <!-- items that need to be updated release to release --> [github-next-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F48 [github-current-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F47 [ptUserX64]: https://github.com/microsoft/PowerToys/releases/download/v0.74.0/PowerToysUserSetup-0.74.0-x64.exe [ptUserArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.74.0/PowerToysUserSetup-0.74.0-arm64.exe [ptMachineX64]: https://github.com/microsoft/PowerToys/releases/download/v0.74.0/PowerToysSetup-0.74.0-x64.exe [ptMachineArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.74.0/PowerToysSetup-0.74.0-arm64.exe | Description | Filename | sha256 hash | |----------------|----------|-------------| | Per user - x64 | [PowerToysUserSetup-0.74.0-x64.exe][ptUserX64] | 1C4ECE9F11488BAFFAE6B76D2B0504FA18BFFEA11EBC38BCC87F5D86AEA87C7C | | Per user - ARM64 | [PowerToysUserSetup-0.74.0-arm64.exe][ptUserArm64] | 4F3842FAB0839A361A15A06B7720BA8A0FE7F9AF98EA94245C08DEF37678CA4A | | Machine wide - x64 | [PowerToysSetup-0.74.0-x64.exe][ptMachineX64] | 648992E8CEA08F3C63C7CCBD554ADDF500ECBC4560187310BC12E6CB9C2F38E3 | | Machine wide - ARM64 | [PowerToysSetup-0.74.0-arm64.exe][ptMachineArm64] | 2B6D92F1A0EA688C7EE882050AC9B030C8B3A18765163FB6D67E5E694A4D4FE3 | This is our preferred method. ### Via Microsoft Store Install from the [Microsoft Store's PowerToys page][microsoft-store-link]. You must be using the [new Microsoft Store](https://blogs.windows.com/windowsExperience/2021/06/24/building-a-new-open-microsoft-store-on-windows-11/) which is available for both Windows 11 and Windows 10. ### Via WinGet Download PowerToys from [WinGet][winget-link]. Updating PowerToys via winget will respect current PowerToys installation scope. To install PowerToys, run the following command from the command line / PowerShell: #### User scope installer [default] ```powershell winget install Microsoft.PowerToys -s winget ``` #### Machine-wide scope installer ```powershell winget install --scope machine Microsoft.PowerToys -s winget ``` ### Other install methods There are [community driven install methods](./doc/unofficialInstallMethods.md) such as Chocolatey and Scoop. If these are your preferred install solutions, you can find the install instructions there. ## Third-Party Run Plugins There is a collection of [third-party plugins](./doc/thirdPartyRunPlugins.md) created by the community that aren't distributed with PowerToys. ## Contributing This project welcomes contributions of all types. Besides coding features / bug fixes, other ways to assist include spec writing, design, documentation, and finding bugs. We are excited to work with the power user community to build a set of tools for helping you get the most out of Windows. We ask that **before you start work on a feature that you would like to contribute**, please read our [Contributor's Guide](CONTRIBUTING.md). We would be happy to work with you to figure out the best approach, provide guidance and mentorship throughout feature development, and help avoid any wasted or duplicate effort. Most contributions require you to agree to a [Contributor License Agreement (CLA)][oss-CLA] declaring that you grant us the rights to use your contribution and that you have permission to do so. For guidance on developing for PowerToys, please read the [developer docs](/doc/devdocs) for a detailed breakdown. This includes how to setup your computer to compile. ## What's Happening ### PowerToys Roadmap Our [prioritized roadmap][roadmap] of features and utilities that the core team is focusing on. ### 0.74 - September 2023 Update In this release, we focused on stability and improvements. **Highlights** - Upgraded to Windows App SDK 1.4.1, increasing stability of WinUI3 utilities. Thanks [@dongle-the-gadget](https://github.com/dongle-the-gadget) for starting the upgrade! - Text Extractor was upgraded to its version 2.0, with a new overlay, table mode and more Quality of Life improvements. Thanks [@TheJoeFin](https://github.com/TheJoeFin)! - Improved FancyZones stability, fixing some layout resets and improving handling of newly created windows on Windows 11. - Fixed many silent crashes that were reported to Watson and the user's event viewer. ### General - Turning animations off in Windows Settings will now also turn them off in PowerToys. - Upgraded the Windows App SDK dependency to 1.4.1. Thanks [@dongle-the-gadget](https://github.com/dongle-the-gadget) for the original 1.4.0 upgrade! - Show in the thumbnail label and application titles when running as administrator. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Upgraded the Win UI Community Toolkit dependency to 8.0. Thanks [@niels9001](https://github.com/niels9001)! ### Awake - Added down-sampled variants to the application's icon. Thanks [@morriscurtis](https://github.com/morriscurtis)! ### Color Picker - After adding a new color in the editor, the history will scroll the new color into view. Thanks [@peerpalo](https://github.com/peerpalo)! ### Crop and Lock - Fixed a Crop and Lock crash that would occur when trying to reparent a window crashes the target application. An error message is shown instead. ### FancyZones - Set the process and main thread priority to normal. - Fixed handling newly created windows on Windows 11. - Fixed scenarios where opening the FancyZones Editor would reset the layouts. ### File Explorer add-ons - Optimized CPU usage for generating SVG thumbnails. - Improved handling of Gcode Thumbnails, including JPG and QOI formats. Thanks [@pedrolamas](https://github.com/pedrolamas)! - Better handled errors when sending telemetry, which were causing reported crashes. - Fixed some thumbnails not being shown centered like before the optimization. ### File Locksmith - Shows files opened by processes with PID greater than 65535. Thanks [@poke30744](https://github.com/poke30744)! - Fixed a GDI object leak in the context menu which would crash Explorer. ### Find My Mouse - Added new activation methods, including by hotkey. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Hosts File Editor - Ignore the default ACME sample entries in the hosts file. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Improved save error handling and added better error messages. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Corrected a check for an error when signaling the application to start as administrator. - Refactored the context menu. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Fixed dialogs overlapping the title bar after the upgrade to Windows App SDK 1.4. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Keyboard Manager - Distinguish between the regular minus key and the numpad minus key. ### Mouse Without Borders - Fixed a crash when trying to restart the application. ### Peek - Using Peek on HTML files will show a white background by default, similar to a browser's default behavior. - Fix a white flash on Dark theme when switching file and improved the development file preview detection and adjustments. ### PowerRename - Fixed a crash caused by big counter values on the new enumeration method. ### PowerToys Run - It's now possible to select which shell is used by the Shell plugin. - A combobox option type was added to the plugin options. - Fixed a bug in the Calculator plugin that was causing decimal numbers to be misinterpreted on locales where the dot (`.`) character isn't used as a decimal or digit separator. - Improved the Program plugin stability when it fails to load a program's thumbnail at startup. - The use of Pinyin for querying some plugins can now be turned on in Settings. Thanks [@ChaseKnowlden](https://github.com/ChaseKnowlden)! - Refactored option types for plugin and added number, string and composite types to be used in the future. Thanks [@htcfreek](https://github.com/htcfreek)! - Fixed the entry for searching for Windows updates in the Settings plugin. Thanks [@htcfreek](https://github.com/htcfreek)! ### Quick Accent - The "All languages" character set is now calculated by programmatically querying the characters for every available language. Thanks [@dannysummerlin](https://github.com/dannysummerlin)! - Added é to the Norwegian and Swedish languages. Thanks [@Aaron-Junker](https://github.com/Aaron-Junker)! - Added a runtime cache to the "All languages" character set, to only calculate accents once per key. ### Registry Preview - Fixed focusing issues at startup. - Improved the data visualization to show data in a similar way to the Windows Registry Editor. Thanks [@dillydylann](https://github.com/dillydylann)! ### Runner - Fixed hanging when a bug report was generated from the flyout. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Settings - Improved the way the OOBE window reacts to Windows theme change. - Fixed an issue that made it impossible to change the "Switch between windows in the current zone" "Next window" shortcut for FancyZones. - Fixed a crash when entering a duplicate name for a color in the Color Picker page and improved clean up when cancelling a color edit. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Text Extractor - Text Extractor 2.0, with a new overlay, table mode and more Quality of Life improvements. Thanks [@TheJoeFin](https://github.com/TheJoeFin)! ### Documentation - SECURITY.md was updated from 0.0.2 to 0.0.9. Thanks [@Aaron-Junker](https://github.com/Aaron-Junker)! - Improved the README and main development document for clarity and completeness. Thanks [@codeofdusk](https://github.com/codeofdusk) and [@aprilbbrockhoeft](https://github.com/aprilbbrockhoeft)! ### Development - Fixed PowerToys Run DateTime plugin tests that were failing depending on locale, so that they can be run correctly on all dev machines. - Fixed PowerToys Run System plugin tests that were failing for certain network interfaces, so that they can be run correctly on all dev machines. Thanks [@snickler](https://github.com/snickler)! - Fixed a markdown bug on the GitHub /helped command. - Switched build pipelines to a new agent pool. Thanks [@DHowett](https://github.com/DHowett)! - New .cs files created in Visual Studio get the header added automatically. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! #### What is being planned for version 0.75 For [v0.75][github-next-release-work], we'll work on the items below: - Language selection - .NET 8 upgrade - Policy support for managing PowerToys Run plugins. *Attention*: A breaking change is planned (for 0.75), in which each plugin has to declare its identifier programmatically so that it can be controlled through GPO. For third-party plugin developers, please check https://github.com/microsoft/PowerToys/pull/27468 for more details. - New utility: Environment Variables Editor. Here's a Work in Progress preview: ![Environment Variables Editor WIP](https://github.com/microsoft/PowerToys/assets/26118718/f99532a8-5aae-481b-a662-19a95f4aa03d) - New Settings homepage. Here's a Work in Progress preview: ![PowerToys Settings Dashboard WIP](https://github.com/microsoft/PowerToys/assets/26118718/938a5715-0a9b-4fe9-9e15-adfec92da694) - Modernize and refresh the UX of PowerToys based on WPF. Here's Work in Progress previews for the modules "PowerToys Run" and "Color Picker": ![PowerToys Run UI refresh WIP](https://github.com/microsoft/PowerToys/assets/9866362/16903bcb-c18e-49fb-93ca-738b81957055) ![ColorPicker UI refresh WIP](https://github.com/microsoft/PowerToys/assets/9866362/ceebe54b-de63-4ce7-afcb-2cd4280bf4d1) - Stability / bug fixes ## PowerToys Community The PowerToys team is extremely grateful to have the [support of an amazing active community][community-link]. The work you do is incredibly important. PowerToys wouldn’t be nearly what it is today without your help filing bugs, updating documentation, guiding the design, or writing features. We want to say thank you and take time to recognize your work. Month by month, you directly help make PowerToys a better piece of software. ## Code of Conduct This project has adopted the [Microsoft Open Source Code of Conduct][oss-conduct-code]. ## Privacy Statement The application logs basic telemetry. Our Telemetry Data page (Coming Soon) has the trends from the telemetry. Please read the [Microsoft privacy statement][privacy-link] for more information. [oss-CLA]: https://cla.opensource.microsoft.com [oss-conduct-code]: CODE_OF_CONDUCT.md [community-link]: COMMUNITY.md [github-release-link]: https://aka.ms/installPowerToys [microsoft-store-link]: https://aka.ms/getPowertoys [winget-link]: https://github.com/microsoft/winget-cli#installing-the-client [roadmap]: https://github.com/microsoft/PowerToys/wiki/Roadmap [privacy-link]: http://go.microsoft.com/fwlink/?LinkId=521839 [vidConfOverview]: https://aka.ms/PowerToysOverview_VideoConference [loc-bug]: https://github.com/microsoft/PowerToys/issues/new?assignees=&labels=&template=translation_issue.md&title= [usingPowerToys-docs-link]: https://aka.ms/powertoys-docs
jaimecbernardo
a1e0bd51617b2bea189cb16324eecd0e13fa7b86
77063e0767a0619abfc339db3a2a564d27310b6c
I think we could asd the new Run plugin settings types here too.
htcfreek
426
microsoft/PowerToys
28,775
0.74 changelogs
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request Readme update for the 0.74 release. This will be copy / pasted for release notes.
null
2023-09-26 11:20:42+00:00
2023-09-26 21:36:51+00:00
README.md
# Microsoft PowerToys ![Hero image for Microsoft PowerToys](doc/images/overview/PT_hero_image.png) [How to use PowerToys][usingPowerToys-docs-link] | [Downloads & Release notes][github-release-link] | [Contributing to PowerToys](#contributing) | [What's Happening](#whats-happening) | [Roadmap](#powertoys-roadmap) ## Build status | Architecture | Solution (Main) | Solution (Stable) | Installer (Main) | |--------------|-----------------|-------------------|------------------| | x64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main&jobName=Build%20x64%20Release) | [![Build Status for Stable](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=stable&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_x64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | | ARM64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main) | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_arm64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | ## About Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. For more info on [PowerToys overviews and how to use the utilities][usingPowerToys-docs-link], or any other tools and resources for [Windows development environments](https://learn.microsoft.com/windows/dev-environment/overview), head over to [learn.microsoft.com][usingPowerToys-docs-link]! | | Current utilities: | | |--------------|--------------------|--------------| | [Always on Top](https://aka.ms/PowerToysOverview_AoT) | [PowerToys Awake](https://aka.ms/PowerToysOverview_Awake) | [Color Picker](https://aka.ms/PowerToysOverview_ColorPicker) | | [Crop And Lock](https://aka.ms/PowerToysOverview_CropAndLock) | [FancyZones](https://aka.ms/PowerToysOverview_FancyZones) | [File Explorer Add-ons](https://aka.ms/PowerToysOverview_FileExplorerAddOns) | | [File Locksmith](https://aka.ms/PowerToysOverview_FileLocksmith) | [Hosts File Editor](https://aka.ms/PowerToysOverview_HostsFileEditor) | [Image Resizer](https://aka.ms/PowerToysOverview_ImageResizer) | | [Keyboard Manager](https://aka.ms/PowerToysOverview_KeyboardManager) | [Mouse utilities](https://aka.ms/PowerToysOverview_MouseUtilities) | [Mouse Without Borders](https://aka.ms/PowerToysOverview_MouseWithoutBorders) | | [Peek](https://aka.ms/PowerToysOverview_Peek) | [Paste as Plain Text](https://aka.ms/PowerToysOverview_PastePlain) | [PowerRename](https://aka.ms/PowerToysOverview_PowerRename) | | [PowerToys Run](https://aka.ms/PowerToysOverview_PowerToysRun) | [Quick Accent](https://aka.ms/PowerToysOverview_QuickAccent) | [Registry Preview](https://aka.ms/PowerToysOverview_RegistryPreview) | | [Screen Ruler](https://aka.ms/PowerToysOverview_ScreenRuler) | [Shortcut Guide](https://aka.ms/PowerToysOverview_ShortcutGuide) | [Text Extractor](https://aka.ms/PowerToysOverview_TextExtractor) | | [Video Conference Mute](https://aka.ms/PowerToysOverview_VideoConference) | ## Installing and running Microsoft PowerToys ### Requirements - Windows 11 or Windows 10 version 2004 (code name 20H1 / build number 19041) or newer. - Our installer will install the following items: - [Microsoft Edge WebView2 Runtime](https://go.microsoft.com/fwlink/p/?LinkId=2124703) bootstrapper. This will install the latest version. ### Via GitHub with EXE [Recommended] Go to the [Microsoft PowerToys GitHub releases page][github-release-link] and click on `Assets` at the bottom to show the files available in the release. Please use the appropriate PowerToys installer that matches your machine's architecture and install scope. For most, it is `x64` and per-user. <!-- items that need to be updated release to release --> [github-next-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F47 [github-current-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F46 [ptUserX64]: https://github.com/microsoft/PowerToys/releases/download/v0.73.0/PowerToysUserSetup-0.73.0-x64.exe [ptUserArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.73.0/PowerToysUserSetup-0.73.0-arm64.exe [ptMachineX64]: https://github.com/microsoft/PowerToys/releases/download/v0.73.0/PowerToysSetup-0.73.0-x64.exe [ptMachineArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.73.0/PowerToysSetup-0.73.0-arm64.exe | Description | Filename | sha256 hash | |----------------|----------|-------------| | Per user - x64 | [PowerToysUserSetup-0.73.0-x64.exe][ptUserX64] | BA55D245BDD734FD6F19803DD706A3AB8E0ABC491591195534997CF2122D3B7E | | Per user - ARM64 | [PowerToysUserSetup-0.73.0-arm64.exe][ptUserArm64] | FBFA40EA5FFA05236A7CCDD05E5142EE0C93D7485B965784196ED9B086BFEBF4 | | Machine wide - x64 | [PowerToysSetup-0.73.0-x64.exe][ptMachineX64] | 7FDA06292C7C2E6DA5AEF88D8E9D3DE89D331E9E356A232289F9B37CE4503894 | | Machine wide - ARM64 | [PowerToysSetup-0.73.0-arm64.exe][ptMachineArm64] | 4260AA30A1F52F194EE07E9E7ECD9E9F4CF35289267F213BC933F7A5191AC17C | This is our preferred method. ### Via Microsoft Store Install from the [Microsoft Store's PowerToys page][microsoft-store-link]. You must be using the [new Microsoft Store](https://blogs.windows.com/windowsExperience/2021/06/24/building-a-new-open-microsoft-store-on-windows-11/) which is available for both Windows 11 and Windows 10. ### Via WinGet Download PowerToys from [WinGet][winget-link]. Updating PowerToys via winget will respect current PowerToys installation scope. To install PowerToys, run the following command from the command line / PowerShell: #### User scope installer [default] ```powershell winget install Microsoft.PowerToys -s winget ``` #### Machine-wide scope installer ```powershell winget install --scope machine Microsoft.PowerToys -s winget ``` ### Other install methods There are [community driven install methods](./doc/unofficialInstallMethods.md) such as Chocolatey and Scoop. If these are your preferred install solutions, you can find the install instructions there. ## Third-Party Run Plugins There is a collection of [third-party plugins](./doc/thirdPartyRunPlugins.md) created by the community that aren't distributed with PowerToys. ## Contributing This project welcomes contributions of all types. Besides coding features / bug fixes, other ways to assist include spec writing, design, documentation, and finding bugs. We are excited to work with the power user community to build a set of tools for helping you get the most out of Windows. We ask that **before you start work on a feature that you would like to contribute**, please read our [Contributor's Guide](CONTRIBUTING.md). We would be happy to work with you to figure out the best approach, provide guidance and mentorship throughout feature development, and help avoid any wasted or duplicate effort. Most contributions require you to agree to a [Contributor License Agreement (CLA)][oss-CLA] declaring that you grant us the rights to use your contribution and that you have permission to do so. For guidance on developing for PowerToys, please read the [developer docs](/doc/devdocs) for a detailed breakdown. This includes how to setup your computer to compile. ## What's Happening ### PowerToys Roadmap Our [prioritized roadmap][roadmap] of features and utilities that the core team is focusing on. ### 0.73 - August 2023 Update In this release, we focused on releasing new features, stability and improvements. **Highlights** - Keyboard manager now allows Numpad keys to be bound separately from the main keyboard. If using a previous configuration, only the main keyboard (not numpad) keys will be mapped. To restore the previous behavior, manually add separate bindings for numpad keys. - New utility: Crop And Lock allows you to crop a current application into a smaller window or just create a thumbnail. Focus the target window and press the shortcut to start cropping. - FancyZones code improvements and refactor. - Modernized ImageResizer UX. - PowerRename advanced counter functionality. ### General - Added missing CoUninitialize call in elevation logic. Thanks [@sredna](https://github.com/sredna)! - New utility: Crop And Lock. Thanks [@robmikh](https://github.com/robmikh)! and [@kevinguo305](https://github.com/kevinguo305)! - Added new /helped fabric bot command to GitHub repo. Thanks [@Aaron-Junker](https://github.com/Aaron-Junker)! - Fixed crashes caused by invalid settings. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Always On Top - Added border transparency. ### FancyZones - Fixed issue causing canvas zones being drawn only when dragging in the zone area. - Fixed user-defined default layout highlighting issue. - Refactored and improved code quality. - Fixed issue causing the wrong layout to be applied when duplicating a non-selected layout. ### File Locksmith - Icon update. Thanks [@jmaraujouy](https://github.com/jmaraujouy)! ### File Explorer add-ons - Fixed issue causing thumbnail previewers to lock files. - Open URIs from developer files in default browser. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Installer - Fixed PowerToys autorun after installing as SYSTEM user. - Removed CreateScheduledTask custom action to handle task creation only from runner code. ### Image Resizer - Moved from ModernWPF to WpfUI to refresh and modernize UI/UX. Thanks [@niels9001](https://github.com/niels9001)! ### Keyboard Manager - Rephrased labels to enhance clarity. Thanks [@Jay-o-Way](https://github.com/Jay-o-Way)! - Keyboard manager now allows Numpad keys to be bound separately from the main keyboard. If using a previous configuration, only the main keyboard (not numpad) keys will be mapped. To restore the previous behavior, manually add separate bindings for numpad keys. ### Mouse Highlighter - The highlighter is now visible in "Always on Top" windows. - Added settings for automatic activation on startup. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Mouse Pointer Crosshairs - Added settings for automatic activation on startup. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Peek - Show correct file type for shortcuts. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Fixed issue causing the wrong file size to be displayed. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Show 1 byte instead of 1 bytes file size. Thanks [@Deepak-Sangle](https://github.com/Deepak-Sangle)! - Open URIs from developer files in the default browser. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Show a thumbnail and fallback to an icon for unsupported files. Thanks [@pedrolamas](https://github.com/pedrolamas)! ### PowerRename - Updated the OOBE gif. Thanks [@ChaseKnowlden](https://github.com/ChaseKnowlden)! - Localized the renamed parts combo box. - Introduced advanced counter functionality. - Added remember last window size logic and optimized sorting of items. - Enable "Enumerate items" option by default. ### PowerToys Run - Fixed an issue causing original search to be abandoned when cycling through results. - Updated device and bluetooth results for Settings plugin. Thanks [@htcfreek](https://github.com/htcfreek)! - Fixed InvalidOperationException exception thrown. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Add Base64 Decoding function to the Value Generator plugin. Thanks [@LeagueOfPoro](https://github.com/LeagueOfPoro)! - Added a Keep shell open option for Shell plugin. - Added Crop And Lock to PowerToys plugin. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Registry Preview - Updated AppBarButtons to use an explicit AppBarButton.Icon. Thanks [@randyrants](https://github.com/randyrants)! - Fixed crash on clicking Save As button. ### Runner - Removed unneeded RegisterWindowMessage from tray icon logic. Thanks [@sredna](https://github.com/sredna)! - Fixed startup looping issue. - Improved old logs and installers cleanup logic. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Screen Ruler - Use proper resources file. ### Settings - Fixed issue causing problems with modifier keys and ShortcutControl. Thanks [@sh0ckj0ckey](https://github.com/sh0ckj0ckey)! - Fixed crash when clicking "Windows color settings" link. - Added support for launching Settings app directly. - Fixed issue causing DisplayDescription not showing for PowerToys Run PluginAdditionalOption. - Fixed issue causing FileLocksmith 'Show File Locksmith in' setting not showing correct value. - Fixed issue causing Awake on/off toggle in Settings flyout not to work when Settings Awake page is opened. ### Documentation - Added documentation for PowerToys Run third-party plugins. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Fixed broken links in keyboardmanagerui.md. Thanks [@shubhsardana29](https://github.com/shubhsardana29)! - Updated core team in COMMUNITY.md. - Fixed broken links in ui-architecture.md. Thanks [@SamB](https://github.com/SamB)! - Updated community.valuegenerator.md with Base64DecodeRequest description. ### Development - Updated test packages and StyleCop. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Condense NuGet Restore into MSBuild Tasks. Thanks [@snickler](https://github.com/snickler)! #### What is being planned for version 0.74 For [v0.74][github-next-release-work], we'll work on the items below: - Language selection - Modernize and refresh the UX of PowerToys based on WPF - Stability / bug fixes - Peek: UI improvements ## PowerToys Community The PowerToys team is extremely grateful to have the [support of an amazing active community][community-link]. The work you do is incredibly important. PowerToys wouldn’t be nearly what it is today without your help filing bugs, updating documentation, guiding the design, or writing features. We want to say thank you and take time to recognize your work. Month by month, you directly help make PowerToys a better piece of software. ## Code of Conduct This project has adopted the [Microsoft Open Source Code of Conduct][oss-conduct-code]. ## Privacy Statement The application logs basic telemetry. Our Telemetry Data page (Coming Soon) has the trends from the telemetry. Please read the [Microsoft privacy statement][privacy-link] for more information. [oss-CLA]: https://cla.opensource.microsoft.com [oss-conduct-code]: CODE_OF_CONDUCT.md [community-link]: COMMUNITY.md [github-release-link]: https://aka.ms/installPowerToys [microsoft-store-link]: https://aka.ms/getPowertoys [winget-link]: https://github.com/microsoft/winget-cli#installing-the-client [roadmap]: https://github.com/microsoft/PowerToys/wiki/Roadmap [privacy-link]: http://go.microsoft.com/fwlink/?LinkId=521839 [vidConfOverview]: https://aka.ms/PowerToysOverview_VideoConference [loc-bug]: https://github.com/microsoft/PowerToys/issues/new?assignees=&labels=&template=translation_issue.md&title= [usingPowerToys-docs-link]: https://aka.ms/powertoys-docs
# Microsoft PowerToys ![Hero image for Microsoft PowerToys](doc/images/overview/PT_hero_image.png) [How to use PowerToys][usingPowerToys-docs-link] | [Downloads & Release notes][github-release-link] | [Contributing to PowerToys](#contributing) | [What's Happening](#whats-happening) | [Roadmap](#powertoys-roadmap) ## Build status | Architecture | Solution (Main) | Solution (Stable) | Installer (Main) | |--------------|-----------------|-------------------|------------------| | x64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main&jobName=Build%20x64%20Release) | [![Build Status for Stable](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=stable&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_x64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | | ARM64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main) | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_arm64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | ## About Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. For more info on [PowerToys overviews and how to use the utilities][usingPowerToys-docs-link], or any other tools and resources for [Windows development environments](https://learn.microsoft.com/windows/dev-environment/overview), head over to [learn.microsoft.com][usingPowerToys-docs-link]! | | Current utilities: | | |--------------|--------------------|--------------| | [Always on Top](https://aka.ms/PowerToysOverview_AoT) | [PowerToys Awake](https://aka.ms/PowerToysOverview_Awake) | [Color Picker](https://aka.ms/PowerToysOverview_ColorPicker) | | [Crop And Lock](https://aka.ms/PowerToysOverview_CropAndLock) | [FancyZones](https://aka.ms/PowerToysOverview_FancyZones) | [File Explorer Add-ons](https://aka.ms/PowerToysOverview_FileExplorerAddOns) | | [File Locksmith](https://aka.ms/PowerToysOverview_FileLocksmith) | [Hosts File Editor](https://aka.ms/PowerToysOverview_HostsFileEditor) | [Image Resizer](https://aka.ms/PowerToysOverview_ImageResizer) | | [Keyboard Manager](https://aka.ms/PowerToysOverview_KeyboardManager) | [Mouse utilities](https://aka.ms/PowerToysOverview_MouseUtilities) | [Mouse Without Borders](https://aka.ms/PowerToysOverview_MouseWithoutBorders) | | [Peek](https://aka.ms/PowerToysOverview_Peek) | [Paste as Plain Text](https://aka.ms/PowerToysOverview_PastePlain) | [PowerRename](https://aka.ms/PowerToysOverview_PowerRename) | | [PowerToys Run](https://aka.ms/PowerToysOverview_PowerToysRun) | [Quick Accent](https://aka.ms/PowerToysOverview_QuickAccent) | [Registry Preview](https://aka.ms/PowerToysOverview_RegistryPreview) | | [Screen Ruler](https://aka.ms/PowerToysOverview_ScreenRuler) | [Shortcut Guide](https://aka.ms/PowerToysOverview_ShortcutGuide) | [Text Extractor](https://aka.ms/PowerToysOverview_TextExtractor) | | [Video Conference Mute](https://aka.ms/PowerToysOverview_VideoConference) | ## Installing and running Microsoft PowerToys ### Requirements - Windows 11 or Windows 10 version 2004 (code name 20H1 / build number 19041) or newer. - Our installer will install the following items: - [Microsoft Edge WebView2 Runtime](https://go.microsoft.com/fwlink/p/?LinkId=2124703) bootstrapper. This will install the latest version. ### Via GitHub with EXE [Recommended] Go to the [Microsoft PowerToys GitHub releases page][github-release-link] and click on `Assets` at the bottom to show the files available in the release. Please use the appropriate PowerToys installer that matches your machine's architecture and install scope. For most, it is `x64` and per-user. <!-- items that need to be updated release to release --> [github-next-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F48 [github-current-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F47 [ptUserX64]: https://github.com/microsoft/PowerToys/releases/download/v0.74.0/PowerToysUserSetup-0.74.0-x64.exe [ptUserArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.74.0/PowerToysUserSetup-0.74.0-arm64.exe [ptMachineX64]: https://github.com/microsoft/PowerToys/releases/download/v0.74.0/PowerToysSetup-0.74.0-x64.exe [ptMachineArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.74.0/PowerToysSetup-0.74.0-arm64.exe | Description | Filename | sha256 hash | |----------------|----------|-------------| | Per user - x64 | [PowerToysUserSetup-0.74.0-x64.exe][ptUserX64] | 1C4ECE9F11488BAFFAE6B76D2B0504FA18BFFEA11EBC38BCC87F5D86AEA87C7C | | Per user - ARM64 | [PowerToysUserSetup-0.74.0-arm64.exe][ptUserArm64] | 4F3842FAB0839A361A15A06B7720BA8A0FE7F9AF98EA94245C08DEF37678CA4A | | Machine wide - x64 | [PowerToysSetup-0.74.0-x64.exe][ptMachineX64] | 648992E8CEA08F3C63C7CCBD554ADDF500ECBC4560187310BC12E6CB9C2F38E3 | | Machine wide - ARM64 | [PowerToysSetup-0.74.0-arm64.exe][ptMachineArm64] | 2B6D92F1A0EA688C7EE882050AC9B030C8B3A18765163FB6D67E5E694A4D4FE3 | This is our preferred method. ### Via Microsoft Store Install from the [Microsoft Store's PowerToys page][microsoft-store-link]. You must be using the [new Microsoft Store](https://blogs.windows.com/windowsExperience/2021/06/24/building-a-new-open-microsoft-store-on-windows-11/) which is available for both Windows 11 and Windows 10. ### Via WinGet Download PowerToys from [WinGet][winget-link]. Updating PowerToys via winget will respect current PowerToys installation scope. To install PowerToys, run the following command from the command line / PowerShell: #### User scope installer [default] ```powershell winget install Microsoft.PowerToys -s winget ``` #### Machine-wide scope installer ```powershell winget install --scope machine Microsoft.PowerToys -s winget ``` ### Other install methods There are [community driven install methods](./doc/unofficialInstallMethods.md) such as Chocolatey and Scoop. If these are your preferred install solutions, you can find the install instructions there. ## Third-Party Run Plugins There is a collection of [third-party plugins](./doc/thirdPartyRunPlugins.md) created by the community that aren't distributed with PowerToys. ## Contributing This project welcomes contributions of all types. Besides coding features / bug fixes, other ways to assist include spec writing, design, documentation, and finding bugs. We are excited to work with the power user community to build a set of tools for helping you get the most out of Windows. We ask that **before you start work on a feature that you would like to contribute**, please read our [Contributor's Guide](CONTRIBUTING.md). We would be happy to work with you to figure out the best approach, provide guidance and mentorship throughout feature development, and help avoid any wasted or duplicate effort. Most contributions require you to agree to a [Contributor License Agreement (CLA)][oss-CLA] declaring that you grant us the rights to use your contribution and that you have permission to do so. For guidance on developing for PowerToys, please read the [developer docs](/doc/devdocs) for a detailed breakdown. This includes how to setup your computer to compile. ## What's Happening ### PowerToys Roadmap Our [prioritized roadmap][roadmap] of features and utilities that the core team is focusing on. ### 0.74 - September 2023 Update In this release, we focused on stability and improvements. **Highlights** - Upgraded to Windows App SDK 1.4.1, increasing stability of WinUI3 utilities. Thanks [@dongle-the-gadget](https://github.com/dongle-the-gadget) for starting the upgrade! - Text Extractor was upgraded to its version 2.0, with a new overlay, table mode and more Quality of Life improvements. Thanks [@TheJoeFin](https://github.com/TheJoeFin)! - Improved FancyZones stability, fixing some layout resets and improving handling of newly created windows on Windows 11. - Fixed many silent crashes that were reported to Watson and the user's event viewer. ### General - Turning animations off in Windows Settings will now also turn them off in PowerToys. - Upgraded the Windows App SDK dependency to 1.4.1. Thanks [@dongle-the-gadget](https://github.com/dongle-the-gadget) for the original 1.4.0 upgrade! - Show in the thumbnail label and application titles when running as administrator. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Upgraded the Win UI Community Toolkit dependency to 8.0. Thanks [@niels9001](https://github.com/niels9001)! ### Awake - Added down-sampled variants to the application's icon. Thanks [@morriscurtis](https://github.com/morriscurtis)! ### Color Picker - After adding a new color in the editor, the history will scroll the new color into view. Thanks [@peerpalo](https://github.com/peerpalo)! ### Crop and Lock - Fixed a Crop and Lock crash that would occur when trying to reparent a window crashes the target application. An error message is shown instead. ### FancyZones - Set the process and main thread priority to normal. - Fixed handling newly created windows on Windows 11. - Fixed scenarios where opening the FancyZones Editor would reset the layouts. ### File Explorer add-ons - Optimized CPU usage for generating SVG thumbnails. - Improved handling of Gcode Thumbnails, including JPG and QOI formats. Thanks [@pedrolamas](https://github.com/pedrolamas)! - Better handled errors when sending telemetry, which were causing reported crashes. - Fixed some thumbnails not being shown centered like before the optimization. ### File Locksmith - Shows files opened by processes with PID greater than 65535. Thanks [@poke30744](https://github.com/poke30744)! - Fixed a GDI object leak in the context menu which would crash Explorer. ### Find My Mouse - Added new activation methods, including by hotkey. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Hosts File Editor - Ignore the default ACME sample entries in the hosts file. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Improved save error handling and added better error messages. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Corrected a check for an error when signaling the application to start as administrator. - Refactored the context menu. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Fixed dialogs overlapping the title bar after the upgrade to Windows App SDK 1.4. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Keyboard Manager - Distinguish between the regular minus key and the numpad minus key. ### Mouse Without Borders - Fixed a crash when trying to restart the application. ### Peek - Using Peek on HTML files will show a white background by default, similar to a browser's default behavior. - Fix a white flash on Dark theme when switching file and improved the development file preview detection and adjustments. ### PowerRename - Fixed a crash caused by big counter values on the new enumeration method. ### PowerToys Run - It's now possible to select which shell is used by the Shell plugin. - A combobox option type was added to the plugin options. - Fixed a bug in the Calculator plugin that was causing decimal numbers to be misinterpreted on locales where the dot (`.`) character isn't used as a decimal or digit separator. - Improved the Program plugin stability when it fails to load a program's thumbnail at startup. - The use of Pinyin for querying some plugins can now be turned on in Settings. Thanks [@ChaseKnowlden](https://github.com/ChaseKnowlden)! - Refactored option types for plugin and added number, string and composite types to be used in the future. Thanks [@htcfreek](https://github.com/htcfreek)! - Fixed the entry for searching for Windows updates in the Settings plugin. Thanks [@htcfreek](https://github.com/htcfreek)! ### Quick Accent - The "All languages" character set is now calculated by programmatically querying the characters for every available language. Thanks [@dannysummerlin](https://github.com/dannysummerlin)! - Added é to the Norwegian and Swedish languages. Thanks [@Aaron-Junker](https://github.com/Aaron-Junker)! - Added a runtime cache to the "All languages" character set, to only calculate accents once per key. ### Registry Preview - Fixed focusing issues at startup. - Improved the data visualization to show data in a similar way to the Windows Registry Editor. Thanks [@dillydylann](https://github.com/dillydylann)! ### Runner - Fixed hanging when a bug report was generated from the flyout. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Settings - Improved the way the OOBE window reacts to Windows theme change. - Fixed an issue that made it impossible to change the "Switch between windows in the current zone" "Next window" shortcut for FancyZones. - Fixed a crash when entering a duplicate name for a color in the Color Picker page and improved clean up when cancelling a color edit. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Text Extractor - Text Extractor 2.0, with a new overlay, table mode and more Quality of Life improvements. Thanks [@TheJoeFin](https://github.com/TheJoeFin)! ### Documentation - SECURITY.md was updated from 0.0.2 to 0.0.9. Thanks [@Aaron-Junker](https://github.com/Aaron-Junker)! - Improved the README and main development document for clarity and completeness. Thanks [@codeofdusk](https://github.com/codeofdusk) and [@aprilbbrockhoeft](https://github.com/aprilbbrockhoeft)! ### Development - Fixed PowerToys Run DateTime plugin tests that were failing depending on locale, so that they can be run correctly on all dev machines. - Fixed PowerToys Run System plugin tests that were failing for certain network interfaces, so that they can be run correctly on all dev machines. Thanks [@snickler](https://github.com/snickler)! - Fixed a markdown bug on the GitHub /helped command. - Switched build pipelines to a new agent pool. Thanks [@DHowett](https://github.com/DHowett)! - New .cs files created in Visual Studio get the header added automatically. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! #### What is being planned for version 0.75 For [v0.75][github-next-release-work], we'll work on the items below: - Language selection - .NET 8 upgrade - Policy support for managing PowerToys Run plugins. *Attention*: A breaking change is planned (for 0.75), in which each plugin has to declare its identifier programmatically so that it can be controlled through GPO. For third-party plugin developers, please check https://github.com/microsoft/PowerToys/pull/27468 for more details. - New utility: Environment Variables Editor. Here's a Work in Progress preview: ![Environment Variables Editor WIP](https://github.com/microsoft/PowerToys/assets/26118718/f99532a8-5aae-481b-a662-19a95f4aa03d) - New Settings homepage. Here's a Work in Progress preview: ![PowerToys Settings Dashboard WIP](https://github.com/microsoft/PowerToys/assets/26118718/938a5715-0a9b-4fe9-9e15-adfec92da694) - Modernize and refresh the UX of PowerToys based on WPF. Here's Work in Progress previews for the modules "PowerToys Run" and "Color Picker": ![PowerToys Run UI refresh WIP](https://github.com/microsoft/PowerToys/assets/9866362/16903bcb-c18e-49fb-93ca-738b81957055) ![ColorPicker UI refresh WIP](https://github.com/microsoft/PowerToys/assets/9866362/ceebe54b-de63-4ce7-afcb-2cd4280bf4d1) - Stability / bug fixes ## PowerToys Community The PowerToys team is extremely grateful to have the [support of an amazing active community][community-link]. The work you do is incredibly important. PowerToys wouldn’t be nearly what it is today without your help filing bugs, updating documentation, guiding the design, or writing features. We want to say thank you and take time to recognize your work. Month by month, you directly help make PowerToys a better piece of software. ## Code of Conduct This project has adopted the [Microsoft Open Source Code of Conduct][oss-conduct-code]. ## Privacy Statement The application logs basic telemetry. Our Telemetry Data page (Coming Soon) has the trends from the telemetry. Please read the [Microsoft privacy statement][privacy-link] for more information. [oss-CLA]: https://cla.opensource.microsoft.com [oss-conduct-code]: CODE_OF_CONDUCT.md [community-link]: COMMUNITY.md [github-release-link]: https://aka.ms/installPowerToys [microsoft-store-link]: https://aka.ms/getPowertoys [winget-link]: https://github.com/microsoft/winget-cli#installing-the-client [roadmap]: https://github.com/microsoft/PowerToys/wiki/Roadmap [privacy-link]: http://go.microsoft.com/fwlink/?LinkId=521839 [vidConfOverview]: https://aka.ms/PowerToysOverview_VideoConference [loc-bug]: https://github.com/microsoft/PowerToys/issues/new?assignees=&labels=&template=translation_issue.md&title= [usingPowerToys-docs-link]: https://aka.ms/powertoys-docs
jaimecbernardo
a1e0bd51617b2bea189cb16324eecd0e13fa7b86
77063e0767a0619abfc339db3a2a564d27310b6c
I've added it, with the disclaimer that there will be breaking changes on 0.75 What do you think?
jaimecbernardo
427
microsoft/PowerToys
28,775
0.74 changelogs
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request Readme update for the 0.74 release. This will be copy / pasted for release notes.
null
2023-09-26 11:20:42+00:00
2023-09-26 21:36:51+00:00
README.md
# Microsoft PowerToys ![Hero image for Microsoft PowerToys](doc/images/overview/PT_hero_image.png) [How to use PowerToys][usingPowerToys-docs-link] | [Downloads & Release notes][github-release-link] | [Contributing to PowerToys](#contributing) | [What's Happening](#whats-happening) | [Roadmap](#powertoys-roadmap) ## Build status | Architecture | Solution (Main) | Solution (Stable) | Installer (Main) | |--------------|-----------------|-------------------|------------------| | x64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main&jobName=Build%20x64%20Release) | [![Build Status for Stable](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=stable&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_x64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | | ARM64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main) | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_arm64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | ## About Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. For more info on [PowerToys overviews and how to use the utilities][usingPowerToys-docs-link], or any other tools and resources for [Windows development environments](https://learn.microsoft.com/windows/dev-environment/overview), head over to [learn.microsoft.com][usingPowerToys-docs-link]! | | Current utilities: | | |--------------|--------------------|--------------| | [Always on Top](https://aka.ms/PowerToysOverview_AoT) | [PowerToys Awake](https://aka.ms/PowerToysOverview_Awake) | [Color Picker](https://aka.ms/PowerToysOverview_ColorPicker) | | [Crop And Lock](https://aka.ms/PowerToysOverview_CropAndLock) | [FancyZones](https://aka.ms/PowerToysOverview_FancyZones) | [File Explorer Add-ons](https://aka.ms/PowerToysOverview_FileExplorerAddOns) | | [File Locksmith](https://aka.ms/PowerToysOverview_FileLocksmith) | [Hosts File Editor](https://aka.ms/PowerToysOverview_HostsFileEditor) | [Image Resizer](https://aka.ms/PowerToysOverview_ImageResizer) | | [Keyboard Manager](https://aka.ms/PowerToysOverview_KeyboardManager) | [Mouse utilities](https://aka.ms/PowerToysOverview_MouseUtilities) | [Mouse Without Borders](https://aka.ms/PowerToysOverview_MouseWithoutBorders) | | [Peek](https://aka.ms/PowerToysOverview_Peek) | [Paste as Plain Text](https://aka.ms/PowerToysOverview_PastePlain) | [PowerRename](https://aka.ms/PowerToysOverview_PowerRename) | | [PowerToys Run](https://aka.ms/PowerToysOverview_PowerToysRun) | [Quick Accent](https://aka.ms/PowerToysOverview_QuickAccent) | [Registry Preview](https://aka.ms/PowerToysOverview_RegistryPreview) | | [Screen Ruler](https://aka.ms/PowerToysOverview_ScreenRuler) | [Shortcut Guide](https://aka.ms/PowerToysOverview_ShortcutGuide) | [Text Extractor](https://aka.ms/PowerToysOverview_TextExtractor) | | [Video Conference Mute](https://aka.ms/PowerToysOverview_VideoConference) | ## Installing and running Microsoft PowerToys ### Requirements - Windows 11 or Windows 10 version 2004 (code name 20H1 / build number 19041) or newer. - Our installer will install the following items: - [Microsoft Edge WebView2 Runtime](https://go.microsoft.com/fwlink/p/?LinkId=2124703) bootstrapper. This will install the latest version. ### Via GitHub with EXE [Recommended] Go to the [Microsoft PowerToys GitHub releases page][github-release-link] and click on `Assets` at the bottom to show the files available in the release. Please use the appropriate PowerToys installer that matches your machine's architecture and install scope. For most, it is `x64` and per-user. <!-- items that need to be updated release to release --> [github-next-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F47 [github-current-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F46 [ptUserX64]: https://github.com/microsoft/PowerToys/releases/download/v0.73.0/PowerToysUserSetup-0.73.0-x64.exe [ptUserArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.73.0/PowerToysUserSetup-0.73.0-arm64.exe [ptMachineX64]: https://github.com/microsoft/PowerToys/releases/download/v0.73.0/PowerToysSetup-0.73.0-x64.exe [ptMachineArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.73.0/PowerToysSetup-0.73.0-arm64.exe | Description | Filename | sha256 hash | |----------------|----------|-------------| | Per user - x64 | [PowerToysUserSetup-0.73.0-x64.exe][ptUserX64] | BA55D245BDD734FD6F19803DD706A3AB8E0ABC491591195534997CF2122D3B7E | | Per user - ARM64 | [PowerToysUserSetup-0.73.0-arm64.exe][ptUserArm64] | FBFA40EA5FFA05236A7CCDD05E5142EE0C93D7485B965784196ED9B086BFEBF4 | | Machine wide - x64 | [PowerToysSetup-0.73.0-x64.exe][ptMachineX64] | 7FDA06292C7C2E6DA5AEF88D8E9D3DE89D331E9E356A232289F9B37CE4503894 | | Machine wide - ARM64 | [PowerToysSetup-0.73.0-arm64.exe][ptMachineArm64] | 4260AA30A1F52F194EE07E9E7ECD9E9F4CF35289267F213BC933F7A5191AC17C | This is our preferred method. ### Via Microsoft Store Install from the [Microsoft Store's PowerToys page][microsoft-store-link]. You must be using the [new Microsoft Store](https://blogs.windows.com/windowsExperience/2021/06/24/building-a-new-open-microsoft-store-on-windows-11/) which is available for both Windows 11 and Windows 10. ### Via WinGet Download PowerToys from [WinGet][winget-link]. Updating PowerToys via winget will respect current PowerToys installation scope. To install PowerToys, run the following command from the command line / PowerShell: #### User scope installer [default] ```powershell winget install Microsoft.PowerToys -s winget ``` #### Machine-wide scope installer ```powershell winget install --scope machine Microsoft.PowerToys -s winget ``` ### Other install methods There are [community driven install methods](./doc/unofficialInstallMethods.md) such as Chocolatey and Scoop. If these are your preferred install solutions, you can find the install instructions there. ## Third-Party Run Plugins There is a collection of [third-party plugins](./doc/thirdPartyRunPlugins.md) created by the community that aren't distributed with PowerToys. ## Contributing This project welcomes contributions of all types. Besides coding features / bug fixes, other ways to assist include spec writing, design, documentation, and finding bugs. We are excited to work with the power user community to build a set of tools for helping you get the most out of Windows. We ask that **before you start work on a feature that you would like to contribute**, please read our [Contributor's Guide](CONTRIBUTING.md). We would be happy to work with you to figure out the best approach, provide guidance and mentorship throughout feature development, and help avoid any wasted or duplicate effort. Most contributions require you to agree to a [Contributor License Agreement (CLA)][oss-CLA] declaring that you grant us the rights to use your contribution and that you have permission to do so. For guidance on developing for PowerToys, please read the [developer docs](/doc/devdocs) for a detailed breakdown. This includes how to setup your computer to compile. ## What's Happening ### PowerToys Roadmap Our [prioritized roadmap][roadmap] of features and utilities that the core team is focusing on. ### 0.73 - August 2023 Update In this release, we focused on releasing new features, stability and improvements. **Highlights** - Keyboard manager now allows Numpad keys to be bound separately from the main keyboard. If using a previous configuration, only the main keyboard (not numpad) keys will be mapped. To restore the previous behavior, manually add separate bindings for numpad keys. - New utility: Crop And Lock allows you to crop a current application into a smaller window or just create a thumbnail. Focus the target window and press the shortcut to start cropping. - FancyZones code improvements and refactor. - Modernized ImageResizer UX. - PowerRename advanced counter functionality. ### General - Added missing CoUninitialize call in elevation logic. Thanks [@sredna](https://github.com/sredna)! - New utility: Crop And Lock. Thanks [@robmikh](https://github.com/robmikh)! and [@kevinguo305](https://github.com/kevinguo305)! - Added new /helped fabric bot command to GitHub repo. Thanks [@Aaron-Junker](https://github.com/Aaron-Junker)! - Fixed crashes caused by invalid settings. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Always On Top - Added border transparency. ### FancyZones - Fixed issue causing canvas zones being drawn only when dragging in the zone area. - Fixed user-defined default layout highlighting issue. - Refactored and improved code quality. - Fixed issue causing the wrong layout to be applied when duplicating a non-selected layout. ### File Locksmith - Icon update. Thanks [@jmaraujouy](https://github.com/jmaraujouy)! ### File Explorer add-ons - Fixed issue causing thumbnail previewers to lock files. - Open URIs from developer files in default browser. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Installer - Fixed PowerToys autorun after installing as SYSTEM user. - Removed CreateScheduledTask custom action to handle task creation only from runner code. ### Image Resizer - Moved from ModernWPF to WpfUI to refresh and modernize UI/UX. Thanks [@niels9001](https://github.com/niels9001)! ### Keyboard Manager - Rephrased labels to enhance clarity. Thanks [@Jay-o-Way](https://github.com/Jay-o-Way)! - Keyboard manager now allows Numpad keys to be bound separately from the main keyboard. If using a previous configuration, only the main keyboard (not numpad) keys will be mapped. To restore the previous behavior, manually add separate bindings for numpad keys. ### Mouse Highlighter - The highlighter is now visible in "Always on Top" windows. - Added settings for automatic activation on startup. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Mouse Pointer Crosshairs - Added settings for automatic activation on startup. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Peek - Show correct file type for shortcuts. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Fixed issue causing the wrong file size to be displayed. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Show 1 byte instead of 1 bytes file size. Thanks [@Deepak-Sangle](https://github.com/Deepak-Sangle)! - Open URIs from developer files in the default browser. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Show a thumbnail and fallback to an icon for unsupported files. Thanks [@pedrolamas](https://github.com/pedrolamas)! ### PowerRename - Updated the OOBE gif. Thanks [@ChaseKnowlden](https://github.com/ChaseKnowlden)! - Localized the renamed parts combo box. - Introduced advanced counter functionality. - Added remember last window size logic and optimized sorting of items. - Enable "Enumerate items" option by default. ### PowerToys Run - Fixed an issue causing original search to be abandoned when cycling through results. - Updated device and bluetooth results for Settings plugin. Thanks [@htcfreek](https://github.com/htcfreek)! - Fixed InvalidOperationException exception thrown. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Add Base64 Decoding function to the Value Generator plugin. Thanks [@LeagueOfPoro](https://github.com/LeagueOfPoro)! - Added a Keep shell open option for Shell plugin. - Added Crop And Lock to PowerToys plugin. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Registry Preview - Updated AppBarButtons to use an explicit AppBarButton.Icon. Thanks [@randyrants](https://github.com/randyrants)! - Fixed crash on clicking Save As button. ### Runner - Removed unneeded RegisterWindowMessage from tray icon logic. Thanks [@sredna](https://github.com/sredna)! - Fixed startup looping issue. - Improved old logs and installers cleanup logic. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Screen Ruler - Use proper resources file. ### Settings - Fixed issue causing problems with modifier keys and ShortcutControl. Thanks [@sh0ckj0ckey](https://github.com/sh0ckj0ckey)! - Fixed crash when clicking "Windows color settings" link. - Added support for launching Settings app directly. - Fixed issue causing DisplayDescription not showing for PowerToys Run PluginAdditionalOption. - Fixed issue causing FileLocksmith 'Show File Locksmith in' setting not showing correct value. - Fixed issue causing Awake on/off toggle in Settings flyout not to work when Settings Awake page is opened. ### Documentation - Added documentation for PowerToys Run third-party plugins. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Fixed broken links in keyboardmanagerui.md. Thanks [@shubhsardana29](https://github.com/shubhsardana29)! - Updated core team in COMMUNITY.md. - Fixed broken links in ui-architecture.md. Thanks [@SamB](https://github.com/SamB)! - Updated community.valuegenerator.md with Base64DecodeRequest description. ### Development - Updated test packages and StyleCop. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Condense NuGet Restore into MSBuild Tasks. Thanks [@snickler](https://github.com/snickler)! #### What is being planned for version 0.74 For [v0.74][github-next-release-work], we'll work on the items below: - Language selection - Modernize and refresh the UX of PowerToys based on WPF - Stability / bug fixes - Peek: UI improvements ## PowerToys Community The PowerToys team is extremely grateful to have the [support of an amazing active community][community-link]. The work you do is incredibly important. PowerToys wouldn’t be nearly what it is today without your help filing bugs, updating documentation, guiding the design, or writing features. We want to say thank you and take time to recognize your work. Month by month, you directly help make PowerToys a better piece of software. ## Code of Conduct This project has adopted the [Microsoft Open Source Code of Conduct][oss-conduct-code]. ## Privacy Statement The application logs basic telemetry. Our Telemetry Data page (Coming Soon) has the trends from the telemetry. Please read the [Microsoft privacy statement][privacy-link] for more information. [oss-CLA]: https://cla.opensource.microsoft.com [oss-conduct-code]: CODE_OF_CONDUCT.md [community-link]: COMMUNITY.md [github-release-link]: https://aka.ms/installPowerToys [microsoft-store-link]: https://aka.ms/getPowertoys [winget-link]: https://github.com/microsoft/winget-cli#installing-the-client [roadmap]: https://github.com/microsoft/PowerToys/wiki/Roadmap [privacy-link]: http://go.microsoft.com/fwlink/?LinkId=521839 [vidConfOverview]: https://aka.ms/PowerToysOverview_VideoConference [loc-bug]: https://github.com/microsoft/PowerToys/issues/new?assignees=&labels=&template=translation_issue.md&title= [usingPowerToys-docs-link]: https://aka.ms/powertoys-docs
# Microsoft PowerToys ![Hero image for Microsoft PowerToys](doc/images/overview/PT_hero_image.png) [How to use PowerToys][usingPowerToys-docs-link] | [Downloads & Release notes][github-release-link] | [Contributing to PowerToys](#contributing) | [What's Happening](#whats-happening) | [Roadmap](#powertoys-roadmap) ## Build status | Architecture | Solution (Main) | Solution (Stable) | Installer (Main) | |--------------|-----------------|-------------------|------------------| | x64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main&jobName=Build%20x64%20Release) | [![Build Status for Stable](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=stable&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_x64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | | ARM64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main) | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_arm64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | ## About Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. For more info on [PowerToys overviews and how to use the utilities][usingPowerToys-docs-link], or any other tools and resources for [Windows development environments](https://learn.microsoft.com/windows/dev-environment/overview), head over to [learn.microsoft.com][usingPowerToys-docs-link]! | | Current utilities: | | |--------------|--------------------|--------------| | [Always on Top](https://aka.ms/PowerToysOverview_AoT) | [PowerToys Awake](https://aka.ms/PowerToysOverview_Awake) | [Color Picker](https://aka.ms/PowerToysOverview_ColorPicker) | | [Crop And Lock](https://aka.ms/PowerToysOverview_CropAndLock) | [FancyZones](https://aka.ms/PowerToysOverview_FancyZones) | [File Explorer Add-ons](https://aka.ms/PowerToysOverview_FileExplorerAddOns) | | [File Locksmith](https://aka.ms/PowerToysOverview_FileLocksmith) | [Hosts File Editor](https://aka.ms/PowerToysOverview_HostsFileEditor) | [Image Resizer](https://aka.ms/PowerToysOverview_ImageResizer) | | [Keyboard Manager](https://aka.ms/PowerToysOverview_KeyboardManager) | [Mouse utilities](https://aka.ms/PowerToysOverview_MouseUtilities) | [Mouse Without Borders](https://aka.ms/PowerToysOverview_MouseWithoutBorders) | | [Peek](https://aka.ms/PowerToysOverview_Peek) | [Paste as Plain Text](https://aka.ms/PowerToysOverview_PastePlain) | [PowerRename](https://aka.ms/PowerToysOverview_PowerRename) | | [PowerToys Run](https://aka.ms/PowerToysOverview_PowerToysRun) | [Quick Accent](https://aka.ms/PowerToysOverview_QuickAccent) | [Registry Preview](https://aka.ms/PowerToysOverview_RegistryPreview) | | [Screen Ruler](https://aka.ms/PowerToysOverview_ScreenRuler) | [Shortcut Guide](https://aka.ms/PowerToysOverview_ShortcutGuide) | [Text Extractor](https://aka.ms/PowerToysOverview_TextExtractor) | | [Video Conference Mute](https://aka.ms/PowerToysOverview_VideoConference) | ## Installing and running Microsoft PowerToys ### Requirements - Windows 11 or Windows 10 version 2004 (code name 20H1 / build number 19041) or newer. - Our installer will install the following items: - [Microsoft Edge WebView2 Runtime](https://go.microsoft.com/fwlink/p/?LinkId=2124703) bootstrapper. This will install the latest version. ### Via GitHub with EXE [Recommended] Go to the [Microsoft PowerToys GitHub releases page][github-release-link] and click on `Assets` at the bottom to show the files available in the release. Please use the appropriate PowerToys installer that matches your machine's architecture and install scope. For most, it is `x64` and per-user. <!-- items that need to be updated release to release --> [github-next-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F48 [github-current-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F47 [ptUserX64]: https://github.com/microsoft/PowerToys/releases/download/v0.74.0/PowerToysUserSetup-0.74.0-x64.exe [ptUserArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.74.0/PowerToysUserSetup-0.74.0-arm64.exe [ptMachineX64]: https://github.com/microsoft/PowerToys/releases/download/v0.74.0/PowerToysSetup-0.74.0-x64.exe [ptMachineArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.74.0/PowerToysSetup-0.74.0-arm64.exe | Description | Filename | sha256 hash | |----------------|----------|-------------| | Per user - x64 | [PowerToysUserSetup-0.74.0-x64.exe][ptUserX64] | 1C4ECE9F11488BAFFAE6B76D2B0504FA18BFFEA11EBC38BCC87F5D86AEA87C7C | | Per user - ARM64 | [PowerToysUserSetup-0.74.0-arm64.exe][ptUserArm64] | 4F3842FAB0839A361A15A06B7720BA8A0FE7F9AF98EA94245C08DEF37678CA4A | | Machine wide - x64 | [PowerToysSetup-0.74.0-x64.exe][ptMachineX64] | 648992E8CEA08F3C63C7CCBD554ADDF500ECBC4560187310BC12E6CB9C2F38E3 | | Machine wide - ARM64 | [PowerToysSetup-0.74.0-arm64.exe][ptMachineArm64] | 2B6D92F1A0EA688C7EE882050AC9B030C8B3A18765163FB6D67E5E694A4D4FE3 | This is our preferred method. ### Via Microsoft Store Install from the [Microsoft Store's PowerToys page][microsoft-store-link]. You must be using the [new Microsoft Store](https://blogs.windows.com/windowsExperience/2021/06/24/building-a-new-open-microsoft-store-on-windows-11/) which is available for both Windows 11 and Windows 10. ### Via WinGet Download PowerToys from [WinGet][winget-link]. Updating PowerToys via winget will respect current PowerToys installation scope. To install PowerToys, run the following command from the command line / PowerShell: #### User scope installer [default] ```powershell winget install Microsoft.PowerToys -s winget ``` #### Machine-wide scope installer ```powershell winget install --scope machine Microsoft.PowerToys -s winget ``` ### Other install methods There are [community driven install methods](./doc/unofficialInstallMethods.md) such as Chocolatey and Scoop. If these are your preferred install solutions, you can find the install instructions there. ## Third-Party Run Plugins There is a collection of [third-party plugins](./doc/thirdPartyRunPlugins.md) created by the community that aren't distributed with PowerToys. ## Contributing This project welcomes contributions of all types. Besides coding features / bug fixes, other ways to assist include spec writing, design, documentation, and finding bugs. We are excited to work with the power user community to build a set of tools for helping you get the most out of Windows. We ask that **before you start work on a feature that you would like to contribute**, please read our [Contributor's Guide](CONTRIBUTING.md). We would be happy to work with you to figure out the best approach, provide guidance and mentorship throughout feature development, and help avoid any wasted or duplicate effort. Most contributions require you to agree to a [Contributor License Agreement (CLA)][oss-CLA] declaring that you grant us the rights to use your contribution and that you have permission to do so. For guidance on developing for PowerToys, please read the [developer docs](/doc/devdocs) for a detailed breakdown. This includes how to setup your computer to compile. ## What's Happening ### PowerToys Roadmap Our [prioritized roadmap][roadmap] of features and utilities that the core team is focusing on. ### 0.74 - September 2023 Update In this release, we focused on stability and improvements. **Highlights** - Upgraded to Windows App SDK 1.4.1, increasing stability of WinUI3 utilities. Thanks [@dongle-the-gadget](https://github.com/dongle-the-gadget) for starting the upgrade! - Text Extractor was upgraded to its version 2.0, with a new overlay, table mode and more Quality of Life improvements. Thanks [@TheJoeFin](https://github.com/TheJoeFin)! - Improved FancyZones stability, fixing some layout resets and improving handling of newly created windows on Windows 11. - Fixed many silent crashes that were reported to Watson and the user's event viewer. ### General - Turning animations off in Windows Settings will now also turn them off in PowerToys. - Upgraded the Windows App SDK dependency to 1.4.1. Thanks [@dongle-the-gadget](https://github.com/dongle-the-gadget) for the original 1.4.0 upgrade! - Show in the thumbnail label and application titles when running as administrator. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Upgraded the Win UI Community Toolkit dependency to 8.0. Thanks [@niels9001](https://github.com/niels9001)! ### Awake - Added down-sampled variants to the application's icon. Thanks [@morriscurtis](https://github.com/morriscurtis)! ### Color Picker - After adding a new color in the editor, the history will scroll the new color into view. Thanks [@peerpalo](https://github.com/peerpalo)! ### Crop and Lock - Fixed a Crop and Lock crash that would occur when trying to reparent a window crashes the target application. An error message is shown instead. ### FancyZones - Set the process and main thread priority to normal. - Fixed handling newly created windows on Windows 11. - Fixed scenarios where opening the FancyZones Editor would reset the layouts. ### File Explorer add-ons - Optimized CPU usage for generating SVG thumbnails. - Improved handling of Gcode Thumbnails, including JPG and QOI formats. Thanks [@pedrolamas](https://github.com/pedrolamas)! - Better handled errors when sending telemetry, which were causing reported crashes. - Fixed some thumbnails not being shown centered like before the optimization. ### File Locksmith - Shows files opened by processes with PID greater than 65535. Thanks [@poke30744](https://github.com/poke30744)! - Fixed a GDI object leak in the context menu which would crash Explorer. ### Find My Mouse - Added new activation methods, including by hotkey. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Hosts File Editor - Ignore the default ACME sample entries in the hosts file. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Improved save error handling and added better error messages. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Corrected a check for an error when signaling the application to start as administrator. - Refactored the context menu. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Fixed dialogs overlapping the title bar after the upgrade to Windows App SDK 1.4. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Keyboard Manager - Distinguish between the regular minus key and the numpad minus key. ### Mouse Without Borders - Fixed a crash when trying to restart the application. ### Peek - Using Peek on HTML files will show a white background by default, similar to a browser's default behavior. - Fix a white flash on Dark theme when switching file and improved the development file preview detection and adjustments. ### PowerRename - Fixed a crash caused by big counter values on the new enumeration method. ### PowerToys Run - It's now possible to select which shell is used by the Shell plugin. - A combobox option type was added to the plugin options. - Fixed a bug in the Calculator plugin that was causing decimal numbers to be misinterpreted on locales where the dot (`.`) character isn't used as a decimal or digit separator. - Improved the Program plugin stability when it fails to load a program's thumbnail at startup. - The use of Pinyin for querying some plugins can now be turned on in Settings. Thanks [@ChaseKnowlden](https://github.com/ChaseKnowlden)! - Refactored option types for plugin and added number, string and composite types to be used in the future. Thanks [@htcfreek](https://github.com/htcfreek)! - Fixed the entry for searching for Windows updates in the Settings plugin. Thanks [@htcfreek](https://github.com/htcfreek)! ### Quick Accent - The "All languages" character set is now calculated by programmatically querying the characters for every available language. Thanks [@dannysummerlin](https://github.com/dannysummerlin)! - Added é to the Norwegian and Swedish languages. Thanks [@Aaron-Junker](https://github.com/Aaron-Junker)! - Added a runtime cache to the "All languages" character set, to only calculate accents once per key. ### Registry Preview - Fixed focusing issues at startup. - Improved the data visualization to show data in a similar way to the Windows Registry Editor. Thanks [@dillydylann](https://github.com/dillydylann)! ### Runner - Fixed hanging when a bug report was generated from the flyout. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Settings - Improved the way the OOBE window reacts to Windows theme change. - Fixed an issue that made it impossible to change the "Switch between windows in the current zone" "Next window" shortcut for FancyZones. - Fixed a crash when entering a duplicate name for a color in the Color Picker page and improved clean up when cancelling a color edit. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Text Extractor - Text Extractor 2.0, with a new overlay, table mode and more Quality of Life improvements. Thanks [@TheJoeFin](https://github.com/TheJoeFin)! ### Documentation - SECURITY.md was updated from 0.0.2 to 0.0.9. Thanks [@Aaron-Junker](https://github.com/Aaron-Junker)! - Improved the README and main development document for clarity and completeness. Thanks [@codeofdusk](https://github.com/codeofdusk) and [@aprilbbrockhoeft](https://github.com/aprilbbrockhoeft)! ### Development - Fixed PowerToys Run DateTime plugin tests that were failing depending on locale, so that they can be run correctly on all dev machines. - Fixed PowerToys Run System plugin tests that were failing for certain network interfaces, so that they can be run correctly on all dev machines. Thanks [@snickler](https://github.com/snickler)! - Fixed a markdown bug on the GitHub /helped command. - Switched build pipelines to a new agent pool. Thanks [@DHowett](https://github.com/DHowett)! - New .cs files created in Visual Studio get the header added automatically. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! #### What is being planned for version 0.75 For [v0.75][github-next-release-work], we'll work on the items below: - Language selection - .NET 8 upgrade - Policy support for managing PowerToys Run plugins. *Attention*: A breaking change is planned (for 0.75), in which each plugin has to declare its identifier programmatically so that it can be controlled through GPO. For third-party plugin developers, please check https://github.com/microsoft/PowerToys/pull/27468 for more details. - New utility: Environment Variables Editor. Here's a Work in Progress preview: ![Environment Variables Editor WIP](https://github.com/microsoft/PowerToys/assets/26118718/f99532a8-5aae-481b-a662-19a95f4aa03d) - New Settings homepage. Here's a Work in Progress preview: ![PowerToys Settings Dashboard WIP](https://github.com/microsoft/PowerToys/assets/26118718/938a5715-0a9b-4fe9-9e15-adfec92da694) - Modernize and refresh the UX of PowerToys based on WPF. Here's Work in Progress previews for the modules "PowerToys Run" and "Color Picker": ![PowerToys Run UI refresh WIP](https://github.com/microsoft/PowerToys/assets/9866362/16903bcb-c18e-49fb-93ca-738b81957055) ![ColorPicker UI refresh WIP](https://github.com/microsoft/PowerToys/assets/9866362/ceebe54b-de63-4ce7-afcb-2cd4280bf4d1) - Stability / bug fixes ## PowerToys Community The PowerToys team is extremely grateful to have the [support of an amazing active community][community-link]. The work you do is incredibly important. PowerToys wouldn’t be nearly what it is today without your help filing bugs, updating documentation, guiding the design, or writing features. We want to say thank you and take time to recognize your work. Month by month, you directly help make PowerToys a better piece of software. ## Code of Conduct This project has adopted the [Microsoft Open Source Code of Conduct][oss-conduct-code]. ## Privacy Statement The application logs basic telemetry. Our Telemetry Data page (Coming Soon) has the trends from the telemetry. Please read the [Microsoft privacy statement][privacy-link] for more information. [oss-CLA]: https://cla.opensource.microsoft.com [oss-conduct-code]: CODE_OF_CONDUCT.md [community-link]: COMMUNITY.md [github-release-link]: https://aka.ms/installPowerToys [microsoft-store-link]: https://aka.ms/getPowertoys [winget-link]: https://github.com/microsoft/winget-cli#installing-the-client [roadmap]: https://github.com/microsoft/PowerToys/wiki/Roadmap [privacy-link]: http://go.microsoft.com/fwlink/?LinkId=521839 [vidConfOverview]: https://aka.ms/PowerToysOverview_VideoConference [loc-bug]: https://github.com/microsoft/PowerToys/issues/new?assignees=&labels=&template=translation_issue.md&title= [usingPowerToys-docs-link]: https://aka.ms/powertoys-docs
jaimecbernardo
a1e0bd51617b2bea189cb16324eecd0e13fa7b86
77063e0767a0619abfc339db3a2a564d27310b6c
```suggestion - PowerToys Run plugins now can have additional settings types: text, number, combobox and combinations with checkbox. ```
htcfreek
428
microsoft/PowerToys
28,775
0.74 changelogs
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request Readme update for the 0.74 release. This will be copy / pasted for release notes.
null
2023-09-26 11:20:42+00:00
2023-09-26 21:36:51+00:00
README.md
# Microsoft PowerToys ![Hero image for Microsoft PowerToys](doc/images/overview/PT_hero_image.png) [How to use PowerToys][usingPowerToys-docs-link] | [Downloads & Release notes][github-release-link] | [Contributing to PowerToys](#contributing) | [What's Happening](#whats-happening) | [Roadmap](#powertoys-roadmap) ## Build status | Architecture | Solution (Main) | Solution (Stable) | Installer (Main) | |--------------|-----------------|-------------------|------------------| | x64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main&jobName=Build%20x64%20Release) | [![Build Status for Stable](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=stable&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_x64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | | ARM64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main) | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_arm64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | ## About Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. For more info on [PowerToys overviews and how to use the utilities][usingPowerToys-docs-link], or any other tools and resources for [Windows development environments](https://learn.microsoft.com/windows/dev-environment/overview), head over to [learn.microsoft.com][usingPowerToys-docs-link]! | | Current utilities: | | |--------------|--------------------|--------------| | [Always on Top](https://aka.ms/PowerToysOverview_AoT) | [PowerToys Awake](https://aka.ms/PowerToysOverview_Awake) | [Color Picker](https://aka.ms/PowerToysOverview_ColorPicker) | | [Crop And Lock](https://aka.ms/PowerToysOverview_CropAndLock) | [FancyZones](https://aka.ms/PowerToysOverview_FancyZones) | [File Explorer Add-ons](https://aka.ms/PowerToysOverview_FileExplorerAddOns) | | [File Locksmith](https://aka.ms/PowerToysOverview_FileLocksmith) | [Hosts File Editor](https://aka.ms/PowerToysOverview_HostsFileEditor) | [Image Resizer](https://aka.ms/PowerToysOverview_ImageResizer) | | [Keyboard Manager](https://aka.ms/PowerToysOverview_KeyboardManager) | [Mouse utilities](https://aka.ms/PowerToysOverview_MouseUtilities) | [Mouse Without Borders](https://aka.ms/PowerToysOverview_MouseWithoutBorders) | | [Peek](https://aka.ms/PowerToysOverview_Peek) | [Paste as Plain Text](https://aka.ms/PowerToysOverview_PastePlain) | [PowerRename](https://aka.ms/PowerToysOverview_PowerRename) | | [PowerToys Run](https://aka.ms/PowerToysOverview_PowerToysRun) | [Quick Accent](https://aka.ms/PowerToysOverview_QuickAccent) | [Registry Preview](https://aka.ms/PowerToysOverview_RegistryPreview) | | [Screen Ruler](https://aka.ms/PowerToysOverview_ScreenRuler) | [Shortcut Guide](https://aka.ms/PowerToysOverview_ShortcutGuide) | [Text Extractor](https://aka.ms/PowerToysOverview_TextExtractor) | | [Video Conference Mute](https://aka.ms/PowerToysOverview_VideoConference) | ## Installing and running Microsoft PowerToys ### Requirements - Windows 11 or Windows 10 version 2004 (code name 20H1 / build number 19041) or newer. - Our installer will install the following items: - [Microsoft Edge WebView2 Runtime](https://go.microsoft.com/fwlink/p/?LinkId=2124703) bootstrapper. This will install the latest version. ### Via GitHub with EXE [Recommended] Go to the [Microsoft PowerToys GitHub releases page][github-release-link] and click on `Assets` at the bottom to show the files available in the release. Please use the appropriate PowerToys installer that matches your machine's architecture and install scope. For most, it is `x64` and per-user. <!-- items that need to be updated release to release --> [github-next-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F47 [github-current-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F46 [ptUserX64]: https://github.com/microsoft/PowerToys/releases/download/v0.73.0/PowerToysUserSetup-0.73.0-x64.exe [ptUserArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.73.0/PowerToysUserSetup-0.73.0-arm64.exe [ptMachineX64]: https://github.com/microsoft/PowerToys/releases/download/v0.73.0/PowerToysSetup-0.73.0-x64.exe [ptMachineArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.73.0/PowerToysSetup-0.73.0-arm64.exe | Description | Filename | sha256 hash | |----------------|----------|-------------| | Per user - x64 | [PowerToysUserSetup-0.73.0-x64.exe][ptUserX64] | BA55D245BDD734FD6F19803DD706A3AB8E0ABC491591195534997CF2122D3B7E | | Per user - ARM64 | [PowerToysUserSetup-0.73.0-arm64.exe][ptUserArm64] | FBFA40EA5FFA05236A7CCDD05E5142EE0C93D7485B965784196ED9B086BFEBF4 | | Machine wide - x64 | [PowerToysSetup-0.73.0-x64.exe][ptMachineX64] | 7FDA06292C7C2E6DA5AEF88D8E9D3DE89D331E9E356A232289F9B37CE4503894 | | Machine wide - ARM64 | [PowerToysSetup-0.73.0-arm64.exe][ptMachineArm64] | 4260AA30A1F52F194EE07E9E7ECD9E9F4CF35289267F213BC933F7A5191AC17C | This is our preferred method. ### Via Microsoft Store Install from the [Microsoft Store's PowerToys page][microsoft-store-link]. You must be using the [new Microsoft Store](https://blogs.windows.com/windowsExperience/2021/06/24/building-a-new-open-microsoft-store-on-windows-11/) which is available for both Windows 11 and Windows 10. ### Via WinGet Download PowerToys from [WinGet][winget-link]. Updating PowerToys via winget will respect current PowerToys installation scope. To install PowerToys, run the following command from the command line / PowerShell: #### User scope installer [default] ```powershell winget install Microsoft.PowerToys -s winget ``` #### Machine-wide scope installer ```powershell winget install --scope machine Microsoft.PowerToys -s winget ``` ### Other install methods There are [community driven install methods](./doc/unofficialInstallMethods.md) such as Chocolatey and Scoop. If these are your preferred install solutions, you can find the install instructions there. ## Third-Party Run Plugins There is a collection of [third-party plugins](./doc/thirdPartyRunPlugins.md) created by the community that aren't distributed with PowerToys. ## Contributing This project welcomes contributions of all types. Besides coding features / bug fixes, other ways to assist include spec writing, design, documentation, and finding bugs. We are excited to work with the power user community to build a set of tools for helping you get the most out of Windows. We ask that **before you start work on a feature that you would like to contribute**, please read our [Contributor's Guide](CONTRIBUTING.md). We would be happy to work with you to figure out the best approach, provide guidance and mentorship throughout feature development, and help avoid any wasted or duplicate effort. Most contributions require you to agree to a [Contributor License Agreement (CLA)][oss-CLA] declaring that you grant us the rights to use your contribution and that you have permission to do so. For guidance on developing for PowerToys, please read the [developer docs](/doc/devdocs) for a detailed breakdown. This includes how to setup your computer to compile. ## What's Happening ### PowerToys Roadmap Our [prioritized roadmap][roadmap] of features and utilities that the core team is focusing on. ### 0.73 - August 2023 Update In this release, we focused on releasing new features, stability and improvements. **Highlights** - Keyboard manager now allows Numpad keys to be bound separately from the main keyboard. If using a previous configuration, only the main keyboard (not numpad) keys will be mapped. To restore the previous behavior, manually add separate bindings for numpad keys. - New utility: Crop And Lock allows you to crop a current application into a smaller window or just create a thumbnail. Focus the target window and press the shortcut to start cropping. - FancyZones code improvements and refactor. - Modernized ImageResizer UX. - PowerRename advanced counter functionality. ### General - Added missing CoUninitialize call in elevation logic. Thanks [@sredna](https://github.com/sredna)! - New utility: Crop And Lock. Thanks [@robmikh](https://github.com/robmikh)! and [@kevinguo305](https://github.com/kevinguo305)! - Added new /helped fabric bot command to GitHub repo. Thanks [@Aaron-Junker](https://github.com/Aaron-Junker)! - Fixed crashes caused by invalid settings. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Always On Top - Added border transparency. ### FancyZones - Fixed issue causing canvas zones being drawn only when dragging in the zone area. - Fixed user-defined default layout highlighting issue. - Refactored and improved code quality. - Fixed issue causing the wrong layout to be applied when duplicating a non-selected layout. ### File Locksmith - Icon update. Thanks [@jmaraujouy](https://github.com/jmaraujouy)! ### File Explorer add-ons - Fixed issue causing thumbnail previewers to lock files. - Open URIs from developer files in default browser. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Installer - Fixed PowerToys autorun after installing as SYSTEM user. - Removed CreateScheduledTask custom action to handle task creation only from runner code. ### Image Resizer - Moved from ModernWPF to WpfUI to refresh and modernize UI/UX. Thanks [@niels9001](https://github.com/niels9001)! ### Keyboard Manager - Rephrased labels to enhance clarity. Thanks [@Jay-o-Way](https://github.com/Jay-o-Way)! - Keyboard manager now allows Numpad keys to be bound separately from the main keyboard. If using a previous configuration, only the main keyboard (not numpad) keys will be mapped. To restore the previous behavior, manually add separate bindings for numpad keys. ### Mouse Highlighter - The highlighter is now visible in "Always on Top" windows. - Added settings for automatic activation on startup. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Mouse Pointer Crosshairs - Added settings for automatic activation on startup. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Peek - Show correct file type for shortcuts. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Fixed issue causing the wrong file size to be displayed. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Show 1 byte instead of 1 bytes file size. Thanks [@Deepak-Sangle](https://github.com/Deepak-Sangle)! - Open URIs from developer files in the default browser. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Show a thumbnail and fallback to an icon for unsupported files. Thanks [@pedrolamas](https://github.com/pedrolamas)! ### PowerRename - Updated the OOBE gif. Thanks [@ChaseKnowlden](https://github.com/ChaseKnowlden)! - Localized the renamed parts combo box. - Introduced advanced counter functionality. - Added remember last window size logic and optimized sorting of items. - Enable "Enumerate items" option by default. ### PowerToys Run - Fixed an issue causing original search to be abandoned when cycling through results. - Updated device and bluetooth results for Settings plugin. Thanks [@htcfreek](https://github.com/htcfreek)! - Fixed InvalidOperationException exception thrown. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Add Base64 Decoding function to the Value Generator plugin. Thanks [@LeagueOfPoro](https://github.com/LeagueOfPoro)! - Added a Keep shell open option for Shell plugin. - Added Crop And Lock to PowerToys plugin. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Registry Preview - Updated AppBarButtons to use an explicit AppBarButton.Icon. Thanks [@randyrants](https://github.com/randyrants)! - Fixed crash on clicking Save As button. ### Runner - Removed unneeded RegisterWindowMessage from tray icon logic. Thanks [@sredna](https://github.com/sredna)! - Fixed startup looping issue. - Improved old logs and installers cleanup logic. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Screen Ruler - Use proper resources file. ### Settings - Fixed issue causing problems with modifier keys and ShortcutControl. Thanks [@sh0ckj0ckey](https://github.com/sh0ckj0ckey)! - Fixed crash when clicking "Windows color settings" link. - Added support for launching Settings app directly. - Fixed issue causing DisplayDescription not showing for PowerToys Run PluginAdditionalOption. - Fixed issue causing FileLocksmith 'Show File Locksmith in' setting not showing correct value. - Fixed issue causing Awake on/off toggle in Settings flyout not to work when Settings Awake page is opened. ### Documentation - Added documentation for PowerToys Run third-party plugins. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Fixed broken links in keyboardmanagerui.md. Thanks [@shubhsardana29](https://github.com/shubhsardana29)! - Updated core team in COMMUNITY.md. - Fixed broken links in ui-architecture.md. Thanks [@SamB](https://github.com/SamB)! - Updated community.valuegenerator.md with Base64DecodeRequest description. ### Development - Updated test packages and StyleCop. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Condense NuGet Restore into MSBuild Tasks. Thanks [@snickler](https://github.com/snickler)! #### What is being planned for version 0.74 For [v0.74][github-next-release-work], we'll work on the items below: - Language selection - Modernize and refresh the UX of PowerToys based on WPF - Stability / bug fixes - Peek: UI improvements ## PowerToys Community The PowerToys team is extremely grateful to have the [support of an amazing active community][community-link]. The work you do is incredibly important. PowerToys wouldn’t be nearly what it is today without your help filing bugs, updating documentation, guiding the design, or writing features. We want to say thank you and take time to recognize your work. Month by month, you directly help make PowerToys a better piece of software. ## Code of Conduct This project has adopted the [Microsoft Open Source Code of Conduct][oss-conduct-code]. ## Privacy Statement The application logs basic telemetry. Our Telemetry Data page (Coming Soon) has the trends from the telemetry. Please read the [Microsoft privacy statement][privacy-link] for more information. [oss-CLA]: https://cla.opensource.microsoft.com [oss-conduct-code]: CODE_OF_CONDUCT.md [community-link]: COMMUNITY.md [github-release-link]: https://aka.ms/installPowerToys [microsoft-store-link]: https://aka.ms/getPowertoys [winget-link]: https://github.com/microsoft/winget-cli#installing-the-client [roadmap]: https://github.com/microsoft/PowerToys/wiki/Roadmap [privacy-link]: http://go.microsoft.com/fwlink/?LinkId=521839 [vidConfOverview]: https://aka.ms/PowerToysOverview_VideoConference [loc-bug]: https://github.com/microsoft/PowerToys/issues/new?assignees=&labels=&template=translation_issue.md&title= [usingPowerToys-docs-link]: https://aka.ms/powertoys-docs
# Microsoft PowerToys ![Hero image for Microsoft PowerToys](doc/images/overview/PT_hero_image.png) [How to use PowerToys][usingPowerToys-docs-link] | [Downloads & Release notes][github-release-link] | [Contributing to PowerToys](#contributing) | [What's Happening](#whats-happening) | [Roadmap](#powertoys-roadmap) ## Build status | Architecture | Solution (Main) | Solution (Stable) | Installer (Main) | |--------------|-----------------|-------------------|------------------| | x64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main&jobName=Build%20x64%20Release) | [![Build Status for Stable](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=stable&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_x64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | | ARM64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main) | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_arm64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | ## About Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. For more info on [PowerToys overviews and how to use the utilities][usingPowerToys-docs-link], or any other tools and resources for [Windows development environments](https://learn.microsoft.com/windows/dev-environment/overview), head over to [learn.microsoft.com][usingPowerToys-docs-link]! | | Current utilities: | | |--------------|--------------------|--------------| | [Always on Top](https://aka.ms/PowerToysOverview_AoT) | [PowerToys Awake](https://aka.ms/PowerToysOverview_Awake) | [Color Picker](https://aka.ms/PowerToysOverview_ColorPicker) | | [Crop And Lock](https://aka.ms/PowerToysOverview_CropAndLock) | [FancyZones](https://aka.ms/PowerToysOverview_FancyZones) | [File Explorer Add-ons](https://aka.ms/PowerToysOverview_FileExplorerAddOns) | | [File Locksmith](https://aka.ms/PowerToysOverview_FileLocksmith) | [Hosts File Editor](https://aka.ms/PowerToysOverview_HostsFileEditor) | [Image Resizer](https://aka.ms/PowerToysOverview_ImageResizer) | | [Keyboard Manager](https://aka.ms/PowerToysOverview_KeyboardManager) | [Mouse utilities](https://aka.ms/PowerToysOverview_MouseUtilities) | [Mouse Without Borders](https://aka.ms/PowerToysOverview_MouseWithoutBorders) | | [Peek](https://aka.ms/PowerToysOverview_Peek) | [Paste as Plain Text](https://aka.ms/PowerToysOverview_PastePlain) | [PowerRename](https://aka.ms/PowerToysOverview_PowerRename) | | [PowerToys Run](https://aka.ms/PowerToysOverview_PowerToysRun) | [Quick Accent](https://aka.ms/PowerToysOverview_QuickAccent) | [Registry Preview](https://aka.ms/PowerToysOverview_RegistryPreview) | | [Screen Ruler](https://aka.ms/PowerToysOverview_ScreenRuler) | [Shortcut Guide](https://aka.ms/PowerToysOverview_ShortcutGuide) | [Text Extractor](https://aka.ms/PowerToysOverview_TextExtractor) | | [Video Conference Mute](https://aka.ms/PowerToysOverview_VideoConference) | ## Installing and running Microsoft PowerToys ### Requirements - Windows 11 or Windows 10 version 2004 (code name 20H1 / build number 19041) or newer. - Our installer will install the following items: - [Microsoft Edge WebView2 Runtime](https://go.microsoft.com/fwlink/p/?LinkId=2124703) bootstrapper. This will install the latest version. ### Via GitHub with EXE [Recommended] Go to the [Microsoft PowerToys GitHub releases page][github-release-link] and click on `Assets` at the bottom to show the files available in the release. Please use the appropriate PowerToys installer that matches your machine's architecture and install scope. For most, it is `x64` and per-user. <!-- items that need to be updated release to release --> [github-next-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F48 [github-current-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F47 [ptUserX64]: https://github.com/microsoft/PowerToys/releases/download/v0.74.0/PowerToysUserSetup-0.74.0-x64.exe [ptUserArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.74.0/PowerToysUserSetup-0.74.0-arm64.exe [ptMachineX64]: https://github.com/microsoft/PowerToys/releases/download/v0.74.0/PowerToysSetup-0.74.0-x64.exe [ptMachineArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.74.0/PowerToysSetup-0.74.0-arm64.exe | Description | Filename | sha256 hash | |----------------|----------|-------------| | Per user - x64 | [PowerToysUserSetup-0.74.0-x64.exe][ptUserX64] | 1C4ECE9F11488BAFFAE6B76D2B0504FA18BFFEA11EBC38BCC87F5D86AEA87C7C | | Per user - ARM64 | [PowerToysUserSetup-0.74.0-arm64.exe][ptUserArm64] | 4F3842FAB0839A361A15A06B7720BA8A0FE7F9AF98EA94245C08DEF37678CA4A | | Machine wide - x64 | [PowerToysSetup-0.74.0-x64.exe][ptMachineX64] | 648992E8CEA08F3C63C7CCBD554ADDF500ECBC4560187310BC12E6CB9C2F38E3 | | Machine wide - ARM64 | [PowerToysSetup-0.74.0-arm64.exe][ptMachineArm64] | 2B6D92F1A0EA688C7EE882050AC9B030C8B3A18765163FB6D67E5E694A4D4FE3 | This is our preferred method. ### Via Microsoft Store Install from the [Microsoft Store's PowerToys page][microsoft-store-link]. You must be using the [new Microsoft Store](https://blogs.windows.com/windowsExperience/2021/06/24/building-a-new-open-microsoft-store-on-windows-11/) which is available for both Windows 11 and Windows 10. ### Via WinGet Download PowerToys from [WinGet][winget-link]. Updating PowerToys via winget will respect current PowerToys installation scope. To install PowerToys, run the following command from the command line / PowerShell: #### User scope installer [default] ```powershell winget install Microsoft.PowerToys -s winget ``` #### Machine-wide scope installer ```powershell winget install --scope machine Microsoft.PowerToys -s winget ``` ### Other install methods There are [community driven install methods](./doc/unofficialInstallMethods.md) such as Chocolatey and Scoop. If these are your preferred install solutions, you can find the install instructions there. ## Third-Party Run Plugins There is a collection of [third-party plugins](./doc/thirdPartyRunPlugins.md) created by the community that aren't distributed with PowerToys. ## Contributing This project welcomes contributions of all types. Besides coding features / bug fixes, other ways to assist include spec writing, design, documentation, and finding bugs. We are excited to work with the power user community to build a set of tools for helping you get the most out of Windows. We ask that **before you start work on a feature that you would like to contribute**, please read our [Contributor's Guide](CONTRIBUTING.md). We would be happy to work with you to figure out the best approach, provide guidance and mentorship throughout feature development, and help avoid any wasted or duplicate effort. Most contributions require you to agree to a [Contributor License Agreement (CLA)][oss-CLA] declaring that you grant us the rights to use your contribution and that you have permission to do so. For guidance on developing for PowerToys, please read the [developer docs](/doc/devdocs) for a detailed breakdown. This includes how to setup your computer to compile. ## What's Happening ### PowerToys Roadmap Our [prioritized roadmap][roadmap] of features and utilities that the core team is focusing on. ### 0.74 - September 2023 Update In this release, we focused on stability and improvements. **Highlights** - Upgraded to Windows App SDK 1.4.1, increasing stability of WinUI3 utilities. Thanks [@dongle-the-gadget](https://github.com/dongle-the-gadget) for starting the upgrade! - Text Extractor was upgraded to its version 2.0, with a new overlay, table mode and more Quality of Life improvements. Thanks [@TheJoeFin](https://github.com/TheJoeFin)! - Improved FancyZones stability, fixing some layout resets and improving handling of newly created windows on Windows 11. - Fixed many silent crashes that were reported to Watson and the user's event viewer. ### General - Turning animations off in Windows Settings will now also turn them off in PowerToys. - Upgraded the Windows App SDK dependency to 1.4.1. Thanks [@dongle-the-gadget](https://github.com/dongle-the-gadget) for the original 1.4.0 upgrade! - Show in the thumbnail label and application titles when running as administrator. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Upgraded the Win UI Community Toolkit dependency to 8.0. Thanks [@niels9001](https://github.com/niels9001)! ### Awake - Added down-sampled variants to the application's icon. Thanks [@morriscurtis](https://github.com/morriscurtis)! ### Color Picker - After adding a new color in the editor, the history will scroll the new color into view. Thanks [@peerpalo](https://github.com/peerpalo)! ### Crop and Lock - Fixed a Crop and Lock crash that would occur when trying to reparent a window crashes the target application. An error message is shown instead. ### FancyZones - Set the process and main thread priority to normal. - Fixed handling newly created windows on Windows 11. - Fixed scenarios where opening the FancyZones Editor would reset the layouts. ### File Explorer add-ons - Optimized CPU usage for generating SVG thumbnails. - Improved handling of Gcode Thumbnails, including JPG and QOI formats. Thanks [@pedrolamas](https://github.com/pedrolamas)! - Better handled errors when sending telemetry, which were causing reported crashes. - Fixed some thumbnails not being shown centered like before the optimization. ### File Locksmith - Shows files opened by processes with PID greater than 65535. Thanks [@poke30744](https://github.com/poke30744)! - Fixed a GDI object leak in the context menu which would crash Explorer. ### Find My Mouse - Added new activation methods, including by hotkey. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Hosts File Editor - Ignore the default ACME sample entries in the hosts file. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Improved save error handling and added better error messages. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Corrected a check for an error when signaling the application to start as administrator. - Refactored the context menu. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Fixed dialogs overlapping the title bar after the upgrade to Windows App SDK 1.4. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Keyboard Manager - Distinguish between the regular minus key and the numpad minus key. ### Mouse Without Borders - Fixed a crash when trying to restart the application. ### Peek - Using Peek on HTML files will show a white background by default, similar to a browser's default behavior. - Fix a white flash on Dark theme when switching file and improved the development file preview detection and adjustments. ### PowerRename - Fixed a crash caused by big counter values on the new enumeration method. ### PowerToys Run - It's now possible to select which shell is used by the Shell plugin. - A combobox option type was added to the plugin options. - Fixed a bug in the Calculator plugin that was causing decimal numbers to be misinterpreted on locales where the dot (`.`) character isn't used as a decimal or digit separator. - Improved the Program plugin stability when it fails to load a program's thumbnail at startup. - The use of Pinyin for querying some plugins can now be turned on in Settings. Thanks [@ChaseKnowlden](https://github.com/ChaseKnowlden)! - Refactored option types for plugin and added number, string and composite types to be used in the future. Thanks [@htcfreek](https://github.com/htcfreek)! - Fixed the entry for searching for Windows updates in the Settings plugin. Thanks [@htcfreek](https://github.com/htcfreek)! ### Quick Accent - The "All languages" character set is now calculated by programmatically querying the characters for every available language. Thanks [@dannysummerlin](https://github.com/dannysummerlin)! - Added é to the Norwegian and Swedish languages. Thanks [@Aaron-Junker](https://github.com/Aaron-Junker)! - Added a runtime cache to the "All languages" character set, to only calculate accents once per key. ### Registry Preview - Fixed focusing issues at startup. - Improved the data visualization to show data in a similar way to the Windows Registry Editor. Thanks [@dillydylann](https://github.com/dillydylann)! ### Runner - Fixed hanging when a bug report was generated from the flyout. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Settings - Improved the way the OOBE window reacts to Windows theme change. - Fixed an issue that made it impossible to change the "Switch between windows in the current zone" "Next window" shortcut for FancyZones. - Fixed a crash when entering a duplicate name for a color in the Color Picker page and improved clean up when cancelling a color edit. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Text Extractor - Text Extractor 2.0, with a new overlay, table mode and more Quality of Life improvements. Thanks [@TheJoeFin](https://github.com/TheJoeFin)! ### Documentation - SECURITY.md was updated from 0.0.2 to 0.0.9. Thanks [@Aaron-Junker](https://github.com/Aaron-Junker)! - Improved the README and main development document for clarity and completeness. Thanks [@codeofdusk](https://github.com/codeofdusk) and [@aprilbbrockhoeft](https://github.com/aprilbbrockhoeft)! ### Development - Fixed PowerToys Run DateTime plugin tests that were failing depending on locale, so that they can be run correctly on all dev machines. - Fixed PowerToys Run System plugin tests that were failing for certain network interfaces, so that they can be run correctly on all dev machines. Thanks [@snickler](https://github.com/snickler)! - Fixed a markdown bug on the GitHub /helped command. - Switched build pipelines to a new agent pool. Thanks [@DHowett](https://github.com/DHowett)! - New .cs files created in Visual Studio get the header added automatically. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! #### What is being planned for version 0.75 For [v0.75][github-next-release-work], we'll work on the items below: - Language selection - .NET 8 upgrade - Policy support for managing PowerToys Run plugins. *Attention*: A breaking change is planned (for 0.75), in which each plugin has to declare its identifier programmatically so that it can be controlled through GPO. For third-party plugin developers, please check https://github.com/microsoft/PowerToys/pull/27468 for more details. - New utility: Environment Variables Editor. Here's a Work in Progress preview: ![Environment Variables Editor WIP](https://github.com/microsoft/PowerToys/assets/26118718/f99532a8-5aae-481b-a662-19a95f4aa03d) - New Settings homepage. Here's a Work in Progress preview: ![PowerToys Settings Dashboard WIP](https://github.com/microsoft/PowerToys/assets/26118718/938a5715-0a9b-4fe9-9e15-adfec92da694) - Modernize and refresh the UX of PowerToys based on WPF. Here's Work in Progress previews for the modules "PowerToys Run" and "Color Picker": ![PowerToys Run UI refresh WIP](https://github.com/microsoft/PowerToys/assets/9866362/16903bcb-c18e-49fb-93ca-738b81957055) ![ColorPicker UI refresh WIP](https://github.com/microsoft/PowerToys/assets/9866362/ceebe54b-de63-4ce7-afcb-2cd4280bf4d1) - Stability / bug fixes ## PowerToys Community The PowerToys team is extremely grateful to have the [support of an amazing active community][community-link]. The work you do is incredibly important. PowerToys wouldn’t be nearly what it is today without your help filing bugs, updating documentation, guiding the design, or writing features. We want to say thank you and take time to recognize your work. Month by month, you directly help make PowerToys a better piece of software. ## Code of Conduct This project has adopted the [Microsoft Open Source Code of Conduct][oss-conduct-code]. ## Privacy Statement The application logs basic telemetry. Our Telemetry Data page (Coming Soon) has the trends from the telemetry. Please read the [Microsoft privacy statement][privacy-link] for more information. [oss-CLA]: https://cla.opensource.microsoft.com [oss-conduct-code]: CODE_OF_CONDUCT.md [community-link]: COMMUNITY.md [github-release-link]: https://aka.ms/installPowerToys [microsoft-store-link]: https://aka.ms/getPowertoys [winget-link]: https://github.com/microsoft/winget-cli#installing-the-client [roadmap]: https://github.com/microsoft/PowerToys/wiki/Roadmap [privacy-link]: http://go.microsoft.com/fwlink/?LinkId=521839 [vidConfOverview]: https://aka.ms/PowerToysOverview_VideoConference [loc-bug]: https://github.com/microsoft/PowerToys/issues/new?assignees=&labels=&template=translation_issue.md&title= [usingPowerToys-docs-link]: https://aka.ms/powertoys-docs
jaimecbernardo
a1e0bd51617b2bea189cb16324eecd0e13fa7b86
77063e0767a0619abfc339db3a2a564d27310b6c
```suggestion - .NET 8 upgrade - Policy support for managing PowerToys Run plugins. *Attention*: A breaking change is planned (for 0.75), in which each plugin has to declare its identifier programmatically so that it can be controlled through GPO. For third-party plugin developers, please check https://github.com/microsoft/PowerToys/pull/27468 for more details. ```
htcfreek
429
microsoft/PowerToys
28,775
0.74 changelogs
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request Readme update for the 0.74 release. This will be copy / pasted for release notes.
null
2023-09-26 11:20:42+00:00
2023-09-26 21:36:51+00:00
README.md
# Microsoft PowerToys ![Hero image for Microsoft PowerToys](doc/images/overview/PT_hero_image.png) [How to use PowerToys][usingPowerToys-docs-link] | [Downloads & Release notes][github-release-link] | [Contributing to PowerToys](#contributing) | [What's Happening](#whats-happening) | [Roadmap](#powertoys-roadmap) ## Build status | Architecture | Solution (Main) | Solution (Stable) | Installer (Main) | |--------------|-----------------|-------------------|------------------| | x64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main&jobName=Build%20x64%20Release) | [![Build Status for Stable](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=stable&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_x64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | | ARM64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main) | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_arm64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | ## About Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. For more info on [PowerToys overviews and how to use the utilities][usingPowerToys-docs-link], or any other tools and resources for [Windows development environments](https://learn.microsoft.com/windows/dev-environment/overview), head over to [learn.microsoft.com][usingPowerToys-docs-link]! | | Current utilities: | | |--------------|--------------------|--------------| | [Always on Top](https://aka.ms/PowerToysOverview_AoT) | [PowerToys Awake](https://aka.ms/PowerToysOverview_Awake) | [Color Picker](https://aka.ms/PowerToysOverview_ColorPicker) | | [Crop And Lock](https://aka.ms/PowerToysOverview_CropAndLock) | [FancyZones](https://aka.ms/PowerToysOverview_FancyZones) | [File Explorer Add-ons](https://aka.ms/PowerToysOverview_FileExplorerAddOns) | | [File Locksmith](https://aka.ms/PowerToysOverview_FileLocksmith) | [Hosts File Editor](https://aka.ms/PowerToysOverview_HostsFileEditor) | [Image Resizer](https://aka.ms/PowerToysOverview_ImageResizer) | | [Keyboard Manager](https://aka.ms/PowerToysOverview_KeyboardManager) | [Mouse utilities](https://aka.ms/PowerToysOverview_MouseUtilities) | [Mouse Without Borders](https://aka.ms/PowerToysOverview_MouseWithoutBorders) | | [Peek](https://aka.ms/PowerToysOverview_Peek) | [Paste as Plain Text](https://aka.ms/PowerToysOverview_PastePlain) | [PowerRename](https://aka.ms/PowerToysOverview_PowerRename) | | [PowerToys Run](https://aka.ms/PowerToysOverview_PowerToysRun) | [Quick Accent](https://aka.ms/PowerToysOverview_QuickAccent) | [Registry Preview](https://aka.ms/PowerToysOverview_RegistryPreview) | | [Screen Ruler](https://aka.ms/PowerToysOverview_ScreenRuler) | [Shortcut Guide](https://aka.ms/PowerToysOverview_ShortcutGuide) | [Text Extractor](https://aka.ms/PowerToysOverview_TextExtractor) | | [Video Conference Mute](https://aka.ms/PowerToysOverview_VideoConference) | ## Installing and running Microsoft PowerToys ### Requirements - Windows 11 or Windows 10 version 2004 (code name 20H1 / build number 19041) or newer. - Our installer will install the following items: - [Microsoft Edge WebView2 Runtime](https://go.microsoft.com/fwlink/p/?LinkId=2124703) bootstrapper. This will install the latest version. ### Via GitHub with EXE [Recommended] Go to the [Microsoft PowerToys GitHub releases page][github-release-link] and click on `Assets` at the bottom to show the files available in the release. Please use the appropriate PowerToys installer that matches your machine's architecture and install scope. For most, it is `x64` and per-user. <!-- items that need to be updated release to release --> [github-next-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F47 [github-current-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F46 [ptUserX64]: https://github.com/microsoft/PowerToys/releases/download/v0.73.0/PowerToysUserSetup-0.73.0-x64.exe [ptUserArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.73.0/PowerToysUserSetup-0.73.0-arm64.exe [ptMachineX64]: https://github.com/microsoft/PowerToys/releases/download/v0.73.0/PowerToysSetup-0.73.0-x64.exe [ptMachineArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.73.0/PowerToysSetup-0.73.0-arm64.exe | Description | Filename | sha256 hash | |----------------|----------|-------------| | Per user - x64 | [PowerToysUserSetup-0.73.0-x64.exe][ptUserX64] | BA55D245BDD734FD6F19803DD706A3AB8E0ABC491591195534997CF2122D3B7E | | Per user - ARM64 | [PowerToysUserSetup-0.73.0-arm64.exe][ptUserArm64] | FBFA40EA5FFA05236A7CCDD05E5142EE0C93D7485B965784196ED9B086BFEBF4 | | Machine wide - x64 | [PowerToysSetup-0.73.0-x64.exe][ptMachineX64] | 7FDA06292C7C2E6DA5AEF88D8E9D3DE89D331E9E356A232289F9B37CE4503894 | | Machine wide - ARM64 | [PowerToysSetup-0.73.0-arm64.exe][ptMachineArm64] | 4260AA30A1F52F194EE07E9E7ECD9E9F4CF35289267F213BC933F7A5191AC17C | This is our preferred method. ### Via Microsoft Store Install from the [Microsoft Store's PowerToys page][microsoft-store-link]. You must be using the [new Microsoft Store](https://blogs.windows.com/windowsExperience/2021/06/24/building-a-new-open-microsoft-store-on-windows-11/) which is available for both Windows 11 and Windows 10. ### Via WinGet Download PowerToys from [WinGet][winget-link]. Updating PowerToys via winget will respect current PowerToys installation scope. To install PowerToys, run the following command from the command line / PowerShell: #### User scope installer [default] ```powershell winget install Microsoft.PowerToys -s winget ``` #### Machine-wide scope installer ```powershell winget install --scope machine Microsoft.PowerToys -s winget ``` ### Other install methods There are [community driven install methods](./doc/unofficialInstallMethods.md) such as Chocolatey and Scoop. If these are your preferred install solutions, you can find the install instructions there. ## Third-Party Run Plugins There is a collection of [third-party plugins](./doc/thirdPartyRunPlugins.md) created by the community that aren't distributed with PowerToys. ## Contributing This project welcomes contributions of all types. Besides coding features / bug fixes, other ways to assist include spec writing, design, documentation, and finding bugs. We are excited to work with the power user community to build a set of tools for helping you get the most out of Windows. We ask that **before you start work on a feature that you would like to contribute**, please read our [Contributor's Guide](CONTRIBUTING.md). We would be happy to work with you to figure out the best approach, provide guidance and mentorship throughout feature development, and help avoid any wasted or duplicate effort. Most contributions require you to agree to a [Contributor License Agreement (CLA)][oss-CLA] declaring that you grant us the rights to use your contribution and that you have permission to do so. For guidance on developing for PowerToys, please read the [developer docs](/doc/devdocs) for a detailed breakdown. This includes how to setup your computer to compile. ## What's Happening ### PowerToys Roadmap Our [prioritized roadmap][roadmap] of features and utilities that the core team is focusing on. ### 0.73 - August 2023 Update In this release, we focused on releasing new features, stability and improvements. **Highlights** - Keyboard manager now allows Numpad keys to be bound separately from the main keyboard. If using a previous configuration, only the main keyboard (not numpad) keys will be mapped. To restore the previous behavior, manually add separate bindings for numpad keys. - New utility: Crop And Lock allows you to crop a current application into a smaller window or just create a thumbnail. Focus the target window and press the shortcut to start cropping. - FancyZones code improvements and refactor. - Modernized ImageResizer UX. - PowerRename advanced counter functionality. ### General - Added missing CoUninitialize call in elevation logic. Thanks [@sredna](https://github.com/sredna)! - New utility: Crop And Lock. Thanks [@robmikh](https://github.com/robmikh)! and [@kevinguo305](https://github.com/kevinguo305)! - Added new /helped fabric bot command to GitHub repo. Thanks [@Aaron-Junker](https://github.com/Aaron-Junker)! - Fixed crashes caused by invalid settings. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Always On Top - Added border transparency. ### FancyZones - Fixed issue causing canvas zones being drawn only when dragging in the zone area. - Fixed user-defined default layout highlighting issue. - Refactored and improved code quality. - Fixed issue causing the wrong layout to be applied when duplicating a non-selected layout. ### File Locksmith - Icon update. Thanks [@jmaraujouy](https://github.com/jmaraujouy)! ### File Explorer add-ons - Fixed issue causing thumbnail previewers to lock files. - Open URIs from developer files in default browser. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Installer - Fixed PowerToys autorun after installing as SYSTEM user. - Removed CreateScheduledTask custom action to handle task creation only from runner code. ### Image Resizer - Moved from ModernWPF to WpfUI to refresh and modernize UI/UX. Thanks [@niels9001](https://github.com/niels9001)! ### Keyboard Manager - Rephrased labels to enhance clarity. Thanks [@Jay-o-Way](https://github.com/Jay-o-Way)! - Keyboard manager now allows Numpad keys to be bound separately from the main keyboard. If using a previous configuration, only the main keyboard (not numpad) keys will be mapped. To restore the previous behavior, manually add separate bindings for numpad keys. ### Mouse Highlighter - The highlighter is now visible in "Always on Top" windows. - Added settings for automatic activation on startup. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Mouse Pointer Crosshairs - Added settings for automatic activation on startup. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Peek - Show correct file type for shortcuts. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Fixed issue causing the wrong file size to be displayed. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Show 1 byte instead of 1 bytes file size. Thanks [@Deepak-Sangle](https://github.com/Deepak-Sangle)! - Open URIs from developer files in the default browser. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Show a thumbnail and fallback to an icon for unsupported files. Thanks [@pedrolamas](https://github.com/pedrolamas)! ### PowerRename - Updated the OOBE gif. Thanks [@ChaseKnowlden](https://github.com/ChaseKnowlden)! - Localized the renamed parts combo box. - Introduced advanced counter functionality. - Added remember last window size logic and optimized sorting of items. - Enable "Enumerate items" option by default. ### PowerToys Run - Fixed an issue causing original search to be abandoned when cycling through results. - Updated device and bluetooth results for Settings plugin. Thanks [@htcfreek](https://github.com/htcfreek)! - Fixed InvalidOperationException exception thrown. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Add Base64 Decoding function to the Value Generator plugin. Thanks [@LeagueOfPoro](https://github.com/LeagueOfPoro)! - Added a Keep shell open option for Shell plugin. - Added Crop And Lock to PowerToys plugin. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Registry Preview - Updated AppBarButtons to use an explicit AppBarButton.Icon. Thanks [@randyrants](https://github.com/randyrants)! - Fixed crash on clicking Save As button. ### Runner - Removed unneeded RegisterWindowMessage from tray icon logic. Thanks [@sredna](https://github.com/sredna)! - Fixed startup looping issue. - Improved old logs and installers cleanup logic. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Screen Ruler - Use proper resources file. ### Settings - Fixed issue causing problems with modifier keys and ShortcutControl. Thanks [@sh0ckj0ckey](https://github.com/sh0ckj0ckey)! - Fixed crash when clicking "Windows color settings" link. - Added support for launching Settings app directly. - Fixed issue causing DisplayDescription not showing for PowerToys Run PluginAdditionalOption. - Fixed issue causing FileLocksmith 'Show File Locksmith in' setting not showing correct value. - Fixed issue causing Awake on/off toggle in Settings flyout not to work when Settings Awake page is opened. ### Documentation - Added documentation for PowerToys Run third-party plugins. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Fixed broken links in keyboardmanagerui.md. Thanks [@shubhsardana29](https://github.com/shubhsardana29)! - Updated core team in COMMUNITY.md. - Fixed broken links in ui-architecture.md. Thanks [@SamB](https://github.com/SamB)! - Updated community.valuegenerator.md with Base64DecodeRequest description. ### Development - Updated test packages and StyleCop. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Condense NuGet Restore into MSBuild Tasks. Thanks [@snickler](https://github.com/snickler)! #### What is being planned for version 0.74 For [v0.74][github-next-release-work], we'll work on the items below: - Language selection - Modernize and refresh the UX of PowerToys based on WPF - Stability / bug fixes - Peek: UI improvements ## PowerToys Community The PowerToys team is extremely grateful to have the [support of an amazing active community][community-link]. The work you do is incredibly important. PowerToys wouldn’t be nearly what it is today without your help filing bugs, updating documentation, guiding the design, or writing features. We want to say thank you and take time to recognize your work. Month by month, you directly help make PowerToys a better piece of software. ## Code of Conduct This project has adopted the [Microsoft Open Source Code of Conduct][oss-conduct-code]. ## Privacy Statement The application logs basic telemetry. Our Telemetry Data page (Coming Soon) has the trends from the telemetry. Please read the [Microsoft privacy statement][privacy-link] for more information. [oss-CLA]: https://cla.opensource.microsoft.com [oss-conduct-code]: CODE_OF_CONDUCT.md [community-link]: COMMUNITY.md [github-release-link]: https://aka.ms/installPowerToys [microsoft-store-link]: https://aka.ms/getPowertoys [winget-link]: https://github.com/microsoft/winget-cli#installing-the-client [roadmap]: https://github.com/microsoft/PowerToys/wiki/Roadmap [privacy-link]: http://go.microsoft.com/fwlink/?LinkId=521839 [vidConfOverview]: https://aka.ms/PowerToysOverview_VideoConference [loc-bug]: https://github.com/microsoft/PowerToys/issues/new?assignees=&labels=&template=translation_issue.md&title= [usingPowerToys-docs-link]: https://aka.ms/powertoys-docs
# Microsoft PowerToys ![Hero image for Microsoft PowerToys](doc/images/overview/PT_hero_image.png) [How to use PowerToys][usingPowerToys-docs-link] | [Downloads & Release notes][github-release-link] | [Contributing to PowerToys](#contributing) | [What's Happening](#whats-happening) | [Roadmap](#powertoys-roadmap) ## Build status | Architecture | Solution (Main) | Solution (Stable) | Installer (Main) | |--------------|-----------------|-------------------|------------------| | x64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main&jobName=Build%20x64%20Release) | [![Build Status for Stable](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=stable&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_x64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | | ARM64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main) | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_arm64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | ## About Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. For more info on [PowerToys overviews and how to use the utilities][usingPowerToys-docs-link], or any other tools and resources for [Windows development environments](https://learn.microsoft.com/windows/dev-environment/overview), head over to [learn.microsoft.com][usingPowerToys-docs-link]! | | Current utilities: | | |--------------|--------------------|--------------| | [Always on Top](https://aka.ms/PowerToysOverview_AoT) | [PowerToys Awake](https://aka.ms/PowerToysOverview_Awake) | [Color Picker](https://aka.ms/PowerToysOverview_ColorPicker) | | [Crop And Lock](https://aka.ms/PowerToysOverview_CropAndLock) | [FancyZones](https://aka.ms/PowerToysOverview_FancyZones) | [File Explorer Add-ons](https://aka.ms/PowerToysOverview_FileExplorerAddOns) | | [File Locksmith](https://aka.ms/PowerToysOverview_FileLocksmith) | [Hosts File Editor](https://aka.ms/PowerToysOverview_HostsFileEditor) | [Image Resizer](https://aka.ms/PowerToysOverview_ImageResizer) | | [Keyboard Manager](https://aka.ms/PowerToysOverview_KeyboardManager) | [Mouse utilities](https://aka.ms/PowerToysOverview_MouseUtilities) | [Mouse Without Borders](https://aka.ms/PowerToysOverview_MouseWithoutBorders) | | [Peek](https://aka.ms/PowerToysOverview_Peek) | [Paste as Plain Text](https://aka.ms/PowerToysOverview_PastePlain) | [PowerRename](https://aka.ms/PowerToysOverview_PowerRename) | | [PowerToys Run](https://aka.ms/PowerToysOverview_PowerToysRun) | [Quick Accent](https://aka.ms/PowerToysOverview_QuickAccent) | [Registry Preview](https://aka.ms/PowerToysOverview_RegistryPreview) | | [Screen Ruler](https://aka.ms/PowerToysOverview_ScreenRuler) | [Shortcut Guide](https://aka.ms/PowerToysOverview_ShortcutGuide) | [Text Extractor](https://aka.ms/PowerToysOverview_TextExtractor) | | [Video Conference Mute](https://aka.ms/PowerToysOverview_VideoConference) | ## Installing and running Microsoft PowerToys ### Requirements - Windows 11 or Windows 10 version 2004 (code name 20H1 / build number 19041) or newer. - Our installer will install the following items: - [Microsoft Edge WebView2 Runtime](https://go.microsoft.com/fwlink/p/?LinkId=2124703) bootstrapper. This will install the latest version. ### Via GitHub with EXE [Recommended] Go to the [Microsoft PowerToys GitHub releases page][github-release-link] and click on `Assets` at the bottom to show the files available in the release. Please use the appropriate PowerToys installer that matches your machine's architecture and install scope. For most, it is `x64` and per-user. <!-- items that need to be updated release to release --> [github-next-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F48 [github-current-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F47 [ptUserX64]: https://github.com/microsoft/PowerToys/releases/download/v0.74.0/PowerToysUserSetup-0.74.0-x64.exe [ptUserArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.74.0/PowerToysUserSetup-0.74.0-arm64.exe [ptMachineX64]: https://github.com/microsoft/PowerToys/releases/download/v0.74.0/PowerToysSetup-0.74.0-x64.exe [ptMachineArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.74.0/PowerToysSetup-0.74.0-arm64.exe | Description | Filename | sha256 hash | |----------------|----------|-------------| | Per user - x64 | [PowerToysUserSetup-0.74.0-x64.exe][ptUserX64] | 1C4ECE9F11488BAFFAE6B76D2B0504FA18BFFEA11EBC38BCC87F5D86AEA87C7C | | Per user - ARM64 | [PowerToysUserSetup-0.74.0-arm64.exe][ptUserArm64] | 4F3842FAB0839A361A15A06B7720BA8A0FE7F9AF98EA94245C08DEF37678CA4A | | Machine wide - x64 | [PowerToysSetup-0.74.0-x64.exe][ptMachineX64] | 648992E8CEA08F3C63C7CCBD554ADDF500ECBC4560187310BC12E6CB9C2F38E3 | | Machine wide - ARM64 | [PowerToysSetup-0.74.0-arm64.exe][ptMachineArm64] | 2B6D92F1A0EA688C7EE882050AC9B030C8B3A18765163FB6D67E5E694A4D4FE3 | This is our preferred method. ### Via Microsoft Store Install from the [Microsoft Store's PowerToys page][microsoft-store-link]. You must be using the [new Microsoft Store](https://blogs.windows.com/windowsExperience/2021/06/24/building-a-new-open-microsoft-store-on-windows-11/) which is available for both Windows 11 and Windows 10. ### Via WinGet Download PowerToys from [WinGet][winget-link]. Updating PowerToys via winget will respect current PowerToys installation scope. To install PowerToys, run the following command from the command line / PowerShell: #### User scope installer [default] ```powershell winget install Microsoft.PowerToys -s winget ``` #### Machine-wide scope installer ```powershell winget install --scope machine Microsoft.PowerToys -s winget ``` ### Other install methods There are [community driven install methods](./doc/unofficialInstallMethods.md) such as Chocolatey and Scoop. If these are your preferred install solutions, you can find the install instructions there. ## Third-Party Run Plugins There is a collection of [third-party plugins](./doc/thirdPartyRunPlugins.md) created by the community that aren't distributed with PowerToys. ## Contributing This project welcomes contributions of all types. Besides coding features / bug fixes, other ways to assist include spec writing, design, documentation, and finding bugs. We are excited to work with the power user community to build a set of tools for helping you get the most out of Windows. We ask that **before you start work on a feature that you would like to contribute**, please read our [Contributor's Guide](CONTRIBUTING.md). We would be happy to work with you to figure out the best approach, provide guidance and mentorship throughout feature development, and help avoid any wasted or duplicate effort. Most contributions require you to agree to a [Contributor License Agreement (CLA)][oss-CLA] declaring that you grant us the rights to use your contribution and that you have permission to do so. For guidance on developing for PowerToys, please read the [developer docs](/doc/devdocs) for a detailed breakdown. This includes how to setup your computer to compile. ## What's Happening ### PowerToys Roadmap Our [prioritized roadmap][roadmap] of features and utilities that the core team is focusing on. ### 0.74 - September 2023 Update In this release, we focused on stability and improvements. **Highlights** - Upgraded to Windows App SDK 1.4.1, increasing stability of WinUI3 utilities. Thanks [@dongle-the-gadget](https://github.com/dongle-the-gadget) for starting the upgrade! - Text Extractor was upgraded to its version 2.0, with a new overlay, table mode and more Quality of Life improvements. Thanks [@TheJoeFin](https://github.com/TheJoeFin)! - Improved FancyZones stability, fixing some layout resets and improving handling of newly created windows on Windows 11. - Fixed many silent crashes that were reported to Watson and the user's event viewer. ### General - Turning animations off in Windows Settings will now also turn them off in PowerToys. - Upgraded the Windows App SDK dependency to 1.4.1. Thanks [@dongle-the-gadget](https://github.com/dongle-the-gadget) for the original 1.4.0 upgrade! - Show in the thumbnail label and application titles when running as administrator. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Upgraded the Win UI Community Toolkit dependency to 8.0. Thanks [@niels9001](https://github.com/niels9001)! ### Awake - Added down-sampled variants to the application's icon. Thanks [@morriscurtis](https://github.com/morriscurtis)! ### Color Picker - After adding a new color in the editor, the history will scroll the new color into view. Thanks [@peerpalo](https://github.com/peerpalo)! ### Crop and Lock - Fixed a Crop and Lock crash that would occur when trying to reparent a window crashes the target application. An error message is shown instead. ### FancyZones - Set the process and main thread priority to normal. - Fixed handling newly created windows on Windows 11. - Fixed scenarios where opening the FancyZones Editor would reset the layouts. ### File Explorer add-ons - Optimized CPU usage for generating SVG thumbnails. - Improved handling of Gcode Thumbnails, including JPG and QOI formats. Thanks [@pedrolamas](https://github.com/pedrolamas)! - Better handled errors when sending telemetry, which were causing reported crashes. - Fixed some thumbnails not being shown centered like before the optimization. ### File Locksmith - Shows files opened by processes with PID greater than 65535. Thanks [@poke30744](https://github.com/poke30744)! - Fixed a GDI object leak in the context menu which would crash Explorer. ### Find My Mouse - Added new activation methods, including by hotkey. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Hosts File Editor - Ignore the default ACME sample entries in the hosts file. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Improved save error handling and added better error messages. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Corrected a check for an error when signaling the application to start as administrator. - Refactored the context menu. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Fixed dialogs overlapping the title bar after the upgrade to Windows App SDK 1.4. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Keyboard Manager - Distinguish between the regular minus key and the numpad minus key. ### Mouse Without Borders - Fixed a crash when trying to restart the application. ### Peek - Using Peek on HTML files will show a white background by default, similar to a browser's default behavior. - Fix a white flash on Dark theme when switching file and improved the development file preview detection and adjustments. ### PowerRename - Fixed a crash caused by big counter values on the new enumeration method. ### PowerToys Run - It's now possible to select which shell is used by the Shell plugin. - A combobox option type was added to the plugin options. - Fixed a bug in the Calculator plugin that was causing decimal numbers to be misinterpreted on locales where the dot (`.`) character isn't used as a decimal or digit separator. - Improved the Program plugin stability when it fails to load a program's thumbnail at startup. - The use of Pinyin for querying some plugins can now be turned on in Settings. Thanks [@ChaseKnowlden](https://github.com/ChaseKnowlden)! - Refactored option types for plugin and added number, string and composite types to be used in the future. Thanks [@htcfreek](https://github.com/htcfreek)! - Fixed the entry for searching for Windows updates in the Settings plugin. Thanks [@htcfreek](https://github.com/htcfreek)! ### Quick Accent - The "All languages" character set is now calculated by programmatically querying the characters for every available language. Thanks [@dannysummerlin](https://github.com/dannysummerlin)! - Added é to the Norwegian and Swedish languages. Thanks [@Aaron-Junker](https://github.com/Aaron-Junker)! - Added a runtime cache to the "All languages" character set, to only calculate accents once per key. ### Registry Preview - Fixed focusing issues at startup. - Improved the data visualization to show data in a similar way to the Windows Registry Editor. Thanks [@dillydylann](https://github.com/dillydylann)! ### Runner - Fixed hanging when a bug report was generated from the flyout. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Settings - Improved the way the OOBE window reacts to Windows theme change. - Fixed an issue that made it impossible to change the "Switch between windows in the current zone" "Next window" shortcut for FancyZones. - Fixed a crash when entering a duplicate name for a color in the Color Picker page and improved clean up when cancelling a color edit. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Text Extractor - Text Extractor 2.0, with a new overlay, table mode and more Quality of Life improvements. Thanks [@TheJoeFin](https://github.com/TheJoeFin)! ### Documentation - SECURITY.md was updated from 0.0.2 to 0.0.9. Thanks [@Aaron-Junker](https://github.com/Aaron-Junker)! - Improved the README and main development document for clarity and completeness. Thanks [@codeofdusk](https://github.com/codeofdusk) and [@aprilbbrockhoeft](https://github.com/aprilbbrockhoeft)! ### Development - Fixed PowerToys Run DateTime plugin tests that were failing depending on locale, so that they can be run correctly on all dev machines. - Fixed PowerToys Run System plugin tests that were failing for certain network interfaces, so that they can be run correctly on all dev machines. Thanks [@snickler](https://github.com/snickler)! - Fixed a markdown bug on the GitHub /helped command. - Switched build pipelines to a new agent pool. Thanks [@DHowett](https://github.com/DHowett)! - New .cs files created in Visual Studio get the header added automatically. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! #### What is being planned for version 0.75 For [v0.75][github-next-release-work], we'll work on the items below: - Language selection - .NET 8 upgrade - Policy support for managing PowerToys Run plugins. *Attention*: A breaking change is planned (for 0.75), in which each plugin has to declare its identifier programmatically so that it can be controlled through GPO. For third-party plugin developers, please check https://github.com/microsoft/PowerToys/pull/27468 for more details. - New utility: Environment Variables Editor. Here's a Work in Progress preview: ![Environment Variables Editor WIP](https://github.com/microsoft/PowerToys/assets/26118718/f99532a8-5aae-481b-a662-19a95f4aa03d) - New Settings homepage. Here's a Work in Progress preview: ![PowerToys Settings Dashboard WIP](https://github.com/microsoft/PowerToys/assets/26118718/938a5715-0a9b-4fe9-9e15-adfec92da694) - Modernize and refresh the UX of PowerToys based on WPF. Here's Work in Progress previews for the modules "PowerToys Run" and "Color Picker": ![PowerToys Run UI refresh WIP](https://github.com/microsoft/PowerToys/assets/9866362/16903bcb-c18e-49fb-93ca-738b81957055) ![ColorPicker UI refresh WIP](https://github.com/microsoft/PowerToys/assets/9866362/ceebe54b-de63-4ce7-afcb-2cd4280bf4d1) - Stability / bug fixes ## PowerToys Community The PowerToys team is extremely grateful to have the [support of an amazing active community][community-link]. The work you do is incredibly important. PowerToys wouldn’t be nearly what it is today without your help filing bugs, updating documentation, guiding the design, or writing features. We want to say thank you and take time to recognize your work. Month by month, you directly help make PowerToys a better piece of software. ## Code of Conduct This project has adopted the [Microsoft Open Source Code of Conduct][oss-conduct-code]. ## Privacy Statement The application logs basic telemetry. Our Telemetry Data page (Coming Soon) has the trends from the telemetry. Please read the [Microsoft privacy statement][privacy-link] for more information. [oss-CLA]: https://cla.opensource.microsoft.com [oss-conduct-code]: CODE_OF_CONDUCT.md [community-link]: COMMUNITY.md [github-release-link]: https://aka.ms/installPowerToys [microsoft-store-link]: https://aka.ms/getPowertoys [winget-link]: https://github.com/microsoft/winget-cli#installing-the-client [roadmap]: https://github.com/microsoft/PowerToys/wiki/Roadmap [privacy-link]: http://go.microsoft.com/fwlink/?LinkId=521839 [vidConfOverview]: https://aka.ms/PowerToysOverview_VideoConference [loc-bug]: https://github.com/microsoft/PowerToys/issues/new?assignees=&labels=&template=translation_issue.md&title= [usingPowerToys-docs-link]: https://aka.ms/powertoys-docs
jaimecbernardo
a1e0bd51617b2bea189cb16324eecd0e13fa7b86
77063e0767a0619abfc339db3a2a564d27310b6c
I was thinking this is a bit more hidden, and not very user impacting at this moment, so I wouldn't add it to highlights. Makes sense?
jaimecbernardo
430
microsoft/PowerToys
28,775
0.74 changelogs
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request Readme update for the 0.74 release. This will be copy / pasted for release notes.
null
2023-09-26 11:20:42+00:00
2023-09-26 21:36:51+00:00
README.md
# Microsoft PowerToys ![Hero image for Microsoft PowerToys](doc/images/overview/PT_hero_image.png) [How to use PowerToys][usingPowerToys-docs-link] | [Downloads & Release notes][github-release-link] | [Contributing to PowerToys](#contributing) | [What's Happening](#whats-happening) | [Roadmap](#powertoys-roadmap) ## Build status | Architecture | Solution (Main) | Solution (Stable) | Installer (Main) | |--------------|-----------------|-------------------|------------------| | x64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main&jobName=Build%20x64%20Release) | [![Build Status for Stable](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=stable&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_x64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | | ARM64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main) | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_arm64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | ## About Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. For more info on [PowerToys overviews and how to use the utilities][usingPowerToys-docs-link], or any other tools and resources for [Windows development environments](https://learn.microsoft.com/windows/dev-environment/overview), head over to [learn.microsoft.com][usingPowerToys-docs-link]! | | Current utilities: | | |--------------|--------------------|--------------| | [Always on Top](https://aka.ms/PowerToysOverview_AoT) | [PowerToys Awake](https://aka.ms/PowerToysOverview_Awake) | [Color Picker](https://aka.ms/PowerToysOverview_ColorPicker) | | [Crop And Lock](https://aka.ms/PowerToysOverview_CropAndLock) | [FancyZones](https://aka.ms/PowerToysOverview_FancyZones) | [File Explorer Add-ons](https://aka.ms/PowerToysOverview_FileExplorerAddOns) | | [File Locksmith](https://aka.ms/PowerToysOverview_FileLocksmith) | [Hosts File Editor](https://aka.ms/PowerToysOverview_HostsFileEditor) | [Image Resizer](https://aka.ms/PowerToysOverview_ImageResizer) | | [Keyboard Manager](https://aka.ms/PowerToysOverview_KeyboardManager) | [Mouse utilities](https://aka.ms/PowerToysOverview_MouseUtilities) | [Mouse Without Borders](https://aka.ms/PowerToysOverview_MouseWithoutBorders) | | [Peek](https://aka.ms/PowerToysOverview_Peek) | [Paste as Plain Text](https://aka.ms/PowerToysOverview_PastePlain) | [PowerRename](https://aka.ms/PowerToysOverview_PowerRename) | | [PowerToys Run](https://aka.ms/PowerToysOverview_PowerToysRun) | [Quick Accent](https://aka.ms/PowerToysOverview_QuickAccent) | [Registry Preview](https://aka.ms/PowerToysOverview_RegistryPreview) | | [Screen Ruler](https://aka.ms/PowerToysOverview_ScreenRuler) | [Shortcut Guide](https://aka.ms/PowerToysOverview_ShortcutGuide) | [Text Extractor](https://aka.ms/PowerToysOverview_TextExtractor) | | [Video Conference Mute](https://aka.ms/PowerToysOverview_VideoConference) | ## Installing and running Microsoft PowerToys ### Requirements - Windows 11 or Windows 10 version 2004 (code name 20H1 / build number 19041) or newer. - Our installer will install the following items: - [Microsoft Edge WebView2 Runtime](https://go.microsoft.com/fwlink/p/?LinkId=2124703) bootstrapper. This will install the latest version. ### Via GitHub with EXE [Recommended] Go to the [Microsoft PowerToys GitHub releases page][github-release-link] and click on `Assets` at the bottom to show the files available in the release. Please use the appropriate PowerToys installer that matches your machine's architecture and install scope. For most, it is `x64` and per-user. <!-- items that need to be updated release to release --> [github-next-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F47 [github-current-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F46 [ptUserX64]: https://github.com/microsoft/PowerToys/releases/download/v0.73.0/PowerToysUserSetup-0.73.0-x64.exe [ptUserArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.73.0/PowerToysUserSetup-0.73.0-arm64.exe [ptMachineX64]: https://github.com/microsoft/PowerToys/releases/download/v0.73.0/PowerToysSetup-0.73.0-x64.exe [ptMachineArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.73.0/PowerToysSetup-0.73.0-arm64.exe | Description | Filename | sha256 hash | |----------------|----------|-------------| | Per user - x64 | [PowerToysUserSetup-0.73.0-x64.exe][ptUserX64] | BA55D245BDD734FD6F19803DD706A3AB8E0ABC491591195534997CF2122D3B7E | | Per user - ARM64 | [PowerToysUserSetup-0.73.0-arm64.exe][ptUserArm64] | FBFA40EA5FFA05236A7CCDD05E5142EE0C93D7485B965784196ED9B086BFEBF4 | | Machine wide - x64 | [PowerToysSetup-0.73.0-x64.exe][ptMachineX64] | 7FDA06292C7C2E6DA5AEF88D8E9D3DE89D331E9E356A232289F9B37CE4503894 | | Machine wide - ARM64 | [PowerToysSetup-0.73.0-arm64.exe][ptMachineArm64] | 4260AA30A1F52F194EE07E9E7ECD9E9F4CF35289267F213BC933F7A5191AC17C | This is our preferred method. ### Via Microsoft Store Install from the [Microsoft Store's PowerToys page][microsoft-store-link]. You must be using the [new Microsoft Store](https://blogs.windows.com/windowsExperience/2021/06/24/building-a-new-open-microsoft-store-on-windows-11/) which is available for both Windows 11 and Windows 10. ### Via WinGet Download PowerToys from [WinGet][winget-link]. Updating PowerToys via winget will respect current PowerToys installation scope. To install PowerToys, run the following command from the command line / PowerShell: #### User scope installer [default] ```powershell winget install Microsoft.PowerToys -s winget ``` #### Machine-wide scope installer ```powershell winget install --scope machine Microsoft.PowerToys -s winget ``` ### Other install methods There are [community driven install methods](./doc/unofficialInstallMethods.md) such as Chocolatey and Scoop. If these are your preferred install solutions, you can find the install instructions there. ## Third-Party Run Plugins There is a collection of [third-party plugins](./doc/thirdPartyRunPlugins.md) created by the community that aren't distributed with PowerToys. ## Contributing This project welcomes contributions of all types. Besides coding features / bug fixes, other ways to assist include spec writing, design, documentation, and finding bugs. We are excited to work with the power user community to build a set of tools for helping you get the most out of Windows. We ask that **before you start work on a feature that you would like to contribute**, please read our [Contributor's Guide](CONTRIBUTING.md). We would be happy to work with you to figure out the best approach, provide guidance and mentorship throughout feature development, and help avoid any wasted or duplicate effort. Most contributions require you to agree to a [Contributor License Agreement (CLA)][oss-CLA] declaring that you grant us the rights to use your contribution and that you have permission to do so. For guidance on developing for PowerToys, please read the [developer docs](/doc/devdocs) for a detailed breakdown. This includes how to setup your computer to compile. ## What's Happening ### PowerToys Roadmap Our [prioritized roadmap][roadmap] of features and utilities that the core team is focusing on. ### 0.73 - August 2023 Update In this release, we focused on releasing new features, stability and improvements. **Highlights** - Keyboard manager now allows Numpad keys to be bound separately from the main keyboard. If using a previous configuration, only the main keyboard (not numpad) keys will be mapped. To restore the previous behavior, manually add separate bindings for numpad keys. - New utility: Crop And Lock allows you to crop a current application into a smaller window or just create a thumbnail. Focus the target window and press the shortcut to start cropping. - FancyZones code improvements and refactor. - Modernized ImageResizer UX. - PowerRename advanced counter functionality. ### General - Added missing CoUninitialize call in elevation logic. Thanks [@sredna](https://github.com/sredna)! - New utility: Crop And Lock. Thanks [@robmikh](https://github.com/robmikh)! and [@kevinguo305](https://github.com/kevinguo305)! - Added new /helped fabric bot command to GitHub repo. Thanks [@Aaron-Junker](https://github.com/Aaron-Junker)! - Fixed crashes caused by invalid settings. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Always On Top - Added border transparency. ### FancyZones - Fixed issue causing canvas zones being drawn only when dragging in the zone area. - Fixed user-defined default layout highlighting issue. - Refactored and improved code quality. - Fixed issue causing the wrong layout to be applied when duplicating a non-selected layout. ### File Locksmith - Icon update. Thanks [@jmaraujouy](https://github.com/jmaraujouy)! ### File Explorer add-ons - Fixed issue causing thumbnail previewers to lock files. - Open URIs from developer files in default browser. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Installer - Fixed PowerToys autorun after installing as SYSTEM user. - Removed CreateScheduledTask custom action to handle task creation only from runner code. ### Image Resizer - Moved from ModernWPF to WpfUI to refresh and modernize UI/UX. Thanks [@niels9001](https://github.com/niels9001)! ### Keyboard Manager - Rephrased labels to enhance clarity. Thanks [@Jay-o-Way](https://github.com/Jay-o-Way)! - Keyboard manager now allows Numpad keys to be bound separately from the main keyboard. If using a previous configuration, only the main keyboard (not numpad) keys will be mapped. To restore the previous behavior, manually add separate bindings for numpad keys. ### Mouse Highlighter - The highlighter is now visible in "Always on Top" windows. - Added settings for automatic activation on startup. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Mouse Pointer Crosshairs - Added settings for automatic activation on startup. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Peek - Show correct file type for shortcuts. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Fixed issue causing the wrong file size to be displayed. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Show 1 byte instead of 1 bytes file size. Thanks [@Deepak-Sangle](https://github.com/Deepak-Sangle)! - Open URIs from developer files in the default browser. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Show a thumbnail and fallback to an icon for unsupported files. Thanks [@pedrolamas](https://github.com/pedrolamas)! ### PowerRename - Updated the OOBE gif. Thanks [@ChaseKnowlden](https://github.com/ChaseKnowlden)! - Localized the renamed parts combo box. - Introduced advanced counter functionality. - Added remember last window size logic and optimized sorting of items. - Enable "Enumerate items" option by default. ### PowerToys Run - Fixed an issue causing original search to be abandoned when cycling through results. - Updated device and bluetooth results for Settings plugin. Thanks [@htcfreek](https://github.com/htcfreek)! - Fixed InvalidOperationException exception thrown. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Add Base64 Decoding function to the Value Generator plugin. Thanks [@LeagueOfPoro](https://github.com/LeagueOfPoro)! - Added a Keep shell open option for Shell plugin. - Added Crop And Lock to PowerToys plugin. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Registry Preview - Updated AppBarButtons to use an explicit AppBarButton.Icon. Thanks [@randyrants](https://github.com/randyrants)! - Fixed crash on clicking Save As button. ### Runner - Removed unneeded RegisterWindowMessage from tray icon logic. Thanks [@sredna](https://github.com/sredna)! - Fixed startup looping issue. - Improved old logs and installers cleanup logic. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Screen Ruler - Use proper resources file. ### Settings - Fixed issue causing problems with modifier keys and ShortcutControl. Thanks [@sh0ckj0ckey](https://github.com/sh0ckj0ckey)! - Fixed crash when clicking "Windows color settings" link. - Added support for launching Settings app directly. - Fixed issue causing DisplayDescription not showing for PowerToys Run PluginAdditionalOption. - Fixed issue causing FileLocksmith 'Show File Locksmith in' setting not showing correct value. - Fixed issue causing Awake on/off toggle in Settings flyout not to work when Settings Awake page is opened. ### Documentation - Added documentation for PowerToys Run third-party plugins. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Fixed broken links in keyboardmanagerui.md. Thanks [@shubhsardana29](https://github.com/shubhsardana29)! - Updated core team in COMMUNITY.md. - Fixed broken links in ui-architecture.md. Thanks [@SamB](https://github.com/SamB)! - Updated community.valuegenerator.md with Base64DecodeRequest description. ### Development - Updated test packages and StyleCop. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Condense NuGet Restore into MSBuild Tasks. Thanks [@snickler](https://github.com/snickler)! #### What is being planned for version 0.74 For [v0.74][github-next-release-work], we'll work on the items below: - Language selection - Modernize and refresh the UX of PowerToys based on WPF - Stability / bug fixes - Peek: UI improvements ## PowerToys Community The PowerToys team is extremely grateful to have the [support of an amazing active community][community-link]. The work you do is incredibly important. PowerToys wouldn’t be nearly what it is today without your help filing bugs, updating documentation, guiding the design, or writing features. We want to say thank you and take time to recognize your work. Month by month, you directly help make PowerToys a better piece of software. ## Code of Conduct This project has adopted the [Microsoft Open Source Code of Conduct][oss-conduct-code]. ## Privacy Statement The application logs basic telemetry. Our Telemetry Data page (Coming Soon) has the trends from the telemetry. Please read the [Microsoft privacy statement][privacy-link] for more information. [oss-CLA]: https://cla.opensource.microsoft.com [oss-conduct-code]: CODE_OF_CONDUCT.md [community-link]: COMMUNITY.md [github-release-link]: https://aka.ms/installPowerToys [microsoft-store-link]: https://aka.ms/getPowertoys [winget-link]: https://github.com/microsoft/winget-cli#installing-the-client [roadmap]: https://github.com/microsoft/PowerToys/wiki/Roadmap [privacy-link]: http://go.microsoft.com/fwlink/?LinkId=521839 [vidConfOverview]: https://aka.ms/PowerToysOverview_VideoConference [loc-bug]: https://github.com/microsoft/PowerToys/issues/new?assignees=&labels=&template=translation_issue.md&title= [usingPowerToys-docs-link]: https://aka.ms/powertoys-docs
# Microsoft PowerToys ![Hero image for Microsoft PowerToys](doc/images/overview/PT_hero_image.png) [How to use PowerToys][usingPowerToys-docs-link] | [Downloads & Release notes][github-release-link] | [Contributing to PowerToys](#contributing) | [What's Happening](#whats-happening) | [Roadmap](#powertoys-roadmap) ## Build status | Architecture | Solution (Main) | Solution (Stable) | Installer (Main) | |--------------|-----------------|-------------------|------------------| | x64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main&jobName=Build%20x64%20Release) | [![Build Status for Stable](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=stable&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_x64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | | ARM64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main) | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_arm64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | ## About Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. For more info on [PowerToys overviews and how to use the utilities][usingPowerToys-docs-link], or any other tools and resources for [Windows development environments](https://learn.microsoft.com/windows/dev-environment/overview), head over to [learn.microsoft.com][usingPowerToys-docs-link]! | | Current utilities: | | |--------------|--------------------|--------------| | [Always on Top](https://aka.ms/PowerToysOverview_AoT) | [PowerToys Awake](https://aka.ms/PowerToysOverview_Awake) | [Color Picker](https://aka.ms/PowerToysOverview_ColorPicker) | | [Crop And Lock](https://aka.ms/PowerToysOverview_CropAndLock) | [FancyZones](https://aka.ms/PowerToysOverview_FancyZones) | [File Explorer Add-ons](https://aka.ms/PowerToysOverview_FileExplorerAddOns) | | [File Locksmith](https://aka.ms/PowerToysOverview_FileLocksmith) | [Hosts File Editor](https://aka.ms/PowerToysOverview_HostsFileEditor) | [Image Resizer](https://aka.ms/PowerToysOverview_ImageResizer) | | [Keyboard Manager](https://aka.ms/PowerToysOverview_KeyboardManager) | [Mouse utilities](https://aka.ms/PowerToysOverview_MouseUtilities) | [Mouse Without Borders](https://aka.ms/PowerToysOverview_MouseWithoutBorders) | | [Peek](https://aka.ms/PowerToysOverview_Peek) | [Paste as Plain Text](https://aka.ms/PowerToysOverview_PastePlain) | [PowerRename](https://aka.ms/PowerToysOverview_PowerRename) | | [PowerToys Run](https://aka.ms/PowerToysOverview_PowerToysRun) | [Quick Accent](https://aka.ms/PowerToysOverview_QuickAccent) | [Registry Preview](https://aka.ms/PowerToysOverview_RegistryPreview) | | [Screen Ruler](https://aka.ms/PowerToysOverview_ScreenRuler) | [Shortcut Guide](https://aka.ms/PowerToysOverview_ShortcutGuide) | [Text Extractor](https://aka.ms/PowerToysOverview_TextExtractor) | | [Video Conference Mute](https://aka.ms/PowerToysOverview_VideoConference) | ## Installing and running Microsoft PowerToys ### Requirements - Windows 11 or Windows 10 version 2004 (code name 20H1 / build number 19041) or newer. - Our installer will install the following items: - [Microsoft Edge WebView2 Runtime](https://go.microsoft.com/fwlink/p/?LinkId=2124703) bootstrapper. This will install the latest version. ### Via GitHub with EXE [Recommended] Go to the [Microsoft PowerToys GitHub releases page][github-release-link] and click on `Assets` at the bottom to show the files available in the release. Please use the appropriate PowerToys installer that matches your machine's architecture and install scope. For most, it is `x64` and per-user. <!-- items that need to be updated release to release --> [github-next-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F48 [github-current-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F47 [ptUserX64]: https://github.com/microsoft/PowerToys/releases/download/v0.74.0/PowerToysUserSetup-0.74.0-x64.exe [ptUserArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.74.0/PowerToysUserSetup-0.74.0-arm64.exe [ptMachineX64]: https://github.com/microsoft/PowerToys/releases/download/v0.74.0/PowerToysSetup-0.74.0-x64.exe [ptMachineArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.74.0/PowerToysSetup-0.74.0-arm64.exe | Description | Filename | sha256 hash | |----------------|----------|-------------| | Per user - x64 | [PowerToysUserSetup-0.74.0-x64.exe][ptUserX64] | 1C4ECE9F11488BAFFAE6B76D2B0504FA18BFFEA11EBC38BCC87F5D86AEA87C7C | | Per user - ARM64 | [PowerToysUserSetup-0.74.0-arm64.exe][ptUserArm64] | 4F3842FAB0839A361A15A06B7720BA8A0FE7F9AF98EA94245C08DEF37678CA4A | | Machine wide - x64 | [PowerToysSetup-0.74.0-x64.exe][ptMachineX64] | 648992E8CEA08F3C63C7CCBD554ADDF500ECBC4560187310BC12E6CB9C2F38E3 | | Machine wide - ARM64 | [PowerToysSetup-0.74.0-arm64.exe][ptMachineArm64] | 2B6D92F1A0EA688C7EE882050AC9B030C8B3A18765163FB6D67E5E694A4D4FE3 | This is our preferred method. ### Via Microsoft Store Install from the [Microsoft Store's PowerToys page][microsoft-store-link]. You must be using the [new Microsoft Store](https://blogs.windows.com/windowsExperience/2021/06/24/building-a-new-open-microsoft-store-on-windows-11/) which is available for both Windows 11 and Windows 10. ### Via WinGet Download PowerToys from [WinGet][winget-link]. Updating PowerToys via winget will respect current PowerToys installation scope. To install PowerToys, run the following command from the command line / PowerShell: #### User scope installer [default] ```powershell winget install Microsoft.PowerToys -s winget ``` #### Machine-wide scope installer ```powershell winget install --scope machine Microsoft.PowerToys -s winget ``` ### Other install methods There are [community driven install methods](./doc/unofficialInstallMethods.md) such as Chocolatey and Scoop. If these are your preferred install solutions, you can find the install instructions there. ## Third-Party Run Plugins There is a collection of [third-party plugins](./doc/thirdPartyRunPlugins.md) created by the community that aren't distributed with PowerToys. ## Contributing This project welcomes contributions of all types. Besides coding features / bug fixes, other ways to assist include spec writing, design, documentation, and finding bugs. We are excited to work with the power user community to build a set of tools for helping you get the most out of Windows. We ask that **before you start work on a feature that you would like to contribute**, please read our [Contributor's Guide](CONTRIBUTING.md). We would be happy to work with you to figure out the best approach, provide guidance and mentorship throughout feature development, and help avoid any wasted or duplicate effort. Most contributions require you to agree to a [Contributor License Agreement (CLA)][oss-CLA] declaring that you grant us the rights to use your contribution and that you have permission to do so. For guidance on developing for PowerToys, please read the [developer docs](/doc/devdocs) for a detailed breakdown. This includes how to setup your computer to compile. ## What's Happening ### PowerToys Roadmap Our [prioritized roadmap][roadmap] of features and utilities that the core team is focusing on. ### 0.74 - September 2023 Update In this release, we focused on stability and improvements. **Highlights** - Upgraded to Windows App SDK 1.4.1, increasing stability of WinUI3 utilities. Thanks [@dongle-the-gadget](https://github.com/dongle-the-gadget) for starting the upgrade! - Text Extractor was upgraded to its version 2.0, with a new overlay, table mode and more Quality of Life improvements. Thanks [@TheJoeFin](https://github.com/TheJoeFin)! - Improved FancyZones stability, fixing some layout resets and improving handling of newly created windows on Windows 11. - Fixed many silent crashes that were reported to Watson and the user's event viewer. ### General - Turning animations off in Windows Settings will now also turn them off in PowerToys. - Upgraded the Windows App SDK dependency to 1.4.1. Thanks [@dongle-the-gadget](https://github.com/dongle-the-gadget) for the original 1.4.0 upgrade! - Show in the thumbnail label and application titles when running as administrator. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Upgraded the Win UI Community Toolkit dependency to 8.0. Thanks [@niels9001](https://github.com/niels9001)! ### Awake - Added down-sampled variants to the application's icon. Thanks [@morriscurtis](https://github.com/morriscurtis)! ### Color Picker - After adding a new color in the editor, the history will scroll the new color into view. Thanks [@peerpalo](https://github.com/peerpalo)! ### Crop and Lock - Fixed a Crop and Lock crash that would occur when trying to reparent a window crashes the target application. An error message is shown instead. ### FancyZones - Set the process and main thread priority to normal. - Fixed handling newly created windows on Windows 11. - Fixed scenarios where opening the FancyZones Editor would reset the layouts. ### File Explorer add-ons - Optimized CPU usage for generating SVG thumbnails. - Improved handling of Gcode Thumbnails, including JPG and QOI formats. Thanks [@pedrolamas](https://github.com/pedrolamas)! - Better handled errors when sending telemetry, which were causing reported crashes. - Fixed some thumbnails not being shown centered like before the optimization. ### File Locksmith - Shows files opened by processes with PID greater than 65535. Thanks [@poke30744](https://github.com/poke30744)! - Fixed a GDI object leak in the context menu which would crash Explorer. ### Find My Mouse - Added new activation methods, including by hotkey. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Hosts File Editor - Ignore the default ACME sample entries in the hosts file. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Improved save error handling and added better error messages. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Corrected a check for an error when signaling the application to start as administrator. - Refactored the context menu. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Fixed dialogs overlapping the title bar after the upgrade to Windows App SDK 1.4. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Keyboard Manager - Distinguish between the regular minus key and the numpad minus key. ### Mouse Without Borders - Fixed a crash when trying to restart the application. ### Peek - Using Peek on HTML files will show a white background by default, similar to a browser's default behavior. - Fix a white flash on Dark theme when switching file and improved the development file preview detection and adjustments. ### PowerRename - Fixed a crash caused by big counter values on the new enumeration method. ### PowerToys Run - It's now possible to select which shell is used by the Shell plugin. - A combobox option type was added to the plugin options. - Fixed a bug in the Calculator plugin that was causing decimal numbers to be misinterpreted on locales where the dot (`.`) character isn't used as a decimal or digit separator. - Improved the Program plugin stability when it fails to load a program's thumbnail at startup. - The use of Pinyin for querying some plugins can now be turned on in Settings. Thanks [@ChaseKnowlden](https://github.com/ChaseKnowlden)! - Refactored option types for plugin and added number, string and composite types to be used in the future. Thanks [@htcfreek](https://github.com/htcfreek)! - Fixed the entry for searching for Windows updates in the Settings plugin. Thanks [@htcfreek](https://github.com/htcfreek)! ### Quick Accent - The "All languages" character set is now calculated by programmatically querying the characters for every available language. Thanks [@dannysummerlin](https://github.com/dannysummerlin)! - Added é to the Norwegian and Swedish languages. Thanks [@Aaron-Junker](https://github.com/Aaron-Junker)! - Added a runtime cache to the "All languages" character set, to only calculate accents once per key. ### Registry Preview - Fixed focusing issues at startup. - Improved the data visualization to show data in a similar way to the Windows Registry Editor. Thanks [@dillydylann](https://github.com/dillydylann)! ### Runner - Fixed hanging when a bug report was generated from the flyout. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Settings - Improved the way the OOBE window reacts to Windows theme change. - Fixed an issue that made it impossible to change the "Switch between windows in the current zone" "Next window" shortcut for FancyZones. - Fixed a crash when entering a duplicate name for a color in the Color Picker page and improved clean up when cancelling a color edit. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Text Extractor - Text Extractor 2.0, with a new overlay, table mode and more Quality of Life improvements. Thanks [@TheJoeFin](https://github.com/TheJoeFin)! ### Documentation - SECURITY.md was updated from 0.0.2 to 0.0.9. Thanks [@Aaron-Junker](https://github.com/Aaron-Junker)! - Improved the README and main development document for clarity and completeness. Thanks [@codeofdusk](https://github.com/codeofdusk) and [@aprilbbrockhoeft](https://github.com/aprilbbrockhoeft)! ### Development - Fixed PowerToys Run DateTime plugin tests that were failing depending on locale, so that they can be run correctly on all dev machines. - Fixed PowerToys Run System plugin tests that were failing for certain network interfaces, so that they can be run correctly on all dev machines. Thanks [@snickler](https://github.com/snickler)! - Fixed a markdown bug on the GitHub /helped command. - Switched build pipelines to a new agent pool. Thanks [@DHowett](https://github.com/DHowett)! - New .cs files created in Visual Studio get the header added automatically. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! #### What is being planned for version 0.75 For [v0.75][github-next-release-work], we'll work on the items below: - Language selection - .NET 8 upgrade - Policy support for managing PowerToys Run plugins. *Attention*: A breaking change is planned (for 0.75), in which each plugin has to declare its identifier programmatically so that it can be controlled through GPO. For third-party plugin developers, please check https://github.com/microsoft/PowerToys/pull/27468 for more details. - New utility: Environment Variables Editor. Here's a Work in Progress preview: ![Environment Variables Editor WIP](https://github.com/microsoft/PowerToys/assets/26118718/f99532a8-5aae-481b-a662-19a95f4aa03d) - New Settings homepage. Here's a Work in Progress preview: ![PowerToys Settings Dashboard WIP](https://github.com/microsoft/PowerToys/assets/26118718/938a5715-0a9b-4fe9-9e15-adfec92da694) - Modernize and refresh the UX of PowerToys based on WPF. Here's Work in Progress previews for the modules "PowerToys Run" and "Color Picker": ![PowerToys Run UI refresh WIP](https://github.com/microsoft/PowerToys/assets/9866362/16903bcb-c18e-49fb-93ca-738b81957055) ![ColorPicker UI refresh WIP](https://github.com/microsoft/PowerToys/assets/9866362/ceebe54b-de63-4ce7-afcb-2cd4280bf4d1) - Stability / bug fixes ## PowerToys Community The PowerToys team is extremely grateful to have the [support of an amazing active community][community-link]. The work you do is incredibly important. PowerToys wouldn’t be nearly what it is today without your help filing bugs, updating documentation, guiding the design, or writing features. We want to say thank you and take time to recognize your work. Month by month, you directly help make PowerToys a better piece of software. ## Code of Conduct This project has adopted the [Microsoft Open Source Code of Conduct][oss-conduct-code]. ## Privacy Statement The application logs basic telemetry. Our Telemetry Data page (Coming Soon) has the trends from the telemetry. Please read the [Microsoft privacy statement][privacy-link] for more information. [oss-CLA]: https://cla.opensource.microsoft.com [oss-conduct-code]: CODE_OF_CONDUCT.md [community-link]: COMMUNITY.md [github-release-link]: https://aka.ms/installPowerToys [microsoft-store-link]: https://aka.ms/getPowertoys [winget-link]: https://github.com/microsoft/winget-cli#installing-the-client [roadmap]: https://github.com/microsoft/PowerToys/wiki/Roadmap [privacy-link]: http://go.microsoft.com/fwlink/?LinkId=521839 [vidConfOverview]: https://aka.ms/PowerToysOverview_VideoConference [loc-bug]: https://github.com/microsoft/PowerToys/issues/new?assignees=&labels=&template=translation_issue.md&title= [usingPowerToys-docs-link]: https://aka.ms/powertoys-docs
jaimecbernardo
a1e0bd51617b2bea189cb16324eecd0e13fa7b86
77063e0767a0619abfc339db3a2a564d27310b6c
Ended up removing from hightlights. @htcfreek , how about editing the line in PowerToys Run section for more details instead?
jaimecbernardo
431
microsoft/PowerToys
28,775
0.74 changelogs
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request Readme update for the 0.74 release. This will be copy / pasted for release notes.
null
2023-09-26 11:20:42+00:00
2023-09-26 21:36:51+00:00
README.md
# Microsoft PowerToys ![Hero image for Microsoft PowerToys](doc/images/overview/PT_hero_image.png) [How to use PowerToys][usingPowerToys-docs-link] | [Downloads & Release notes][github-release-link] | [Contributing to PowerToys](#contributing) | [What's Happening](#whats-happening) | [Roadmap](#powertoys-roadmap) ## Build status | Architecture | Solution (Main) | Solution (Stable) | Installer (Main) | |--------------|-----------------|-------------------|------------------| | x64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main&jobName=Build%20x64%20Release) | [![Build Status for Stable](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=stable&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_x64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | | ARM64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main) | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_arm64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | ## About Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. For more info on [PowerToys overviews and how to use the utilities][usingPowerToys-docs-link], or any other tools and resources for [Windows development environments](https://learn.microsoft.com/windows/dev-environment/overview), head over to [learn.microsoft.com][usingPowerToys-docs-link]! | | Current utilities: | | |--------------|--------------------|--------------| | [Always on Top](https://aka.ms/PowerToysOverview_AoT) | [PowerToys Awake](https://aka.ms/PowerToysOverview_Awake) | [Color Picker](https://aka.ms/PowerToysOverview_ColorPicker) | | [Crop And Lock](https://aka.ms/PowerToysOverview_CropAndLock) | [FancyZones](https://aka.ms/PowerToysOverview_FancyZones) | [File Explorer Add-ons](https://aka.ms/PowerToysOverview_FileExplorerAddOns) | | [File Locksmith](https://aka.ms/PowerToysOverview_FileLocksmith) | [Hosts File Editor](https://aka.ms/PowerToysOverview_HostsFileEditor) | [Image Resizer](https://aka.ms/PowerToysOverview_ImageResizer) | | [Keyboard Manager](https://aka.ms/PowerToysOverview_KeyboardManager) | [Mouse utilities](https://aka.ms/PowerToysOverview_MouseUtilities) | [Mouse Without Borders](https://aka.ms/PowerToysOverview_MouseWithoutBorders) | | [Peek](https://aka.ms/PowerToysOverview_Peek) | [Paste as Plain Text](https://aka.ms/PowerToysOverview_PastePlain) | [PowerRename](https://aka.ms/PowerToysOverview_PowerRename) | | [PowerToys Run](https://aka.ms/PowerToysOverview_PowerToysRun) | [Quick Accent](https://aka.ms/PowerToysOverview_QuickAccent) | [Registry Preview](https://aka.ms/PowerToysOverview_RegistryPreview) | | [Screen Ruler](https://aka.ms/PowerToysOverview_ScreenRuler) | [Shortcut Guide](https://aka.ms/PowerToysOverview_ShortcutGuide) | [Text Extractor](https://aka.ms/PowerToysOverview_TextExtractor) | | [Video Conference Mute](https://aka.ms/PowerToysOverview_VideoConference) | ## Installing and running Microsoft PowerToys ### Requirements - Windows 11 or Windows 10 version 2004 (code name 20H1 / build number 19041) or newer. - Our installer will install the following items: - [Microsoft Edge WebView2 Runtime](https://go.microsoft.com/fwlink/p/?LinkId=2124703) bootstrapper. This will install the latest version. ### Via GitHub with EXE [Recommended] Go to the [Microsoft PowerToys GitHub releases page][github-release-link] and click on `Assets` at the bottom to show the files available in the release. Please use the appropriate PowerToys installer that matches your machine's architecture and install scope. For most, it is `x64` and per-user. <!-- items that need to be updated release to release --> [github-next-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F47 [github-current-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F46 [ptUserX64]: https://github.com/microsoft/PowerToys/releases/download/v0.73.0/PowerToysUserSetup-0.73.0-x64.exe [ptUserArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.73.0/PowerToysUserSetup-0.73.0-arm64.exe [ptMachineX64]: https://github.com/microsoft/PowerToys/releases/download/v0.73.0/PowerToysSetup-0.73.0-x64.exe [ptMachineArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.73.0/PowerToysSetup-0.73.0-arm64.exe | Description | Filename | sha256 hash | |----------------|----------|-------------| | Per user - x64 | [PowerToysUserSetup-0.73.0-x64.exe][ptUserX64] | BA55D245BDD734FD6F19803DD706A3AB8E0ABC491591195534997CF2122D3B7E | | Per user - ARM64 | [PowerToysUserSetup-0.73.0-arm64.exe][ptUserArm64] | FBFA40EA5FFA05236A7CCDD05E5142EE0C93D7485B965784196ED9B086BFEBF4 | | Machine wide - x64 | [PowerToysSetup-0.73.0-x64.exe][ptMachineX64] | 7FDA06292C7C2E6DA5AEF88D8E9D3DE89D331E9E356A232289F9B37CE4503894 | | Machine wide - ARM64 | [PowerToysSetup-0.73.0-arm64.exe][ptMachineArm64] | 4260AA30A1F52F194EE07E9E7ECD9E9F4CF35289267F213BC933F7A5191AC17C | This is our preferred method. ### Via Microsoft Store Install from the [Microsoft Store's PowerToys page][microsoft-store-link]. You must be using the [new Microsoft Store](https://blogs.windows.com/windowsExperience/2021/06/24/building-a-new-open-microsoft-store-on-windows-11/) which is available for both Windows 11 and Windows 10. ### Via WinGet Download PowerToys from [WinGet][winget-link]. Updating PowerToys via winget will respect current PowerToys installation scope. To install PowerToys, run the following command from the command line / PowerShell: #### User scope installer [default] ```powershell winget install Microsoft.PowerToys -s winget ``` #### Machine-wide scope installer ```powershell winget install --scope machine Microsoft.PowerToys -s winget ``` ### Other install methods There are [community driven install methods](./doc/unofficialInstallMethods.md) such as Chocolatey and Scoop. If these are your preferred install solutions, you can find the install instructions there. ## Third-Party Run Plugins There is a collection of [third-party plugins](./doc/thirdPartyRunPlugins.md) created by the community that aren't distributed with PowerToys. ## Contributing This project welcomes contributions of all types. Besides coding features / bug fixes, other ways to assist include spec writing, design, documentation, and finding bugs. We are excited to work with the power user community to build a set of tools for helping you get the most out of Windows. We ask that **before you start work on a feature that you would like to contribute**, please read our [Contributor's Guide](CONTRIBUTING.md). We would be happy to work with you to figure out the best approach, provide guidance and mentorship throughout feature development, and help avoid any wasted or duplicate effort. Most contributions require you to agree to a [Contributor License Agreement (CLA)][oss-CLA] declaring that you grant us the rights to use your contribution and that you have permission to do so. For guidance on developing for PowerToys, please read the [developer docs](/doc/devdocs) for a detailed breakdown. This includes how to setup your computer to compile. ## What's Happening ### PowerToys Roadmap Our [prioritized roadmap][roadmap] of features and utilities that the core team is focusing on. ### 0.73 - August 2023 Update In this release, we focused on releasing new features, stability and improvements. **Highlights** - Keyboard manager now allows Numpad keys to be bound separately from the main keyboard. If using a previous configuration, only the main keyboard (not numpad) keys will be mapped. To restore the previous behavior, manually add separate bindings for numpad keys. - New utility: Crop And Lock allows you to crop a current application into a smaller window or just create a thumbnail. Focus the target window and press the shortcut to start cropping. - FancyZones code improvements and refactor. - Modernized ImageResizer UX. - PowerRename advanced counter functionality. ### General - Added missing CoUninitialize call in elevation logic. Thanks [@sredna](https://github.com/sredna)! - New utility: Crop And Lock. Thanks [@robmikh](https://github.com/robmikh)! and [@kevinguo305](https://github.com/kevinguo305)! - Added new /helped fabric bot command to GitHub repo. Thanks [@Aaron-Junker](https://github.com/Aaron-Junker)! - Fixed crashes caused by invalid settings. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Always On Top - Added border transparency. ### FancyZones - Fixed issue causing canvas zones being drawn only when dragging in the zone area. - Fixed user-defined default layout highlighting issue. - Refactored and improved code quality. - Fixed issue causing the wrong layout to be applied when duplicating a non-selected layout. ### File Locksmith - Icon update. Thanks [@jmaraujouy](https://github.com/jmaraujouy)! ### File Explorer add-ons - Fixed issue causing thumbnail previewers to lock files. - Open URIs from developer files in default browser. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Installer - Fixed PowerToys autorun after installing as SYSTEM user. - Removed CreateScheduledTask custom action to handle task creation only from runner code. ### Image Resizer - Moved from ModernWPF to WpfUI to refresh and modernize UI/UX. Thanks [@niels9001](https://github.com/niels9001)! ### Keyboard Manager - Rephrased labels to enhance clarity. Thanks [@Jay-o-Way](https://github.com/Jay-o-Way)! - Keyboard manager now allows Numpad keys to be bound separately from the main keyboard. If using a previous configuration, only the main keyboard (not numpad) keys will be mapped. To restore the previous behavior, manually add separate bindings for numpad keys. ### Mouse Highlighter - The highlighter is now visible in "Always on Top" windows. - Added settings for automatic activation on startup. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Mouse Pointer Crosshairs - Added settings for automatic activation on startup. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Peek - Show correct file type for shortcuts. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Fixed issue causing the wrong file size to be displayed. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Show 1 byte instead of 1 bytes file size. Thanks [@Deepak-Sangle](https://github.com/Deepak-Sangle)! - Open URIs from developer files in the default browser. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Show a thumbnail and fallback to an icon for unsupported files. Thanks [@pedrolamas](https://github.com/pedrolamas)! ### PowerRename - Updated the OOBE gif. Thanks [@ChaseKnowlden](https://github.com/ChaseKnowlden)! - Localized the renamed parts combo box. - Introduced advanced counter functionality. - Added remember last window size logic and optimized sorting of items. - Enable "Enumerate items" option by default. ### PowerToys Run - Fixed an issue causing original search to be abandoned when cycling through results. - Updated device and bluetooth results for Settings plugin. Thanks [@htcfreek](https://github.com/htcfreek)! - Fixed InvalidOperationException exception thrown. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Add Base64 Decoding function to the Value Generator plugin. Thanks [@LeagueOfPoro](https://github.com/LeagueOfPoro)! - Added a Keep shell open option for Shell plugin. - Added Crop And Lock to PowerToys plugin. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Registry Preview - Updated AppBarButtons to use an explicit AppBarButton.Icon. Thanks [@randyrants](https://github.com/randyrants)! - Fixed crash on clicking Save As button. ### Runner - Removed unneeded RegisterWindowMessage from tray icon logic. Thanks [@sredna](https://github.com/sredna)! - Fixed startup looping issue. - Improved old logs and installers cleanup logic. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Screen Ruler - Use proper resources file. ### Settings - Fixed issue causing problems with modifier keys and ShortcutControl. Thanks [@sh0ckj0ckey](https://github.com/sh0ckj0ckey)! - Fixed crash when clicking "Windows color settings" link. - Added support for launching Settings app directly. - Fixed issue causing DisplayDescription not showing for PowerToys Run PluginAdditionalOption. - Fixed issue causing FileLocksmith 'Show File Locksmith in' setting not showing correct value. - Fixed issue causing Awake on/off toggle in Settings flyout not to work when Settings Awake page is opened. ### Documentation - Added documentation for PowerToys Run third-party plugins. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Fixed broken links in keyboardmanagerui.md. Thanks [@shubhsardana29](https://github.com/shubhsardana29)! - Updated core team in COMMUNITY.md. - Fixed broken links in ui-architecture.md. Thanks [@SamB](https://github.com/SamB)! - Updated community.valuegenerator.md with Base64DecodeRequest description. ### Development - Updated test packages and StyleCop. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Condense NuGet Restore into MSBuild Tasks. Thanks [@snickler](https://github.com/snickler)! #### What is being planned for version 0.74 For [v0.74][github-next-release-work], we'll work on the items below: - Language selection - Modernize and refresh the UX of PowerToys based on WPF - Stability / bug fixes - Peek: UI improvements ## PowerToys Community The PowerToys team is extremely grateful to have the [support of an amazing active community][community-link]. The work you do is incredibly important. PowerToys wouldn’t be nearly what it is today without your help filing bugs, updating documentation, guiding the design, or writing features. We want to say thank you and take time to recognize your work. Month by month, you directly help make PowerToys a better piece of software. ## Code of Conduct This project has adopted the [Microsoft Open Source Code of Conduct][oss-conduct-code]. ## Privacy Statement The application logs basic telemetry. Our Telemetry Data page (Coming Soon) has the trends from the telemetry. Please read the [Microsoft privacy statement][privacy-link] for more information. [oss-CLA]: https://cla.opensource.microsoft.com [oss-conduct-code]: CODE_OF_CONDUCT.md [community-link]: COMMUNITY.md [github-release-link]: https://aka.ms/installPowerToys [microsoft-store-link]: https://aka.ms/getPowertoys [winget-link]: https://github.com/microsoft/winget-cli#installing-the-client [roadmap]: https://github.com/microsoft/PowerToys/wiki/Roadmap [privacy-link]: http://go.microsoft.com/fwlink/?LinkId=521839 [vidConfOverview]: https://aka.ms/PowerToysOverview_VideoConference [loc-bug]: https://github.com/microsoft/PowerToys/issues/new?assignees=&labels=&template=translation_issue.md&title= [usingPowerToys-docs-link]: https://aka.ms/powertoys-docs
# Microsoft PowerToys ![Hero image for Microsoft PowerToys](doc/images/overview/PT_hero_image.png) [How to use PowerToys][usingPowerToys-docs-link] | [Downloads & Release notes][github-release-link] | [Contributing to PowerToys](#contributing) | [What's Happening](#whats-happening) | [Roadmap](#powertoys-roadmap) ## Build status | Architecture | Solution (Main) | Solution (Stable) | Installer (Main) | |--------------|-----------------|-------------------|------------------| | x64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main&jobName=Build%20x64%20Release) | [![Build Status for Stable](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=stable&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_x64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | | ARM64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main) | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_arm64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | ## About Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. For more info on [PowerToys overviews and how to use the utilities][usingPowerToys-docs-link], or any other tools and resources for [Windows development environments](https://learn.microsoft.com/windows/dev-environment/overview), head over to [learn.microsoft.com][usingPowerToys-docs-link]! | | Current utilities: | | |--------------|--------------------|--------------| | [Always on Top](https://aka.ms/PowerToysOverview_AoT) | [PowerToys Awake](https://aka.ms/PowerToysOverview_Awake) | [Color Picker](https://aka.ms/PowerToysOverview_ColorPicker) | | [Crop And Lock](https://aka.ms/PowerToysOverview_CropAndLock) | [FancyZones](https://aka.ms/PowerToysOverview_FancyZones) | [File Explorer Add-ons](https://aka.ms/PowerToysOverview_FileExplorerAddOns) | | [File Locksmith](https://aka.ms/PowerToysOverview_FileLocksmith) | [Hosts File Editor](https://aka.ms/PowerToysOverview_HostsFileEditor) | [Image Resizer](https://aka.ms/PowerToysOverview_ImageResizer) | | [Keyboard Manager](https://aka.ms/PowerToysOverview_KeyboardManager) | [Mouse utilities](https://aka.ms/PowerToysOverview_MouseUtilities) | [Mouse Without Borders](https://aka.ms/PowerToysOverview_MouseWithoutBorders) | | [Peek](https://aka.ms/PowerToysOverview_Peek) | [Paste as Plain Text](https://aka.ms/PowerToysOverview_PastePlain) | [PowerRename](https://aka.ms/PowerToysOverview_PowerRename) | | [PowerToys Run](https://aka.ms/PowerToysOverview_PowerToysRun) | [Quick Accent](https://aka.ms/PowerToysOverview_QuickAccent) | [Registry Preview](https://aka.ms/PowerToysOverview_RegistryPreview) | | [Screen Ruler](https://aka.ms/PowerToysOverview_ScreenRuler) | [Shortcut Guide](https://aka.ms/PowerToysOverview_ShortcutGuide) | [Text Extractor](https://aka.ms/PowerToysOverview_TextExtractor) | | [Video Conference Mute](https://aka.ms/PowerToysOverview_VideoConference) | ## Installing and running Microsoft PowerToys ### Requirements - Windows 11 or Windows 10 version 2004 (code name 20H1 / build number 19041) or newer. - Our installer will install the following items: - [Microsoft Edge WebView2 Runtime](https://go.microsoft.com/fwlink/p/?LinkId=2124703) bootstrapper. This will install the latest version. ### Via GitHub with EXE [Recommended] Go to the [Microsoft PowerToys GitHub releases page][github-release-link] and click on `Assets` at the bottom to show the files available in the release. Please use the appropriate PowerToys installer that matches your machine's architecture and install scope. For most, it is `x64` and per-user. <!-- items that need to be updated release to release --> [github-next-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F48 [github-current-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F47 [ptUserX64]: https://github.com/microsoft/PowerToys/releases/download/v0.74.0/PowerToysUserSetup-0.74.0-x64.exe [ptUserArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.74.0/PowerToysUserSetup-0.74.0-arm64.exe [ptMachineX64]: https://github.com/microsoft/PowerToys/releases/download/v0.74.0/PowerToysSetup-0.74.0-x64.exe [ptMachineArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.74.0/PowerToysSetup-0.74.0-arm64.exe | Description | Filename | sha256 hash | |----------------|----------|-------------| | Per user - x64 | [PowerToysUserSetup-0.74.0-x64.exe][ptUserX64] | 1C4ECE9F11488BAFFAE6B76D2B0504FA18BFFEA11EBC38BCC87F5D86AEA87C7C | | Per user - ARM64 | [PowerToysUserSetup-0.74.0-arm64.exe][ptUserArm64] | 4F3842FAB0839A361A15A06B7720BA8A0FE7F9AF98EA94245C08DEF37678CA4A | | Machine wide - x64 | [PowerToysSetup-0.74.0-x64.exe][ptMachineX64] | 648992E8CEA08F3C63C7CCBD554ADDF500ECBC4560187310BC12E6CB9C2F38E3 | | Machine wide - ARM64 | [PowerToysSetup-0.74.0-arm64.exe][ptMachineArm64] | 2B6D92F1A0EA688C7EE882050AC9B030C8B3A18765163FB6D67E5E694A4D4FE3 | This is our preferred method. ### Via Microsoft Store Install from the [Microsoft Store's PowerToys page][microsoft-store-link]. You must be using the [new Microsoft Store](https://blogs.windows.com/windowsExperience/2021/06/24/building-a-new-open-microsoft-store-on-windows-11/) which is available for both Windows 11 and Windows 10. ### Via WinGet Download PowerToys from [WinGet][winget-link]. Updating PowerToys via winget will respect current PowerToys installation scope. To install PowerToys, run the following command from the command line / PowerShell: #### User scope installer [default] ```powershell winget install Microsoft.PowerToys -s winget ``` #### Machine-wide scope installer ```powershell winget install --scope machine Microsoft.PowerToys -s winget ``` ### Other install methods There are [community driven install methods](./doc/unofficialInstallMethods.md) such as Chocolatey and Scoop. If these are your preferred install solutions, you can find the install instructions there. ## Third-Party Run Plugins There is a collection of [third-party plugins](./doc/thirdPartyRunPlugins.md) created by the community that aren't distributed with PowerToys. ## Contributing This project welcomes contributions of all types. Besides coding features / bug fixes, other ways to assist include spec writing, design, documentation, and finding bugs. We are excited to work with the power user community to build a set of tools for helping you get the most out of Windows. We ask that **before you start work on a feature that you would like to contribute**, please read our [Contributor's Guide](CONTRIBUTING.md). We would be happy to work with you to figure out the best approach, provide guidance and mentorship throughout feature development, and help avoid any wasted or duplicate effort. Most contributions require you to agree to a [Contributor License Agreement (CLA)][oss-CLA] declaring that you grant us the rights to use your contribution and that you have permission to do so. For guidance on developing for PowerToys, please read the [developer docs](/doc/devdocs) for a detailed breakdown. This includes how to setup your computer to compile. ## What's Happening ### PowerToys Roadmap Our [prioritized roadmap][roadmap] of features and utilities that the core team is focusing on. ### 0.74 - September 2023 Update In this release, we focused on stability and improvements. **Highlights** - Upgraded to Windows App SDK 1.4.1, increasing stability of WinUI3 utilities. Thanks [@dongle-the-gadget](https://github.com/dongle-the-gadget) for starting the upgrade! - Text Extractor was upgraded to its version 2.0, with a new overlay, table mode and more Quality of Life improvements. Thanks [@TheJoeFin](https://github.com/TheJoeFin)! - Improved FancyZones stability, fixing some layout resets and improving handling of newly created windows on Windows 11. - Fixed many silent crashes that were reported to Watson and the user's event viewer. ### General - Turning animations off in Windows Settings will now also turn them off in PowerToys. - Upgraded the Windows App SDK dependency to 1.4.1. Thanks [@dongle-the-gadget](https://github.com/dongle-the-gadget) for the original 1.4.0 upgrade! - Show in the thumbnail label and application titles when running as administrator. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Upgraded the Win UI Community Toolkit dependency to 8.0. Thanks [@niels9001](https://github.com/niels9001)! ### Awake - Added down-sampled variants to the application's icon. Thanks [@morriscurtis](https://github.com/morriscurtis)! ### Color Picker - After adding a new color in the editor, the history will scroll the new color into view. Thanks [@peerpalo](https://github.com/peerpalo)! ### Crop and Lock - Fixed a Crop and Lock crash that would occur when trying to reparent a window crashes the target application. An error message is shown instead. ### FancyZones - Set the process and main thread priority to normal. - Fixed handling newly created windows on Windows 11. - Fixed scenarios where opening the FancyZones Editor would reset the layouts. ### File Explorer add-ons - Optimized CPU usage for generating SVG thumbnails. - Improved handling of Gcode Thumbnails, including JPG and QOI formats. Thanks [@pedrolamas](https://github.com/pedrolamas)! - Better handled errors when sending telemetry, which were causing reported crashes. - Fixed some thumbnails not being shown centered like before the optimization. ### File Locksmith - Shows files opened by processes with PID greater than 65535. Thanks [@poke30744](https://github.com/poke30744)! - Fixed a GDI object leak in the context menu which would crash Explorer. ### Find My Mouse - Added new activation methods, including by hotkey. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Hosts File Editor - Ignore the default ACME sample entries in the hosts file. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Improved save error handling and added better error messages. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Corrected a check for an error when signaling the application to start as administrator. - Refactored the context menu. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Fixed dialogs overlapping the title bar after the upgrade to Windows App SDK 1.4. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Keyboard Manager - Distinguish between the regular minus key and the numpad minus key. ### Mouse Without Borders - Fixed a crash when trying to restart the application. ### Peek - Using Peek on HTML files will show a white background by default, similar to a browser's default behavior. - Fix a white flash on Dark theme when switching file and improved the development file preview detection and adjustments. ### PowerRename - Fixed a crash caused by big counter values on the new enumeration method. ### PowerToys Run - It's now possible to select which shell is used by the Shell plugin. - A combobox option type was added to the plugin options. - Fixed a bug in the Calculator plugin that was causing decimal numbers to be misinterpreted on locales where the dot (`.`) character isn't used as a decimal or digit separator. - Improved the Program plugin stability when it fails to load a program's thumbnail at startup. - The use of Pinyin for querying some plugins can now be turned on in Settings. Thanks [@ChaseKnowlden](https://github.com/ChaseKnowlden)! - Refactored option types for plugin and added number, string and composite types to be used in the future. Thanks [@htcfreek](https://github.com/htcfreek)! - Fixed the entry for searching for Windows updates in the Settings plugin. Thanks [@htcfreek](https://github.com/htcfreek)! ### Quick Accent - The "All languages" character set is now calculated by programmatically querying the characters for every available language. Thanks [@dannysummerlin](https://github.com/dannysummerlin)! - Added é to the Norwegian and Swedish languages. Thanks [@Aaron-Junker](https://github.com/Aaron-Junker)! - Added a runtime cache to the "All languages" character set, to only calculate accents once per key. ### Registry Preview - Fixed focusing issues at startup. - Improved the data visualization to show data in a similar way to the Windows Registry Editor. Thanks [@dillydylann](https://github.com/dillydylann)! ### Runner - Fixed hanging when a bug report was generated from the flyout. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Settings - Improved the way the OOBE window reacts to Windows theme change. - Fixed an issue that made it impossible to change the "Switch between windows in the current zone" "Next window" shortcut for FancyZones. - Fixed a crash when entering a duplicate name for a color in the Color Picker page and improved clean up when cancelling a color edit. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Text Extractor - Text Extractor 2.0, with a new overlay, table mode and more Quality of Life improvements. Thanks [@TheJoeFin](https://github.com/TheJoeFin)! ### Documentation - SECURITY.md was updated from 0.0.2 to 0.0.9. Thanks [@Aaron-Junker](https://github.com/Aaron-Junker)! - Improved the README and main development document for clarity and completeness. Thanks [@codeofdusk](https://github.com/codeofdusk) and [@aprilbbrockhoeft](https://github.com/aprilbbrockhoeft)! ### Development - Fixed PowerToys Run DateTime plugin tests that were failing depending on locale, so that they can be run correctly on all dev machines. - Fixed PowerToys Run System plugin tests that were failing for certain network interfaces, so that they can be run correctly on all dev machines. Thanks [@snickler](https://github.com/snickler)! - Fixed a markdown bug on the GitHub /helped command. - Switched build pipelines to a new agent pool. Thanks [@DHowett](https://github.com/DHowett)! - New .cs files created in Visual Studio get the header added automatically. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! #### What is being planned for version 0.75 For [v0.75][github-next-release-work], we'll work on the items below: - Language selection - .NET 8 upgrade - Policy support for managing PowerToys Run plugins. *Attention*: A breaking change is planned (for 0.75), in which each plugin has to declare its identifier programmatically so that it can be controlled through GPO. For third-party plugin developers, please check https://github.com/microsoft/PowerToys/pull/27468 for more details. - New utility: Environment Variables Editor. Here's a Work in Progress preview: ![Environment Variables Editor WIP](https://github.com/microsoft/PowerToys/assets/26118718/f99532a8-5aae-481b-a662-19a95f4aa03d) - New Settings homepage. Here's a Work in Progress preview: ![PowerToys Settings Dashboard WIP](https://github.com/microsoft/PowerToys/assets/26118718/938a5715-0a9b-4fe9-9e15-adfec92da694) - Modernize and refresh the UX of PowerToys based on WPF. Here's Work in Progress previews for the modules "PowerToys Run" and "Color Picker": ![PowerToys Run UI refresh WIP](https://github.com/microsoft/PowerToys/assets/9866362/16903bcb-c18e-49fb-93ca-738b81957055) ![ColorPicker UI refresh WIP](https://github.com/microsoft/PowerToys/assets/9866362/ceebe54b-de63-4ce7-afcb-2cd4280bf4d1) - Stability / bug fixes ## PowerToys Community The PowerToys team is extremely grateful to have the [support of an amazing active community][community-link]. The work you do is incredibly important. PowerToys wouldn’t be nearly what it is today without your help filing bugs, updating documentation, guiding the design, or writing features. We want to say thank you and take time to recognize your work. Month by month, you directly help make PowerToys a better piece of software. ## Code of Conduct This project has adopted the [Microsoft Open Source Code of Conduct][oss-conduct-code]. ## Privacy Statement The application logs basic telemetry. Our Telemetry Data page (Coming Soon) has the trends from the telemetry. Please read the [Microsoft privacy statement][privacy-link] for more information. [oss-CLA]: https://cla.opensource.microsoft.com [oss-conduct-code]: CODE_OF_CONDUCT.md [community-link]: COMMUNITY.md [github-release-link]: https://aka.ms/installPowerToys [microsoft-store-link]: https://aka.ms/getPowertoys [winget-link]: https://github.com/microsoft/winget-cli#installing-the-client [roadmap]: https://github.com/microsoft/PowerToys/wiki/Roadmap [privacy-link]: http://go.microsoft.com/fwlink/?LinkId=521839 [vidConfOverview]: https://aka.ms/PowerToysOverview_VideoConference [loc-bug]: https://github.com/microsoft/PowerToys/issues/new?assignees=&labels=&template=translation_issue.md&title= [usingPowerToys-docs-link]: https://aka.ms/powertoys-docs
jaimecbernardo
a1e0bd51617b2bea189cb16324eecd0e13fa7b86
77063e0767a0619abfc339db3a2a564d27310b6c
I am sure we have the details ther. Or not?
htcfreek
432
microsoft/PowerToys
28,775
0.74 changelogs
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request Readme update for the 0.74 release. This will be copy / pasted for release notes.
null
2023-09-26 11:20:42+00:00
2023-09-26 21:36:51+00:00
README.md
# Microsoft PowerToys ![Hero image for Microsoft PowerToys](doc/images/overview/PT_hero_image.png) [How to use PowerToys][usingPowerToys-docs-link] | [Downloads & Release notes][github-release-link] | [Contributing to PowerToys](#contributing) | [What's Happening](#whats-happening) | [Roadmap](#powertoys-roadmap) ## Build status | Architecture | Solution (Main) | Solution (Stable) | Installer (Main) | |--------------|-----------------|-------------------|------------------| | x64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main&jobName=Build%20x64%20Release) | [![Build Status for Stable](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=stable&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_x64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | | ARM64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main) | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_arm64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | ## About Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. For more info on [PowerToys overviews and how to use the utilities][usingPowerToys-docs-link], or any other tools and resources for [Windows development environments](https://learn.microsoft.com/windows/dev-environment/overview), head over to [learn.microsoft.com][usingPowerToys-docs-link]! | | Current utilities: | | |--------------|--------------------|--------------| | [Always on Top](https://aka.ms/PowerToysOverview_AoT) | [PowerToys Awake](https://aka.ms/PowerToysOverview_Awake) | [Color Picker](https://aka.ms/PowerToysOverview_ColorPicker) | | [Crop And Lock](https://aka.ms/PowerToysOverview_CropAndLock) | [FancyZones](https://aka.ms/PowerToysOverview_FancyZones) | [File Explorer Add-ons](https://aka.ms/PowerToysOverview_FileExplorerAddOns) | | [File Locksmith](https://aka.ms/PowerToysOverview_FileLocksmith) | [Hosts File Editor](https://aka.ms/PowerToysOverview_HostsFileEditor) | [Image Resizer](https://aka.ms/PowerToysOverview_ImageResizer) | | [Keyboard Manager](https://aka.ms/PowerToysOverview_KeyboardManager) | [Mouse utilities](https://aka.ms/PowerToysOverview_MouseUtilities) | [Mouse Without Borders](https://aka.ms/PowerToysOverview_MouseWithoutBorders) | | [Peek](https://aka.ms/PowerToysOverview_Peek) | [Paste as Plain Text](https://aka.ms/PowerToysOverview_PastePlain) | [PowerRename](https://aka.ms/PowerToysOverview_PowerRename) | | [PowerToys Run](https://aka.ms/PowerToysOverview_PowerToysRun) | [Quick Accent](https://aka.ms/PowerToysOverview_QuickAccent) | [Registry Preview](https://aka.ms/PowerToysOverview_RegistryPreview) | | [Screen Ruler](https://aka.ms/PowerToysOverview_ScreenRuler) | [Shortcut Guide](https://aka.ms/PowerToysOverview_ShortcutGuide) | [Text Extractor](https://aka.ms/PowerToysOverview_TextExtractor) | | [Video Conference Mute](https://aka.ms/PowerToysOverview_VideoConference) | ## Installing and running Microsoft PowerToys ### Requirements - Windows 11 or Windows 10 version 2004 (code name 20H1 / build number 19041) or newer. - Our installer will install the following items: - [Microsoft Edge WebView2 Runtime](https://go.microsoft.com/fwlink/p/?LinkId=2124703) bootstrapper. This will install the latest version. ### Via GitHub with EXE [Recommended] Go to the [Microsoft PowerToys GitHub releases page][github-release-link] and click on `Assets` at the bottom to show the files available in the release. Please use the appropriate PowerToys installer that matches your machine's architecture and install scope. For most, it is `x64` and per-user. <!-- items that need to be updated release to release --> [github-next-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F47 [github-current-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F46 [ptUserX64]: https://github.com/microsoft/PowerToys/releases/download/v0.73.0/PowerToysUserSetup-0.73.0-x64.exe [ptUserArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.73.0/PowerToysUserSetup-0.73.0-arm64.exe [ptMachineX64]: https://github.com/microsoft/PowerToys/releases/download/v0.73.0/PowerToysSetup-0.73.0-x64.exe [ptMachineArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.73.0/PowerToysSetup-0.73.0-arm64.exe | Description | Filename | sha256 hash | |----------------|----------|-------------| | Per user - x64 | [PowerToysUserSetup-0.73.0-x64.exe][ptUserX64] | BA55D245BDD734FD6F19803DD706A3AB8E0ABC491591195534997CF2122D3B7E | | Per user - ARM64 | [PowerToysUserSetup-0.73.0-arm64.exe][ptUserArm64] | FBFA40EA5FFA05236A7CCDD05E5142EE0C93D7485B965784196ED9B086BFEBF4 | | Machine wide - x64 | [PowerToysSetup-0.73.0-x64.exe][ptMachineX64] | 7FDA06292C7C2E6DA5AEF88D8E9D3DE89D331E9E356A232289F9B37CE4503894 | | Machine wide - ARM64 | [PowerToysSetup-0.73.0-arm64.exe][ptMachineArm64] | 4260AA30A1F52F194EE07E9E7ECD9E9F4CF35289267F213BC933F7A5191AC17C | This is our preferred method. ### Via Microsoft Store Install from the [Microsoft Store's PowerToys page][microsoft-store-link]. You must be using the [new Microsoft Store](https://blogs.windows.com/windowsExperience/2021/06/24/building-a-new-open-microsoft-store-on-windows-11/) which is available for both Windows 11 and Windows 10. ### Via WinGet Download PowerToys from [WinGet][winget-link]. Updating PowerToys via winget will respect current PowerToys installation scope. To install PowerToys, run the following command from the command line / PowerShell: #### User scope installer [default] ```powershell winget install Microsoft.PowerToys -s winget ``` #### Machine-wide scope installer ```powershell winget install --scope machine Microsoft.PowerToys -s winget ``` ### Other install methods There are [community driven install methods](./doc/unofficialInstallMethods.md) such as Chocolatey and Scoop. If these are your preferred install solutions, you can find the install instructions there. ## Third-Party Run Plugins There is a collection of [third-party plugins](./doc/thirdPartyRunPlugins.md) created by the community that aren't distributed with PowerToys. ## Contributing This project welcomes contributions of all types. Besides coding features / bug fixes, other ways to assist include spec writing, design, documentation, and finding bugs. We are excited to work with the power user community to build a set of tools for helping you get the most out of Windows. We ask that **before you start work on a feature that you would like to contribute**, please read our [Contributor's Guide](CONTRIBUTING.md). We would be happy to work with you to figure out the best approach, provide guidance and mentorship throughout feature development, and help avoid any wasted or duplicate effort. Most contributions require you to agree to a [Contributor License Agreement (CLA)][oss-CLA] declaring that you grant us the rights to use your contribution and that you have permission to do so. For guidance on developing for PowerToys, please read the [developer docs](/doc/devdocs) for a detailed breakdown. This includes how to setup your computer to compile. ## What's Happening ### PowerToys Roadmap Our [prioritized roadmap][roadmap] of features and utilities that the core team is focusing on. ### 0.73 - August 2023 Update In this release, we focused on releasing new features, stability and improvements. **Highlights** - Keyboard manager now allows Numpad keys to be bound separately from the main keyboard. If using a previous configuration, only the main keyboard (not numpad) keys will be mapped. To restore the previous behavior, manually add separate bindings for numpad keys. - New utility: Crop And Lock allows you to crop a current application into a smaller window or just create a thumbnail. Focus the target window and press the shortcut to start cropping. - FancyZones code improvements and refactor. - Modernized ImageResizer UX. - PowerRename advanced counter functionality. ### General - Added missing CoUninitialize call in elevation logic. Thanks [@sredna](https://github.com/sredna)! - New utility: Crop And Lock. Thanks [@robmikh](https://github.com/robmikh)! and [@kevinguo305](https://github.com/kevinguo305)! - Added new /helped fabric bot command to GitHub repo. Thanks [@Aaron-Junker](https://github.com/Aaron-Junker)! - Fixed crashes caused by invalid settings. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Always On Top - Added border transparency. ### FancyZones - Fixed issue causing canvas zones being drawn only when dragging in the zone area. - Fixed user-defined default layout highlighting issue. - Refactored and improved code quality. - Fixed issue causing the wrong layout to be applied when duplicating a non-selected layout. ### File Locksmith - Icon update. Thanks [@jmaraujouy](https://github.com/jmaraujouy)! ### File Explorer add-ons - Fixed issue causing thumbnail previewers to lock files. - Open URIs from developer files in default browser. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Installer - Fixed PowerToys autorun after installing as SYSTEM user. - Removed CreateScheduledTask custom action to handle task creation only from runner code. ### Image Resizer - Moved from ModernWPF to WpfUI to refresh and modernize UI/UX. Thanks [@niels9001](https://github.com/niels9001)! ### Keyboard Manager - Rephrased labels to enhance clarity. Thanks [@Jay-o-Way](https://github.com/Jay-o-Way)! - Keyboard manager now allows Numpad keys to be bound separately from the main keyboard. If using a previous configuration, only the main keyboard (not numpad) keys will be mapped. To restore the previous behavior, manually add separate bindings for numpad keys. ### Mouse Highlighter - The highlighter is now visible in "Always on Top" windows. - Added settings for automatic activation on startup. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Mouse Pointer Crosshairs - Added settings for automatic activation on startup. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Peek - Show correct file type for shortcuts. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Fixed issue causing the wrong file size to be displayed. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Show 1 byte instead of 1 bytes file size. Thanks [@Deepak-Sangle](https://github.com/Deepak-Sangle)! - Open URIs from developer files in the default browser. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Show a thumbnail and fallback to an icon for unsupported files. Thanks [@pedrolamas](https://github.com/pedrolamas)! ### PowerRename - Updated the OOBE gif. Thanks [@ChaseKnowlden](https://github.com/ChaseKnowlden)! - Localized the renamed parts combo box. - Introduced advanced counter functionality. - Added remember last window size logic and optimized sorting of items. - Enable "Enumerate items" option by default. ### PowerToys Run - Fixed an issue causing original search to be abandoned when cycling through results. - Updated device and bluetooth results for Settings plugin. Thanks [@htcfreek](https://github.com/htcfreek)! - Fixed InvalidOperationException exception thrown. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Add Base64 Decoding function to the Value Generator plugin. Thanks [@LeagueOfPoro](https://github.com/LeagueOfPoro)! - Added a Keep shell open option for Shell plugin. - Added Crop And Lock to PowerToys plugin. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Registry Preview - Updated AppBarButtons to use an explicit AppBarButton.Icon. Thanks [@randyrants](https://github.com/randyrants)! - Fixed crash on clicking Save As button. ### Runner - Removed unneeded RegisterWindowMessage from tray icon logic. Thanks [@sredna](https://github.com/sredna)! - Fixed startup looping issue. - Improved old logs and installers cleanup logic. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Screen Ruler - Use proper resources file. ### Settings - Fixed issue causing problems with modifier keys and ShortcutControl. Thanks [@sh0ckj0ckey](https://github.com/sh0ckj0ckey)! - Fixed crash when clicking "Windows color settings" link. - Added support for launching Settings app directly. - Fixed issue causing DisplayDescription not showing for PowerToys Run PluginAdditionalOption. - Fixed issue causing FileLocksmith 'Show File Locksmith in' setting not showing correct value. - Fixed issue causing Awake on/off toggle in Settings flyout not to work when Settings Awake page is opened. ### Documentation - Added documentation for PowerToys Run third-party plugins. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Fixed broken links in keyboardmanagerui.md. Thanks [@shubhsardana29](https://github.com/shubhsardana29)! - Updated core team in COMMUNITY.md. - Fixed broken links in ui-architecture.md. Thanks [@SamB](https://github.com/SamB)! - Updated community.valuegenerator.md with Base64DecodeRequest description. ### Development - Updated test packages and StyleCop. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Condense NuGet Restore into MSBuild Tasks. Thanks [@snickler](https://github.com/snickler)! #### What is being planned for version 0.74 For [v0.74][github-next-release-work], we'll work on the items below: - Language selection - Modernize and refresh the UX of PowerToys based on WPF - Stability / bug fixes - Peek: UI improvements ## PowerToys Community The PowerToys team is extremely grateful to have the [support of an amazing active community][community-link]. The work you do is incredibly important. PowerToys wouldn’t be nearly what it is today without your help filing bugs, updating documentation, guiding the design, or writing features. We want to say thank you and take time to recognize your work. Month by month, you directly help make PowerToys a better piece of software. ## Code of Conduct This project has adopted the [Microsoft Open Source Code of Conduct][oss-conduct-code]. ## Privacy Statement The application logs basic telemetry. Our Telemetry Data page (Coming Soon) has the trends from the telemetry. Please read the [Microsoft privacy statement][privacy-link] for more information. [oss-CLA]: https://cla.opensource.microsoft.com [oss-conduct-code]: CODE_OF_CONDUCT.md [community-link]: COMMUNITY.md [github-release-link]: https://aka.ms/installPowerToys [microsoft-store-link]: https://aka.ms/getPowertoys [winget-link]: https://github.com/microsoft/winget-cli#installing-the-client [roadmap]: https://github.com/microsoft/PowerToys/wiki/Roadmap [privacy-link]: http://go.microsoft.com/fwlink/?LinkId=521839 [vidConfOverview]: https://aka.ms/PowerToysOverview_VideoConference [loc-bug]: https://github.com/microsoft/PowerToys/issues/new?assignees=&labels=&template=translation_issue.md&title= [usingPowerToys-docs-link]: https://aka.ms/powertoys-docs
# Microsoft PowerToys ![Hero image for Microsoft PowerToys](doc/images/overview/PT_hero_image.png) [How to use PowerToys][usingPowerToys-docs-link] | [Downloads & Release notes][github-release-link] | [Contributing to PowerToys](#contributing) | [What's Happening](#whats-happening) | [Roadmap](#powertoys-roadmap) ## Build status | Architecture | Solution (Main) | Solution (Stable) | Installer (Main) | |--------------|-----------------|-------------------|------------------| | x64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main&jobName=Build%20x64%20Release) | [![Build Status for Stable](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=stable&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_x64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | | ARM64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main) | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_arm64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | ## About Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. For more info on [PowerToys overviews and how to use the utilities][usingPowerToys-docs-link], or any other tools and resources for [Windows development environments](https://learn.microsoft.com/windows/dev-environment/overview), head over to [learn.microsoft.com][usingPowerToys-docs-link]! | | Current utilities: | | |--------------|--------------------|--------------| | [Always on Top](https://aka.ms/PowerToysOverview_AoT) | [PowerToys Awake](https://aka.ms/PowerToysOverview_Awake) | [Color Picker](https://aka.ms/PowerToysOverview_ColorPicker) | | [Crop And Lock](https://aka.ms/PowerToysOverview_CropAndLock) | [FancyZones](https://aka.ms/PowerToysOverview_FancyZones) | [File Explorer Add-ons](https://aka.ms/PowerToysOverview_FileExplorerAddOns) | | [File Locksmith](https://aka.ms/PowerToysOverview_FileLocksmith) | [Hosts File Editor](https://aka.ms/PowerToysOverview_HostsFileEditor) | [Image Resizer](https://aka.ms/PowerToysOverview_ImageResizer) | | [Keyboard Manager](https://aka.ms/PowerToysOverview_KeyboardManager) | [Mouse utilities](https://aka.ms/PowerToysOverview_MouseUtilities) | [Mouse Without Borders](https://aka.ms/PowerToysOverview_MouseWithoutBorders) | | [Peek](https://aka.ms/PowerToysOverview_Peek) | [Paste as Plain Text](https://aka.ms/PowerToysOverview_PastePlain) | [PowerRename](https://aka.ms/PowerToysOverview_PowerRename) | | [PowerToys Run](https://aka.ms/PowerToysOverview_PowerToysRun) | [Quick Accent](https://aka.ms/PowerToysOverview_QuickAccent) | [Registry Preview](https://aka.ms/PowerToysOverview_RegistryPreview) | | [Screen Ruler](https://aka.ms/PowerToysOverview_ScreenRuler) | [Shortcut Guide](https://aka.ms/PowerToysOverview_ShortcutGuide) | [Text Extractor](https://aka.ms/PowerToysOverview_TextExtractor) | | [Video Conference Mute](https://aka.ms/PowerToysOverview_VideoConference) | ## Installing and running Microsoft PowerToys ### Requirements - Windows 11 or Windows 10 version 2004 (code name 20H1 / build number 19041) or newer. - Our installer will install the following items: - [Microsoft Edge WebView2 Runtime](https://go.microsoft.com/fwlink/p/?LinkId=2124703) bootstrapper. This will install the latest version. ### Via GitHub with EXE [Recommended] Go to the [Microsoft PowerToys GitHub releases page][github-release-link] and click on `Assets` at the bottom to show the files available in the release. Please use the appropriate PowerToys installer that matches your machine's architecture and install scope. For most, it is `x64` and per-user. <!-- items that need to be updated release to release --> [github-next-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F48 [github-current-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F47 [ptUserX64]: https://github.com/microsoft/PowerToys/releases/download/v0.74.0/PowerToysUserSetup-0.74.0-x64.exe [ptUserArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.74.0/PowerToysUserSetup-0.74.0-arm64.exe [ptMachineX64]: https://github.com/microsoft/PowerToys/releases/download/v0.74.0/PowerToysSetup-0.74.0-x64.exe [ptMachineArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.74.0/PowerToysSetup-0.74.0-arm64.exe | Description | Filename | sha256 hash | |----------------|----------|-------------| | Per user - x64 | [PowerToysUserSetup-0.74.0-x64.exe][ptUserX64] | 1C4ECE9F11488BAFFAE6B76D2B0504FA18BFFEA11EBC38BCC87F5D86AEA87C7C | | Per user - ARM64 | [PowerToysUserSetup-0.74.0-arm64.exe][ptUserArm64] | 4F3842FAB0839A361A15A06B7720BA8A0FE7F9AF98EA94245C08DEF37678CA4A | | Machine wide - x64 | [PowerToysSetup-0.74.0-x64.exe][ptMachineX64] | 648992E8CEA08F3C63C7CCBD554ADDF500ECBC4560187310BC12E6CB9C2F38E3 | | Machine wide - ARM64 | [PowerToysSetup-0.74.0-arm64.exe][ptMachineArm64] | 2B6D92F1A0EA688C7EE882050AC9B030C8B3A18765163FB6D67E5E694A4D4FE3 | This is our preferred method. ### Via Microsoft Store Install from the [Microsoft Store's PowerToys page][microsoft-store-link]. You must be using the [new Microsoft Store](https://blogs.windows.com/windowsExperience/2021/06/24/building-a-new-open-microsoft-store-on-windows-11/) which is available for both Windows 11 and Windows 10. ### Via WinGet Download PowerToys from [WinGet][winget-link]. Updating PowerToys via winget will respect current PowerToys installation scope. To install PowerToys, run the following command from the command line / PowerShell: #### User scope installer [default] ```powershell winget install Microsoft.PowerToys -s winget ``` #### Machine-wide scope installer ```powershell winget install --scope machine Microsoft.PowerToys -s winget ``` ### Other install methods There are [community driven install methods](./doc/unofficialInstallMethods.md) such as Chocolatey and Scoop. If these are your preferred install solutions, you can find the install instructions there. ## Third-Party Run Plugins There is a collection of [third-party plugins](./doc/thirdPartyRunPlugins.md) created by the community that aren't distributed with PowerToys. ## Contributing This project welcomes contributions of all types. Besides coding features / bug fixes, other ways to assist include spec writing, design, documentation, and finding bugs. We are excited to work with the power user community to build a set of tools for helping you get the most out of Windows. We ask that **before you start work on a feature that you would like to contribute**, please read our [Contributor's Guide](CONTRIBUTING.md). We would be happy to work with you to figure out the best approach, provide guidance and mentorship throughout feature development, and help avoid any wasted or duplicate effort. Most contributions require you to agree to a [Contributor License Agreement (CLA)][oss-CLA] declaring that you grant us the rights to use your contribution and that you have permission to do so. For guidance on developing for PowerToys, please read the [developer docs](/doc/devdocs) for a detailed breakdown. This includes how to setup your computer to compile. ## What's Happening ### PowerToys Roadmap Our [prioritized roadmap][roadmap] of features and utilities that the core team is focusing on. ### 0.74 - September 2023 Update In this release, we focused on stability and improvements. **Highlights** - Upgraded to Windows App SDK 1.4.1, increasing stability of WinUI3 utilities. Thanks [@dongle-the-gadget](https://github.com/dongle-the-gadget) for starting the upgrade! - Text Extractor was upgraded to its version 2.0, with a new overlay, table mode and more Quality of Life improvements. Thanks [@TheJoeFin](https://github.com/TheJoeFin)! - Improved FancyZones stability, fixing some layout resets and improving handling of newly created windows on Windows 11. - Fixed many silent crashes that were reported to Watson and the user's event viewer. ### General - Turning animations off in Windows Settings will now also turn them off in PowerToys. - Upgraded the Windows App SDK dependency to 1.4.1. Thanks [@dongle-the-gadget](https://github.com/dongle-the-gadget) for the original 1.4.0 upgrade! - Show in the thumbnail label and application titles when running as administrator. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Upgraded the Win UI Community Toolkit dependency to 8.0. Thanks [@niels9001](https://github.com/niels9001)! ### Awake - Added down-sampled variants to the application's icon. Thanks [@morriscurtis](https://github.com/morriscurtis)! ### Color Picker - After adding a new color in the editor, the history will scroll the new color into view. Thanks [@peerpalo](https://github.com/peerpalo)! ### Crop and Lock - Fixed a Crop and Lock crash that would occur when trying to reparent a window crashes the target application. An error message is shown instead. ### FancyZones - Set the process and main thread priority to normal. - Fixed handling newly created windows on Windows 11. - Fixed scenarios where opening the FancyZones Editor would reset the layouts. ### File Explorer add-ons - Optimized CPU usage for generating SVG thumbnails. - Improved handling of Gcode Thumbnails, including JPG and QOI formats. Thanks [@pedrolamas](https://github.com/pedrolamas)! - Better handled errors when sending telemetry, which were causing reported crashes. - Fixed some thumbnails not being shown centered like before the optimization. ### File Locksmith - Shows files opened by processes with PID greater than 65535. Thanks [@poke30744](https://github.com/poke30744)! - Fixed a GDI object leak in the context menu which would crash Explorer. ### Find My Mouse - Added new activation methods, including by hotkey. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Hosts File Editor - Ignore the default ACME sample entries in the hosts file. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Improved save error handling and added better error messages. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Corrected a check for an error when signaling the application to start as administrator. - Refactored the context menu. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Fixed dialogs overlapping the title bar after the upgrade to Windows App SDK 1.4. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Keyboard Manager - Distinguish between the regular minus key and the numpad minus key. ### Mouse Without Borders - Fixed a crash when trying to restart the application. ### Peek - Using Peek on HTML files will show a white background by default, similar to a browser's default behavior. - Fix a white flash on Dark theme when switching file and improved the development file preview detection and adjustments. ### PowerRename - Fixed a crash caused by big counter values on the new enumeration method. ### PowerToys Run - It's now possible to select which shell is used by the Shell plugin. - A combobox option type was added to the plugin options. - Fixed a bug in the Calculator plugin that was causing decimal numbers to be misinterpreted on locales where the dot (`.`) character isn't used as a decimal or digit separator. - Improved the Program plugin stability when it fails to load a program's thumbnail at startup. - The use of Pinyin for querying some plugins can now be turned on in Settings. Thanks [@ChaseKnowlden](https://github.com/ChaseKnowlden)! - Refactored option types for plugin and added number, string and composite types to be used in the future. Thanks [@htcfreek](https://github.com/htcfreek)! - Fixed the entry for searching for Windows updates in the Settings plugin. Thanks [@htcfreek](https://github.com/htcfreek)! ### Quick Accent - The "All languages" character set is now calculated by programmatically querying the characters for every available language. Thanks [@dannysummerlin](https://github.com/dannysummerlin)! - Added é to the Norwegian and Swedish languages. Thanks [@Aaron-Junker](https://github.com/Aaron-Junker)! - Added a runtime cache to the "All languages" character set, to only calculate accents once per key. ### Registry Preview - Fixed focusing issues at startup. - Improved the data visualization to show data in a similar way to the Windows Registry Editor. Thanks [@dillydylann](https://github.com/dillydylann)! ### Runner - Fixed hanging when a bug report was generated from the flyout. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Settings - Improved the way the OOBE window reacts to Windows theme change. - Fixed an issue that made it impossible to change the "Switch between windows in the current zone" "Next window" shortcut for FancyZones. - Fixed a crash when entering a duplicate name for a color in the Color Picker page and improved clean up when cancelling a color edit. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Text Extractor - Text Extractor 2.0, with a new overlay, table mode and more Quality of Life improvements. Thanks [@TheJoeFin](https://github.com/TheJoeFin)! ### Documentation - SECURITY.md was updated from 0.0.2 to 0.0.9. Thanks [@Aaron-Junker](https://github.com/Aaron-Junker)! - Improved the README and main development document for clarity and completeness. Thanks [@codeofdusk](https://github.com/codeofdusk) and [@aprilbbrockhoeft](https://github.com/aprilbbrockhoeft)! ### Development - Fixed PowerToys Run DateTime plugin tests that were failing depending on locale, so that they can be run correctly on all dev machines. - Fixed PowerToys Run System plugin tests that were failing for certain network interfaces, so that they can be run correctly on all dev machines. Thanks [@snickler](https://github.com/snickler)! - Fixed a markdown bug on the GitHub /helped command. - Switched build pipelines to a new agent pool. Thanks [@DHowett](https://github.com/DHowett)! - New .cs files created in Visual Studio get the header added automatically. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! #### What is being planned for version 0.75 For [v0.75][github-next-release-work], we'll work on the items below: - Language selection - .NET 8 upgrade - Policy support for managing PowerToys Run plugins. *Attention*: A breaking change is planned (for 0.75), in which each plugin has to declare its identifier programmatically so that it can be controlled through GPO. For third-party plugin developers, please check https://github.com/microsoft/PowerToys/pull/27468 for more details. - New utility: Environment Variables Editor. Here's a Work in Progress preview: ![Environment Variables Editor WIP](https://github.com/microsoft/PowerToys/assets/26118718/f99532a8-5aae-481b-a662-19a95f4aa03d) - New Settings homepage. Here's a Work in Progress preview: ![PowerToys Settings Dashboard WIP](https://github.com/microsoft/PowerToys/assets/26118718/938a5715-0a9b-4fe9-9e15-adfec92da694) - Modernize and refresh the UX of PowerToys based on WPF. Here's Work in Progress previews for the modules "PowerToys Run" and "Color Picker": ![PowerToys Run UI refresh WIP](https://github.com/microsoft/PowerToys/assets/9866362/16903bcb-c18e-49fb-93ca-738b81957055) ![ColorPicker UI refresh WIP](https://github.com/microsoft/PowerToys/assets/9866362/ceebe54b-de63-4ce7-afcb-2cd4280bf4d1) - Stability / bug fixes ## PowerToys Community The PowerToys team is extremely grateful to have the [support of an amazing active community][community-link]. The work you do is incredibly important. PowerToys wouldn’t be nearly what it is today without your help filing bugs, updating documentation, guiding the design, or writing features. We want to say thank you and take time to recognize your work. Month by month, you directly help make PowerToys a better piece of software. ## Code of Conduct This project has adopted the [Microsoft Open Source Code of Conduct][oss-conduct-code]. ## Privacy Statement The application logs basic telemetry. Our Telemetry Data page (Coming Soon) has the trends from the telemetry. Please read the [Microsoft privacy statement][privacy-link] for more information. [oss-CLA]: https://cla.opensource.microsoft.com [oss-conduct-code]: CODE_OF_CONDUCT.md [community-link]: COMMUNITY.md [github-release-link]: https://aka.ms/installPowerToys [microsoft-store-link]: https://aka.ms/getPowertoys [winget-link]: https://github.com/microsoft/winget-cli#installing-the-client [roadmap]: https://github.com/microsoft/PowerToys/wiki/Roadmap [privacy-link]: http://go.microsoft.com/fwlink/?LinkId=521839 [vidConfOverview]: https://aka.ms/PowerToysOverview_VideoConference [loc-bug]: https://github.com/microsoft/PowerToys/issues/new?assignees=&labels=&template=translation_issue.md&title= [usingPowerToys-docs-link]: https://aka.ms/powertoys-docs
jaimecbernardo
a1e0bd51617b2bea189cb16324eecd0e13fa7b86
77063e0767a0619abfc339db3a2a564d27310b6c
There happend a merge conflict.
htcfreek
433
microsoft/PowerToys
28,775
0.74 changelogs
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request Readme update for the 0.74 release. This will be copy / pasted for release notes.
null
2023-09-26 11:20:42+00:00
2023-09-26 21:36:51+00:00
README.md
# Microsoft PowerToys ![Hero image for Microsoft PowerToys](doc/images/overview/PT_hero_image.png) [How to use PowerToys][usingPowerToys-docs-link] | [Downloads & Release notes][github-release-link] | [Contributing to PowerToys](#contributing) | [What's Happening](#whats-happening) | [Roadmap](#powertoys-roadmap) ## Build status | Architecture | Solution (Main) | Solution (Stable) | Installer (Main) | |--------------|-----------------|-------------------|------------------| | x64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main&jobName=Build%20x64%20Release) | [![Build Status for Stable](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=stable&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_x64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | | ARM64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main) | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_arm64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | ## About Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. For more info on [PowerToys overviews and how to use the utilities][usingPowerToys-docs-link], or any other tools and resources for [Windows development environments](https://learn.microsoft.com/windows/dev-environment/overview), head over to [learn.microsoft.com][usingPowerToys-docs-link]! | | Current utilities: | | |--------------|--------------------|--------------| | [Always on Top](https://aka.ms/PowerToysOverview_AoT) | [PowerToys Awake](https://aka.ms/PowerToysOverview_Awake) | [Color Picker](https://aka.ms/PowerToysOverview_ColorPicker) | | [Crop And Lock](https://aka.ms/PowerToysOverview_CropAndLock) | [FancyZones](https://aka.ms/PowerToysOverview_FancyZones) | [File Explorer Add-ons](https://aka.ms/PowerToysOverview_FileExplorerAddOns) | | [File Locksmith](https://aka.ms/PowerToysOverview_FileLocksmith) | [Hosts File Editor](https://aka.ms/PowerToysOverview_HostsFileEditor) | [Image Resizer](https://aka.ms/PowerToysOverview_ImageResizer) | | [Keyboard Manager](https://aka.ms/PowerToysOverview_KeyboardManager) | [Mouse utilities](https://aka.ms/PowerToysOverview_MouseUtilities) | [Mouse Without Borders](https://aka.ms/PowerToysOverview_MouseWithoutBorders) | | [Peek](https://aka.ms/PowerToysOverview_Peek) | [Paste as Plain Text](https://aka.ms/PowerToysOverview_PastePlain) | [PowerRename](https://aka.ms/PowerToysOverview_PowerRename) | | [PowerToys Run](https://aka.ms/PowerToysOverview_PowerToysRun) | [Quick Accent](https://aka.ms/PowerToysOverview_QuickAccent) | [Registry Preview](https://aka.ms/PowerToysOverview_RegistryPreview) | | [Screen Ruler](https://aka.ms/PowerToysOverview_ScreenRuler) | [Shortcut Guide](https://aka.ms/PowerToysOverview_ShortcutGuide) | [Text Extractor](https://aka.ms/PowerToysOverview_TextExtractor) | | [Video Conference Mute](https://aka.ms/PowerToysOverview_VideoConference) | ## Installing and running Microsoft PowerToys ### Requirements - Windows 11 or Windows 10 version 2004 (code name 20H1 / build number 19041) or newer. - Our installer will install the following items: - [Microsoft Edge WebView2 Runtime](https://go.microsoft.com/fwlink/p/?LinkId=2124703) bootstrapper. This will install the latest version. ### Via GitHub with EXE [Recommended] Go to the [Microsoft PowerToys GitHub releases page][github-release-link] and click on `Assets` at the bottom to show the files available in the release. Please use the appropriate PowerToys installer that matches your machine's architecture and install scope. For most, it is `x64` and per-user. <!-- items that need to be updated release to release --> [github-next-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F47 [github-current-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F46 [ptUserX64]: https://github.com/microsoft/PowerToys/releases/download/v0.73.0/PowerToysUserSetup-0.73.0-x64.exe [ptUserArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.73.0/PowerToysUserSetup-0.73.0-arm64.exe [ptMachineX64]: https://github.com/microsoft/PowerToys/releases/download/v0.73.0/PowerToysSetup-0.73.0-x64.exe [ptMachineArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.73.0/PowerToysSetup-0.73.0-arm64.exe | Description | Filename | sha256 hash | |----------------|----------|-------------| | Per user - x64 | [PowerToysUserSetup-0.73.0-x64.exe][ptUserX64] | BA55D245BDD734FD6F19803DD706A3AB8E0ABC491591195534997CF2122D3B7E | | Per user - ARM64 | [PowerToysUserSetup-0.73.0-arm64.exe][ptUserArm64] | FBFA40EA5FFA05236A7CCDD05E5142EE0C93D7485B965784196ED9B086BFEBF4 | | Machine wide - x64 | [PowerToysSetup-0.73.0-x64.exe][ptMachineX64] | 7FDA06292C7C2E6DA5AEF88D8E9D3DE89D331E9E356A232289F9B37CE4503894 | | Machine wide - ARM64 | [PowerToysSetup-0.73.0-arm64.exe][ptMachineArm64] | 4260AA30A1F52F194EE07E9E7ECD9E9F4CF35289267F213BC933F7A5191AC17C | This is our preferred method. ### Via Microsoft Store Install from the [Microsoft Store's PowerToys page][microsoft-store-link]. You must be using the [new Microsoft Store](https://blogs.windows.com/windowsExperience/2021/06/24/building-a-new-open-microsoft-store-on-windows-11/) which is available for both Windows 11 and Windows 10. ### Via WinGet Download PowerToys from [WinGet][winget-link]. Updating PowerToys via winget will respect current PowerToys installation scope. To install PowerToys, run the following command from the command line / PowerShell: #### User scope installer [default] ```powershell winget install Microsoft.PowerToys -s winget ``` #### Machine-wide scope installer ```powershell winget install --scope machine Microsoft.PowerToys -s winget ``` ### Other install methods There are [community driven install methods](./doc/unofficialInstallMethods.md) such as Chocolatey and Scoop. If these are your preferred install solutions, you can find the install instructions there. ## Third-Party Run Plugins There is a collection of [third-party plugins](./doc/thirdPartyRunPlugins.md) created by the community that aren't distributed with PowerToys. ## Contributing This project welcomes contributions of all types. Besides coding features / bug fixes, other ways to assist include spec writing, design, documentation, and finding bugs. We are excited to work with the power user community to build a set of tools for helping you get the most out of Windows. We ask that **before you start work on a feature that you would like to contribute**, please read our [Contributor's Guide](CONTRIBUTING.md). We would be happy to work with you to figure out the best approach, provide guidance and mentorship throughout feature development, and help avoid any wasted or duplicate effort. Most contributions require you to agree to a [Contributor License Agreement (CLA)][oss-CLA] declaring that you grant us the rights to use your contribution and that you have permission to do so. For guidance on developing for PowerToys, please read the [developer docs](/doc/devdocs) for a detailed breakdown. This includes how to setup your computer to compile. ## What's Happening ### PowerToys Roadmap Our [prioritized roadmap][roadmap] of features and utilities that the core team is focusing on. ### 0.73 - August 2023 Update In this release, we focused on releasing new features, stability and improvements. **Highlights** - Keyboard manager now allows Numpad keys to be bound separately from the main keyboard. If using a previous configuration, only the main keyboard (not numpad) keys will be mapped. To restore the previous behavior, manually add separate bindings for numpad keys. - New utility: Crop And Lock allows you to crop a current application into a smaller window or just create a thumbnail. Focus the target window and press the shortcut to start cropping. - FancyZones code improvements and refactor. - Modernized ImageResizer UX. - PowerRename advanced counter functionality. ### General - Added missing CoUninitialize call in elevation logic. Thanks [@sredna](https://github.com/sredna)! - New utility: Crop And Lock. Thanks [@robmikh](https://github.com/robmikh)! and [@kevinguo305](https://github.com/kevinguo305)! - Added new /helped fabric bot command to GitHub repo. Thanks [@Aaron-Junker](https://github.com/Aaron-Junker)! - Fixed crashes caused by invalid settings. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Always On Top - Added border transparency. ### FancyZones - Fixed issue causing canvas zones being drawn only when dragging in the zone area. - Fixed user-defined default layout highlighting issue. - Refactored and improved code quality. - Fixed issue causing the wrong layout to be applied when duplicating a non-selected layout. ### File Locksmith - Icon update. Thanks [@jmaraujouy](https://github.com/jmaraujouy)! ### File Explorer add-ons - Fixed issue causing thumbnail previewers to lock files. - Open URIs from developer files in default browser. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Installer - Fixed PowerToys autorun after installing as SYSTEM user. - Removed CreateScheduledTask custom action to handle task creation only from runner code. ### Image Resizer - Moved from ModernWPF to WpfUI to refresh and modernize UI/UX. Thanks [@niels9001](https://github.com/niels9001)! ### Keyboard Manager - Rephrased labels to enhance clarity. Thanks [@Jay-o-Way](https://github.com/Jay-o-Way)! - Keyboard manager now allows Numpad keys to be bound separately from the main keyboard. If using a previous configuration, only the main keyboard (not numpad) keys will be mapped. To restore the previous behavior, manually add separate bindings for numpad keys. ### Mouse Highlighter - The highlighter is now visible in "Always on Top" windows. - Added settings for automatic activation on startup. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Mouse Pointer Crosshairs - Added settings for automatic activation on startup. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Peek - Show correct file type for shortcuts. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Fixed issue causing the wrong file size to be displayed. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Show 1 byte instead of 1 bytes file size. Thanks [@Deepak-Sangle](https://github.com/Deepak-Sangle)! - Open URIs from developer files in the default browser. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Show a thumbnail and fallback to an icon for unsupported files. Thanks [@pedrolamas](https://github.com/pedrolamas)! ### PowerRename - Updated the OOBE gif. Thanks [@ChaseKnowlden](https://github.com/ChaseKnowlden)! - Localized the renamed parts combo box. - Introduced advanced counter functionality. - Added remember last window size logic and optimized sorting of items. - Enable "Enumerate items" option by default. ### PowerToys Run - Fixed an issue causing original search to be abandoned when cycling through results. - Updated device and bluetooth results for Settings plugin. Thanks [@htcfreek](https://github.com/htcfreek)! - Fixed InvalidOperationException exception thrown. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Add Base64 Decoding function to the Value Generator plugin. Thanks [@LeagueOfPoro](https://github.com/LeagueOfPoro)! - Added a Keep shell open option for Shell plugin. - Added Crop And Lock to PowerToys plugin. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Registry Preview - Updated AppBarButtons to use an explicit AppBarButton.Icon. Thanks [@randyrants](https://github.com/randyrants)! - Fixed crash on clicking Save As button. ### Runner - Removed unneeded RegisterWindowMessage from tray icon logic. Thanks [@sredna](https://github.com/sredna)! - Fixed startup looping issue. - Improved old logs and installers cleanup logic. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Screen Ruler - Use proper resources file. ### Settings - Fixed issue causing problems with modifier keys and ShortcutControl. Thanks [@sh0ckj0ckey](https://github.com/sh0ckj0ckey)! - Fixed crash when clicking "Windows color settings" link. - Added support for launching Settings app directly. - Fixed issue causing DisplayDescription not showing for PowerToys Run PluginAdditionalOption. - Fixed issue causing FileLocksmith 'Show File Locksmith in' setting not showing correct value. - Fixed issue causing Awake on/off toggle in Settings flyout not to work when Settings Awake page is opened. ### Documentation - Added documentation for PowerToys Run third-party plugins. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Fixed broken links in keyboardmanagerui.md. Thanks [@shubhsardana29](https://github.com/shubhsardana29)! - Updated core team in COMMUNITY.md. - Fixed broken links in ui-architecture.md. Thanks [@SamB](https://github.com/SamB)! - Updated community.valuegenerator.md with Base64DecodeRequest description. ### Development - Updated test packages and StyleCop. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Condense NuGet Restore into MSBuild Tasks. Thanks [@snickler](https://github.com/snickler)! #### What is being planned for version 0.74 For [v0.74][github-next-release-work], we'll work on the items below: - Language selection - Modernize and refresh the UX of PowerToys based on WPF - Stability / bug fixes - Peek: UI improvements ## PowerToys Community The PowerToys team is extremely grateful to have the [support of an amazing active community][community-link]. The work you do is incredibly important. PowerToys wouldn’t be nearly what it is today without your help filing bugs, updating documentation, guiding the design, or writing features. We want to say thank you and take time to recognize your work. Month by month, you directly help make PowerToys a better piece of software. ## Code of Conduct This project has adopted the [Microsoft Open Source Code of Conduct][oss-conduct-code]. ## Privacy Statement The application logs basic telemetry. Our Telemetry Data page (Coming Soon) has the trends from the telemetry. Please read the [Microsoft privacy statement][privacy-link] for more information. [oss-CLA]: https://cla.opensource.microsoft.com [oss-conduct-code]: CODE_OF_CONDUCT.md [community-link]: COMMUNITY.md [github-release-link]: https://aka.ms/installPowerToys [microsoft-store-link]: https://aka.ms/getPowertoys [winget-link]: https://github.com/microsoft/winget-cli#installing-the-client [roadmap]: https://github.com/microsoft/PowerToys/wiki/Roadmap [privacy-link]: http://go.microsoft.com/fwlink/?LinkId=521839 [vidConfOverview]: https://aka.ms/PowerToysOverview_VideoConference [loc-bug]: https://github.com/microsoft/PowerToys/issues/new?assignees=&labels=&template=translation_issue.md&title= [usingPowerToys-docs-link]: https://aka.ms/powertoys-docs
# Microsoft PowerToys ![Hero image for Microsoft PowerToys](doc/images/overview/PT_hero_image.png) [How to use PowerToys][usingPowerToys-docs-link] | [Downloads & Release notes][github-release-link] | [Contributing to PowerToys](#contributing) | [What's Happening](#whats-happening) | [Roadmap](#powertoys-roadmap) ## Build status | Architecture | Solution (Main) | Solution (Stable) | Installer (Main) | |--------------|-----------------|-------------------|------------------| | x64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main&jobName=Build%20x64%20Release) | [![Build Status for Stable](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=stable&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_x64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | | ARM64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main) | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_arm64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | ## About Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. For more info on [PowerToys overviews and how to use the utilities][usingPowerToys-docs-link], or any other tools and resources for [Windows development environments](https://learn.microsoft.com/windows/dev-environment/overview), head over to [learn.microsoft.com][usingPowerToys-docs-link]! | | Current utilities: | | |--------------|--------------------|--------------| | [Always on Top](https://aka.ms/PowerToysOverview_AoT) | [PowerToys Awake](https://aka.ms/PowerToysOverview_Awake) | [Color Picker](https://aka.ms/PowerToysOverview_ColorPicker) | | [Crop And Lock](https://aka.ms/PowerToysOverview_CropAndLock) | [FancyZones](https://aka.ms/PowerToysOverview_FancyZones) | [File Explorer Add-ons](https://aka.ms/PowerToysOverview_FileExplorerAddOns) | | [File Locksmith](https://aka.ms/PowerToysOverview_FileLocksmith) | [Hosts File Editor](https://aka.ms/PowerToysOverview_HostsFileEditor) | [Image Resizer](https://aka.ms/PowerToysOverview_ImageResizer) | | [Keyboard Manager](https://aka.ms/PowerToysOverview_KeyboardManager) | [Mouse utilities](https://aka.ms/PowerToysOverview_MouseUtilities) | [Mouse Without Borders](https://aka.ms/PowerToysOverview_MouseWithoutBorders) | | [Peek](https://aka.ms/PowerToysOverview_Peek) | [Paste as Plain Text](https://aka.ms/PowerToysOverview_PastePlain) | [PowerRename](https://aka.ms/PowerToysOverview_PowerRename) | | [PowerToys Run](https://aka.ms/PowerToysOverview_PowerToysRun) | [Quick Accent](https://aka.ms/PowerToysOverview_QuickAccent) | [Registry Preview](https://aka.ms/PowerToysOverview_RegistryPreview) | | [Screen Ruler](https://aka.ms/PowerToysOverview_ScreenRuler) | [Shortcut Guide](https://aka.ms/PowerToysOverview_ShortcutGuide) | [Text Extractor](https://aka.ms/PowerToysOverview_TextExtractor) | | [Video Conference Mute](https://aka.ms/PowerToysOverview_VideoConference) | ## Installing and running Microsoft PowerToys ### Requirements - Windows 11 or Windows 10 version 2004 (code name 20H1 / build number 19041) or newer. - Our installer will install the following items: - [Microsoft Edge WebView2 Runtime](https://go.microsoft.com/fwlink/p/?LinkId=2124703) bootstrapper. This will install the latest version. ### Via GitHub with EXE [Recommended] Go to the [Microsoft PowerToys GitHub releases page][github-release-link] and click on `Assets` at the bottom to show the files available in the release. Please use the appropriate PowerToys installer that matches your machine's architecture and install scope. For most, it is `x64` and per-user. <!-- items that need to be updated release to release --> [github-next-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F48 [github-current-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F47 [ptUserX64]: https://github.com/microsoft/PowerToys/releases/download/v0.74.0/PowerToysUserSetup-0.74.0-x64.exe [ptUserArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.74.0/PowerToysUserSetup-0.74.0-arm64.exe [ptMachineX64]: https://github.com/microsoft/PowerToys/releases/download/v0.74.0/PowerToysSetup-0.74.0-x64.exe [ptMachineArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.74.0/PowerToysSetup-0.74.0-arm64.exe | Description | Filename | sha256 hash | |----------------|----------|-------------| | Per user - x64 | [PowerToysUserSetup-0.74.0-x64.exe][ptUserX64] | 1C4ECE9F11488BAFFAE6B76D2B0504FA18BFFEA11EBC38BCC87F5D86AEA87C7C | | Per user - ARM64 | [PowerToysUserSetup-0.74.0-arm64.exe][ptUserArm64] | 4F3842FAB0839A361A15A06B7720BA8A0FE7F9AF98EA94245C08DEF37678CA4A | | Machine wide - x64 | [PowerToysSetup-0.74.0-x64.exe][ptMachineX64] | 648992E8CEA08F3C63C7CCBD554ADDF500ECBC4560187310BC12E6CB9C2F38E3 | | Machine wide - ARM64 | [PowerToysSetup-0.74.0-arm64.exe][ptMachineArm64] | 2B6D92F1A0EA688C7EE882050AC9B030C8B3A18765163FB6D67E5E694A4D4FE3 | This is our preferred method. ### Via Microsoft Store Install from the [Microsoft Store's PowerToys page][microsoft-store-link]. You must be using the [new Microsoft Store](https://blogs.windows.com/windowsExperience/2021/06/24/building-a-new-open-microsoft-store-on-windows-11/) which is available for both Windows 11 and Windows 10. ### Via WinGet Download PowerToys from [WinGet][winget-link]. Updating PowerToys via winget will respect current PowerToys installation scope. To install PowerToys, run the following command from the command line / PowerShell: #### User scope installer [default] ```powershell winget install Microsoft.PowerToys -s winget ``` #### Machine-wide scope installer ```powershell winget install --scope machine Microsoft.PowerToys -s winget ``` ### Other install methods There are [community driven install methods](./doc/unofficialInstallMethods.md) such as Chocolatey and Scoop. If these are your preferred install solutions, you can find the install instructions there. ## Third-Party Run Plugins There is a collection of [third-party plugins](./doc/thirdPartyRunPlugins.md) created by the community that aren't distributed with PowerToys. ## Contributing This project welcomes contributions of all types. Besides coding features / bug fixes, other ways to assist include spec writing, design, documentation, and finding bugs. We are excited to work with the power user community to build a set of tools for helping you get the most out of Windows. We ask that **before you start work on a feature that you would like to contribute**, please read our [Contributor's Guide](CONTRIBUTING.md). We would be happy to work with you to figure out the best approach, provide guidance and mentorship throughout feature development, and help avoid any wasted or duplicate effort. Most contributions require you to agree to a [Contributor License Agreement (CLA)][oss-CLA] declaring that you grant us the rights to use your contribution and that you have permission to do so. For guidance on developing for PowerToys, please read the [developer docs](/doc/devdocs) for a detailed breakdown. This includes how to setup your computer to compile. ## What's Happening ### PowerToys Roadmap Our [prioritized roadmap][roadmap] of features and utilities that the core team is focusing on. ### 0.74 - September 2023 Update In this release, we focused on stability and improvements. **Highlights** - Upgraded to Windows App SDK 1.4.1, increasing stability of WinUI3 utilities. Thanks [@dongle-the-gadget](https://github.com/dongle-the-gadget) for starting the upgrade! - Text Extractor was upgraded to its version 2.0, with a new overlay, table mode and more Quality of Life improvements. Thanks [@TheJoeFin](https://github.com/TheJoeFin)! - Improved FancyZones stability, fixing some layout resets and improving handling of newly created windows on Windows 11. - Fixed many silent crashes that were reported to Watson and the user's event viewer. ### General - Turning animations off in Windows Settings will now also turn them off in PowerToys. - Upgraded the Windows App SDK dependency to 1.4.1. Thanks [@dongle-the-gadget](https://github.com/dongle-the-gadget) for the original 1.4.0 upgrade! - Show in the thumbnail label and application titles when running as administrator. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Upgraded the Win UI Community Toolkit dependency to 8.0. Thanks [@niels9001](https://github.com/niels9001)! ### Awake - Added down-sampled variants to the application's icon. Thanks [@morriscurtis](https://github.com/morriscurtis)! ### Color Picker - After adding a new color in the editor, the history will scroll the new color into view. Thanks [@peerpalo](https://github.com/peerpalo)! ### Crop and Lock - Fixed a Crop and Lock crash that would occur when trying to reparent a window crashes the target application. An error message is shown instead. ### FancyZones - Set the process and main thread priority to normal. - Fixed handling newly created windows on Windows 11. - Fixed scenarios where opening the FancyZones Editor would reset the layouts. ### File Explorer add-ons - Optimized CPU usage for generating SVG thumbnails. - Improved handling of Gcode Thumbnails, including JPG and QOI formats. Thanks [@pedrolamas](https://github.com/pedrolamas)! - Better handled errors when sending telemetry, which were causing reported crashes. - Fixed some thumbnails not being shown centered like before the optimization. ### File Locksmith - Shows files opened by processes with PID greater than 65535. Thanks [@poke30744](https://github.com/poke30744)! - Fixed a GDI object leak in the context menu which would crash Explorer. ### Find My Mouse - Added new activation methods, including by hotkey. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Hosts File Editor - Ignore the default ACME sample entries in the hosts file. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Improved save error handling and added better error messages. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Corrected a check for an error when signaling the application to start as administrator. - Refactored the context menu. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Fixed dialogs overlapping the title bar after the upgrade to Windows App SDK 1.4. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Keyboard Manager - Distinguish between the regular minus key and the numpad minus key. ### Mouse Without Borders - Fixed a crash when trying to restart the application. ### Peek - Using Peek on HTML files will show a white background by default, similar to a browser's default behavior. - Fix a white flash on Dark theme when switching file and improved the development file preview detection and adjustments. ### PowerRename - Fixed a crash caused by big counter values on the new enumeration method. ### PowerToys Run - It's now possible to select which shell is used by the Shell plugin. - A combobox option type was added to the plugin options. - Fixed a bug in the Calculator plugin that was causing decimal numbers to be misinterpreted on locales where the dot (`.`) character isn't used as a decimal or digit separator. - Improved the Program plugin stability when it fails to load a program's thumbnail at startup. - The use of Pinyin for querying some plugins can now be turned on in Settings. Thanks [@ChaseKnowlden](https://github.com/ChaseKnowlden)! - Refactored option types for plugin and added number, string and composite types to be used in the future. Thanks [@htcfreek](https://github.com/htcfreek)! - Fixed the entry for searching for Windows updates in the Settings plugin. Thanks [@htcfreek](https://github.com/htcfreek)! ### Quick Accent - The "All languages" character set is now calculated by programmatically querying the characters for every available language. Thanks [@dannysummerlin](https://github.com/dannysummerlin)! - Added é to the Norwegian and Swedish languages. Thanks [@Aaron-Junker](https://github.com/Aaron-Junker)! - Added a runtime cache to the "All languages" character set, to only calculate accents once per key. ### Registry Preview - Fixed focusing issues at startup. - Improved the data visualization to show data in a similar way to the Windows Registry Editor. Thanks [@dillydylann](https://github.com/dillydylann)! ### Runner - Fixed hanging when a bug report was generated from the flyout. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Settings - Improved the way the OOBE window reacts to Windows theme change. - Fixed an issue that made it impossible to change the "Switch between windows in the current zone" "Next window" shortcut for FancyZones. - Fixed a crash when entering a duplicate name for a color in the Color Picker page and improved clean up when cancelling a color edit. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Text Extractor - Text Extractor 2.0, with a new overlay, table mode and more Quality of Life improvements. Thanks [@TheJoeFin](https://github.com/TheJoeFin)! ### Documentation - SECURITY.md was updated from 0.0.2 to 0.0.9. Thanks [@Aaron-Junker](https://github.com/Aaron-Junker)! - Improved the README and main development document for clarity and completeness. Thanks [@codeofdusk](https://github.com/codeofdusk) and [@aprilbbrockhoeft](https://github.com/aprilbbrockhoeft)! ### Development - Fixed PowerToys Run DateTime plugin tests that were failing depending on locale, so that they can be run correctly on all dev machines. - Fixed PowerToys Run System plugin tests that were failing for certain network interfaces, so that they can be run correctly on all dev machines. Thanks [@snickler](https://github.com/snickler)! - Fixed a markdown bug on the GitHub /helped command. - Switched build pipelines to a new agent pool. Thanks [@DHowett](https://github.com/DHowett)! - New .cs files created in Visual Studio get the header added automatically. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! #### What is being planned for version 0.75 For [v0.75][github-next-release-work], we'll work on the items below: - Language selection - .NET 8 upgrade - Policy support for managing PowerToys Run plugins. *Attention*: A breaking change is planned (for 0.75), in which each plugin has to declare its identifier programmatically so that it can be controlled through GPO. For third-party plugin developers, please check https://github.com/microsoft/PowerToys/pull/27468 for more details. - New utility: Environment Variables Editor. Here's a Work in Progress preview: ![Environment Variables Editor WIP](https://github.com/microsoft/PowerToys/assets/26118718/f99532a8-5aae-481b-a662-19a95f4aa03d) - New Settings homepage. Here's a Work in Progress preview: ![PowerToys Settings Dashboard WIP](https://github.com/microsoft/PowerToys/assets/26118718/938a5715-0a9b-4fe9-9e15-adfec92da694) - Modernize and refresh the UX of PowerToys based on WPF. Here's Work in Progress previews for the modules "PowerToys Run" and "Color Picker": ![PowerToys Run UI refresh WIP](https://github.com/microsoft/PowerToys/assets/9866362/16903bcb-c18e-49fb-93ca-738b81957055) ![ColorPicker UI refresh WIP](https://github.com/microsoft/PowerToys/assets/9866362/ceebe54b-de63-4ce7-afcb-2cd4280bf4d1) - Stability / bug fixes ## PowerToys Community The PowerToys team is extremely grateful to have the [support of an amazing active community][community-link]. The work you do is incredibly important. PowerToys wouldn’t be nearly what it is today without your help filing bugs, updating documentation, guiding the design, or writing features. We want to say thank you and take time to recognize your work. Month by month, you directly help make PowerToys a better piece of software. ## Code of Conduct This project has adopted the [Microsoft Open Source Code of Conduct][oss-conduct-code]. ## Privacy Statement The application logs basic telemetry. Our Telemetry Data page (Coming Soon) has the trends from the telemetry. Please read the [Microsoft privacy statement][privacy-link] for more information. [oss-CLA]: https://cla.opensource.microsoft.com [oss-conduct-code]: CODE_OF_CONDUCT.md [community-link]: COMMUNITY.md [github-release-link]: https://aka.ms/installPowerToys [microsoft-store-link]: https://aka.ms/getPowertoys [winget-link]: https://github.com/microsoft/winget-cli#installing-the-client [roadmap]: https://github.com/microsoft/PowerToys/wiki/Roadmap [privacy-link]: http://go.microsoft.com/fwlink/?LinkId=521839 [vidConfOverview]: https://aka.ms/PowerToysOverview_VideoConference [loc-bug]: https://github.com/microsoft/PowerToys/issues/new?assignees=&labels=&template=translation_issue.md&title= [usingPowerToys-docs-link]: https://aka.ms/powertoys-docs
jaimecbernardo
a1e0bd51617b2bea189cb16324eecd0e13fa7b86
77063e0767a0619abfc339db3a2a564d27310b6c
You're right, we do 😄
jaimecbernardo
434
microsoft/PowerToys
28,775
0.74 changelogs
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request Readme update for the 0.74 release. This will be copy / pasted for release notes.
null
2023-09-26 11:20:42+00:00
2023-09-26 21:36:51+00:00
README.md
# Microsoft PowerToys ![Hero image for Microsoft PowerToys](doc/images/overview/PT_hero_image.png) [How to use PowerToys][usingPowerToys-docs-link] | [Downloads & Release notes][github-release-link] | [Contributing to PowerToys](#contributing) | [What's Happening](#whats-happening) | [Roadmap](#powertoys-roadmap) ## Build status | Architecture | Solution (Main) | Solution (Stable) | Installer (Main) | |--------------|-----------------|-------------------|------------------| | x64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main&jobName=Build%20x64%20Release) | [![Build Status for Stable](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=stable&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_x64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | | ARM64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main) | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_arm64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | ## About Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. For more info on [PowerToys overviews and how to use the utilities][usingPowerToys-docs-link], or any other tools and resources for [Windows development environments](https://learn.microsoft.com/windows/dev-environment/overview), head over to [learn.microsoft.com][usingPowerToys-docs-link]! | | Current utilities: | | |--------------|--------------------|--------------| | [Always on Top](https://aka.ms/PowerToysOverview_AoT) | [PowerToys Awake](https://aka.ms/PowerToysOverview_Awake) | [Color Picker](https://aka.ms/PowerToysOverview_ColorPicker) | | [Crop And Lock](https://aka.ms/PowerToysOverview_CropAndLock) | [FancyZones](https://aka.ms/PowerToysOverview_FancyZones) | [File Explorer Add-ons](https://aka.ms/PowerToysOverview_FileExplorerAddOns) | | [File Locksmith](https://aka.ms/PowerToysOverview_FileLocksmith) | [Hosts File Editor](https://aka.ms/PowerToysOverview_HostsFileEditor) | [Image Resizer](https://aka.ms/PowerToysOverview_ImageResizer) | | [Keyboard Manager](https://aka.ms/PowerToysOverview_KeyboardManager) | [Mouse utilities](https://aka.ms/PowerToysOverview_MouseUtilities) | [Mouse Without Borders](https://aka.ms/PowerToysOverview_MouseWithoutBorders) | | [Peek](https://aka.ms/PowerToysOverview_Peek) | [Paste as Plain Text](https://aka.ms/PowerToysOverview_PastePlain) | [PowerRename](https://aka.ms/PowerToysOverview_PowerRename) | | [PowerToys Run](https://aka.ms/PowerToysOverview_PowerToysRun) | [Quick Accent](https://aka.ms/PowerToysOverview_QuickAccent) | [Registry Preview](https://aka.ms/PowerToysOverview_RegistryPreview) | | [Screen Ruler](https://aka.ms/PowerToysOverview_ScreenRuler) | [Shortcut Guide](https://aka.ms/PowerToysOverview_ShortcutGuide) | [Text Extractor](https://aka.ms/PowerToysOverview_TextExtractor) | | [Video Conference Mute](https://aka.ms/PowerToysOverview_VideoConference) | ## Installing and running Microsoft PowerToys ### Requirements - Windows 11 or Windows 10 version 2004 (code name 20H1 / build number 19041) or newer. - Our installer will install the following items: - [Microsoft Edge WebView2 Runtime](https://go.microsoft.com/fwlink/p/?LinkId=2124703) bootstrapper. This will install the latest version. ### Via GitHub with EXE [Recommended] Go to the [Microsoft PowerToys GitHub releases page][github-release-link] and click on `Assets` at the bottom to show the files available in the release. Please use the appropriate PowerToys installer that matches your machine's architecture and install scope. For most, it is `x64` and per-user. <!-- items that need to be updated release to release --> [github-next-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F47 [github-current-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F46 [ptUserX64]: https://github.com/microsoft/PowerToys/releases/download/v0.73.0/PowerToysUserSetup-0.73.0-x64.exe [ptUserArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.73.0/PowerToysUserSetup-0.73.0-arm64.exe [ptMachineX64]: https://github.com/microsoft/PowerToys/releases/download/v0.73.0/PowerToysSetup-0.73.0-x64.exe [ptMachineArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.73.0/PowerToysSetup-0.73.0-arm64.exe | Description | Filename | sha256 hash | |----------------|----------|-------------| | Per user - x64 | [PowerToysUserSetup-0.73.0-x64.exe][ptUserX64] | BA55D245BDD734FD6F19803DD706A3AB8E0ABC491591195534997CF2122D3B7E | | Per user - ARM64 | [PowerToysUserSetup-0.73.0-arm64.exe][ptUserArm64] | FBFA40EA5FFA05236A7CCDD05E5142EE0C93D7485B965784196ED9B086BFEBF4 | | Machine wide - x64 | [PowerToysSetup-0.73.0-x64.exe][ptMachineX64] | 7FDA06292C7C2E6DA5AEF88D8E9D3DE89D331E9E356A232289F9B37CE4503894 | | Machine wide - ARM64 | [PowerToysSetup-0.73.0-arm64.exe][ptMachineArm64] | 4260AA30A1F52F194EE07E9E7ECD9E9F4CF35289267F213BC933F7A5191AC17C | This is our preferred method. ### Via Microsoft Store Install from the [Microsoft Store's PowerToys page][microsoft-store-link]. You must be using the [new Microsoft Store](https://blogs.windows.com/windowsExperience/2021/06/24/building-a-new-open-microsoft-store-on-windows-11/) which is available for both Windows 11 and Windows 10. ### Via WinGet Download PowerToys from [WinGet][winget-link]. Updating PowerToys via winget will respect current PowerToys installation scope. To install PowerToys, run the following command from the command line / PowerShell: #### User scope installer [default] ```powershell winget install Microsoft.PowerToys -s winget ``` #### Machine-wide scope installer ```powershell winget install --scope machine Microsoft.PowerToys -s winget ``` ### Other install methods There are [community driven install methods](./doc/unofficialInstallMethods.md) such as Chocolatey and Scoop. If these are your preferred install solutions, you can find the install instructions there. ## Third-Party Run Plugins There is a collection of [third-party plugins](./doc/thirdPartyRunPlugins.md) created by the community that aren't distributed with PowerToys. ## Contributing This project welcomes contributions of all types. Besides coding features / bug fixes, other ways to assist include spec writing, design, documentation, and finding bugs. We are excited to work with the power user community to build a set of tools for helping you get the most out of Windows. We ask that **before you start work on a feature that you would like to contribute**, please read our [Contributor's Guide](CONTRIBUTING.md). We would be happy to work with you to figure out the best approach, provide guidance and mentorship throughout feature development, and help avoid any wasted or duplicate effort. Most contributions require you to agree to a [Contributor License Agreement (CLA)][oss-CLA] declaring that you grant us the rights to use your contribution and that you have permission to do so. For guidance on developing for PowerToys, please read the [developer docs](/doc/devdocs) for a detailed breakdown. This includes how to setup your computer to compile. ## What's Happening ### PowerToys Roadmap Our [prioritized roadmap][roadmap] of features and utilities that the core team is focusing on. ### 0.73 - August 2023 Update In this release, we focused on releasing new features, stability and improvements. **Highlights** - Keyboard manager now allows Numpad keys to be bound separately from the main keyboard. If using a previous configuration, only the main keyboard (not numpad) keys will be mapped. To restore the previous behavior, manually add separate bindings for numpad keys. - New utility: Crop And Lock allows you to crop a current application into a smaller window or just create a thumbnail. Focus the target window and press the shortcut to start cropping. - FancyZones code improvements and refactor. - Modernized ImageResizer UX. - PowerRename advanced counter functionality. ### General - Added missing CoUninitialize call in elevation logic. Thanks [@sredna](https://github.com/sredna)! - New utility: Crop And Lock. Thanks [@robmikh](https://github.com/robmikh)! and [@kevinguo305](https://github.com/kevinguo305)! - Added new /helped fabric bot command to GitHub repo. Thanks [@Aaron-Junker](https://github.com/Aaron-Junker)! - Fixed crashes caused by invalid settings. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Always On Top - Added border transparency. ### FancyZones - Fixed issue causing canvas zones being drawn only when dragging in the zone area. - Fixed user-defined default layout highlighting issue. - Refactored and improved code quality. - Fixed issue causing the wrong layout to be applied when duplicating a non-selected layout. ### File Locksmith - Icon update. Thanks [@jmaraujouy](https://github.com/jmaraujouy)! ### File Explorer add-ons - Fixed issue causing thumbnail previewers to lock files. - Open URIs from developer files in default browser. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Installer - Fixed PowerToys autorun after installing as SYSTEM user. - Removed CreateScheduledTask custom action to handle task creation only from runner code. ### Image Resizer - Moved from ModernWPF to WpfUI to refresh and modernize UI/UX. Thanks [@niels9001](https://github.com/niels9001)! ### Keyboard Manager - Rephrased labels to enhance clarity. Thanks [@Jay-o-Way](https://github.com/Jay-o-Way)! - Keyboard manager now allows Numpad keys to be bound separately from the main keyboard. If using a previous configuration, only the main keyboard (not numpad) keys will be mapped. To restore the previous behavior, manually add separate bindings for numpad keys. ### Mouse Highlighter - The highlighter is now visible in "Always on Top" windows. - Added settings for automatic activation on startup. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Mouse Pointer Crosshairs - Added settings for automatic activation on startup. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Peek - Show correct file type for shortcuts. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Fixed issue causing the wrong file size to be displayed. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Show 1 byte instead of 1 bytes file size. Thanks [@Deepak-Sangle](https://github.com/Deepak-Sangle)! - Open URIs from developer files in the default browser. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Show a thumbnail and fallback to an icon for unsupported files. Thanks [@pedrolamas](https://github.com/pedrolamas)! ### PowerRename - Updated the OOBE gif. Thanks [@ChaseKnowlden](https://github.com/ChaseKnowlden)! - Localized the renamed parts combo box. - Introduced advanced counter functionality. - Added remember last window size logic and optimized sorting of items. - Enable "Enumerate items" option by default. ### PowerToys Run - Fixed an issue causing original search to be abandoned when cycling through results. - Updated device and bluetooth results for Settings plugin. Thanks [@htcfreek](https://github.com/htcfreek)! - Fixed InvalidOperationException exception thrown. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Add Base64 Decoding function to the Value Generator plugin. Thanks [@LeagueOfPoro](https://github.com/LeagueOfPoro)! - Added a Keep shell open option for Shell plugin. - Added Crop And Lock to PowerToys plugin. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Registry Preview - Updated AppBarButtons to use an explicit AppBarButton.Icon. Thanks [@randyrants](https://github.com/randyrants)! - Fixed crash on clicking Save As button. ### Runner - Removed unneeded RegisterWindowMessage from tray icon logic. Thanks [@sredna](https://github.com/sredna)! - Fixed startup looping issue. - Improved old logs and installers cleanup logic. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Screen Ruler - Use proper resources file. ### Settings - Fixed issue causing problems with modifier keys and ShortcutControl. Thanks [@sh0ckj0ckey](https://github.com/sh0ckj0ckey)! - Fixed crash when clicking "Windows color settings" link. - Added support for launching Settings app directly. - Fixed issue causing DisplayDescription not showing for PowerToys Run PluginAdditionalOption. - Fixed issue causing FileLocksmith 'Show File Locksmith in' setting not showing correct value. - Fixed issue causing Awake on/off toggle in Settings flyout not to work when Settings Awake page is opened. ### Documentation - Added documentation for PowerToys Run third-party plugins. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Fixed broken links in keyboardmanagerui.md. Thanks [@shubhsardana29](https://github.com/shubhsardana29)! - Updated core team in COMMUNITY.md. - Fixed broken links in ui-architecture.md. Thanks [@SamB](https://github.com/SamB)! - Updated community.valuegenerator.md with Base64DecodeRequest description. ### Development - Updated test packages and StyleCop. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Condense NuGet Restore into MSBuild Tasks. Thanks [@snickler](https://github.com/snickler)! #### What is being planned for version 0.74 For [v0.74][github-next-release-work], we'll work on the items below: - Language selection - Modernize and refresh the UX of PowerToys based on WPF - Stability / bug fixes - Peek: UI improvements ## PowerToys Community The PowerToys team is extremely grateful to have the [support of an amazing active community][community-link]. The work you do is incredibly important. PowerToys wouldn’t be nearly what it is today without your help filing bugs, updating documentation, guiding the design, or writing features. We want to say thank you and take time to recognize your work. Month by month, you directly help make PowerToys a better piece of software. ## Code of Conduct This project has adopted the [Microsoft Open Source Code of Conduct][oss-conduct-code]. ## Privacy Statement The application logs basic telemetry. Our Telemetry Data page (Coming Soon) has the trends from the telemetry. Please read the [Microsoft privacy statement][privacy-link] for more information. [oss-CLA]: https://cla.opensource.microsoft.com [oss-conduct-code]: CODE_OF_CONDUCT.md [community-link]: COMMUNITY.md [github-release-link]: https://aka.ms/installPowerToys [microsoft-store-link]: https://aka.ms/getPowertoys [winget-link]: https://github.com/microsoft/winget-cli#installing-the-client [roadmap]: https://github.com/microsoft/PowerToys/wiki/Roadmap [privacy-link]: http://go.microsoft.com/fwlink/?LinkId=521839 [vidConfOverview]: https://aka.ms/PowerToysOverview_VideoConference [loc-bug]: https://github.com/microsoft/PowerToys/issues/new?assignees=&labels=&template=translation_issue.md&title= [usingPowerToys-docs-link]: https://aka.ms/powertoys-docs
# Microsoft PowerToys ![Hero image for Microsoft PowerToys](doc/images/overview/PT_hero_image.png) [How to use PowerToys][usingPowerToys-docs-link] | [Downloads & Release notes][github-release-link] | [Contributing to PowerToys](#contributing) | [What's Happening](#whats-happening) | [Roadmap](#powertoys-roadmap) ## Build status | Architecture | Solution (Main) | Solution (Stable) | Installer (Main) | |--------------|-----------------|-------------------|------------------| | x64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main&jobName=Build%20x64%20Release) | [![Build Status for Stable](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=stable&jobName=Build%20x64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_x64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | | ARM64 | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=main) | [![Build Status for Main](https://dev.azure.com/ms/PowerToys/_apis/build/status/microsoft.PowerToys?branchName=main&jobName=Build%20arm64%20Release)](https://dev.azure.com/ms/PowerToys/_build/latest?definitionId=219&branchName=stable) | [![Build Status Installer pipeline](https://dev.azure.com/microsoft/Dart/_apis/build/status/PowerToys/PowerToys%20Signed%20YAML%20Release%20Build?branchName=main&jobName=Build&configuration=Build%20Release_arm64)](https://dev.azure.com/microsoft/Dart/_build/latest?definitionId=76541&branchName=main) | ## About Microsoft PowerToys is a set of utilities for power users to tune and streamline their Windows experience for greater productivity. For more info on [PowerToys overviews and how to use the utilities][usingPowerToys-docs-link], or any other tools and resources for [Windows development environments](https://learn.microsoft.com/windows/dev-environment/overview), head over to [learn.microsoft.com][usingPowerToys-docs-link]! | | Current utilities: | | |--------------|--------------------|--------------| | [Always on Top](https://aka.ms/PowerToysOverview_AoT) | [PowerToys Awake](https://aka.ms/PowerToysOverview_Awake) | [Color Picker](https://aka.ms/PowerToysOverview_ColorPicker) | | [Crop And Lock](https://aka.ms/PowerToysOverview_CropAndLock) | [FancyZones](https://aka.ms/PowerToysOverview_FancyZones) | [File Explorer Add-ons](https://aka.ms/PowerToysOverview_FileExplorerAddOns) | | [File Locksmith](https://aka.ms/PowerToysOverview_FileLocksmith) | [Hosts File Editor](https://aka.ms/PowerToysOverview_HostsFileEditor) | [Image Resizer](https://aka.ms/PowerToysOverview_ImageResizer) | | [Keyboard Manager](https://aka.ms/PowerToysOverview_KeyboardManager) | [Mouse utilities](https://aka.ms/PowerToysOverview_MouseUtilities) | [Mouse Without Borders](https://aka.ms/PowerToysOverview_MouseWithoutBorders) | | [Peek](https://aka.ms/PowerToysOverview_Peek) | [Paste as Plain Text](https://aka.ms/PowerToysOverview_PastePlain) | [PowerRename](https://aka.ms/PowerToysOverview_PowerRename) | | [PowerToys Run](https://aka.ms/PowerToysOverview_PowerToysRun) | [Quick Accent](https://aka.ms/PowerToysOverview_QuickAccent) | [Registry Preview](https://aka.ms/PowerToysOverview_RegistryPreview) | | [Screen Ruler](https://aka.ms/PowerToysOverview_ScreenRuler) | [Shortcut Guide](https://aka.ms/PowerToysOverview_ShortcutGuide) | [Text Extractor](https://aka.ms/PowerToysOverview_TextExtractor) | | [Video Conference Mute](https://aka.ms/PowerToysOverview_VideoConference) | ## Installing and running Microsoft PowerToys ### Requirements - Windows 11 or Windows 10 version 2004 (code name 20H1 / build number 19041) or newer. - Our installer will install the following items: - [Microsoft Edge WebView2 Runtime](https://go.microsoft.com/fwlink/p/?LinkId=2124703) bootstrapper. This will install the latest version. ### Via GitHub with EXE [Recommended] Go to the [Microsoft PowerToys GitHub releases page][github-release-link] and click on `Assets` at the bottom to show the files available in the release. Please use the appropriate PowerToys installer that matches your machine's architecture and install scope. For most, it is `x64` and per-user. <!-- items that need to be updated release to release --> [github-next-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F48 [github-current-release-work]: https://github.com/microsoft/PowerToys/issues?q=project%3Amicrosoft%2FPowerToys%2F47 [ptUserX64]: https://github.com/microsoft/PowerToys/releases/download/v0.74.0/PowerToysUserSetup-0.74.0-x64.exe [ptUserArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.74.0/PowerToysUserSetup-0.74.0-arm64.exe [ptMachineX64]: https://github.com/microsoft/PowerToys/releases/download/v0.74.0/PowerToysSetup-0.74.0-x64.exe [ptMachineArm64]: https://github.com/microsoft/PowerToys/releases/download/v0.74.0/PowerToysSetup-0.74.0-arm64.exe | Description | Filename | sha256 hash | |----------------|----------|-------------| | Per user - x64 | [PowerToysUserSetup-0.74.0-x64.exe][ptUserX64] | 1C4ECE9F11488BAFFAE6B76D2B0504FA18BFFEA11EBC38BCC87F5D86AEA87C7C | | Per user - ARM64 | [PowerToysUserSetup-0.74.0-arm64.exe][ptUserArm64] | 4F3842FAB0839A361A15A06B7720BA8A0FE7F9AF98EA94245C08DEF37678CA4A | | Machine wide - x64 | [PowerToysSetup-0.74.0-x64.exe][ptMachineX64] | 648992E8CEA08F3C63C7CCBD554ADDF500ECBC4560187310BC12E6CB9C2F38E3 | | Machine wide - ARM64 | [PowerToysSetup-0.74.0-arm64.exe][ptMachineArm64] | 2B6D92F1A0EA688C7EE882050AC9B030C8B3A18765163FB6D67E5E694A4D4FE3 | This is our preferred method. ### Via Microsoft Store Install from the [Microsoft Store's PowerToys page][microsoft-store-link]. You must be using the [new Microsoft Store](https://blogs.windows.com/windowsExperience/2021/06/24/building-a-new-open-microsoft-store-on-windows-11/) which is available for both Windows 11 and Windows 10. ### Via WinGet Download PowerToys from [WinGet][winget-link]. Updating PowerToys via winget will respect current PowerToys installation scope. To install PowerToys, run the following command from the command line / PowerShell: #### User scope installer [default] ```powershell winget install Microsoft.PowerToys -s winget ``` #### Machine-wide scope installer ```powershell winget install --scope machine Microsoft.PowerToys -s winget ``` ### Other install methods There are [community driven install methods](./doc/unofficialInstallMethods.md) such as Chocolatey and Scoop. If these are your preferred install solutions, you can find the install instructions there. ## Third-Party Run Plugins There is a collection of [third-party plugins](./doc/thirdPartyRunPlugins.md) created by the community that aren't distributed with PowerToys. ## Contributing This project welcomes contributions of all types. Besides coding features / bug fixes, other ways to assist include spec writing, design, documentation, and finding bugs. We are excited to work with the power user community to build a set of tools for helping you get the most out of Windows. We ask that **before you start work on a feature that you would like to contribute**, please read our [Contributor's Guide](CONTRIBUTING.md). We would be happy to work with you to figure out the best approach, provide guidance and mentorship throughout feature development, and help avoid any wasted or duplicate effort. Most contributions require you to agree to a [Contributor License Agreement (CLA)][oss-CLA] declaring that you grant us the rights to use your contribution and that you have permission to do so. For guidance on developing for PowerToys, please read the [developer docs](/doc/devdocs) for a detailed breakdown. This includes how to setup your computer to compile. ## What's Happening ### PowerToys Roadmap Our [prioritized roadmap][roadmap] of features and utilities that the core team is focusing on. ### 0.74 - September 2023 Update In this release, we focused on stability and improvements. **Highlights** - Upgraded to Windows App SDK 1.4.1, increasing stability of WinUI3 utilities. Thanks [@dongle-the-gadget](https://github.com/dongle-the-gadget) for starting the upgrade! - Text Extractor was upgraded to its version 2.0, with a new overlay, table mode and more Quality of Life improvements. Thanks [@TheJoeFin](https://github.com/TheJoeFin)! - Improved FancyZones stability, fixing some layout resets and improving handling of newly created windows on Windows 11. - Fixed many silent crashes that were reported to Watson and the user's event viewer. ### General - Turning animations off in Windows Settings will now also turn them off in PowerToys. - Upgraded the Windows App SDK dependency to 1.4.1. Thanks [@dongle-the-gadget](https://github.com/dongle-the-gadget) for the original 1.4.0 upgrade! - Show in the thumbnail label and application titles when running as administrator. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Upgraded the Win UI Community Toolkit dependency to 8.0. Thanks [@niels9001](https://github.com/niels9001)! ### Awake - Added down-sampled variants to the application's icon. Thanks [@morriscurtis](https://github.com/morriscurtis)! ### Color Picker - After adding a new color in the editor, the history will scroll the new color into view. Thanks [@peerpalo](https://github.com/peerpalo)! ### Crop and Lock - Fixed a Crop and Lock crash that would occur when trying to reparent a window crashes the target application. An error message is shown instead. ### FancyZones - Set the process and main thread priority to normal. - Fixed handling newly created windows on Windows 11. - Fixed scenarios where opening the FancyZones Editor would reset the layouts. ### File Explorer add-ons - Optimized CPU usage for generating SVG thumbnails. - Improved handling of Gcode Thumbnails, including JPG and QOI formats. Thanks [@pedrolamas](https://github.com/pedrolamas)! - Better handled errors when sending telemetry, which were causing reported crashes. - Fixed some thumbnails not being shown centered like before the optimization. ### File Locksmith - Shows files opened by processes with PID greater than 65535. Thanks [@poke30744](https://github.com/poke30744)! - Fixed a GDI object leak in the context menu which would crash Explorer. ### Find My Mouse - Added new activation methods, including by hotkey. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Hosts File Editor - Ignore the default ACME sample entries in the hosts file. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Improved save error handling and added better error messages. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Corrected a check for an error when signaling the application to start as administrator. - Refactored the context menu. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! - Fixed dialogs overlapping the title bar after the upgrade to Windows App SDK 1.4. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Keyboard Manager - Distinguish between the regular minus key and the numpad minus key. ### Mouse Without Borders - Fixed a crash when trying to restart the application. ### Peek - Using Peek on HTML files will show a white background by default, similar to a browser's default behavior. - Fix a white flash on Dark theme when switching file and improved the development file preview detection and adjustments. ### PowerRename - Fixed a crash caused by big counter values on the new enumeration method. ### PowerToys Run - It's now possible to select which shell is used by the Shell plugin. - A combobox option type was added to the plugin options. - Fixed a bug in the Calculator plugin that was causing decimal numbers to be misinterpreted on locales where the dot (`.`) character isn't used as a decimal or digit separator. - Improved the Program plugin stability when it fails to load a program's thumbnail at startup. - The use of Pinyin for querying some plugins can now be turned on in Settings. Thanks [@ChaseKnowlden](https://github.com/ChaseKnowlden)! - Refactored option types for plugin and added number, string and composite types to be used in the future. Thanks [@htcfreek](https://github.com/htcfreek)! - Fixed the entry for searching for Windows updates in the Settings plugin. Thanks [@htcfreek](https://github.com/htcfreek)! ### Quick Accent - The "All languages" character set is now calculated by programmatically querying the characters for every available language. Thanks [@dannysummerlin](https://github.com/dannysummerlin)! - Added é to the Norwegian and Swedish languages. Thanks [@Aaron-Junker](https://github.com/Aaron-Junker)! - Added a runtime cache to the "All languages" character set, to only calculate accents once per key. ### Registry Preview - Fixed focusing issues at startup. - Improved the data visualization to show data in a similar way to the Windows Registry Editor. Thanks [@dillydylann](https://github.com/dillydylann)! ### Runner - Fixed hanging when a bug report was generated from the flyout. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Settings - Improved the way the OOBE window reacts to Windows theme change. - Fixed an issue that made it impossible to change the "Switch between windows in the current zone" "Next window" shortcut for FancyZones. - Fixed a crash when entering a duplicate name for a color in the Color Picker page and improved clean up when cancelling a color edit. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! ### Text Extractor - Text Extractor 2.0, with a new overlay, table mode and more Quality of Life improvements. Thanks [@TheJoeFin](https://github.com/TheJoeFin)! ### Documentation - SECURITY.md was updated from 0.0.2 to 0.0.9. Thanks [@Aaron-Junker](https://github.com/Aaron-Junker)! - Improved the README and main development document for clarity and completeness. Thanks [@codeofdusk](https://github.com/codeofdusk) and [@aprilbbrockhoeft](https://github.com/aprilbbrockhoeft)! ### Development - Fixed PowerToys Run DateTime plugin tests that were failing depending on locale, so that they can be run correctly on all dev machines. - Fixed PowerToys Run System plugin tests that were failing for certain network interfaces, so that they can be run correctly on all dev machines. Thanks [@snickler](https://github.com/snickler)! - Fixed a markdown bug on the GitHub /helped command. - Switched build pipelines to a new agent pool. Thanks [@DHowett](https://github.com/DHowett)! - New .cs files created in Visual Studio get the header added automatically. Thanks [@davidegiacometti](https://github.com/davidegiacometti)! #### What is being planned for version 0.75 For [v0.75][github-next-release-work], we'll work on the items below: - Language selection - .NET 8 upgrade - Policy support for managing PowerToys Run plugins. *Attention*: A breaking change is planned (for 0.75), in which each plugin has to declare its identifier programmatically so that it can be controlled through GPO. For third-party plugin developers, please check https://github.com/microsoft/PowerToys/pull/27468 for more details. - New utility: Environment Variables Editor. Here's a Work in Progress preview: ![Environment Variables Editor WIP](https://github.com/microsoft/PowerToys/assets/26118718/f99532a8-5aae-481b-a662-19a95f4aa03d) - New Settings homepage. Here's a Work in Progress preview: ![PowerToys Settings Dashboard WIP](https://github.com/microsoft/PowerToys/assets/26118718/938a5715-0a9b-4fe9-9e15-adfec92da694) - Modernize and refresh the UX of PowerToys based on WPF. Here's Work in Progress previews for the modules "PowerToys Run" and "Color Picker": ![PowerToys Run UI refresh WIP](https://github.com/microsoft/PowerToys/assets/9866362/16903bcb-c18e-49fb-93ca-738b81957055) ![ColorPicker UI refresh WIP](https://github.com/microsoft/PowerToys/assets/9866362/ceebe54b-de63-4ce7-afcb-2cd4280bf4d1) - Stability / bug fixes ## PowerToys Community The PowerToys team is extremely grateful to have the [support of an amazing active community][community-link]. The work you do is incredibly important. PowerToys wouldn’t be nearly what it is today without your help filing bugs, updating documentation, guiding the design, or writing features. We want to say thank you and take time to recognize your work. Month by month, you directly help make PowerToys a better piece of software. ## Code of Conduct This project has adopted the [Microsoft Open Source Code of Conduct][oss-conduct-code]. ## Privacy Statement The application logs basic telemetry. Our Telemetry Data page (Coming Soon) has the trends from the telemetry. Please read the [Microsoft privacy statement][privacy-link] for more information. [oss-CLA]: https://cla.opensource.microsoft.com [oss-conduct-code]: CODE_OF_CONDUCT.md [community-link]: COMMUNITY.md [github-release-link]: https://aka.ms/installPowerToys [microsoft-store-link]: https://aka.ms/getPowertoys [winget-link]: https://github.com/microsoft/winget-cli#installing-the-client [roadmap]: https://github.com/microsoft/PowerToys/wiki/Roadmap [privacy-link]: http://go.microsoft.com/fwlink/?LinkId=521839 [vidConfOverview]: https://aka.ms/PowerToysOverview_VideoConference [loc-bug]: https://github.com/microsoft/PowerToys/issues/new?assignees=&labels=&template=translation_issue.md&title= [usingPowerToys-docs-link]: https://aka.ms/powertoys-docs
jaimecbernardo
a1e0bd51617b2bea189cb16324eecd0e13fa7b86
77063e0767a0619abfc339db3a2a564d27310b6c
Fix merge mistake! ```suggestion - .NET 8 upgrade - Policy support for managing PowerToys Run plugins. *Attention*: A breaking change is planned (for 0.75), in which each plugin has to declare its identifier programmatically so that it can be controlled through GPO. For third-party plugin developers, please check https://github.com/microsoft/PowerToys/pull/27468 for more details. - New utility: Environment Variables Editor. Here's a Work in Progress preview: ![Environment Variables Editor WIP](https://github.com/microsoft/PowerToys/assets/26118718/f99532a8-5aae-481b-a662-19a95f4aa03d) ```
htcfreek
435